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.
- data/bin/Wiki2Go_firewall_blacklist.rb +8 -0
- data/bin/Wiki2Go_make_cvs_repository.rb +1 -0
- data/bin/Wiki2Go_make_site.rb +1 -2
- data/bin/Wiki2Go_update_site.rb +1 -2
- data/lib/Web2Go/CGIRequest.rb +8 -2
- data/lib/Web2Go/CGIResponse.rb +17 -14
- data/lib/Web2Go/MockRequest.rb +12 -2
- data/lib/Web2Go/MockResponse.rb +10 -7
- data/lib/Web2Go/WebrickRequest.rb +106 -101
- data/lib/Web2Go/WebrickResponse.rb +4 -8
- data/lib/Wiki2Go/BlackList.rb +48 -25
- data/lib/Wiki2Go/DotGraphics.rb +1 -1
- data/lib/Wiki2Go/FileStorage.rb +266 -266
- data/lib/Wiki2Go/HTMLFormatter.rb +28 -0
- data/lib/Wiki2Go/Install/config/chonqed_blacklist.txt +418 -0
- data/lib/Wiki2Go/Install/config/passwords +1 -1
- data/lib/Wiki2Go/Install/config/url_blacklist.txt +3855 -0
- data/lib/Wiki2Go/Install/make_repository.rb +32 -26
- data/lib/Wiki2Go/Install/make_site.rb +197 -111
- data/lib/Wiki2Go/Install/site/error.html +1 -1
- data/lib/Wiki2Go/Install/site/robots.txt +10 -1
- data/lib/Wiki2Go/Install/site/style.css +129 -64
- data/lib/Wiki2Go/Install/templates/admin.htm +1 -1
- data/lib/Wiki2Go/Install/templates/admin_pages/edit.txt +2 -1
- data/lib/Wiki2Go/Install/templates/admin_pages/format_for_fck.txt +31 -0
- data/lib/Wiki2Go/Install/templates/admin_pages/passwords.txt +1 -1
- data/lib/Wiki2Go/Install/templates/edit.htm +62 -46
- data/lib/Wiki2Go/Install/templates/full_footer.htm +31 -33
- data/lib/Wiki2Go/Install/templates/header.htm +0 -1
- data/lib/Wiki2Go/Install/templates/menu.htm +29 -0
- data/lib/Wiki2Go/Install/templates/pagelist.htm +46 -43
- data/lib/Wiki2Go/Install/templates/simple_footer.htm +20 -16
- data/lib/Wiki2Go/Install/templates/versionlist.htm +52 -40
- data/lib/Wiki2Go/Install/templates/view.htm +46 -29
- data/lib/Wiki2Go/Install/templates/wikiedit.htm +63 -0
- data/lib/Wiki2Go/Install/wiki/delete.png +0 -0
- data/lib/Wiki2Go/Install/wiki/style.css +133 -63
- data/lib/Wiki2Go/LineFormatter.rb +345 -197
- data/lib/Wiki2Go/Page.rb +16 -3
- data/lib/Wiki2Go/PrivateWikiConfig.rb +5 -5
- data/lib/Wiki2Go/PublicWikiConfig.rb +83 -37
- data/lib/Wiki2Go/ReadWriteWikiConfig.rb +8 -8
- data/lib/Wiki2Go/Server.rb +6 -1
- data/lib/Wiki2Go/SpamFilter.rb +32 -41
- data/lib/Wiki2Go/Web.rb +10 -3
- data/lib/Wiki2Go/Wiki2Go.rb +301 -94
- data/lib/Wiki2Go/Wiki2GoConfig.rb +87 -6
- data/lib/Wiki2Go/Wiki2GoServlet.rb +66 -12
- data/lib/Wiki2Go/WikiFormatter.rb +60 -30
- data/lib/Wiki2Go/cgi/diff.rb +20 -0
- data/lib/Wiki2Go/cgi/secure/log_rss.rb +21 -0
- data/lib/Wiki2Go/cgi/sidebyside.rb +20 -0
- data/lib/Wiki2Go/cgi/wikiedit.rb +20 -0
- data/lib/Wiki2Go/firewall_blacklist.rb +88 -0
- data/test/All.rb +5 -2
- data/test/TestBlackList.rb +70 -14
- data/test/TestConfig.rb +5 -5
- data/test/TestDiff.rb +95 -0
- data/test/TestFormatter.rb +14 -16
- data/test/TestHTMLFormatter.rb +37 -0
- data/test/TestInstall.rb +70 -27
- data/test/TestLineFormatter.rb +71 -15
- data/test/TestRSS.rb +8 -7
- data/test/TestRepository.rb +50 -0
- data/test/TestServer.rb +3 -8
- data/test/TestSpamFilter.rb +33 -1
- data/test/TestStorage.rb +11 -0
- data/test/TestWeb.rb +2 -2
- data/test/TestWiki2Go.rb +766 -166
- data/test/TestWiki2GoServlet.rb +1122 -524
- data/test/UnitTestFiles.rb +7 -3
- data/test/Wiki2GoConfigForTest.rb +40 -6
- data/test/checksite.rb +17 -50
- data/test/test_firewall_blacklist.rb +131 -0
- data/test/test_page.rb +45 -0
- data/test/testdata/Registration.rbl.txt +7 -0
- data/test/testdata/config/url_blacklist.txt +38822 -0
- data/test/testdata/expected_changes.html +1 -2
- data/test/testdata/expected_edit.html +108 -59
- data/test/testdata/expected_full_rss.xml +2 -2
- data/test/testdata/expected_out.html +97 -61
- data/test/testdata/expected_put.html +88 -53
- data/test/testdata/expected_save.html +88 -52
- data/test/testdata/expected_savehtml.html +88 -52
- data/test/testdata/expected_search.html +68 -53
- data/test/testdata/expected_upload.html +88 -53
- data/test/testdata/expected_versions.html +97 -82
- data/test/testdata/expected_view.html +97 -61
- data/test/testdata/firewall/iptables.config +37 -0
- data/test/testdata/firewall/user_blacklist.txt +162 -0
- data/test/testdata/logs/wiki.log +652 -0
- data/test/testdata/logs/wiki.log.0 +113 -0
- data/test/testdata/logs/wiki.log.1 +113 -0
- data/test/testdata/logs/wiki.log.2 +113 -0
- data/test/testdata/logs/wiki.log.3 +115 -0
- data/test/testdata/logs/wiki.log.4 +5 -0
- data/test/testdata/logs/wiki.log.5 +7 -0
- data/test/testdata/logs/wiki.log.6 +5 -0
- data/test/testdata/logs/wiki.log.7 +118 -0
- data/test/testdata/logs/wiki.log.8 +12 -0
- data/test/testdata/site/html/Xpday/rss.xml +53 -103
- data/test/testdata/texts/Bugs/FrontPage.txt +6 -0
- data/test/testdata/texts/Bugs/NoHidden.spam +17850 -0
- data/test/testdata/texts/Bugs/PairProgrammingParties.spam +102 -0
- data/test/testdata/texts/Bugs/PairProgrammingParties.txt +99 -0
- metadata +53 -7
- data/test/TestMail.rb +0 -29
- 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=" | 
| 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 | 
            -
             | 
