Wiki2Go 1.17.5 → 1.22.0

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -1,7 +1,6 @@
1
1
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
2
  <HTML>
3
3
  <HEAD>
4
- <BASE href="http://localhost/">
5
4
  <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6
5
  <META http-equiv="Pragma" content="no-cache">
7
6
  <META name="Author" content="Pascal Van Cauwenberghe, Vera Peeters, Willem van den Ende,Erik Groeneveld,Marc Evers, Peter Schrier">
@@ -14,7 +13,7 @@
14
13
  <TABLE border="0" cellpadding="0" cellspacing="0" width="100%">
15
14
  <TR>
16
15
  <TD>
17
- <TABLE border="0" cellpadding="0" cellspacing="0" width="100%" class="Header">
16
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="95%" class="Header">
18
17
  <TR>
19
18
  <TD><H1>Recent changes</H1></TD>
20
19
  <td align="right"><A href="/view/Xpday/FrontPage"><img src="html/bexpnl.png" width="272" height="66" border="0" alt="XP Day Benelux" /></A></td>
@@ -2,46 +2,83 @@
2
2
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
3
3
  <HTML>
4
4
  <HEAD>
5
- <BASE href="http://localhost/">
6
5
  <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
7
6
  <META http-equiv="Pragma" content="no-cache">
8
7
  <META name="Author" content="Pascal Van Cauwenberghe">
9
8
  <META name="Keywords" content="ruby,wiki">
10
9
  <LINK rel="stylesheet" href="/html/Xpday/style.css" type="text/css">
11
10
  <LINK rel="alternate" type="application/rss+xml" title="RSS 2.0 feed" href="/html/Xpday/rss.xml">
12
- <TITLE>Edit
13
- Xpday
14
- -
15
- FrontPage
16
- </TITLE>
11
+ <META name="robots" content="noindex,nofollow">
12
+ <TITLE>Edit
13
+ Xpday
14
+ -
15
+ FrontPage
16
+ </TITLE>
17
+ <script type="text/javascript" src="/fckeditor/fckeditor.js"></script>
18
+ <script type="text/javascript">
19
+ window.onload = function()
20
+ {
21
+ var oFCKeditor = new FCKeditor( 'text','100%','400' ) ;
22
+ oFCKeditor.ReplaceTextarea() ;
23
+ }
24
+ </script>
17
25
  </HEAD>
18
26
  <BODY>
