Wiki2Go 1.17.5 → 1.22.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.
Files changed (108) hide show
  1. data/bin/Wiki2Go_firewall_blacklist.rb +8 -0
  2. data/bin/Wiki2Go_make_cvs_repository.rb +1 -0
  3. data/bin/Wiki2Go_make_site.rb +1 -2
  4. data/bin/Wiki2Go_update_site.rb +1 -2
  5. data/lib/Web2Go/CGIRequest.rb +8 -2
  6. data/lib/Web2Go/CGIResponse.rb +17 -14
  7. data/lib/Web2Go/MockRequest.rb +12 -2
  8. data/lib/Web2Go/MockResponse.rb +10 -7
  9. data/lib/Web2Go/WebrickRequest.rb +106 -101
  10. data/lib/Web2Go/WebrickResponse.rb +4 -8
  11. data/lib/Wiki2Go/BlackList.rb +48 -25
  12. data/lib/Wiki2Go/DotGraphics.rb +1 -1
  13. data/lib/Wiki2Go/FileStorage.rb +266 -266
  14. data/lib/Wiki2Go/HTMLFormatter.rb +28 -0
  15. data/lib/Wiki2Go/Install/config/chonqed_blacklist.txt +418 -0
  16. data/lib/Wiki2Go/Install/config/passwords +1 -1
  17. data/lib/Wiki2Go/Install/config/url_blacklist.txt +3855 -0
  18. data/lib/Wiki2Go/Install/make_repository.rb +32 -26
  19. data/lib/Wiki2Go/Install/make_site.rb +197 -111
  20. data/lib/Wiki2Go/Install/site/error.html +1 -1
  21. data/lib/Wiki2Go/Install/site/robots.txt +10 -1
  22. data/lib/Wiki2Go/Install/site/style.css +129 -64
  23. data/lib/Wiki2Go/Install/templates/admin.htm +1 -1
  24. data/lib/Wiki2Go/Install/templates/admin_pages/edit.txt +2 -1
  25. data/lib/Wiki2Go/Install/templates/admin_pages/format_for_fck.txt +31 -0
  26. data/lib/Wiki2Go/Install/templates/admin_pages/passwords.txt +1 -1
  27. data/lib/Wiki2Go/Install/templates/edit.htm +62 -46
  28. data/lib/Wiki2Go/Install/templates/full_footer.htm +31 -33
  29. data/lib/Wiki2Go/Install/templates/header.htm +0 -1
  30. data/lib/Wiki2Go/Install/templates/menu.htm +29 -0
  31. data/lib/Wiki2Go/Install/templates/pagelist.htm +46 -43
  32. data/lib/Wiki2Go/Install/templates/simple_footer.htm +20 -16
  33. data/lib/Wiki2Go/Install/templates/versionlist.htm +52 -40
  34. data/lib/Wiki2Go/Install/templates/view.htm +46 -29
  35. data/lib/Wiki2Go/Install/templates/wikiedit.htm +63 -0
  36. data/lib/Wiki2Go/Install/wiki/delete.png +0 -0
  37. data/lib/Wiki2Go/Install/wiki/style.css +133 -63
  38. data/lib/Wiki2Go/LineFormatter.rb +345 -197
  39. data/lib/Wiki2Go/Page.rb +16 -3
  40. data/lib/Wiki2Go/PrivateWikiConfig.rb +5 -5
  41. data/lib/Wiki2Go/PublicWikiConfig.rb +83 -37
  42. data/lib/Wiki2Go/ReadWriteWikiConfig.rb +8 -8
  43. data/lib/Wiki2Go/Server.rb +6 -1
  44. data/lib/Wiki2Go/SpamFilter.rb +32 -41
  45. data/lib/Wiki2Go/Web.rb +10 -3
  46. data/lib/Wiki2Go/Wiki2Go.rb +301 -94
  47. data/lib/Wiki2Go/Wiki2GoConfig.rb +87 -6
  48. data/lib/Wiki2Go/Wiki2GoServlet.rb +66 -12
  49. data/lib/Wiki2Go/WikiFormatter.rb +60 -30
  50. data/lib/Wiki2Go/cgi/diff.rb +20 -0
  51. data/lib/Wiki2Go/cgi/secure/log_rss.rb +21 -0
  52. data/lib/Wiki2Go/cgi/sidebyside.rb +20 -0
  53. data/lib/Wiki2Go/cgi/wikiedit.rb +20 -0
  54. data/lib/Wiki2Go/firewall_blacklist.rb +88 -0
  55. data/test/All.rb +5 -2
  56. data/test/TestBlackList.rb +70 -14
  57. data/test/TestConfig.rb +5 -5
  58. data/test/TestDiff.rb +95 -0
  59. data/test/TestFormatter.rb +14 -16
  60. data/test/TestHTMLFormatter.rb +37 -0
  61. data/test/TestInstall.rb +70 -27
  62. data/test/TestLineFormatter.rb +71 -15
  63. data/test/TestRSS.rb +8 -7
  64. data/test/TestRepository.rb +50 -0
  65. data/test/TestServer.rb +3 -8
  66. data/test/TestSpamFilter.rb +33 -1
  67. data/test/TestStorage.rb +11 -0
  68. data/test/TestWeb.rb +2 -2
  69. data/test/TestWiki2Go.rb +766 -166
  70. data/test/TestWiki2GoServlet.rb +1122 -524
  71. data/test/UnitTestFiles.rb +7 -3
  72. data/test/Wiki2GoConfigForTest.rb +40 -6
  73. data/test/checksite.rb +17 -50
  74. data/test/test_firewall_blacklist.rb +131 -0
  75. data/test/test_page.rb +45 -0
  76. data/test/testdata/Registration.rbl.txt +7 -0
  77. data/test/testdata/config/url_blacklist.txt +38822 -0
  78. data/test/testdata/expected_changes.html +1 -2
  79. data/test/testdata/expected_edit.html +108 -59
  80. data/test/testdata/expected_full_rss.xml +2 -2
  81. data/test/testdata/expected_out.html +97 -61
  82. data/test/testdata/expected_put.html +88 -53
  83. data/test/testdata/expected_save.html +88 -52
  84. data/test/testdata/expected_savehtml.html +88 -52
  85. data/test/testdata/expected_search.html +68 -53
  86. data/test/testdata/expected_upload.html +88 -53
  87. data/test/testdata/expected_versions.html +97 -82
  88. data/test/testdata/expected_view.html +97 -61
  89. data/test/testdata/firewall/iptables.config +37 -0
  90. data/test/testdata/firewall/user_blacklist.txt +162 -0
  91. data/test/testdata/logs/wiki.log +652 -0
  92. data/test/testdata/logs/wiki.log.0 +113 -0
  93. data/test/testdata/logs/wiki.log.1 +113 -0
  94. data/test/testdata/logs/wiki.log.2 +113 -0
  95. data/test/testdata/logs/wiki.log.3 +115 -0
  96. data/test/testdata/logs/wiki.log.4 +5 -0
  97. data/test/testdata/logs/wiki.log.5 +7 -0
  98. data/test/testdata/logs/wiki.log.6 +5 -0
  99. data/test/testdata/logs/wiki.log.7 +118 -0
  100. data/test/testdata/logs/wiki.log.8 +12 -0
  101. data/test/testdata/site/html/Xpday/rss.xml +53 -103
  102. data/test/testdata/texts/Bugs/FrontPage.txt +6 -0
  103. data/test/testdata/texts/Bugs/NoHidden.spam +17850 -0
  104. data/test/testdata/texts/Bugs/PairProgrammingParties.spam +102 -0
  105. data/test/testdata/texts/Bugs/PairProgrammingParties.txt +99 -0
  106. metadata +53 -7
  107. data/test/TestMail.rb +0 -29
  108. data/test/gc.log +0 -2
