typo 5.0.3.98.1 → 5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (453) hide show
  1. data/CHANGES-5.1 +54 -0
  2. data/app/apis/meta_weblog_service.rb +7 -6
  3. data/app/controllers/accounts_controller.rb +2 -1
  4. data/app/controllers/admin/content_controller.rb +45 -3
  5. data/app/controllers/admin/pages_controller.rb +1 -1
  6. data/app/controllers/admin/textfilters_controller.rb +4 -4
  7. data/app/controllers/admin/users_controller.rb +14 -2
  8. data/app/controllers/application.rb +4 -1
  9. data/app/controllers/articles_controller.rb +1 -3
  10. data/app/controllers/backend_controller.rb +2 -0
  11. data/app/controllers/comments_controller.rb +6 -0
  12. data/app/helpers/admin/base_helper.rb +24 -26
  13. data/app/helpers/admin/feedback_helper.rb +0 -20
  14. data/app/helpers/application_helper.rb +1 -0
  15. data/app/models/article.rb +2 -0
  16. data/app/models/blog.rb +1 -0
  17. data/app/models/blog_sweeper.rb +8 -9
  18. data/app/models/page_cache.rb +1 -0
  19. data/app/models/tag.rb +2 -2
  20. data/app/models/user.rb +5 -1
  21. data/app/views/admin/blacklist/destroy.html.erb +1 -1
  22. data/app/views/admin/categories/destroy.html.erb +1 -1
  23. data/app/views/admin/comments/destroy.html.erb +1 -1
  24. data/app/views/admin/content/_articles.html.erb +4 -4
  25. data/app/views/admin/content/_attachment.html.erb +6 -7
  26. data/app/views/admin/content/_drafts.html.erb +6 -0
  27. data/app/views/admin/content/_form.html.erb +47 -34
  28. data/app/views/admin/content/destroy.html.erb +1 -1
  29. data/app/views/admin/content/edit.html.erb +1 -1
  30. data/app/views/admin/content/index.html.erb +1 -6
  31. data/app/views/admin/content/new.html.erb +1 -1
  32. data/app/views/admin/pages/_form.html.erb +4 -3
  33. data/app/views/admin/pages/_pages.html.erb +3 -3
  34. data/app/views/admin/pages/destroy.html.erb +1 -1
  35. data/app/views/admin/resources/destroy.html.erb +1 -1
  36. data/app/views/admin/settings/index.html.erb +10 -0
  37. data/app/views/admin/shared/_edit.html.erb +1 -6
  38. data/app/views/admin/textfilters/destroy.html.erb +3 -0
  39. data/app/views/admin/textfilters/edit.html.erb +3 -1
  40. data/app/views/admin/textfilters/index.html.erb +1 -1
  41. data/app/views/admin/textfilters/new.html.erb +3 -1
  42. data/app/views/admin/trackbacks/show.html.erb +1 -1
  43. data/app/views/admin/users/destroy.html.erb +1 -1
  44. data/app/views/admin/users/edit.html.erb +1 -5
  45. data/app/views/admin/users/index.html.erb +1 -1
  46. data/app/views/articles/_comment_failed.html.erb +3 -0
  47. data/config/initializers/access_rules.rb +3 -3
  48. data/db/migrate/070_add_users_to_non_admins.rb +17 -0
  49. data/installer/rails_installer_defaults.yml +1 -1
  50. data/lib/tasks/release.rake +3 -3
  51. data/lib/typo_version.rb +1 -1
  52. data/public/images/admin/cancel.png +0 -0
  53. data/public/images/admin/checked.png +0 -0
  54. data/public/images/admin/delete.png +0 -0
  55. data/public/images/admin/edit.png +0 -0
  56. data/public/images/admin/show.png +0 -0
  57. data/public/javascripts/controls.js +2 -0
  58. data/public/javascripts/dragdrop.js +2 -0
  59. data/public/javascripts/effects.js +6 -4
  60. data/public/javascripts/fckeditor/editor/_source/classes/fckcontextmenu.js +13 -8
  61. data/public/javascripts/fckeditor/editor/_source/classes/fckdataprocessor.js +2 -2
  62. data/public/javascripts/fckeditor/editor/_source/classes/fckdocumentfragment_gecko.js +2 -2
  63. data/public/javascripts/fckeditor/editor/_source/classes/fckdocumentfragment_ie.js +2 -2
  64. data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange.js +189 -79
  65. data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange_gecko.js +4 -3
  66. data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange_ie.js +16 -15
  67. data/public/javascripts/fckeditor/editor/_source/classes/fckdomrangeiterator.js +30 -9
  68. data/public/javascripts/fckeditor/editor/_source/classes/fckeditingarea.js +108 -90
  69. data/public/javascripts/fckeditor/editor/_source/classes/fckelementpath.js +22 -3
  70. data/public/javascripts/fckeditor/editor/_source/classes/fckenterkey.js +76 -38
  71. data/public/javascripts/fckeditor/editor/_source/classes/fckevents.js +7 -2
  72. data/public/javascripts/fckeditor/editor/_source/classes/fckhtmliterator.js +142 -0
  73. data/public/javascripts/fckeditor/editor/_source/classes/fckicon.js +2 -2
  74. data/public/javascripts/fckeditor/editor/_source/classes/fckiecleanup.js +1 -1
  75. data/public/javascripts/fckeditor/editor/_source/classes/fckimagepreloader.js +2 -2
  76. data/public/javascripts/fckeditor/editor/_source/classes/fckkeystrokehandler.js +3 -3
  77. data/public/javascripts/fckeditor/editor/_source/classes/fckmenublock.js +8 -5
  78. data/public/javascripts/fckeditor/editor/_source/classes/fckmenublockpanel.js +3 -3
  79. data/public/javascripts/fckeditor/editor/_source/classes/fckmenuitem.js +6 -5
  80. data/public/javascripts/fckeditor/editor/_source/classes/fckpanel.js +85 -38
  81. data/public/javascripts/fckeditor/editor/_source/classes/fckplugin.js +2 -2
  82. data/public/javascripts/fckeditor/editor/_source/classes/fckspecialcombo.js +7 -8
  83. data/public/javascripts/fckeditor/editor/_source/classes/fckstyle.js +180 -17
  84. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbar.js +2 -2
  85. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbreak_gecko.js +2 -2
  86. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbreak_ie.js +1 -1
  87. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbutton.js +9 -4
  88. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbuttonui.js +5 -1
  89. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontformatcombo.js +3 -3
  90. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontscombo.js +1 -1
  91. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontsizecombo.js +1 -1
  92. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarpanelbutton.js +15 -4
  93. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarspecialcombo.js +5 -2
  94. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarstylecombo.js +13 -13
  95. data/public/javascripts/fckeditor/editor/_source/classes/fckw3crange.js +17 -13
  96. data/public/javascripts/fckeditor/editor/_source/classes/fckxml.js +2 -2
  97. data/public/javascripts/fckeditor/editor/_source/classes/fckxml_gecko.js +28 -13
  98. data/public/javascripts/fckeditor/editor/_source/classes/fckxml_ie.js +2 -2
  99. data/public/javascripts/fckeditor/editor/_source/commandclasses/fck_othercommands.js +75 -19
  100. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckblockquotecommand.js +64 -8
  101. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckcorestylecommand.js +3 -1
  102. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckfitwindow.js +2 -2
  103. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckindentcommands.js +5 -3
  104. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckjustifycommands.js +6 -6
  105. data/public/javascripts/fckeditor/editor/_source/commandclasses/fcklistcommands.js +4 -4
  106. data/public/javascripts/fckeditor/editor/_source/commandclasses/fcknamedcommand.js +3 -1
  107. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js +3 -1
  108. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js +2 -2
  109. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckremoveformatcommand.js +2 -2
  110. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckshowblocks.js +7 -9
  111. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js +4 -2
  112. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js +4 -2
  113. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckstylecommand.js +3 -3
  114. data/public/javascripts/fckeditor/editor/_source/commandclasses/fcktablecommand.js +4 -4
  115. data/public/javascripts/fckeditor/editor/_source/commandclasses/fcktextcolorcommand.js +28 -10
  116. data/public/javascripts/fckeditor/editor/_source/fckconstants.js +1 -1
  117. data/public/javascripts/fckeditor/editor/_source/fckeditorapi.js +21 -13
  118. data/public/javascripts/fckeditor/editor/_source/fckjscoreextensions.js +5 -5
  119. data/public/javascripts/fckeditor/editor/_source/fckscriptloader.js +4 -4
  120. data/public/javascripts/fckeditor/editor/_source/internals/fck.js +148 -38
  121. data/public/javascripts/fckeditor/editor/_source/internals/fck_contextmenu.js +4 -4
  122. data/public/javascripts/fckeditor/editor/_source/internals/fck_gecko.js +45 -47
  123. data/public/javascripts/fckeditor/editor/_source/internals/fck_ie.js +50 -17
  124. data/public/javascripts/fckeditor/editor/_source/internals/fckbrowserinfo.js +4 -2
  125. data/public/javascripts/fckeditor/editor/_source/internals/fckcodeformatter.js +2 -2
  126. data/public/javascripts/fckeditor/editor/_source/internals/fckcommands.js +28 -28
  127. data/public/javascripts/fckeditor/editor/_source/internals/fckconfig.js +12 -13
  128. data/public/javascripts/fckeditor/editor/_source/internals/fckdebug.js +2 -2
  129. data/public/javascripts/fckeditor/editor/_source/internals/fckdialog.js +211 -15
  130. data/public/javascripts/fckeditor/editor/_source/internals/fckdocumentprocessor.js +63 -39
  131. data/public/javascripts/fckeditor/editor/_source/internals/fckdomtools.js +177 -37
  132. data/public/javascripts/fckeditor/editor/_source/internals/fcklanguagemanager.js +2 -1
  133. data/public/javascripts/fckeditor/editor/_source/internals/fcklisthandler.js +2 -2
  134. data/public/javascripts/fckeditor/editor/_source/internals/fcklistslib.js +5 -2
  135. data/public/javascripts/fckeditor/editor/_source/internals/fckplugins.js +2 -2
  136. data/public/javascripts/fckeditor/editor/_source/internals/fckregexlib.js +5 -2
  137. data/public/javascripts/fckeditor/editor/_source/internals/fckselection.js +3 -3
  138. data/public/javascripts/fckeditor/editor/_source/internals/fckselection_gecko.js +36 -27
  139. data/public/javascripts/fckeditor/editor/_source/internals/fckselection_ie.js +91 -17
  140. data/public/javascripts/fckeditor/editor/_source/internals/fckstyles.js +22 -13
  141. data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler.js +15 -15
  142. data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler_gecko.js +2 -2
  143. data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler_ie.js +2 -2
  144. data/public/javascripts/fckeditor/editor/_source/internals/fcktoolbaritems.js +1 -1
  145. data/public/javascripts/fckeditor/editor/_source/internals/fcktoolbarset.js +32 -6
  146. data/public/javascripts/fckeditor/editor/_source/internals/fcktools.js +181 -22
  147. data/public/javascripts/fckeditor/editor/_source/internals/fcktools_gecko.js +19 -7
  148. data/public/javascripts/fckeditor/editor/_source/internals/fcktools_ie.js +8 -2
  149. data/public/javascripts/fckeditor/editor/_source/internals/fckundo.js +8 -5
  150. data/public/javascripts/fckeditor/editor/_source/internals/fckurlparams.js +2 -2
  151. data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml.js +116 -61
  152. data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml_gecko.js +6 -10
  153. data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml_ie.js +51 -56
  154. data/public/javascripts/fckeditor/editor/_source/internals/fckxhtmlentities.js +1 -1
  155. data/public/javascripts/fckeditor/editor/css/fck_editorarea.css +3 -2
  156. data/public/javascripts/fckeditor/editor/css/fck_internal.css +19 -2
  157. data/public/javascripts/fckeditor/editor/css/fck_showtableborders_gecko.css +8 -1
  158. data/public/javascripts/fckeditor/editor/css/images/fck_plugin.gif +0 -0
  159. data/public/javascripts/fckeditor/editor/dialog/common/fck_dialog_common.css +8 -1
  160. data/public/javascripts/fckeditor/editor/dialog/common/fck_dialog_common.js +199 -26
  161. data/public/javascripts/fckeditor/editor/dialog/fck_about.html +20 -14
  162. data/public/javascripts/fckeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif +0 -0
  163. data/public/javascripts/fckeditor/editor/dialog/fck_anchor.html +15 -10
  164. data/public/javascripts/fckeditor/editor/dialog/fck_button.html +9 -14
  165. data/public/javascripts/fckeditor/editor/dialog/fck_checkbox.html +8 -13
  166. data/public/javascripts/fckeditor/editor/dialog/fck_colorselector.html +4 -3
  167. data/public/javascripts/fckeditor/editor/dialog/fck_docprops.html +6 -6
  168. data/public/javascripts/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html +1 -1
  169. data/public/javascripts/fckeditor/editor/dialog/fck_flash.html +9 -3
  170. data/public/javascripts/fckeditor/editor/dialog/fck_flash/fck_flash.js +18 -11
  171. data/public/javascripts/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html +7 -3
  172. data/public/javascripts/fckeditor/editor/dialog/fck_form.html +7 -4
  173. data/public/javascripts/fckeditor/editor/dialog/fck_hiddenfield.html +12 -15
  174. data/public/javascripts/fckeditor/editor/dialog/fck_image.html +9 -3
  175. data/public/javascripts/fckeditor/editor/dialog/fck_image/fck_image.js +24 -12
  176. data/public/javascripts/fckeditor/editor/dialog/fck_image/fck_image_preview.html +24 -18
  177. data/public/javascripts/fckeditor/editor/dialog/fck_link.html +1 -1
  178. data/public/javascripts/fckeditor/editor/dialog/fck_link/fck_link.js +41 -20
  179. data/public/javascripts/fckeditor/editor/dialog/fck_listprop.html +8 -4
  180. data/public/javascripts/fckeditor/editor/dialog/fck_paste.html +53 -54
  181. data/public/javascripts/fckeditor/editor/dialog/fck_radiobutton.html +8 -13
  182. data/public/javascripts/fckeditor/editor/dialog/fck_replace.html +157 -79
  183. data/public/javascripts/fckeditor/editor/dialog/fck_select.html +14 -11
  184. data/public/javascripts/fckeditor/editor/dialog/fck_select/fck_select.js +2 -2
  185. data/public/javascripts/fckeditor/editor/dialog/fck_smiley.html +9 -4
  186. data/public/javascripts/fckeditor/editor/dialog/fck_source.html +5 -2
  187. data/public/javascripts/fckeditor/editor/dialog/fck_specialchar.html +9 -6
  188. data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages.html +2 -1
  189. data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm +3 -1
  190. data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php +5 -2
  191. data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl +2 -1
  192. data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js +0 -1
  193. data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css +1 -1
  194. data/public/javascripts/fckeditor/editor/dialog/fck_table.html +10 -5
  195. data/public/javascripts/fckeditor/editor/dialog/fck_tablecell.html +8 -6
  196. data/public/javascripts/fckeditor/editor/dialog/fck_template.html +1 -1
  197. data/public/javascripts/fckeditor/editor/dialog/fck_textarea.html +10 -11
  198. data/public/javascripts/fckeditor/editor/dialog/fck_textfield.html +10 -14
  199. data/public/javascripts/fckeditor/editor/dtd/fck_dtd_test.html +0 -2
  200. data/public/javascripts/fckeditor/editor/dtd/fck_xhtml10strict.js +2 -2
  201. data/public/javascripts/fckeditor/editor/dtd/fck_xhtml10transitional.js +3 -3
  202. data/public/javascripts/fckeditor/editor/fckdebug.html +1 -1
  203. data/public/javascripts/fckeditor/editor/fckdialog.html +660 -213
  204. data/public/javascripts/fckeditor/editor/fckeditor.html +66 -16
  205. data/public/javascripts/fckeditor/editor/fckeditor.original.html +70 -16
  206. data/public/javascripts/fckeditor/editor/filemanager/browser/default/browser.css +2 -2
  207. data/public/javascripts/fckeditor/editor/filemanager/browser/default/browser.html +37 -2
  208. data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmactualfolder.html +33 -1
  209. data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html +1 -1
  210. data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmfolders.html +2 -1
  211. data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmresourceslist.html +3 -2
  212. data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmresourcetype.html +1 -1
  213. data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmupload.html +2 -1
  214. data/public/javascripts/fckeditor/editor/filemanager/browser/default/js/common.js +34 -2
  215. data/public/javascripts/fckeditor/editor/filemanager/browser/default/js/fckxml.js +3 -3
  216. data/public/javascripts/fckeditor/editor/filemanager/connectors/aspx/connector.aspx +5 -3
  217. data/public/javascripts/fckeditor/editor/filemanager/connectors/aspx/upload.aspx +5 -3
  218. data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/basexml.pl +1 -1
  219. data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/commands.pl +50 -4
  220. data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/connector.cgi +2 -3
  221. data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/io.pl +14 -4
  222. data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/upload.cgi +2 -3
  223. data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/upload_fck.pl +23 -4
  224. data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/util.pl +1 -1
  225. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/config.py +43 -32
  226. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/connector.py +16 -16
  227. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckcommands.py +26 -9
  228. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckconnector.py +2 -2
  229. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckoutput.py +40 -9
  230. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckutil.py +20 -21
  231. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/htaccess.txt +2 -2
  232. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/upload.py +13 -13
  233. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/wsgi.py +3 -3
  234. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/zope.py +4 -5
  235. data/public/javascripts/fckeditor/editor/filemanager/connectors/test.html +34 -1
  236. data/public/javascripts/fckeditor/editor/filemanager/connectors/uploadtest.html +47 -4
  237. data/public/javascripts/fckeditor/editor/js/fckadobeair.js +176 -0
  238. data/public/javascripts/fckeditor/editor/js/fckeditorcode_gecko.js +77 -77
  239. data/public/javascripts/fckeditor/editor/js/fckeditorcode_ie.js +74 -74
  240. data/public/javascripts/fckeditor/editor/lang/_translationstatus.txt +55 -54
  241. data/public/javascripts/fckeditor/editor/lang/af.js +1 -2
  242. data/public/javascripts/fckeditor/editor/lang/ar.js +16 -17
  243. data/public/javascripts/fckeditor/editor/lang/bg.js +1 -2
  244. data/public/javascripts/fckeditor/editor/lang/bn.js +1 -2
  245. data/public/javascripts/fckeditor/editor/lang/bs.js +1 -2
  246. data/public/javascripts/fckeditor/editor/lang/ca.js +27 -28
  247. data/public/javascripts/fckeditor/editor/lang/cs.js +18 -19
  248. data/public/javascripts/fckeditor/editor/lang/da.js +1 -2
  249. data/public/javascripts/fckeditor/editor/lang/de.js +1 -2
  250. data/public/javascripts/fckeditor/editor/lang/el.js +1 -2
  251. data/public/javascripts/fckeditor/editor/lang/en-au.js +1 -2
  252. data/public/javascripts/fckeditor/editor/lang/en-ca.js +1 -2
  253. data/public/javascripts/fckeditor/editor/lang/en-uk.js +1 -2
  254. data/public/javascripts/fckeditor/editor/lang/en.js +1 -2
  255. data/public/javascripts/fckeditor/editor/lang/eo.js +1 -2
  256. data/public/javascripts/fckeditor/editor/lang/es.js +34 -35
  257. data/public/javascripts/fckeditor/editor/lang/et.js +32 -33
  258. data/public/javascripts/fckeditor/editor/lang/eu.js +32 -33
  259. data/public/javascripts/fckeditor/editor/lang/fa.js +1 -2
  260. data/public/javascripts/fckeditor/editor/lang/fi.js +15 -16
  261. data/public/javascripts/fckeditor/editor/lang/fo.js +1 -2
  262. data/public/javascripts/fckeditor/editor/lang/fr-ca.js +515 -0
  263. data/public/javascripts/fckeditor/editor/lang/fr.js +5 -6
  264. data/public/javascripts/fckeditor/editor/lang/gl.js +1 -2
  265. data/public/javascripts/fckeditor/editor/lang/he.js +15 -16
  266. data/public/javascripts/fckeditor/editor/lang/hi.js +1 -2
  267. data/public/javascripts/fckeditor/editor/lang/hr.js +1 -2
  268. data/public/javascripts/fckeditor/editor/lang/hu.js +1 -2
  269. data/public/javascripts/fckeditor/editor/lang/it.js +1 -2
  270. data/public/javascripts/fckeditor/editor/lang/ja.js +1 -2
  271. data/public/javascripts/fckeditor/editor/lang/km.js +1 -2
  272. data/public/javascripts/fckeditor/editor/lang/ko.js +25 -26
  273. data/public/javascripts/fckeditor/editor/lang/lt.js +1 -2
  274. data/public/javascripts/fckeditor/editor/lang/lv.js +1 -2
  275. data/public/javascripts/fckeditor/editor/lang/mn.js +199 -200
  276. data/public/javascripts/fckeditor/editor/lang/ms.js +1 -2
  277. data/public/javascripts/fckeditor/editor/lang/nb.js +1 -2
  278. data/public/javascripts/fckeditor/editor/lang/nl.js +1 -2
  279. data/public/javascripts/fckeditor/editor/lang/no.js +1 -2
  280. data/public/javascripts/fckeditor/editor/lang/pl.js +51 -52
  281. data/public/javascripts/fckeditor/editor/lang/pt-br.js +16 -17
  282. data/public/javascripts/fckeditor/editor/lang/pt.js +1 -2
  283. data/public/javascripts/fckeditor/editor/lang/ro.js +1 -2
  284. data/public/javascripts/fckeditor/editor/lang/ru.js +31 -32
  285. data/public/javascripts/fckeditor/editor/lang/sk.js +1 -2
  286. data/public/javascripts/fckeditor/editor/lang/sl.js +39 -40
  287. data/public/javascripts/fckeditor/editor/lang/sr-latn.js +1 -2
  288. data/public/javascripts/fckeditor/editor/lang/sr.js +1 -2
  289. data/public/javascripts/fckeditor/editor/lang/sv.js +1 -2
  290. data/public/javascripts/fckeditor/editor/lang/th.js +1 -2
  291. data/public/javascripts/fckeditor/editor/lang/tr.js +1 -2
  292. data/public/javascripts/fckeditor/editor/lang/uk.js +1 -2
  293. data/public/javascripts/fckeditor/editor/lang/vi.js +1 -2
  294. data/public/javascripts/fckeditor/editor/lang/zh-cn.js +2 -3
  295. data/public/javascripts/fckeditor/editor/lang/zh.js +1 -2
  296. data/public/javascripts/fckeditor/editor/plugins/autogrow/fckplugin.js +9 -2
  297. data/public/javascripts/fckeditor/editor/plugins/bbcode/_sample/sample.config.js +1 -1
  298. data/public/javascripts/fckeditor/editor/plugins/bbcode/_sample/sample.html +1 -1
  299. data/public/javascripts/fckeditor/editor/plugins/bbcode/fckplugin.js +2 -2
  300. data/public/javascripts/fckeditor/editor/plugins/dragresizetable/fckplugin.js +35 -11
  301. data/public/javascripts/fckeditor/editor/plugins/placeholder/fck_placeholder.html +10 -5
  302. data/public/javascripts/fckeditor/editor/plugins/placeholder/fckplugin.js +3 -3
  303. data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/de.js +2 -2
  304. data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/en.js +2 -2
  305. data/public/javascripts/fckeditor/editor/{filemanager/connectors/cfm/upload.cfm → plugins/placeholder/lang/es.js} +9 -13
  306. data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/fr.js +1 -1
  307. data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/it.js +1 -1
  308. data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/pl.js +2 -2
  309. data/public/javascripts/fckeditor/editor/plugins/simplecommands/fckplugin.js +1 -1
  310. data/public/javascripts/fckeditor/editor/plugins/tablecommands/fckplugin.js +1 -1
  311. data/public/javascripts/fckeditor/editor/skins/_fckviewstrips.html +1 -1
  312. data/public/javascripts/fckeditor/editor/skins/default/fck_dialog.css +271 -8
  313. data/public/javascripts/fckeditor/editor/skins/default/fck_editor.css +2 -2
  314. data/public/javascripts/fckeditor/editor/skins/office2003/fck_dialog.css +270 -8
  315. data/public/javascripts/fckeditor/editor/skins/office2003/fck_editor.css +2 -2
  316. data/public/javascripts/fckeditor/editor/skins/silver/fck_dialog.css +270 -11
  317. data/public/javascripts/fckeditor/editor/skins/silver/fck_editor.css +2 -2
  318. data/public/javascripts/fckeditor/fckconfig.js +58 -55
  319. data/public/javascripts/fckeditor/fckeditor.js +99 -8
  320. data/public/javascripts/fckeditor/fckeditor.py +2 -4
  321. data/public/javascripts/fckeditor/fckpackager.xml +12 -12
  322. data/public/javascripts/fckeditor/fckstyles.xml +2 -5
  323. data/public/javascripts/fckeditor/fcktemplates.xml +1 -1
  324. data/public/javascripts/fckeditor/license.txt +1 -2
  325. data/public/javascripts/prototype.js +46 -101
  326. data/public/javascripts/scriptaculous.js +28 -17
  327. data/public/stylesheets/administration.css +5 -1
  328. data/themes/dirtylicious/about.markdown +3 -0
  329. data/themes/dirtylicious/images/body.jpg +0 -0
  330. data/themes/dirtylicious/images/container.jpg +0 -0
  331. data/themes/dirtylicious/images/gravatar.gif +0 -0
  332. data/themes/dirtylicious/images/header.jpg +0 -0
  333. data/themes/dirtylicious/images/li.gif +0 -0
  334. data/themes/dirtylicious/images/main.gif +0 -0
  335. data/themes/dirtylicious/images/nav.gif +0 -0
  336. data/themes/dirtylicious/images/quote.gif +0 -0
  337. data/themes/dirtylicious/images/spinner.gif +0 -0
  338. data/themes/dirtylicious/layouts/default.html.erb +60 -0
  339. data/themes/dirtylicious/preview.png +0 -0
  340. data/themes/dirtylicious/stylesheets/application.css +327 -0
  341. data/themes/dirtylicious/views/articles/_article.html.erb +33 -0
  342. data/themes/dirtylicious/views/articles/_comment.html.erb +14 -0
  343. data/themes/dirtylicious/views/articles/_comment_form.html.erb +37 -0
  344. data/themes/dirtylicious/views/articles/_comment_list.html.erb +7 -0
  345. data/themes/dirtylicious/views/articles/_trackback.html.erb +9 -0
  346. data/themes/dirtylicious/views/articles/comment_preview.html.erb +10 -0
  347. data/themes/dirtylicious/views/articles/index.html.erb +5 -0
  348. data/themes/dirtylicious/views/articles/read.html.erb +42 -0
  349. data/themes/dirtylicious/views/shared/_search.html.erb +16 -0
  350. data/themes/standard_issue/about.markdown +5 -0
  351. data/themes/standard_issue/images/img01.gif +0 -0
  352. data/themes/standard_issue/images/img02.gif +0 -0
  353. data/themes/standard_issue/images/img03.gif +0 -0
  354. data/themes/standard_issue/images/img04.jpg +0 -0
  355. data/themes/standard_issue/images/img05.gif +0 -0
  356. data/themes/standard_issue/images/img06.gif +0 -0
  357. data/themes/standard_issue/images/img07.gif +0 -0
  358. data/themes/standard_issue/images/img08.gif +0 -0
  359. data/themes/standard_issue/images/img09.gif +0 -0
  360. data/themes/standard_issue/images/img10.gif +0 -0
  361. data/themes/standard_issue/images/spacer.gif +0 -0
  362. data/themes/standard_issue/images/spinner.gif +0 -0
  363. data/themes/standard_issue/layouts/default.html.erb +59 -0
  364. data/themes/standard_issue/preview.png +0 -0
  365. data/themes/standard_issue/stylesheets/application.css +461 -0
  366. data/themes/standard_issue/views/articles/_article.html.erb +37 -0
  367. data/themes/standard_issue/views/articles/_comment.html.erb +12 -0
  368. data/themes/standard_issue/views/articles/_comment_form.html.erb +48 -0
  369. data/themes/standard_issue/views/articles/_comment_list.html.erb +7 -0
  370. data/themes/standard_issue/views/articles/_trackback.html.erb +9 -0
  371. data/themes/standard_issue/views/articles/comment_preview.html.erb +10 -0
  372. data/themes/standard_issue/views/articles/index.html.erb +5 -0
  373. data/themes/standard_issue/views/articles/read.html.erb +42 -0
  374. data/themes/standard_issue/views/shared/_search.html.erb +17 -0
  375. data/themes/standard_issue/views/theme/static_view_test.html.erb +1 -0
  376. data/themes/typographic/images/accept.gif +0 -0
  377. data/themes/typographic/images/accept50.gif +0 -0
  378. data/themes/typographic/images/bg_white.gif +0 -0
  379. data/themes/typographic/images/bg_wrapper.gif +0 -0
  380. data/themes/typographic/images/bullet_bottom.gif +0 -0
  381. data/themes/typographic/images/bullet_right.gif +0 -0
  382. data/themes/typographic/images/email_open.gif +0 -0
  383. data/themes/typographic/images/email_open50.gif +0 -0
  384. data/themes/typographic/images/meta.gif +0 -0
  385. data/themes/typographic/images/page_edit.gif +0 -0
  386. data/themes/typographic/images/page_edit50.gif +0 -0
  387. data/themes/typographic/images/spinner.gif +0 -0
  388. data/themes/typographic/images/tag.gif +0 -0
  389. data/themes/typographic/images/user.gif +0 -0
  390. data/themes/typographic/images/user50.gif +0 -0
  391. data/themes/typographic/images/world_link.gif +0 -0
  392. data/themes/typographic/images/world_link50.gif +0 -0
  393. data/themes/typographic/layouts/default.html.erb +5 -2
  394. data/themes/typographic/stylesheets/ie6.css +86 -0
  395. data/themes/typographic/views/articles/_article.html.erb +2 -2
  396. data/vendor/plugins/fckeditor/README +0 -7
  397. data/vendor/plugins/fckeditor/app/helpers/fckeditor_helper.rb +1 -3
  398. data/vendor/plugins/fckeditor/lib/fckeditor_version.rb +2 -2
  399. data/vendor/plugins/fckeditor/tasks/fckeditor_tasks.rake +1 -1
  400. data/vendor/plugins/fckeditor/test/fckeditor_test.rb +8 -0
  401. metadata +98 -66
  402. data/CHANGES-5.0.4 +0 -33
  403. data/SIDEBARS +0 -39
  404. data/app/views/admin/content/_quick_post.html.erb +0 -20
  405. data/db/schema.rb +0 -224
  406. data/public/.DS_Store +0 -0
  407. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/basexml.asp +0 -62
  408. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/class_upload.asp +0 -353
  409. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/commands.asp +0 -198
  410. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/config.asp +0 -128
  411. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/connector.asp +0 -88
  412. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/io.asp +0 -222
  413. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/upload.asp +0 -61
  414. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/util.asp +0 -55
  415. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/ImageObject.cfc +0 -273
  416. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf5_connector.cfm +0 -315
  417. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf5_upload.cfm +0 -296
  418. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_basexml.cfm +0 -68
  419. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_commands.cfm +0 -225
  420. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_connector.cfm +0 -89
  421. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_io.cfm +0 -288
  422. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_upload.cfm +0 -68
  423. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_util.cfm +0 -132
  424. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/config.cfm +0 -183
  425. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/connector.cfm +0 -31
  426. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/image.cfc +0 -1325
  427. data/public/javascripts/fckeditor/editor/filemanager/connectors/lasso/config.lasso +0 -65
  428. data/public/javascripts/fckeditor/editor/filemanager/connectors/lasso/connector.lasso +0 -257
  429. data/public/javascripts/fckeditor/editor/filemanager/connectors/lasso/upload.lasso +0 -157
  430. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/basexml.php +0 -93
  431. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/commands.php +0 -245
  432. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/config.php +0 -140
  433. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/connector.php +0 -87
  434. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/io.php +0 -272
  435. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/phpcompat.php +0 -17
  436. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/upload.php +0 -59
  437. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/util.php +0 -185
  438. data/public/javascripts/fckeditor/fckeditor.afp +0 -161
  439. data/public/javascripts/fckeditor/fckeditor.asp +0 -235
  440. data/public/javascripts/fckeditor/fckeditor.cfc +0 -273
  441. data/public/javascripts/fckeditor/fckeditor.cfm +0 -210
  442. data/public/javascripts/fckeditor/fckeditor.lasso +0 -112
  443. data/test/mocks/themes/typographic/.DS_Store +0 -0
  444. data/themes/typographic/.DS_Store +0 -0
  445. data/vendor/plugins/audioscrobbler_sidebar/MAINTAINERS +0 -26
  446. data/vendor/plugins/audioscrobbler_sidebar/MIT-LICENSE +0 -21
  447. data/vendor/plugins/audioscrobbler_sidebar/README +0 -27
  448. data/vendor/plugins/audioscrobbler_sidebar/Rakefile +0 -22
  449. data/vendor/plugins/audioscrobbler_sidebar/init.rb +0 -5
  450. data/vendor/plugins/audioscrobbler_sidebar/lib/audioscrobbler.rb +0 -54
  451. data/vendor/plugins/audioscrobbler_sidebar/lib/audioscrobbler_sidebar.rb +0 -13
  452. data/vendor/plugins/audioscrobbler_sidebar/test/audioscrobbler_sidebar_test.rb +0 -8
  453. data/vendor/plugins/audioscrobbler_sidebar/views/content.rhtml +0 -10