19
- <div id="container">
20
- <TABLE border="0" cellpadding="0" cellspacing="0" width="100%">
21
- <TR>
22
- <TD>
23
- <TABLE border="0" cellpadding="0" cellspacing="0" width="100%" class="Header">
24
- <TR>
25
- <TD><H1>Edit
26
- <a href="/search/Xpday?text=FrontPage">FrontPage</a>
27
- </H1>
28
- </TD>
29
- <td align="right"><a href="/view/Xpday/FrontPage">Home</a></td>
30
- </TR>
31
- </TABLE>
32
- <table border="0" cellpadding="0" cellspacing="0" width="100%" class="Body">
33
- <tr>
34
- <td width="100%">
35
- <form action="/save/Xpday/FrontPage" method="POST" id="form2" name="form2">
36
- <p align="left">Edit the page in the text area.
37
- <br>
38
- To quit without changing the page,
39
- <a href="/view/Xpday/FrontPage">click here to return to FrontPage</a>
40
- </p>
41
-
42
- <p align="left">Author name: <input type="text" name="author" value="unknown" size="64"><input type="checkbox" name="remember_me" value="on" checked>Remember me</p>
43
-
44
- <p align="left"><textarea name="text" rows="35" cols="96">&lt;h2&gt;Welcome to XP Day Benelux 2003&lt;/h2&gt;
27
+ <table id="container">
28
+ <tr>
29
+ <td colspan="2" id="header">
30
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="95%" class="Header">
31
+ <TR>
32
+ <TD><H1>Edit
33
+ <a href="/search/Xpday?text=FrontPage" rel="nofollow">FrontPage</a>
34
+ </H1>
35
+ </TD>
36
+ <td align="right"><a href="/view/Xpday/FrontPage">Home</a></td>
37
+ </TR>
38
+ </TABLE>
39
+ </td>
40
+ </tr>
41
+ <tr>
42
+ <td id="menu" valign="top" nowrap>
43
+
44
+ <ul>
45
+ <li>
46
+ <a href="/versions/Xpday/FrontPage" rel="nofollow">Page&nbsp;History</a>
47
+ </li>
48
+ <li>
49
+ <a href="/sidebyside/Xpday/FrontPage" rel="nofollow">What&nbsp;changed?</a>
50
+ </li>
51
+ <li>
52
+ <a href="/diff/Xpday/FrontPage" rel="nofollow">Diff</a>
53
+ </li>
54
+ <li>
55
+ <a href="/wikiedit/Xpday/FrontPage" rel="nofollow">Edit&nbsp;this&nbsp;page</a>
56
+ </li>
57
+ </ul>
58
+ <hr>
59
+
60
+ <ul>
61
+ <li>
62
+ <a href="/changes/Xpday" rel="nofollow">Recent&nbsp;changes</a>
63
+ </li>
64
+ <li>
65
+ <a href="/html/Xpday/rss.xml"><img src="/html/rssLogo.png" width="36" height="14" border="0" alt="Keep up to date"></a>
66
+ </li>
67
+ </ul>
68
+ </td>
69
+ <td id="body" width="100%" valign="top">
70
+ <form action="/save/Xpday/FrontPage" method="POST" id="form2" name="form2">
71
+ <input type="hidden" name="iznorobot" value="30070e5dd00905bac6e0e4cf36d18e14f468f9908205ec2a30539277f9649664" />
72
+ <p align="left">Edit the page in the text area.
73
+ <br>
74
+ To quit without changing the page,
75
+ <a href="/view/Xpday/FrontPage">click here to return to FrontPage</a>
76
+ </p>
77
+
78
+ <p align="left">Author name: <input type="text" name="author" value="unknown" size="64"><input type="checkbox" name="remember_me" value="on" checked>Remember
79
+ me</p>
80
+
81
+ <p align="left"><textarea name="text" rows="35" cols="96">&lt;h2&gt;Welcome to XP Day Benelux 2003&lt;/h2&gt;
45
82
  &lt;h3&gt;21 November 2003&lt;/h3&gt;
46
83
  &lt;h3&gt;NAC BREDA &quot;MyCom&quot; Football stadium, Breda, The Netherlands&lt;/h3&gt;
47
84
  &lt;hr&gt;
@@ -73,33 +110,45 @@ This event was organized by members of the %Belgian XP users group@http://www.xp
73
110
  ---
74
111
 
75
112
  XP Day Benelux is an %Organisation% of AgileSystems vzwFor more information, the organizers can be contacted at: mailto:xpdayinfo@xpday.be
76
-
77
113
  </textarea><br>
