Wiki2Go 1.15.1 → 1.16.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (89) hide show
  1. data/bin/DebugWiki2GoServer.rb +10 -0
  2. data/bin/{Wiki2Go_make_repository.rb → Wiki2Go_make_cvs_repository.rb} +1 -1
  3. data/lib/Web2Go/WebrickRequest.rb +1 -1
  4. data/lib/Web2Go/WebrickResponse.rb +3 -3
  5. data/lib/Wiki2Go/BlackList.rb +24 -11
  6. data/lib/Wiki2Go/DotGraphics.rb +45 -5
  7. data/lib/Wiki2Go/FileStorage.rb +8 -2
  8. data/lib/Wiki2Go/GreyList.rb +38 -22
  9. data/lib/Wiki2Go/Install/make_repository.rb +351 -36
  10. data/lib/Wiki2Go/Install/make_site.rb +17 -8
  11. data/lib/Wiki2Go/Install/site/ruby.css +18 -0
  12. data/lib/Wiki2Go/Install/templates/admin.htm +11 -0
  13. data/lib/Wiki2Go/Install/templates/admin_pages/commit_site.txt +21 -0
  14. data/lib/Wiki2Go/Install/templates/admin_pages/edit.txt +33 -0
  15. data/lib/Wiki2Go/Install/templates/admin_pages/editfiles.txt +33 -0
  16. data/lib/Wiki2Go/Install/templates/admin_pages/greylist.txt +19 -37
  17. data/lib/Wiki2Go/Install/templates/admin_pages/show_log.txt +21 -0
  18. data/lib/Wiki2Go/Install/templates/admin_pages/update_conflicts.txt +38 -0
  19. data/lib/Wiki2Go/Install/templates/admin_pages/update_site.txt +49 -0
  20. data/lib/Wiki2Go/Install/wiki/ruby.css +18 -0
  21. data/lib/Wiki2Go/LineFormatter.rb +504 -0
  22. data/lib/Wiki2Go/Page.rb +50 -18
  23. data/lib/Wiki2Go/PublicWikiConfig.rb +34 -11
  24. data/lib/Wiki2Go/Server.rb +13 -2
  25. data/lib/Wiki2Go/SpamFilter.rb +27 -8
  26. data/lib/Wiki2Go/SyntaxHighlighter.rb +41 -0
  27. data/lib/Wiki2Go/Web.rb +0 -3
  28. data/lib/Wiki2Go/WebrickServlet.rb +2 -0
  29. data/lib/Wiki2Go/Wiki2Go.rb +19 -8
  30. data/lib/Wiki2Go/Wiki2GoConfig.rb +125 -18
  31. data/lib/Wiki2Go/Wiki2GoServlet.rb +32 -21
  32. data/lib/Wiki2Go/WikiFormatter.rb +55 -468
  33. data/lib/Wiki2Go/cgi/secure/log_rss +21 -0
  34. data/test/All.rb +21 -0
  35. data/test/TestBlackList.rb +82 -0
  36. data/test/TestConfig.rb +205 -0
  37. data/test/TestDot.rb +109 -0
  38. data/test/TestFormatter.rb +491 -0
  39. data/test/TestInstall.rb +120 -0
  40. data/test/TestLineFormatter.rb +553 -0
  41. data/test/TestMail.rb +29 -0
  42. data/test/TestRSS.rb +183 -0
  43. data/test/TestRepositoryMaker.rb +101 -0
  44. data/test/TestServer.rb +65 -0
  45. data/test/TestSpamFilter.rb +130 -0
  46. data/test/TestStorage.rb +212 -0
  47. data/test/TestSyntaxHighlighter.rb +41 -0
  48. data/test/TestUnitTestFiles.rb +27 -0
  49. data/test/TestUrlFinder.rb +39 -0
  50. data/test/TestWeb.rb +197 -0
  51. data/test/TestWeb2Go.rb +90 -0
  52. data/test/TestWiki2Go.rb +184 -0
  53. data/test/TestWiki2GoServlet.rb +747 -0
  54. data/test/UnitTestFiles.rb +102 -0
  55. data/test/Wiki2GoConfigForTest.rb +93 -0
  56. data/test/checksite.rb +56 -0
  57. data/test/testdata/changes.txt +4 -0
  58. data/test/testdata/expected_changes.html +93 -0
  59. data/test/testdata/expected_edit.html +105 -0
  60. data/test/testdata/expected_full_rss.xml +29 -0
  61. data/test/testdata/expected_header_rss.xml +13 -0
  62. data/test/testdata/expected_out.html +97 -0
  63. data/test/testdata/expected_put.html +99 -0
  64. data/test/testdata/expected_save.html +66 -0
  65. data/test/testdata/expected_savehtml.html +66 -0
  66. data/test/testdata/expected_search.html +67 -0
  67. data/test/testdata/expected_upload.html +69 -0
  68. data/test/testdata/expected_versions.html +85 -0
  69. data/test/testdata/expected_view.html +97 -0
  70. data/test/testdata/site/html/Xpday/rss.xml +103 -0
  71. data/test/testdata/templates/Test/child.htm +2 -0
  72. data/test/testdata/templates/Test/grandchild.htm +1 -0
  73. data/test/testdata/templates/Test/master.htm +3 -0
  74. data/test/testdata/texts/Test/FrontPage.txt +7 -0
  75. data/test/testdata/texts/Test/NewPage.txt +3 -0
  76. data/test/testdata/texts/Test/Subdir/Subpage.txt +1 -0
  77. data/test/testdata/texts/Test/empty.txt +3 -0
  78. data/test/testdata/texts/Test/test.txt +3 -0
  79. data/test/testdata/texts/Xpday/FrontPage.txt +36 -0
  80. data/test/testdata/texts/Xpday/Page.txt +3 -0
  81. data/test/testdata/texts/Xpday/VersionedPage.log +14 -0
  82. data/test/testdata/texts/Xpday/VersionedPage.txt +3 -0
  83. data/test/testdata/texts/Xpday/empty.log +3482 -0
  84. data/test/testdata/texts/Xpday/empty.txt +4 -0
  85. data/test/testdata/texts/Xpday/test.log +9425 -0
  86. data/test/testdata/texts/Xpday/test.txt +5 -0
  87. data/test/testdata/texts/whitelist.txt +1 -0
  88. metadata +85 -5
  89. data/lib/Wiki2Go/Install/templates/admin_pages/update.txt +0 -13