@@ -0,0 +1,37 @@
1
+ <div class="atomentry" id="article-<%= article.id %>">
2
+ <h2 class="title"><%= (controller.action_name.include? 'permalink') ? article.title : link_to_permalink(article,article.title) %></h2>
3
+ <div class="content">
4
+ <%= article.html(:body) %>
5
+
6
+ <% if article.extended? -%>
7
+ <div class="extended">
8
+ <% if controller.action_name == 'index' -%>
9
+ <p><%= link_to_permalink article,_("Continue reading...") %></p>
10
+ <% else -%>
11
+ <%= article.html(:extended) %>
12
+ <% end -%>
13
+ </div>
14
+ <% end -%>
15
+ </div>
16
+ <div class="meta">
17
+ <% if controller.controller_name == "articles" and controller.action_name == 'show' %>
18
+ <p><small>
19
+ <%= _("This entry was posted on %s", content_tag(:abbr, js_distance_of_time_in_words_to_now (article.published_at), {:class => 'published', :title => article.published_at.xmlschema})) %>
20
+ <%= _("and %s", category_links(@article)) unless @article.categories.empty? %>.
21
+ <%= _("You can follow any any response to this entry through the %s", link_to(_("Atom feed"), @auto_discovery_url_atom)) %>.
22
+ <%= _("You can leave a %s", link_to_permalink(article, _('comment'), 'comments')) if article.allow_comments? %>
23
+ <%= _("or a %s from your own site", link_to_permalink(article, _('trackback'), 'trackbacks')) if article.allow_pings? %>.</small><br />
24
+ <small><%= tag_links(@article) unless @article.tags.empty? %></small></p>
25
+ <% else %>
26
+ <p class="author">
27
+ <%= _("Posted by") %> <cite><%= author_link(article) %></cite>
28
+ <abbr class="published" title="<%= article.published_at.xmlschema %>"><%= js_distance_of_time_in_words_to_now article.published_at %></abbr>
29
+ </p>
30
+ <p class="links">
31
+ <%= link_to_permalink(article, _("Read full article"), nil, 'more') if controller.action_name != 'permalink' %>
32
+ <%= link_to_permalink(article,pluralize(article.published_comments.size, _('comment')),'comments', 'comments') %>
33
+ </p>
34
+ <% end %>
35
+ <br style="clear:both;" />
36
+ </div>
37
+ </div>
@@ -0,0 +1,12 @@
1
+ <li class="comment" id="comment-<%= comment.id %>">
2
+ <div class="author">
3
+ <%= content_tag(:div, gravatar_tag(comment.email)) if this_blog.use_gravatar and comment.email %>
4
+ <cite><%= (comment.url.blank?) ? h(comment.author) : link_to(h(comment.author), comment.url) %></cite>
5
+ <abbr title="<%= comment.created_at.xmlschema %>"><%= distance_of_time_in_words comment.article.published_at, comment.created_at %> <%= _("later")%>:</abbr>
6
+ </div>
7
+ <%= comment.html %>
8
+ <% unless comment.published -%>
9
+ <div class="spamwarning"><%= _("This comment has been flagged for moderator approval.") %></div>
10
+ <% end -%>
11
+ </li>
12
+
@@ -0,0 +1,48 @@
1
+ <% form_remote_tag :url => comments_path(@article),
2
+ :position => :bottom,
3
+ :update => {:success => 'commentList'},
4
+ :loading => "loading()",
5
+ :complete => "complete(request)",
6
+ :failure => "failure(request)",
7
+ :html => {:id => 'commentform', :class => 'comments' } \
8
+ do %>
9
+
10
+ <div id="preview" style="display:none"></div>
11
+
12
+ <div id="respond" class="post">
13
+ <h2 class="title"><%= _("Leave a comment")%></h2>
14
+
15
+ <p>
16
+ <%= text_field "comment", "author" %>
17
+ <label for="comment_author"><%= _("Name %s", content_tag(:small, '('+_('required')+')' ))%></label>
18
+ </p>
19
+
20
+ <p>
21
+ <%= text_field "comment", "email" %>
22
+ <label for="comment_email"><%= _("Email")%> <%= content_tag('small', "(#{link_to('gravatar', 'http://gravatar.com')} "+ _("enabled") + ")") if this_blog.use_gravatar %> <small>(<%= _("never displayed") %>)</small></label>
23
+ </p>
24
+ <p><%= text_field "comment", "url" %>
25
+ <label><%= _("Website")%></label>
26
+ </p>
27
+
28
+ <p>
29
+ <label>
30
+ <%= _("Comments")%>:
31
+ <%= content_tag('small', link_to(_("Textile enabled"), "http://hobix.com/textile/")) if this_blog.comment_text_filter.include? 'textile' %>
32
+ <%= content_tag('small', link_to(_("Markdown enabled"), "http://daringfireball.net/projects/markdown/")) if this_blog.comment_text_filter.include? 'markdown' %>
33
+ <br />
34
+ <%= text_area 'comment', 'body', :rows => 10 %>
35
+ </label>
36
+ </p>
37
+
38
+ <p>
39
+ <%= submit_to_remote('preview', _('Preview') + '!',
40
+ :update => 'preview',
41
+ :complete => "Element.show('preview')",
42
+ :url => preview_new_comment_path(@article),
43
+ :html => {:class => 'submit'}) %>
44
+ <%= submit_tag _('Submit'), :id => 'form-submit-button', :class => 'submit', :onclick => "$('commentform').onsubmit();this.disabled=true;Element.hide('preview');return false;" %>
45
+ <%= image_tag '/images/theme/spinner.gif', :id => 'comment_loading', :style => 'display:none' %>
46
+ </p>
47
+ </div>
48
+ <% end %>
@@ -0,0 +1,7 @@
1
+ <ol id="commentList" class="comments">
2
+ <% if @article.published_comments.any? -%>
3
+ <%= render(:partial => "comment", :collection => @article.published_comments) %>
4
+ <% else -%>
5
+ <li class="dummy_comment" style="display:none"><%= _("No comments")%></li>
6
+ <% end -%>
7
+ </ol>
@@ -0,0 +1,9 @@
1
+ <li class="trackback" id="trackback-<%= trackback.id %>">
2
+ <div class="author">
3
+ <a href="<%= trackback.url %>" rel="nofollow"><%= trackback.title %></a>
4
+ <abbr><%_("From")%> <cite><%= trackback.blog_name %></cite></abbr>
5
+ </div>
6
+ <div class="content">
7
+ <%= trackback.excerpt %>
8
+ </div>
9
+ </li>
@@ -0,0 +1,10 @@
1
+ <div class="comment preview">
2
+ <div class="author">
3
+ <%= content_tag(:div, gravatar_tag(@comment.email)) if this_blog.use_gravatar and @comment.email %>
4
+ <cite><%= (@comment.url.blank?) ? h(@comment.author) : link_to(h(@comment.author), @comment.url) %></cite>
5
+ <abbr><%= _("is about to say")%></abbr>
6
+ </div>
7
+ <div class="content">
8
+ <%= @comment.html %>
9
+ </div>
10
+ </div>
@@ -0,0 +1,5 @@
1
+ <%= render :partial => 'articles/article', :collection => @articles %>
2
+
3
+ <% unless @pages.item_count <= this_blog.limit_article_display -%>
4
+ <p class="pagination"><%= _("Older posts")%>: <%= pagination_links @pages, :params => { :action => @controller.action_name } %></p>
5
+ <% end -%>
@@ -0,0 +1,42 @@
1
+ <!--
2
+ <rdf:RDF
3
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
4
+ xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
6
+ <rdf:Description
7
+ rdf:about=""
8
+ trackback:ping="<%= @article.trackback_url %>"
9
+ dc:title="<%=h @article.title.gsub(/-+/, '-') %>"
10
+ dc:identifier="<%= @article.permalink_url %>"
11
+ dc:description="<%=h (@article.html.strip_html[0..255]).gsub(/-+/, '-') %>"
12
+ dc:creator="<%= h @article.author %>"
13
+ dc:date="<%= @article.updated_at.xmlschema %>" />
14
+ </rdf:RDF>
15
+ -->
16
+
17
+ <%= render :partial => 'article', :object => @article %>
18
+
19
+ <% if @article.allow_pings? -%>
20
+ <h2><a name="trackbacks"><%= _("Trackbacks")%></a></h2>
21
+ <p>
22
+ <%= _("Use the following link to trackback from your own site")%>:<br />
23
+ <%= @article.trackback_url %>
24
+ </p>
25
+
26
+ <% unless @article.published_trackbacks.blank? -%>
27
+ <ol id="trackbacks" class="trackbacks">
28
+ <%= render(:partial => "trackback", :collection => @article.published_trackbacks) %>
29
+ </ol>
30
+ <% end -%>
31
+ <% end -%>
32
+
33
+ <% if @article.allow_comments? or @article.published_comments.size > 0 -%>
34
+ <h2><a name="comments"><%= _("Comments")%></a></h2>
35
+ <p><a href="#commentform"><%= _("Leave a response")%></a></p>
36
+
37
+ <div id="comments_div">
38
+ <%= render :partial => "comment_list" %>
39
+ </div>
40
+ <% end -%>
41
+
42
+ <%= render :partial => 'comment_form' if @article.allow_comments? %>
@@ -0,0 +1,17 @@
1
+ <div id="search" class="search">
2
+ <% form_tag({ :controller => 'articles', :action => 'search' },
3
+ { :method => 'get', :id => 'sform' }) do -%>
4
+ <h3><%= _("Search")%></h3>
5
+ <p><input type="text" id="q" name="q" value="" /></p>
6
+ <% end -%>
7
+
8
+ <div id="loading" class="loading" style="display:none;"><%= _("Searching")%>...</div>
9
+ <div id="results" class="results"></div>
10
+ <%= observe_field 'q',
11
+ :url => { :controller => 'live', :action => 'search' },
12
+ :frequency => 1,
13
+ :loading => "Element.show('loading')",
14
+ :complete => "Element.hide('loading')",
15
+ :update => 'results',
16
+ :with => "'q=' + encodeURIComponent($F('q'))" %>
17
+ </div>
@@ -0,0 +1 @@
1
+ <!-- Static View Test from standard issue -->
@@ -4,6 +4,9 @@
4
4
  <title><%=h page_title %></title>
