@bhsd/codemirror-mediawiki 1.1.12 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/mediawiki.css CHANGED
@@ -2,10 +2,15 @@
2
2
  text-decoration: underline;
3
3
  }
4
4
 
5
+ .cm-mw-matching {
6
+ background-color: #ffd700;
7
+ }
8
+
5
9
  /* miscellaneous */
6
10
  .cm-mw-skipformatting {
7
11
  background-color: #adf;
8
12
  }
13
+ .cm-mw-indenting,
9
14
  .cm-mw-list {
10
15
  color: #08f;
11
16
  font-weight: bold;
@@ -27,18 +32,12 @@
27
32
  }
28
33
 
29
34
  /* section title */
30
- div.CodeMirror pre.cm-mw-section-1 {
31
- font-size: 1.8em;
32
- line-height: 1.2em;
33
- }
34
- div.CodeMirror pre.cm-mw-section-2 {
35
- font-size: 1.5em;
36
- line-height: 1.2em;
37
- }
38
- pre.cm-mw-section-3,
39
- pre.cm-mw-section-4,
40
- pre.cm-mw-section-5,
41
- pre.cm-mw-section-6 {
35
+ .cm-mw-section-1,
36
+ .cm-mw-section-2,
37
+ .cm-mw-section-3,
38
+ .cm-mw-section-4,
39
+ .cm-mw-section-5,
40
+ .cm-mw-section-6 {
42
41
  font-weight: bold;
43
42
  }
44
43
  .cm-mw-section-header {
@@ -47,7 +46,10 @@ pre.cm-mw-section-6 {
47
46
  }
48
47
 
49
48
  /* template */
50
- .cm-mw-template,
49
+ .cm-mw-template {
50
+ color: #80c;
51
+ font-weight: normal;
52
+ }
51
53
  .cm-mw-template-name-mnemonic {
52
54
  font-weight: normal;
53
55
  }
@@ -58,21 +60,24 @@ pre.cm-mw-section-6 {
58
60
  font-weight: bold;
59
61
  }
60
62
  .cm-mw-template-argument-name {
61
- color: #b0c;
62
- font-weight: normal;
63
+ color: #80c;
64
+ font-weight: bold;
63
65
  }
64
66
 
65
67
  /* template variable */
66
68
  .cm-mw-templatevariable {
67
- color: #ff9500;
69
+ color: #f50;
68
70
  font-weight: normal;
69
71
  }
70
72
  .cm-mw-templatevariable-name,
71
- .cm-mw-templatevariable-bracket,
72
73
  .cm-mw-templatevariable-delimiter {
73
74
  color: #f50;
74
75
  font-weight: bold;
75
76
  }
77
+ .cm-mw-templatevariable-bracket {
78
+ color: #f50;
79
+ font-weight: normal;
80
+ }
76
81
 
77
82
  /* parser function */
78
83
  .cm-mw-parserfunction {
@@ -100,6 +105,7 @@ pre.cm-mw-section-6 {
100
105
  }
101
106
 
102
107
  /* link */
108
+ .cm-mw-link,
103
109
  .cm-mw-link-pagename,
104
110
  .cm-mw-link-bracket,
105
111
  .cm-mw-link-delimiter,
@@ -108,7 +114,6 @@ pre.cm-mw-section-6 {
108
114
  color: #36c;
109
115
  font-weight: normal;
110
116
  }
111
- .cm-mw-link,
112
117
  .cm-mw-link-tosection {
113
118
  color: #18e;
114
119
  font-weight: normal;
@@ -126,7 +131,6 @@ pre.cm-mw-section-6 {
126
131
  color: #e0e;
127
132
  font-weight: bold;
128
133
  }
129
- .cm-mw-table-delimiter2,
130
134
  .cm-mw-table-definition {
131
135
  color: #e0e;
132
136
  font-weight: normal;
@@ -137,7 +141,7 @@ pre.cm-mw-section-6 {
137
141
 
138
142
  /* mnemonic */
139
143
  .cm-mw-mnemonic {
140
- color: #84a0a0;
144
+ color: #290;
141
145
  }
142
146
 
143
147
  /* backgrounds */
@@ -145,14 +149,14 @@ pre.cm-mw-section-6 {
145
149
  .cm-mw-tag-nowiki {
146
150
  background-color: rgba( 0, 0, 0, 0.04 );
147
151
  }
148
- .cm-mw-template-ground {
149
- background-color: rgba( 170, 17, 17, 0.04 );
152
+ .cm-mw-exttag {
153
+ background-color: rgba( 119, 0, 170, 0.02 );
150
154
  }
151
155
  .cm-mw-template2-ground {
152
- background-color: rgba( 170, 17, 17, 0.08 );
156
+ background-color: rgba( 170, 17, 17, 0.04 );
153
157
  }
154
158
  .cm-mw-template3-ground {
155
- background-color: rgba( 170, 17, 17, 0.12 );
159
+ background-color: rgba( 170, 17, 17, 0.08 );
156
160
  }
157
161
  .cm-mw-template-ext-ground,
158
162
  .cm-mw-ext-ground,
@@ -224,4 +228,10 @@ pre.cm-mw-section-6 {
224
228
  }
225
229
  .cm-mw-template3-ext3-link-ground {
226
230
  background-color: rgba( 122, 9, 116, 0.24 );
231
+ }
232
+
233
+ .cm-mw-matchingbracket {
234
+ background-color: #eee;
235
+ box-shadow: inset 0 0 1px 1px #999;
236
+ font-weight: bold;
227
237
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bhsd/codemirror-mediawiki",
3
- "version": "1.1.12",
3
+ "version": "2.0.0",
4
4
  "description": "Modified CodeMirror mode based on wikimedia/mediawiki-extensions-CodeMirror",
5
5
  "keywords": [
6
6
  "mediawiki",
@@ -11,23 +11,36 @@
11
11
  "url": "https://github.com/bhsd-harry/codemirror-mediawiki/issues"
12
12
  },
13
13
  "license": "GPL-2.0",
14
- "author": "Bhsd",
15
- "files": [
16
- "/config.json",
17
- "/mediawiki.css",
18
- "/mediawiki.js"
14
+ "files":[
15
+ "dist/main.js",
16
+ "mediawiki.css"
19
17
  ],
20
- "browser": "/mediawiki.js",
18
+ "browser": "dist/main.js",
21
19
  "repository": {
22
20
  "type": "git",
23
21
  "url": "git+https://github.com/bhsd-harry/codemirror-mediawiki.git"
24
22
  },
25
23
  "scripts": {
26
- "test": "eslint ."
24
+ "build": "webpack",
25
+ "test": "eslint --cache ."
26
+ },
27
+ "engines": {
28
+ "node": "20.9.0"
27
29
  },
28
30
  "devDependencies": {
29
- "eslint": "^8.8.0",
30
- "eslint-plugin-es-x": "^5.4.0",
31
- "eslint-plugin-regexp": "^1.11.0"
31
+ "@codemirror/commands": "^6.2.5",
32
+ "@codemirror/language": "^6.9.3",
33
+ "@codemirror/search": "^6.5.4",
34
+ "@codemirror/state": "^6.2.1",
35
+ "@codemirror/view": "^6.18.1",
36
+ "@lezer/highlight": "^1.2.0",
37
+ "esbuild-loader": "^4.0.2",
38
+ "eslint": "^8.53.0",
39
+ "eslint-plugin-es-x": "^7.3.0",
40
+ "eslint-plugin-promise": "^6.1.1",
41
+ "eslint-plugin-regexp": "^2.1.2",
42
+ "eslint-plugin-unicorn": "^49.0.0",
43
+ "webpack": "^5.89.0",
44
+ "webpack-cli": "^5.1.4"
32
45
  }
33
- }
46
+ }
package/config.json DELETED
@@ -1,388 +0,0 @@
1
- {
2
- "tagModes": {
3
- "ref": "text/mediawiki",
4
- "choose": "text/mediawiki",
5
- "option": "text/mediawiki",
6
- "indicator": "text/mediawiki",
7
- "poem": "text/mediawiki",
8
- "pre": "mw-tag-pre",
9
- "nowiki": "mw-tag-nowiki"
10
- },
11
- "tags": {
12
- "pre": true,
13
- "nowiki": true,
14
- "gallery": true,
15
- "indicator": true,
16
- "poem": true,
17
- "charinsert": true,
18
- "ref": true,
19
- "references": true,
20
- "choose": true,
21
- "option": true,
22
- "categorytree": true,
23
- "dynamicpagelist": true,
24
- "flashmp3": true,
25
- "imagemap": true,
26
- "inputbox": true,
27
- "modernsoundmanager": true,
28
- "poll": true,
29
- "sm2": true,
30
- "templatestyles": true
31
- },
32
- "doubleUnderscore": [
33
- {
34
- "__无目录__": "notoc",
35
- "__notoc__": "notoc",
36
- "__无图库__": "nogallery",
37
- "__nogallery__": "nogallery",
38
- "__强显目录__": "forcetoc",
39
- "__forcetoc__": "forcetoc",
40
- "__目录__": "toc",
41
- "__toc__": "toc",
42
- "__无编辑段落__": "noeditsection",
43
- "__无段落编辑__": "noeditsection",
44
- "__noeditsection__": "noeditsection",
45
- "__不转换标题__": "notitleconvert",
46
- "__notitleconvert__": "notitleconvert",
47
- "__notc__": "notitleconvert",
48
- "__不转换内容__": "nocontentconvert",
49
- "__nocontentconvert__": "nocontentconvert",
50
- "__nocc__": "nocontentconvert"
51
- },
52
- {
53
- "__新段落链接__": "newsectionlink",
54
- "__NEWSECTIONLINK__": "newsectionlink",
55
- "__无新段落链接__": "nonewsectionlink",
56
- "__NONEWSECTIONLINK__": "nonewsectionlink",
57
- "__隐藏分类__": "hiddencat",
58
- "__HIDDENCAT__": "hiddencat",
59
- "__EXPECTUNUSEDCATEGORY__": "expectunusedcategory",
60
- "__索引__": "index",
61
- "__INDEX__": "index",
62
- "__无索引__": "noindex",
63
- "__NOINDEX__": "noindex",
64
- "__静态重定向__": "staticredirect",
65
- "__STATICREDIRECT__": "staticredirect"
66
- }
67
- ],
68
- "functionSynonyms": [
69
- {
70
- "名称空间": "ns",
71
- "ns": "ns",
72
- "名称空间e": "nse",
73
- "nse": "nse",
74
- "url编码": "urlencode",
75
- "urlencode": "urlencode",
76
- "小写首字": "lcfirst",
77
- "lcfirst": "lcfirst",
78
- "大写首字": "ucfirst",
79
- "ucfirst": "ucfirst",
80
- "小写": "lc",
81
- "lc": "lc",
82
- "大写": "uc",
83
- "uc": "uc",
84
- "本地url": "localurl",
85
- "localurl": "localurl",
86
- "本地urle": "localurle",
87
- "localurle": "localurle",
88
- "完整url": "fullurl",
89
- "fullurl": "fullurl",
90
- "完整url等同": "fullurle",
91
- "fullurle": "fullurle",
92
- "规范url": "canonicalurl",
93
- "canonicalurl": "canonicalurl",
94
- "规范url等同": "canonicalurle",
95
- "canonicalurle": "canonicalurle",
96
- "格式化数字": "formatnum",
97
- "formatnum": "formatnum",
98
- "语法": "grammar",
99
- "grammar": "grammar",
100
- "性别": "gender",
101
- "gender": "gender",
102
- "复数": "plural",
103
- "plural": "plural",
104
- "bidi": "bidi",
105
- "#语言": "language",
106
- "#language": "language",
107
- "左填充": "padleft",
108
- "padleft": "padleft",
109
- "右填充": "padright",
110
- "padright": "padright",
111
- "锚编码": "anchorencode",
112
- "anchorencode": "anchorencode",
113
- "文件路径": "filepath",
114
- "filepath": "filepath",
115
- "页面id": "pageid",
116
- "pageid": "pageid",
117
- "界面": "int",
118
- "int": "int",
119
- "#特殊": "special",
120
- "#special": "special",
121
- "#特殊等同": "speciale",
122
- "#speciale": "speciale",
123
- "#标记": "tag",
124
- "#tag": "tag",
125
- "#格式化日期": "formatdate",
126
- "#日期格式化": "formatdate",
127
- "#formatdate": "formatdate",
128
- "#dateformat": "formatdate",
129
- "#regex": "regex",
130
- "#regexp": "regexp",
131
- "#while": "while",
132
- "#dowhile": "dowhile",
133
- "#eval": "eval",
134
- "#loop": "loop",
135
- "#forargs": "forargs",
136
- "#fornumargs": "fornumargs",
137
- "#非空式": "if",
138
- "#若": "if",
139
- "#如果": "if",
140
- "#if": "if",
141
- "#相同式": "ifeq",
142
- "#匹配式": "ifeq",
143
- "#若相等": "ifeq",
144
- "#如果相等": "ifeq",
145
- "#ifeq": "ifeq",
146
- "#多选式": "switch",
147
- "#多条件式": "switch",
148
- "#双射式": "switch",
149
- "#开关": "switch",
150
- "#转换": "switch",
151
- "#switch": "switch",
152
- "#存在式": "ifexist",
153
- "#若有": "ifexist",
154
- "#如有": "ifexist",
155
- "#ifexist": "ifexist",
156
- "#若表达式": "ifexpr",
157
- "#ifexpr": "ifexpr",
158
- "#错误式": "iferror",
159
- "#如果错误": "iferror",
160
- "#iferror": "iferror",
161
- "#时间": "time",
162
- "#time": "time",
163
- "#时间l": "timel",
164
- "#timel": "timel",
165
- "#计算式": "expr",
166
- "#表达式": "expr",
167
- "#expr": "expr",
168
- "#rel2abs": "rel2abs",
169
- "#related": "related",
170
- "#标题组成部分": "titleparts",
171
- "#titleparts": "titleparts",
172
- "#choose": "choose",
173
- "#调用": "invoke",
174
- "#invoke": "invoke",
175
- "#var": "var",
176
- "#varexists": "varexists",
177
- "#var_final": "var_final",
178
- "#vardefine": "vardefine",
179
- "#vardefineecho": "vardefineecho",
180
- "#小工具": "widget",
181
- "#widget": "widget",
182
- "#categorytree": "categorytree",
183
- "#cscore": "cscore",
184
- "条目路径": "articlepath",
185
- "articlepath": "articlepath",
186
- "服务器": "server",
187
- "server": "server",
188
- "服务器名": "servername",
189
- "servername": "servername",
190
- "脚本路径": "scriptpath",
191
- "scriptpath": "scriptpath",
192
- "样式路径": "stylepath",
193
- "stylepath": "stylepath",
194
- "choose": "choose"
195
- },
196
- {
197
- "页面数": "numberofpages",
198
- "NUMBEROFPAGES": "numberofpages",
199
- "用户数": "numberofusers",
200
- "NUMBEROFUSERS": "numberofusers",
201
- "活跃用户数": "numberofactiveusers",
202
- "NUMBEROFACTIVEUSERS": "numberofactiveusers",
203
- "条目数": "numberofarticles",
204
- "NUMBEROFARTICLES": "numberofarticles",
205
- "文件数": "numberoffiles",
206
- "NUMBEROFFILES": "numberoffiles",
207
- "管理员数": "numberofadmins",
208
- "NUMBEROFADMINS": "numberofadmins",
209
- "组中用户数": "numberingroup",
210
- "NUMBERINGROUP": "numberingroup",
211
- "NUMINGROUP": "numberingroup",
212
- "编辑数": "numberofedits",
213
- "NUMBEROFEDITS": "numberofedits",
214
- "默认排序": "defaultsort",
215
- "默认排序关键字": "defaultsort",
216
- "默认分类排序": "defaultsort",
217
- "DEFAULTSORT": "defaultsort",
218
- "DEFAULTSORTKEY": "defaultsort",
219
- "DEFAULTCATEGORYSORT": "defaultsort",
220
- "分类中页面数": "pagesincategory",
221
- "PAGESINCATEGORY": "pagesincategory",
222
- "PAGESINCAT": "pagesincategory",
223
- "页面大小": "pagesize",
224
- "PAGESIZE": "pagesize",
225
- "保护级别": "protectionlevel",
226
- "PROTECTIONLEVEL": "protectionlevel",
227
- "PROTECTIONEXPIRY": "protectionexpiry",
228
- "名字空间等同": "namespacee",
229
- "NAMESPACEE": "namespacee",
230
- "名字空间编号": "namespacenumber",
231
- "NAMESPACENUMBER": "namespacenumber",
232
- "讨论空间": "talkspace",
233
- "讨论名字空间": "talkspace",
234
- "TALKSPACE": "talkspace",
235
- "讨论空间等同": "talkspacee",
236
- "讨论名字空间等同": "talkspacee",
237
- "TALKSPACEE": "talkspacee",
238
- "主名字空间": "subjectspace",
239
- "条目名字空间": "subjectspace",
240
- "SUBJECTSPACE": "subjectspace",
241
- "ARTICLESPACE": "subjectspace",
242
- "主名字空间等同": "subjectspacee",
243
- "条目名字空间等同": "subjectspacee",
244
- "SUBJECTSPACEE": "subjectspacee",
245
- "ARTICLESPACEE": "subjectspacee",
246
- "页名": "pagename",
247
- "页面名": "pagename",
248
- "页面名称": "pagename",
249
- "PAGENAME": "pagename",
250
- "页面名等同": "pagenamee",
251
- "页面名称等同": "pagenamee",
252
- "PAGENAMEE": "pagenamee",
253
- "页面全称": "fullpagename",
254
- "完整页面名称": "fullpagename",
255
- "FULLPAGENAME": "fullpagename",
256
- "完整页面名称等同": "fullpagenamee",
257
- "FULLPAGENAMEE": "fullpagenamee",
258
- "根页面名称": "rootpagename",
259
- "ROOTPAGENAME": "rootpagename",
260
- "根页面名称等同": "rootpagenamee",
261
- "ROOTPAGENAMEE": "rootpagenamee",
262
- "基础页面名称": "basepagename",
263
- "BASEPAGENAME": "basepagename",
264
- "基础页面名称等同": "basepagenamee",
265
- "BASEPAGENAMEE": "basepagenamee",
266
- "子页面名称": "subpagename",
267
- "SUBPAGENAME": "subpagename",
268
- "子页面名称等同": "subpagenamee",
269
- "SUBPAGENAMEE": "subpagenamee",
270
- "讨论页面名称": "talkpagename",
271
- "对话页面名称": "talkpagename",
272
- "TALKPAGENAME": "talkpagename",
273
- "讨论页面名称等同": "talkpagenamee",
274
- "对话页面名称等同": "talkpagenamee",
275
- "TALKPAGENAMEE": "talkpagenamee",
276
- "主名字空间页面名称": "subjectpagename",
277
- "条目页面名称": "subjectpagename",
278
- "SUBJECTPAGENAME": "subjectpagename",
279
- "ARTICLEPAGENAME": "subjectpagename",
280
- "主名字空间页面名称等同": "subjectpagenamee",
281
- "条目页面名称等同": "subjectpagenamee",
282
- "SUBJECTPAGENAMEE": "subjectpagenamee",
283
- "ARTICLEPAGENAMEE": "subjectpagenamee",
284
- "修订ID": "revisionid",
285
- "REVISIONID": "revisionid",
286
- "修订日": "revisionday",
287
- "REVISIONDAY": "revisionday",
288
- "修订日2": "revisionday2",
289
- "REVISIONDAY2": "revisionday2",
290
- "修订月": "revisionmonth",
291
- "REVISIONMONTH": "revisionmonth",
292
- "修订月1": "revisionmonth1",
293
- "REVISIONMONTH1": "revisionmonth1",
294
- "修订年": "revisionyear",
295
- "REVISIONYEAR": "revisionyear",
296
- "修订时间戳": "revisiontimestamp",
297
- "REVISIONTIMESTAMP": "revisiontimestamp",
298
- "修订用户": "revisionuser",
299
- "REVISIONUSER": "revisionuser",
300
- "级联来源": "cascadingsources",
301
- "CASCADINGSOURCES": "cascadingsources",
302
- "名字空间": "namespace",
303
- "NAMESPACE": "namespace",
304
- "显示标题": "displaytitle",
305
- "DISPLAYTITLE": "displaytitle",
306
- "!": "!",
307
- "本月": "currentmonth",
308
- "本月2": "currentmonth",
309
- "CURRENTMONTH": "currentmonth",
310
- "CURRENTMONTH2": "currentmonth",
311
- "本月1": "currentmonth1",
312
- "CURRENTMONTH1": "currentmonth1",
313
- "本月名": "currentmonthname",
314
- "本月名称": "currentmonthname",
315
- "CURRENTMONTHNAME": "currentmonthname",
316
- "本月名属格": "currentmonthnamegen",
317
- "本月名称属格": "currentmonthnamegen",
318
- "CURRENTMONTHNAMEGEN": "currentmonthnamegen",
319
- "本月简称": "currentmonthabbrev",
320
- "CURRENTMONTHABBREV": "currentmonthabbrev",
321
- "今天": "currentday",
322
- "CURRENTDAY": "currentday",
323
- "今天2": "currentday2",
324
- "CURRENTDAY2": "currentday2",
325
- "星期": "currentdayname",
326
- "今天名": "currentdayname",
327
- "今天名称": "currentdayname",
328
- "CURRENTDAYNAME": "currentdayname",
329
- "今年": "currentyear",
330
- "CURRENTYEAR": "currentyear",
331
- "当前时间": "currenttime",
332
- "此时": "currenttime",
333
- "CURRENTTIME": "currenttime",
334
- "当前小时": "currenthour",
335
- "CURRENTHOUR": "currenthour",
336
- "本地月": "localmonth",
337
- "本地月2": "localmonth",
338
- "LOCALMONTH": "localmonth",
339
- "LOCALMONTH2": "localmonth",
340
- "本地月1": "localmonth1",
341
- "LOCALMONTH1": "localmonth1",
342
- "本地月份名": "localmonthname",
343
- "LOCALMONTHNAME": "localmonthname",
344
- "本地月历": "localmonthnamegen",
345
- "LOCALMONTHNAMEGEN": "localmonthnamegen",
346
- "本地月缩写": "localmonthabbrev",
347
- "LOCALMONTHABBREV": "localmonthabbrev",
348
- "本地日": "localday",
349
- "LOCALDAY": "localday",
350
- "本地日2": "localday2",
351
- "LOCALDAY2": "localday2",
352
- "本地日名": "localdayname",
353
- "LOCALDAYNAME": "localdayname",
354
- "本地年": "localyear",
355
- "LOCALYEAR": "localyear",
356
- "本地时间": "localtime",
357
- "LOCALTIME": "localtime",
358
- "本地小时": "localhour",
359
- "LOCALHOUR": "localhour",
360
- "站点名称": "sitename",
361
- "SITENAME": "sitename",
362
- "本周": "currentweek",
363
- "CURRENTWEEK": "currentweek",
364
- "当前DOW": "currentdow",
365
- "CURRENTDOW": "currentdow",
366
- "本地周": "localweek",
367
- "LOCALWEEK": "localweek",
368
- "本地DOW": "localdow",
369
- "LOCALDOW": "localdow",
370
- "修订大小": "revisionsize",
371
- "REVISIONSIZE": "revisionsize",
372
- "当前版本": "currentversion",
373
- "CURRENTVERSION": "currentversion",
374
- "当前时间戳": "currenttimestamp",
375
- "CURRENTTIMESTAMP": "currenttimestamp",
376
- "本地时间戳": "localtimestamp",
377
- "LOCALTIMESTAMP": "localtimestamp",
378
- "方向标记": "directionmark",
379
- "DIRECTIONMARK": "directionmark",
380
- "DIRMARK": "directionmark",
381
- "内容语言": "contentlanguage",
382
- "CONTENTLANGUAGE": "contentlanguage",
383
- "CONTENTLANG": "contentlanguage",
384
- "PAGELANGUAGE": "pagelanguage"
385
- }
386
- ],
387
- "urlProtocols": "bitcoin\\:|ftp\\:\\/\\/|ftps\\:\\/\\/|geo\\:|git\\:\\/\\/|gopher\\:\\/\\/|http\\:\\/\\/|https\\:\\/\\/|irc\\:\\/\\/|ircs\\:\\/\\/|magnet\\:|mailto\\:|mms\\:\\/\\/|news\\:|nntp\\:\\/\\/|redis\\:\\/\\/|sftp\\:\\/\\/|sip\\:|sips\\:|sms\\:|ssh\\:\\/\\/|svn\\:\\/\\/|tel\\:|telnet\\:\\/\\/|urn\\:|worldwind\\:\\/\\/|xmpp\\:|\\/\\/"
388
- }