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
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.8.4
2
+ rubygems_version: 0.8.8
3
3
  specification_version: 1
4
4
  name: Soks
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.5
7
- date: 2005-02-12
6
+ version: 0.0.6
7
+ date: 2005-03-15
8
8
  summary: Yet another wiki.
9
9
  require_paths:
10
10
  - lib
@@ -47,6 +47,8 @@ files:
47
47
  - contrib/diff/lcs/string.rb
48
48
  - lib/authenticators.rb
49
49
  - lib/helpers
50
+ - lib/soks-drb.rb
51
+ - lib/soks-fcgi.rb
50
52
  - lib/soks-model.rb
51
53
  - lib/soks-servlet.rb
52
54
  - lib/soks-storage.rb
@@ -56,71 +58,52 @@ files:
56
58
  - lib/soks.rb
57
59
  - lib/helpers/default-helpers.rb
58
60
  - lib/helpers/mail2wiki-helper.rb
61
+ - lib/helpers/mail2wiki-test.rb
59
62
  - lib/helpers/rss2wiki-helper.rb
63
+ - lib/helpers/wiki2html.rb
60
64
  - templates/default
61
- - templates/instiki
62
- - templates/rails
63
65
  - templates/default/attachment
64
66
  - templates/default/banned_titles.txt
65
67
  - templates/default/content
66
68
  - templates/default/start.rb
67
69
  - templates/default/version.txt
68
70
  - templates/default/views
71
+ - templates/default/attachment/blank.gif
69
72
  - templates/default/attachment/favicon.ico
73
+ - templates/default/attachment/logo.jpg
70
74
  - templates/default/attachment/logo.png
71
75
  - templates/default/attachment/logo.tiff
72
- - templates/default/attachment/logo_thumb.bmp
73
76
  - templates/default/attachment/newpage.js
77
+ - templates/default/attachment/pngbehavior.htc
74
78
  - templates/default/attachment/print_stylesheet.css
75
79
  - templates/default/attachment/robots.txt
76
80
  - templates/default/attachment/rss.png
77
81
  - templates/default/attachment/stylesheet.css
82
+ - templates/default/attachment/tiny-logo thumb.bmp
78
83
  - templates/default/content/All%20News.textile
84
+ - templates/default/content/Api%20for%20classes%20to%20modify%20the%20wiki.textile
79
85
  - templates/default/content/Attached%20ruby%20logo.textile
80
86
  - templates/default/content/Attached%20test%20thing.textile
81
87
  - templates/default/content/Author.textile
82
88
  - templates/default/content/Automatic%20linking%20between%20pages.textile
83
89
  - templates/default/content/Automatic%20Summaries.textile
84
- - templates/default/content/Bug%3A%20%5BFATAL%5D%20When%20renaming%20upload%20%2F%20picture%2.textile
85
- - templates/default/content/Bug%3A%20Automatic%20link%20links%20to%20stuff%20inside%20%3Chtml.textile
86
- - templates/default/content/Bug%3A%20Does%20not%20make%20use%20of%20if%2Dmodified%2Dsince%20r.textile
87
- - templates/default/content/Bug%3A%20Duplicate%20links%2Dto%20a%20page%20sometimes%20appear.textile
88
- - templates/default/content/Bug%3A%20External%20links%20incorrectly%20include%20trailing%20pu.textile
90
+ - templates/default/content/bug%3A%20competing%20edits.textile
89
91
  - templates/default/content/Bug%3A%20GEM%20limits%20title%20lengths.textile
90
- - templates/default/content/Bug%3A%20In%20a%20list%20of%20links%2C%20the%20last%20link%20is%2.textile
91
- - templates/default/content/Bug%3A%20Inserted%20pages%20are%20not%20refreshed%20when%20new%20.textile
92
- - templates/default/content/Bug%3A%20No%20robots%2Etxt%20or%20favicon%2Eico.textile
93
- - templates/default/content/Bug%3A%20no%20superclass%20method%20%60%5Fdeprecated%5Fbase64.textile
94
92
  - templates/default/content/Bug%3A%20notextile%20does%20not%20prevent%20page%20inserts.textile
95
- - templates/default/content/Bug%3A%20Page%20titles%20cannot%20have%20html%20tags%20in%20them.textile
96
- - templates/default/content/Bug%3A%20Punctuation%20in%20page%20titles%20still%20problematic.textile
97
- - templates/default/content/Bug%3A%20RSS%20feed%20shows%20oldest%2015%20revisions%20%28not%20.textile
98
- - templates/default/content/Bug%3A%20Search%20box%20width%20does%20not%20match%20column%20wid.textile
99
- - templates/default/content/Bug%3A%20Search%20includes%20leading%20and%20trailing%20spaces.textile
100
- - templates/default/content/Bug%3A%20Search%20inluced%20leading%20and%20trailing%20spaces.textile
101
- - templates/default/content/Bug%3A%20Site%20Index%20updates%20on%20every%20revision.textile
102
- - templates/default/content/Bug%3A%20Symbols%20are%20not%20always%20correctly%20rendered%20in.textile
103
- - templates/default/content/Bug%3A%20Uploads%20are%20not%20password%20protected.textile
104
- - templates/default/content/Fixed%20Bug%3A%20%5BFATAL%5D%20When%20renaming%20upload%20%2F%20p.textile
105
- - templates/default/content/fixed%20bug%3A%20automatic%20link%20links%20to%20stuff%20inside%2.textile
106
- - templates/default/content/Fixed%20Bug%3A%20Duplicate%20links%2Dto%20a%20page%20sometimes%20.textile
107
- - templates/default/content/Fixed%20Bug%3A%20External%20links%20incorrectly%20include%20trail.textile
108
- - templates/default/content/Fixed%20Bug%3A%20In%20a%20list%20of%20links%2C%20the%20last%20lin.textile
109
- - templates/default/content/Fixed%20Bug%3A%20Inserted%20pages%20are%20not%20refreshed%20when%.textile
110
- - templates/default/content/Fixed%20Bug%3A%20No%20robots%2Etxt%20or%20favicon%2Eico.textile
111
- - templates/default/content/Fixed%20Bug%3A%20no%20superclass%20method%20%60%5Fdeprecated%5Fba.textile
112
- - templates/default/content/Fixed%20Bug%3A%20RSS%20feed%20shows%20oldest%2015%20revisions%20%.textile
113
- - templates/default/content/Fixed%20Bug%3A%20Search%20box%20width%20does%20not%20match%20colu.textile
114
- - templates/default/content/Fixed%20Bug%3A%20Search%20includes%20leading%20and%20trailing%20s.textile
115
- - templates/default/content/Fixed%20Bug%3A%20Site%20Index%20updates%20on%20every%20revision.textile
116
- - templates/default/content/Fixed%20Bug%3A%20Symbols%20are%20not%20always%20correctly%20rende.textile
93
+ - templates/default/content/Bug%3A%20RSS%20feed%20does%20not%20validate.textile
94
+ - templates/default/content/Bug%3A%20Textile%20mishandles%20paragraphs.textile
95
+ - templates/default/content/Bug%3A%20Unanticipated%20Rollbacks.textile
96
+ - templates/default/content/ctrl%2Dn.textile
117
97
  - templates/default/content/Home%20Page.textile
118
98
  - templates/default/content/How%20to%20administrate%20this%20wiki.textile
119
99
  - templates/default/content/How%20to%20change%20the%20way%20this%20wiki%20looks.textile
120
100
  - templates/default/content/How%20to%20export%20a%20site%20from%20this%20wiki.textile
101
+ - templates/default/content/How%20to%20get%20the%20latest%20Soks%20from%20cvs.textile
121
102
  - templates/default/content/How%20to%20hack%20soks.textile
122
103
  - templates/default/content/How%20to%20import%20a%20site%20from%20instiki.textile
104
+ - templates/default/content/How%20to%20import%20data%20to%20this%20wiki.textile
123
105
  - templates/default/content/How%20to%20install%20Soks.textile
106
+ - templates/default/content/How%20to%20password%20protect%20your%20wiki.textile
124
107
  - templates/default/content/How%20to%20report%20a%20bug.textile
125
108
  - templates/default/content/How%20to%20use%20the%20keyboard%20shortcuts.textile
126
109
  - templates/default/content/How%20to%20use%20this%20wiki.textile
@@ -129,6 +112,9 @@ files:
129
112
  - templates/default/content/Latest%20News.textile
130
113
  - templates/default/content/let%20me%20know.textile
131
114
  - templates/default/content/List%20of%20changes.textile
115
+ - templates/default/content/New%20page%20templates%20or%20categories%20code.textile
116
+ - templates/default/content/New%20Recent%20Changes%20class.textile
117
+ - templates/default/content/Per%20Wiki%20Templates.textile
132
118
  - templates/default/content/Picture%20of%20a%20logo%20for%20the%20ruby%20language.textile
133
119
  - templates/default/content/Picture%20of%20a%20pair%20of%20soks.textile
134
120
  - templates/default/content/Picture%20of%20powered%20by%20ruby%20logo.textile
@@ -140,12 +126,12 @@ files:
140
126
  - templates/default/content/Recent%20News.textile
141
127
  - templates/default/content/RSS%20feed.textile
142
128
  - templates/default/content/Ruby.textile
143
- - templates/default/content/sandbox.textile
144
- - templates/default/content/Site%20Index.textile
129
+ - templates/default/content/Sidebar%20Page.textile
145
130
  - templates/default/content/SOKS%20features.textile
146
131
  - templates/default/content/Soks%20Licence.textile
132
+ - templates/default/content/tamc.textile
147
133
  - templates/default/content/tamc2.textile
148
- - templates/default/content/test%20page.textile
134
+ - templates/default/content/Type%20a%20title%20here.textile
149
135
  - templates/default/views/frame.rhtml
150
136
  - templates/default/views/messages.yaml
151
137
  - templates/default/views/Page_content.rhtml
@@ -157,195 +143,7 @@ files:
157
143
  - templates/default/views/Page_search_results.rhtml
158
144
  - templates/default/views/Page_view.rhtml
159
145
  - templates/default/views/UploadPage_edit.rhtml
160
- - templates/instiki/attachment
161
- - templates/instiki/banned_titles.txt
162
- - templates/instiki/content
163
- - templates/instiki/start.rb
164
- - templates/instiki/version.txt
165
- - templates/instiki/views
166
- - templates/instiki/attachment/header_backdrop.png
167
- - templates/instiki/attachment/instiki_style_sheet.css
168
- - templates/instiki/attachment/logo.tiff
169
- - templates/instiki/attachment/logotext.png
170
- - templates/instiki/attachment/newpage.js
171
- - templates/instiki/attachment/rss.png
172
- - templates/instiki/content/All%20News.textile
173
- - templates/instiki/content/Attached%20ruby%20logo.textile
174
- - templates/instiki/content/Attached%20test%20thing.textile
175
- - templates/instiki/content/Author.textile
176
- - templates/instiki/content/Automatic%20linking%20between%20pages.textile
177
- - templates/instiki/content/Automatic%20Summaries.textile
178
- - templates/instiki/content/Bug%3A%20%5BFATAL%5D%20When%20renaming%20upload%20%2F%20picture%2.textile
179
- - templates/instiki/content/Bug%3A%20Automatic%20link%20links%20to%20stuff%20inside%20%3Chtml.textile
180
- - templates/instiki/content/Bug%3A%20Does%20not%20make%20use%20of%20if%2Dmodified%2Dsince%20r.textile
181
- - templates/instiki/content/Bug%3A%20Duplicate%20links%2Dto%20a%20page%20sometimes%20appear.textile
182
- - templates/instiki/content/Bug%3A%20External%20links%20incorrectly%20include%20trailing%20pu.textile
183
- - templates/instiki/content/Bug%3A%20GEM%20limits%20title%20lengths.textile
184
- - templates/instiki/content/Bug%3A%20In%20a%20list%20of%20links%2C%20the%20last%20link%20is%2.textile
185
- - templates/instiki/content/Bug%3A%20Inserted%20pages%20are%20not%20refreshed%20when%20new%20.textile
186
- - templates/instiki/content/Bug%3A%20No%20robots%2Etxt%20or%20favicon%2Eico.textile
187
- - templates/instiki/content/Bug%3A%20no%20superclass%20method%20%60%5Fdeprecated%5Fbase64.textile
188
- - templates/instiki/content/Bug%3A%20notextile%20does%20not%20prevent%20page%20inserts.textile
189
- - templates/instiki/content/Bug%3A%20Page%20titles%20cannot%20have%20html%20tags%20in%20them.textile
190
- - templates/instiki/content/Bug%3A%20Punctuation%20in%20page%20titles%20still%20problematic.textile
191
- - templates/instiki/content/Bug%3A%20RSS%20feed%20shows%20oldest%2015%20revisions%20%28not%20.textile
192
- - templates/instiki/content/Bug%3A%20Search%20box%20width%20does%20not%20match%20column%20wid.textile
193
- - templates/instiki/content/Bug%3A%20Search%20includes%20leading%20and%20trailing%20spaces.textile
194
- - templates/instiki/content/Bug%3A%20Search%20inluced%20leading%20and%20trailing%20spaces.textile
195
- - templates/instiki/content/Bug%3A%20Site%20Index%20updates%20on%20every%20revision.textile
196
- - templates/instiki/content/Bug%3A%20Symbols%20are%20not%20always%20correctly%20rendered%20in.textile
197
- - templates/instiki/content/Bug%3A%20Uploads%20are%20not%20password%20protected.textile
198
- - templates/instiki/content/Fixed%20Bug%3A%20%5BFATAL%5D%20When%20renaming%20upload%20%2F%20p.textile
199
- - templates/instiki/content/fixed%20bug%3A%20automatic%20link%20links%20to%20stuff%20inside%2.textile
200
- - templates/instiki/content/Fixed%20Bug%3A%20Duplicate%20links%2Dto%20a%20page%20sometimes%20.textile
201
- - templates/instiki/content/Fixed%20Bug%3A%20External%20links%20incorrectly%20include%20trail.textile
202
- - templates/instiki/content/Fixed%20Bug%3A%20In%20a%20list%20of%20links%2C%20the%20last%20lin.textile
203
- - templates/instiki/content/Fixed%20Bug%3A%20Inserted%20pages%20are%20not%20refreshed%20when%.textile
204
- - templates/instiki/content/Fixed%20Bug%3A%20No%20robots%2Etxt%20or%20favicon%2Eico.textile
205
- - templates/instiki/content/Fixed%20Bug%3A%20no%20superclass%20method%20%60%5Fdeprecated%5Fba.textile
206
- - templates/instiki/content/Fixed%20Bug%3A%20RSS%20feed%20shows%20oldest%2015%20revisions%20%.textile
207
- - templates/instiki/content/Fixed%20Bug%3A%20Search%20box%20width%20does%20not%20match%20colu.textile
208
- - templates/instiki/content/Fixed%20Bug%3A%20Search%20includes%20leading%20and%20trailing%20s.textile
209
- - templates/instiki/content/Fixed%20Bug%3A%20Site%20Index%20updates%20on%20every%20revision.textile
210
- - templates/instiki/content/Fixed%20Bug%3A%20Symbols%20are%20not%20always%20correctly%20rende.textile
211
- - templates/instiki/content/Home%20Page.textile
212
- - templates/instiki/content/How%20to%20administrate%20this%20wiki.textile
213
- - templates/instiki/content/How%20to%20change%20the%20way%20this%20wiki%20looks.textile
214
- - templates/instiki/content/How%20to%20export%20a%20site%20from%20this%20wiki.textile
215
- - templates/instiki/content/How%20to%20hack%20soks.textile
216
- - templates/instiki/content/How%20to%20import%20a%20site%20from%20instiki.textile
217
- - templates/instiki/content/How%20to%20install%20Soks.textile
218
- - templates/instiki/content/How%20to%20report%20a%20bug.textile
219
- - templates/instiki/content/How%20to%20use%20the%20keyboard%20shortcuts.textile
220
- - templates/instiki/content/How%20to%20use%20this%20wiki.textile
221
- - templates/instiki/content/Instructions%20and%20Howtos.textile
222
- - templates/instiki/content/Known%20bugs.textile
223
- - templates/instiki/content/Latest%20News.textile
224
- - templates/instiki/content/let%20me%20know.textile
225
- - templates/instiki/content/List%20of%20changes.textile
226
- - templates/instiki/content/Picture%20of%20a%20logo%20for%20the%20ruby%20language.textile
227
- - templates/instiki/content/Picture%20of%20a%20pair%20of%20soks.textile
228
- - templates/instiki/content/Picture%20of%20powered%20by%20ruby%20logo.textile
229
- - templates/instiki/content/Picture%20of%20Type%20a%20title%20here.textile
230
- - templates/instiki/content/Planned%20Features.textile
231
- - templates/instiki/content/README.textile
232
- - templates/instiki/content/Recent%20Blog%20Entries.textile
233
- - templates/instiki/content/Recent%20Changes%20to%20This%20Site.textile
234
- - templates/instiki/content/Recent%20News.textile
235
- - templates/instiki/content/RSS%20feed.textile
236
- - templates/instiki/content/Ruby.textile
237
- - templates/instiki/content/sandbox.textile
238
- - templates/instiki/content/Site%20Index.textile
239
- - templates/instiki/content/SOKS%20features.textile
240
- - templates/instiki/content/Soks%20Licence.textile
241
- - templates/instiki/content/tamc2.textile
242
- - templates/instiki/content/test%20page.textile
243
- - templates/instiki/views/frame.rhtml
244
- - templates/instiki/views/messages.yaml
245
- - templates/instiki/views/Page_content.rhtml
246
- - templates/instiki/views/Page_edit.rhtml
247
- - templates/instiki/views/Page_meta.rhtml
248
- - templates/instiki/views/Page_print.rhtml
249
- - templates/instiki/views/Page_revisions.rhtml
250
- - templates/instiki/views/Page_rss.rhtml
251
- - templates/instiki/views/Page_search_results.rhtml
252
- - templates/instiki/views/Page_view.rhtml
253
- - templates/instiki/views/UploadPage_edit.rhtml
254
- - templates/rails/attachment
255
- - templates/rails/banned_titles.txt
256
- - templates/rails/content
257
- - templates/rails/start.rb
258
- - templates/rails/version.txt
259
- - templates/rails/views
260
- - templates/rails/attachment/2colheader.css
261
- - templates/rails/attachment/basics.css
262
- - templates/rails/attachment/header_backdrop.png
263
- - templates/rails/attachment/logo.tiff
264
- - templates/rails/attachment/logotext.png
265
- - templates/rails/attachment/newpage.js
266
- - templates/rails/attachment/rss.png
267
- - templates/rails/content/All%20News.textile
268
- - templates/rails/content/Attached%20ruby%20logo.textile
269
- - templates/rails/content/Attached%20test%20thing.textile
270
- - templates/rails/content/Author.textile
271
- - templates/rails/content/Automatic%20linking%20between%20pages.textile
272
- - templates/rails/content/Automatic%20Summaries.textile
273
- - templates/rails/content/Bug%3A%20%5BFATAL%5D%20When%20renaming%20upload%20%2F%20picture%2.textile
274
- - templates/rails/content/Bug%3A%20Automatic%20link%20links%20to%20stuff%20inside%20%3Chtml.textile
275
- - templates/rails/content/Bug%3A%20Does%20not%20make%20use%20of%20if%2Dmodified%2Dsince%20r.textile
276
- - templates/rails/content/Bug%3A%20Duplicate%20links%2Dto%20a%20page%20sometimes%20appear.textile
277
- - templates/rails/content/Bug%3A%20External%20links%20incorrectly%20include%20trailing%20pu.textile
278
- - templates/rails/content/Bug%3A%20GEM%20limits%20title%20lengths.textile
279
- - templates/rails/content/Bug%3A%20In%20a%20list%20of%20links%2C%20the%20last%20link%20is%2.textile
280
- - templates/rails/content/Bug%3A%20Inserted%20pages%20are%20not%20refreshed%20when%20new%20.textile
281
- - templates/rails/content/Bug%3A%20No%20robots%2Etxt%20or%20favicon%2Eico.textile
282
- - templates/rails/content/Bug%3A%20no%20superclass%20method%20%60%5Fdeprecated%5Fbase64.textile
283
- - templates/rails/content/Bug%3A%20notextile%20does%20not%20prevent%20page%20inserts.textile
284
- - templates/rails/content/Bug%3A%20Page%20titles%20cannot%20have%20html%20tags%20in%20them.textile
285
- - templates/rails/content/Bug%3A%20Punctuation%20in%20page%20titles%20still%20problematic.textile
286
- - templates/rails/content/Bug%3A%20RSS%20feed%20shows%20oldest%2015%20revisions%20%28not%20.textile
287
- - templates/rails/content/Bug%3A%20Search%20box%20width%20does%20not%20match%20column%20wid.textile
288
- - templates/rails/content/Bug%3A%20Search%20includes%20leading%20and%20trailing%20spaces.textile
289
- - templates/rails/content/Bug%3A%20Search%20inluced%20leading%20and%20trailing%20spaces.textile
290
- - templates/rails/content/Bug%3A%20Site%20Index%20updates%20on%20every%20revision.textile
291
- - templates/rails/content/Bug%3A%20Symbols%20are%20not%20always%20correctly%20rendered%20in.textile
292
- - templates/rails/content/Bug%3A%20Uploads%20are%20not%20password%20protected.textile
293
- - templates/rails/content/Fixed%20Bug%3A%20%5BFATAL%5D%20When%20renaming%20upload%20%2F%20p.textile
294
- - templates/rails/content/fixed%20bug%3A%20automatic%20link%20links%20to%20stuff%20inside%2.textile
295
- - templates/rails/content/Fixed%20Bug%3A%20Duplicate%20links%2Dto%20a%20page%20sometimes%20.textile
296
- - templates/rails/content/Fixed%20Bug%3A%20External%20links%20incorrectly%20include%20trail.textile
297
- - templates/rails/content/Fixed%20Bug%3A%20In%20a%20list%20of%20links%2C%20the%20last%20lin.textile
298
- - templates/rails/content/Fixed%20Bug%3A%20Inserted%20pages%20are%20not%20refreshed%20when%.textile
299
- - templates/rails/content/Fixed%20Bug%3A%20No%20robots%2Etxt%20or%20favicon%2Eico.textile
300
- - templates/rails/content/Fixed%20Bug%3A%20no%20superclass%20method%20%60%5Fdeprecated%5Fba.textile
301
- - templates/rails/content/Fixed%20Bug%3A%20RSS%20feed%20shows%20oldest%2015%20revisions%20%.textile
302
- - templates/rails/content/Fixed%20Bug%3A%20Search%20box%20width%20does%20not%20match%20colu.textile
303
- - templates/rails/content/Fixed%20Bug%3A%20Search%20includes%20leading%20and%20trailing%20s.textile
304
- - templates/rails/content/Fixed%20Bug%3A%20Site%20Index%20updates%20on%20every%20revision.textile
305
- - templates/rails/content/Fixed%20Bug%3A%20Symbols%20are%20not%20always%20correctly%20rende.textile
306
- - templates/rails/content/Home%20Page.textile
307
- - templates/rails/content/How%20to%20administrate%20this%20wiki.textile
308
- - templates/rails/content/How%20to%20change%20the%20way%20this%20wiki%20looks.textile
309
- - templates/rails/content/How%20to%20export%20a%20site%20from%20this%20wiki.textile
310
- - templates/rails/content/How%20to%20hack%20soks.textile
311
- - templates/rails/content/How%20to%20import%20a%20site%20from%20instiki.textile
312
- - templates/rails/content/How%20to%20install%20Soks.textile
313
- - templates/rails/content/How%20to%20report%20a%20bug.textile
314
- - templates/rails/content/How%20to%20use%20the%20keyboard%20shortcuts.textile
315
- - templates/rails/content/How%20to%20use%20this%20wiki.textile
316
- - templates/rails/content/Instructions%20and%20Howtos.textile
317
- - templates/rails/content/Known%20bugs.textile
318
- - templates/rails/content/Latest%20News.textile
319
- - templates/rails/content/let%20me%20know.textile
320
- - templates/rails/content/List%20of%20changes.textile
321
- - templates/rails/content/Picture%20of%20a%20logo%20for%20the%20ruby%20language.textile
322
- - templates/rails/content/Picture%20of%20a%20pair%20of%20soks.textile
323
- - templates/rails/content/Picture%20of%20powered%20by%20ruby%20logo.textile
324
- - templates/rails/content/Picture%20of%20Type%20a%20title%20here.textile
325
- - templates/rails/content/Planned%20Features.textile
326
- - templates/rails/content/README.textile
327
- - templates/rails/content/Recent%20Blog%20Entries.textile
328
- - templates/rails/content/Recent%20Changes%20to%20This%20Site.textile
329
- - templates/rails/content/Recent%20News.textile
330
- - templates/rails/content/RSS%20feed.textile
331
- - templates/rails/content/Ruby.textile
332
- - templates/rails/content/sandbox.textile
333
- - templates/rails/content/Site%20Index.textile
334
- - templates/rails/content/SOKS%20features.textile
335
- - templates/rails/content/Soks%20Licence.textile
336
- - templates/rails/content/tamc2.textile
337
- - templates/rails/content/test%20page.textile
338
- - templates/rails/views/frame.rhtml
339
- - templates/rails/views/messages.yaml
340
- - templates/rails/views/Page_content.rhtml
341
- - templates/rails/views/Page_edit.rhtml
342
- - templates/rails/views/Page_meta.rhtml
343
- - templates/rails/views/Page_print.rhtml
344
- - templates/rails/views/Page_revisions.rhtml
345
- - templates/rails/views/Page_rss.rhtml
346
- - templates/rails/views/Page_search_results.rhtml
347
- - templates/rails/views/Page_view.rhtml
348
- - templates/rails/views/UploadPage_edit.rhtml
146
+ - test/test_soks-utils.rb
349
147
  - LICENSE.txt
350
148
  - README.txt
351
149
  test_files: []
@@ -1 +0,0 @@
1
- content moved to [[Fixed Bug: [FATAL] When renaming upload / picture pages]]
@@ -1 +0,0 @@
1
- content moved to [[Fixed bug: automatic link links to stuff inside <html> tags]]
@@ -1 +0,0 @@
1
- Currently tells the browser to not cache any page. This is wasteful of bandwidth and increases server load. Should handle the if-modified-since request headers to return 'not modified' messages instead.
@@ -1 +0,0 @@
1
- content moved to [[Fixed Bug: Duplicate links-to a page sometimes appear]]
@@ -1 +0,0 @@
1
- content moved to [[Fixed Bug: External links incorrectly include trailing punctuation]]
@@ -1 +0,0 @@
1
- content moved to [[Fixed Bug: In a list of links, the last link is sometimes not linked]]
@@ -1 +0,0 @@
1
- content moved to [[Fixed Bug: Inserted pages are not refreshed when new autolinks are made]]
@@ -1 +0,0 @@
1
- content moved to [[Fixed Bug: No robots.txt or favicon.ico]]
@@ -1,7 +0,0 @@
1
- Not sure if this is general, but if using apache to proxy forward onto the webrick server (as occurs on http://soks.counsell.org ), punctuation in the title sometimes stops apache from forwarding the request.
2
-
3
- E.g. Bug: [FATAL] When renaming upload / picture pages exists, but apache doesn't even pass the request
4
-
5
- To be specific:
6
-
7
- Slashes, and colons definitely work, quesion marks and square brackets definitely don't. Others sometimes work.
@@ -1 +0,0 @@
1
- content moved to [[Fixed Bug: RSS feed shows oldest 15 revisions (not newest!)]]
@@ -1 +0,0 @@
1
- content moved to [[Fixed Bug: Search box width does not match column width]]
@@ -1 +0,0 @@
1
- content moved to [[Fixed Bug: Search includes leading and trailing spaces]]
@@ -1 +0,0 @@
1
- content moved to [[Bug: Search includes leading and trailing spaces]]
@@ -1 +0,0 @@
1
- content moved to [[Fixed Bug: Site Index updates on every revision]]
@@ -1 +0,0 @@
1
- content moved to [[Fixed Bug: Symbols are not always correctly rendered in html]]
@@ -1,3 +0,0 @@
1
- Anything uploaded to the website (e.g. pictures, or attached files) is not protected by any form of authentication.
2
-
3
- If anyone knows how to add authentication to the Webrick FileHandler then please let me know.
@@ -1 +0,0 @@
1
- content moved to [[Fixed Bug: no superclass method `_deprecated_base64]]
@@ -1,34 +0,0 @@
1
- Fixed in v-0-0-5
2
-
3
- <pre>
4
- ERROR NoMethodError: undefined method `pagename' for #<Wiki:0x2ae7c94c>
5
- /usr/local/lib/ruby/gems/1.8/gems/Soks-0.0.4/lib/soks-view.rb:441:in `send'
6
- /usr/local/lib/ruby/gems/1.8/gems/Soks-0.0.4/lib/soks-view.rb:441:in `method_missing'
7
- /usr/local/lib/ruby/gems/1.8/gems/Soks-0.0.4/lib/soks-view.rb:380:in `move'
8
- /usr/local/lib/ruby/gems/1.8/gems/Soks-0.0.4/lib/soks-servlet.rb:92:in `doUpload'
9
- /usr/local/lib/ruby/gems/1.8/gems/Soks-0.0.4/lib/soks-servlet.rb:34:in `send'
10
- /usr/local/lib/ruby/gems/1.8/gems/Soks-0.0.4/lib/soks-servlet.rb:34:in `service'
11
- /usr/local/lib/ruby/1.8/webrick/httpserver.rb:97:in `service'
12
- /usr/local/lib/ruby/1.8/webrick/httpserver.rb:58:in `run'
13
- /usr/local/lib/ruby/1.8/webrick/server.rb:153:in `start_thread'
14
- /usr/local/lib/ruby/1.8/webrick/server.rb:147:in `start'
15
- /usr/local/lib/ruby/1.8/webrick/server.rb:147:in `start_thread'
16
- /usr/local/lib/ruby/1.8/webrick/server.rb:97:in `start'
17
- /usr/local/lib/ruby/1.8/webrick/server.rb:89:in `each'
18
- /usr/local/lib/ruby/1.8/webrick/server.rb:89:in `start'
19
- /usr/local/lib/ruby/1.8/webrick/server.rb:79:in `start'
20
- /usr/local/lib/ruby/1.8/webrick/server.rb:79:in `start'
21
- /usr/local/lib/ruby/gems/1.8/gems/Soks-0.0.4/lib/soks-servlet.rb:143:in `start_wiki'
22
- start.rb:26:in `start'
23
- </pre>
24
-
25
- Fix is that line 380 of Soks-view.rb should be changed from:
26
- <code>
27
- @wiki.revise( newpagename, "#{$MESSAGES[:content_moved_from]} [[#{pagename}]]", 'AutomaticPageMover')
28
- <code>
29
- To:
30
- <code>
31
- @wiki.revise( newpagename, "#{$MESSAGES[:content_moved_from]} [[#{oldpagename}]]", 'AutomaticPageMover')
32
- <code>
33
-
34
- Will fix in the next release
@@ -1,3 +0,0 @@
1
- On the right hand side of a page are normally links to other pages that link to this page. In some cases these might have several copies of the same link.
2
-
3
- Not seen this recently. May have been fixed when added the code to make sure two threads couldn't edit the same page at the same time.
@@ -1,3 +0,0 @@
1
- External links, such as www.slashdot.org incorrectly include trailing punctuation like the full stop on the end of this sentence: www.slashdot.org.
2
-
3
- Fixed in v-0-0-5.
@@ -1,13 +0,0 @@
1
- In a list of links, the last link is sometimes not linked.
2
-
3
- e.g: 'How to administrate this wiki' might not be linked in this list:
4
-
5
- * How to export a site from this wiki
6
- * How to hack soks
7
- * How to import a site from instiki
8
- * How to use this wiki
9
- * How to change the way this wiki looks
10
- * How to administrate this wiki
11
-
12
-
13
- Fixed in v0-0-4
@@ -1,9 +0,0 @@
1
- If page one inserts the content of page two using [ [ insert page two ]] then if the content of page two is changed, page one correctly updates. However, if a page three is created, and this is automatically linked from page two, it does not automatically trigger a refresh on page one.
2
-
3
- Solution is probably to modify /lib/soks-view.rb to put:
4
- <code>
5
- page.inserted_into.each { |page| refresh_redcloth( page ) }
6
- </code>
7
- On line 453, or somerwhere nearby in the refresh_redcloth method.
8
-
9
- Fixed in v0-0-4
@@ -1,4 +0,0 @@
1
- By default no robots.txt or favicon.ico (and no way of including favicon.ico at all?)
2
-
3
- Ok, as of v-0-0-5, these now re-direct to a robots.txt and or a favicon.ico file in the attachment directory. This seems ok for some browsers, but not for others.
4
-
@@ -1,15 +0,0 @@
1
- The RSS feed only includes 15 items (in order to meet with the standard as I understand it). Unfortunately when the number of revisions > 15 it only shows the oldest revisions. Dopey.
2
-
3
- Fixed in v0-0-4
4
-
5
- Fix is in templates/default/views/Page_rss.rhtml
6
-
7
- Replace
8
- <code>
9
- for revision in page.revisions
10
- </code>
11
-
12
- with
13
- <code>
14
- page.revisions.reverse_each do |revision|
15
- </code>
@@ -1,3 +0,0 @@
1
- The search box on the right does not match the width of the bar, making it look odd.
2
-
3
- Fixed in v0-0-4
@@ -1,3 +0,0 @@
1
- If there are any leading or trailing spaces in what is entered into the search box, then it assumes you actually wanted to search for them: e.g. Looks for 'soks ' rather than 'soks'.
2
-
3
- Fixed in v-0-0-5
@@ -1,3 +0,0 @@
1
- Recent Changes suggests that the Site Index updates on every revision, not just on page created or deleted.
2
-
3
- Not sure it does anymore? Maybe fixed? Hope so.
@@ -1,5 +0,0 @@
1
- Symbols are often incorrectly encoded in the textile to html conversion.
2
-
3
- Eg. > should be the same as <notextile>></notextile>
4
-
5
- Fixed in v0-0-4
@@ -1,3 +0,0 @@
1
- This occurs in at least ruby-1.8.1-r7 (gentoo), and can be fixed by updating to 1.8.2
2
-
3
- Hopefully this has been fixed in v-0-0-5 although I haven't checked on ruby 1.8.1
@@ -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,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,2 +0,0 @@
1
- | one | two | three |
2
- | a | b | c |
@@ -1 +0,0 @@
1
- page deleted