5
5
  <%= page_header %>
6
6
  <%= stylesheet_link_tag '/stylesheets/theme/style.css', :media => 'all' %>
7
+ <!--[if IE 6]>
8
+ <%= stylesheet_link_tag '/stylesheets/theme/ie6.css', :media => 'all' %>
9
+ <![endif]-->
7
10
  </head>
8
11
 
9
12
  <body>
@@ -32,8 +35,8 @@
32
35
  <div id="footer">
33
36
  <div class="wrap">
34
37
  <p id="legal">
35
- <%= _("Powered by %s", link_to ('typo', 'http://typosphere.org')) %>
36
- <%= _("Designed by %s ", link_to ('Hélène', 'http://www.o2sources.com/people/helene')) %>
38
+ <%= _("Powered by %s", link_to('typo', 'http://typosphere.org')) %>
39
+ <%= _("Designed by %s ", link_to('Hélène', 'http://www.o2sources.com/people/helene')) %>
37
40
  </p>
38
41
  </div>
39
42
  </div>
@@ -0,0 +1,86 @@
1
+ a.more, a.comments {
2
+ background:url(../../images/theme/bullet_right.gif) no-repeat 0 70%;
3
+ }
4
+
5
+ a.more:hover, a.comments:hover {
6
+ background-image:url(../../images/theme/bullet_bottom.gif)
7
+ }
8
+
9
+ p.infos {
10
+ background:url(../../images/theme/meta.gif) no-repeat;
11
+ }
12
+
13
+ p.tags {
14
+ background:url(../../images/theme/tag.gif) no-repeat;
15
+ }
16
+
17
+ #commentform {
18
+ background:url(../../images/theme/bg_white.gif);
19
+ }
20
+
21
+ input#comment_author {
22
+ background:url(../../images/theme/user50.gif) no-repeat #FFF 2% 50%;
23
+ }
24
+
25
+ input#comment_author:hover {
26
+ background:url(../../images/theme/user.gif) no-repeat #FFF 2% 50%;
27
+ }
28
+
29
+ input#comment_email {
30
+ background:url(../../images/theme/email_open50.gif) no-repeat #FFF 2% 50%;
31
+ }
32
+
33
+ input#comment_email:hover {
34
+ background:url(../../images/theme/email_open.gif) no-repeat #FFF 2% 50%;
35
+ }
36
+
37
+ input#comment_url {
38
+ background:url(../../images/theme/world_link50.gif) no-repeat #FFF 2% 50%;
39
+ }
40
+
41
+ input#comment_url:hover {
42
+ background:url(../../images/theme/world_link.gif) no-repeat #FFF 2% 50%;
43
+ }
44
+
45
+ input#form-preview-button {
46
+ background:url(../../images/theme/page_edit50.gif) no-repeat #f6e0c6 2% 50%;
47
+ width: 110px;
48
+ margin:0
49
+ }
50
+
51
+ input#form-preview-button:hover {
52
+ background:url(../../images/theme/page_edit.gif) no-repeat #f6e0c6 2% 50%;
53
+ }
54
+
55
+
56
+ input#form-submit-button {
57
+ background:url(../../images/theme/accept50.gif) no-repeat #f6e0c6 2% 50%;
58
+ width: 110px;
59
+ margin:0
60
+ }
61
+
62
+ input#form-submit-button:hover {
63
+ background:url(../../images/theme/accept.gif) no-repeat #f6e0c6 2% 50%;
64
+ }
65
+
66
+ div.commentContent {
67
+ padding:10px;
68
+ background:url(../../images/theme/bg_white.gif);
69
+ margin:5px 0 0 0
70
+
71
+ }
72
+
73
+ div.static-body, #sidebar ul, #sform p {
74
+ background:url(../../images/theme/bg_white.gif);
75
+ }
76
+
77
+ #sidebar ul li {
78
+ background:url(../../images/theme/bullet_right.gif) 98% 70% no-repeat;
79
+ }
80
+
81
+ ul li {
82
+ background:url(../../images/theme/bullet_right.gif) 0% 70% no-repeat;
83
+ }
84
+
85
+ #header { width: 980px; }
86
+ #page { width: 980px; }
@@ -21,7 +21,7 @@
21
21
  <% if controller.controller_name == "articles" and controller.action_name == "show" %>