78
- <input type="submit" value=" Save " name="save"><input type="reset" value=" Undo changes "> </p>
79
- </form>
80
- <p align="left"><em>Don't forget to follow the <a href="http://wiki2go.nayima.be/Wiki2Go/TextFormattingRules.html" target="_blank">TextFormatting rules</a></em></p>
81
- </td>
82
- </tr>
83
- </table>
84
- <TABLE border="0" cellpadding="0" cellspacing="0" width="100%" class="Footer" ID="Table1">
85
- <TR>
86
- <TD width="50%"><a href="/changes/Xpday">Recent changes</a></TD>
87
- <TD width="50%">
88
- <FORM action="/search/Xpday" method="post" id="form1" name="form1">
89
- Search: <INPUT name="text" size="30" ID="Text1">
90
- </FORM>
91
- </TD>
92
- </TR>
93
- <TR>
94
- <td><a href="/html/Xpday/rss.xml"><img src="/html/rssLogo.png" width="36" height="14" border="0" alt="Keep informed"></a></td>
95
- <TD align="right">
96
- Contact the site administrator: <a href="/view/Xpday/MailFormattingRules" onmouseover="this.href='mai' + 'lto:' + 'wiki2go' + '&#64;' + 'nayima.be'">wiki2go</a>
97
- </TD>
98
- </TR>
114
+ <input type="submit" value=" Save " name="save"> <input type="reset" value=" Undo ">
115
+ </p>
116
+ </form>
117
+ <p align="left"><em>Don't forget to follow the <a href="http://wiki2go.nayima.be/Wiki2Go/TextFormattingRules.html" target="_blank">
118
+ TextFormatting rules</a></em></p>
119
+ </td>
120
+ </tr>
121
+ <tr>
122
+ <td colspan="2" id="footer">
123
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="100%" class="Footer">
124
+ <TR>
125
+ <TD width="50%">
126
+
127
+ <a href="/sidebyside/Xpday/FrontPage" rel="nofollow">Changed</a>
128
+ on
129
+ 08/03/2005
130
+ by
131
+ <a href="/search/Xpday?text=pvc" rel="nofollow">pvc</a>
132
+
133
+ </TD>
134
+ <TD width="50%" align="right">
135
+ Contact the site administrator:
136
+ <a href="/view/Xpday/MailFormattingRules" rel="nofollow" onmouseover="this.href='mai' + 'lto:' + 'wiki2go' + '&#64;' + 'nayima.be'">wiki2go</a>
137
+ </TD>
138
+ </TR>
139
+ <tr><td colspan="2"><hr></td></tr>
140
+ <tr>
141
+ <td><FORM action="/search/Xpday" method="post" id="search" name="search">
142
+ Search for <INPUT name="text" size="30" ID="Text1"> <input type="submit" name="Go" value="Go">
143
+ </FORM>
144
+ </td>
145
+ <td>
146
+
147
+ </td>
148
+ </tr>
99
149
  </TABLE>
100
- </TD>
101
- </TR>
102
- </TABLE>
103
- </div>
104
- </BODY>
150
+ </td>
151
+ </tr>
152
+ </table>
153
+ </BODY>
105
154
  </HTML>
@@ -14,7 +14,7 @@
14
14
  <author>author1</author>
15
15
  <pubDate>13 September 2004 22:19 GMT</pubDate>
16
16
  <link>http://agilesystems.nayima.be/view/Xpday/title1</link>
17
- <guid isPermaLink="true">Xpday/title1</guid>
17
+ <guid isPermaLink="true">http://agilesystems.nayima.be/view/Xpday/title1</guid>
18
18
  <description><![CDATA[content1]]></description>
19
19
  </item>
20
20
  <item>
@@ -22,7 +22,7 @@
22
22
  <author>author2</author>
23
23
  <pubDate>12 September 2004 20:26 GMT</pubDate>
24
24
  <link>http://agilesystems.nayima.be/view/Xpday/title2</link>
25
- <guid isPermaLink="true">Xpday/title2</guid>
25
+ <guid isPermaLink="true">http://agilesystems.nayima.be/view/Xpday/title2</guid>
26
26
  <description><![CDATA[content2]]></description>
27
27
  </item>
28
28
  </channel>
@@ -1,33 +1,67 @@
1
1
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
2
  <HTML>
3
3
  <HEAD>
4
- <BASE href="http://webserver:8081/">
5
4
  <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6
5
  <META http-equiv="Pragma" content="no-cache">
7
6
  <META name="Author" content="Pascal Van Cauwenberghe">
8
7
  <META name="Keywords" content="ruby,wiki">
9
8
  <LINK rel="stylesheet" href="/html/Xpday/style.css" type="text/css">
10
9
  <LINK rel="alternate" type="application/rss+xml" title="RSS 2.0 feed" href="/html/Xpday/rss.xml">
