Soks 0.0.7 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (109) hide show
  1. data/LICENSE.txt +2 -0
  2. data/README.txt +3 -2
  3. data/TODO.txt +31 -0
  4. data/bin/soks-create-wiki.rb +0 -1
  5. data/lib/authenticators.rb +30 -4
  6. data/lib/helpers/counter-helpers.rb +132 -0
  7. data/lib/helpers/default-helpers.rb +170 -169
  8. data/lib/helpers/mail2wiki-helper.rb +18 -22
  9. data/lib/helpers/maintenance-helpers.rb +149 -0
  10. data/lib/helpers/rss2wiki-helper.rb +7 -8
  11. data/lib/soks-model.rb +82 -54
  12. data/lib/soks-servlet.rb +126 -108
  13. data/lib/soks-storage.rb +74 -11
  14. data/lib/soks-utils.rb +77 -3
  15. data/lib/soks-view.rb +169 -103
  16. data/lib/soks.rb +5 -23
  17. data/templates/default/attachment/newpage.js +4 -13
  18. data/templates/default/attachment/print_stylesheet.css +2 -7
  19. data/templates/default/caches/readme.txt +1 -0
  20. data/templates/default/content/Api%20for%20classes%20to%20modify%20the%20wiki.textile +2 -0
  21. data/templates/default/content/Author.textile +4 -1
  22. data/templates/default/content/Automatic%20Summaries.textile +16 -53
  23. data/templates/default/content/Automatic%20linking%20between%20pages.textile +3 -3
  24. data/templates/default/content/{bug%3A%20competing%20edits.textile → Bug%3A%20Competing%20edits.textile} +9 -0
  25. data/templates/default/content/Bug%3A%20Does%20not%20make%20use%20of%20if%2Dmodified%2Dsince%20r.textile +2 -0
  26. data/templates/default/content/Bug%3A%20E%2Dmail%20addresses%20with%20hyphens%20not%20recognised.textile +17 -0
  27. data/templates/default/content/Bug%3A%20Email%20adresses%20in%20page%20titles%20cause%20incorrec.textile +3 -0
  28. data/templates/default/content/Bug%3A%20GEM%20limits%20title%20lengths.textile +3 -1
  29. data/templates/default/content/Bug%3A%20Memory%20leak.textile +13 -0
  30. data/templates/default/content/Bug%3A%20Pages%20that%20link%20here%20may%20not%20appear%20on%20r.textile +13 -0
  31. data/templates/default/content/Bug%3A%20Textile%20mishandles%20paragraphs.textile +4 -0
  32. data/templates/default/content/Bug%3A%20Unanticipated%20Rollbacks.textile +2 -0
  33. data/templates/default/content/Bug%3A%20notextile%20does%20not%20prevent%20page%20inserts.textile +2 -0
  34. data/templates/default/content/Home%20Page.textile +3 -1
  35. data/templates/default/content/How%20to%20administrate%20this%20wiki.textile +23 -13
  36. data/templates/default/content/How%20to%20change%20the%20way%20this%20wiki%20looks.textile +3 -1
  37. data/templates/default/content/How%20to%20export%20a%20site%20from%20this%20wiki.textile +22 -0
  38. data/templates/default/content/How%20to%20get%20the%20latest%20Soks%20from%20cvs.textile +2 -0
  39. data/templates/default/content/How%20to%20hack%20soks.textile +2 -0
  40. data/templates/default/content/How%20to%20import%20a%20site%20from%20instiki.textile +2 -0
  41. data/templates/default/content/{How%20to%20import%20data%20to%20this%20wiki.textile → How%20to%20import%20data.textile} +3 -7
  42. data/templates/default/content/How%20to%20install%20Soks.textile +2 -0
  43. data/templates/default/content/How%20to%20password%20protect%20your%20wiki.textile +21 -11
  44. data/templates/default/content/How%20to%20report%20a%20bug.textile +2 -1
  45. data/templates/default/content/How%20to%20upgrade%20soks.textile +22 -0
  46. data/templates/default/content/How%20to%20use%20the%20keyboard%20shortcuts.textile +2 -2
  47. data/templates/default/content/How%20to%20use%20this%20wiki.textile +3 -1
  48. data/templates/default/content/List%20of%20changes.textile +84 -118
  49. data/templates/default/content/News%3A%20Version%201%2D0%2D0%20released.textile +19 -0
  50. data/templates/default/content/Pages%20to%20include%20in%20the%20distribution.textile +51 -0
  51. data/templates/default/content/Per%20Wiki%20Templates.textile +2 -0
  52. data/templates/default/content/Planned%20Features.textile +30 -9
  53. data/templates/default/content/README.textile +3 -2
  54. data/templates/default/content/RSS%20feed.textile +1 -1
  55. data/templates/default/content/Recent%20changes%20to%20this%20site.textile +283 -0
  56. data/templates/default/content/SOKS%20features.textile +3 -0
  57. data/templates/default/content/Site%20Index.textile +202 -0
  58. data/templates/default/content/Soks%20Licence.textile +2 -0
  59. data/templates/default/content/Tag%3A%20Include%20this%20page%20in%20the%20distribution.textile +6 -0
  60. data/templates/default/start.rb +67 -123
  61. data/templates/default/version.txt +1 -1
  62. data/templates/default/views/Page_edit.rhtml +7 -7
  63. data/templates/default/views/{Page_search_results.rhtml → Page_find.rhtml} +9 -3
  64. data/templates/default/views/Page_linksfromrss.rhtml +24 -0
  65. data/templates/default/views/Page_listrss.rhtml +46 -0
  66. data/templates/default/views/Page_meta.rhtml +1 -1
  67. data/templates/default/views/Page_revision.rhtml +39 -0
  68. data/templates/default/views/Page_revisions.rhtml +13 -5
  69. data/templates/default/views/Page_rss.rhtml +8 -8
  70. data/templates/default/views/Page_view.rhtml +3 -3
  71. data/templates/default/views/UploadPage_edit.rhtml +8 -8
  72. data/templates/default/views/frame.rhtml +8 -8
  73. data/templates/default/views/messages.yaml +1 -0
  74. data/test/html/2006Mar.html +66 -0
  75. data/test/html/poignant.html +36 -0
  76. data/test/html/poignant.textile +36 -0
  77. data/test/mock-objects.rb +69 -0
  78. data/test/stress_url_calls.rb +33 -0
  79. data/test/stress_urls.txt +68 -0
  80. data/test/test_counter-helper.rb +158 -0
  81. data/test/test_soks-helper-maintenance.rb +106 -0
  82. data/test/test_soks-helpers.rb +104 -0
  83. data/test/test_soks-model.rb +144 -0
  84. data/test/test_soks-servlet.rb +231 -0
  85. data/test/test_soks-storage.rb +70 -31
  86. data/test/test_soks-utils.rb +112 -13
  87. data/test/test_soks-view.rb +141 -3
  88. metadata +38 -27
  89. data/templates/default/content/A%20page%20with%20an%20umlaut%20%F6%20in%20its%20title.textile +0 -1
  90. data/templates/default/content/All%20News.textile +0 -26
  91. data/templates/default/content/Bil%20Kleb.textile +0 -1
  92. data/templates/default/content/Bil.textile +0 -1
  93. data/templates/default/content/Bill%20Wood.textile +0 -3
  94. data/templates/default/content/Bug%3A%20RSS%20feed%20does%20not%20validate.textile +0 -10
  95. data/templates/default/content/Bug%3A%20Type%20a%20title%20here.textile +0 -31
  96. data/templates/default/content/Instructions%20and%20Howtos.textile +0 -21
  97. data/templates/default/content/Latest%20News.textile +0 -26
  98. data/templates/default/content/New%20Recent%20Changes%20class.textile +0 -68
  99. data/templates/default/content/New%20page%20templates%20or%20categories%20code.textile +0 -68
  100. data/templates/default/content/News%3A%20Version%200%2E0%2E6%20Released.textile +0 -13
  101. data/templates/default/content/Recent%20Blog%20Entries.textile +0 -5
  102. data/templates/default/content/Recent%20Changes%20to%20This%20Site.textile +0 -286
  103. data/templates/default/content/Ruby.textile +0 -9
  104. data/templates/default/content/Skorgu.textile +0 -3
  105. data/templates/default/content/ctrl%2Dn.textile +0 -1
  106. data/templates/default/content/let%20me%20know.textile +0 -1
  107. data/templates/default/content/sandbox.textile +0 -20
  108. data/templates/default/content/tamc.textile +0 -1
  109. data/templates/default/content/tamc2.textile +0 -1