@@ -0,0 +1,29 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+
3
+ <rss version="2.0" >
4
+ <channel>
5
+ <title>Xpday wiki</title>
6
+ <link>http://agilesystems.nayima.be/</link>
7
+ <description>Xpday wiki</description>
8
+ <language>en-us</language>
9
+ <pubDate>$DATE$</pubDate>
10
+ <lastBuildDate>$DATE$</lastBuildDate>
11
+ <docs>http://backend.userland.com/rss</docs>
12
+ <item>
13
+ <title>title1 &amp; 2</title>
14
+ <author>author1</author>
15
+ <pubDate>13 September 2004 22:19 GMT</pubDate>
16
+ <link>http://agilesystems.nayima.be/view/Xpday/title1</link>
17
+ <guid isPermaLink="true">Xpday/title1</guid>
18
+ <description><![CDATA[content1]]></description>
19
+ </item>
20
+ <item>
21
+ <title>title2</title>
22
+ <author>author2</author>
23
+ <pubDate>12 September 2004 20:26 GMT</pubDate>
24
+ <link>http://agilesystems.nayima.be/view/Xpday/title2</link>
25
+ <guid isPermaLink="true">Xpday/title2</guid>
26
+ <description><![CDATA[content2]]></description>
27
+ </item>
28
+ </channel>
29
+ </rss>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+
3
+ <rss version="2.0" >
4
+ <channel>
5
+ <title>Xpday wiki</title>
6
+ <link>http://agilesystems.nayima.be/</link>
7
+ <description>Xpday wiki</description>
8
+ <language>en-us</language>
9
+ <pubDate>$DATE$</pubDate>
10
+ <lastBuildDate>$DATE$</lastBuildDate>
11
+ <docs>http://backend.userland.com/rss</docs>
12
+ </channel>
13
+ </rss>
@@ -0,0 +1,97 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <HTML>
3
+ <HEAD>
4
+ <BASE href="http://webserver:8081/">
5
+ <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6
+ <META http-equiv="Pragma" content="no-cache">
7
+ <META name="Author" content="Pascal Van Cauwenberghe">
8
+ <META name="Keywords" content="ruby,wiki">
9
+ <LINK rel="stylesheet" href="html/Xpday/style.css" type="text/css">
10
+ <LINK rel="alternate" type="application/rss+xml" title="RSS 2.0 feed" href="html/Xpday/rss.xml">
11
+ <TITLE>Xpday-homepage</TITLE>
12
+ </HEAD>
13
+ <BODY>
14
+ <div id="container">
15
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="100%">
16
+ <TR>
17
+ <TD>
18
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="100%" class="Header">
19
+ <TR>
20
+ <TD><h1><a href="search/Xpday?text=Page">homepage</a></h1>
21
+ </TD>
22
+ <td align="right"><a href="view/Xpday/FrontPage">Home</a></td>
23
+ </TR>
24
+ </TABLE>
25
+ <TABLE border="0" cellpadding="8" cellspacing="0" width="100%" class="Body">
26
+ <TR>
27
+ <TD width="100%">
28
+ <h2>Welcome to XP Day Benelux 2003</h2>
29
+ <h3>21 November 2003</h3>
30
+ <h3>NAC BREDA "MyCom<a href="edit/Xpday/MyCom">?</a>" Football stadium, Breda, The Netherlands</h3>
31
+ <hr>
32
+ The XP Day Benelux is a one day conference about all aspects of Extreme Programming and other agile software development methods like DSDM, Scrum, Feature-driven development, and Crystal. See the "<a href="redirect/Xpday?url=http%3A%2F%2Fwww.agilemanifesto.org" rel="nofollow" target="_blank">Agile Manifesto</a>" for the principles of agile software development.
33
+ <p>
34
+ The XP Day Benelux conference is aimed at software developers, project leaders, IT managers, testers,
35
+ architects, and coaches. It will provide a good opportunity for exchanging ideas and sharing experiences, and is suited for both experienced participants and beginners in Agile Software
36
+ Development. The focus of this conference is on practical knowledge, real-world experience and active participation of all attendees. We aim at 50-100 participants.
37
+ <p>
38
+ This event was organized by members of the <a href="http://www.xp.be" target="_blank">Belgian XP users group</a> and the <a href="redirect/Xpday?url=http%3A%2F%2Fwww.xp-nl.org" rel="nofollow" target="_blank">Dutch XP users group</a> and took place in Breda, the Netherlands (near Belgium) on 21 November 2003.
39
+ <p>
40
+ <hr>
41
+ <p>
42
+ <STRONG> LATEST NEWS:</STRONG>
43
+ <p>
44
+ <ul><li> <STRONG>The next XP Day Benelux will take place on 19 November 2004 in Mechelen, Belgium</STRONG>. See FrontPage<a href="edit/Xpday2004/FrontPage">?</a>
45
+ <li> The conference is now over. The organizers had lots of fun and learned a lot. We hope you did too.
46
+ <li> Session presentations and workshop transcripts available from the Program<a href="edit/Xpday/Program">?</a> page
47
+ <li> Images from the event are available at XpDay2003Pictures<a href="edit/Xpday/XpDay2003Pictures">?</a> and more at <a href="redirect/Xpday?url=http%3A%2F%2Fwww.willemvandenende.com%2Fimages%2F2003%2Fxpdaybenelux%2F" rel="nofollow" target="_blank">http://www.willemvandenende.com/images/2003/xpdaybenelux/</a>
48
+ <li> Now the conference is over, the story can be told, over at Xpday2003Story<a href="edit/Xpday/Xpday2003Story">?</a>
49
+ </ul>
50
+ <hr>
51
+ <p>
52
+ <ul><li> See the conference Program<a href="edit/Xpday/Program">?</a> for a list of sessions and presenters. There is also a <a href="html/Xpday/programma.pdf" target="_blank">printable version</a>
53
+ <li> The ConferenceLocation<a href="edit/Xpday/ConferenceLocation">?</a> page tells you all about the location and acces by car and public transport.
54
+ <li> Download the <a href="html/Xpday/flyer.pdf" target="_blank">flyer</a>.
55
+ <li> RelatedEvents<a href="edit/Xpday/RelatedEvents">?</a>
56
+ </ul>
57
+ <hr>
58
+ <p>
59
+ XP Day Benelux is an Organisation<a href="edit/Xpday/Organisation">?</a> of AgileSystems<a href="edit/Xpday/AgileSystems">?</a> vzwFor more information, the organizers can be contacted at: <a href="view/Xpday/MailFormattingRules" onmouseover="this.href='mai' + 'lto:' + 'xpdayinfo' + '&#64;' + 'xpday.be'">xpdayinfo</a>
60
+ </TD>
61
+ </TR>
62
+ </TABLE>
63
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="100%" class="Footer">
64
+ <TR>
65
+ <TD width="50%"><a href="changes/Xpday">Recent changes</a></TD>
66
+ <TD width="50%"><a href="edit/Xpday/Page">Edit this page</a></TD>
67
+ </TR>
68
+ <TR>
69
+ <TD width="50%">
70
+ <FORM action="search/Xpday" method="post" id="form1" name="form1">
71
+ Search: <INPUT name="text" size="30" ID="Text1">
72
+ </FORM>
73
+ </TD>
74
+ <TD width="50%">
75
+
76
+ </TD>
77
+ </TR>
78
+ <TR>
79
+ <TD colspan="2"></TD>
80
+ </TR>
81
+ <TR>
82
+ <td>Changed on 08/03/2005 by pvc
83
+ <a href="html/Xpday/rss.xml"><img src="html/rssLogo.png" width="36" height="14" border="0" alt="Keep up to date"></a>
84
+ </td>
85
+ <TD align="right">
86
+ Contact the site administrator: <a href="view/Xpday/MailFormattingRules" onmouseover="this.href='mai' + 'lto:' + 'wiki2go' + '&#64;' + 'nayima.be'">wiki2go</a>
87
+ <a target="_blank" href="http://validator.w3.org/check?uri=http://webserver:8081/view/Xpday/Page">
88
+ <img border="0" src="html/valid-html401.png" alt="Verify if layout is correct!" height="31" width="88"></a>
89
+ </TD>
90
+ </TR>
91
+ </TABLE>
92
+ </TD>
93
+ </TR>
94
+ </TABLE>
95
+ </div>
96
+ </BODY>
97
+ </HTML>
@@ -0,0 +1,99 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <HTML>
3
+ <HEAD>
4
+ <BASE href="http://webserver:8081/">
5
+ <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6
+ <META http-equiv="Pragma" content="no-cache">
7
+ <META name="Author" content="Pascal Van Cauwenberghe">
8
+ <META name="Keywords" content="ruby,wiki">
9
+ <LINK rel="stylesheet" href="html/Xpday/style.css" type="text/css">
10
+ <LINK rel="alternate" type="application/rss+xml" title="RSS 2.0 feed" href="html/Xpday/rss.xml">
11
+ <TITLE>Xpday-homepage</TITLE>
12
+ </HEAD>
13
+ <BODY>
14
+ <div id="container">
15
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="100%">
16
+ <TR>
17
+ <TD>
18
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="100%" class="Header">
19
+ <TR>
20
+ <TD><h1><a href="search/Xpday?text=Page">homepage</a></h1>
21
+ </TD>
22
+ <td align="right"><a href="view/Xpday/FrontPage">Home</a></td>
23
+ </TR>
24
+ </TABLE>
25
+ <TABLE border="0" cellpadding="8" cellspacing="0" width="100%" class="Body">
26
+ <TR>
27
+ <TD width="100%">
28
+ &lt;h2&gt;Welcome to XP Day Benelux 2003&lt;/h2&gt;
29
+ &lt;h3&gt;21 November 2003&lt;/h3&gt;
30
+ &lt;h3&gt;NAC BREDA &quot;MyCom&quot; Football stadium, Breda, The Netherlands&lt;/h3&gt;
31
+ &lt;hr&gt;
32
+ The XP Day Benelux is a one day conference about all aspects of Extreme Programming and other agile software development methods like DSDM, Scrum, Feature-driven development, and Crystal. See the &quot;{Agile Manifesto@http://www.agilemanifesto.org}&quot; for the principles of agile software development.
33
+
34
+ The XP Day Benelux conference is aimed at software developers, project leaders, IT managers, testers,
35
+ architects, and coaches. It will provide a good opportunity for exchanging ideas and sharing experiences, and is suited for both experienced participants and beginners in Agile Software
36
+ Development. The focus of this conference is on practical knowledge, real-world experience and active participation of all attendees. We aim at 50-100 participants.
37
+
38
+ This event was organized by members of the %Belgian XP users group@http://www.xp.be% and the %Dutch XP users group@http://www.xp-nl.org% and took place in Breda, the Netherlands (near Belgium) on 21 November 2003.
39
+
40
+ ---
41
+
42
+ * LATEST NEWS:*
43
+
44
+ * *The next XP Day Benelux will take place on 19 November 2004 in Mechelen, Belgium*. See {Xpday2004:FrontPage}
45
+ * The conference is now over. The organizers had lots of fun and learned a lot. We hope you did too.
46
+ * Session presentations and workshop transcripts available from the %Program% page
47
+ * Images from the event are available at XpDay2003Pictures and more at http://www.willemvandenende.com/images/2003/xpdaybenelux/
48
+ * Now the conference is over, the story can be told, over at %Xpday2003Story%
49
+
50
+ ---
51
+
52
+ * See the conference {Program} for a list of sessions and presenters. There is also a %printable version@programma.pdf%
53
+ * The ConferenceLocation page tells you all about the location and acces by car and public transport.
54
+ * Download the {flyer@flyer.pdf}.
55
+ * RelatedEvents
56
+
57
+ ---
58
+
59
+ XP Day Benelux is an %Organisation% of AgileSystems vzwFor more information, the organizers can be contacted at: mailto:xpdayinfo@xpday.be
60
+
61
+
62
+ </TD>
63
+ </TR>
64
+ </TABLE>
65
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="100%" class="Footer">
66
+ <TR>
67
+ <TD width="50%"><a href="changes/Xpday">Recent changes</a></TD>
68
+ <TD width="50%"><a href="edit/Xpday/Page">Edit this page</a></TD>
69
+ </TR>
70
+ <TR>
71
+ <TD width="50%">
72
+ <FORM action="search/Xpday" method="post" id="form1" name="form1">
73
+ Search: <INPUT name="text" size="30" ID="Text1">
74
+ </FORM>
75
+ </TD>
76
+ <TD width="50%">
77
+
78
+ </TD>
79
+ </TR>
80
+ <TR>
81
+ <TD colspan="2"></TD>
82
+ </TR>
83
+ <TR>
84
+ <td>Changed on 08/03/2005 by pvc
85
+ <a href="html/Xpday/rss.xml"><img src="html/rssLogo.png" width="36" height="14" border="0" alt="Keep up to date"></a>
86
+ </td>
87
+ <TD align="right">
88
+ Contact the site administrator: <a href="view/Xpday/MailFormattingRules" onmouseover="this.href='mai' + 'lto:' + 'wiki2go' + '&#64;' + 'nayima.be'">wiki2go</a>
89
+ <a target="_blank" href="http://validator.w3.org/check?uri=http://webserver:8081/view/Xpday/Page">
90
+ <img border="0" src="html/valid-html401.png" alt="Verify if layout is correct!" height="31" width="88"></a>
91
+ </TD>
92
+ </TR>
93
+ </TABLE>
94
+ </TD>
95
+ </TR>
96
+ </TABLE>
97
+ </div>
98
+ </BODY>
99
+ </HTML>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <HTML>
3
+ <HEAD>
4
+ <BASE href="http://localhost/">
5
+ <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6
+ <META http-equiv="Pragma" content="no-cache">
7
+ <META name="Author" content="Pascal Van Cauwenberghe">
8
+ <META name="Keywords" content="ruby,wiki">
9
+ <LINK rel="stylesheet" href="html/Xpday/style.css" type="text/css">
10
+ <LINK rel="alternate" type="application/rss+xml" title="RSS 2.0 feed" href="html/Xpday/rss.xml">
11
+ <TITLE>Xpday-FrontPagename</TITLE>
12
+ </HEAD>
13
+ <BODY>
14
+ <div id="container">
15
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="100%">
16
+ <TR>
17
+ <TD>
18
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="100%" class="Header">
19
+ <TR>
20
+ <TD><h1><a href="search/Xpday?text=test">FrontPagename</a></h1>
21
+ </TD>
22
+ <td align="right"><a href="view/Xpday/FrontPage">Home</a></td>
23
+ </TR>
24
+ </TABLE>
25
+ <TABLE border="0" cellpadding="8" cellspacing="0" width="100%" class="Body">
26
+ <TR>
27
+ <TD width="100%">
28
+ <a href="view/Xpday/FrontPage">FrontPage</a>
29
+ </TD>
30
+ </TR>
31
+ </TABLE>
32
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="100%" class="Footer">
33
+ <TR>
34
+ <TD width="50%"><a href="changes/Xpday">Recent changes</a></TD>
35
+ <TD width="50%"><a href="edit/Xpday/test">Edit this page</a></TD>
36
+ </TR>
37
+ <TR>
38
+ <TD width="50%">
39
+ <FORM action="search/Xpday" method="post" id="form1" name="form1">
40
+ Search: <INPUT name="text" size="30" ID="Text1">
41
+ </FORM>
42
+ </TD>
43
+ <TD width="50%">
44
+
45
+ </TD>
46
+ </TR>
47
+ <TR>
48
+ <TD colspan="2"></TD>
49
+ </TR>
50
+ <TR>
51
+ <td>Changed on DATE by unknown
52
+ <a href="html/Xpday/rss.xml"><img src="html/rssLogo.png" width="36" height="14" border="0" alt="Keep up to date"></a>
53
+ </td>
54
+ <TD align="right">
55
+ Contact the site administrator: <a href="view/Xpday/MailFormattingRules" onmouseover="this.href='mai' + 'lto:' + 'wiki2go' + '&#64;' + 'nayima.be'">wiki2go</a>
56
+ <a target="_blank" href="http://validator.w3.org/check?uri=http://localhost/view/Xpday/test">
57
+ <img border="0" src="html/valid-html401.png" alt="Verify if layout is correct!" height="31" width="88"></a>
58
+ </TD>
59
+ </TR>
60
+ </TABLE>
61
+ </TD>
62
+ </TR>
63
+ </TABLE>
64
+ </div>
65
+ </BODY>
66
+ </HTML>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <HTML>
3
+ <HEAD>
4
+ <BASE href="http://localhost/">
5
+ <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6
+ <META http-equiv="Pragma" content="no-cache">
7
+ <META name="Author" content="Pascal Van Cauwenberghe">
8
+ <META name="Keywords" content="ruby,wiki">
9
+ <LINK rel="stylesheet" href="html/Xpday/style.css" type="text/css">
10
+ <LINK rel="alternate" type="application/rss+xml" title="RSS 2.0 feed" href="html/Xpday/rss.xml">
11
+ <TITLE>Xpday-Frontpagename</TITLE>
12
+ </HEAD>
13
+ <BODY>
14
+ <div id="container">
15
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="100%">
16
+ <TR>
17
+ <TD>
18
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="100%" class="Header">
19
+ <TR>
20
+ <TD><h1><a href="search/Xpday?text=test">Frontpagename</a></h1>
21
+ </TD>
22
+ <td align="right"><a href="Xpday/FrontPage.html">Home</a></td>
23
+ </TR>
24
+ </TABLE>
25
+ <TABLE border="0" cellpadding="8" cellspacing="0" width="100%" class="Body">
26
+ <TR>
27
+ <TD width="100%">
28
+ <a href="Xpday/FrontPage.html">FrontPage</a>
29
+ </TD>
30
+ </TR>
31
+ </TABLE>
32
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="100%" class="Footer">
33
+ <TR>
34
+ <TD width="50%"><a href="Xpday/recent_changes.html">Recent changes</a></TD>
35
+ <TD width="50%"><a href="edit/Xpday/test">Edit this page</a></TD>
36
+ </TR>
37
+ <TR>
38
+ <TD width="50%">
39
+ <FORM action="search/Xpday" method="post" id="form1" name="form1">
40
+ Search: <INPUT name="text" size="30" ID="Text1">
41
+ </FORM>
42
+ </TD>
43
+ <TD width="50%">
44
+
45
+ </TD>
46
+ </TR>
47
+ <TR>
48
+ <TD colspan="2"></TD>
49
+ </TR>
50
+ <TR>
51
+ <td>Changed on DATE by unknown
52
+ <a href="html/Xpday/rss.xml"><img src="html/rssLogo.png" width="36" height="14" border="0" alt="Keep up to date"></a>
53
+ </td>
54
+ <TD align="right">
55
+ Contact the site administrator: <a href="Xpday/MailFormattingRules.html" onmouseover="this.href='mai' + 'lto:' + 'wiki2go' + '&#64;' + 'nayima.be'">wiki2go</a>
56
+ <a target="_blank" href="http://validator.w3.org/check?uri=http://localhost/Xpday/test.html">
57
+ <img border="0" src="html/valid-html401.png" alt="Verify if layout is correct!" height="31" width="88"></a>
58
+ </TD>
59
+ </TR>
60
+ </TABLE>
61
+ </TD>
62
+ </TR>
63
+ </TABLE>
64
+ </div>
65
+ </BODY>
66
+ </HTML>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <HTML>
3
+ <HEAD>
4
+ <BASE href="http://localhost/">
5
+ <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6
+ <META http-equiv="Pragma" content="no-cache">
7
+ <META name="Author" content="Pascal Van Cauwenberghe">
8
+ <META name="Keywords" content="ruby,wiki">
9
+ <LINK rel="stylesheet" href="html/Xpday/style.css" type="text/css">
10
+ <LINK rel="alternate" type="application/rss+xml" title="RSS 2.0 feed" href="html/Xpday/rss.xml">
11
+ <TITLE>Search for 'Benelux'</TITLE>
12
+ </HEAD>
13
+ <BODY>
14
+ <div id="container">
15
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="100%">
16
+ <TR>
17
+ <TD>
18
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="100%" class="Header">
19
+ <TR>
20
+ <TD><H1>Search for 'Benelux'</H1></TD>
21
+ <td align="right"><a href="view/Xpday/FrontPage">Home</a></td>
22
+ </TR>
23
+ </TABLE>
24
+ <TABLE border="0" cellpadding="0" cellspacing="8" width="100%" class="Body">
25
+ <TR>
26
+ <TD width="100%">
27
+ <TABLE border="0" width="100%">
28
+ <TR>
29
+ <td>
30
+ <table class="topiclist">
31
+
32
+ <tr class="even">
33
+ <td class="date">08/03/2005</td>
34
+ <td class="topic"><a href="view/Xpday/FrontPage">homepage</a></td>
35
+ <td class="author">pvc</td>
36
+
37
+ </tr>
38
+
39
+ </table>
40
+ </td>
41
+ </TR>
42
+ </TABLE>
43
+ </TD>
44
+ </TR>
45
+ </TABLE>
46
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="100%" class="Footer" ID="Table1">
47
+ <TR>
48
+ <TD width="50%"><a href="changes/Xpday">Recent changes</a></TD>
49
+ <TD width="50%">
50
+ <FORM action="search/Xpday" method="post" id="form1" name="form1">
51
+ Search: <INPUT name="text" size="30" ID="Text1">
52
+ </FORM>
53
+ </TD>
54
+ </TR>
55
+ <TR>
56
+ <td><a href="html/Xpday/rss.xml"><img src="html/rssLogo.png" width="36" height="14" border="0" alt="Keep informed"></a></td>
57
+ <TD align="right">
58
+ Contact the site administrator: <a href="view/Xpday/MailFormattingRules" onmouseover="this.href='mai' + 'lto:' + 'wiki2go' + '&#64;' + 'nayima.be'">wiki2go</a>
59
+ </TD>
60
+ </TR>
61
+ </TABLE>
62
+ </TD>
63
+ </TR>
64
+ </TABLE>
65
+ </div>
66
+ </BODY>
67
+ </HTML>
@@ -0,0 +1,69 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <HTML>
3
+ <HEAD>
4
+ <BASE href="http://localhost/">
5
+ <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6
+ <META http-equiv="Pragma" content="no-cache">
7
+ <META name="Author" content="Pascal Van Cauwenberghe">
8
+ <META name="Keywords" content="ruby,wiki">
9
+ <LINK rel="stylesheet" href="html/Xpday/style.css" type="text/css">
10
+ <LINK rel="alternate" type="application/rss+xml" title="RSS 2.0 feed" href="html/Xpday/rss.xml">
11
+ <TITLE>Xpday-simple</TITLE>
12
+ </HEAD>
13
+ <BODY>
14
+ <div id="container">
15
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="100%">
16
+ <TR>
17
+ <TD>
18
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="100%" class="Header">
19
+ <TR>
20
+ <TD><h1><a href="search/Xpday?text=UploadPage">simple</a></h1>
21
+ </TD>
22
+ <td align="right"><a href="view/Xpday/FrontPage">Home</a></td>
23
+ </TR>
24
+ </TABLE>
25
+ <TABLE border="0" cellpadding="8" cellspacing="0" width="100%" class="Body">
26
+ <TR>
27
+ <TD width="100%">
28
+ A simple page\n
29
+ <p>
30
+ <hr>
31
+ <a href="html/Xpday/brol.txt" target="_blank">brol.txt</a>
32
+ </TD>
33
+ </TR>
34
+ </TABLE>
35
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="100%" class="Footer">
36
+ <TR>
37
+ <TD width="50%"><a href="changes/Xpday">Recent changes</a></TD>
38
+ <TD width="50%"><a href="edit/Xpday/UploadPage">Edit this page</a></TD>
39
+ </TR>
40
+ <TR>
41
+ <TD width="50%">
42
+ <FORM action="search/Xpday" method="post" id="form1" name="form1">
43
+ Search: <INPUT name="text" size="30" ID="Text1">
44
+ </FORM>
45
+ </TD>
46
+ <TD width="50%">
47
+
48
+ </TD>
49
+ </TR>
50
+ <TR>
51
+ <TD colspan="2"></TD>
52
+ </TR>
53
+ <TR>
54
+ <td>Changed on DATE by unknown
55
+ <a href="html/Xpday/rss.xml"><img src="html/rssLogo.png" width="36" height="14" border="0" alt="Keep up to date"></a>
56
+ </td>
57
+ <TD align="right">
58
+ Contact the site administrator: <a href="view/Xpday/MailFormattingRules" onmouseover="this.href='mai' + 'lto:' + 'wiki2go' + '&#64;' + 'nayima.be'">wiki2go</a>
59
+ <a target="_blank" href="http://validator.w3.org/check?uri=http://localhost/view/Xpday/UploadPage">
60
+ <img border="0" src="html/valid-html401.png" alt="Verify if layout is correct!" height="31" width="88"></a>
61
+ </TD>
62
+ </TR>
63
+ </TABLE>
64
+ </TD>
65
+ </TR>
66
+ </TABLE>
67
+ </div>
68
+ </BODY>
69
+ </HTML>