22
22
  <div class="meta">
23
23
  <p class="infos"><small>
24
- <%= _("This entry was posted on %s", content_tag(:abbr, js_distance_of_time_in_words_to_now (@article.published_at), {:class => 'published', :title => @article.published_at.xmlschema})) %>
24
+ <%= _("This entry was posted on %s", content_tag(:abbr, js_distance_of_time_in_words_to_now(@article.published_at), {:class => 'published', :title => @article.published_at.xmlschema})) %>
25
25
  <%= _("and %s", category_links(@article)) unless @article.categories.empty? %>.
26
26
  <%= _("You can follow any any response to this entry through the %s", link_to(_("Atom feed"), @auto_discovery_url_atom)) %>.
27
27
  <%= _("You can leave a %s", link_to_permalink(article, _('comment'), 'comments')) if @article.allow_comments? %>
@@ -37,5 +37,5 @@
37
37
  <%= link_to_permalink(article,pluralize(article.published_comments.size, _('comment')),'comments', 'comments') %>
38
38
  </p>
39
39
  <% end %>
40
- <br style="clear:both;" />
40
+ <br style="clear: left;" />
41
41
  </div>
@@ -115,11 +115,4 @@ If you install elsewhere then you will need to update spell_check.rb in the plug
115
115
 
116
116
  FCKConfig.SpellChecker = 'SpellerPages';