| 13 | 
            -
             | 
| 14 | 
            -
             | 
| 15 | 
            -
             | 
| 16 | 
            -
             | 
| 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 | 
            -
                    < | 
| 20 | 
            -
                        < | 
| 21 | 
            -
                            < | 
| 22 | 
            -
                                < | 
| 23 | 
            -
                                    < | 
| 24 | 
            -
                                        < | 
| 25 | 
            -
             | 
| 26 | 
            -
             | 
| 27 | 
            -
             | 
| 28 | 
            -
             | 
| 29 | 
            -
             | 
| 30 | 
            -
             | 
| 31 | 
            -
             | 
| 32 | 
            -
             | 
| 33 | 
            -
             | 
| 34 | 
            -
             | 
| 35 | 
            -
             | 
| 36 | 
            -
             | 
| 37 | 
            -
             | 
| 38 | 
            -
             | 
| 39 | 
            -
             | 
| 40 | 
            -
             | 
| 41 | 
            -
             | 
| 42 | 
            -
             | 
| 43 | 
            -
             | 
| 44 | 
            -
             | 
| 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 History</a>
         | 
| 47 | 
            +
                </li>
         | 
| 48 | 
            +
                <li>
         | 
| 49 | 
            +
                    <a href="/sidebyside/Xpday/FrontPage" rel="nofollow">What 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 this page</a>
         | 
