-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmake-plugin-pages.rb
executable file
·93 lines (82 loc) · 2.23 KB
/
make-plugin-pages.rb
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
#!/usr/bin/ruby -Ku
require 'cgi'
require File.join(File.dirname($0), 'info_reader')
repos_path, output_dir = *ARGV
proc do
base = File.join(File.dirname($0), '../../')
repos_path = File.join(base, 'vimperator-plugins.git/') unless repos_path
output_dir = File.join(base, 'vimpr.github.com.git') unless output_dir
end[]
LATEST = '3.x'
PREV = '2.3'
Title = 'Vimperator plugins on vimpr'
Langs = %w[ja en-US]
Shorts = {'ja' => 'ja', 'en-US' => 'en'}
def escapeHTML (text)
CGI.escapeHTML(text)
end
def drop_anchor (text, url)
"<a href=\"#{url}\">#{escapeHTML(text)}</a>"
end
Langs.each do
|lang|
File.open(File.join(output_dir, "plugins-#{Shorts[lang]}.html"), 'w') do
|file|
file.puts <<-"EOT"
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>#{Title}</title>
<link rel="stylesheet" type="text/css" href="voqn.css">
</head>
<!-- #DO NOT EDIT THIS FILE -->
<body>
<h1>#{Title}</h1>
<table>
<tr>
<th>name</th>
<th>description</th>
<th>author</th>
<th>download</th>
</tr>
EOT
plugin_counter = 0
Dir.glob("#{repos_path}/*.js").sort.each do
|filename|
info = PluginInfo.load(filename, lang)
next unless info
file.puts <<-"EOT"
<tr>
<td>#{
drop_anchor(
info.name,
"http://github.com/vimpr/vimperator-plugins/blob/master/#{File.basename(filename)}"
)
}</td>
<td>#{escapeHTML(info.description)}</td>
<td>#{info.author}</td>
<td>
#{drop_anchor(
PREV,
"http://github.com/vimpr/vimperator-plugins/raw/#{PREV}/#{File.basename(filename)}"
)}
#{drop_anchor(
LATEST,
"http://github.com/vimpr/vimperator-plugins/raw/master/#{File.basename(filename)}"
)}
</td>
</tr>
EOT
plugin_counter += 1
end
file.puts <<-EOT
</table>
<p class="plugin-counter">#{plugin_counter} plugins!</p>
<p class="back-to-top"><a href="./">Back to top</a></p>
</body>
</html>
EOT
end
end