117
117
 
118
- Issues / TODO's
119
- ------
120
-
121
- 1) There are no progress indicators for the AJAX requests from the resource manager
122
- 2) Occasional issues with Flash upload
123
- 3) Won't install properly with frozen edge Rails
124
-
125
118
 
@@ -1,4 +1,2 @@
1
1
  module FckeditorHelper
2
- end
3
- module FckeditorHelper
4
- end
2
+ end
@@ -1,7 +1,7 @@
1
1
  module FckeditorVersion
2
2
  MAJOR = 0
3
- MINOR = 4
4
- RELEASE = 3
3
+ MINOR = 5
4
+ RELEASE = 0
5
5
 
6
6
  def self.current
7
7
  "#{MAJOR}.#{MINOR}.#{RELEASE}"
@@ -44,7 +44,7 @@ namespace :fckeditor do
44
44
 
45
45
  setup
46
46
  version = ENV['VERSION'] || "Nightly"
47
- installed_version = "2.4.2"
47
+ installed_version = "2.6"
48
48
 
49
49
  puts "** Current FCKEditor version: #{installed_version}..."
50
50
  puts "** Downloading #{version} (1.2mb - please be patient)..."
@@ -0,0 +1,8 @@
1
+ require 'test/unit'
2
+
3
+ class FckeditorTest < Test::Unit::TestCase
4
+ # Replace this with your real tests.
5
+ def test_this_plugin
6
+ true
7
+ end
8
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: typo
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.3.98.1
4
+ version: "5.1"
5
5
  platform: ruby
