Skip to content

Commit 7ab2998

Browse files
committed
Clean up utf8only support/etc
1 parent d927beb commit 7ab2998

File tree

5 files changed

+7
-29
lines changed

5 files changed

+7
-29
lines changed

_data/irc_versions.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ stable:
166166
description: UTF8ONLY ISUPPORT token
167167
link: /specs/extensions/utf8-only.html
168168
hide-if-no-support: true
169+
hide-on-servers: true
169170
webirc:
170171
name: WebIRC
171172
description: WebIRC Extension

_data/su_networks.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@
3434
starttls:
3535
sts:
3636
userhost-in-names:
37-
na:
38-
stable:
39-
utf8only:
4037
- name: IRCCloud Teams
4138
ircd-ver: irccloud-prattle
4239
net-address:
@@ -66,7 +63,6 @@
6663
na:
6764
stable:
6865
starttls: direct TLS only
69-
utf8only:
7066
- name: Oragono Testnet
7167
ircd-ver: master
7268
net-address:

_data/sw_servers.yml

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
server-time: 3.6
1717
na:
1818
stable:
19-
utf8only:
2019
webirc:
2120
- name: Charybdis
2221
# ref: https://github.com/charybdis-ircd/charybdis/search?q=MAPI_CAP_CLIENT
@@ -41,9 +40,6 @@
4140
starttls:
4241
userhost-in-names:
4342
webirc:
44-
na:
45-
stable:
46-
utf8only:
4743
- name: ChatIRCd
4844
# dev: Ben / MrC
4945
# ref: https://bitbucket.org/chatlounge/chatircd/commits/all
@@ -64,9 +60,6 @@
6460
starttls:
6561
userhost-in-names:
6662
webirc:
67-
na:
68-
stable:
69-
utf8only:
7063
- name: IRCCloud Teams
7164
# maintainer: jwheare
7265
link: https://blog.irccloud.com/private-teams-servers/
@@ -92,7 +85,6 @@
9285
na:
9386
stable:
9487
starttls: supports sts
95-
utf8only:
9688
webirc:
9789
- name: ircd-hybrid
9890
link: https://github.com/ircd-hybrid/ircd-hybrid
@@ -111,9 +103,6 @@
111103
multi-prefix:
112104
userhost-in-names:
113105
webirc:
114-
na:
115-
stable:
116-
utf8only:
117106
- name: InspIRCd
118107
# maintainer: Sadie
119108
# ref: https://github.com/inspircd/inspircd/search?q="Cap%3A%3ACapability"
@@ -145,9 +134,6 @@
145134
sts: 3.0+
146135
userhost-in-names:
147136
webirc:
148-
na:
149-
stable:
150-
utf8only:
151137
- name: Nefarious IRCu
152138
# ref: https://github.com/evilnet/nefarious2/blob/2.0/ircd/m_cap.c#L59
153139
link: https://github.com/evilnet/nefarious2
@@ -162,9 +148,6 @@
162148
starttls:
163149
userhost-in-names:
164150
webirc:
165-
na:
166-
stable:
167-
utf8only:
168151
- name: Oragono
169152
# ref: https://oragono.io/specs.html
170153
link: https://oragono.io/
@@ -210,7 +193,6 @@
210193
server-time:
211194
na:
212195
stable:
213-
utf8only:
214196
webirc:
215197
- name: txircd
216198
link: https://github.com/ElementalAlchemist/txircd
@@ -233,9 +215,6 @@
233215
server-time:
234216
starttls:
235217
userhost-in-names:
236-
na:
237-
stable:
238-
utf8only:
239218
- name: UnrealIRCd
240219
# ref: ClientCapabilityAdd() calls in https://github.com/unrealircd/unrealircd/search?q=ClientCapabilityAdd
241220
# (src/modules/m_cap.c has four matches, two not shown)
@@ -268,6 +247,3 @@
268247
stable:
269248
monitor: "5.0+ add-on"
270249
setname: "5.0+ add-on"
271-
na:
272-
stable:
273-
utf8only:

_data/validation/support_list.types.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ support:
1919
hide-if-no-support:
2020
type: boolean
2121
required: false
22+
hide-on-servers:
23+
type: boolean
24+
required: false
2225
ext_link:
2326
type: string
2427
required: false

_includes/support_list.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,9 @@
110110

111111
{% capture should_show_spec %}
112112
{% for sw in type.software %}
113-
{% if ext[1].hide-if-no-support %}
113+
{% if ext[1].hide-on-servers and type.name contains "Servers" %}
114+
115+
{% elsif ext[1].hide-if-no-support %}
114116
{% if sw.support[support_key] contains ext_name or sw.partial[support_key] contains ext_name %}
115117
Y
116118
{% endif %}

0 commit comments

Comments
 (0)