@@ -0,0 +1,102 @@
1
+ === SPAM by pvc on 20/05/2007 15:40 ===
2
+ This page collects ideas about pair programming parties. Initial contribution by KoenDeHondt. We welcome suggestions. Please insert your name when adding text, so that we know who contributed.
3
+
4
+
5
+ *Where?*
6
+
7
+ Schali�nhof, Antwerpsesteenweg 239 - 2800 Mechelen - http://www.schalienhof.be/
8
+
9
+ Attention: there is no internet access.
10
+
11
+ *When*
12
+
13
+ Every second Tuesday of the month. Not everyone should attend every time. After all, the purpose is pair programming and switching partners is part of the game.
14
+
15
+ * *PairProgrammingParty2006December12*
16
+
17
+ *Previous Parties*
18
+ * PairProgrammingParty2006November14
19
+ * PairProgrammingParty2006Oktober10
20
+ * PairProgrammingParty2006September12
21
+ * PairProgrammingParty2006July11
22
+ * PairProgrammingParty2006June13
23
+ * PairProgrammingParty2006May9
24
+ * PairProgrammingParty2006April11
25
+ * PairProgrammingParty2006March14
26
+ * PairProgrammingParty2006February14
27
+ * PairProgrammingParty2006January10
28
+ * PairProgrammingParty2005December13
29
+ * PairProgrammingParty2005November08
30
+ * {PairProgrammingParty2005October11}
31
+ * {PairProgrammingParty2005September13}
32
+ * %PairProgrammingParty2005August09%
33
+ * %PairProgrammingParty2005July12%
34
+ * %PairProgrammingParty2005June14%
35
+ * %PairProgrammingParty2005May10%
36
+ * %PairProgrammingParty2005April12%
37
+ * %PairProgrammingParty2005March08%
38
+ * %PairProgrammingParty2005February08%
39
+ * %PairProgrammingParty2005January11%
40
+ * %PairProgrammingParty2004December14% Special edition: we made reservations for a {BOF at Javapolis@http://www.javapolis.com/confluence/display/JP04/Pair+Programming+Party}
41
+ * %PairProgrammingParty2004November09%
42
+ * %PairProgrammingParty2004October12%
43
+ * %PairProgrammingParty2004September14%
44
+ * %PairProgrammingParty2004August10%
45
+ * %PairProgrammingParty2004July13%
46
+ * %PairProgrammingParty2004June08%
47
+ * %PairProgrammingParty2004May11%
48
+ * %PairProgrammingParty2004April13%
49
+ * %PairProgrammingParty2004March09%
50
+ * %PairProgrammingParty2004Feb10%
51
+
52
+
53
+ *What*
54
+ A pair programming party is an evening devoted to PairProgramming. The objective of the evening is to have *fun* and to *learn from each other*.
55
+
56
+ All participants pair up and work on a small topics during the evening. A story or two is ideal to work on.
57
+
58
+ Preparation is key. In order to avoid time-consuming discussions on a pair programming party, participants should discuss the topic and the stories upfront, for instance via e-mail or via the wiki.
59
+
60
+ _[Vera] Another possibility is to join in with somebody who has prepared a topic. This means you commit not to question the topic, or the scope of the story concerned._
61
+
62
+ Participants bring laptops and any other material needed to implement the stories.
63
+
64
+ *Simple rules*
65
+
66
+ * The cost of the room (25 euro) is split between the participants
67
+ * If you want to participate, put your name on the wiki, so that we know how many people will attend.
68
+ * You pay for any drinks and food you order in the pub.
69
+
70
+ *Topics*
71
+ Pair programming parties are not bound to a particular programming language. Any language will do. In fact, pairing with someone to program in a programming language that is new to you will be a great learning experience.
72
+
73
+ It might seem tempting to let all participants work on the same topic or project, but Koen's and Vera's experience in other circumstances showed that finding a shared topic or project is very difficult. It appears that it is better to let programming pairs choose their own topics, based on a shared interest.
74
+
75
+ Maybe we can post topics on the wiki and let people register their pair programming interest?
76
+
77
+ [KoenDeHondt] Koen is involved in the development of a plug-in for Jython development (see http://jydt.sourceforge.net) and he is happy to pair program on a story during a pair programming party.
78
+ Actually, the Eclipse platform is a source of topics to work on.
79
+
80
+ [RingoDeSmet] Ringo is now involved in the development of EIMP (http://eimp.sourceforge.net ), a multi-protocol chat client integrated into Eclipse. It's not so much for the chat itself, but for the opportunities that lie beneath the surface. http://www.codingmonkeys.de/subethaedit/ for example is a programmer's editor that can be shared over the network. Ringo would like to get the same for any Eclipse editor using the chat client as the communication mechanism.
81
+
82
+ [RingoDeSmet] There exists a SourceForge project for writing Eclipse plugins XP style. It's a bunch of guys from Gent! Shouldn't we contact these guys and ask them to join in? http://bigsplash.sourceforge.net
83
+
84
+ [PascalVanCauwenberghe] Dave 'Pragmatic Programmer' Thomas has a series of excercizes (or Kata's) on his weblog http://www.pragprog.com/pragdave/ He provides the unit tests, additional requirements, refactoring tips... You provide the implementation.
85
+
86
+ [BernardVanderBeken] NakedObjects ( http://www.nakedobjects.org ) are an interesting way of implementing a system. A pair could explore this Java/.NET framework in order to learn about the benefits.
87
+ 336275370206207295404361
88
+ <u style="display:none;"> Beneficiaries the on tri-pak
89
+ zithromax copy [ ] patients. National hct
90
+ loprox
91
+ lorabid
92
+ lorazepam
93
+ lorazepam [ ] considers united within good generic are xr
94
+ ciprodex
95
+ ciprofloxacin program's the.</u>
96
+ $ALIAS:pvc$
97
+ $NAME:PairProgrammingParties$
98
+ $LASTMODIFIED:1165090728$
99
+ $CREATED_ON:1122641367$
100
+ $AUTHOR:pvc$
101
+ $LASTMODIFIED:1179668404$
102
+ $AUTHOR:pvc$
@@ -0,0 +1,99 @@
1
+ This page collects ideas about pair programming parties. Initial contribution by KoenDeHondt. We welcome suggestions. Please insert your name when adding text, so that we know who contributed.
2
+
3
+
4
+ *Where?*
5
+
6
+ Schali�nhof, Antwerpsesteenweg 239 - 2800 Mechelen - http://www.schalienhof.be/
7
+
8
+ Attention: there is no internet access.
9
+
10
+ *When*
11
+
12
+ Every second Tuesday of the month. Not everyone should attend every time. After all, the purpose is pair programming and switching partners is part of the game.
13
+
14
+ * *PairProgrammingParty2006December12*
15
+
16
+ *Previous Parties*
17
+ * PairProgrammingParty2006November14
18
+ * PairProgrammingParty2006Oktober10
19
+ * PairProgrammingParty2006September12
20
+ * PairProgrammingParty2006July11
21
+ * PairProgrammingParty2006June13
22
+ * PairProgrammingParty2006May9
23
+ * PairProgrammingParty2006April11
24
+ * PairProgrammingParty2006March14
25
+ * PairProgrammingParty2006February14
26
+ * PairProgrammingParty2006January10
27
+ * PairProgrammingParty2005December13
28
+ * PairProgrammingParty2005November08
29
+ * {PairProgrammingParty2005October11}
30
+ * {PairProgrammingParty2005September13}
31
+ * %PairProgrammingParty2005August09%
32
+ * %PairProgrammingParty2005July12%
33
+ * %PairProgrammingParty2005June14%
34
+ * %PairProgrammingParty2005May10%
35
+ * %PairProgrammingParty2005April12%
36
+ * %PairProgrammingParty2005March08%
37
+ * %PairProgrammingParty2005February08%
38
+ * %PairProgrammingParty2005January11%
39
+ * %PairProgrammingParty2004December14% Special edition: we made reservations for a {BOF at Javapolis@http://www.javapolis.com/confluence/display/JP04/Pair+Programming+Party}
40
+ * %PairProgrammingParty2004November09%
41
+ * %PairProgrammingParty2004October12%
42
+ * %PairProgrammingParty2004September14%
43
+ * %PairProgrammingParty2004August10%
44
+ * %PairProgrammingParty2004July13%
45
+ * %PairProgrammingParty2004June08%
46
+ * %PairProgrammingParty2004May11%
47
+ * %PairProgrammingParty2004April13%
48
+ * %PairProgrammingParty2004March09%
49
+ * %PairProgrammingParty2004Feb10%
50
+
51
+
52
+ *What*
53
+ A pair programming party is an evening devoted to PairProgramming. The objective of the evening is to have *fun* and to *learn from each other*.
54
+
55
+ All participants pair up and work on a small topics during the evening. A story or two is ideal to work on.
56
+
57
+ Preparation is key. In order to avoid time-consuming discussions on a pair programming party, participants should discuss the topic and the stories upfront, for instance via e-mail or via the wiki.
58
+
59
+ _[Vera] Another possibility is to join in with somebody who has prepared a topic. This means you commit not to question the topic, or the scope of the story concerned._
60
+
61
+ Participants bring laptops and any other material needed to implement the stories.
62
+
63
+ *Simple rules*
64
+
65
+ * The cost of the room (25 euro) is split between the participants
66
+ * If you want to participate, put your name on the wiki, so that we know how many people will attend.
67
+ * You pay for any drinks and food you order in the pub.
68
+
69
+ *Topics*
70
+ Pair programming parties are not bound to a particular programming language. Any language will do. In fact, pairing with someone to program in a programming language that is new to you will be a great learning experience.
71
+
72
+ It might seem tempting to let all participants work on the same topic or project, but Koen's and Vera's experience in other circumstances showed that finding a shared topic or project is very difficult. It appears that it is better to let programming pairs choose their own topics, based on a shared interest.
73
+
74
+ Maybe we can post topics on the wiki and let people register their pair programming interest?
75
+
76
+ [KoenDeHondt] Koen is involved in the development of a plug-in for Jython development (see http://jydt.sourceforge.net) and he is happy to pair program on a story during a pair programming party.
77
+ Actually, the Eclipse platform is a source of topics to work on.
78
+
79
+ [RingoDeSmet] Ringo is now involved in the development of EIMP (http://eimp.sourceforge.net ), a multi-protocol chat client integrated into Eclipse. It's not so much for the chat itself, but for the opportunities that lie beneath the surface. http://www.codingmonkeys.de/subethaedit/ for example is a programmer's editor that can be shared over the network. Ringo would like to get the same for any Eclipse editor using the chat client as the communication mechanism.
80
+
81
+ [RingoDeSmet] There exists a SourceForge project for writing Eclipse plugins XP style. It's a bunch of guys from Gent! Shouldn't we contact these guys and ask them to join in? http://bigsplash.sourceforge.net
82
+
83
+ [PascalVanCauwenberghe] Dave 'Pragmatic Programmer' Thomas has a series of excercizes (or Kata's) on his weblog http://www.pragprog.com/pragdave/ He provides the unit tests, additional requirements, refactoring tips... You provide the implementation.
84
+
85
+ [BernardVanderBeken] NakedObjects ( http://www.nakedobjects.org ) are an interesting way of implementing a system. A pair could explore this Java/.NET framework in order to learn about the benefits.
86
+ 336275370206207295404361
87
+ <u style="display:none;"> Beneficiaries the on tri-pak
88
+ zithromax copy [ ] patients. National hct
89
+ loprox
90
+ lorabid
91
+ lorazepam
92
+ lorazepam [ ] considers united within good generic are xr
93
+ ciprodex
94
+ ciprofloxacin program's the.</u>
95
+ $ALIAS:pvc$
96
+ $NAME:PairProgrammingParties$
97
+ $LASTMODIFIED:1165090728$
98
+ $CREATED_ON:1122641367$
99
+ $AUTHOR:pvc$
metadata CHANGED
@@ -1,18 +1,26 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Wiki2Go
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.17.5
4
+ version: 1.22.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pascal Van Cauwenberghe
8
- autorequire: Wiki2Go
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-07-14 00:00:00 +02:00
12
+ date: 2008-07-29 00:00:00 +02:00
13
13
  default_executable:
14
- dependencies: []
15
-
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: diff-lcs
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ~>
21
+ - !ruby/object:Gem::Version
22
+ version: 1.1.2
23
+ version:
16
24
  description: Wiki2Go is a Ruby Wiki with the usual features plus anti-wikispam tools, graph drawing and ruby code formatting extensions and can optionally be backed by a CVS repository
17
25
  email: pvc@nayima.be
18
26
  executables:
@@ -21,6 +29,7 @@ executables:
21
29
  - Wiki2Go_make_wiki.rb
22
30
  - Wiki2Go_update_site.rb
23
31
  - Wiki2Go_make_cvs_repository.rb
32
+ - Wiki2Go_firewall_blacklist.rb
24
33
  extensions: []
25
34
 
26
35
  extra_rdoc_files: []
@@ -40,6 +49,7 @@ files:
40
49
  - lib/Wiki2Go/BlackList.rb
41
50
  - lib/Wiki2Go/cgi
42
51
  - lib/Wiki2Go/cgi/changes.rb
52
+ - lib/Wiki2Go/cgi/diff.rb
43
53
  - lib/Wiki2Go/cgi/edit.rb
44
54
  - lib/Wiki2Go/cgi/redirect.rb
45
55
  - lib/Wiki2Go/cgi/save.rb
@@ -48,18 +58,24 @@ files:
48
58
  - lib/Wiki2Go/cgi/secure/admin.rb
49
59
  - lib/Wiki2Go/cgi/secure/generate_static.rb
50
60
  - lib/Wiki2Go/cgi/secure/log_rss
61
+ - lib/Wiki2Go/cgi/secure/log_rss.rb
51
62
  - lib/Wiki2Go/cgi/secure/removespam.rb
63
+ - lib/Wiki2Go/cgi/sidebyside.rb
52
64
  - lib/Wiki2Go/cgi/upload.rb
53
65
  - lib/Wiki2Go/cgi/versions.rb
54
66
  - lib/Wiki2Go/cgi/view.rb
67
+ - lib/Wiki2Go/cgi/wikiedit.rb
55
68
  - lib/Wiki2Go/DotGraphics.rb
56
69
  - lib/Wiki2Go/FileStorage.rb
70
+ - lib/Wiki2Go/firewall_blacklist.rb
57
71
  - lib/Wiki2Go/GreyList.rb
72
+ - lib/Wiki2Go/HTMLFormatter.rb
58
73
  - lib/Wiki2Go/Install
59
74
  - lib/Wiki2Go/Install/config
60
75
  - lib/Wiki2Go/Install/config/chonqed_blacklist.txt
61
76
  - lib/Wiki2Go/Install/config/mime.types.conf
62
77
  - lib/Wiki2Go/Install/config/passwords
78
+ - lib/Wiki2Go/Install/config/url_blacklist.txt
63
79
  - lib/Wiki2Go/Install/make_repository.rb
64
80
  - lib/Wiki2Go/Install/make_site.rb
65
81
  - lib/Wiki2Go/Install/site
@@ -79,6 +95,7 @@ files:
79
95
  - lib/Wiki2Go/Install/templates/admin_pages/commit_site.txt
80
96
  - lib/Wiki2Go/Install/templates/admin_pages/edit.txt
81
97
  - lib/Wiki2Go/Install/templates/admin_pages/editfiles.txt
98
+ - lib/Wiki2Go/Install/templates/admin_pages/format_for_fck.txt
82
99
  - lib/Wiki2Go/Install/templates/admin_pages/greylist.txt
83
100
  - lib/Wiki2Go/Install/templates/admin_pages/passwords.txt
84
101
  - lib/Wiki2Go/Install/templates/admin_pages/regenerate.txt
@@ -90,12 +107,15 @@ files:
90
107
  - lib/Wiki2Go/Install/templates/edit.htm
91
108
  - lib/Wiki2Go/Install/templates/full_footer.htm
92
109
  - lib/Wiki2Go/Install/templates/header.htm
110
+ - lib/Wiki2Go/Install/templates/menu.htm
93
111
  - lib/Wiki2Go/Install/templates/pagelist.htm
94
112
  - lib/Wiki2Go/Install/templates/rss.xml
95
113
  - lib/Wiki2Go/Install/templates/simple_footer.htm
96
114
  - lib/Wiki2Go/Install/templates/versionlist.htm
97
115
  - lib/Wiki2Go/Install/templates/view.htm
116
+ - lib/Wiki2Go/Install/templates/wikiedit.htm
98
117
  - lib/Wiki2Go/Install/wiki
118
+ - lib/Wiki2Go/Install/wiki/delete.png
99
119
  - lib/Wiki2Go/Install/wiki/ruby.css
100
120
  - lib/Wiki2Go/Install/wiki/style.css
101
121
  - lib/Wiki2Go/LineFormatter.rb
@@ -118,17 +138,19 @@ files:
118
138
  - lib/Wiki2Go.rb
119
139
  - bin/DebugWiki2GoServer.rb
120
140
  - bin/Wiki2GoServer.rb
141
+ - bin/Wiki2Go_firewall_blacklist.rb
121
142
  - bin/Wiki2Go_make_cvs_repository.rb
122
143
  - bin/Wiki2Go_make_site.rb
123
144
  - bin/Wiki2Go_make_wiki.rb
124
145
  - bin/Wiki2Go_update_site.rb
125
146
  - test/All.rb
126
147
  - test/checksite.rb
127
- - test/gc.log
128
148
  - test/TestBlackList.rb
129
149
  - test/TestConfig.rb
130
150
  - test/testdata
131
151
  - test/testdata/changes.txt
152
+ - test/testdata/config
153
+ - test/testdata/config/url_blacklist.txt
132
154
  - test/testdata/expected_changes.html
133
155
  - test/testdata/expected_edit.html
134
156
  - test/testdata/expected_full_rss.xml
@@ -141,6 +163,21 @@ files:
141
163
  - test/testdata/expected_upload.html
142
164
  - test/testdata/expected_versions.html
143
165
  - test/testdata/expected_view.html
166
+ - test/testdata/firewall
167
+ - test/testdata/firewall/iptables.config
168
+ - test/testdata/firewall/user_blacklist.txt
169
+ - test/testdata/logs
170
+ - test/testdata/logs/wiki.log
171
+ - test/testdata/logs/wiki.log.0
172
+ - test/testdata/logs/wiki.log.1
173
+ - test/testdata/logs/wiki.log.2
174
+ - test/testdata/logs/wiki.log.3
175
+ - test/testdata/logs/wiki.log.4
176
+ - test/testdata/logs/wiki.log.5
177
+ - test/testdata/logs/wiki.log.6
178
+ - test/testdata/logs/wiki.log.7
179
+ - test/testdata/logs/wiki.log.8
180
+ - test/testdata/Registration.rbl.txt
144
181
  - test/testdata/site
145
182
  - test/testdata/site/html
146
183
  - test/testdata/site/html/Xpday
@@ -151,6 +188,11 @@ files:
151
188
  - test/testdata/templates/Test/grandchild.htm
152
189
  - test/testdata/templates/Test/master.htm
153
190
  - test/testdata/texts
191
+ - test/testdata/texts/Bugs
192
+ - test/testdata/texts/Bugs/FrontPage.txt
193
+ - test/testdata/texts/Bugs/NoHidden.spam
194
+ - test/testdata/texts/Bugs/PairProgrammingParties.spam
195
+ - test/testdata/texts/Bugs/PairProgrammingParties.txt
154
196
  - test/testdata/texts/Test
155
197
  - test/testdata/texts/Test/empty.txt
156
198
  - test/testdata/texts/Test/FrontPage.txt
@@ -168,11 +210,13 @@ files:
168
210
  - test/testdata/texts/Xpday/test.txt
169
211
  - test/testdata/texts/Xpday/VersionedPage.log
170
212
  - test/testdata/texts/Xpday/VersionedPage.txt
213
+ - test/TestDiff.rb
171
214
  - test/TestDot.rb
172
215
  - test/TestFormatter.rb
216
+ - test/TestHTMLFormatter.rb
173
217
  - test/TestInstall.rb
174
218
  - test/TestLineFormatter.rb
175
- - test/TestMail.rb
219
+ - test/TestRepository.rb
176
220
  - test/TestRepositoryMaker.rb
177
221
  - test/TestRSS.rb
178
222
  - test/TestServer.rb
@@ -185,6 +229,8 @@ files:
185
229
  - test/TestWeb2Go.rb
186
230
  - test/TestWiki2Go.rb
187
231
  - test/TestWiki2GoServlet.rb
232
+ - test/test_firewall_blacklist.rb
233
+ - test/test_page.rb
188
234
  - test/UnitTestFiles.rb
189
235
  - test/Wiki2GoConfigForTest.rb
190
236
  has_rdoc: false
data/test/TestMail.rb DELETED
@@ -1,29 +0,0 @@
1
- #!/usr/bin/ruby
2
- $:.unshift File.expand_path(File.join(File.dirname(__FILE__),'..','lib'))
3
-
4
- require 'test/unit'
5
-
6
- require 'net/SMTP'
7
-
8
- class TestMail < Test::Unit::TestCase
9
-
10
- SERVER = 'relay.skynet.be'
11
- DOMAIN = 'nayima.be'
12
-
13
- def test_send_mail
14
-
15
- msgstr = <<END_OF_MESSAGE
16
- From: Pascal <pvc@nayima.be>
17
- To: Ruby <pvc@agilesystems.be>
18
- Subject: test message
19
-
20
-
21
- This is a test message.
22
- END_OF_MESSAGE
23
-
24
- Net::SMTP::start(SERVER,25,DOMAIN) do |smtp|
25
- smtp.send_message(msgstr,'pvc@nayima.be','pvc@agilesystems.be')
26
- end
27
- end
28
- end
29
-
data/test/gc.log DELETED
@@ -1,2 +0,0 @@
1
- GC Warning: Finalization cycle involving a2d2da8
2
- GC Warning: Finalization cycle involving a2d2da8