6
6
  authors:
7
7
  - "Fr\xC3\xA9d\xC3\xA9ric de Villamil"
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-06-30 00:00:00 +02:00
12
+ date: 2008-07-21 00:00:00 +02:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -40,13 +40,13 @@ dependencies:
40
40
  version: 0.2.0
41
41
  version:
42
42
  - !ruby/object:Gem::Dependency
43
- name: sqlite3-ruby
43
+ name: mysql
44
44
  version_requirement:
45
45
  version_requirements: !ruby/object:Gem::Requirement
46
46
  requirements:
47
47
  - - ">="
48
48
  - !ruby/object:Gem::Version
49
- version: 1.1.0
49
+ version: "2.7"
50
50
  version:
51
51
  - !ruby/object:Gem::Dependency
52
52
  name: rails-app-installer
@@ -233,9 +233,9 @@ files:
233
233
  - app/views/admin/content
234
234
  - app/views/admin/content/_articles.html.erb
235
235
  - app/views/admin/content/_attachment.html.erb
236
+ - app/views/admin/content/_drafts.html.erb
236
237
  - app/views/admin/content/_form.html.erb
237
238
  - app/views/admin/content/_pages.html.erb
238
- - app/views/admin/content/_quick_post.html.erb
239
239
  - app/views/admin/content/_show_resources.html.erb
240
240
  - app/views/admin/content/destroy.html.erb
241
241
  - app/views/admin/content/edit.html.erb
@@ -337,6 +337,7 @@ files:
337
337
  - app/views/articles/_comment.html.erb
338
338
  - app/views/articles/_comment_box.html.erb
339
339
  - app/views/articles/_comment_error.html.erb
340
+ - app/views/articles/_comment_failed.html.erb
340
341
  - app/views/articles/_rss20_feed.rss.builder
341
342
  - app/views/articles/_trackback.html.erb
342
343
  - app/views/articles/archives.html.erb
@@ -399,7 +400,7 @@ files:
399
400
  - app/views/xml/rsd.rxml
400
401
  - bin
401
402
  - bin/typo
402
- - CHANGES-5.0.4
403
+ - CHANGES-5.1
403
404
  - config
404
405
  - config/boot.rb
405
406
  - config/database.yml.example
@@ -495,10 +496,10 @@ files:
495
496
  - db/migrate/067_remove_blog_ids.rb
496
497
  - db/migrate/068_fix_grants.rb
497
498
  - db/migrate/069_add_modules_to_profile.rb
499
+ - db/migrate/070_add_users_to_non_admins.rb
498
500
  - db/schema.mysql-v3.sql
499
501
  - db/schema.mysql.sql
500
502
  - db/schema.postgresql.sql
501
- - db/schema.rb
502
503
  - db/schema.sqlite.sql
503
504
  - db/schema.sqlserver.sql
504
505
  - db/schema_version
@@ -564,7 +565,6 @@ files:
564
565
  - MAINTAINERS
565
566
  - MIT-LICENSE
566
567
  - public
567
- - public/.DS_Store
568
568
  - public/.htaccess
569
569
  - public/404.html
570
570
  - public/500.html
@@ -618,6 +618,7 @@ files:
618
618
  - public/javascripts/fckeditor/editor/_source/classes/fckelementpath.js
619
619
  - public/javascripts/fckeditor/editor/_source/classes/fckenterkey.js
620
620
  - public/javascripts/fckeditor/editor/_source/classes/fckevents.js
621
+ - public/javascripts/fckeditor/editor/_source/classes/fckhtmliterator.js
621
622
  - public/javascripts/fckeditor/editor/_source/classes/fckicon.js
622
623
  - public/javascripts/fckeditor/editor/_source/classes/fckiecleanup.js
623
624
  - public/javascripts/fckeditor/editor/_source/classes/fckimagepreloader.js
@@ -727,6 +728,7 @@ files:
727
728
  - public/javascripts/fckeditor/editor/css/images/fck_flashlogo.gif
728
729
  - public/javascripts/fckeditor/editor/css/images/fck_hiddenfield.gif
729
730
  - public/javascripts/fckeditor/editor/css/images/fck_pagebreak.gif
