Soks 0.0.5 → 0.0.6

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 (284) hide show
  1. data/README.txt +14 -4
  2. data/bin/soks-create-wiki.rb +2 -2
  3. data/contrib/redcloth-3.0.3.rb +0 -1
  4. data/lib/helpers/default-helpers.rb +13 -12
  5. data/lib/helpers/mail2wiki-helper.rb +12 -7
  6. data/lib/helpers/mail2wiki-test.rb +15 -0
  7. data/lib/helpers/wiki2html.rb +60 -0
  8. data/lib/soks-drb.rb +20 -0
  9. data/lib/soks-fcgi.rb +127 -0
  10. data/lib/soks-model.rb +11 -3
  11. data/lib/soks-servlet.rb +68 -45
  12. data/lib/soks-storage.rb +11 -3
  13. data/lib/soks-utils.rb +32 -3
  14. data/lib/soks-view.rb +48 -69
  15. data/lib/soks.rb +6 -3
  16. data/templates/default/attachment/blank.gif +0 -0
  17. data/templates/default/attachment/logo.jpg +0 -0
  18. data/templates/default/attachment/newpage.js +9 -0
  19. data/templates/default/attachment/pngbehavior.htc +86 -0
  20. data/templates/default/attachment/robots.txt +2 -1
  21. data/templates/default/attachment/stylesheet.css +144 -37
  22. data/templates/default/banned_titles.txt +36 -0
  23. data/templates/default/content/Api%20for%20classes%20to%20modify%20the%20wiki.textile +24 -0
  24. data/templates/default/content/Author.textile +3 -3
  25. data/templates/default/content/Automatic%20Summaries.textile +14 -14
  26. data/templates/default/content/Automatic%20linking%20between%20pages.textile +2 -0
  27. data/templates/default/content/Bug%3A%20RSS%20feed%20does%20not%20validate.textile +10 -0
  28. data/templates/default/content/Bug%3A%20Textile%20mishandles%20paragraphs.textile +33 -0
  29. data/templates/default/content/Bug%3A%20Unanticipated%20Rollbacks.textile +21 -0
  30. data/templates/default/content/Home%20Page.textile +3 -2
  31. data/templates/default/content/How%20to%20administrate%20this%20wiki.textile +4 -19
  32. data/templates/default/content/How%20to%20get%20the%20latest%20Soks%20from%20cvs.textile +21 -0
  33. data/templates/default/content/How%20to%20import%20data%20to%20this%20wiki.textile +45 -0
  34. data/templates/default/content/How%20to%20install%20Soks.textile +12 -8
  35. data/templates/default/content/How%20to%20password%20protect%20your%20wiki.textile +43 -0
  36. data/templates/default/content/How%20to%20report%20a%20bug.textile +1 -1
  37. data/templates/default/content/How%20to%20use%20the%20keyboard%20shortcuts.textile +2 -0
  38. data/templates/default/content/How%20to%20use%20this%20wiki.textile +1 -0
  39. data/templates/default/content/Instructions%20and%20Howtos.textile +4 -1
  40. data/templates/default/content/Known%20bugs.textile +5 -2
  41. data/templates/default/content/List%20of%20changes.textile +49 -0
  42. data/templates/default/content/New%20Recent%20Changes%20class.textile +58 -0
  43. data/templates/default/content/New%20page%20templates%20or%20categories%20code.textile +68 -0
  44. data/templates/default/content/Per%20Wiki%20Templates.textile +35 -0
  45. data/templates/default/content/Planned%20Features.textile +29 -8
  46. data/templates/default/content/README.textile +14 -4
  47. data/templates/default/content/RSS%20feed.textile +2 -0
  48. data/templates/default/content/Recent%20Changes%20to%20This%20Site.textile +200 -202
  49. data/templates/default/content/SOKS%20features.textile +2 -1
  50. data/templates/default/content/Sidebar%20Page.textile +3 -0
  51. data/templates/default/content/Type%20a%20title%20here.textile +1 -0
  52. data/templates/default/content/bug%3A%20competing%20edits.textile +13 -0
  53. data/templates/default/content/ctrl%2Dn.textile +1 -0
  54. data/templates/default/content/tamc.textile +1 -0
  55. data/templates/default/start.rb +38 -15
  56. data/templates/default/version.txt +1 -1
  57. data/templates/default/views/Page_edit.rhtml +71 -57
  58. data/templates/default/views/Page_meta.rhtml +6 -2
  59. data/templates/default/views/Page_revisions.rhtml +17 -9
  60. data/templates/default/views/Page_rss.rhtml +3 -1
  61. data/templates/default/views/Page_search_results.rhtml +11 -1
  62. data/templates/default/views/Page_view.rhtml +6 -2
  63. data/templates/default/views/UploadPage_edit.rhtml +58 -33
  64. data/templates/default/views/frame.rhtml +46 -27
  65. data/test/test_soks-utils.rb +37 -0
  66. metadata +27 -229
  67. data/templates/default/content/Bug%3A%20%5BFATAL%5D%20When%20renaming%20upload%20%2F%20picture%2.textile +0 -1
  68. data/templates/default/content/Bug%3A%20Automatic%20link%20links%20to%20stuff%20inside%20%3Chtml.textile +0 -1
  69. data/templates/default/content/Bug%3A%20Does%20not%20make%20use%20of%20if%2Dmodified%2Dsince%20r.textile +0 -1
  70. data/templates/default/content/Bug%3A%20Duplicate%20links%2Dto%20a%20page%20sometimes%20appear.textile +0 -1
  71. data/templates/default/content/Bug%3A%20External%20links%20incorrectly%20include%20trailing%20pu.textile +0 -1
  72. data/templates/default/content/Bug%3A%20In%20a%20list%20of%20links%2C%20the%20last%20link%20is%2.textile +0 -1
  73. data/templates/default/content/Bug%3A%20Inserted%20pages%20are%20not%20refreshed%20when%20new%20.textile +0 -1
  74. data/templates/default/content/Bug%3A%20No%20robots%2Etxt%20or%20favicon%2Eico.textile +0 -1
  75. data/templates/default/content/Bug%3A%20Page%20titles%20cannot%20have%20html%20tags%20in%20them.textile +0 -1
  76. data/templates/default/content/Bug%3A%20Punctuation%20in%20page%20titles%20still%20problematic.textile +0 -7
  77. data/templates/default/content/Bug%3A%20RSS%20feed%20shows%20oldest%2015%20revisions%20%28not%20.textile +0 -1
  78. data/templates/default/content/Bug%3A%20Search%20box%20width%20does%20not%20match%20column%20wid.textile +0 -1
  79. data/templates/default/content/Bug%3A%20Search%20includes%20leading%20and%20trailing%20spaces.textile +0 -1
  80. data/templates/default/content/Bug%3A%20Search%20inluced%20leading%20and%20trailing%20spaces.textile +0 -1
  81. data/templates/default/content/Bug%3A%20Site%20Index%20updates%20on%20every%20revision.textile +0 -1
  82. data/templates/default/content/Bug%3A%20Symbols%20are%20not%20always%20correctly%20rendered%20in.textile +0 -1
  83. data/templates/default/content/Bug%3A%20Uploads%20are%20not%20password%20protected.textile +0 -3
  84. data/templates/default/content/Bug%3A%20no%20superclass%20method%20%60%5Fdeprecated%5Fbase64.textile +0 -1
  85. data/templates/default/content/Fixed%20Bug%3A%20%5BFATAL%5D%20When%20renaming%20upload%20%2F%20p.textile +0 -34
  86. data/templates/default/content/Fixed%20Bug%3A%20Duplicate%20links%2Dto%20a%20page%20sometimes%20.textile +0 -3
  87. data/templates/default/content/Fixed%20Bug%3A%20External%20links%20incorrectly%20include%20trail.textile +0 -3
  88. data/templates/default/content/Fixed%20Bug%3A%20In%20a%20list%20of%20links%2C%20the%20last%20lin.textile +0 -13
  89. data/templates/default/content/Fixed%20Bug%3A%20Inserted%20pages%20are%20not%20refreshed%20when%.textile +0 -9
  90. data/templates/default/content/Fixed%20Bug%3A%20No%20robots%2Etxt%20or%20favicon%2Eico.textile +0 -4
  91. data/templates/default/content/Fixed%20Bug%3A%20RSS%20feed%20shows%20oldest%2015%20revisions%20%.textile +0 -15
  92. data/templates/default/content/Fixed%20Bug%3A%20Search%20box%20width%20does%20not%20match%20colu.textile +0 -3
  93. data/templates/default/content/Fixed%20Bug%3A%20Search%20includes%20leading%20and%20trailing%20s.textile +0 -3
  94. data/templates/default/content/Fixed%20Bug%3A%20Site%20Index%20updates%20on%20every%20revision.textile +0 -3
  95. data/templates/default/content/Fixed%20Bug%3A%20Symbols%20are%20not%20always%20correctly%20rende.textile +0 -5
  96. data/templates/default/content/Fixed%20Bug%3A%20no%20superclass%20method%20%60%5Fdeprecated%5Fba.textile +0 -3
  97. data/templates/default/content/Site%20Index.textile +0 -60
  98. data/templates/default/content/fixed%20bug%3A%20automatic%20link%20links%20to%20stuff%20inside%2.textile +0 -3
  99. data/templates/default/content/sandbox.textile +0 -2
  100. data/templates/default/content/test%20page.textile +0 -1
  101. data/templates/instiki/attachment/header_backdrop.png +0 -0
  102. data/templates/instiki/attachment/instiki_style_sheet.css +0 -199
  103. data/templates/instiki/attachment/logo.tiff +0 -0
  104. data/templates/instiki/attachment/logotext.png +0 -0
  105. data/templates/instiki/attachment/newpage.js +0 -41
  106. data/templates/instiki/attachment/rss.png +0 -0
  107. data/templates/instiki/banned_titles.txt +0 -31
  108. data/templates/instiki/content/All%20News.textile +0 -9
  109. data/templates/instiki/content/Attached%20ruby%20logo.textile +0 -1
  110. data/templates/instiki/content/Attached%20test%20thing.textile +0 -1
  111. data/templates/instiki/content/Author.textile +0 -12
  112. data/templates/instiki/content/Automatic%20Summaries.textile +0 -77
  113. data/templates/instiki/content/Automatic%20linking%20between%20pages.textile +0 -5
  114. data/templates/instiki/content/Bug%3A%20%5BFATAL%5D%20When%20renaming%20upload%20%2F%20picture%2.textile +0 -1
  115. data/templates/instiki/content/Bug%3A%20Automatic%20link%20links%20to%20stuff%20inside%20%3Chtml.textile +0 -1
  116. data/templates/instiki/content/Bug%3A%20Does%20not%20make%20use%20of%20if%2Dmodified%2Dsince%20r.textile +0 -1
  117. data/templates/instiki/content/Bug%3A%20Duplicate%20links%2Dto%20a%20page%20sometimes%20appear.textile +0 -1
  118. data/templates/instiki/content/Bug%3A%20External%20links%20incorrectly%20include%20trailing%20pu.textile +0 -1
  119. data/templates/instiki/content/Bug%3A%20GEM%20limits%20title%20lengths.textile +0 -1
  120. data/templates/instiki/content/Bug%3A%20In%20a%20list%20of%20links%2C%20the%20last%20link%20is%2.textile +0 -1
  121. data/templates/instiki/content/Bug%3A%20Inserted%20pages%20are%20not%20refreshed%20when%20new%20.textile +0 -1
  122. data/templates/instiki/content/Bug%3A%20No%20robots%2Etxt%20or%20favicon%2Eico.textile +0 -1
  123. data/templates/instiki/content/Bug%3A%20Page%20titles%20cannot%20have%20html%20tags%20in%20them.textile +0 -1
  124. data/templates/instiki/content/Bug%3A%20Punctuation%20in%20page%20titles%20still%20problematic.textile +0 -7
  125. data/templates/instiki/content/Bug%3A%20RSS%20feed%20shows%20oldest%2015%20revisions%20%28not%20.textile +0 -1
  126. data/templates/instiki/content/Bug%3A%20Search%20box%20width%20does%20not%20match%20column%20wid.textile +0 -1
  127. data/templates/instiki/content/Bug%3A%20Search%20includes%20leading%20and%20trailing%20spaces.textile +0 -1
  128. data/templates/instiki/content/Bug%3A%20Search%20inluced%20leading%20and%20trailing%20spaces.textile +0 -1
  129. data/templates/instiki/content/Bug%3A%20Site%20Index%20updates%20on%20every%20revision.textile +0 -1
  130. data/templates/instiki/content/Bug%3A%20Symbols%20are%20not%20always%20correctly%20rendered%20in.textile +0 -1
  131. data/templates/instiki/content/Bug%3A%20Uploads%20are%20not%20password%20protected.textile +0 -3
  132. data/templates/instiki/content/Bug%3A%20no%20superclass%20method%20%60%5Fdeprecated%5Fbase64.textile +0 -1
  133. data/templates/instiki/content/Bug%3A%20notextile%20does%20not%20prevent%20page%20inserts.textile +0 -1
  134. data/templates/instiki/content/Fixed%20Bug%3A%20%5BFATAL%5D%20When%20renaming%20upload%20%2F%20p.textile +0 -34
  135. data/templates/instiki/content/Fixed%20Bug%3A%20Duplicate%20links%2Dto%20a%20page%20sometimes%20.textile +0 -3
  136. data/templates/instiki/content/Fixed%20Bug%3A%20External%20links%20incorrectly%20include%20trail.textile +0 -3
  137. data/templates/instiki/content/Fixed%20Bug%3A%20In%20a%20list%20of%20links%2C%20the%20last%20lin.textile +0 -13
  138. data/templates/instiki/content/Fixed%20Bug%3A%20Inserted%20pages%20are%20not%20refreshed%20when%.textile +0 -9
  139. data/templates/instiki/content/Fixed%20Bug%3A%20No%20robots%2Etxt%20or%20favicon%2Eico.textile +0 -4
  140. data/templates/instiki/content/Fixed%20Bug%3A%20RSS%20feed%20shows%20oldest%2015%20revisions%20%.textile +0 -15
  141. data/templates/instiki/content/Fixed%20Bug%3A%20Search%20box%20width%20does%20not%20match%20colu.textile +0 -3
  142. data/templates/instiki/content/Fixed%20Bug%3A%20Search%20includes%20leading%20and%20trailing%20s.textile +0 -3
  143. data/templates/instiki/content/Fixed%20Bug%3A%20Site%20Index%20updates%20on%20every%20revision.textile +0 -3
  144. data/templates/instiki/content/Fixed%20Bug%3A%20Symbols%20are%20not%20always%20correctly%20rende.textile +0 -5
  145. data/templates/instiki/content/Fixed%20Bug%3A%20no%20superclass%20method%20%60%5Fdeprecated%5Fba.textile +0 -3
  146. data/templates/instiki/content/Home%20Page.textile +0 -19
  147. data/templates/instiki/content/How%20to%20administrate%20this%20wiki.textile +0 -62
  148. data/templates/instiki/content/How%20to%20change%20the%20way%20this%20wiki%20looks.textile +0 -30
  149. data/templates/instiki/content/How%20to%20export%20a%20site%20from%20this%20wiki.textile +0 -60
  150. data/templates/instiki/content/How%20to%20hack%20soks.textile +0 -61
  151. data/templates/instiki/content/How%20to%20import%20a%20site%20from%20instiki.textile +0 -13
  152. data/templates/instiki/content/How%20to%20install%20Soks.textile +0 -27
  153. data/templates/instiki/content/How%20to%20report%20a%20bug.textile +0 -8
  154. data/templates/instiki/content/How%20to%20use%20the%20keyboard%20shortcuts.textile +0 -13
  155. data/templates/instiki/content/How%20to%20use%20this%20wiki.textile +0 -27
  156. data/templates/instiki/content/Instructions%20and%20Howtos.textile +0 -18
  157. data/templates/instiki/content/Known%20bugs.textile +0 -15
  158. data/templates/instiki/content/Latest%20News.textile +0 -9
  159. data/templates/instiki/content/List%20of%20changes.textile +0 -67
  160. data/templates/instiki/content/Picture%20of%20Type%20a%20title%20here.textile +0 -1
  161. data/templates/instiki/content/Picture%20of%20a%20logo%20for%20the%20ruby%20language.textile +0 -1
  162. data/templates/instiki/content/Picture%20of%20a%20pair%20of%20soks.textile +0 -1
  163. data/templates/instiki/content/Picture%20of%20powered%20by%20ruby%20logo.textile +0 -1
  164. data/templates/instiki/content/Planned%20Features.textile +0 -19
  165. data/templates/instiki/content/README.textile +0 -63
  166. data/templates/instiki/content/RSS%20feed.textile +0 -7
  167. data/templates/instiki/content/Recent%20Blog%20Entries.textile +0 -5
  168. data/templates/instiki/content/Recent%20Changes%20to%20This%20Site.textile +0 -211
  169. data/templates/instiki/content/Recent%20News.textile +0 -9
  170. data/templates/instiki/content/Ruby.textile +0 -9
  171. data/templates/instiki/content/SOKS%20features.textile +0 -16
  172. data/templates/instiki/content/Site%20Index.textile +0 -60
  173. data/templates/instiki/content/Soks%20Licence.textile +0 -64
  174. data/templates/instiki/content/fixed%20bug%3A%20automatic%20link%20links%20to%20stuff%20inside%2.textile +0 -3
  175. data/templates/instiki/content/let%20me%20know.textile +0 -1
  176. data/templates/instiki/content/sandbox.textile +0 -2
  177. data/templates/instiki/content/tamc2.textile +0 -1
  178. data/templates/instiki/content/test%20page.textile +0 -1
  179. data/templates/instiki/start.rb +0 -112
  180. data/templates/instiki/version.txt +0 -1
  181. data/templates/instiki/views/Page_content.rhtml +0 -1
  182. data/templates/instiki/views/Page_edit.rhtml +0 -8
  183. data/templates/instiki/views/Page_meta.rhtml +0 -34
  184. data/templates/instiki/views/Page_print.rhtml +0 -6
  185. data/templates/instiki/views/Page_revisions.rhtml +0 -17
  186. data/templates/instiki/views/Page_rss.rhtml +0 -55
  187. data/templates/instiki/views/Page_search_results.rhtml +0 -18
  188. data/templates/instiki/views/Page_view.rhtml +0 -2
  189. data/templates/instiki/views/UploadPage_edit.rhtml +0 -16
  190. data/templates/instiki/views/frame.rhtml +0 -90
  191. data/templates/instiki/views/messages.yaml +0 -6
  192. data/templates/rails/attachment/2colheader.css +0 -77
  193. data/templates/rails/attachment/basics.css +0 -98
  194. data/templates/rails/attachment/header_backdrop.png +0 -0
  195. data/templates/rails/attachment/logo.tiff +0 -0
  196. data/templates/rails/attachment/logotext.png +0 -0
  197. data/templates/rails/attachment/newpage.js +0 -41
  198. data/templates/rails/attachment/rss.png +0 -0
  199. data/templates/rails/banned_titles.txt +0 -31
  200. data/templates/rails/content/All%20News.textile +0 -9
  201. data/templates/rails/content/Attached%20ruby%20logo.textile +0 -1
  202. data/templates/rails/content/Attached%20test%20thing.textile +0 -1
  203. data/templates/rails/content/Author.textile +0 -12
  204. data/templates/rails/content/Automatic%20Summaries.textile +0 -77
  205. data/templates/rails/content/Automatic%20linking%20between%20pages.textile +0 -5
  206. data/templates/rails/content/Bug%3A%20%5BFATAL%5D%20When%20renaming%20upload%20%2F%20picture%2.textile +0 -1
  207. data/templates/rails/content/Bug%3A%20Automatic%20link%20links%20to%20stuff%20inside%20%3Chtml.textile +0 -1
  208. data/templates/rails/content/Bug%3A%20Does%20not%20make%20use%20of%20if%2Dmodified%2Dsince%20r.textile +0 -1
  209. data/templates/rails/content/Bug%3A%20Duplicate%20links%2Dto%20a%20page%20sometimes%20appear.textile +0 -1
  210. data/templates/rails/content/Bug%3A%20External%20links%20incorrectly%20include%20trailing%20pu.textile +0 -1
  211. data/templates/rails/content/Bug%3A%20GEM%20limits%20title%20lengths.textile +0 -1
  212. data/templates/rails/content/Bug%3A%20In%20a%20list%20of%20links%2C%20the%20last%20link%20is%2.textile +0 -1
  213. data/templates/rails/content/Bug%3A%20Inserted%20pages%20are%20not%20refreshed%20when%20new%20.textile +0 -1
  214. data/templates/rails/content/Bug%3A%20No%20robots%2Etxt%20or%20favicon%2Eico.textile +0 -1
  215. data/templates/rails/content/Bug%3A%20Page%20titles%20cannot%20have%20html%20tags%20in%20them.textile +0 -1
  216. data/templates/rails/content/Bug%3A%20Punctuation%20in%20page%20titles%20still%20problematic.textile +0 -7
  217. data/templates/rails/content/Bug%3A%20RSS%20feed%20shows%20oldest%2015%20revisions%20%28not%20.textile +0 -1
  218. data/templates/rails/content/Bug%3A%20Search%20box%20width%20does%20not%20match%20column%20wid.textile +0 -1
  219. data/templates/rails/content/Bug%3A%20Search%20includes%20leading%20and%20trailing%20spaces.textile +0 -1
  220. data/templates/rails/content/Bug%3A%20Search%20inluced%20leading%20and%20trailing%20spaces.textile +0 -1
  221. data/templates/rails/content/Bug%3A%20Site%20Index%20updates%20on%20every%20revision.textile +0 -1
  222. data/templates/rails/content/Bug%3A%20Symbols%20are%20not%20always%20correctly%20rendered%20in.textile +0 -1
  223. data/templates/rails/content/Bug%3A%20Uploads%20are%20not%20password%20protected.textile +0 -3
  224. data/templates/rails/content/Bug%3A%20no%20superclass%20method%20%60%5Fdeprecated%5Fbase64.textile +0 -1
  225. data/templates/rails/content/Bug%3A%20notextile%20does%20not%20prevent%20page%20inserts.textile +0 -1
  226. data/templates/rails/content/Fixed%20Bug%3A%20%5BFATAL%5D%20When%20renaming%20upload%20%2F%20p.textile +0 -34
  227. data/templates/rails/content/Fixed%20Bug%3A%20Duplicate%20links%2Dto%20a%20page%20sometimes%20.textile +0 -3
  228. data/templates/rails/content/Fixed%20Bug%3A%20External%20links%20incorrectly%20include%20trail.textile +0 -3
  229. data/templates/rails/content/Fixed%20Bug%3A%20In%20a%20list%20of%20links%2C%20the%20last%20lin.textile +0 -13
  230. data/templates/rails/content/Fixed%20Bug%3A%20Inserted%20pages%20are%20not%20refreshed%20when%.textile +0 -9
  231. data/templates/rails/content/Fixed%20Bug%3A%20No%20robots%2Etxt%20or%20favicon%2Eico.textile +0 -4
  232. data/templates/rails/content/Fixed%20Bug%3A%20RSS%20feed%20shows%20oldest%2015%20revisions%20%.textile +0 -15
  233. data/templates/rails/content/Fixed%20Bug%3A%20Search%20box%20width%20does%20not%20match%20colu.textile +0 -3
  234. data/templates/rails/content/Fixed%20Bug%3A%20Search%20includes%20leading%20and%20trailing%20s.textile +0 -3
  235. data/templates/rails/content/Fixed%20Bug%3A%20Site%20Index%20updates%20on%20every%20revision.textile +0 -3
  236. data/templates/rails/content/Fixed%20Bug%3A%20Symbols%20are%20not%20always%20correctly%20rende.textile +0 -5
  237. data/templates/rails/content/Fixed%20Bug%3A%20no%20superclass%20method%20%60%5Fdeprecated%5Fba.textile +0 -3
  238. data/templates/rails/content/Home%20Page.textile +0 -19
  239. data/templates/rails/content/How%20to%20administrate%20this%20wiki.textile +0 -62
  240. data/templates/rails/content/How%20to%20change%20the%20way%20this%20wiki%20looks.textile +0 -30
  241. data/templates/rails/content/How%20to%20export%20a%20site%20from%20this%20wiki.textile +0 -60
  242. data/templates/rails/content/How%20to%20hack%20soks.textile +0 -61
  243. data/templates/rails/content/How%20to%20import%20a%20site%20from%20instiki.textile +0 -13
  244. data/templates/rails/content/How%20to%20install%20Soks.textile +0 -27
  245. data/templates/rails/content/How%20to%20report%20a%20bug.textile +0 -8
  246. data/templates/rails/content/How%20to%20use%20the%20keyboard%20shortcuts.textile +0 -13
  247. data/templates/rails/content/How%20to%20use%20this%20wiki.textile +0 -27
  248. data/templates/rails/content/Instructions%20and%20Howtos.textile +0 -18
  249. data/templates/rails/content/Known%20bugs.textile +0 -15
  250. data/templates/rails/content/Latest%20News.textile +0 -9
  251. data/templates/rails/content/List%20of%20changes.textile +0 -67
  252. data/templates/rails/content/Picture%20of%20Type%20a%20title%20here.textile +0 -1
  253. data/templates/rails/content/Picture%20of%20a%20logo%20for%20the%20ruby%20language.textile +0 -1
  254. data/templates/rails/content/Picture%20of%20a%20pair%20of%20soks.textile +0 -1
  255. data/templates/rails/content/Picture%20of%20powered%20by%20ruby%20logo.textile +0 -1
  256. data/templates/rails/content/Planned%20Features.textile +0 -19
  257. data/templates/rails/content/README.textile +0 -63
  258. data/templates/rails/content/RSS%20feed.textile +0 -7
  259. data/templates/rails/content/Recent%20Blog%20Entries.textile +0 -5
  260. data/templates/rails/content/Recent%20Changes%20to%20This%20Site.textile +0 -211
  261. data/templates/rails/content/Recent%20News.textile +0 -9
  262. data/templates/rails/content/Ruby.textile +0 -9
  263. data/templates/rails/content/SOKS%20features.textile +0 -16
  264. data/templates/rails/content/Site%20Index.textile +0 -60
  265. data/templates/rails/content/Soks%20Licence.textile +0 -64
  266. data/templates/rails/content/fixed%20bug%3A%20automatic%20link%20links%20to%20stuff%20inside%2.textile +0 -3
  267. data/templates/rails/content/let%20me%20know.textile +0 -1
  268. data/templates/rails/content/sandbox.textile +0 -2
  269. data/templates/rails/content/tamc2.textile +0 -1
  270. data/templates/rails/content/test%20page.textile +0 -1
  271. data/templates/rails/start.rb +0 -113
  272. data/templates/rails/version.txt +0 -1
  273. data/templates/rails/views/Page_content.rhtml +0 -1
  274. data/templates/rails/views/Page_edit.rhtml +0 -61
  275. data/templates/rails/views/Page_meta.rhtml +0 -38
  276. data/templates/rails/views/Page_print.rhtml +0 -6
  277. data/templates/rails/views/Page_revisions.rhtml +0 -19
  278. data/templates/rails/views/Page_rss.rhtml +0 -55
  279. data/templates/rails/views/Page_search_results.rhtml +0 -19
  280. data/templates/rails/views/Page_view.rhtml +0 -3
  281. data/templates/rails/views/UploadPage_edit.rhtml +0 -38
  282. data/templates/rails/views/frame.rhtml +0 -60
  283. data/templates/rails/views/messages.yaml +0 -6
  284. /data/templates/default/attachment/{logo_thumb.bmp → tiny-logo thumb.bmp} +0 -0
