Add IRC port
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
s3lph 2023-01-11 00:04:10 +01:00
parent 0c027f1f58
commit b018ebaba5
Signed by: s3lph
GPG key ID: 8AC98A811E5BEFF5
5 changed files with 4 additions and 6 deletions

View file

@ -35,7 +35,7 @@ contact_swiss_chaos: >-
services_header: "Wir betreiben für die Chaostreffs in der Schweiz folgende Dienste:"
services_ml: "<strong>Mailinglisten</strong> unter der Domain <tt>chaostreff.ch</tt>"
services_dns: "<strong>DNS-Delegation</strong> für <tt>$kanton.chaostreff.ch</tt>"
services_irc: "<strong>IRC-Server</strong> <tt>irc.chaostreff.ch</tt>"
services_irc: "<strong>IRC-Server</strong> <tt>irc.chaostreff.ch</tt> mit TLS auf Port 6697"
services_footer: >-
Falls ihr für euren neuen Chaostreff einen dieser Dienste benutzen möchtet,
<a href="#contact">kontaktiert uns</a> am besten einfach.

View file

@ -35,7 +35,7 @@ contact_swiss_chaos: >-
services_header: "We operate the following services for Chaostreffs in Switzerland:"
services_ml: "<strong>Mailing lists</strong> on the domain <tt>chaostreff.ch</tt>"
services_dns: "<strong>DNS delegation</strong> for <tt>$canton.chaostreff.ch</tt>"
services_irc: "The <strong>IRC server</strong> <tt>irc.chaostreff.ch</tt>"
services_irc: "The <strong>IRC server</strong> <tt>irc.chaostreff.ch</tt> with TLS on port 6697"
services_footer: >-
If you want to make use of one of these services, please
<a href="#contact">get in touch</a>.

View file

@ -35,7 +35,7 @@ contact_swiss_chaos: >-
services_header: "Wir betreiben für die Chaostreffs in der Schweiz folgende Dienste:"
services_ml: "<strong>Mailinglisten</strong> unter der Domain <tt>chaostreff.ch</tt>"
services_dns: "<strong>DNS-Delegation</strong> für <tt>$kanton.chaostreff.ch</tt>"
services_irc: "<strong>IRC-Server</strong> <tt>irc.chaostreff.ch</tt>"
services_irc: "<strong>Serveur IRC</strong> <tt>irc.chaostreff.ch</tt> avec TLS sur port 6697"
services_footer: >-
Falls ihr für euren neuen Chaostreff einen dieser Dienste benutzen möchtet,
<a href="#contact">kontaktiert uns</a> am besten einfach.

View file

@ -38,7 +38,7 @@ contact_swiss_chaos: >-
services_header: "Eserciamo i seguiti servizi per gli Chaostreffs in Svizzera:"
services_ml: "<strong>Mailing lists </strong> sotto la domain <tt>chaostreff.ch</tt>"
services_dns: "<strong>Delegazioni di DNS</strong> per <tt>$cantone.chaostreff.ch</tt>"
services_irc: "<strong>Server IRC</strong> <tt>irc.chaostreff.ch</tt>"
services_irc: "<strong>Server IRC</strong> <tt>irc.chaostreff.ch</tt> con TLS nel port 6697"
services_footer: >-
Se vuoi utilizzare uno die quesi servizi, per favore <a href="#contact">contattaci</a>.

2
run.py
View file

@ -10,8 +10,6 @@ import requests
@bottle.get('/spaceapi-proxy/<schema>/<host>/<path:path>')
def spaceapi_proxy(schema, host, path=''):
url = urllib.parse.urlunsplit((schema, host, path, '', ''))
import logging
logging.error(url)
r = requests.get(url)
return r.json()