731
+ - public/javascripts/fckeditor/editor/css/images/fck_plugin.gif
730
732
  - public/javascripts/fckeditor/editor/dialog
731
733
  - public/javascripts/fckeditor/editor/dialog/common
732
734
  - public/javascripts/fckeditor/editor/dialog/common/fck_dialog_common.css
@@ -738,6 +740,8 @@ files:
738
740
  - public/javascripts/fckeditor/editor/dialog/fck_about
739
741
  - public/javascripts/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif
740
742
  - public/javascripts/fckeditor/editor/dialog/fck_about/logo_fredck.gif
743
+ - public/javascripts/fckeditor/editor/dialog/fck_about/sponsors
744
+ - public/javascripts/fckeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif
741
745
  - public/javascripts/fckeditor/editor/dialog/fck_about.html
742
746
  - public/javascripts/fckeditor/editor/dialog/fck_anchor.html
743
747
  - public/javascripts/fckeditor/editor/dialog/fck_button.html
@@ -881,36 +885,9 @@ files:
881
885
  - public/javascripts/fckeditor/editor/filemanager/browser/default/js/common.js
882
886
  - public/javascripts/fckeditor/editor/filemanager/browser/default/js/fckxml.js
883
887
  - public/javascripts/fckeditor/editor/filemanager/connectors
884
- - public/javascripts/fckeditor/editor/filemanager/connectors/asp
885
- - public/javascripts/fckeditor/editor/filemanager/connectors/asp/basexml.asp
886
- - public/javascripts/fckeditor/editor/filemanager/connectors/asp/class_upload.asp
887
- - public/javascripts/fckeditor/editor/filemanager/connectors/asp/commands.asp
888
- - public/javascripts/fckeditor/editor/filemanager/connectors/asp/config.asp
889
- - public/javascripts/fckeditor/editor/filemanager/connectors/asp/connector.asp
890
- - public/javascripts/fckeditor/editor/filemanager/connectors/asp/io.asp
891
- - public/javascripts/fckeditor/editor/filemanager/connectors/asp/upload.asp
892
- - public/javascripts/fckeditor/editor/filemanager/connectors/asp/util.asp
893
888
  - public/javascripts/fckeditor/editor/filemanager/connectors/aspx
894
889
  - public/javascripts/fckeditor/editor/filemanager/connectors/aspx/connector.aspx
895
890
  - public/javascripts/fckeditor/editor/filemanager/connectors/aspx/upload.aspx
896
- - public/javascripts/fckeditor/editor/filemanager/connectors/cfm
897
- - public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf5_connector.cfm
898
- - public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf5_upload.cfm
899
- - public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_basexml.cfm
900
- - public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_commands.cfm
901
- - public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_connector.cfm
902
- - public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_io.cfm
903
- - public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_upload.cfm
904
- - public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_util.cfm
905
- - public/javascripts/fckeditor/editor/filemanager/connectors/cfm/config.cfm
906
- - public/javascripts/fckeditor/editor/filemanager/connectors/cfm/connector.cfm
907
- - public/javascripts/fckeditor/editor/filemanager/connectors/cfm/image.cfc
908
- - public/javascripts/fckeditor/editor/filemanager/connectors/cfm/ImageObject.cfc
909
- - public/javascripts/fckeditor/editor/filemanager/connectors/cfm/upload.cfm
910
- - public/javascripts/fckeditor/editor/filemanager/connectors/lasso
911
- - public/javascripts/fckeditor/editor/filemanager/connectors/lasso/config.lasso
912
- - public/javascripts/fckeditor/editor/filemanager/connectors/lasso/connector.lasso
913
- - public/javascripts/fckeditor/editor/filemanager/connectors/lasso/upload.lasso
914
891
  - public/javascripts/fckeditor/editor/filemanager/connectors/perl
915
892
  - public/javascripts/fckeditor/editor/filemanager/connectors/perl/basexml.pl
916
893
  - public/javascripts/fckeditor/editor/filemanager/connectors/perl/commands.pl
@@ -919,15 +896,6 @@ files:
919
896
  - public/javascripts/fckeditor/editor/filemanager/connectors/perl/upload.cgi
920
897
  - public/javascripts/fckeditor/editor/filemanager/connectors/perl/upload_fck.pl
921
898
  - public/javascripts/fckeditor/editor/filemanager/connectors/perl/util.pl
922
- - public/javascripts/fckeditor/editor/filemanager/connectors/php
923
- - public/javascripts/fckeditor/editor/filemanager/connectors/php/basexml.php
924
- - public/javascripts/fckeditor/editor/filemanager/connectors/php/commands.php
925
- - public/javascripts/fckeditor/editor/filemanager/connectors/php/config.php
926
- - public/javascripts/fckeditor/editor/filemanager/connectors/php/connector.php
927
- - public/javascripts/fckeditor/editor/filemanager/connectors/php/io.php
928
- - public/javascripts/fckeditor/editor/filemanager/connectors/php/phpcompat.php
929
- - public/javascripts/fckeditor/editor/filemanager/connectors/php/upload.php
930
- - public/javascripts/fckeditor/editor/filemanager/connectors/php/util.php
931
899
  - public/javascripts/fckeditor/editor/filemanager/connectors/py
932
900
  - public/javascripts/fckeditor/editor/filemanager/connectors/py/config.py
933
901
  - public/javascripts/fckeditor/editor/filemanager/connectors/py/connector.py
@@ -971,6 +939,7 @@ files:
971
939
  - public/javascripts/fckeditor/editor/images/smiley/msn/wink_smile.gif
972
940
  - public/javascripts/fckeditor/editor/images/spacer.gif
973
941
  - public/javascripts/fckeditor/editor/js
942
+ - public/javascripts/fckeditor/editor/js/fckadobeair.js
974
943
  - public/javascripts/fckeditor/editor/js/fckeditorcode_gecko.js
975
944
  - public/javascripts/fckeditor/editor/js/fckeditorcode_ie.js
976
945
  - public/javascripts/fckeditor/editor/lang
@@ -996,6 +965,7 @@ files:
996
965
  - public/javascripts/fckeditor/editor/lang/fa.js
997
966
  - public/javascripts/fckeditor/editor/lang/fi.js
998
967
  - public/javascripts/fckeditor/editor/lang/fo.js
968
+ - public/javascripts/fckeditor/editor/lang/fr-ca.js
999
969
  - public/javascripts/fckeditor/editor/lang/fr.js
1000
970
  - public/javascripts/fckeditor/editor/lang/gl.js
1001
971
  - public/javascripts/fckeditor/editor/lang/he.js
@@ -1045,6 +1015,7 @@ files:
1045
1015
  - public/javascripts/fckeditor/editor/plugins/placeholder/lang
1046
1016
  - public/javascripts/fckeditor/editor/plugins/placeholder/lang/de.js
1047
1017
  - public/javascripts/fckeditor/editor/plugins/placeholder/lang/en.js
1018
+ - public/javascripts/fckeditor/editor/plugins/placeholder/lang/es.js
1048
1019
  - public/javascripts/fckeditor/editor/plugins/placeholder/lang/fr.js
1049
1020
  - public/javascripts/fckeditor/editor/plugins/placeholder/lang/it.js
1050
1021
  - public/javascripts/fckeditor/editor/plugins/placeholder/lang/pl.js
@@ -1094,12 +1065,7 @@ files:
1094
1065
  - public/javascripts/fckeditor/editor/skins/silver/images/toolbar.separator.gif
1095
1066
  - public/javascripts/fckeditor/editor/skins/silver/images/toolbar.start.gif
1096
1067
  - public/javascripts/fckeditor/fckconfig.js
1097
- - public/javascripts/fckeditor/fckeditor.afp
1098
- - public/javascripts/fckeditor/fckeditor.asp
1099
- - public/javascripts/fckeditor/fckeditor.cfc
1100
- - public/javascripts/fckeditor/fckeditor.cfm
1101
1068
  - public/javascripts/fckeditor/fckeditor.js
1102
- - public/javascripts/fckeditor/fckeditor.lasso
1103
1069
  - public/javascripts/fckeditor/fckeditor.py
1104
1070
  - public/javascripts/fckeditor/fckpackager.xml
1105
1071
  - public/javascripts/fckeditor/fckstyles.xml
@@ -1154,7 +1120,6 @@ files:
1154
1120
  - script/spacecheck
1155
1121
  - script/spec
1156
1122
  - script/spec_server
1157
- - SIDEBARS
1158
1123
  - spec
1159
1124
  - spec/controllers
1160
1125
  - spec/controllers/accounts_controller_spec.rb
@@ -1259,7 +1224,6 @@ files:
1259
1224
  - test/mocks/themes/i-have-special-chars
1260
1225
  - test/mocks/themes/i-have-special-chars/about.markdown
1261
1226
  - test/mocks/themes/typographic
1262
- - test/mocks/themes/typographic/.DS_Store
1263
1227
  - test/mocks/themes/typographic/about.markdown
1264
1228
  - test/mocks/themes/typographic/images
1265
1229
  - test/mocks/themes/typographic/images/accept.png
@@ -1304,6 +1268,35 @@ files:
1304
1268
  - test/mocks/themes/typographic/views/theme/static_view_test.html.erb
1305
1269
  - test/test_helper.rb
1306
1270
  - themes