11
- <TITLE>Xpday-homepage</TITLE>
10
+ <TITLE>
11
+
12
+ Xpday
13
+ -
14
+
15
+ homepage
16
+ </TITLE>
12
17
  </HEAD>
13
18
  <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>
19
+ <table id="container">
20
+ <tr>
21
+ <td colspan="2" id="header">
22
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="95%" class="Header">
23
+ <TR>
24
+ <TD><h1><a href="/search/Xpday?text=Page" rel="nofollow">homepage</a>
25
+
26
+ </h1>
27
+ </TD>
28
+ <td align="right"><a href="/view/Xpday/FrontPage">Home</a></td>
29
+ </TR>
30
+ </TABLE>
31
+ </td>
32
+ </tr>
33
+ <tr>
34
+ <td id="menu" valign="top" nowrap>
35
+
36
+ <ul>
37
+ <li>
38
+ <a href="/versions/Xpday/Page" rel="nofollow">Page&nbsp;History</a>
39
+ </li>
40
+ <li>
41
+ <a href="/sidebyside/Xpday/Page" rel="nofollow">What&nbsp;changed?</a>
42
+ </li>
43
+ <li>
44
+ <a href="/diff/Xpday/Page" rel="nofollow">Diff</a>
45
+ </li>
46
+ <li>
47
+ <a href="/wikiedit/Xpday/Page" rel="nofollow">Edit&nbsp;this&nbsp;page</a>
48
+ </li>
49
+ </ul>
50
+ <hr>
51
+
52
+ <ul>
53
+ <li>
54
+ <a href="/changes/Xpday" rel="nofollow">Recent&nbsp;changes</a>
55
+ </li>
56
+ <li>
57
+ <a href="/html/Xpday/rss.xml"><img src="/html/rssLogo.png" width="36" height="14" border="0" alt="Keep up to date"></a>
58
+ </li>
59
+ </ul>
60
+ </td>
61
+ <td id="body" width="100%" valign="top">
62
+ <h2>Welcome to XP Day Benelux 2003</h2>
29
63
  <h3>21 November 2003</h3>
30
- <h3>NAC BREDA "MyCom<a href="/edit/Xpday/MyCom">?</a>" Football stadium, Breda, The Netherlands</h3>
64
+ <h3>NAC BREDA "MyCom<a href="/wikiedit/Xpday/MyCom" rel="nofollow">?</a>" Football stadium, Breda, The Netherlands</h3>
31
65
  <hr>
32
66
  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
67
  <p>
@@ -41,57 +75,59 @@ This event was organized by members of the <a href="http://www.xp.be" target="_b
41
75
  <p>
42
76
  <STRONG> LATEST NEWS:</STRONG>
43
77
  <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>
78
+ <ul><li> <STRONG>The next XP Day Benelux will take place on 19 November 2004 in Mechelen, Belgium</STRONG>. See FrontPage<a href="/wikiedit/Xpday2004/FrontPage" rel="nofollow">?</a>
45
79
  <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>
80
+ <li> Session presentations and workshop transcripts available from the Program<a href="/wikiedit/Xpday/Program" rel="nofollow">?</a> page
81
+ <li> Images from the event are available at XpDay2003Pictures<a href="/wikiedit/Xpday/XpDay2003Pictures" rel="nofollow">?</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>
82
+ <li> Now the conference is over, the story can be told, over at Xpday2003Story<a href="/wikiedit/Xpday/Xpday2003Story" rel="nofollow">?</a>
49
83
  </ul>
50
84
  <hr>
51
85
  <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.
86
+ <ul><li> See the conference Program<a href="/wikiedit/Xpday/Program" rel="nofollow">?</a> for a list of sessions and presenters. There is also a <a href="/html/Xpday/programma.pdf" target="_blank">printable version</a>
87
+ <li> The ConferenceLocation<a href="/wikiedit/Xpday/ConferenceLocation" rel="nofollow">?</a> page tells you all about the location and acces by car and public transport.
54
88
  <li> Download the <a href="/html/Xpday/flyer.pdf" target="_blank">flyer</a>.