| 56 | 
            +
                </li>
         | 
| 57 | 
            +
            </ul>
         | 
| 58 | 
            +
            <hr>
         | 
| 59 | 
            +
             | 
| 60 | 
            +
            <ul>
         | 
| 61 | 
            +
                <li>
         | 
| 62 | 
            +
                    <a href="/changes/Xpday" rel="nofollow">Recent 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"><h2>Welcome to XP Day Benelux 2003</h2>
         | 
| 45 82 | 
             
            <h3>21 November 2003</h3>
         | 
| 46 83 | 
             
            <h3>NAC BREDA "MyCom" Football stadium, Breda, The Netherlands</h3>
         | 
| 47 84 | 
             
            <hr>
         | 
| @@ -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 | 
            -
             | 
| 79 | 
            -
             | 
| 80 | 
            -
             | 
| 81 | 
            -
             | 
| 82 | 
            -
             | 
| 83 | 
            -
             | 
| 84 | 
            -
             | 
| 85 | 
            -
             | 
| 86 | 
            -
             | 
| 87 | 
            -
             | 
| 88 | 
            -
             | 
| 89 | 
            -
                     | 
| 90 | 
            -
             | 
| 91 | 
            -
             | 
| 92 | 
            -
             | 
| 93 | 
            -
             | 
| 94 | 
            -
             | 
| 95 | 
            -
             | 
| 96 | 
            -
             | 
| 97 | 
            -
             | 
| 98 | 
            -
             | 
| 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' + '@' + '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 | 
            -
             | 
| 101 | 
            -
             | 
| 102 | 
            -
             | 
| 103 | 
            -
                </ | 
| 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> | 
| 10 | 
            +
                    <TITLE>
         | 
| 11 | 
            +
                        
         | 
| 12 | 
            +
                        Xpday
         | 
| 13 | 
            +
                        -
         | 
| 14 | 
            +
                        
         | 
| 15 | 
            +
                        homepage
         | 
| 16 | 
            +
                    </TITLE>
         | 
| 12 17 | 
             
                </HEAD>
         | 
| 13 18 | 
             
                <BODY>
         | 
| 14 | 
            -
                    < | 
| 15 | 
            -
                        < | 
| 16 | 
            -
                            < | 
| 17 | 
            -
                                < | 
| 18 | 
            -
                                    < | 
| 19 | 
            -
                                        < | 
| 20 | 
            -
             | 
| 21 | 
            -
                                            </ | 
| 22 | 
            -
             | 
| 23 | 
            -
                                        </ | 
| 24 | 
            -
                                    </ | 
| 25 | 
            -
             | 
| 26 | 
            -
             | 
| 27 | 
            -
             | 
| 28 | 
            -
            < | 
| 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 History</a>
         | 
| 39 | 
            +
                </li>
         | 
| 40 | 
            +
                <li>
         | 
| 41 | 
            +
                    <a href="/sidebyside/Xpday/Page" rel="nofollow">What 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 this page</a>
         | 
| 48 | 
            +
                </li>
         | 
| 49 | 
            +
            </ul>
         | 
| 50 | 
            +
            <hr>
         | 
| 51 | 
            +
             | 
| 52 | 
            +
            <ul>
         | 
| 53 | 
            +
                <li>
         | 
| 54 | 
            +
                    <a href="/changes/Xpday" rel="nofollow">Recent 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="/ | 
| 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="/ | 
| 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="/ | 
| 47 | 
            -
            <li> Images from the event are available at XpDay2003Pictures<a href="/ | 
| 48 | 
            -
            <li> Now the conference is over, the story can be told, over at Xpday2003Story<a href="/ | 
| 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="/ | 
| 53 | 
            -
            <li> The ConferenceLocation<a href="/ | 
| 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="/ | 
| 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="/ | 
| 60 | 
            -
             | 
| 61 | 
            -
             | 
| 62 | 
            -
             | 
| 63 | 
            -
            < | 
| 64 | 
            -
             | 
| 65 | 
            -
                < | 
| 66 | 
            -
             | 
| 67 | 
            -
             | 