@@ -1,211 +0,0 @@
1
- h2. Recent Changes to This Site
2
-
3
- p{font-size: x-small;}. Recent Changes to This Site was created automatically from pages whose title matches /.*/.
4
-
5
- <automaticsummary>
6
-
7
- * [[ Distribution Home Page ]] revised on 2005 Feb 12 12:30 by tamc2
8
- * [[ README ]] revised on 2005 Feb 12 12:27 by tamc2
9
- * [[ README ]] revised on 2005 Feb 12 12:26 by tamc2
10
- * [[ README ]] revised on 2005 Feb 12 12:22 by tamc2
11
- * [[ Distribution Home Page ]] revised on 2005 Feb 12 12:19 by tamc2
12
- * [[ Planned Features ]] revised on 2005 Feb 12 12:13 by tamc2
13
- * [[ SOKS features ]] revised on 2005 Feb 12 12:11 by tamc2
14
- * [[ SOKS features ]] revised on 2005 Feb 12 12:10 by tamc2
15
- * [[ Known bugs ]] revised on 2005 Feb 12 12:09 by tamc2
16
- * [[ Known bugs ]] revised on 2005 Feb 12 12:08 by tamc2
17
- * [[ Site Index ]] revised on 2005 Feb 12 12:07 by AutomaticIndex
18
- * [[ Instructions and Howtos ]] revised on 2005 Feb 12 12:07 by AutomaticSummary
19
- * [[ How to report a bug ]] revised on 2005 Feb 12 12:07 by tamc2
20
- * [[ home page ]] revised on 2005 Feb 12 12:05 by tamc2
21
- * [[ home page ]] revised on 2005 Feb 12 12:05 by tamc2
22
- * [[ List of changes ]] revised on 2005 Feb 12 12:01 by tamc2
23
- * [[ List of changes ]] revised on 2005 Feb 12 12:01 by tamc2
24
- * [[ Site Index ]] revised on 2005 Feb 12 12:00 by AutomaticIndex
25
- * [[ Known bugs ]] revised on 2005 Feb 12 12:00 by AutomaticSummary
26
- * [[ Bug: notextile does not prevent page inserts ]] revised on 2005 Feb 12 12:00 by tamc2
27
- * [[ Site Index ]] revised on 2005 Feb 12 11:55 by AutomaticIndex
28
- * [[ Attached ruby logo ]] revised on 2005 Feb 12 11:55 by tamc2
29
- * [[ Site Index ]] revised on 2005 Feb 12 11:54 by AutomaticIndex
30
- * [[ Site Index ]] revised on 2005 Feb 12 11:54 by AutomaticIndex
31
- * [[ Attached test thing ]] revised on 2005 Feb 12 11:54 by tamc2
32
- * [[ Attached ruby logo ]] revised on 2005 Feb 12 11:54 by tamc2
33
- * [[ Attached ruby logo ]] revised on 2005 Feb 12 11:54 by AutomaticPageMover
34
- * [[ Site Index ]] revised on 2005 Feb 12 11:54 by AutomaticIndex
35
- * [[ Attached test thing ]] revised on 2005 Feb 12 11:54 by tamc2
36
- * [[ Site Index ]] revised on 2005 Feb 12 11:52 by AutomaticIndex
37
- * [[ Known bugs ]] revised on 2005 Feb 12 11:52 by AutomaticSummary
38
- * [[ Known bugs ]] revised on 2005 Feb 12 11:52 by AutomaticSummary
39
- * [[ Bug: Page titles cannot have html tags in them ]] revised on 2005 Feb 12 11:52 by tamc2
40
- * [[ Site Index ]] revised on 2005 Feb 12 11:32 by AutomaticIndex
41
- * [[ Site Index ]] revised on 2005 Feb 12 11:32 by AutomaticIndex
42
- * [[ Picture of powered by ruby logo ]] revised on 2005 Feb 12 11:32 by tamc2
43
- * [[ Picture of a logo for the ruby language ]] revised on 2005 Feb 12 11:32 by tamc2
44
- * [[ Picture of a logo for the ruby language ]] revised on 2005 Feb 12 11:32 by AutomaticPageMover
45
- * [[ Site Index ]] revised on 2005 Feb 12 11:32 by AutomaticIndex
46
- * [[ Picture of powered by ruby logo ]] revised on 2005 Feb 12 11:32 by tamc2
47
- * [[ Planned Features ]] revised on 2005 Feb 12 11:06 by tamc2
48
- * [[ Site Index ]] revised on 2005 Feb 12 11:02 by AutomaticIndex
49
- * [[ Site Index ]] revised on 2005 Feb 12 11:02 by AutomaticIndex
50
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
51
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
52
- * [[ Fixed Bug: [FATAL] When renaming upload / picture pages ]] revised on 2005 Feb 12 11:02 by tamc2
53
- * [[ Fixed Bug: [FATAL] When renaming upload / picture pages ]] revised on 2005 Feb 12 11:02 by AutomaticPageMover
54
- * [[ Bug: [FATAL] When renaming upload / picture pages ]] revised on 2005 Feb 12 11:02 by tamc2
55
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
56
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
57
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
58
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
59
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
60
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
61
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
62
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
63
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
64
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
65
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
66
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
67
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
68
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
69
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
70
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
71
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
72
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
73
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
74
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
75
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
76
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
77
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
78
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
79
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
80
- * [[ Known bugs ]] revised on 2005 Feb 12 11:02 by AutomaticSummary
81
- * [[ Site Index ]] revised on 2005 Feb 12 10:10 by AutomaticIndex
82
- * [[ Known bugs ]] revised on 2005 Feb 12 10:10 by AutomaticSummary
83
- * [[ Fixed Bug: Duplicate links-to a page sometimes appear ]] revised on 2005 Feb 12 10:10 by tamc2
84
- * [[ Fixed Bug: Duplicate links-to a page sometimes appear ]] revised on 2005 Feb 12 10:10 by AutomaticPageMover
85
- * [[ Bug: Duplicate links-to a page sometimes appear ]] revised on 2005 Feb 12 10:10 by tamc2
86
- * [[ Fixed Bug: Search includes leading and trailing spaces ]] revised on 2005 Feb 12 10:09 by tamc2
87
- * [[ Fixed Bug: Search includes leading and trailing spaces ]] revised on 2005 Feb 12 10:09 by AutomaticPageMover
88
- * [[ Bug: Search includes leading and trailing spaces ]] revised on 2005 Feb 12 10:09 by tamc2
89
- * [[ Bug: Punctuation in page titles still problematic ]] revised on 2005 Feb 12 10:08 by tamc2
90
- * [[ Fixed Bug: No robots.txt or favicon.ico ]] revised on 2005 Feb 12 10:07 by tamc2
91
- * [[ Fixed Bug: No robots.txt or favicon.ico ]] revised on 2005 Feb 12 10:07 by AutomaticPageMover
92
- * [[ Bug: No robots.txt or favicon.ico ]] revised on 2005 Feb 12 10:07 by tamc2
93
- * [[ Site Index ]] revised on 2005 Feb 12 09:52 by AutomaticIndex
94
- * [[ Known bugs ]] revised on 2005 Feb 12 09:52 by AutomaticSummary
95
- * [[ Fixed Bug: no superclass method `_deprecated_base64 ]] revised on 2005 Feb 12 09:52 by tamc2
96
- * [[ Fixed Bug: no superclass method `_deprecated_base64 ]] revised on 2005 Feb 12 09:52 by AutomaticPageMover
97
- * [[ Bug: no superclass method `_deprecated_base64 ]] revised on 2005 Feb 12 09:52 by tamc2
98
- * [[ Fixed Bug: External links incorrectly include trailing punctuation ]] revised on 2005 Feb 12 09:49 by tamc2
99
- * [[ Fixed Bug: External links incorrectly include trailing punctuation ]] revised on 2005 Feb 12 09:49 by AutomaticPageMover
100
- * [[ Bug: External links incorrectly include trailing punctuation ]] revised on 2005 Feb 12 09:49 by tamc2
101
- * [[ SOKS features ]] revised on 2005 Feb 12 06:22 by Ochronus
102
- * [[ home page ]] revised on 2005 Feb 08 16:18 by tamc2
103
- * [[ Site Index ]] revised on 2005 Feb 06 11:21 by AutomaticIndex
104
- * [[ Known bugs ]] revised on 2005 Feb 06 11:21 by AutomaticSummary
105
- * [[ Bug: Search includes leading and trailing spaces ]] revised on 2005 Feb 06 11:21 by tamc2
106
- * [[ Bug: Search includes leading and trailing spaces ]] revised on 2005 Feb 06 11:21 by AutomaticPageMover
107
- * [[ Bug: Search inluced leading and trailing spaces ]] revised on 2005 Feb 06 11:21 by tamc2
108
- * [[ Known bugs ]] revised on 2005 Feb 03 13:50 by AutomaticSummary
109
- * [[ Bug: Duplicate links-to a page sometimes appear ]] revised on 2005 Feb 03 13:50 by tamc2
110
- * [[ Site Index ]] revised on 2005 Feb 03 07:28 by AutomaticIndex
111
- * [[ Known bugs ]] revised on 2005 Feb 03 07:28 by AutomaticSummary
112
- * [[ Bug: Search inluced leading and trailing spaces ]] revised on 2005 Feb 03 07:28 by tamc2
113
- * [[ Site Index ]] revised on 2005 Feb 02 00:23 by AutomaticIndex
114
- * [[ Known bugs ]] revised on 2005 Feb 02 00:23 by AutomaticSummary
115
- * [[ Bug: no superclass method `_deprecated_base64 ]] revised on 2005 Feb 02 00:23 by Skorgu
116
- * [[ Planned Features ]] revised on 2005 Feb 01 18:55 by tamc2
117
- * [[ How to administrate this wiki ]] revised on 2005 Feb 01 18:44 by tamc2
118
- * [[ Site Index ]] revised on 2005 Feb 01 05:10 by AutomaticIndex
119
- * [[ Known bugs ]] revised on 2005 Feb 01 05:10 by AutomaticSummary
120
- * [[ Bug: Punctuation in page titles still problematic ]] revised on 2005 Feb 01 05:10 by tamc2
121
- * [[ Bug: [FATAL] When renaming upload / picture pages ]] revised on 2005 Feb 01 05:05 by tamc2
122
- * [[ Automatic Summaries ]] revised on 2005 Jan 27 09:40 by tom
123
- * [[ Planned Features ]] revised on 2005 Jan 27 09:37 by tom
124
- * [[ Planned Features ]] revised on 2005 Jan 27 05:31 by tamc2
125
- * [[ Site Index ]] revised on 2005 Jan 27 05:31 by AutomaticIndex
126
- * [[ SOKS features ]] revised on 2005 Jan 27 05:25 by tamc2
127
- * [[ SOKS features ]] revised on 2005 Jan 27 00:10 by dab
128
- * [[ SOKS features ]] revised on 2005 Jan 26 09:34 by tamc2
129
- * [[ Site Index ]] revised on 2005 Jan 26 09:21 by AutomaticIndex
130
- * [[ Site Index ]] revised on 2005 Jan 26 08:55 by AutomaticIndex
131
- * [[ Known bugs ]] revised on 2005 Jan 26 08:55 by AutomaticSummary
132
- * [[ Bug: GEM limits title lengths ]] revised on 2005 Jan 26 08:55 by tamc2
133
- * [[ Site Index ]] revised on 2005 Jan 26 08:12 by AutomaticIndex
134
- * [[ Known bugs ]] revised on 2005 Jan 26 08:12 by AutomaticSummary
135
- * [[ Bug: No robots.txt or favicon.ico ]] revised on 2005 Jan 26 08:12 by tamc2
136
- * [[ Bug: Page titles cannot have html tags in them ]] revised on 2005 Jan 26 08:11 by tamc2
137
- * [[ Site Index ]] revised on 2005 Jan 26 07:59 by AutomaticIndex
138
- * [[ Known bugs ]] revised on 2005 Jan 26 07:59 by AutomaticSummary
139
- * [[ Fixed Bug: Site Index updates on every revision ]] revised on 2005 Jan 26 07:59 by tamc2
140
- * [[ Fixed Bug: Site Index updates on every revision ]] revised on 2005 Jan 26 07:59 by AutomaticPageMover
141
- * [[ Bug: Site Index updates on every revision ]] revised on 2005 Jan 26 07:59 by tamc2
142
- * [[ Instructions and Howtos ]] revised on 2005 Jan 26 07:58 by AutomaticSummary
143
- * [[ Known bugs ]] revised on 2005 Jan 25 18:50 by AutomaticSummary
144
- * [[ Bug: Site Index updates on every revision ]] revised on 2005 Jan 25 18:50 by tamc2
145
- * [[ Known bugs ]] revised on 2005 Jan 25 18:34 by AutomaticSummary
146
- * [[ Bug: Site Index updates on every revision ]] revised on 2005 Jan 25 18:34 by tamc2
147
- * [[ Site Index ]] revised on 2005 Jan 25 18:33 by AutomaticIndex
148
- * [[ fixed bug: automatic link links to stuff inside html tags ]] revised on 2005 Jan 25 18:33 by tamc2
149
- * [[ fixed bug: automatic link links to stuff inside html tags ]] revised on 2005 Jan 25 18:33 by AutomaticPageMover
150
- * [[ Fixed bug: automatic link links to stuff inside <html> tags ]] revised on 2005 Jan 25 18:33 by tamc2
151
- * [[ Fixed Bug: Inserted pages are not refreshed when new autolinks are made ]] revised on 2005 Jan 25 18:31 by tamc2
152
- * [[ Fixed Bug: Inserted pages are not refreshed when new autolinks are made ]] revised on 2005 Jan 25 18:31 by AutomaticPageMover
153
- * [[ Bug: Inserted pages are not refreshed when new autolinks are made on them ]] revised on 2005 Jan 25 18:31 by tamc2
154
- * [[ RSS feed ]] revised on 2005 Jan 25 18:31 by tamc2
155
- * [[ Fixed bug: automatic link links to stuff inside <html> tags ]] revised on 2005 Jan 25 18:28 by tamc2
156
- * [[ Fixed bug: automatic link links to stuff inside <html> tags ]] revised on 2005 Jan 25 18:28 by AutomaticPageMover
157
- * [[ Bug: Automatic link links to stuff inside <html> tags ]] revised on 2005 Jan 25 18:28 by tamc2
158
- * [[ Fixed Bug: Search box width does not match column width ]] revised on 2005 Jan 25 18:27 by tamc2
159
- * [[ Fixed Bug: Search box width does not match column width ]] revised on 2005 Jan 25 18:27 by AutomaticPageMover
160
- * [[ Bug: Search box width does not match column width ]] revised on 2005 Jan 25 18:27 by tamc2
161
- * [[ Fixed Bug: Symbols are not always correctly rendered in html ]] revised on 2005 Jan 25 18:26 by tamc2
162
- * [[ Fixed Bug: Symbols are not always correctly rendered in html ]] revised on 2005 Jan 25 18:26 by AutomaticPageMover
163
- * [[ Bug: Symbols are not always correctly rendered in html ]] revised on 2005 Jan 25 18:26 by tamc2
164
- * [[ Instructions and Howtos ]] revised on 2005 Jan 25 18:23 by AutomaticSummary
165
- * [[ Fixed Bug: RSS feed shows oldest 15 revisions (not newest!) ]] revised on 2005 Jan 25 18:23 by AutomaticImport
166
- * [[ Fixed Bug: In a list of links, the last link is sometimes not linked ]] revised on 2005 Jan 25 18:23 by AutomaticImport
167
- * [[ All News ]] revised on 2005 Jan 25 18:23 by AutomaticImport
168
- * [[ Latest News ]] revised on 2005 Jan 25 18:23 by AutomaticImport
169
- * [[ test page ]] revised on 2005 Jan 25 18:23 by AutomaticImport
170
- * [[ tamc2 ]] revised on 2005 Jan 25 18:23 by AutomaticImport
171
- * [[ sandbox ]] revised on 2005 Jan 25 18:23 by AutomaticImport
172
- * [[ let me know ]] revised on 2005 Jan 25 18:23 by AutomaticImport
173
- * [[ home page ]] revised on 2005 Jan 25 18:23 by AutomaticImport
174
- * [[ Soks Licence ]] revised on 2005 Jan 25 18:23 by AutomaticImport
175
- * [[ Site Index ]] revised on 2005 Jan 25 18:23 by AutomaticImport
176
- * [[ SOKS features ]] revised on 2005 Jan 25 18:23 by AutomaticImport
177
- * [[ Ruby ]] revised on 2005 Jan 25 18:23 by AutomaticImport
178
- * [[ Recent News ]] revised on 2005 Jan 25 18:23 by AutomaticImport
179
- * [[ Recent Blog Entries ]] revised on 2005 Jan 25 18:23 by AutomaticImport
180
- * [[ README ]] revised on 2005 Jan 25 18:23 by AutomaticImport
181
- * [[ Picture of a pair of soks ]] revised on 2005 Jan 25 18:23 by AutomaticImport
182
- * [[ Picture of Type a title here ]] revised on 2005 Jan 25 18:23 by AutomaticImport
183
- * [[ List of changes ]] revised on 2005 Jan 25 18:23 by AutomaticImport
184
- * [[ Known bugs ]] revised on 2005 Jan 25 18:23 by AutomaticImport
185
- * [[ Instructions and Howtos ]] revised on 2005 Jan 25 18:23 by AutomaticImport
186
- * [[ How to use this wiki ]] revised on 2005 Jan 25 18:23 by AutomaticImport
187
- * [[ How to use the keyboard shortcuts ]] revised on 2005 Jan 25 18:23 by AutomaticImport
188
- * [[ How to install Soks ]] revised on 2005 Jan 25 18:23 by AutomaticImport
189
- * [[ How to import a site from instiki ]] revised on 2005 Jan 25 18:23 by AutomaticImport
190
- * [[ How to hack soks ]] revised on 2005 Jan 25 18:23 by AutomaticImport
191
- * [[ How to export a site from this wiki ]] revised on 2005 Jan 25 18:23 by AutomaticImport
192
- * [[ How to change the way this wiki looks ]] revised on 2005 Jan 25 18:23 by AutomaticImport
193
- * [[ How to administrate this wiki ]] revised on 2005 Jan 25 18:23 by AutomaticImport
194
- * [[ Distribution Home Page ]] revised on 2005 Jan 25 18:23 by AutomaticImport
195
- * [[ Bug: Uploads are not password protected ]] revised on 2005 Jan 25 18:23 by AutomaticImport
196
- * [[ Bug: Symbols are not always correctly rendered in html ]] revised on 2005 Jan 25 18:23 by AutomaticImport
197
- * [[ Bug: Site Index updates on every revision ]] revised on 2005 Jan 25 18:23 by AutomaticImport
198
- * [[ Bug: Search box width does not match column width ]] revised on 2005 Jan 25 18:23 by AutomaticImport
199
- * [[ Bug: RSS feed shows oldest 15 revisions (not newest!) ]] revised on 2005 Jan 25 18:23 by AutomaticImport
200
- * [[ Bug: Inserted pages are not refreshed when new autolinks are made on them ]] revised on 2005 Jan 25 18:23 by AutomaticImport
201
- * [[ Bug: In a list of links, the last link is sometimes not linked ]] revised on 2005 Jan 25 18:23 by AutomaticImport
202
- * [[ Bug: External links incorrectly include trailing punctuation ]] revised on 2005 Jan 25 18:23 by AutomaticImport
203
- * [[ Bug: Duplicate links-to a page sometimes appear ]] revised on 2005 Jan 25 18:23 by AutomaticImport
204
- * [[ Bug: Does not make use of if-modified-since request headers ]] revised on 2005 Jan 25 18:23 by AutomaticImport
205
- * [[ Bug: Automatic link links to stuff inside <html> tags ]] revised on 2005 Jan 25 18:23 by AutomaticImport
206
- * [[ Automatic linking between pages ]] revised on 2005 Jan 25 18:23 by AutomaticImport
207
- * [[ Automatic Summaries ]] revised on 2005 Jan 25 18:23 by AutomaticImport
208
- * [[ Author ]] revised on 2005 Jan 25 18:23 by AutomaticImport
209
-
210
-
211
- </automaticsummary>
@@ -1,9 +0,0 @@
1
- h2. Recent News
2
-
3
- p{font-size: x-small;}. Recent News was created automatically from pages whose title matches /^News:/i.
4
-
5
- <automaticsummary>
6
-
7
- No pages found to summarise
8
-
9
- </automaticsummary>
@@ -1,9 +0,0 @@
1
- h1. Ruby
2
-
3
- Soks is written in ruby. It relies on version 1.8.2 or greater.
4
-
5
- Ruby is an enjoyably clear Japanese Perl, Python, Smalltalk, and LISP amalgam. It runs on Mac OS X, Windows and most unix variants.
6
-
7
- * To download go to: http://www.ruby-lang.org/en/20020102.html
8
- * To learn try: http://poignantguide.net/ruby/ or http://www.pragmaticprogrammer.com/titles/ruby/index.html
9
- * To discuss: http://groups-beta.google.com/group/comp.lang.ruby
@@ -1,16 +0,0 @@
1
- h2. Soks Features
2
-
3
- p{font-size: x-small;}. Soks Features is a separate page that has been inserted into the home page using [ [ insert soks features ]].
4
-
5
- * Automatic linking between pages (no need for wiki words or any bracket shenanigans).
6
- * Easy to add, move and delete pages
7
- * Calendars, automatic summaries and the like
8
- * An api for classes to modify the wiki
9
- * Flat file storage (incidentally, this makes it easy to [[ import from instiki => how to import a site from instiki ]] using its export function)
10
- * Easy to edit the look of the wiki with per wiki templates.
11
- * Built in web server (No need for Apache)
12
- * Textile
13
- * Uploads and Images
14
- * RSS feed for changes to any page
15
-
16
- See also: planned features
@@ -1,60 +0,0 @@
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
- * [[ Picture of a logo for the ruby language ]]
8
- * [[ Picture of a pair of soks ]]
9
- * [[ All News ]]
10
- * [[ Author ]]
11
- * [[ Automatic linking between pages ]]
12
- * [[ Automatic Summaries ]]
13
- * [[ Bug: Does not make use of if-modified-since request headers ]]
14
- * [[ Bug: GEM limits title lengths ]]
15
- * [[ Bug: notextile does not prevent page inserts ]]
16
- * [[ Bug: Punctuation in page titles still problematic ]]
17
- * [[ Bug: Uploads are not password protected ]]
18
- * [[ Distribution Home Page ]]
19
- * [[ Fixed Bug: [FATAL] When renaming upload / picture pages ]]
20
- * [[ fixed bug: automatic link links to stuff inside html tags ]]
21
- * [[ Fixed Bug: Duplicate links-to a page sometimes appear ]]
22
- * [[ Fixed Bug: External links incorrectly include trailing punctuation ]]
23
- * [[ Fixed Bug: In a list of links, the last link is sometimes not linked ]]
24
- * [[ Fixed Bug: Inserted pages are not refreshed when new autolinks are made ]]
25
- * [[ Fixed Bug: No robots.txt or favicon.ico ]]
26
- * [[ Fixed Bug: no superclass method `_deprecated_base64 ]]
27
- * [[ Fixed Bug: RSS feed shows oldest 15 revisions (not newest!) ]]
28
- * [[ Fixed Bug: Search box width does not match column width ]]
29
- * [[ Fixed Bug: Search includes leading and trailing spaces ]]
30
- * [[ Fixed Bug: Site Index updates on every revision ]]
31
- * [[ Fixed Bug: Symbols are not always correctly rendered in html ]]
32
- * [[ home page ]]
33
- * [[ How to administrate this wiki ]]
34
- * [[ How to change the way this wiki looks ]]
35
- * [[ How to export a site from this wiki ]]
36
- * [[ How to hack soks ]]
37
- * [[ How to import a site from instiki ]]
38
- * [[ How to install Soks ]]
39
- * [[ How to report a bug ]]
40
- * [[ How to use the keyboard shortcuts ]]
41
- * [[ How to use this wiki ]]
42
- * [[ Instructions and Howtos ]]
43
- * [[ Known bugs ]]
44
- * [[ Latest News ]]
45
- * [[ let me know ]]
46
- * [[ List of changes ]]
47
- * [[ Planned Features ]]
48
- * [[ README ]]
49
- * [[ Recent Blog Entries ]]
50
- * [[ Recent Changes to This Site ]]
51
- * [[ Recent News ]]
52
- * [[ RSS feed ]]
53
- * [[ Ruby ]]
54
- * [[ sandbox ]]
55
- * [[ SOKS features ]]
56
- * [[ Soks Licence ]]
57
- * [[ tamc2 ]]
58
-
59
-
60
- </automaticsummary>
@@ -1,64 +0,0 @@
1
- h1. Soks is licensed under the The Ruby License
2
-
3
- Note: This licence applies to all that is contained in this distribution EXCEPT files within the contrib folder which may be under different licences.
4
-
5
- Soks is copyrighted (c) 2004, 2005 free software by Thomas Counsell tamc@rubyforge.org.
6
-
7
- <pre>
8
-
9
- You can redistribute it and/or modify it under either the terms of the
10
- GPL (see the file GPL), or the conditions below:
11
-
12
- 1. You may make and give away verbatim copies of the source form of the
13
- software without restriction, provided that you duplicate all of the
14
- original copyright notices and associated disclaimers.
15
-
16
- 2. You may modify your copy of the software in any way, provided that
17
- you do at least ONE of the following:
18
-
19
- a) place your modifications in the Public Domain or otherwise
20
- make them Freely Available, such as by posting said
21
- modifications to Usenet or an equivalent medium, or by allowing
22
- the author to include your modifications in the software.
23
-
24
- b) use the modified software only within your corporation or
25
- organization.
26
-
27
- c) rename any non-standard executables so the names do not conflict
28
- with standard executables, which must also be provided.
29
-
30
- d) make other distribution arrangements with the author.
31
-
32
- 3. You may distribute the software in object code or executable
33
- form, provided that you do at least ONE of the following:
34
-
35
- a) distribute the executables and library files of the software,
36
- together with instructions (in the manual page or equivalent)
37
- on where to get the original distribution.
38
-
39
- b) accompany the distribution with the machine-readable source of
40
- the software.
41
-
42
- c) give non-standard executables non-standard names, with
43
- instructions on where to get the original software distribution.
44
-
45
- d) make other distribution arrangements with the author.
46
-
47
- 4. You may modify and include the part of the software into any other
48
- software (possibly commercial). But some files in the distribution
49
- are not written by the author, so that they are not under these terms.
50
-
51
- For the list of those files and their copying conditions, see the
52
- contrib directory.
53
-
54
- 5. The scripts and library files supplied as input to or produced as
55
- output from the software do not automatically fall under the
56
- copyright of the software, but belong to whomever generated them,
57
- and may be sold commercially, and may be aggregated with this
58
- software.
59
-
60
- 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
61
- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
62
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
63
- PURPOSE.
64
- </pre>
@@ -1,3 +0,0 @@
1
- Automatic linking links to things inside tags. This is particularly noticable because v-0-0-3 was released with a page named AutomaticSummary and tags named <automaticsummary>.
2
-
3
- Fixed in v0-0-4
@@ -1 +0,0 @@
1
- Please email any comments, suggestions, bug reports and the like to me, Tom Counsell, at tamc@rubyforge.org
@@ -1,2 +0,0 @@
1
- | one | two | three |
2
- | a | b | c |
@@ -1 +0,0 @@
1
- aka. Tom Counsell aka the author.
@@ -1 +0,0 @@
1
- page deleted
@@ -1,113 +0,0 @@
1
- #!/usr/local/bin/ruby
2
-
3
- # This file was created automatically on <%= Time.now %>
4
- # Uncomment different sections to enable features of this wiki.
5
-
6
- #Add the required libraries to the search path:
7
- $:.push( "<%= settings[:soks_libraries].join('","') %>" )
8
-
9
- require 'soks'
10
-
11
- module StartSoks
12
-
13
- =begin
14
- # You can choose what level of authentication to apply based on regular expressions matched
15
- # against the page title. These regexps are tried in order.Defaults are here:
16
- AUTHENTICATORS = [ [ %r{/(view|rss|print|find|meta)/.*}, WEBrick::HTTPAuth::NoAuthenticationRequired.new ],
17
- # [ %r{/upload/.*}, WEBrick::HTTPAuth::NotPermitted.new ],
18
- # [ %r{/(edit|save)/home page}, WEBrick::HTTPAuth::SiteWidePassword.new('password','You need to enter the site wide password to edit the home page') ],
19
- # [ %r{/(view|edit|save)/private.*},WEBrick::HTTPAuth::BasicAuth.new( :UserDB => htpasswd, :Realm => realm ) ], # See webrick documentation
20
- [ %r{.*}, WEBrick::HTTPAuth::AskForUserName.new( 'No password, just enter a name') ]
21
- ]
22
-
23
- =end
24
-
25
- CUSTOMSETTINGS = {
26
- :root_directory => '<%= settings[:root_directory] %>',
27
- # :name => 'test',
28
- # :description => 'A Soks Wiki',
29
- :url => '<%= settings[:url] %>',
30
- :port => <%= settings[:port] %>,
31
- # :authenticators => AUTHENTICATORS
32
- }
33
-
34
- def self.start
35
- start_wiki( CUSTOMSETTINGS ) do |wiki, view|
36
- AutomaticRecentChanges.new( wiki )
37
-
38
- AutomaticOnePageIndex.new( wiki ) # Index on one page, best for small wikis
39
- # AutomaticMultiPageIndex.new( wiki ) # One page per letter index, best for large wikis
40
-
41
- calendar = AutomaticCalendar.new( wiki ) # Adds a series of calendar pages to the wiki
42
- AutomaticUpcomingEvents.new( wiki, calendar ) # Creates a page with the next weeks events drawn from the calendar pages
43
-
44
-
45
-
46
- # Example of an automatically generated summary of any new pages whose title starts with 'blog'
47
- AutomaticSummary.new( wiki,
48
- :regexp_for_title => /^Blog/i,
49
- :max_pages_to_show => 10,
50
- :pagename => 'Recent Blog Entries',
51
- :only_new_pages => true,
52
- :lines_to_include => 10,
53
- :include_metadata => true
54
- )
55
-
56
- # Examples of automatically generated summary pages:
57
- AutomaticSummary.new( wiki,
58
- :regexp_for_title => /^How to /i,
59
- :pagename => 'Instructions and Howtos'
60
- )
61
-
62
- AutomaticSummary.new( wiki,
63
- :regexp_for_title => /^Bug:/i,
64
- :pagename => 'Known bugs',
65
- :include_metadata => true
66
- )
67
-
68
- AutomaticSummary.new( wiki,
69
- :regexp_for_title => /^News:/i,
70
- :max_pages_to_show => 1,
71
- :lines_to_include => 10,
72
- :reverse_sort => true,
73
- :pagename => 'Latest News'
74
- )
75
-
76
- AutomaticSummary.new( wiki,
77
- :regexp_for_title => /^News:/i,
78
- :lines_to_include => 10,
79
- :reverse_sort => true,
80
- :pagename => 'All News'
81
- )
82
-
83
-
84
- # Possible settings for the Automatic Summary (with defaults)
85
- # :regexp_for_title => /.*/, # These three regexps act as an AND
86
- # :regexp_for_author => nil,
87
- # :regexp_for_content => nil,
88
- # :max_pages_to_show => nil,
89
- # :pagename => 'Summary',
90
- # :author => 'AutomaticSummary',
91
- # :lines_to_include => nil, # nil puts a link, can pass a block instead to render
92
- # :only_new_pages => false,
93
- # :sort_pages_by => :created_on, # Could be :revised_on or :score or :name or :name_for_index, or :author
94
- # :reverse_sort => false,
95
- # :include_metadata => false, # Includes author and time in summary
96
- # :summarise_revisions => false, # If true, then can contain several revisions for same page
97
- # :remove_deleted_pages => true, # If false will keep references to deleted pages
98
-
99
- # This is an array of titles that will NOT be automatically linked.
100
- # Default is the 30 most common words in the english language
101
- # Note that pages can still be created with these titles, and they can still be manually linked to.
102
- banned_titles = IO.readlines('<%= settings[:root_directory] %>/banned_titles.txt').map { |title| title.strip }
103
-
104
- # This takes a while, so do it last. Note that the banned_titles argument is optional.
105
- AutomaticUpdateCrossLinks.new( wiki, view, banned_titles )
106
- end
107
- end
108
-
109
- end
110
-
111
- if $0 == __FILE__ then
112
- StartSoks::start
113
- end
@@ -1 +0,0 @@
1
- 0.0.5
@@ -1 +0,0 @@
1
- <%= page.content %>
@@ -1,61 +0,0 @@
1
- <span class='pagename'><a href='/meta/<%= pagename %>'><%= pagename %></a></span>
2
- <form method=post action='/save/<%= pagename %>' >
3
- <table>
4
- <tr>
5
- <td>Title:</td>
6
- <td><input name='newtitle' size = '60' value='<%= pagename %>' onClick="this.value == 'Type a title here' ? this.value = '' : true"/></td>
7
- </tr>
8
-
9
- <tr>
10
- <td valign='top'>Content:</td>
11
- <td>
12
- <textarea name='content' rows=30 cols=60 onClick="this.value == 'Type what you want here and click save' ? this.value = '' : true" ><%= page.content %></textarea>
13
- </td>
14
- <td valign='top'>
15
- <div class='tips'>
16
- <ul>
17
- <li>h1. big heading</li>
18
- <li>h2. little heading</li>
19
- <li>*bold text* = <b>bold text</b></li>
20
- <li>_italic text_ = <i>italic text</i></li>
21
- <li>* bullet one = &#8226; bullet one<br />
22
- * bullet two = &#8226; bullet two</li>
23
- <li># list one = 1. list one<br />
24
- # list two = 2. list two</li>
25
- <li>Most links are automatic</li>
26
- <li>[[insert picture of title of picture]]</li>
27
- <li><a href='http://hobix.com/textile/quick.html' target='textile_ref'>More</a></li>
28
- </ul>
29
- </div>
30
- <td>
31
- </tr>
32
- <tr>
33
- <td>Author:</td>
34
- <td><a href='/<%= person %>'><%= person %></a> Quit browser to log out.</td>
35
- </tr>
36
- <tr>
37
- <td></td>
38
- <td><input name=action value='Save' type=submit accesskey="S"> <a href='/<%= pagename %>' accesskey="C" >(Do not Save)</a> or <a href='/delete/<%= pagename %>' accesskey='D'>(Delete)</a> this page.</td>
39
- </tr>
40
- </table>
41
- </form>
42
- <hr />
43
- <% unless page.empty? %>
44
- <p>The most recent change was made by <a href='/<%= page.author %>'><%= page.author %></a> who changed:</p>
45
- <%
46
- page.changes.each do |change_group|
47
- change_group.each do |change|
48
- case change[0]
49
- when "-" %>
50
- <del><%= change[1] %>. <%= change[2] %></del><br />
51
- <% when "+" %>
52
- <%= change[1] %>. <%= change[2] %><br />
53
- <%
54
- end
55
- end
56
- end
57
- %>
58
- <p>
59
- <a href='/rollback/<%= pagename %>?revision=<%= page.number-1 %>' accesskey="U" >(Undo this change)</a> or <a href='/revisions/<%= pagename %>' accesskey="A" >(Show All changes)</a>
60
- </p>
61
- <% end %>
@@ -1,38 +0,0 @@
1
- <span class='pagename'><a href='/<%= pagename %>'><%= pagename %></a> <%= page.deleted? ? "(Deleted)" : '' %></span>
2
-
3
- <h1><%= pagename %></h1>
4
-
5
- <p>This page was created on <%= page.created_on %> by <%= page.revisions.first.author %>. It was last updated on <%= page.revised_on %> by <%= page.author %>. It has been changed <%= page.revisions.size %> time(s) (roughly once every <%= (((Time.now-page.created_on)/page.revisions.size)/(60*60*24)).to_i %> days).</p>
6
-
7
- <div class='metacolumn' >
8
- <h2>Wiki links from this page</h2>
9
-
10
- <ul>
11
- <% page.links_from.each do |linkedpage| %>
12
- <li><a href='/<%= linkedpage.name %>'><%= linkedpage.name %></a></li>
13
- <% end %>
14
- </ul>
15
-
16
- </div>
17
-
18
- <div class='metacolumn' >
19
- <h2>Wiki links to this page</h2>
20
-
21
- <ul>
22
- <% page.links_to.each do |linkedpage| %>
23
- <li><a href='/<%= linkedpage.name %>'><%= linkedpage.name %></a></li>
24
- <% end %>
25
- </ul>
26
-
27
- </div>
28
-
29
- <div class='metacolumn' >
30
- <h2>Authors</h2>
31
-
32
- <ol>
33
- <% page.revisions.each do |revision| %>
34
- <li><a href='/<%= revision.author %>'><%= revision.author %></a></li>
35
- <% end %>
36
- </ol>
37
-
38
- </div>
@@ -1,6 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
- <html xmlns="http://www.w3.org/1999/xhtml">
3
- <body>
4
- <%= renderedview %>
5
- </body>
6
- </html>
@@ -1,19 +0,0 @@
1
- <span class='pagename'><%= pagename %></span>
2
- <div class="undochange">
3
- <% page.revisions.reverse_each do |revision| %>
4
- <p><%= revision.created_on %> by <a href='/<%= revision.author %>'><%= revision.author %></a> <a href='/rollback/<%= pagename %>?revision=<%= revision.number-1 %>' >(undo)</a>:</p>
5
- <p>
6
- <% revision.changes.each do |change_group| %>
7
- <% change_group.each do |change|
8
- case change[0]
9
- when "-" %>
10
- <del><%= change[1] %>. <%= change[2] %></del><br />
11
- <% when "+" %>
12
- <%= change[1] %>. <%= change[2] %><br />
13
- <% end %>
14
- <% end %>
15
- <% end %>
16
- </p>
17
- <% end %>
18
- <br />(<a href='/edit/<%= pagename %>' accesskey="R" >Return to editing</a>)
19
- </div>