55
- <li> RelatedEvents<a href="/edit/Xpday/RelatedEvents">?</a>
89
+ <li> RelatedEvents<a href="/wikiedit/Xpday/RelatedEvents" rel="nofollow">?</a>
56
90
  </ul>
57
91
  <hr>
58
92
  <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>
93
+ XP Day Benelux is an Organisation<a href="/wikiedit/Xpday/Organisation" rel="nofollow">?</a> of AgileSystems<a href="/wikiedit/Xpday/AgileSystems" rel="nofollow">?</a> vzwFor more information, the organizers can be contacted at: <a href="/view/Xpday/MailFormattingRules" rel="nofollow" onmouseover="this.href='mai' + 'lto:' + 'xpdayinfo' + '&#64;' + 'xpday.be'">xpdayinfo</a>
94
+ </td>
95
+ </tr>
96
+ <tr>
97
+ <td colspan="2" id="footer">
98
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="100%" class="Footer">
99
+ <TR>
100
+ <TD width="50%">
101
+
102
+ <a href="/sidebyside/Xpday/Page" rel="nofollow">Changed</a>
103
+ on
104
+ 08/03/2005
105
+ by
106
+ <a href="/search/Xpday?text=pvc" rel="nofollow">pvc</a>
107
+
108
+ </TD>
109
+ <TD width="50%" align="right">
110
+ Contact the site administrator:
111
+ <a href="/view/Xpday/MailFormattingRules" rel="nofollow" onmouseover="this.href='mai' + 'lto:' + 'wiki2go' + '&#64;' + 'nayima.be'">wiki2go</a>
112
+ </TD>
113
+ </TR>
114
+ <tr><td colspan="2"><hr></td></tr>
115
+ <tr>
116
+ <td><FORM action="/search/Xpday" method="post" id="search" name="search">
117
+ Search for <INPUT name="text" size="30" ID="Text1"> <input type="submit" name="Go" value="Go">
118
+ </FORM>
119
+ </td>
120
+ <td>
121
+
122
+ </td>
123
+ </tr>
91
124
  </TABLE>
92
- </TD>
93
- </TR>
94
- </TABLE>
95
- </div>
125
+ </td>
126
+ </tr>
127
+ </table>
128
+ <span style="float:right">
129
+ <a target="_blank" href="http://validator.w3.org/check?uri=http://webserver:8081/view/Xpday/Page">
130
+ <img border="0" src="/html/valid-html401.png" alt="Verify if layout is correct!" height="31" width="88"></a>
131
+ </span>
96
132
  </BODY>
97
133
  </HTML>
@@ -1,31 +1,65 @@
1
1
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
2
  <HTML>
3
3
  <HEAD>
4
- <BASE href="http://webserver:8081/">
5
4
  <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6
5
  <META http-equiv="Pragma" content="no-cache">
7
6
  <META name="Author" content="Pascal Van Cauwenberghe">
8
7
  <META name="Keywords" content="ruby,wiki">
9
8
  <LINK rel="stylesheet" href="/html/Xpday/style.css" type="text/css">
10
9
  <LINK rel="alternate" type="application/rss+xml" title="RSS 2.0 feed" href="/html/Xpday/rss.xml">
11
- <TITLE>Xpday-homepage</TITLE>
10
+ <TITLE>
11
+
12
+ Xpday
13
+ -
14
+
15
+ homepage
16
+ </TITLE>
12
17
  </HEAD>
13
18
  <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;