@@ -0,0 +1,283 @@
1
+ h2. Recent Changes to This Site
2
+
3
+ An RSS feed of changes to this site is available [[ here => /listrss/recent changes to this site ]]
4
+
5
+ <automaticsummary>
6
+
7
+ <div class='recentchanges'>
8
+
9
+ h2. Today
10
+
11
+ * 14:20 - [[Distribution Home Page]] revised by tamc2 ([[changes => /revision/Distribution Home Page?time=1122229219]])
12
+ * 13:57 - [[News: Version 1-0-0 released]] revised by tamc2 ([[changes => /revision/News: Version 1-0-0 released?time=1122227862]])
13
+ * 13:57 - [[How to upgrade soks]] revised by tamc2 ([[changes => /revision/How to upgrade soks?time=1122227823]])
14
+ * 13:39 - [[List of changes]] revised by tamc2 ([[changes => /revision/List of changes?time=1122226760]])
15
+ * 13:37 - [[News: Next release due, so this site is being edited]] revised by tamc2 ([[changes => /revision/News: Next release due, so this site is being edited?time=1122226630]])
16
+ * 13:32 - [[SOKS features]] revised by tamc2 ([[changes => /revision/SOKS features?time=1122226369]])
17
+ * 13:27 - [[Bug: Pages that link here may not appear on restart]] revised by tamc2 ([[changes => /revision/Bug: Pages that link here may not appear on restart?time=1122226056]])
18
+ * 13:27 - [[vised on 2005 J]] revised by tamc2 ([[changes => /revision/vised on 2005 J?time=1122226041]])
19
+ * 13:18 - [[Tag: Include this page in the distribution]] revised by tamc2 ([[changes => /revision/Tag: Include this page in the distribution?time=1122225508]])
20
+ * 13:17 - [[Bug: Competing edits]] revised by tamc2 ([[changes => /revision/Bug: Competing edits?time=1122225439]])
21
+ * 09:27 - [[Sidebar Page]] revised by tamc2 ([[changes => /revision/Sidebar Page?time=1122211640]])
22
+ * 09:09 - [[Recent changes to this site]] revised by tamc2 ([[changes => /revision/Recent changes to this site?time=1122210575]])
23
+ * 09:00 - [[[Soks] email addresses imported to wiki]] revised by Bil.Kleb@NASA.gov ([[changes => /revision/[Soks] email addresses imported to wiki?time=1122210004]])
24
+ * 09:00 - [[README]] revised by tamc2 ([[changes => /revision/README?time=1122210003]])
25
+ * 08:35 - [[Bug: Memory leak]] revised by tamc2 ([[changes => /revision/Bug: Memory leak?time=1122208534]])
26
+ * 08:35 - [[Bug: Email adresses in page titles cause incorrect links]] revised by tamc2 ([[changes => /revision/Bug: Email adresses in page titles cause incorrect links?time=1122208520]])
27
+ * 08:35 - [[Bug: E-mail addresses with hyphens not recognised]] revised by tamc2 ([[changes => /revision/Bug: E-mail addresses with hyphens not recognised?time=1122208507]])
28
+ * 08:33 - [[Bug: Textile mishandles paragraphs]] revised by tamc2 ([[changes => /revision/Bug: Textile mishandles paragraphs?time=1122208436]])
29
+ * 08:33 - [[Bug: Unanticipated Rollbacks]] revised by tamc2 ([[changes => /revision/Bug: Unanticipated Rollbacks?time=1122208398]])
30
+ * 08:32 - [[Bug: notextile does not prevent page inserts]] revised by tamc2 ([[changes => /revision/Bug: notextile does not prevent page inserts?time=1122208370]])
31
+ * 08:32 - [[Bug: GEM limits title lengths]] revised by tamc2 ([[changes => /revision/Bug: GEM limits title lengths?time=1122208356]])
32
+ * 08:31 - [[Bug: Does not make use of if-modified-since request headers]] revised by tamc2 ([[changes => /revision/Bug: Does not make use of if-modified-since request headers?time=1122208295]])
33
+ * 08:31 - [[How to import data]] revised by tamc2 ([[changes => /revision/How to import data?time=1122208269]])
34
+ * 08:30 - [[How to import data to this wiki]] revised by tamc2 ([[changes => /revision/How to import data to this wiki?time=1122208228]])
35
+ * 08:28 - [[How to password protect your wiki]] revised by tamc2 ([[changes => /revision/How to password protect your wiki?time=1122208126]])
36
+ * 08:23 - [[How to get the latest Soks from cvs]] revised by tamc2 ([[changes => /revision/How to get the latest Soks from cvs?time=1122207828]])
37
+ * 08:21 - [[Bug: Type a title here]] revised by tamc2 ([[changes => /revision/Bug: Type a title here?time=1122207715]])
38
+ * 08:20 - [[How to report a bug]] revised by tamc2 ([[changes => /revision/How to report a bug?time=1122207649]])
39
+ * 08:19 - [[How to use this wiki]] revised by tamc2 ([[changes => /revision/How to use this wiki?time=1122207587]])
40
+ * 08:19 - [[How to use the keyboard shortcuts]] revised by tamc2 ([[changes => /revision/How to use the keyboard shortcuts?time=1122207567]])
41
+ * 08:19 - [[How to install Soks]] revised by tamc2 ([[changes => /revision/How to install Soks?time=1122207554]])
42
+ * 08:18 - [[How to hack soks]] revised by tamc2 ([[changes => /revision/How to hack soks?time=1122207534]])
43
+ * 08:18 - [[How to export a site from this wiki]] revised by tamc2 ([[changes => /revision/How to export a site from this wiki?time=1122207511]])
44
+ * 08:17 - [[How to change the way this wiki looks]] revised by tamc2 ([[changes => /revision/How to change the way this wiki looks?time=1122207465]])
45
+ * 08:17 - [[How to administrate this wiki]] revised by tamc2 ([[changes => /revision/How to administrate this wiki?time=1122207449]])
46
+ * 08:16 - [[Planned Features]] revised by tamc2 ([[changes => /revision/Planned Features?time=1122207405]])
47
+ * 08:16 - [[RSS feed]] revised by tamc2 ([[changes => /revision/RSS feed?time=1122207373]])
48
+ * 08:15 - [[Per Wiki Templates]] revised by tamc2 ([[changes => /revision/Per Wiki Templates?time=1122207327]])
49
+ * 08:15 - [[How to import a site from instiki]] revised by tamc2 ([[changes => /revision/How to import a site from instiki?time=1122207308]])
50
+ * 08:14 - [[Api for classes to modify the wiki]] revised by tamc2 ([[changes => /revision/Api for classes to modify the wiki?time=1122207289]])
51
+ * 08:08 - [[Pages to include in the distribution]] revised by tamc2 ([[changes => /revision/Pages to include in the distribution?time=1122206904]])
52
+ * 07:15 - [[Automatic Summaries]] revised by tamc2 ([[changes => /revision/Automatic Summaries?time=1122203759]])
53
+ * 07:15 - [[Author]] revised by tamc2 ([[changes => /revision/Author?time=1122203732]])
54
+ * 07:15 - [[Soks Licence]] revised by tamc2 ([[changes => /revision/Soks Licence?time=1122203704]])
55
+ * 07:13 - [[Automatic linking between pages]] revised by tamc2 ([[changes => /revision/Automatic linking between pages?time=1122203593]])
56
+ * 06:40 - [[Latest News]] revised by tamc2 ([[changes => /revision/Latest News?time=1122201651]])
57
+ * 05:38 - [[Not a Soks Bug: Sok CVS tar file has "implausibly old time stamp"]] revised by tamc2 ([[changes => /revision/Not a Soks Bug: Sok CVS tar file has "implausibly old time stamp"?time=1122197934]])
58
+ * 05:38 - [[Bug: Sok CVS tar file has "implausibly old time stamp"]] revised by tamc2 ([[changes => /revision/Bug: Sok CVS tar file has "implausibly old time stamp"?time=1122197934]])
59
+ * 05:17 - [[To Do List]] revised by tamc2 ([[changes => /revision/To Do List?time=1122196657]])
60
+
61
+ h2. Yesterday
62
+
63
+ * 18:41 - [[Bug: Memory leak]] revised by tamc2 ([[changes => /revision/Bug: Memory leak?time=1122158464]])
64
+ * 17:25 - [[Fixed Bug: RSS feed does not validate]] revised by tamc2 ([[changes => /revision/Fixed Bug: RSS feed does not validate?time=1122153907]])
65
+ * 17:23 - [[Bug: RSS feed does not validate]] revised by tamc2 ([[changes => /revision/Bug: RSS feed does not validate?time=1122153827]])
66
+ * 17:19 - [[Fixed bug: calendar does not appear]] revised by tamc2 ([[changes => /revision/Fixed bug: calendar does not appear?time=1122153555]])
67
+ * 17:19 - [[bug: calendar does not appear]] revised by tamc2 ([[changes => /revision/bug: calendar does not appear?time=1122153551]])
68
+ * 17:16 - [[Fixed bug: viewing revisions requires authentification]] revised by tamc2 ([[changes => /revision/Fixed bug: viewing revisions requires authentification?time=1122153413]])
69
+ * 17:16 - [[Fixed Bug: automatic linking does not work with trailing punctuation]] revised by tamc2 ([[changes => /revision/Fixed Bug: automatic linking does not work with trailing punctuation?time=1122153411]])
70
+ * 17:16 - [[bug: viewing revisions requires authentification]] revised by tamc2 ([[changes => /revision/bug: viewing revisions requires authentification?time=1122153408]])
71
+ * 17:14 - [[List of changes]] revised by tamc2 ([[changes => /revision/List of changes?time=1122153293]])
72
+ * 17:14 - [[Bug: automatic linking does not work with trailing punctuation]] revised by tamc2 ([[changes => /revision/Bug: automatic linking does not work with trailing punctuation?time=1122153292]])
73
+ * 17:11 - [[Fixed Bug: pages names with single quotes]] revised by tamc2 ([[changes => /revision/Fixed Bug: pages names with single quotes?time=1122153070]])
74
+ * 17:10 - [[Bug: pages names with single quotes]] revised by tamc2 ([[changes => /revision/Bug: pages names with single quotes?time=1122153022]])
75
+ * 12:13 - [[Fixed Bug: Recent changes today can be yesterday]] revised by tamc2 ([[changes => /revision/Fixed Bug: Recent changes today can be yesterday?time=1122135201]])
76
+ * 12:13 - [[Bug: Recent changes today can be yesterday]] revised by tamc2 ([[changes => /revision/Bug: Recent changes today can be yesterday?time=1122135200]])
77
+ * 07:07 - [[Bug: Sok CVS tar file has "implausibly old time stamp"]] revised by Bil.Kleb ([[changes => /revision/Bug: Sok CVS tar file has "implausibly old time stamp"?time=1122116826]])
78
+ * 06:31 - [[Fixed Bug: Print stylesheet does not hide menu or commands]] revised by tamc2 ([[changes => /revision/Fixed Bug: Print stylesheet does not hide menu or commands?time=1122114711]])
79
+ * 06:31 - [[Bug: Print stylesheet does not hide menu or commands]] revised by tamc2 ([[changes => /revision/Bug: Print stylesheet does not hide menu or commands?time=1122114707]])
80
+ * 06:14 - [[Fixed Bug: Cannot change capitalization of a page title]] revised by tamc2 ([[changes => /revision/Fixed Bug: Cannot change capitalization of a page title?time=1122113676]])
81
+ * 06:14 - [[Bug: Cannot change capitalization of a page title]] revised by tamc2 ([[changes => /revision/Bug: Cannot change capitalization of a page title?time=1122113663]])
82
+ * 06:11 - [[Fixed Bug: Template pages should not be moved]] revised by tamc2 ([[changes => /revision/Fixed Bug: Template pages should not be moved?time=1122113488]])
83
+ * 06:11 - [[Bug: Template pages should not be moved]] revised by tamc2 ([[changes => /revision/Bug: Template pages should not be moved?time=1122113487]])
84
+ * 04:37 - [[Fixed Bug: AutomaticPageMover still apears in RecentChanges]] revised by tamc2 ([[changes => /revision/Fixed Bug: AutomaticPageMover still apears in RecentChanges?time=1122107872]])
85
+ * 04:37 - [[Bug: AutomaticPageMover still apears in RecentChanges]] revised by tamc2 ([[changes => /revision/Bug: AutomaticPageMover still apears in RecentChanges?time=1122107865]])
86
+ * 04:35 - [[News: Next release due, so this site is being edited]] revised by tamc2 ([[changes => /revision/News: Next release due, so this site is being edited?time=1122107703]])
87
+
88
+ h2. Last Friday
89
+
90
+ * 12:00 - [[News: Next release due, so this site is being edited]] revised by tamc2 ([[changes => /revision/News: Next release due, so this site is being edited?time=1122048055]])
91
+ * 08:10 - [[To Do List]] revised by tamc2 ([[changes => /revision/To Do List?time=1122034247]])
92
+ * 07:19 - [[List of changes]] revised by Bil Kleb ([[changes => /revision/List of changes?time=1122031181]])
93
+ * 07:01 - [[To Do List]] revised by Bil Kleb ([[changes => /revision/To Do List?time=1122030097]])
94
+ * 06:43 - [[Planned Features]] revised by Bil Kleb ([[changes => /revision/Planned Features?time=1122029002]])
95
+
96
+ h2. Last Thursday
97
+
98
+ * 18:01 - [[[Soks] Sub wikis]] revised by Tom Counsell ([[changes => /revision/[Soks] Sub wikis?time=1121983315]])
99
+
100
+ h2. 07 Jul
101
+
102
+ * 17:35 - [[WG: Delivery Status Notification (Failure)]] revised by tamc2 ([[changes => /revision/WG: Delivery Status Notification (Failure)?time=1120772158]])
103
+
104
+ h2. 05 Jul
105
+
106
+ * 13:31 - [[[Fwd: NASA Half-summer of Code]]] revised by tamc2 ([[changes => /revision/[Fwd: NASA Half-summer of Code]?time=1120584716]])
107
+ * 12:00 - [[[Fwd: NASA Half-summer of Code]]] revised by Bil Kleb ([[changes => /revision/[Fwd: NASA Half-summer of Code]?time=1120579235]])
108
+ * 09:03 - [[Information regarding the registration of SOKS.ORG]] revised by tamc2 ([[changes => /revision/Information regarding the registration of SOKS.ORG?time=1120568610]])
109
+
110
+ h2. 02 Jul
111
+
112
+ * 17:09 - [[Recent changes to this site]] revised by tamc2 ([[changes => /revision/Recent changes to this site?time=1120338554]])
113
+
114
+ h2. 30 Jun
115
+
116
+ * 09:02 - [[Bug: Memory leak]] revised by tamc2 ([[changes => /revision/Bug: Memory leak?time=1120136531]])
117
+ * 05:44 - [[News: Version numbering system change]] revised by tamc2 ([[changes => /revision/News: Version numbering system change?time=1120124675]])
118
+ * 05:37 - [[Planned Features]] revised by tamc2 ([[changes => /revision/Planned Features?time=1120124230]])
119
+ * 05:30 - [[List of changes]] revised by tamc2 ([[changes => /revision/List of changes?time=1120123835]])
120
+ * 05:19 - [[To Do List]] revised by tamc2 ([[changes => /revision/To Do List?time=1120123170]])
121
+
122
+ h2. 28 Jun
123
+
124
+ * 17:47 - [[To Do List]] revised by tamc2 ([[changes => /revision/To Do List?time=1119995234]])
125
+ * 17:43 - [[List of changes]] revised by tamc2 ([[changes => /revision/List of changes?time=1119994999]])
126
+
127
+ h2. 13 Jun
128
+
129
+ * 09:20 - [[[Soks] soks site down]] revised by Bil Kleb ([[changes => /revision/[Soks] soks site down?time=1118668836]])
130
+
131
+ h2. 09 Jun
132
+
133
+ * 20:24 - [[Important Information Regarding Your Purchase]] revised by tamc2 ([[changes => /revision/Important Information Regarding Your Purchase?time=1118363070]])
134
+ * 19:54 - [[[Soks] [Fwd: Re: [ redcloth-Bugs-1640 ] email addresses with a '-' in the adressee are not linked properly to a 'mailto:first-second@somewhere.com']]] revised by tamc2 ([[changes => /revision/[Soks] [Fwd: Re: [ redcloth-Bugs-1640 ] email addresses with a '-' in the adressee are not linked properly to a 'mailto:first-second@somewhere.com']?time=1118361290]])
135
+ * 19:50 - [[To Do List]] revised by tamc2 ([[changes => /revision/To Do List?time=1118361026]])
136
+ * 19:43 - [[Bug: Email adresses in page titles cause incorrect links]] revised by tamc2 ([[changes => /revision/Bug: Email adresses in page titles cause incorrect links?time=1118360638]])
137
+ * 19:38 - [[[Soks] [Fwd: Re: [ redcloth-Bugs-1640 ] email addresses with a]] revised by tamc2 ([[changes => /revision/[Soks] [Fwd: Re: [ redcloth-Bugs-1640 ] email addresses with a?time=1118360309]])
138
+ * 19:38 - [[[Soks] [Fwd: Re: [ redcloth-Bugs-1640 ] email addresses with a '-' in the adressee are not linked properly to a 'mailto:first-second@somewhere.com']]] revised by tamc2 ([[changes => /revision/[Soks] [Fwd: Re: [ redcloth-Bugs-1640 ] email addresses with a '-' in the adressee are not linked properly to a 'mailto:first-second@somewhere.com']?time=1118360301]])
139
+ * 19:02 - [[[Soks] soks site down]] revised by Bil.Kleb@NASA.gov ([[changes => /revision/[Soks] soks site down?time=1118358120]])
140
+ * 19:01 - [[[Soks] [Fwd: Re: [ redcloth-Bugs-1640 ] email addresses with a '-' in the adressee are not linked properly to a 'mailto:first-second@somewhere.com']]] revised by Tom Counsell ([[changes => /revision/[Soks] [Fwd: Re: [ redcloth-Bugs-1640 ] email addresses with a '-' in the adressee are not linked properly to a 'mailto:first-second@somewhere.com']?time=1118358093]])
141
+ * 19:01 - [[[Soks] [Fwd: Re: [ redcloth-Bugs-1640 ] email addresses with a '-' in the adressee are not linked properly to a 'mailto:first-second@somewhere.com']]] revised by Bil.Kleb@NASA.gov ([[changes => /revision/[Soks] [Fwd: Re: [ redcloth-Bugs-1640 ] email addresses with a '-' in the adressee are not linked properly to a 'mailto:first-second@somewhere.com']?time=1118358083]])
142
+
143
+ h2. 26 May
144
+
145
+ * 10:29 - [[Bug: E-mail addresses with hyphens not recognised]] revised by tamc2 ([[changes => /revision/Bug: E-mail addresses with hyphens not recognised?time=1117117777]])
146
+ * 07:17 - [[Latest News]] revised by tamc2 ([[changes => /revision/Latest News?time=1117106257]])
147
+ * 05:59 - [[To Do List]] revised by tamc2 ([[changes => /revision/To Do List?time=1117101543]])
148
+
149
+ h2. 24 May
150
+
151
+ * 12:24 - [[Ruby wiki reccomendation]] revised by tamc2 ([[changes => /revision/Ruby wiki reccomendation?time=1116951887]])
152
+ * 12:01 - [[Ruby wiki reccomendation]] revised by Ara.T.Howard ([[changes => /revision/Ruby wiki reccomendation?time=1116950464]])
153
+
154
+ h2. 23 May
155
+
156
+ * 15:44 - [[To Do List]] revised by tamc2 ([[changes => /revision/To Do List?time=1116877466]])
157
+ * 15:30 - [[AHoward]] revised by tamc2 ([[changes => /revision/AHoward?time=1116876606]])
158
+ * 10:37 - [[AHoward]] revised by ahoward ([[changes => /revision/AHoward?time=1116859065]])
159
+ * 10:36 - [[Picture of hh.jpg]] revised by ahoward ([[changes => /revision/Picture of hh.jpg?time=1116858975]])
160
+ * 03:11 - [[Recent changes to this site]] revised by tamc2 ([[changes => /revision/Recent changes to this site?time=1116832318]])
161
+
162
+ h2. 22 May
163
+
164
+ * 18:05 - [[To Do List]] revised by tamc2 ([[changes => /revision/To Do List?time=1116799525]])
165
+ * 17:59 - [[[Soks] home page counter]] revised by tamc2 ([[changes => /revision/[Soks] home page counter?time=1116799170]])
166
+ * 15:00 - [[Status Alert: Domain Change Notification]] revised by tamc2 ([[changes => /revision/Status Alert: Domain Change Notification?time=1116788446]])
167
+ * 14:57 - [[[Soks] bug in time units]] revised by Bil.Kleb@NASA.gov ([[changes => /revision/[Soks] bug in time units?time=1116788246]])
168
+ * 14:57 - [[[Soks] Some counter thoughts]] revised by Bil.Kleb@nasa.gov ([[changes => /revision/[Soks] Some counter thoughts?time=1116788243]])
169
+ * 14:57 - [[[Soks] www.soks.org proxy error]] revised by Bil.Kleb@nasa.gov ([[changes => /revision/[Soks] www.soks.org proxy error?time=1116788242]])
170
+ * 14:57 - [[[ANN] Defaultable 0.0.3]] revised by John W. Long ([[changes => /revision/[ANN] Defaultable 0.0.3?time=1116788241]])
171
+ * 14:57 - [[Days in month]] revised by Ara.T.Howard@noaa.gov ([[changes => /revision/Days in month?time=1116788239]])
172
+ * 14:57 - [[[Soks] Editing CSS through browser]] revised by Bil.Kleb@NASA.gov ([[changes => /revision/[Soks] Editing CSS through browser?time=1116788237]])
173
+ * 14:57 - [[[Soks] Popular pages default refresh rate]] revised by Bil Kleb ([[changes => /revision/[Soks] Popular pages default refresh rate?time=1116788236]])
174
+ * 14:57 - [[[Soks] RSS feed of recent changes]] revised by Bil.Kleb@NASA.gov ([[changes => /revision/[Soks] RSS feed of recent changes?time=1116788235]])
175
+ * 14:57 - [[[Soks] Parentheses]] revised by Bil.Kleb@NASA.gov ([[changes => /revision/[Soks] Parentheses?time=1116788234]])
176
+ * 14:57 - [[[Soks] home page counter]] revised by Bil.Kleb@NASA.gov ([[changes => /revision/[Soks] home page counter?time=1116788232]])
177
+ * 14:57 - [[[Soks] automatic summaries and page expiration dates]] revised by Bil.Kleb@NASA.gov ([[changes => /revision/[Soks] automatic summaries and page expiration dates?time=1116788229]])
178
+ * 14:57 - [[[Soks] editing Automatic Summary pages]] revised by Bil.Kleb@NASA.gov ([[changes => /revision/[Soks] editing Automatic Summary pages?time=1116788228]])
179
+ * 14:57 - [[[Soks] upload filesize limit?]] revised by Bil.Kleb@NASA.gov ([[changes => /revision/[Soks] upload filesize limit??time=1116788227]])
180
+ * 14:57 - [[[Soks] AutomaticSummary :lines_to_show]] revised by Bil.Kleb@NASA.gov ([[changes => /revision/[Soks] AutomaticSummary :lines_to_show?time=1116788226]])
181
+ * 14:57 - [[Soks Stylesheet]] revised by Fredrik Wartenberg (LN/EAB) ([[changes => /revision/Soks Stylesheet?time=1116788223]])
182
+ * 14:57 - [[[Soks] Recent Changes revisions: 404]] revised by Bil.Kleb@NASA.gov ([[changes => /revision/[Soks] Recent Changes revisions: 404?time=1116788220]])
183
+ * 14:56 - [[Rich media viewing in Soks Wiki?]] revised by Victor Ng-Thow-Hing ([[changes => /revision/Rich media viewing in Soks Wiki??time=1116788216]])
184
+ * 14:56 - [[paragraphs and explicit linebreaks]] revised by Martin DeMello ([[changes => /revision/paragraphs and explicit linebreaks?time=1116788215]])
185
+ * 14:56 - [[May I use your Redcloth ToC code]] revised by Guillaume Marcais ([[changes => /revision/May I use your Redcloth ToC code?time=1116788214]])
186
+ * 14:56 - [[Wikis]] revised by Barry Dmytro ([[changes => /revision/Wikis?time=1116788212]])
187
+ * 14:56 - [[Test-first (was Re: [Soks] Dynamic menu)]] revised by Bil Kleb ([[changes => /revision/Test-first (was Re: [Soks] Dynamic menu)?time=1116788211]])
188
+ * 14:56 - [[Soks...]] revised by Sebastien Clediere ([[changes => /revision/Soks...?time=1116788208]])
189
+ * 14:56 - [[[Soks] calendar feature]] revised by Bil Kleb ([[changes => /revision/[Soks] calendar feature?time=1116788205]])
190
+ * 14:56 - [[[Soks] Recent changes: "Today"]] revised by Tom Counsell ([[changes => /revision/[Soks] Recent changes: "Today"?time=1116788205]])
191
+ * 14:56 - [[print_stylesheet.css]] revised by =?ISO-8859-1?Q?Pavel_S=FDkora?= ([[changes => /revision/print_stylesheet.css?time=1116788203]])
192
+ * 14:56 - [[[Soks] page counters, etc.]] revised by Tom Counsell ([[changes => /revision/[Soks] page counters, etc.?time=1116788201]])
193
+ * 14:56 - [[[Soks] downcasing page names]] revised by Tom Counsell ([[changes => /revision/[Soks] downcasing page names?time=1116788198]])
194
+ * 14:56 - [[[Soks] Re: Eeek !]] revised by Bil Kleb ([[changes => /revision/[Soks] Re: Eeek !?time=1116788197]])
195
+ * 14:56 - [[[Soks] (no subject)]] revised by Bil.Kleb@nasa.gov ([[changes => /revision/[Soks] (no subject)?time=1116788195]])
196
+ * 14:56 - [[[Soks] [Fwd: *cloth and ToC]]] revised by Bil Kleb ([[changes => /revision/[Soks] [Fwd: *cloth and ToC]?time=1116788193]])
197
+ * 14:56 - [[[Soks] Soks speed]] revised by Tom Counsell ([[changes => /revision/[Soks] Soks speed?time=1116788189]])
198
+ * 14:56 - [[[Soks] non-greedy regexps in automatic summary]] revised by Bil Kleb ([[changes => /revision/[Soks] non-greedy regexps in automatic summary?time=1116788187]])
199
+ * 14:56 - [[[Soks] Q: how to I change the default "home page" for WEBrick?]] revised by Bil Kleb ([[changes => /revision/[Soks] Q: how to I change the default "home page" for WEBrick??time=1116788183]])
200
+ * 14:56 - [[[Soks] Annotations]] revised by Bil Kleb ([[changes => /revision/[Soks] Annotations?time=1116788182]])
201
+ * 14:56 - [[[Soks] Trouble adding new page]] revised by Bil Kleb ([[changes => /revision/[Soks] Trouble adding new page?time=1116788174]])
202
+ * 14:56 - [[[Soks] feature descriptions]] revised by Bil Kleb ([[changes => /revision/[Soks] feature descriptions?time=1116788171]])
203
+ * 14:56 - [[Soks stopping problem.]] revised by Sebastien Clediere ([[changes => /revision/Soks stopping problem.?time=1116788170]])
204
+ * 14:56 - [[[Soks] [Fwd: Another neat Soks Wiki thing]]] revised by Bil Kleb ([[changes => /revision/[Soks] [Fwd: Another neat Soks Wiki thing]?time=1116788169]])
205
+ * 14:56 - [[[Soks] unanticipated rollbacks]] revised by Bil Kleb ([[changes => /revision/[Soks] unanticipated rollbacks?time=1116788166]])
206
+ * 14:56 - [[[Soks] page templates/categories]] revised by Bil Kleb ([[changes => /revision/[Soks] page templates/categories?time=1116788163]])
207
+ * 14:55 - [[[Soks] compressing and filtering Recent Changes]] revised by Bil Kleb ([[changes => /revision/[Soks] compressing and filtering Recent Changes?time=1116788159]])
208
+ * 14:55 - [[[Soks] User reaction: edit page button/link mixture]] revised by Bil Kleb ([[changes => /revision/[Soks] User reaction: edit page button/link mixture?time=1116788157]])
209
+ * 14:55 - [[[Soks] Dynamic menu]] revised by Bil Kleb ([[changes => /revision/[Soks] Dynamic menu?time=1116788152]])
210
+ * 14:55 - [[A few customer reactions (was Re: [Soks] Re: [Fwd: Soks rocks])]] revised by Bil Kleb ([[changes => /revision/A few customer reactions (was Re: [Soks] Re: [Fwd: Soks rocks])?time=1116788149]])
211
+ * 14:55 - [[[Soks] Dynamic menu (was Re: A few customer reactions)]] revised by Tom Counsell ([[changes => /revision/[Soks] Dynamic menu (was Re: A few customer reactions)?time=1116788146]])
212
+ * 14:55 - [[[Soks] Searching attached files]] revised by Tom Counsell ([[changes => /revision/[Soks] Searching attached files?time=1116788143]])
213
+ * 14:55 - [[[Soks] [Fwd: Re: Soks rocks (but now need "deep" search capability)]]] revised by Bil Kleb ([[changes => /revision/[Soks] [Fwd: Re: Soks rocks (but now need "deep" search capability)]?time=1116788142]])
214
+ * 14:55 - [[WG: Delivery Status Notification (Failure)]] revised by Uwe Kallmeyer ([[changes => /revision/WG: Delivery Status Notification (Failure)?time=1116788139]])
215
+ * 14:55 - [[[Soks] Rounding error?]] revised by Bil Kleb ([[changes => /revision/[Soks] Rounding error??time=1116788138]])
216
+ * 14:55 - [[[Soks] Soks-0.0.5: RecentChanges ignoring 'changes' argument?]] revised by Bil Kleb ([[changes => /revision/[Soks] Soks-0.0.5: RecentChanges ignoring 'changes' argument??time=1116788137]])
217
+ * 14:55 - [[Soks 0.0.5 feedback...]] revised by Sebastien Clediere ([[changes => /revision/Soks 0.0.5 feedback...?time=1116788135]])
218
+ * 14:55 - [[[Fwd: Soks rocks]]] revised by Bil Kleb ([[changes => /revision/[Fwd: Soks rocks]?time=1116788134]])
219
+ * 14:55 - [[[Soks] Re: [Fwd: Soks rocks]]] revised by Bil Kleb ([[changes => /revision/[Soks] Re: [Fwd: Soks rocks]?time=1116788131]])
220
+ * 14:55 - [[[Soks] Linking to attached files]] revised by Bil Kleb ([[changes => /revision/[Soks] Linking to attached files?time=1116788129]])
221
+ * 14:55 - [[Feedback]] revised by Remy Drouilhet ([[changes => /revision/Feedback?time=1116788127]])
222
+ * 14:55 - [[Status Alert: Domain Change Notification]] revised by support@godaddy.com ([[changes => /revision/Status Alert: Domain Change Notification?time=1116788124]])
223
+ * 14:55 - [[Information regarding the registration of SOKS.ORG]] revised by support@godaddy.com ([[changes => /revision/Information regarding the registration of SOKS.ORG?time=1116788122]])
224
+ * 14:55 - [[Important Information Regarding Your Purchase]] revised by service@godaddy.com ([[changes => /revision/Important Information Regarding Your Purchase?time=1116788119]])
225
+ * 14:55 - [[GoDaddy.com Order Confirmation]] revised by sales@godaddy.com ([[changes => /revision/GoDaddy.com Order Confirmation?time=1116788114]])
226
+ * 14:55 - [[AW: soks vs. instiki]] revised by Uwe Kallmeyer ([[changes => /revision/AW: soks vs. instiki?time=1116788112]])
227
+ * 14:55 - [[Soks v-0-0-5 released]] revised by Thomas Counsell ([[changes => /revision/Soks v-0-0-5 released?time=1116788111]])
228
+ * 14:55 - [[soks vs. instiki]] revised by Uwe Kallmeyer ([[changes => /revision/soks vs. instiki?time=1116788110]])
229
+ * 14:55 - [[[Soks] [ANN] Soks v-0-0-5]] revised by Thomas Counsell ([[changes => /revision/[Soks] [ANN] Soks v-0-0-5?time=1116788109]])
230
+ * 14:55 - [[What's the best way to write a Textile-to-PDF::Writer converter?]] revised by Austin Ziegler ([[changes => /revision/What's the best way to write a Textile-to-PDF::Writer converter??time=1116788100]])
231
+ * 14:55 - [[Why "pre" AND "code" tags in Textile Markup?]] revised by Andreas Semt ([[changes => /revision/Why "pre" AND "code" tags in Textile Markup??time=1116788100]])
232
+ * 14:54 - [[Try Ruwiki, too (Re: [ANN] Soks - Yet Another Wiki)]] revised by James Britt ([[changes => /revision/Try Ruwiki, too (Re: [ANN] Soks - Yet Another Wiki)?time=1116788084]])
233
+ * 14:54 - [[RubyForge New Mailing List]] revised by admin@rubyforge.org ([[changes => /revision/RubyForge New Mailing List?time=1116788071]])
234
+ * 14:54 - [[[ANN] Soks - Yet Another Wiki]] revised by Marcel Molina Jr. ([[changes => /revision/[ANN] Soks - Yet Another Wiki?time=1116788070]])
235
+ * 14:54 - [[Soks correction for windows...]] revised by Seb ([[changes => /revision/Soks correction for windows...?time=1116788068]])
236
+ * 14:54 - [[Soks - Yet Another Wiki]] revised by Alexey Verkhovsky ([[changes => /revision/Soks - Yet Another Wiki?time=1116788067]])
237
+ * 14:54 - [[Ugly Page URLs in Soks]] revised by Gavri Fernandez ([[changes => /revision/Ugly Page URLs in Soks?time=1116788066]])
238
+ * 14:54 - [[Fixed bug: automatic link links to stuff inside html tags]] revised by the import script ([[changes => /revision/Fixed bug: automatic link links to stuff inside html tags?time=1116788047]])
239
+ * 11:11 - [[List of changes]] revised by tamc2 ([[changes => /revision/List of changes?time=1116774686]])
240
+
241
+ h2. 21 May
242
+
243
+ * 15:54 - [[Test Page]] revised by tamc2 ([[changes => /revision/Test Page?time=1116705256]])
244
+ * 15:46 - [[Test Page]] revised by tester ([[changes => /revision/Test Page?time=1116704760]])
245
+ * 15:40 - [[TestAPage]] revised by tester ([[changes => /revision/TestAPage?time=1116704457]])
246
+
247
+ h2. 20 May
248
+
249
+ * 15:32 - [[testo]] revised by britt ([[changes => /revision/testo?time=1116617523]])
250
+
251
+ h2. 19 May
252
+
253
+ * 14:44 - [[To Do List]] revised by tamc2 ([[changes => /revision/To Do List?time=1116528244]])
254
+ * 14:43 - [[Type a title here]] revised by tamc2 ([[changes => /revision/Type a title here?time=1116528183]])
255
+
256
+ h2. 17 May
257
+
258
+ * 20:49 - [[To Do List]] revised by tamc2 ([[changes => /revision/To Do List?time=1116377378]])
259
+ * 20:48 - [[List of changes]] revised by tamc2 ([[changes => /revision/List of changes?time=1116377296]])
260
+
261
+ h2. 16 May
262
+
263
+ * 05:42 - [[To Do List]] revised by tamc2 ([[changes => /revision/To Do List?time=1116236521]])
264
+
265
+ h2. 15 May
266
+
267
+ * 08:11 - [[List of changes]] revised by tamc2 ([[changes => /revision/List of changes?time=1116159103]])
268
+
269
+ h2. 14 May
270
+
271
+ * 13:44 - [[To Do List]] revised by tamc2 ([[changes => /revision/To Do List?time=1116092662]])
272
+
273
+ h2. 05 May
274
+
275
+ * 18:44 - [[To Do List]] revised by tamc2 ([[changes => /revision/To Do List?time=1115333083]])
276
+ * 17:45 - [[List of changes]] revised by tamc2 ([[changes => /revision/List of changes?time=1115329528]])
277
+
278
+
279
+ </div>
280
+
281
+ </automaticsummary>
282
+
283
+ Tag: Include this page in the distribution
@@ -15,3 +15,6 @@ p{font-size: x-small;}. Soks Features is a separate page that has been inserted
15
15
  * RSS feed for changes to any page
16
16
 
17
17
  See also: planned features and list of changes
18
+
19
+ p{display:none;}. Tag: Include this page in the distribution
20
+
@@ -0,0 +1,202 @@
1
+ h2. Site Index
2
+
3
+ p{font-size: x-small;}. Site Index was created automatically from pages whose title matches /.*/.
4
+
5
+ <automaticsummary>
6
+
7
+ * [[ 2005 Apr ]]
8
+ * [[ [ANN] Defaultable 0.0.3 ]]
9
+ * [[ [ANN] Soks - Yet Another Wiki ]]
10
+ * [[ [Fwd: NASA Half-summer of Code] ]]
11
+ * [[ [Fwd: Soks rocks] ]]
12
+ * [[ [Soks] (no subject) ]]
13
+ * [[ [Soks] [ANN] Soks v-0-0-5 ]]
14
+ * [[ [Soks] [Fwd: *cloth and ToC] ]]
15
+ * [[ [Soks] [Fwd: Another neat Soks Wiki thing] ]]
16
+ * [[ [Soks] [Fwd: Re: [ redcloth-Bugs-1640 ] email addresses with a ]]
17
+ * [[ [Soks] [Fwd: Re: Soks rocks (but now need "deep" search capability)] ]]
18
+ * [[ [Soks] Annotations ]]
19
+ * [[ [Soks] automatic summaries and page expiration dates ]]
20
+ * [[ [Soks] AutomaticSummary :lines_to_show ]]
21
+ * [[ [Soks] bug in time units ]]
22
+ * [[ [Soks] calendar feature ]]
23
+ * [[ [Soks] compressing and filtering Recent Changes ]]
24
+ * [[ [Soks] downcasing page names ]]
25
+ * [[ [Soks] Dynamic menu ]]
26
+ * [[ [Soks] Dynamic menu (was Re: A few customer reactions) ]]
27
+ * [[ [Soks] editing Automatic Summary pages ]]
28
+ * [[ [Soks] Editing CSS through browser ]]
29
+ * [[ [Soks] email addresses imported to wiki ]]
30
+ * [[ [Soks] feature descriptions ]]
31
+ * [[ [Soks] home page counter ]]
32
+ * [[ [Soks] Linking to attached files ]]
33
+ * [[ [Soks] non-greedy regexps in automatic summary ]]
34
+ * [[ [Soks] page counters, etc. ]]
35
+ * [[ [Soks] page templates/categories ]]
36
+ * [[ [Soks] Parentheses ]]
37
+ * [[ [Soks] Popular pages default refresh rate ]]
38
+ * [[ [Soks] Q: how to I change the default "home page" for WEBrick? ]]
39
+ * [[ [Soks] Re: [Fwd: Soks rocks] ]]
40
+ * [[ [Soks] Re: Eeek ! ]]
41
+ * [[ [Soks] Recent Changes revisions: 404 ]]
42
+ * [[ [Soks] Recent changes: "Today" ]]
43
+ * [[ [Soks] Rounding error? ]]
44
+ * [[ [Soks] RSS feed of recent changes ]]
45
+ * [[ [Soks] Searching attached files ]]
46
+ * [[ [Soks] soks site down ]]
47
+ * [[ [Soks] Soks speed ]]
48
+ * [[ [Soks] Soks-0.0.5: RecentChanges ignoring 'changes' argument? ]]
49
+ * [[ [Soks] Some counter thoughts ]]
50
+ * [[ [Soks] Sub wikis ]]
51
+ * [[ [Soks] Trouble adding new page ]]
52
+ * [[ [Soks] unanticipated rollbacks ]]
53
+ * [[ [Soks] upload filesize limit? ]]
54
+ * [[ [Soks] User reaction: edit page button/link mixture ]]
55
+ * [[ [Soks] www.soks.org proxy error ]]
56
+ * [[ A few customer reactions (was Re: [Soks] Re: [Fwd: Soks rocks]) ]]
57
+ * [[ Picture of a logo for the ruby language ]]
58
+ * [[ A page with an umlaut � in its title ]]
59
+ * [[ Picture of a pair of soks ]]
60
+ * [[ AHoward ]]
61
+ * [[ All News ]]
62
+ * [[ Api for classes to modify the wiki ]]
63
+ * [[ Author ]]
64
+ * [[ Automatic linking between pages ]]
65
+ * [[ Automatic Summaries ]]
66
+ * [[ AW: soks vs. instiki ]]
67
+ * [[ Picture of bad_buttons_bad ]]
68
+ * [[ Picture of bad_buttons_better ]]
69
+ * [[ Bil ]]
70
+ * [[ Bil Kleb ]]
71
+ * [[ Bill Wood ]]
72
+ * [[ Bug: Competing edits ]]
73
+ * [[ Bug: Does not make use of if-modified-since request headers ]]
74
+ * [[ Bug: E-mail addresses with hyphens not recognised ]]
75
+ * [[ Bug: Email adresses in page titles cause incorrect links ]]
76
+ * [[ Bug: GEM limits title lengths ]]
77
+ * [[ Bug: Memory leak ]]
78
+ * [[ Bug: notextile does not prevent page inserts ]]
79
+ * [[ Bug: Pages that link here may not appear on restart ]]
80
+ * [[ Bug: Textile mishandles paragraphs ]]
81
+ * [[ Bug: Type a title here ]]
82
+ * [[ Bug: Unanticipated Rollbacks ]]
83
+ * [[ ctrl-n ]]
84
+ * [[ Days in month ]]
85
+ * [[ del.icio.us/tag/ruby :: ::ruby ]]
86
+ * [[ Distribution Home Page ]]
87
+ * [[ Feedback ]]
88
+ * [[ Fixed Bug: ampersand in page name creates missing links that work ]]
89
+ * [[ Fixed Bug: automatic linking does not work with trailing punctuation ]]
90
+ * [[ Fixed Bug: AutomaticPageMover still apears in RecentChanges ]]
91
+ * [[ Fixed Bug: AutomaticRecentChanges ignores changes parameter ]]
92
+ * [[ Fixed bug: calendar does not appear ]]
93
+ * [[ Fixed Bug: Cannot change capitalization of a page title ]]
94
+ * [[ Fixed Bug: Certain text crashes yaml revision loading ]]
95
+ * [[ Fixed Bug: Do not save and delete links confusing on edit page ]]
96
+ * [[ Fixed Bug: Duplicate links-to a page sometimes appear ]]
97
+ * [[ Fixed Bug: External links incorrectly include trailing punctuation ]]
98
+ * [[ Fixed Bug: FATAL When renaming upload picture pages ]]
99
+ * [[ Fixed Bug: Forward slashes in titles problematic ]]
100
+ * [[ Fixed Bug: Halting can corrupt revisions ]]
101
+ * [[ Fixed Bug: In a list of links, the last link is sometimes not linked ]]
102
+ * [[ Fixed Bug: Inserted pages are not refreshed when new autolinks are made ]]
103
+ * [[ Fixed Bug: Internet Exploror 6.0 incompatibilities during page edits ]]
104
+ * [[ Fixed Bug: LinuxFirefox1.0 scroll reset after cursor move ]]
105
+ * [[ Fixed Bug: Matching page titles in middle of words ]]
106
+ * [[ Fixed Bug: No robots.txt or favicon.ico ]]
107
+ * [[ Fixed Bug: no superclass method _deprecated_base64 ]]
108
+ * [[ Fixed Bug: pages names with single quotes ]]
109
+ * [[ Fixed Bug: Pictures and Attachments linked to site root ]]
110
+ * [[ Fixed Bug: Print stylesheet does not hide menu or commands ]]
111
+ * [[ Fixed Bug: Punctuation in page titles still problematic ]]
112
+ * [[ Fixed Bug: Recent changes today can be yesterday ]]
113
+ * [[ Fixed Bug: RSS feed does not validate ]]
114
+ * [[ Fixed Bug: RSS feed shows oldest 15 revisions (not newest!) ]]
115
+ * [[ Fixed Bug: Search box width does not match column width ]]
116
+ * [[ Fixed Bug: Search includes leading and trailing spaces ]]
117
+ * [[ Fixed Bug: Search textarea and button rendered without vertical separation ]]
118
+ * [[ Fixed Bug: Symbols are not always correctly rendered in html ]]
119
+ * [[ Fixed Bug: Template pages should not be moved ]]
120
+ * [[ Fixed Bug: Time per change on meta page view incorrect ]]
121
+ * [[ Fixed bug: trailing spaces in page names ]]
122
+ * [[ Fixed Bug: Update frequency rounds inappropriately in meta view ]]
123
+ * [[ Fixed Bug: Upload filenames needlessly mangled ]]
124
+ * [[ Fixed Bug: Uploads are not password protected ]]
125
+ * [[ Fixed bug: viewing revisions requires authentification ]]
126
+ * [[ GoDaddy.com Order Confirmation ]]
127
+ * [[ Picture of hh.jpg ]]
128
+ * [[ home page ]]
129
+ * [[ How to add movies, svg, flash and other embedded objects ]]
130
+ * [[ How to administrate this wiki ]]
131
+ * [[ How to change the way this wiki looks ]]
132
+ * [[ How to export a site from this wiki ]]
133
+ * [[ How to get the latest Soks from cvs ]]
134
+ * [[ How to hack soks ]]
135
+ * [[ How to import a site from instiki ]]
136
+ * [[ How to import data ]]
137
+ * [[ How to install Soks ]]
138
+ * [[ How to password protect your wiki ]]
139
+ * [[ How to report a bug ]]
140
+ * [[ How to upgrade soks ]]
141
+ * [[ How to use the keyboard shortcuts ]]
142
+ * [[ How to use this wiki ]]
143
+ * [[ Instructions and Howtos ]]
144
+ * [[ Known bugs ]]
145
+ * [[ L'equipe ]]
146
+ * [[ Latest News ]]
147
+ * [[ let me know ]]
148
+ * [[ List of changes ]]
149
+ * [[ list of changes for older versions ]]
150
+ * [[ May I use your Redcloth ToC code ]]
151
+ * [[ New page templates or categories code ]]
152
+ * [[ New Recent Changes class ]]
153
+ * [[ News: Next release due, so this site is being edited ]]
154
+ * [[ News: Version 0.0.6 Released ]]
155
+ * [[ News: Version 0.0.7 Released ]]
156
+ * [[ News: Version 1-0-0 released ]]
157
+ * [[ News: Version numbering system change ]]
158
+ * [[ Not a Soks Bug: Sok CVS tar file has "implausibly old time stamp" ]]
159
+ * [[ Pages to include in the distribution ]]
160
+ * [[ paragraphs and explicit linebreaks ]]
161
+ * [[ Per Wiki Templates ]]
162
+ * [[ Planned Features ]]
163
+ * [[ print_stylesheet.css ]]
164
+ * [[ README ]]
165
+ * [[ Recent Blog Entries ]]
166
+ * [[ Recent changes to this site ]]
167
+ * [[ Rich media viewing in Soks Wiki? ]]
168
+ * [[ RSS feed ]]
169
+ * [[ Ruby ]]
170
+ * [[ Ruby wiki reccomendation ]]
171
+ * [[ RubyForge New Mailing List ]]
172
+ * [[ sandbox ]]
173
+ * [[ Picture of search box rendering ]]
174
+ * [[ Sidebar Page ]]
175
+ * [[ Skorgu ]]
176
+ * [[ Soks - Yet Another Wiki ]]
177
+ * [[ Soks 0.0.5 feedback... ]]
178
+ * [[ Soks correction for windows... ]]
179
+ * [[ SOKS features ]]
180
+ * [[ Soks Licence ]]
181
+ * [[ Soks stopping problem. ]]
182
+ * [[ Soks Stylesheet ]]
183
+ * [[ Soks v-0-0-5 released ]]
184
+ * [[ soks vs. instiki ]]
185
+ * [[ Soks... ]]
186
+ * [[ SoksSpace ]]
187
+ * [[ Tag: Include this page in the distribution ]]
188
+ * [[ tamc ]]
189
+ * [[ tamc2 ]]
190
+ * [[ Test Page ]]
191
+ * [[ Test-first (was Re: [Soks] Dynamic menu) ]]
192
+ * [[ testo ]]
193
+ * [[ To Do List ]]
194
+ * [[ Try Ruwiki, too (Re: [ANN] Soks - Yet Another Wiki) ]]
195
+ * [[ Type a title here ]]
196
+ * [[ Ugly Page URLs in Soks ]]
197
+ * [[ What's the best way to write a Textile-to-PDF::Writer converter? ]]
198
+ * [[ Why "pre" AND "code" tags in Textile Markup? ]]
199
+ * [[ Wikis ]]
200
+
201
+
202
+ </automaticsummary>