| 68 | 
            -
             | 
| 69 | 
            -
             | 
| 70 | 
            -
             | 
| 71 | 
            -
             | 
| 72 | 
            -
             | 
| 73 | 
            -
             | 
| 74 | 
            -
             | 
| 75 | 
            -
             | 
| 76 | 
            -
             | 
| 77 | 
            -
             | 
| 78 | 
            -
             | 
| 79 | 
            -
                 | 
| 80 | 
            -
             | 
| 81 | 
            -
             | 
| 82 | 
            -
             | 
| 83 | 
            -
             | 
| 84 | 
            -
             | 
| 85 | 
            -
             | 
| 86 | 
            -
             | 
| 87 | 
            -
             | 
| 88 | 
            -
             | 
| 89 | 
            -
                </ | 
| 90 | 
            -
              </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' + '@' + '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' + '@' + '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 | 
            -
             | 
| 93 | 
            -
             | 
| 94 | 
            -
             | 
| 95 | 
            -
                     | 
| 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> | 
| 10 | 
            +
                    <TITLE>
         | 
| 11 | 
            +
                        
         | 
| 12 | 
            +
                        Xpday
         | 
| 13 | 
            +
                        -
         | 
| 14 | 
            +
                        
         | 
| 15 | 
            +
                        homepage
         | 
| 16 | 
            +
                    </TITLE>
         | 
| 12 17 | 
             
                </HEAD>
         | 
| 13 18 | 
             
                <BODY>
         | 
| 14 | 
            -
                    < | 
| 15 | 
            -
                        < | 
| 16 | 
            -
                            < | 
| 17 | 
            -
                                < | 
| 18 | 
            -
                                    < | 
| 19 | 
            -
                                        < | 
| 20 | 
            -
             | 
| 21 | 
            -
                                            </ | 
| 22 | 
            -
             | 
| 23 | 
            -
                                        </ | 
| 24 | 
            -
                                    </ | 
| 25 | 
            -
             | 
| 26 | 
            -
             | 
| 27 | 
            -
             | 
| 28 | 
            -
             | 
| 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 History</a>
         | 
| 39 | 
            +
                </li>
         | 
| 40 | 
            +
                <li>
         | 
| 41 | 
            +
                    <a href="/sidebyside/Xpday/Page" rel="nofollow">What 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 this page</a>
         | 
| 48 | 
            +
                </li>
         | 
| 49 | 
            +
            </ul>
         | 
| 50 | 
            +
            <hr>
         | 
| 51 | 
            +
             | 
| 52 | 
            +
            <ul>
         | 
| 53 | 
            +
                <li>
         | 
| 54 | 
            +
                    <a href="/changes/Xpday" rel="nofollow">Recent 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 64 | 
             
            <h3>NAC BREDA "MyCom" Football stadium, Breda, The Netherlands</h3>
         | 
| 31 65 | 
             
            <hr>
         | 
| @@ -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 | 
            -
             | 
| 63 | 
            -
             | 
| 64 | 
            -
             | 
| 65 | 
            -
            <TABLE border="0" cellpadding="0" cellspacing="0" width="100%" class="Footer">
         | 
| 66 | 
            -
             | 
| 67 | 
            -
             | 
| 68 | 
            -
             | 
| 69 | 
            -
             | 
| 70 | 
            -
             | 
| 71 | 
            -
             | 
| 72 | 
            -
             | 
| 73 | 
            -
             | 
| 74 | 
            -
             | 
| 75 | 
            -
             | 
| 76 | 
            -
             | 
| 77 | 
            -
             | 
| 78 | 
            -
             | 
| 79 | 
            -
             | 
| 80 | 
            -
             | 
| 81 | 
            -
                < | 
| 82 | 
            -
             | 
| 83 | 
            -
             | 
| 84 | 
            -
             | 
| 85 | 
            -
             | 
| 86 | 
            -
             | 
| 87 | 
            -
             | 
| 88 | 
            -
             | 
| 89 | 
            -
             | 
| 90 | 
            -
             | 
| 91 | 
            -
                </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' + '@' + '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 | 
            -
             | 
| 95 | 
            -
             | 
| 96 | 
            -
             | 
| 97 | 
            -
                     | 
| 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>
         |