1271
+ - themes/dirtylicious
1272
+ - themes/dirtylicious/about.markdown
1273
+ - themes/dirtylicious/images
1274
+ - themes/dirtylicious/images/body.jpg
1275
+ - themes/dirtylicious/images/container.jpg
1276
+ - themes/dirtylicious/images/gravatar.gif
1277
+ - themes/dirtylicious/images/header.jpg
1278
+ - themes/dirtylicious/images/li.gif
1279
+ - themes/dirtylicious/images/main.gif
1280
+ - themes/dirtylicious/images/nav.gif
1281
+ - themes/dirtylicious/images/quote.gif
1282
+ - themes/dirtylicious/images/spinner.gif
1283
+ - themes/dirtylicious/layouts
1284
+ - themes/dirtylicious/layouts/default.html.erb
1285
+ - themes/dirtylicious/preview.png
1286
+ - themes/dirtylicious/stylesheets
1287
+ - themes/dirtylicious/stylesheets/application.css
1288
+ - themes/dirtylicious/views
1289
+ - themes/dirtylicious/views/articles
1290
+ - themes/dirtylicious/views/articles/_article.html.erb
1291
+ - themes/dirtylicious/views/articles/_comment.html.erb
1292
+ - themes/dirtylicious/views/articles/_comment_form.html.erb
1293
+ - themes/dirtylicious/views/articles/_comment_list.html.erb
1294
+ - themes/dirtylicious/views/articles/_trackback.html.erb
1295
+ - themes/dirtylicious/views/articles/comment_preview.html.erb
1296
+ - themes/dirtylicious/views/articles/index.html.erb
1297
+ - themes/dirtylicious/views/articles/read.html.erb
1298
+ - themes/dirtylicious/views/shared
1299
+ - themes/dirtylicious/views/shared/_search.html.erb
1307
1300
  - themes/scribbish
1308
1301
  - themes/scribbish/about.markdown
1309
1302
  - themes/scribbish/CONTRIBUTORS
@@ -1331,32 +1324,83 @@ files:
1331
1324
  - themes/scribbish/views/articles/read.html.erb
1332
1325
  - themes/scribbish/views/shared
1333
1326
  - themes/scribbish/views/shared/_search.html.erb
1327
+ - themes/standard_issue
1328
+ - themes/standard_issue/about.markdown
1329
+ - themes/standard_issue/images
1330
+ - themes/standard_issue/images/img01.gif
1331
+ - themes/standard_issue/images/img02.gif
1332
+ - themes/standard_issue/images/img03.gif
1333
+ - themes/standard_issue/images/img04.jpg
1334
+ - themes/standard_issue/images/img05.gif
1335
+ - themes/standard_issue/images/img06.gif
1336
+ - themes/standard_issue/images/img07.gif
1337
+ - themes/standard_issue/images/img08.gif
1338
+ - themes/standard_issue/images/img09.gif
1339
+ - themes/standard_issue/images/img10.gif
1340
+ - themes/standard_issue/images/spacer.gif
1341
+ - themes/standard_issue/images/spinner.gif
1342
+ - themes/standard_issue/layouts
1343
+ - themes/standard_issue/layouts/default.html.erb
1344
+ - themes/standard_issue/preview.png
1345
+ - themes/standard_issue/stylesheets
1346
+ - themes/standard_issue/stylesheets/application.css
1347
+ - themes/standard_issue/views
1348
+ - themes/standard_issue/views/articles
1349
+ - themes/standard_issue/views/articles/_article.html.erb
1350
+ - themes/standard_issue/views/articles/_comment.html.erb
1351
+ - themes/standard_issue/views/articles/_comment_form.html.erb
1352
+ - themes/standard_issue/views/articles/_comment_list.html.erb
1353
+ - themes/standard_issue/views/articles/_trackback.html.erb
1354
+ - themes/standard_issue/views/articles/comment_preview.html.erb
1355
+ - themes/standard_issue/views/articles/index.html.erb
1356
+ - themes/standard_issue/views/articles/read.html.erb
1357
+ - themes/standard_issue/views/shared
1358
+ - themes/standard_issue/views/shared/_search.html.erb
1359
+ - themes/standard_issue/views/theme
1360
+ - themes/standard_issue/views/theme/static_view_test.html.erb
1334
1361
  - themes/typographic
1335
- - themes/typographic/.DS_Store
1336
1362
  - themes/typographic/about.markdown
1337
1363
  - themes/typographic/images
1364
+ - themes/typographic/images/accept.gif
1338
1365
  - themes/typographic/images/accept.png
1366
+ - themes/typographic/images/accept50.gif
1339
1367
  - themes/typographic/images/accept50.png
1340
1368
  - themes/typographic/images/bg_body.jpg
1369
+ - themes/typographic/images/bg_white.gif
1341
1370
  - themes/typographic/images/bg_white.png
1371
+ - themes/typographic/images/bg_wrapper.gif
1342
1372
  - themes/typographic/images/bg_wrapper.jpg
1373
+ - themes/typographic/images/bullet_bottom.gif
1343
1374
  - themes/typographic/images/bullet_bottom.png
1375
+ - themes/typographic/images/bullet_right.gif
1344
1376
  - themes/typographic/images/bullet_right.png
1377
+ - themes/typographic/images/email_open.gif
1345
1378
  - themes/typographic/images/email_open.png
1379
+ - themes/typographic/images/email_open50.gif
1346
1380
  - themes/typographic/images/email_open50.png
1381
+ - themes/typographic/images/meta.gif
1347
1382
  - themes/typographic/images/meta.png
1383
+ - themes/typographic/images/page_edit.gif
1348
1384
  - themes/typographic/images/page_edit.png
1385
+ - themes/typographic/images/page_edit50.gif
1349
1386
  - themes/typographic/images/page_edit50.png
1387
+ - themes/typographic/images/spinner.gif
1388
+ - themes/typographic/images/tag.gif
1350
1389
  - themes/typographic/images/tag.png
1390
+ - themes/typographic/images/user.gif
1351
1391
  - themes/typographic/images/user.png
1392
+ - themes/typographic/images/user50.gif
1352
1393
  - themes/typographic/images/user50.png
1394
+ - themes/typographic/images/world_link.gif
1353
1395
  - themes/typographic/images/world_link.png
1396
+ - themes/typographic/images/world_link50.gif
1354
1397
  - themes/typographic/images/world_link50.png
1355
1398
  - themes/typographic/layouts
1356
1399
  - themes/typographic/layouts/default.html.erb
1357
1400
  - themes/typographic/preview.png
1358
1401
  - themes/typographic/stylesheets
1359
1402
  - themes/typographic/stylesheets/colors.css
1403
+ - themes/typographic/stylesheets/ie6.css
1360
1404
  - themes/typographic/stylesheets/layout.css
1361
1405
  - themes/typographic/stylesheets/reset.css
1362
1406
  - themes/typographic/stylesheets/style.css
@@ -1376,7 +1420,6 @@ files:
1376
1420
  - themes/typographic/views/theme/static_view_test.html.erb
1377
1421
  - tmp
1378
1422
  - tmp/cache
1379
- - tmp/pids
1380
1423
  - tmp/sessions
1381
1424
  - tmp/sockets
1382
1425
  - vendor
@@ -1563,19 +1606,6 @@ files:
1563
1606
  - vendor/plugins/archives_sidebar/test/archives_sidebar_test.rb
1564
1607
  - vendor/plugins/archives_sidebar/views
1565
1608
  - vendor/plugins/archives_sidebar/views/content.rhtml
1566
- - vendor/plugins/audioscrobbler_sidebar
1567
- - vendor/plugins/audioscrobbler_sidebar/init.rb
1568
- - vendor/plugins/audioscrobbler_sidebar/lib
1569
- - vendor/plugins/audioscrobbler_sidebar/lib/audioscrobbler.rb
1570
- - vendor/plugins/audioscrobbler_sidebar/lib/audioscrobbler_sidebar.rb
1571
- - vendor/plugins/audioscrobbler_sidebar/MAINTAINERS
1572
- - vendor/plugins/audioscrobbler_sidebar/MIT-LICENSE
1573
- - vendor/plugins/audioscrobbler_sidebar/Rakefile
1574
- - vendor/plugins/audioscrobbler_sidebar/README
1575
- - vendor/plugins/audioscrobbler_sidebar/test
1576
- - vendor/plugins/audioscrobbler_sidebar/test/audioscrobbler_sidebar_test.rb
1577
- - vendor/plugins/audioscrobbler_sidebar/views
1578
- - vendor/plugins/audioscrobbler_sidebar/views/content.rhtml
1579
1609
  - vendor/plugins/auto_complete
1580
1610
  - vendor/plugins/auto_complete/init.rb
1581
1611
  - vendor/plugins/auto_complete/lib
@@ -1658,6 +1688,8 @@ files:
1658
1688
  - vendor/plugins/fckeditor/README
1659
1689
  - vendor/plugins/fckeditor/tasks
1660
1690
  - vendor/plugins/fckeditor/tasks/fckeditor_tasks.rake
1691
+ - vendor/plugins/fckeditor/test
1692
+ - vendor/plugins/fckeditor/test/fckeditor_test.rb
1661
1693
  - vendor/plugins/localization
1662
1694
  - vendor/plugins/localization/CHANGELOG
1663
1695
  - vendor/plugins/localization/init.rb