aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/assets/javascripts/services.js7
-rw-r--r--src/assets/javascripts/utils.js2
-rw-r--r--src/config.json20
3 files changed, 29 insertions, 0 deletions
diff --git a/src/assets/javascripts/services.js b/src/assets/javascripts/services.js
index 1a1afa14..6da057fb 100644
--- a/src/assets/javascripts/services.js
+++ b/src/assets/javascripts/services.js
@@ -539,6 +539,9 @@ function redirect(url, type, initiator, forceRedirection) {
}
return `${randomInstance}${url.pathname}${url.search}`
}
+ case "tekstoLibre": {
+ return `${randomInstance}/?${url.pathname.slice(1)}`;
+ }
default: {
return `${randomInstance}${url.pathname}${url.search}`
}
@@ -641,6 +644,9 @@ async function reverse(url) {
}
return
}
+ case "tekstowo": {
+ return `${config.services[service].url}/${url.search.slice(1)}`
+ }
default:
return
}
@@ -694,6 +700,7 @@ const defaultInstances = {
'proxigram': ['https://proxigram.privacyfrontends.repl.co'],
'tuboYoutube': ['https://tubo.migalmoreno.com'],
'tuboSoundcloud': ['https://tubo.migalmoreno.com'],
+ 'tekstoLibre': ['https://davilarek.github.io/TekstoLibre'],
}
function initDefaults() {
diff --git a/src/assets/javascripts/utils.js b/src/assets/javascripts/utils.js
index e85b1115..6a420ee8 100644
--- a/src/assets/javascripts/utils.js
+++ b/src/assets/javascripts/utils.js
@@ -10,6 +10,8 @@ function camelCase(str) {
function protocolHost(url) {
if (url.username && url.password) return `${url.protocol}//${url.username}:${url.password}@${url.host}`
+ if (url.pathname == "/TekstoLibre/" && url.host.endsWith("github.io")) // workaround
+ return `${url.protocol}//${url.host}${url.pathname.slice(0, -1)}`
return `${url.protocol}//${url.host}`
}
diff --git a/src/config.json b/src/config.json
index 4c535371..2251cf2f 100644
--- a/src/config.json
+++ b/src/config.json
@@ -943,6 +943,26 @@
},
"imageType": "svg",
"url": "https://www.wolframalpha.com"
+ },
+ "tekstowo": {
+ "frontends": {
+ "tekstoLibre": {
+ "name": "TekstoLibre",
+ "instanceList": true,
+ "url": "https://github.com/Davilarek/TekstoLibre"
+ }
+ },
+ "targets": [
+ "^https?:\\/{2}(www\\.)?tekstowo\\.pl\\/"
+ ],
+ "name": "Tekstowo.pl",
+ "options": {
+ "enabled": false,
+ "unsupportedUrls": "bypass",
+ "frontend": "tekstoLibre"
+ },
+ "imageType": "png",
+ "url": "https://www.tekstowo.pl"
}
}
} \ No newline at end of file