19
+ <table id="container">
20
+ <tr>
21
+ <td colspan="2" id="header">
22
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="95%" class="Header">
23
+ <TR>
24
+ <TD><h1><a href="/search/Xpday?text=Page" rel="nofollow">homepage</a>
25
+
26
+ </h1>
27
+ </TD>
28
+ <td align="right"><a href="/view/Xpday/FrontPage">Home</a></td>
29
+ </TR>
30
+ </TABLE>
31
+ </td>
32
+ </tr>
33
+ <tr>
34
+ <td id="menu" valign="top" nowrap>
35
+
36
+ <ul>
37
+ <li>
38
+ <a href="/versions/Xpday/Page" rel="nofollow">Page&nbsp;History</a>
39
+ </li>
40
+ <li>
41
+ <a href="/sidebyside/Xpday/Page" rel="nofollow">What&nbsp;changed?</a>
42
+ </li>
43
+ <li>
44
+ <a href="/diff/Xpday/Page" rel="nofollow">Diff</a>
45
+ </li>
46
+ <li>
47
+ <a href="/wikiedit/Xpday/Page" rel="nofollow">Edit&nbsp;this&nbsp;page</a>
48
+ </li>
49
+ </ul>
50
+ <hr>
51
+
52
+ <ul>
53
+ <li>
54
+ <a href="/changes/Xpday" rel="nofollow">Recent&nbsp;changes</a>
55
+ </li>
56
+ <li>
57
+ <a href="/html/Xpday/rss.xml"><img src="/html/rssLogo.png" width="36" height="14" border="0" alt="Keep up to date"></a>
58
+ </li>
59
+ </ul>
60
+ </td>
61
+ <td id="body" width="100%" valign="top">
62
+ &lt;h2&gt;Welcome to XP Day Benelux 2003&lt;/h2&gt;
29
63
  &lt;h3&gt;21 November 2003&lt;/h3&gt;
30
64
  &lt;h3&gt;NAC BREDA &quot;MyCom&quot; Football stadium, Breda, The Netherlands&lt;/h3&gt;
31
65
  &lt;hr&gt;
@@ -58,42 +92,43 @@ This event was organized by members of the %Belgian XP users group@http://www.xp
58
92
 
59
93
  XP Day Benelux is an %Organisation% of AgileSystems vzwFor more information, the organizers can be contacted at: mailto:xpdayinfo@xpday.be
60
94
 
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>
95
+ </td>
96
+ </tr>
97
+ <tr>
98
+ <td colspan="2" id="footer">
99
+ <TABLE border="0" cellpadding="0" cellspacing="0" width="100%" class="Footer">
100
+ <TR>
101
+ <TD width="50%">
102
+
103
+ <a href="/sidebyside/Xpday/Page" rel="nofollow">Changed</a>
104
+ on
105
+ 08/03/2005
106
+ by
107
+ <a href="/search/Xpday?text=pvc" rel="nofollow">pvc</a>
108
+
109
+ </TD>
110
+ <TD width="50%" align="right">
111
+ Contact the site administrator:
112
+ <a href="/view/Xpday/MailFormattingRules" rel="nofollow" onmouseover="this.href='mai' + 'lto:' + 'wiki2go' + '&#64;' + 'nayima.be'">wiki2go</a>
113
+ </TD>
114
+ </TR>
115
+ <tr><td colspan="2"><hr></td></tr>
116
+ <tr>
117
+ <td><FORM action="/search/Xpday" method="post" id="search" name="search">
118
+ Search for <INPUT name="text" size="30" ID="Text1"> <input type="submit" name="Go" value="Go">
119
+ </FORM>
120
+ </td>
121
+ <td>
122
+
123
+ </td>
124
+ </tr>
93
125
  </TABLE>
94
- </TD>
95
- </TR>
96
- </TABLE>
97
- </div>
126
+ </td>
127
+ </tr>
128
+ </table>
129
+ <span style="float:right">
130
+ <a target="_blank" href="http://validator.w3.org/check?uri=http://webserver:8081/view/Xpday/Page">
131
+ <img border="0" src="/html/valid-html401.png" alt="Verify if layout is correct!" height="31" width="88"></a>
132
+ </span>
98
133
  </BODY>
99
134
  </HTML>