-
Notifications
You must be signed in to change notification settings - Fork 123
/
PMWriter.js
400 lines (345 loc) · 12.7 KB
/
PMWriter.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
/*
* さわるなきけん!
* DO NOT USE!
* このコードを読むと失明する場合があります。
*
* for 2.2
* */
(function(){
const U = liberator.plugins.libly.$U;
let pluginDirPath = liberator.globalVariables.pmwriter_plugin_dir;
let pluginRootDirPath = io.File(pluginDirPath).parent.path;
let outputDir = liberator.globalVariables.pmwriter_output_dir;
const VERSIONS = '2.2 2.1 2.0 1.2'.split(/\s+/);
if (!(pluginDirPath && outputDir))
return;
if (!liberator.plugins.pmwriter)
liberator.plugins.pmwriter = {};
// make を改造
{
let makeLink = liberator.eval('makeLink', liberator.plugins.pluginManager.list);
if (!liberator.plugins.pmwriter.makeLink) {
liberator.plugins.pmwriter.makeLink = function (str) makeLink(str, true);
liberator.eval('makeLink = liberator.plugins.pmwriter.makeLink ', liberator.plugins.pluginManager.list);
}
//let WikiParser = liberator.eval('WikiParser', liberator.plugins.pluginManager.list);
//WikiParser.prototype.inlineParse = function (str) {
// function replacer(_, s)
// ({ '<': '<', '>': '>', '&': '&' })[s] ||
// '<a href="' + s + '" highlight="URL">' + s + '</a>';
// try {
// return XMLList(str.replace(/(>|<|&|(?:https?:\/\/|mailto:)\S+)/g, replacer));
// } catch (e) {
// return XMLList(str);
// }
//};
}
let langselector =
<div>
<style><![CDATA[
.lang-hide { display: none }
]]></style>
<script language="javascript"><![CDATA[
var element = document.createElement('style');
document.getElementsByTagName('head')[0].appendChild(element);
var lang = 'default';
if (/^ja/.test(window.navigator.language))
lang = 'ja';
element.sheet.insertRule('.lang-' + lang + ' { display: block !important }', 0);
document.write(sheet);
]]></script>
</div>;
//'<style><![CDATA[ .lang-ja { display: none } ]]></style>');
function action () {
const IOService = services.get('io');
const DOCUMENT_TITLE = 'Vimperator Plugins in CodeRepos';
const CodeRepos = 'http://coderepos.org/share/browser/lang/javascript/vimperator-plugins/trunk/';
const CodeReposBranch = 'http://coderepos.org/share/browser/lang/javascript/vimperator-plugins/branches/';
const CodeReposFile = 'http://github.com/vimpr/vimperator-plugins/blob/master/';
function Context (file) {
this.NAME = file.leafName.replace(/\..*/, '')
.replace(/-([a-z])/g, function (m, n1) n1.toUpperCase());
};
function fromUTF8Octets(octets){
return decodeURIComponent(octets.replace(/[%\x80-\xFF]/g, function(c){
return '%' + c.charCodeAt(0).toString(16);
}));
}
function concatXML (xmls) {
let result = ``;
xmls.forEach(function (xml) result += xml);
return result;
}
function langList (info, name) {
let result = ``;
let i = info.length();
while (i-- > 0) {
if (info[i].@lang.toString()) {
result += <{name} lang={info[i].@lang.toString()}>{fromUTF8Octets(info[i].toString())}</{name}>;
} else {
result += <{name}>{fromUTF8Octets(info[i].toString())}</{name}>;
}
}
return result;
}
function chooseByLang(info, lang) {
let result;
let i = info.length();
while (i-- > 0) {
let it = info[i];
if (!it.@lang)
result = it;
if (it.@lang.toString() == lang) {
result = it;
break;
}
}
return result;
}
function allLang (tag, info, utf, f) {
if (!f)
f = function (v) v;
let ff = utf ? function (v) fromUTF8Octets(f(v).toString())
: f
if (!tag)
tag = 'div';
let result = ``;
for (let i = 0, l = info.length(); i < l; i++) {
let it = info[i];
result += <{tag} class={'lang-hide '+(i==0?"lang-default ":'')+(i==l-1?'lang-ja ':'')+"lang-"+(it.@lang.toString()||'default')}>{ff(it)}</{tag}>;
}
return result;
}
let myname = __context__.NAME;
let otags = liberator.eval('tags', liberator.plugins.pluginManager.list);
let template = liberator.eval('template', liberator.plugins.pluginManager.list);
let linkTo;
let tags = {
__proto__: otags,
name: function () <a href={linkTo}>{otags.name.apply(otags, arguments)}</a>
};
let files = io.File(pluginDirPath).readDirectory();
let indexHtml = ``;
let allHtml = ``;
let pminfos = [];
files.forEach(function (file) {
if (!/\.js$/.test(file.path))
return;
if (!/PLUGIN_INFO/.test(io.File(file.path).read()))
return;
try {
let context = new Context(file);
let pluginName = file.leafName.replace(/\..*$/, '');
let pluginFilename = file.leafName;
if (context.NAME == myname)
return;
let pluginInfo;
let htmlFilename = pluginName + '.html';
context.watch('PLUGIN_INFO', function (n, O, N) { pluginInfo = N; throw 'STOP';});
try {
services.get("subscriptLoader").loadSubScript(IOService.newFileURI(file).spec, context);
} catch (e) {
/* DO NOTHING */
}
tags.name = function () <a href={linkTo}>{otags.name.apply(otags, arguments)}</a>;
let plugin = [];
let (info = pluginInfo) {
plugin['name'] = pluginName;
plugin['info'] = {};
plugin['orgInfo'] = {};
for (let tag in tags){
plugin.orgInfo[tag] = info[tag];
let value = tags[tag](info);
if (value && value.toString().length > 0){
plugin.push([tag, value]);
plugin.info[tag] = value;
}
}
}
let authors;
{
for each (let a in pluginInfo.author) {
let hp = a.@homepage.toString();
let xml = hp ? <a href={hp}>{a.toString()}</a>
: <span>{a.toString()}</span>
if (authors)
authors += <span>, </span> + xml;
else
authors = xml;
}
}
// infoXML
{
pminfos.push(
<plugin>
{langList(pluginInfo.name, 'name')}
{langList(pluginInfo.description, 'description')}
{langList(pluginInfo.version, 'version')}
<updateURL>{CodeReposFile + pluginFilename}</updateURL>
</plugin>
);
}
// プラグイン毎のドキュメント
{
//let src = pluginInfo.detail.toString();
let detailBody = allLang('div',
pluginInfo.detail,
false,
function (v) liberator.plugins.PMWikiParser.parse(fromUTF8Octets(v.toString())));
//let detailBody = plugin.info.detail
let title = allLang('span',
pluginInfo.name,
true,
function (it) (it.toString() || '---'))
let description = allLang('span',
pluginInfo.description,
true,
function (it) (it.toString()) || '---')
let versionsBody = ``;
VERSIONS.forEach(function (ver) {
let url = CodeReposBranch + ver + '/' + pluginFilename;
let file = io.File(pluginRootDirPath);
file.append('branches');
file.append(ver);
file.append(pluginFilename);
versionsBody +=
`
<dt>{'for ' + ver}</dt>
{file.exists() ? <a href={url} class="coderepos" target="_blank">{url}</a> : `not supported`}
`;
});
versionsBody +=
`
<dt>{'for Nightly'}</dt>
<a href={CodeRepos + pluginFilename} class="coderepos" target="_blank">{CodeRepos + pluginFilename}</a>
`;
// <dt>Vimperator version</dt>
// <dd>{(plugin.info.minVersion || '?') + ' - ' + (plugin.info.maxVersion || '?')}</dd>
// <dt>URL</dt>
// <dd><a href={CodeRepos + pluginFilename} class="coderepos" target="_blank">{CodeRepos + pluginFilename}</a></dd>
// <dt>File URL</dt>
// <dd><a id="file-link" href={CodeReposFile + pluginFilename} class="coderepos" target="_blank">{CodeReposFile + pluginFilename}</a></dd>
let body = <div>
<div>{langselector}</div>
<div class="information" id="information">
<h1>{title}</h1>
<div>
<dl>
<dt>Description</dt>
<dd>{description}</dd>
<dt>Latest version</dt>
<dd>{plugin.info.version || '???'}</dd>
<dt>Author</dt>
<dd>{authors}</dd>
<dt>License</dt>
<dd>{allLang('span',
pluginInfo.license,
true,
function (v) (v || '--'))}</dd>
</dl>
<hr />
<dl>{versionsBody}</dl>
</div>
</div>
<div class="detail" id="detail">{detailBody}</div>
</div>;
io.File(outputDir + htmlFilename).write(
<html>
<head>
<title>{pluginFilename}</title>
<link rel="stylesheet" href="plugin.css" type="text/css" />
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
</head>
<body>
{body}
<a href="./" class="back-to-index">back to index</a>
</body>
</html>.toString()
);
allHtml += body;
// index.html
indexHtml += <tr class="plugin">
<td class="name">
<a href={CodeRepos + pluginFilename} class="coderepos" target="_blank">{"\u2606"}</a>
<a href={htmlFilename} class="link">{plugin.name}</a>
</td>
<td class="description">
{description}
</td>
<td class="author">
{authors}
</td>
</tr>
}
} catch (e) {
liberator.log({filename: file.path})
liberator.log(e.stack)
liberator.log(e)
}
});
indexHtml = <html>
<head>
<title>{DOCUMENT_TITLE}</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<link rel="stylesheet" href="voqn.css" type="text/css" />
<script type="text/javascript" src="http://s.hatena.ne.jp/js/HatenaStar.js" />
<script type="text/javascript">
Hatena.Star.Token = '48e8f4c633307a76a4dd923111e22a25e80b6e8a';
</script>
{langselector}
<style><![CDATA[
.hatena-star-comment-container {
display: none;
padding: 0;
margin: 0;
}
]]></style>
<script type="text/javascript"><![CDATA[
Hatena.Star.SiteConfig = {
entryNodes: {
'tr': {
uri: 'a.coderepos',
title: 'td.name',
container: 'td.name'
}
}
};
]]></script>
</head>
<body>
<h1>{DOCUMENT_TITLE}</h1>
<table>
<tr class="header">
<th class="name">Name</th>
<th class="description">Description</th>
<th class="author">Author</th>
</tr>
{indexHtml}
</table>
<div class="last-updated">Last updated {new Date().toLocaleFormat('%Y/%m/%d %H:%M:%S')}</div>
</body>
</html>;
allHtml = <html>
<head>
<title>All Plugins</title>
<link rel="stylesheet" href="plugin.css" type="text/css" />
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
</head>
<body>
{allHtml}
</body>
</html>.toString();
io.File(outputDir + 'index.html').write(indexHtml.toString());
io.File(outputDir + 'all.html').write(allHtml.toString());
let infoXML = <plugins>{concatXML(pminfos)}</plugins>;
io.File(outputDir + 'info.xml').write(infoXML.toString());
}
commands.addUserCommand(
['pmwrite'],
'PMWriter',
action,
{},
true
);
})();
// vim: sw=2 ts=2 et fdm=marker: