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
@@ -4,208 +4,206 @@ p{font-size: x-small;}. Recent Changes to This Site was created automatically fr
4
4
 
5
5
  <automaticsummary>
6
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
7
+ * [[ Distribution Home Page ]] revised on 2005 Mar 15 16:46 by tamc2
8
+ * [[ How to report a bug ]] revised on 2005 Mar 15 16:46 by tamc2
9
+ * [[ Site Index ]] revised on 2005 Mar 15 16:39 by AutomaticIndex
10
+ * [[ Site Index ]] revised on 2005 Mar 15 16:39 by AutomaticIndex
11
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:39 by AutomaticSummary
12
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:39 by AutomaticSummary
13
+ * [[ Fixed Bug: ampersand in page name creates missing links that work ]] revised on 2005 Mar 15 16:39 by tamc2
14
+ * [[ Fixed Bug: ampersand in page name creates missing links that work ]] revised on 2005 Mar 15 16:39 by AutomaticPageMover
15
+ * [[ Bug: ampersand in page name creates missing links that work ]] revised on 2005 Mar 15 16:39 by tamc2
16
+ * [[ List of changes ]] revised on 2005 Mar 15 16:38 by tamc2
17
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:24 by AutomaticSummary
18
+ * [[ Bug: RSS feed does not validate ]] revised on 2005 Mar 15 16:24 by tamc2
19
+ * [[ Site Index ]] revised on 2005 Mar 15 16:24 by AutomaticIndex
20
+ * [[ Site Index ]] revised on 2005 Mar 15 16:24 by AutomaticIndex
21
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:24 by AutomaticSummary
22
+ * [[ Fixed Bug: Upload filenames needlessly mangled ]] revised on 2005 Mar 15 16:24 by tamc2
23
+ * [[ Fixed Bug: Upload filenames needlessly mangled ]] revised on 2005 Mar 15 16:24 by AutomaticPageMover
24
+ * [[ Bug: Upload filenames needlessly mangled ]] revised on 2005 Mar 15 16:24 by tamc2
25
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:24 by AutomaticSummary
26
+ * [[ Bug: Upload filenames needlessly mangled ]] revised on 2005 Mar 15 16:24 by tamc2
27
+ * [[ Site Index ]] revised on 2005 Mar 15 16:23 by AutomaticIndex
28
+ * [[ Site Index ]] revised on 2005 Mar 15 16:23 by AutomaticIndex
29
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:23 by AutomaticSummary
30
+ * [[ Fixed Bug: Pictures and Attachments linked to site root ]] revised on 2005 Mar 15 16:23 by tamc2
31
+ * [[ Fixed Bug: Pictures and Attachments linked to site root ]] revised on 2005 Mar 15 16:23 by AutomaticPageMover
32
+ * [[ Bug: Pictures and Attachments linked to site root ]] revised on 2005 Mar 15 16:23 by tamc2
33
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:23 by AutomaticSummary
34
+ * [[ Bug: Pictures and Attachments linked to site root ]] revised on 2005 Mar 15 16:23 by tamc2
35
+ * [[ Site Index ]] revised on 2005 Mar 15 16:22 by AutomaticIndex
36
+ * [[ Site Index ]] revised on 2005 Mar 15 16:22 by AutomaticIndex
37
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:22 by AutomaticSummary
38
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:22 by AutomaticSummary
39
+ * [[ Fixed Bug: Uploads are not password protected ]] revised on 2005 Mar 15 16:22 by tamc2
40
+ * [[ Fixed Bug: Uploads are not password protected ]] revised on 2005 Mar 15 16:22 by AutomaticPageMover
41
+ * [[ Bug: Uploads are not password protected ]] revised on 2005 Mar 15 16:22 by tamc2
42
+ * [[ Site Index ]] revised on 2005 Mar 15 16:22 by AutomaticIndex
43
+ * [[ Site Index ]] revised on 2005 Mar 15 16:22 by AutomaticIndex
44
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:22 by AutomaticSummary
45
+ * [[ Fixed Bug: AutomaticRecentChanges ignores changes parameter ]] revised on 2005 Mar 15 16:22 by tamc2
46
+ * [[ Fixed Bug: AutomaticRecentChanges ignores changes parameter ]] revised on 2005 Mar 15 16:22 by AutomaticPageMover
47
+ * [[ Bug: AutomaticRecentChanges ignores changes parameter ]] revised on 2005 Mar 15 16:22 by tamc2
48
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:22 by AutomaticSummary
49
+ * [[ Bug: AutomaticRecentChanges ignores changes parameter ]] revised on 2005 Mar 15 16:22 by tamc2
50
+ * [[ Site Index ]] revised on 2005 Mar 15 16:21 by AutomaticIndex
51
+ * [[ Site Index ]] revised on 2005 Mar 15 16:21 by AutomaticIndex
52
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:21 by AutomaticSummary
53
+ * [[ Fixed Bug: Update frequency rounds inappropriately in meta view ]] revised on 2005 Mar 15 16:21 by tamc2
54
+ * [[ Fixed Bug: Update frequency rounds inappropriately in meta view ]] revised on 2005 Mar 15 16:21 by AutomaticPageMover
55
+ * [[ Bug: Update frequency rounds inappropriately in meta view ]] revised on 2005 Mar 15 16:21 by tamc2
56
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:21 by AutomaticSummary
57
+ * [[ Bug: Update frequency rounds inappropriately in meta view ]] revised on 2005 Mar 15 16:21 by tamc2
58
+ * [[ List of changes ]] revised on 2005 Mar 15 16:21 by tamc2
59
+ * [[ Site Index ]] revised on 2005 Mar 15 16:20 by AutomaticIndex
60
+ * [[ Site Index ]] revised on 2005 Mar 15 16:20 by AutomaticIndex
61
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:20 by AutomaticSummary
62
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:20 by AutomaticSummary
63
+ * [[ Fixed Bug: Halting can corrupt revisions ]] revised on 2005 Mar 15 16:20 by tamc2
64
+ * [[ Fixed Bug: Halting can corrupt revisions ]] revised on 2005 Mar 15 16:20 by AutomaticPageMover
65
+ * [[ Bug: Halting can corrupt revisions ]] revised on 2005 Mar 15 16:20 by tamc2
66
+ * [[ Site Index ]] revised on 2005 Mar 15 16:18 by AutomaticIndex
67
+ * [[ Site Index ]] revised on 2005 Mar 15 16:18 by AutomaticIndex
68
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:18 by AutomaticSummary
69
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:18 by AutomaticSummary
70
+ * [[ Fixed Bug: Do not save and delete links confusing on edit page ]] revised on 2005 Mar 15 16:18 by tamc2
71
+ * [[ Fixed Bug: Do not save and delete links confusing on edit page ]] revised on 2005 Mar 15 16:18 by AutomaticPageMover
72
+ * [[ Bug: Do not save and delete links confusing on edit page ]] revised on 2005 Mar 15 16:18 by tamc2
73
+ * [[ Site Index ]] revised on 2005 Mar 15 16:17 by AutomaticIndex
74
+ * [[ Site Index ]] revised on 2005 Mar 15 16:17 by AutomaticIndex
75
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:17 by AutomaticSummary
76
+ * [[ Fixed Bug: Certain text crashes yaml revision loading ]] revised on 2005 Mar 15 16:17 by tamc2
77
+ * [[ Fixed Bug: Certain text crashes yaml revision loading ]] revised on 2005 Mar 15 16:17 by AutomaticPageMover
78
+ * [[ Bug: Certain text crashes yaml revision loading ]] revised on 2005 Mar 15 16:17 by tamc2
79
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:17 by AutomaticSummary
80
+ * [[ Bug: Certain text crashes yaml revision loading ]] revised on 2005 Mar 15 16:17 by tamc2
81
+ * [[ Site Index ]] revised on 2005 Mar 15 16:16 by AutomaticIndex
82
+ * [[ Site Index ]] revised on 2005 Mar 15 16:16 by AutomaticIndex
83
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:16 by AutomaticSummary
84
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:16 by AutomaticSummary
85
+ * [[ Fixed Bug: Search textarea and button rendered without vertical separation ]] revised on 2005 Mar 15 16:16 by tamc2
86
+ * [[ Fixed Bug: Search textarea and button rendered without vertical separation ]] revised on 2005 Mar 15 16:16 by AutomaticPageMover
87
+ * [[ Bug: Search textarea and button rendered without vertical separation ]] revised on 2005 Mar 15 16:16 by tamc2
88
+ * [[ Site Index ]] revised on 2005 Mar 15 16:15 by AutomaticIndex
89
+ * [[ Site Index ]] revised on 2005 Mar 15 16:15 by AutomaticIndex
90
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:15 by AutomaticSummary
91
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:15 by AutomaticSummary
92
+ * [[ Fixed Bug: Punctuation in page titles still problematic ]] revised on 2005 Mar 15 16:15 by tamc2
93
+ * [[ Fixed Bug: Punctuation in page titles still problematic ]] revised on 2005 Mar 15 16:15 by AutomaticPageMover
94
+ * [[ Bug: Punctuation in page titles still problematic ]] revised on 2005 Mar 15 16:15 by tamc2
95
+ * [[ List of changes ]] revised on 2005 Mar 15 16:14 by tamc2
96
+ * [[ Site Index ]] revised on 2005 Mar 15 16:14 by AutomaticIndex
97
+ * [[ Site Index ]] revised on 2005 Mar 15 16:14 by AutomaticIndex
98
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:14 by AutomaticSummary
99
+ * [[ Known bugs ]] revised on 2005 Mar 15 16:14 by AutomaticSummary
100
+ * [[ Fixed Bug: Time per change on meta page view incorrect ]] revised on 2005 Mar 15 16:14 by tamc2
101
+ * [[ Fixed Bug: Time per change on meta page view incorrect ]] revised on 2005 Mar 15 16:14 by AutomaticPageMover
102
+ * [[ Bug: Time per change on meta page view incorrect ]] revised on 2005 Mar 15 16:14 by tamc2
103
+ * [[ List of changes ]] revised on 2005 Mar 15 16:13 by tamc2
104
+ * [[ README ]] revised on 2005 Mar 15 05:06 by tamc2
105
+ * [[ README ]] revised on 2005 Mar 15 05:05 by tamc2
106
+ * [[ Known bugs ]] revised on 2005 Mar 15 03:46 by AutomaticSummary
107
+ * [[ Bug: Do not save and delete links confusing on edit page ]] revised on 2005 Mar 15 03:46 by Bil Kleb
108
+ * [[ Bug: Do not save and delete links confusing on edit page ]] revised on 2005 Mar 14 19:33 by tamc2
109
+ * [[ Known bugs ]] revised on 2005 Mar 14 19:33 by AutomaticSummary
110
+ * [[ Bug: Do not save and delete links confusing on edit page ]] revised on 2005 Mar 14 19:33 by tamc2
111
+ * [[ Known bugs ]] revised on 2005 Mar 14 19:32 by AutomaticSummary
112
+ * [[ Bug: Do not save and delete links confusing on edit page ]] revised on 2005 Mar 14 19:32 by tamc2
113
+ * [[ Bug: Do not save and delete links confusing on edit page ]] revised on 2005 Mar 14 19:29 by tamc2
114
+ * [[ Bug: Do not save and delete links confusing on edit page ]] revised on 2005 Mar 14 19:29 by tamc2
115
+ * [[ Bug: Do not save and delete links confusing on edit page ]] revised on 2005 Mar 14 19:29 by tamc2
116
+ * [[ Known bugs ]] revised on 2005 Mar 14 19:29 by AutomaticSummary
117
+ * [[ Bug: Do not save and delete links confusing on edit page ]] revised on 2005 Mar 14 19:29 by tamc2
118
+ * [[ Known bugs ]] revised on 2005 Mar 14 19:27 by AutomaticSummary
119
+ * [[ Bug: Do not save and delete links confusing on edit page ]] revised on 2005 Mar 14 19:27 by tamc2
120
+ * [[ Known bugs ]] revised on 2005 Mar 14 14:08 by AutomaticSummary
121
+ * [[ Bug: Do not save and delete links confusing on edit page ]] revised on 2005 Mar 14 14:08 by Bil Kleb
122
+ * [[ Site Index ]] revised on 2005 Mar 14 14:07 by AutomaticIndex
123
+ * [[ Picture of bad_buttons_better ]] revised on 2005 Mar 14 14:07 by Bil Kleb
124
+ * [[ Known bugs ]] revised on 2005 Mar 14 14:06 by AutomaticSummary
125
+ * [[ Bug: Do not save and delete links confusing on edit page ]] revised on 2005 Mar 14 14:06 by Bil Kleb
126
+ * [[ Known bugs ]] revised on 2005 Mar 14 14:03 by AutomaticSummary
127
+ * [[ Bug: Do not save and delete links confusing on edit page ]] revised on 2005 Mar 14 14:03 by Bil Kleb
128
+ * [[ Bug: Do not save and delete links confusing on edit page ]] revised on 2005 Mar 14 11:56 by Bil Kleb
129
+ * [[ Known bugs ]] revised on 2005 Mar 14 11:56 by AutomaticSummary
130
+ * [[ Bug: Do not save and delete links confusing on edit page ]] revised on 2005 Mar 14 11:56 by Bil Kleb
131
+ * [[ Bug: Do not save and delete links confusing on edit page ]] revised on 2005 Mar 14 11:55 by Bil Kleb
132
+ * [[ Bug: Do not save and delete links confusing on edit page ]] revised on 2005 Mar 14 11:55 by Bil Kleb
133
+ * [[ Known bugs ]] revised on 2005 Mar 14 11:55 by AutomaticSummary
134
+ * [[ Bug: Do not save and delete links confusing on edit page ]] revised on 2005 Mar 14 11:55 by Bil Kleb
135
+ * [[ Site Index ]] revised on 2005 Mar 14 11:54 by AutomaticIndex
136
+ * [[ Picture of bad_buttons_bad ]] revised on 2005 Mar 14 11:54 by Bil Kleb
137
+ * [[ Known bugs ]] revised on 2005 Mar 14 11:53 by AutomaticSummary
138
+ * [[ Bug: Do not save and delete links confusing on edit page ]] revised on 2005 Mar 14 11:53 by Bil Kleb
139
+ * [[ List of changes ]] revised on 2005 Mar 14 10:05 by tamc2
140
+ * [[ List of changes ]] revised on 2005 Mar 14 10:04 by tamc2
141
+ * [[ Site Index ]] revised on 2005 Mar 14 10:02 by AutomaticIndex
142
+ * [[ Sidebar Page ]] revised on 2005 Mar 14 10:02 by tamc2
143
+ * [[ List of changes ]] revised on 2005 Mar 14 06:02 by tamc2
144
+ * [[ List of changes ]] revised on 2005 Mar 13 13:39 by tamc2
145
+ * [[ List of changes ]] revised on 2005 Mar 13 13:38 by tamc2
146
+ * [[ Automatic Summaries ]] revised on 2005 Mar 12 16:22 by Bil
147
+ * [[ Automatic Summaries ]] revised on 2005 Mar 12 16:16 by Bil
148
+ * [[ Automatic Summaries ]] revised on 2005 Mar 12 16:16 by Bil
149
+ * [[ Automatic Summaries ]] revised on 2005 Mar 12 16:15 by Bil
150
+ * [[ List of changes ]] revised on 2005 Mar 12 11:08 by Bil
151
+ * [[ List of changes ]] revised on 2005 Mar 12 11:00 by Bil
152
+ * [[ List of changes ]] revised on 2005 Mar 12 10:56 by tamc2
153
+ * [[ Known bugs ]] revised on 2005 Mar 12 10:51 by AutomaticSummary
154
+ * [[ Bug: Punctuation in page titles still problematic ]] revised on 2005 Mar 12 10:51 by Bil
155
+ * [[ List of changes ]] revised on 2005 Mar 12 09:56 by tamc2
156
+ * [[ Known bugs ]] revised on 2005 Mar 12 09:39 by AutomaticSummary
157
+ * [[ Bug: Punctuation in page titles still problematic ]] revised on 2005 Mar 12 09:39 by tamc2
158
+ * [[ How to get the latest Soks from cvs ]] revised on 2005 Mar 12 09:10 by tamc2
159
+ * [[ How to get the latest Soks from cvs ]] revised on 2005 Mar 12 09:10 by tamc2
160
+ * [[ How to get the latest Soks from cvs ]] revised on 2005 Mar 12 09:09 by tamc2
161
+ * [[ List of changes ]] revised on 2005 Mar 12 09:04 by tamc2
162
+ * [[ List of changes ]] revised on 2005 Mar 12 09:02 by tamc2
163
+ * [[ How to import data to this wiki ]] revised on 2005 Mar 11 16:02 by Bil
164
+ * [[ Known bugs ]] revised on 2005 Mar 11 09:16 by AutomaticSummary
165
+ * [[ Bug: Punctuation in page titles still problematic ]] revised on 2005 Mar 11 08:44 by Bil
166
+ * [[ Known bugs ]] revised on 2005 Mar 11 08:43 by AutomaticSummary
167
+ * [[ Bug: Punctuation in page titles still problematic ]] revised on 2005 Mar 11 08:43 by Bil
168
+ * [[ Known bugs ]] revised on 2005 Mar 11 08:42 by AutomaticSummary
169
+ * [[ Bug: Punctuation in page titles still problematic ]] revised on 2005 Mar 11 08:42 by Bil
170
+ * [[ Known bugs ]] revised on 2005 Mar 11 08:36 by AutomaticSummary
171
+ * [[ Bug: ampersand in page name creates missing links that work ]] revised on 2005 Mar 11 08:36 by tamc2
172
+ * [[ Known bugs ]] revised on 2005 Mar 11 08:28 by AutomaticSummary
173
+ * [[ Bug: ampersand in page name creates missing links that work ]] revised on 2005 Mar 11 08:28 by Bil
174
+ * [[ Known bugs ]] revised on 2005 Mar 11 07:30 by AutomaticSummary
175
+ * [[ Bug: ampersand in page name creates missing links that work ]] revised on 2005 Mar 11 07:30 by tamc2
176
+ * [[ Known bugs ]] revised on 2005 Mar 11 07:28 by AutomaticSummary
177
+ * [[ Bug: ampersand in page name creates missing links that work ]] revised on 2005 Mar 11 07:28 by tamc2
178
+ * [[ Site Index ]] revised on 2005 Mar 11 06:43 by AutomaticIndex
179
+ * [[ Known bugs ]] revised on 2005 Mar 11 06:42 by AutomaticSummary
180
+ * [[ Bug: ampersand in page name creates missing links that work ]] revised on 2005 Mar 11 06:42 by Bil
181
+ * [[ Site Index ]] revised on 2005 Mar 10 21:13 by AutomaticIndex
182
+ * [[ Known bugs ]] revised on 2005 Mar 10 21:12 by AutomaticSummary
183
+ * [[ Bug: Time per change on meta page view incorrect ]] revised on 2005 Mar 10 21:12 by Bil
184
+ * [[ List of changes ]] revised on 2005 Mar 10 17:40 by tamc2
185
+ * [[ Known bugs ]] revised on 2005 Mar 10 17:37 by AutomaticSummary
186
+ * [[ Bug: Certain text crashes yaml revision loading ]] revised on 2005 Mar 10 17:37 by tamc2
187
+ * [[ Known bugs ]] revised on 2005 Mar 10 14:47 by AutomaticSummary
188
+ * [[ bug: competing edits ]] revised on 2005 Mar 10 14:47 by tamc2
189
+ * [[ Site Index ]] revised on 2005 Mar 10 14:31 by AutomaticIndex
190
+ * [[ Known bugs ]] revised on 2005 Mar 10 14:31 by AutomaticSummary
191
+ * [[ bug: competing edits ]] revised on 2005 Mar 10 14:31 by Bil
192
+ * [[ How to password protect your wiki ]] revised on 2005 Mar 10 08:45 by tamc2
193
+ * [[ How to password protect your wiki ]] revised on 2005 Mar 10 07:38 by Bil Kleb
194
+ * [[ How to password protect your wiki ]] revised on 2005 Mar 10 07:34 by Bil Kleb
195
+ * [[ sandbox ]] revised on 2005 Mar 09 16:31 by tamc2
196
+ * [[ sandbox ]] revised on 2005 Mar 09 16:25 by mary
197
+ * [[ How to password protect your wiki ]] revised on 2005 Mar 09 08:53 by tamc2
198
+ * [[ How to password protect your wiki ]] revised on 2005 Mar 09 08:46 by Bil
199
+ * [[ How to password protect your wiki ]] revised on 2005 Mar 09 08:46 by Bil
200
+ * [[ How to password protect your wiki ]] revised on 2005 Mar 09 08:43 by Bil
201
+ * [[ Known bugs ]] revised on 2005 Mar 09 07:34 by AutomaticSummary
202
+ * [[ Bug: Punctuation in page titles still problematic ]] revised on 2005 Mar 09 07:34 by tamc2
203
+ * [[ Known bugs ]] revised on 2005 Mar 09 06:50 by AutomaticSummary
204
+ * [[ Bug: Punctuation in page titles still problematic ]] revised on 2005 Mar 09 06:50 by tamc2
205
+ * [[ How to password protect your wiki ]] revised on 2005 Mar 09 06:13 by Bil
206
+ * [[ Known bugs ]] revised on 2005 Mar 09 05:42 by AutomaticSummary
209
207
 
210
208
 
211
209
  </automaticsummary>
@@ -8,9 +8,10 @@ p{font-size: x-small;}. Soks Features is a separate page that has been inserted
8
8
  * An api for classes to modify the wiki
9
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
10
  * Easy to edit the look of the wiki with per wiki templates.
11
+ * [[ Variety of ways of authenticating => how to password protect your wiki]], with the authentication scheme selected based on a regexp of the page title.
11
12
  * Built in web server (No need for Apache)
12
13
  * Textile
13
14
  * Uploads and Images
14
15
  * RSS feed for changes to any page
15
16
 
16
- See also: planned features
17
+ See also: planned features and list of changes
@@ -0,0 +1,3 @@
1
+ Home Page
2
+ Site Index
3
+ [[ Recent Changes => recent changes to this site ]]
@@ -0,0 +1 @@
1
+ content moved to [[Bug: Search textarea and button rendered w/o vertical separation?]]
@@ -0,0 +1,13 @@
1
+ I had a case today where I was evidently editing a page at the same time someone else was. He won and my edits were trashed upon save. (Or at least this is what I surmise happened.)
2
+
3
+ Is this possible? --Bil
4
+
5
+ Umm, trashed on save? I hope not. I hope that if you look at the 'show all changes' for the page it will show both edits in the history? I *seriously* want to know if they are not.
6
+
7
+ As for a solution. There seem to be two routes:
8
+ # Put a 'lock' on the page, so that only one person can see the edit view at once.
9
+ # Try and merge competing edits.
10
+
11
+ I would prefer to merge, but don't know how to implement...
12
+
13
+ --tamc2
@@ -0,0 +1 @@
1
+ This is the key you press.
@@ -0,0 +1 @@
1
+ See also tamc2 or the author