Wiki2Go 1.14.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.
- data/bin/Wiki2GoServer.rb +11 -0
- data/bin/Wiki2Go_make_site.rb +10 -0
- data/bin/Wiki2Go_make_wiki.rb +10 -0
- data/bin/Wiki2Go_update_site.rb +10 -0
- data/lib/Web2Go/CGIRequest.rb +99 -0
- data/lib/Web2Go/CGIResponse.rb +64 -0
- data/lib/Web2Go/ERB_Interpreter.rb +47 -0
- data/lib/Web2Go/MockCookie.rb +17 -0
- data/lib/Web2Go/MockRequest.rb +131 -0
- data/lib/Web2Go/MockResponse.rb +35 -0
- data/lib/Web2Go/Web2Go.rb +0 -0
- data/lib/Web2Go/WebrickRequest.rb +124 -0
- data/lib/Web2Go/WebrickResponse.rb +50 -0
- data/lib/Wiki2Go.rb +2 -0
- data/lib/Wiki2Go/BlackList.rb +52 -0
- data/lib/Wiki2Go/DotGraphics.rb +69 -0
- data/lib/Wiki2Go/FileStorage.rb +267 -0
- data/lib/Wiki2Go/GreyList.rb +88 -0
- data/lib/Wiki2Go/Install/config/chonqed_blacklist.txt +4743 -0
- data/lib/Wiki2Go/Install/config/passwords +1 -0
- data/lib/Wiki2Go/Install/make_site.rb +515 -0
- data/lib/Wiki2Go/Install/site/error.html +77 -0
- data/lib/Wiki2Go/Install/site/html/admin.css +135 -0
- data/lib/Wiki2Go/Install/site/html/xml.gif +0 -0
- data/lib/Wiki2Go/Install/site/robots.txt +13 -0
- data/lib/Wiki2Go/Install/site/style.css +135 -0
- data/lib/Wiki2Go/Install/templates/admin.htm +48 -0
- data/lib/Wiki2Go/Install/templates/admin_pages/admin.txt +1 -0
- data/lib/Wiki2Go/Install/templates/admin_pages/greylist.txt +72 -0
- data/lib/Wiki2Go/Install/templates/admin_pages/passwords.txt +67 -0
- data/lib/Wiki2Go/Install/templates/admin_pages/regenerate.txt +26 -0
- data/lib/Wiki2Go/Install/templates/admin_pages/removespam.txt +19 -0
- data/lib/Wiki2Go/Install/templates/admin_pages/update.txt +13 -0
- data/lib/Wiki2Go/Install/templates/edit.htm +74 -0
- data/lib/Wiki2Go/Install/templates/pagelist.htm +82 -0
- data/lib/Wiki2Go/Install/templates/rss.xml +11 -0
- data/lib/Wiki2Go/Install/templates/versionlist.htm +84 -0
- data/lib/Wiki2Go/Install/templates/view.htm +72 -0
- data/lib/Wiki2Go/Install/wiki/style.css +135 -0
- data/lib/Wiki2Go/Page.rb +69 -0
- data/lib/Wiki2Go/PrivateWikiConfig.rb +27 -0
- data/lib/Wiki2Go/PublicWikiConfig.rb +52 -0
- data/lib/Wiki2Go/ReadWriteWikiConfig.rb +23 -0
- data/lib/Wiki2Go/Server.rb +94 -0
- data/lib/Wiki2Go/SpamFilter.rb +95 -0
- data/lib/Wiki2Go/UrlFinder.rb +26 -0
- data/lib/Wiki2Go/Web.rb +185 -0
- data/lib/Wiki2Go/WebrickServlet.rb +211 -0
- data/lib/Wiki2Go/WhiteList.rb +29 -0
- data/lib/Wiki2Go/Wiki2Go.rb +274 -0
- data/lib/Wiki2Go/Wiki2GoConfig.rb +144 -0
- data/lib/Wiki2Go/Wiki2GoServlet.rb +197 -0
- data/lib/Wiki2Go/WikiFormatter.rb +597 -0
- data/lib/Wiki2Go/WikiLogFile.rb +43 -0
- data/lib/Wiki2Go/cgi/changes.rb +20 -0
- data/lib/Wiki2Go/cgi/display.rb +20 -0
- data/lib/Wiki2Go/cgi/edit.rb +20 -0
- data/lib/Wiki2Go/cgi/redirect.rb +20 -0
- data/lib/Wiki2Go/cgi/save.rb +20 -0
- data/lib/Wiki2Go/cgi/search.rb +20 -0
- data/lib/Wiki2Go/cgi/secure/admin.rb +20 -0
- data/lib/Wiki2Go/cgi/secure/generate_static.rb +20 -0
- data/lib/Wiki2Go/cgi/secure/removespam.rb +20 -0
- data/lib/Wiki2Go/cgi/upload.rb +20 -0
- data/lib/Wiki2Go/cgi/versions.rb +20 -0
- data/lib/Wiki2Go/cgi/view.rb +20 -0
- metadata +113 -0
@@ -0,0 +1,43 @@
|
|
1
|
+
#!/usr/local/bin/ruby
|
2
|
+
|
3
|
+
require "Wiki2Go/FileStorage.rb"
|
4
|
+
|
5
|
+
class WikiLogFile
|
6
|
+
|
7
|
+
def WikiLogFile.restore(path,subwiki,filename,blacklist)
|
8
|
+
if filename =~ /(.*)\.txt$/ then
|
9
|
+
topic = $1
|
10
|
+
storage = Wiki2Go::FileStorage.new(path)
|
11
|
+
versions = storage.all_versions_of(subwiki,topic)
|
12
|
+
first_good_version = versions.find do |v|
|
13
|
+
# puts "Checking #{v.author} against #{user}"
|
14
|
+
true unless blacklist.contains(v.author)
|
15
|
+
end
|
16
|
+
if first_good_version.nil? then
|
17
|
+
puts "NO GOOD VERSION FOUND. Delete #{topic}!"
|
18
|
+
elsif first_good_version.equal?(versions[0]) then
|
19
|
+
# puts "#{topic} is ok"
|
20
|
+
else
|
21
|
+
puts "#{topic} must be replaced by version by #{first_good_version.author}"
|
22
|
+
storage.store_page(subwiki,first_good_version)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
def WikiLogFile.restore_all_from(path,subwiki)
|
28
|
+
storage = Wiki2Go::FileStorage.new(path)
|
29
|
+
blacklist = storage.load_blacklist
|
30
|
+
textpath = path + File::SEPARATOR + "texts" + File::SEPARATOR + subwiki
|
31
|
+
Dir.foreach(textpath) do |filename|
|
32
|
+
restore(path,subwiki,filename,blacklist)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def WikiLogFile.blacklist(path,user)
|
37
|
+
storage = Wiki2Go::FileStorage.new(path)
|
38
|
+
list = storage.load_blacklist
|
39
|
+
list.add(user)
|
40
|
+
storage.save_list(list)
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/usr/bin/env ruby1.8
|
2
|
+
|
3
|
+
require "CgiOptions.rb"
|
4
|
+
|
5
|
+
require "cgi"
|
6
|
+
|
7
|
+
require 'Web2Go/CGIRequest'
|
8
|
+
require 'Web2Go/CGIResponse'
|
9
|
+
require 'Wiki2Go/Wiki2GoServlet'
|
10
|
+
|
11
|
+
config = CgiOptions.new
|
12
|
+
|
13
|
+
cgi = CGI.new("html4Tr")
|
14
|
+
|
15
|
+
request = Web2Go::CGIRequest.new(cgi)
|
16
|
+
response = Web2Go::CGIResponse.new(cgi)
|
17
|
+
|
18
|
+
servlet = Wiki2Go::Servlet.new(config)
|
19
|
+
servlet.execute(request,response)
|
20
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/usr/bin/env ruby1.8
|
2
|
+
|
3
|
+
require "CgiOptions.rb"
|
4
|
+
|
5
|
+
require "cgi"
|
6
|
+
|
7
|
+
require 'Web2Go/CGIRequest'
|
8
|
+
require 'Web2Go/CGIResponse'
|
9
|
+
require 'Wiki2Go/Wiki2GoServlet'
|
10
|
+
|
11
|
+
config = CgiOptions.new
|
12
|
+
|
13
|
+
cgi = CGI.new("html4Tr")
|
14
|
+
|
15
|
+
request = Web2Go::CGIRequest.new(cgi)
|
16
|
+
response = Web2Go::CGIResponse.new(cgi)
|
17
|
+
|
18
|
+
servlet = Wiki2Go::Servlet.new(config)
|
19
|
+
servlet.execute(request,response)
|
20
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/usr/bin/env ruby1.8
|
2
|
+
|
3
|
+
require "CgiOptions.rb"
|
4
|
+
|
5
|
+
require "cgi"
|
6
|
+
|
7
|
+
require 'Web2Go/CGIRequest'
|
8
|
+
require 'Web2Go/CGIResponse'
|
9
|
+
require 'Wiki2Go/Wiki2GoServlet'
|
10
|
+
|
11
|
+
config = CgiOptions.new
|
12
|
+
|
13
|
+
cgi = CGI.new("html4Tr")
|
14
|
+
|
15
|
+
request = Web2Go::CGIRequest.new(cgi)
|
16
|
+
response = Web2Go::CGIResponse.new(cgi)
|
17
|
+
|
18
|
+
servlet = Wiki2Go::Servlet.new(config)
|
19
|
+
servlet.execute(request,response)
|
20
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/usr/bin/env ruby1.8
|
2
|
+
|
3
|
+
require "CgiOptions.rb"
|
4
|
+
|
5
|
+
require "cgi"
|
6
|
+
|
7
|
+
require 'Web2Go/CGIRequest'
|
8
|
+
require 'Web2Go/CGIResponse'
|
9
|
+
require 'Wiki2Go/Wiki2GoServlet'
|
10
|
+
|
11
|
+
config = CgiOptions.new
|
12
|
+
|
13
|
+
cgi = CGI.new("html4Tr")
|
14
|
+
|
15
|
+
request = Web2Go::CGIRequest.new(cgi)
|
16
|
+
response = Web2Go::CGIResponse.new(cgi)
|
17
|
+
|
18
|
+
servlet = Wiki2Go::Servlet.new(config)
|
19
|
+
servlet.execute(request,response)
|
20
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/usr/bin/env ruby1.8
|
2
|
+
|
3
|
+
require "CgiOptions.rb"
|
4
|
+
|
5
|
+
require "cgi"
|
6
|
+
|
7
|
+
require 'Web2Go/CGIRequest'
|
8
|
+
require 'Web2Go/CGIResponse'
|
9
|
+
require 'Wiki2Go/Wiki2GoServlet'
|
10
|
+
|
11
|
+
config = CgiOptions.new
|
12
|
+
|
13
|
+
cgi = CGI.new("html4Tr")
|
14
|
+
|
15
|
+
request = Web2Go::CGIRequest.new(cgi)
|
16
|
+
response = Web2Go::CGIResponse.new(cgi)
|
17
|
+
|
18
|
+
servlet = Wiki2Go::Servlet.new(config)
|
19
|
+
servlet.execute(request,response)
|
20
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/usr/bin/env ruby1.8
|
2
|
+
|
3
|
+
require "CgiOptions.rb"
|
4
|
+
|
5
|
+
require "cgi"
|
6
|
+
|
7
|
+
require 'Web2Go/CGIRequest'
|
8
|
+
require 'Web2Go/CGIResponse'
|
9
|
+
require 'Wiki2Go/Wiki2GoServlet'
|
10
|
+
|
11
|
+
config = CgiOptions.new
|
12
|
+
|
13
|
+
cgi = CGI.new("html4Tr")
|
14
|
+
|
15
|
+
request = Web2Go::CGIRequest.new(cgi)
|
16
|
+
response = Web2Go::CGIResponse.new(cgi)
|
17
|
+
|
18
|
+
servlet = Wiki2Go::Servlet.new(config)
|
19
|
+
servlet.execute(request,response)
|
20
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/usr/bin/env ruby1.8
|
2
|
+
|
3
|
+
require "CgiOptions.rb"
|
4
|
+
|
5
|
+
require "cgi"
|
6
|
+
|
7
|
+
require 'Web2Go/CGIRequest'
|
8
|
+
require 'Web2Go/CGIResponse'
|
9
|
+
require 'Wiki2Go/Wiki2GoServlet'
|
10
|
+
|
11
|
+
config = CgiOptions.new
|
12
|
+
|
13
|
+
cgi = CGI.new("html4Tr")
|
14
|
+
|
15
|
+
request = Web2Go::CGIRequest.new(cgi)
|
16
|
+
response = Web2Go::CGIResponse.new(cgi)
|
17
|
+
|
18
|
+
servlet = Wiki2Go::Servlet.new(config)
|
19
|
+
servlet.execute(request,response)
|
20
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/usr/bin/env ruby1.8
|
2
|
+
|
3
|
+
require "CgiOptions.rb"
|
4
|
+
|
5
|
+
require "cgi"
|
6
|
+
|
7
|
+
require 'Web2Go/CGIRequest'
|
8
|
+
require 'Web2Go/CGIResponse'
|
9
|
+
require 'Wiki2Go/Wiki2GoServlet'
|
10
|
+
|
11
|
+
config = CgiOptions.new
|
12
|
+
|
13
|
+
cgi = CGI.new("html4Tr")
|
14
|
+
|
15
|
+
request = Web2Go::CGIRequest.new(cgi)
|
16
|
+
response = Web2Go::CGIResponse.new(cgi)
|
17
|
+
|
18
|
+
servlet = Wiki2Go::Servlet.new(config)
|
19
|
+
servlet.execute(request,response)
|
20
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/usr/bin/env ruby1.8
|
2
|
+
|
3
|
+
require "CgiOptions.rb"
|
4
|
+
|
5
|
+
require "cgi"
|
6
|
+
|
7
|
+
require 'Web2Go/CGIRequest'
|
8
|
+
require 'Web2Go/CGIResponse'
|
9
|
+
require 'Wiki2Go/Wiki2GoServlet'
|
10
|
+
|
11
|
+
config = CgiOptions.new
|
12
|
+
|
13
|
+
cgi = CGI.new("html4Tr")
|
14
|
+
|
15
|
+
request = Web2Go::CGIRequest.new(cgi)
|
16
|
+
response = Web2Go::CGIResponse.new(cgi)
|
17
|
+
|
18
|
+
servlet = Wiki2Go::Servlet.new(config)
|
19
|
+
servlet.execute(request,response)
|
20
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/usr/bin/env ruby1.8
|
2
|
+
|
3
|
+
require "CgiOptions.rb"
|
4
|
+
|
5
|
+
require "cgi"
|
6
|
+
|
7
|
+
require 'Web2Go/CGIRequest'
|
8
|
+
require 'Web2Go/CGIResponse'
|
9
|
+
require 'Wiki2Go/Wiki2GoServlet'
|
10
|
+
|
11
|
+
config = CgiOptions.new
|
12
|
+
|
13
|
+
cgi = CGI.new("html4Tr")
|
14
|
+
|
15
|
+
request = Web2Go::CGIRequest.new(cgi)
|
16
|
+
response = Web2Go::CGIResponse.new(cgi)
|
17
|
+
|
18
|
+
servlet = Wiki2Go::Servlet.new(config)
|
19
|
+
servlet.execute(request,response)
|
20
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/usr/bin/env ruby1.8
|
2
|
+
|
3
|
+
require "CgiOptions.rb"
|
4
|
+
|
5
|
+
require "cgi"
|
6
|
+
|
7
|
+
require 'Web2Go/CGIRequest'
|
8
|
+
require 'Web2Go/CGIResponse'
|
9
|
+
require 'Wiki2Go/Wiki2GoServlet'
|
10
|
+
|
11
|
+
config = CgiOptions.new
|
12
|
+
|
13
|
+
cgi = CGI.new("html4Tr")
|
14
|
+
|
15
|
+
request = Web2Go::CGIRequest.new(cgi)
|
16
|
+
response = Web2Go::CGIResponse.new(cgi)
|
17
|
+
|
18
|
+
servlet = Wiki2Go::Servlet.new(config)
|
19
|
+
servlet.execute(request,response)
|
20
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/usr/bin/env ruby1.8
|
2
|
+
|
3
|
+
require "CgiOptions.rb"
|
4
|
+
|
5
|
+
require "cgi"
|
6
|
+
|
7
|
+
require 'Web2Go/CGIRequest'
|
8
|
+
require 'Web2Go/CGIResponse'
|
9
|
+
require 'Wiki2Go/Wiki2GoServlet'
|
10
|
+
|
11
|
+
config = CgiOptions.new
|
12
|
+
|
13
|
+
cgi = CGI.new("html4Tr")
|
14
|
+
|
15
|
+
request = Web2Go::CGIRequest.new(cgi)
|
16
|
+
response = Web2Go::CGIResponse.new(cgi)
|
17
|
+
|
18
|
+
servlet = Wiki2Go::Servlet.new(config)
|
19
|
+
servlet.execute(request,response)
|
20
|
+
|
metadata
ADDED
@@ -0,0 +1,113 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.8.3
|
3
|
+
specification_version: 1
|
4
|
+
name: Wiki2Go
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 1.14.0
|
7
|
+
date: 2005-06-05
|
8
|
+
summary: Wiki2Go is a Ruby Wiki
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: pvc@nayima.be
|
12
|
+
homepage: http://wiki2go.rubyforge.org
|
13
|
+
rubyforge_project: wiki2go
|
14
|
+
description:
|
15
|
+
autorequire: Wiki2Go
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: false
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
-
|
22
|
+
- ">"
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 0.0.0
|
25
|
+
version:
|
26
|
+
platform: ruby
|
27
|
+
authors:
|
28
|
+
- Pascal Van Cauwenberghe
|
29
|
+
files:
|
30
|
+
- lib/Web2Go
|
31
|
+
- lib/Wiki2Go
|
32
|
+
- lib/Wiki2Go.rb
|
33
|
+
- lib/Web2Go/CGIRequest.rb
|
34
|
+
- lib/Web2Go/CGIResponse.rb
|
35
|
+
- lib/Web2Go/ERB_Interpreter.rb
|
36
|
+
- lib/Web2Go/MockCookie.rb
|
37
|
+
- lib/Web2Go/MockRequest.rb
|
38
|
+
- lib/Web2Go/MockResponse.rb
|
39
|
+
- lib/Web2Go/Web2Go.rb
|
40
|
+
- lib/Web2Go/WebrickRequest.rb
|
41
|
+
- lib/Web2Go/WebrickResponse.rb
|
42
|
+
- lib/Wiki2Go/BlackList.rb
|
43
|
+
- lib/Wiki2Go/cgi
|
44
|
+
- lib/Wiki2Go/DotGraphics.rb
|
45
|
+
- lib/Wiki2Go/FileStorage.rb
|
46
|
+
- lib/Wiki2Go/GreyList.rb
|
47
|
+
- lib/Wiki2Go/Install
|
48
|
+
- lib/Wiki2Go/Page.rb
|
49
|
+
- lib/Wiki2Go/PrivateWikiConfig.rb
|
50
|
+
- lib/Wiki2Go/PublicWikiConfig.rb
|
51
|
+
- lib/Wiki2Go/ReadWriteWikiConfig.rb
|
52
|
+
- lib/Wiki2Go/Server.rb
|
53
|
+
- lib/Wiki2Go/SpamFilter.rb
|
54
|
+
- lib/Wiki2Go/UrlFinder.rb
|
55
|
+
- lib/Wiki2Go/Web.rb
|
56
|
+
- lib/Wiki2Go/WebrickServlet.rb
|
57
|
+
- lib/Wiki2Go/WhiteList.rb
|
58
|
+
- lib/Wiki2Go/Wiki2Go.rb
|
59
|
+
- lib/Wiki2Go/Wiki2GoConfig.rb
|
60
|
+
- lib/Wiki2Go/Wiki2GoServlet.rb
|
61
|
+
- lib/Wiki2Go/WikiFormatter.rb
|
62
|
+
- lib/Wiki2Go/WikiLogFile.rb
|
63
|
+
- lib/Wiki2Go/cgi/changes.rb
|
64
|
+
- lib/Wiki2Go/cgi/display.rb
|
65
|
+
- lib/Wiki2Go/cgi/edit.rb
|
66
|
+
- lib/Wiki2Go/cgi/redirect.rb
|
67
|
+
- lib/Wiki2Go/cgi/save.rb
|
68
|
+
- lib/Wiki2Go/cgi/search.rb
|
69
|
+
- lib/Wiki2Go/cgi/secure
|
70
|
+
- lib/Wiki2Go/cgi/upload.rb
|
71
|
+
- lib/Wiki2Go/cgi/versions.rb
|
72
|
+
- lib/Wiki2Go/cgi/view.rb
|
73
|
+
- lib/Wiki2Go/cgi/secure/admin.rb
|
74
|
+
- lib/Wiki2Go/cgi/secure/generate_static.rb
|
75
|
+
- lib/Wiki2Go/cgi/secure/removespam.rb
|
76
|
+
- lib/Wiki2Go/Install/config
|
77
|
+
- lib/Wiki2Go/Install/make_site.rb
|
78
|
+
- lib/Wiki2Go/Install/site
|
79
|
+
- lib/Wiki2Go/Install/templates
|
80
|
+
- lib/Wiki2Go/Install/wiki
|
81
|
+
- lib/Wiki2Go/Install/config/chonqed_blacklist.txt
|
82
|
+
- lib/Wiki2Go/Install/config/passwords
|
83
|
+
- lib/Wiki2Go/Install/site/error.html
|
84
|
+
- lib/Wiki2Go/Install/site/html
|
85
|
+
- lib/Wiki2Go/Install/site/robots.txt
|
86
|
+
- lib/Wiki2Go/Install/site/style.css
|
87
|
+
- lib/Wiki2Go/Install/site/html/admin.css
|
88
|
+
- lib/Wiki2Go/Install/site/html/xml.gif
|
89
|
+
- lib/Wiki2Go/Install/templates/admin.htm
|
90
|
+
- lib/Wiki2Go/Install/templates/admin_pages
|
91
|
+
- lib/Wiki2Go/Install/templates/edit.htm
|
92
|
+
- lib/Wiki2Go/Install/templates/pagelist.htm
|
93
|
+
- lib/Wiki2Go/Install/templates/rss.xml
|
94
|
+
- lib/Wiki2Go/Install/templates/versionlist.htm
|
95
|
+
- lib/Wiki2Go/Install/templates/view.htm
|
96
|
+
- lib/Wiki2Go/Install/templates/admin_pages/admin.txt
|
97
|
+
- lib/Wiki2Go/Install/templates/admin_pages/greylist.txt
|
98
|
+
- lib/Wiki2Go/Install/templates/admin_pages/passwords.txt
|
99
|
+
- lib/Wiki2Go/Install/templates/admin_pages/regenerate.txt
|
100
|
+
- lib/Wiki2Go/Install/templates/admin_pages/removespam.txt
|
101
|
+
- lib/Wiki2Go/Install/templates/admin_pages/update.txt
|
102
|
+
- lib/Wiki2Go/Install/wiki/style.css
|
103
|
+
test_files: []
|
104
|
+
rdoc_options: []
|
105
|
+
extra_rdoc_files: []
|
106
|
+
executables:
|
107
|
+
- Wiki2GoServer.rb
|
108
|
+
- Wiki2Go_make_site.rb
|
109
|
+
- Wiki2Go_make_wiki.rb
|
110
|
+
- Wiki2Go_update_site.rb
|
111
|
+
extensions: []
|
112
|
+
requirements: []
|
113
|
+
dependencies: []
|