artemk-ckeditor 3.4.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (680) hide show
  1. data/README.rdoc +161 -0
  2. data/Rakefile +45 -0
  3. data/app/controllers/ckeditor_controller.rb +85 -0
  4. data/app/helpers/ckeditor_helper.rb +38 -0
  5. data/app/views/ckeditor/_asset.html.erb +15 -0
  6. data/app/views/ckeditor/_swfupload.html.erb +51 -0
  7. data/app/views/ckeditor/files.html.erb +91 -0
  8. data/app/views/ckeditor/images.html.erb +91 -0
  9. data/app/views/layouts/ckeditor.html.erb +29 -0
  10. data/config/routes.rb +5 -0
  11. data/examples/migrations/attachment_fu/create_assets.rb +30 -0
  12. data/examples/migrations/paperclip/create_assets.rb +25 -0
  13. data/examples/models/attachment_fu/asset.rb +45 -0
  14. data/examples/models/attachment_fu/attachment_file.rb +46 -0
  15. data/examples/models/attachment_fu/picture.rb +46 -0
  16. data/examples/models/paperclip/asset.rb +65 -0
  17. data/examples/models/paperclip/attachment_file.rb +22 -0
  18. data/examples/models/paperclip/picture.rb +39 -0
  19. data/examples/s3/attachment_file.rb +23 -0
  20. data/examples/s3/picture.rb +41 -0
  21. data/examples/s3/s3.yml +2 -0
  22. data/generators/ckeditor_install/USAGE +7 -0
  23. data/generators/ckeditor_install/ckeditor_install_generator.rb +28 -0
  24. data/generators/ckeditor_install/templates/README +0 -0
  25. data/generators/ckeditor_install/templates/ckeditor.rb +56 -0
  26. data/generators/ckeditor_install/templates/ckeditor/CHANGES.html +993 -0
  27. data/generators/ckeditor_install/templates/ckeditor/INSTALL.html +92 -0
  28. data/generators/ckeditor_install/templates/ckeditor/LICENSE.html +1334 -0
  29. data/generators/ckeditor_install/templates/ckeditor/_samples/ajax.html +87 -0
  30. data/generators/ckeditor_install/templates/ckeditor/_samples/api.html +152 -0
  31. data/generators/ckeditor_install/templates/ckeditor/_samples/api_dialog.html +188 -0
  32. data/generators/ckeditor_install/templates/ckeditor/_samples/api_dialog/my_dialog.js +28 -0
  33. data/generators/ckeditor_install/templates/ckeditor/_samples/asp/advanced.asp +105 -0
  34. data/generators/ckeditor_install/templates/ckeditor/_samples/asp/events.asp +136 -0
  35. data/generators/ckeditor_install/templates/ckeditor/_samples/asp/index.html +103 -0
  36. data/generators/ckeditor_install/templates/ckeditor/_samples/asp/replace.asp +72 -0
  37. data/generators/ckeditor_install/templates/ckeditor/_samples/asp/replaceall.asp +77 -0
  38. data/generators/ckeditor_install/templates/ckeditor/_samples/asp/sample_posteddata.asp +46 -0
  39. data/generators/ckeditor_install/templates/ckeditor/_samples/asp/standalone.asp +72 -0
  40. data/generators/ckeditor_install/templates/ckeditor/_samples/assets/output_for_flash.fla +0 -0
  41. data/generators/ckeditor_install/templates/ckeditor/_samples/assets/output_for_flash.swf +0 -0
  42. data/generators/ckeditor_install/templates/ckeditor/_samples/assets/output_xhtml.css +204 -0
  43. data/generators/ckeditor_install/templates/ckeditor/_samples/assets/swfobject.js +18 -0
  44. data/generators/ckeditor_install/templates/ckeditor/_samples/autogrow.html +75 -0
  45. data/generators/ckeditor_install/templates/ckeditor/_samples/divreplace.html +137 -0
  46. data/generators/ckeditor_install/templates/ckeditor/_samples/enterkey.html +88 -0
  47. data/generators/ckeditor_install/templates/ckeditor/_samples/fullpage.html +62 -0
  48. data/generators/ckeditor_install/templates/ckeditor/_samples/index.html +57 -0
  49. data/generators/ckeditor_install/templates/ckeditor/_samples/jqueryadapter.html +73 -0
  50. data/generators/ckeditor_install/templates/ckeditor/_samples/output_for_flash.html +257 -0
  51. data/generators/ckeditor_install/templates/ckeditor/_samples/output_html.html +259 -0
  52. data/generators/ckeditor_install/templates/ckeditor/_samples/output_xhtml.html +159 -0
  53. data/generators/ckeditor_install/templates/ckeditor/_samples/php/advanced.php +93 -0
  54. data/generators/ckeditor_install/templates/ckeditor/_samples/php/events.php +130 -0
  55. data/generators/ckeditor_install/templates/ckeditor/_samples/php/replace.php +63 -0
  56. data/generators/ckeditor_install/templates/ckeditor/_samples/php/replaceall.php +68 -0
  57. data/generators/ckeditor_install/templates/ckeditor/_samples/php/standalone.php +64 -0
  58. data/generators/ckeditor_install/templates/ckeditor/_samples/replacebyclass.html +49 -0
  59. data/generators/ckeditor_install/templates/ckeditor/_samples/replacebycode.html +80 -0
  60. data/generators/ckeditor_install/templates/ckeditor/_samples/sample.css +81 -0
  61. data/generators/ckeditor_install/templates/ckeditor/_samples/sample.js +65 -0
  62. data/generators/ckeditor_install/templates/ckeditor/_samples/sample_posteddata.php +59 -0
  63. data/generators/ckeditor_install/templates/ckeditor/_samples/sharedspaces.html +131 -0
  64. data/generators/ckeditor_install/templates/ckeditor/_samples/skins.html +83 -0
  65. data/generators/ckeditor_install/templates/ckeditor/_samples/ui_color.html +87 -0
  66. data/generators/ckeditor_install/templates/ckeditor/_samples/ui_languages.html +103 -0
  67. data/generators/ckeditor_install/templates/ckeditor/_source/adapters/jquery.js +297 -0
  68. data/generators/ckeditor_install/templates/ckeditor/_source/core/_bootstrap.js +96 -0
  69. data/generators/ckeditor_install/templates/ckeditor/_source/core/ajax.js +142 -0
  70. data/generators/ckeditor_install/templates/ckeditor/_source/core/ckeditor.js +133 -0
  71. data/generators/ckeditor_install/templates/ckeditor/_source/core/ckeditor_base.js +196 -0
  72. data/generators/ckeditor_install/templates/ckeditor/_source/core/ckeditor_basic.js +239 -0
  73. data/generators/ckeditor_install/templates/ckeditor/_source/core/command.js +209 -0
  74. data/generators/ckeditor_install/templates/ckeditor/_source/core/commanddefinition.js +129 -0
  75. data/generators/ckeditor_install/templates/ckeditor/_source/core/config.js +430 -0
  76. data/generators/ckeditor_install/templates/ckeditor/_source/core/dataprocessor.js +65 -0
  77. data/generators/ckeditor_install/templates/ckeditor/_source/core/dom.js +20 -0
  78. data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/comment.js +32 -0
  79. data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/document.js +224 -0
  80. data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/documentfragment.js +49 -0
  81. data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/domobject.js +255 -0
  82. data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/element.js +1564 -0
  83. data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/elementpath.js +119 -0
  84. data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/event.js +142 -0
  85. data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/node.js +683 -0
  86. data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/nodelist.js +26 -0
  87. data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/range.js +1883 -0
  88. data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/rangelist.js +214 -0
  89. data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/text.js +123 -0
  90. data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/walker.js +445 -0
  91. data/generators/ckeditor_install/templates/ckeditor/_source/core/dom/window.js +96 -0
  92. data/generators/ckeditor_install/templates/ckeditor/_source/core/dtd.js +238 -0
  93. data/generators/ckeditor_install/templates/ckeditor/_source/core/editor.js +924 -0
  94. data/generators/ckeditor_install/templates/ckeditor/_source/core/editor_basic.js +182 -0
  95. data/generators/ckeditor_install/templates/ckeditor/_source/core/env.js +270 -0
  96. data/generators/ckeditor_install/templates/ckeditor/_source/core/event.js +342 -0
  97. data/generators/ckeditor_install/templates/ckeditor/_source/core/eventInfo.js +120 -0
  98. data/generators/ckeditor_install/templates/ckeditor/_source/core/focusmanager.js +152 -0
  99. data/generators/ckeditor_install/templates/ckeditor/_source/core/htmlparser.js +224 -0
  100. data/generators/ckeditor_install/templates/ckeditor/_source/core/htmlparser/basicwriter.js +145 -0
  101. data/generators/ckeditor_install/templates/ckeditor/_source/core/htmlparser/cdata.js +43 -0
  102. data/generators/ckeditor_install/templates/ckeditor/_source/core/htmlparser/comment.js +60 -0
  103. data/generators/ckeditor_install/templates/ckeditor/_source/core/htmlparser/element.js +240 -0
  104. data/generators/ckeditor_install/templates/ckeditor/_source/core/htmlparser/filter.js +288 -0
  105. data/generators/ckeditor_install/templates/ckeditor/_source/core/htmlparser/fragment.js +504 -0
  106. data/generators/ckeditor_install/templates/ckeditor/_source/core/htmlparser/text.js +55 -0
  107. data/generators/ckeditor_install/templates/ckeditor/_source/core/imagecacher.js +80 -0
  108. data/generators/ckeditor_install/templates/ckeditor/_source/core/lang.js +156 -0
  109. data/generators/ckeditor_install/templates/ckeditor/_source/core/loader.js +243 -0
  110. data/generators/ckeditor_install/templates/ckeditor/_source/core/plugindefinition.js +66 -0
  111. data/generators/ckeditor_install/templates/ckeditor/_source/core/plugins.js +85 -0
  112. data/generators/ckeditor_install/templates/ckeditor/_source/core/resourcemanager.js +238 -0
  113. data/generators/ckeditor_install/templates/ckeditor/_source/core/scriptloader.js +200 -0
  114. data/generators/ckeditor_install/templates/ckeditor/_source/core/skins.js +212 -0
  115. data/generators/ckeditor_install/templates/ckeditor/_source/core/themes.js +19 -0
  116. data/generators/ckeditor_install/templates/ckeditor/_source/core/tools.js +734 -0
  117. data/generators/ckeditor_install/templates/ckeditor/_source/core/ui.js +116 -0
  118. data/generators/ckeditor_install/templates/ckeditor/_source/core/xml.js +165 -0
  119. data/generators/ckeditor_install/templates/ckeditor/_source/lang/_languages.js +83 -0
  120. data/generators/ckeditor_install/templates/ckeditor/_source/lang/_translationstatus.txt +60 -0
  121. data/generators/ckeditor_install/templates/ckeditor/_source/lang/af.js +758 -0
  122. data/generators/ckeditor_install/templates/ckeditor/_source/lang/ar.js +758 -0
  123. data/generators/ckeditor_install/templates/ckeditor/_source/lang/bg.js +758 -0
  124. data/generators/ckeditor_install/templates/ckeditor/_source/lang/bn.js +758 -0
  125. data/generators/ckeditor_install/templates/ckeditor/_source/lang/bs.js +758 -0
  126. data/generators/ckeditor_install/templates/ckeditor/_source/lang/ca.js +758 -0
  127. data/generators/ckeditor_install/templates/ckeditor/_source/lang/cs.js +758 -0
  128. data/generators/ckeditor_install/templates/ckeditor/_source/lang/cy.js +758 -0
  129. data/generators/ckeditor_install/templates/ckeditor/_source/lang/da.js +758 -0
  130. data/generators/ckeditor_install/templates/ckeditor/_source/lang/de.js +758 -0
  131. data/generators/ckeditor_install/templates/ckeditor/_source/lang/el.js +758 -0
  132. data/generators/ckeditor_install/templates/ckeditor/_source/lang/en-au.js +758 -0
  133. data/generators/ckeditor_install/templates/ckeditor/_source/lang/en-ca.js +758 -0
  134. data/generators/ckeditor_install/templates/ckeditor/_source/lang/en-gb.js +758 -0
  135. data/generators/ckeditor_install/templates/ckeditor/_source/lang/en.js +758 -0
  136. data/generators/ckeditor_install/templates/ckeditor/_source/lang/eo.js +758 -0
  137. data/generators/ckeditor_install/templates/ckeditor/_source/lang/es.js +758 -0
  138. data/generators/ckeditor_install/templates/ckeditor/_source/lang/et.js +758 -0
  139. data/generators/ckeditor_install/templates/ckeditor/_source/lang/eu.js +758 -0
  140. data/generators/ckeditor_install/templates/ckeditor/_source/lang/fa.js +758 -0
  141. data/generators/ckeditor_install/templates/ckeditor/_source/lang/fi.js +758 -0
  142. data/generators/ckeditor_install/templates/ckeditor/_source/lang/fo.js +758 -0
  143. data/generators/ckeditor_install/templates/ckeditor/_source/lang/fr-ca.js +758 -0
  144. data/generators/ckeditor_install/templates/ckeditor/_source/lang/fr.js +758 -0
  145. data/generators/ckeditor_install/templates/ckeditor/_source/lang/gl.js +758 -0
  146. data/generators/ckeditor_install/templates/ckeditor/_source/lang/gu.js +758 -0
  147. data/generators/ckeditor_install/templates/ckeditor/_source/lang/he.js +758 -0
  148. data/generators/ckeditor_install/templates/ckeditor/_source/lang/hi.js +758 -0
  149. data/generators/ckeditor_install/templates/ckeditor/_source/lang/hr.js +758 -0
  150. data/generators/ckeditor_install/templates/ckeditor/_source/lang/hu.js +758 -0
  151. data/generators/ckeditor_install/templates/ckeditor/_source/lang/is.js +758 -0
  152. data/generators/ckeditor_install/templates/ckeditor/_source/lang/it.js +758 -0
  153. data/generators/ckeditor_install/templates/ckeditor/_source/lang/ja.js +758 -0
  154. data/generators/ckeditor_install/templates/ckeditor/_source/lang/km.js +758 -0
  155. data/generators/ckeditor_install/templates/ckeditor/_source/lang/ko.js +758 -0
  156. data/generators/ckeditor_install/templates/ckeditor/_source/lang/lt.js +758 -0
  157. data/generators/ckeditor_install/templates/ckeditor/_source/lang/lv.js +758 -0
  158. data/generators/ckeditor_install/templates/ckeditor/_source/lang/mn.js +758 -0
  159. data/generators/ckeditor_install/templates/ckeditor/_source/lang/ms.js +758 -0
  160. data/generators/ckeditor_install/templates/ckeditor/_source/lang/nb.js +758 -0
  161. data/generators/ckeditor_install/templates/ckeditor/_source/lang/nl.js +758 -0
  162. data/generators/ckeditor_install/templates/ckeditor/_source/lang/no.js +758 -0
  163. data/generators/ckeditor_install/templates/ckeditor/_source/lang/pl.js +758 -0
  164. data/generators/ckeditor_install/templates/ckeditor/_source/lang/pt-br.js +757 -0
  165. data/generators/ckeditor_install/templates/ckeditor/_source/lang/pt.js +758 -0
  166. data/generators/ckeditor_install/templates/ckeditor/_source/lang/ro.js +758 -0
  167. data/generators/ckeditor_install/templates/ckeditor/_source/lang/ru.js +758 -0
  168. data/generators/ckeditor_install/templates/ckeditor/_source/lang/sk.js +758 -0
  169. data/generators/ckeditor_install/templates/ckeditor/_source/lang/sl.js +758 -0
  170. data/generators/ckeditor_install/templates/ckeditor/_source/lang/sr-latn.js +758 -0
  171. data/generators/ckeditor_install/templates/ckeditor/_source/lang/sr.js +758 -0
  172. data/generators/ckeditor_install/templates/ckeditor/_source/lang/sv.js +758 -0
  173. data/generators/ckeditor_install/templates/ckeditor/_source/lang/th.js +758 -0
  174. data/generators/ckeditor_install/templates/ckeditor/_source/lang/tr.js +757 -0
  175. data/generators/ckeditor_install/templates/ckeditor/_source/lang/uk.js +758 -0
  176. data/generators/ckeditor_install/templates/ckeditor/_source/lang/vi.js +758 -0
  177. data/generators/ckeditor_install/templates/ckeditor/_source/lang/zh-cn.js +758 -0
  178. data/generators/ckeditor_install/templates/ckeditor/_source/lang/zh.js +758 -0
  179. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +211 -0
  180. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/a11yhelp/lang/en.js +108 -0
  181. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/a11yhelp/lang/he.js +216 -0
  182. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/a11yhelp/plugin.js +46 -0
  183. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/about/dialogs/about.js +73 -0
  184. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png +0 -0
  185. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/about/plugin.js +23 -0
  186. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/ajax_save/plugin.js +43 -0
  187. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/attachment/dialogs/attachment.js +384 -0
  188. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/attachment/images/attachment.png +0 -0
  189. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/attachment/lang/en.js +10 -0
  190. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/attachment/lang/ru.js +10 -0
  191. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/attachment/lang/uk.js +10 -0
  192. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/attachment/plugin.js +44 -0
  193. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/autogrow/plugin.js +86 -0
  194. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/basicstyles/plugin.js +101 -0
  195. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/bidi/plugin.js +259 -0
  196. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/blockquote/plugin.js +301 -0
  197. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/button/plugin.js +277 -0
  198. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/clipboard/dialogs/paste.js +205 -0
  199. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/clipboard/plugin.js +412 -0
  200. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/colorbutton/plugin.js +250 -0
  201. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js +336 -0
  202. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/colordialog/plugin.js +13 -0
  203. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/contextmenu/plugin.js +290 -0
  204. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/dialog/dialogDefinition.js +315 -0
  205. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/dialog/plugin.js +3015 -0
  206. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/dialogadvtab/plugin.js +213 -0
  207. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/dialogui/plugin.js +1523 -0
  208. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/div/dialogs/div.js +535 -0
  209. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/div/plugin.js +121 -0
  210. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/domiterator/plugin.js +356 -0
  211. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/editingblock/plugin.js +229 -0
  212. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/elementspath/plugin.js +206 -0
  213. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/embed/dialogs/embed.js +65 -0
  214. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/embed/images/embed.png +0 -0
  215. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/embed/lang/en.js +9 -0
  216. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/embed/lang/ru.js +9 -0
  217. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/embed/lang/uk.js +9 -0
  218. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/embed/plugin.js +43 -0
  219. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/enterkey/plugin.js +363 -0
  220. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/entities/plugin.js +226 -0
  221. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/fakeobjects/plugin.js +122 -0
  222. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/filebrowser/plugin.js +501 -0
  223. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/find/dialogs/find.js +890 -0
  224. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/find/plugin.js +46 -0
  225. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/flash/dialogs/flash.js +698 -0
  226. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/flash/images/placeholder.png +0 -0
  227. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/flash/plugin.js +168 -0
  228. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/floatpanel/plugin.js +402 -0
  229. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/font/plugin.js +234 -0
  230. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/format/plugin.js +194 -0
  231. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/forms/dialogs/button.js +135 -0
  232. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/forms/dialogs/checkbox.js +153 -0
  233. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/forms/dialogs/form.js +177 -0
  234. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js +98 -0
  235. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/forms/dialogs/radio.js +135 -0
  236. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/forms/dialogs/select.js +556 -0
  237. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/forms/dialogs/textarea.js +114 -0
  238. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/forms/dialogs/textfield.js +199 -0
  239. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/forms/images/hiddenfield.gif +0 -0
  240. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/forms/plugin.js +284 -0
  241. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/horizontalrule/plugin.js +36 -0
  242. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/htmldataprocessor/plugin.js +502 -0
  243. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/htmlwriter/plugin.js +319 -0
  244. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/iframedialog/plugin.js +136 -0
  245. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/image/dialogs/image.js +1396 -0
  246. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/image/plugin.js +81 -0
  247. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/indent/plugin.js +455 -0
  248. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/justify/plugin.js +221 -0
  249. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/keystrokes/plugin.js +225 -0
  250. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/link/dialogs/anchor.js +99 -0
  251. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/link/dialogs/link.js +1424 -0
  252. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/link/images/anchor.gif +0 -0
  253. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/link/plugin.js +238 -0
  254. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/list/plugin.js +710 -0
  255. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/listblock/plugin.js +257 -0
  256. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/liststyle/dialogs/liststyle.js +204 -0
  257. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/liststyle/plugin.js +66 -0
  258. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/maximize/plugin.js +350 -0
  259. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/menu/plugin.js +408 -0
  260. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/menubutton/plugin.js +94 -0
  261. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/newpage/plugin.js +53 -0
  262. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif +0 -0
  263. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/pagebreak/plugin.js +121 -0
  264. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/panel/plugin.js +399 -0
  265. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/panelbutton/plugin.js +147 -0
  266. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/pastefromword/filter/default.js +1170 -0
  267. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/pastefromword/plugin.js +122 -0
  268. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +70 -0
  269. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/pastetext/plugin.js +145 -0
  270. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/popup/plugin.js +64 -0
  271. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/preview/plugin.js +108 -0
  272. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/print/plugin.js +41 -0
  273. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/removeformat/plugin.js +184 -0
  274. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/resize/plugin.js +157 -0
  275. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/richcombo/plugin.js +370 -0
  276. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/save/plugin.js +55 -0
  277. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/scayt/dialogs/options.js +534 -0
  278. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/scayt/dialogs/toolbar.css +71 -0
  279. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/scayt/plugin.js +945 -0
  280. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/selection/plugin.js +1375 -0
  281. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/images/block_address.png +0 -0
  282. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/images/block_blockquote.png +0 -0
  283. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/images/block_div.png +0 -0
  284. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/images/block_h1.png +0 -0
  285. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/images/block_h2.png +0 -0
  286. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/images/block_h3.png +0 -0
  287. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/images/block_h4.png +0 -0
  288. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/images/block_h5.png +0 -0
  289. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/images/block_h6.png +0 -0
  290. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/images/block_p.png +0 -0
  291. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/images/block_pre.png +0 -0
  292. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showblocks/plugin.js +155 -0
  293. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/showborders/plugin.js +201 -0
  294. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/dialogs/smiley.js +218 -0
  295. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/angel_smile.gif +0 -0
  296. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/angry_smile.gif +0 -0
  297. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/broken_heart.gif +0 -0
  298. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/confused_smile.gif +0 -0
  299. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/cry_smile.gif +0 -0
  300. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/devil_smile.gif +0 -0
  301. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif +0 -0
  302. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/envelope.gif +0 -0
  303. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/heart.gif +0 -0
  304. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/kiss.gif +0 -0
  305. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/lightbulb.gif +0 -0
  306. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/omg_smile.gif +0 -0
  307. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/regular_smile.gif +0 -0
  308. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/sad_smile.gif +0 -0
  309. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/shades_smile.gif +0 -0
  310. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/teeth_smile.gif +0 -0
  311. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/thumbs_down.gif +0 -0
  312. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/thumbs_up.gif +0 -0
  313. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/tounge_smile.gif +0 -0
  314. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  315. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/images/wink_smile.gif +0 -0
  316. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/smiley/plugin.js +94 -0
  317. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/sourcearea/plugin.js +207 -0
  318. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js +409 -0
  319. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/specialchar/plugin.js +29 -0
  320. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/styles/plugin.js +1479 -0
  321. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/styles/styles/default.js +88 -0
  322. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/stylescombo/plugin.js +206 -0
  323. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/tab/plugin.js +367 -0
  324. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/table/dialogs/table.js +672 -0
  325. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/table/plugin.js +78 -0
  326. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/tableresize/plugin.js +450 -0
  327. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +533 -0
  328. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/tabletools/plugin.js +1120 -0
  329. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/templates/dialogs/templates.js +233 -0
  330. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/templates/plugin.js +99 -0
  331. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/templates/templates/default.js +94 -0
  332. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/templates/templates/images/template1.gif +0 -0
  333. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/templates/templates/images/template2.gif +0 -0
  334. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/templates/templates/images/template3.gif +0 -0
  335. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/toolbar/plugin.js +481 -0
  336. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js +205 -0
  337. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/uicolor/lang/en.js +15 -0
  338. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/uicolor/lang/he.js +15 -0
  339. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/uicolor/plugin.js +37 -0
  340. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/uicolor/uicolor.gif +0 -0
  341. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png +0 -0
  342. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
  343. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png +0 -0
  344. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
  345. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/uicolor/yui/assets/yui.css +15 -0
  346. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/uicolor/yui/yui.js +71 -0
  347. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/undo/plugin.js +554 -0
  348. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/wsc/dialogs/ciframe.html +49 -0
  349. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html +52 -0
  350. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/wsc/dialogs/wsc.css +82 -0
  351. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/wsc/dialogs/wsc.js +176 -0
  352. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/wsc/plugin.js +33 -0
  353. data/generators/ckeditor_install/templates/ckeditor/_source/plugins/wysiwygarea/plugin.js +1146 -0
  354. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/dialog.css +882 -0
  355. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/editor.css +25 -0
  356. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/elementspath.css +73 -0
  357. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/icons.css +357 -0
  358. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/icons.png +0 -0
  359. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/icons_rtl.png +0 -0
  360. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/images/dialog_sides.gif +0 -0
  361. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/images/dialog_sides.png +0 -0
  362. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png +0 -0
  363. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/images/mini.gif +0 -0
  364. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/images/noimage.png +0 -0
  365. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/images/sprites.png +0 -0
  366. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/images/sprites_ie6.png +0 -0
  367. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/images/toolbar_start.gif +0 -0
  368. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/mainui.css +195 -0
  369. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/menu.css +216 -0
  370. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/panel.css +217 -0
  371. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/presets.css +49 -0
  372. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/reset.css +84 -0
  373. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/richcombo.css +277 -0
  374. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/skin.js +268 -0
  375. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/templates.css +88 -0
  376. data/generators/ckeditor_install/templates/ckeditor/_source/skins/kama/toolbar.css +409 -0
  377. data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/dialog.css +785 -0
  378. data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/editor.css +25 -0
  379. data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/elementspath.css +74 -0
  380. data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/icons.css +354 -0
  381. data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/icons.png +0 -0
  382. data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/icons_rtl.png +0 -0
  383. data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/images/dialog_sides.gif +0 -0
  384. data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/images/dialog_sides.png +0 -0
  385. data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png +0 -0
  386. data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/images/mini.gif +0 -0
  387. data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/images/noimage.png +0 -0
  388. data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/images/sprites.png +0 -0
  389. data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/images/sprites_ie6.png +0 -0
  390. data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/mainui.css +145 -0
  391. data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/menu.css +213 -0
  392. data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/panel.css +212 -0
  393. data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/presets.css +49 -0
  394. data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/reset.css +84 -0
  395. data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/richcombo.css +297 -0
  396. data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/skin.js +81 -0
  397. data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/templates.css +87 -0
  398. data/generators/ckeditor_install/templates/ckeditor/_source/skins/office2003/toolbar.css +470 -0
  399. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/dialog.css +800 -0
  400. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/editor.css +25 -0
  401. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/elementspath.css +74 -0
  402. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/icons.css +354 -0
  403. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/icons.png +0 -0
  404. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/icons_rtl.png +0 -0
  405. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/images/dialog_sides.gif +0 -0
  406. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/images/dialog_sides.png +0 -0
  407. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png +0 -0
  408. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/images/mini.gif +0 -0
  409. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/images/noimage.png +0 -0
  410. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/images/sprites.png +0 -0
  411. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/images/sprites_ie6.png +0 -0
  412. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/images/toolbar_start.gif +0 -0
  413. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/mainui.css +154 -0
  414. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/menu.css +215 -0
  415. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/panel.css +212 -0
  416. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/presets.css +50 -0
  417. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/reset.css +84 -0
  418. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/richcombo.css +297 -0
  419. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/skin.js +77 -0
  420. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/templates.css +87 -0
  421. data/generators/ckeditor_install/templates/ckeditor/_source/skins/v2/toolbar.css +423 -0
  422. data/generators/ckeditor_install/templates/ckeditor/_source/themes/default/theme.js +361 -0
  423. data/generators/ckeditor_install/templates/ckeditor/adapters/jquery.js +6 -0
  424. data/generators/ckeditor_install/templates/ckeditor/ckeditor.js +137 -0
  425. data/generators/ckeditor_install/templates/ckeditor/ckeditor.pack +211 -0
  426. data/generators/ckeditor_install/templates/ckeditor/ckeditor_basic.js +8 -0
  427. data/generators/ckeditor_install/templates/ckeditor/ckeditor_basic_source.js +20 -0
  428. data/generators/ckeditor_install/templates/ckeditor/ckeditor_source.js +25 -0
  429. data/generators/ckeditor_install/templates/ckeditor/config.js +43 -0
  430. data/generators/ckeditor_install/templates/ckeditor/contents.css +39 -0
  431. data/generators/ckeditor_install/templates/ckeditor/css/ckfinder.css +299 -0
  432. data/generators/ckeditor_install/templates/ckeditor/css/fck_dialog.css +119 -0
  433. data/generators/ckeditor_install/templates/ckeditor/css/fck_editor.css +448 -0
  434. data/generators/ckeditor_install/templates/ckeditor/css/swfupload.css +94 -0
  435. data/generators/ckeditor_install/templates/ckeditor/images/add.gif +0 -0
  436. data/generators/ckeditor_install/templates/ckeditor/images/cancelbutton.gif +0 -0
  437. data/generators/ckeditor_install/templates/ckeditor/images/ckfnothumb.gif +0 -0
  438. data/generators/ckeditor_install/templates/ckeditor/images/doc.gif +0 -0
  439. data/generators/ckeditor_install/templates/ckeditor/images/mp3.gif +0 -0
  440. data/generators/ckeditor_install/templates/ckeditor/images/pdf.gif +0 -0
  441. data/generators/ckeditor_install/templates/ckeditor/images/rar.gif +0 -0
  442. data/generators/ckeditor_install/templates/ckeditor/images/refresh.gif +0 -0
  443. data/generators/ckeditor_install/templates/ckeditor/images/select_files.png +0 -0
  444. data/generators/ckeditor_install/templates/ckeditor/images/spacer.gif +0 -0
  445. data/generators/ckeditor_install/templates/ckeditor/images/swf.gif +0 -0
  446. data/generators/ckeditor_install/templates/ckeditor/images/toolbar.start.gif +0 -0
  447. data/generators/ckeditor_install/templates/ckeditor/images/xls.gif +0 -0
  448. data/generators/ckeditor_install/templates/ckeditor/lang/_languages.js +6 -0
  449. data/generators/ckeditor_install/templates/ckeditor/lang/_translationstatus.txt +60 -0
  450. data/generators/ckeditor_install/templates/ckeditor/lang/af.js +6 -0
  451. data/generators/ckeditor_install/templates/ckeditor/lang/ar.js +6 -0
  452. data/generators/ckeditor_install/templates/ckeditor/lang/bg.js +6 -0
  453. data/generators/ckeditor_install/templates/ckeditor/lang/bn.js +6 -0
  454. data/generators/ckeditor_install/templates/ckeditor/lang/bs.js +6 -0
  455. data/generators/ckeditor_install/templates/ckeditor/lang/ca.js +6 -0
  456. data/generators/ckeditor_install/templates/ckeditor/lang/cs.js +6 -0
  457. data/generators/ckeditor_install/templates/ckeditor/lang/cy.js +6 -0
  458. data/generators/ckeditor_install/templates/ckeditor/lang/da.js +6 -0
  459. data/generators/ckeditor_install/templates/ckeditor/lang/de.js +6 -0
  460. data/generators/ckeditor_install/templates/ckeditor/lang/el.js +6 -0
  461. data/generators/ckeditor_install/templates/ckeditor/lang/en-au.js +6 -0
  462. data/generators/ckeditor_install/templates/ckeditor/lang/en-ca.js +6 -0
  463. data/generators/ckeditor_install/templates/ckeditor/lang/en-gb.js +6 -0
  464. data/generators/ckeditor_install/templates/ckeditor/lang/en.js +6 -0
  465. data/generators/ckeditor_install/templates/ckeditor/lang/eo.js +6 -0
  466. data/generators/ckeditor_install/templates/ckeditor/lang/es.js +6 -0
  467. data/generators/ckeditor_install/templates/ckeditor/lang/et.js +6 -0
  468. data/generators/ckeditor_install/templates/ckeditor/lang/eu.js +6 -0
  469. data/generators/ckeditor_install/templates/ckeditor/lang/fa.js +6 -0
  470. data/generators/ckeditor_install/templates/ckeditor/lang/fi.js +6 -0
  471. data/generators/ckeditor_install/templates/ckeditor/lang/fo.js +6 -0
  472. data/generators/ckeditor_install/templates/ckeditor/lang/fr-ca.js +6 -0
  473. data/generators/ckeditor_install/templates/ckeditor/lang/fr.js +6 -0
  474. data/generators/ckeditor_install/templates/ckeditor/lang/gl.js +6 -0
  475. data/generators/ckeditor_install/templates/ckeditor/lang/gu.js +6 -0
  476. data/generators/ckeditor_install/templates/ckeditor/lang/he.js +6 -0
  477. data/generators/ckeditor_install/templates/ckeditor/lang/hi.js +6 -0
  478. data/generators/ckeditor_install/templates/ckeditor/lang/hr.js +6 -0
  479. data/generators/ckeditor_install/templates/ckeditor/lang/hu.js +6 -0
  480. data/generators/ckeditor_install/templates/ckeditor/lang/is.js +6 -0
  481. data/generators/ckeditor_install/templates/ckeditor/lang/it.js +6 -0
  482. data/generators/ckeditor_install/templates/ckeditor/lang/ja.js +6 -0
  483. data/generators/ckeditor_install/templates/ckeditor/lang/km.js +6 -0
  484. data/generators/ckeditor_install/templates/ckeditor/lang/ko.js +6 -0
  485. data/generators/ckeditor_install/templates/ckeditor/lang/lt.js +6 -0
  486. data/generators/ckeditor_install/templates/ckeditor/lang/lv.js +6 -0
  487. data/generators/ckeditor_install/templates/ckeditor/lang/mn.js +6 -0
  488. data/generators/ckeditor_install/templates/ckeditor/lang/ms.js +6 -0
  489. data/generators/ckeditor_install/templates/ckeditor/lang/nb.js +6 -0
  490. data/generators/ckeditor_install/templates/ckeditor/lang/nl.js +6 -0
  491. data/generators/ckeditor_install/templates/ckeditor/lang/no.js +6 -0
  492. data/generators/ckeditor_install/templates/ckeditor/lang/pl.js +6 -0
  493. data/generators/ckeditor_install/templates/ckeditor/lang/pt-br.js +6 -0
  494. data/generators/ckeditor_install/templates/ckeditor/lang/pt.js +6 -0
  495. data/generators/ckeditor_install/templates/ckeditor/lang/ro.js +6 -0
  496. data/generators/ckeditor_install/templates/ckeditor/lang/ru.js +6 -0
  497. data/generators/ckeditor_install/templates/ckeditor/lang/sk.js +6 -0
  498. data/generators/ckeditor_install/templates/ckeditor/lang/sl.js +6 -0
  499. data/generators/ckeditor_install/templates/ckeditor/lang/sr-latn.js +6 -0
  500. data/generators/ckeditor_install/templates/ckeditor/lang/sr.js +6 -0
  501. data/generators/ckeditor_install/templates/ckeditor/lang/sv.js +6 -0
  502. data/generators/ckeditor_install/templates/ckeditor/lang/th.js +6 -0
  503. data/generators/ckeditor_install/templates/ckeditor/lang/tr.js +6 -0
  504. data/generators/ckeditor_install/templates/ckeditor/lang/uk.js +6 -0
  505. data/generators/ckeditor_install/templates/ckeditor/lang/vi.js +6 -0
  506. data/generators/ckeditor_install/templates/ckeditor/lang/zh-cn.js +6 -0
  507. data/generators/ckeditor_install/templates/ckeditor/lang/zh.js +6 -0
  508. data/generators/ckeditor_install/templates/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +7 -0
  509. data/generators/ckeditor_install/templates/ckeditor/plugins/a11yhelp/lang/en.js +6 -0
  510. data/generators/ckeditor_install/templates/ckeditor/plugins/a11yhelp/lang/he.js +6 -0
  511. data/generators/ckeditor_install/templates/ckeditor/plugins/about/dialogs/about.js +6 -0
  512. data/generators/ckeditor_install/templates/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
  513. data/generators/ckeditor_install/templates/ckeditor/plugins/ajax_save/plugin.js +1 -0
  514. data/generators/ckeditor_install/templates/ckeditor/plugins/attachment/dialogs/attachment.js +1 -0
  515. data/generators/ckeditor_install/templates/ckeditor/plugins/attachment/images/attachment.png +0 -0
  516. data/generators/ckeditor_install/templates/ckeditor/plugins/attachment/lang/en.js +10 -0
  517. data/generators/ckeditor_install/templates/ckeditor/plugins/attachment/lang/ru.js +10 -0
  518. data/generators/ckeditor_install/templates/ckeditor/plugins/attachment/lang/uk.js +10 -0
  519. data/generators/ckeditor_install/templates/ckeditor/plugins/attachment/plugin.js +1 -0
  520. data/generators/ckeditor_install/templates/ckeditor/plugins/autogrow/plugin.js +6 -0
  521. data/generators/ckeditor_install/templates/ckeditor/plugins/clipboard/dialogs/paste.js +7 -0
  522. data/generators/ckeditor_install/templates/ckeditor/plugins/colordialog/dialogs/colordialog.js +7 -0
  523. data/generators/ckeditor_install/templates/ckeditor/plugins/dialog/dialogDefinition.js +4 -0
  524. data/generators/ckeditor_install/templates/ckeditor/plugins/div/dialogs/div.js +8 -0
  525. data/generators/ckeditor_install/templates/ckeditor/plugins/embed/dialogs/embed.js +1 -0
  526. data/generators/ckeditor_install/templates/ckeditor/plugins/embed/images/embed.png +0 -0
  527. data/generators/ckeditor_install/templates/ckeditor/plugins/embed/lang/en.js +9 -0
  528. data/generators/ckeditor_install/templates/ckeditor/plugins/embed/lang/ru.js +9 -0
  529. data/generators/ckeditor_install/templates/ckeditor/plugins/embed/lang/uk.js +9 -0
  530. data/generators/ckeditor_install/templates/ckeditor/plugins/embed/plugin.js +1 -0
  531. data/generators/ckeditor_install/templates/ckeditor/plugins/find/dialogs/find.js +9 -0
  532. data/generators/ckeditor_install/templates/ckeditor/plugins/flash/dialogs/flash.js +9 -0
  533. data/generators/ckeditor_install/templates/ckeditor/plugins/flash/images/placeholder.png +0 -0
  534. data/generators/ckeditor_install/templates/ckeditor/plugins/forms/dialogs/button.js +6 -0
  535. data/generators/ckeditor_install/templates/ckeditor/plugins/forms/dialogs/checkbox.js +6 -0
  536. data/generators/ckeditor_install/templates/ckeditor/plugins/forms/dialogs/form.js +6 -0
  537. data/generators/ckeditor_install/templates/ckeditor/plugins/forms/dialogs/hiddenfield.js +6 -0
  538. data/generators/ckeditor_install/templates/ckeditor/plugins/forms/dialogs/radio.js +6 -0
  539. data/generators/ckeditor_install/templates/ckeditor/plugins/forms/dialogs/select.js +9 -0
  540. data/generators/ckeditor_install/templates/ckeditor/plugins/forms/dialogs/textarea.js +6 -0
  541. data/generators/ckeditor_install/templates/ckeditor/plugins/forms/dialogs/textfield.js +7 -0
  542. data/generators/ckeditor_install/templates/ckeditor/plugins/forms/images/hiddenfield.gif +0 -0
  543. data/generators/ckeditor_install/templates/ckeditor/plugins/iframedialog/plugin.js +6 -0
  544. data/generators/ckeditor_install/templates/ckeditor/plugins/image/dialogs/image.js +13 -0
  545. data/generators/ckeditor_install/templates/ckeditor/plugins/link/dialogs/anchor.js +6 -0
  546. data/generators/ckeditor_install/templates/ckeditor/plugins/link/dialogs/link.js +11 -0
  547. data/generators/ckeditor_install/templates/ckeditor/plugins/link/images/anchor.gif +0 -0
  548. data/generators/ckeditor_install/templates/ckeditor/plugins/liststyle/dialogs/liststyle.js +6 -0
  549. data/generators/ckeditor_install/templates/ckeditor/plugins/pagebreak/images/pagebreak.gif +0 -0
  550. data/generators/ckeditor_install/templates/ckeditor/plugins/pastefromword/filter/default.js +10 -0
  551. data/generators/ckeditor_install/templates/ckeditor/plugins/pastetext/dialogs/pastetext.js +6 -0
  552. data/generators/ckeditor_install/templates/ckeditor/plugins/scayt/dialogs/options.js +8 -0
  553. data/generators/ckeditor_install/templates/ckeditor/plugins/scayt/dialogs/toolbar.css +6 -0
  554. data/generators/ckeditor_install/templates/ckeditor/plugins/showblocks/images/block_address.png +0 -0
  555. data/generators/ckeditor_install/templates/ckeditor/plugins/showblocks/images/block_blockquote.png +0 -0
  556. data/generators/ckeditor_install/templates/ckeditor/plugins/showblocks/images/block_div.png +0 -0
  557. data/generators/ckeditor_install/templates/ckeditor/plugins/showblocks/images/block_h1.png +0 -0
  558. data/generators/ckeditor_install/templates/ckeditor/plugins/showblocks/images/block_h2.png +0 -0
  559. data/generators/ckeditor_install/templates/ckeditor/plugins/showblocks/images/block_h3.png +0 -0
  560. data/generators/ckeditor_install/templates/ckeditor/plugins/showblocks/images/block_h4.png +0 -0
  561. data/generators/ckeditor_install/templates/ckeditor/plugins/showblocks/images/block_h5.png +0 -0
  562. data/generators/ckeditor_install/templates/ckeditor/plugins/showblocks/images/block_h6.png +0 -0
  563. data/generators/ckeditor_install/templates/ckeditor/plugins/showblocks/images/block_p.png +0 -0
  564. data/generators/ckeditor_install/templates/ckeditor/plugins/showblocks/images/block_pre.png +0 -0
  565. data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/dialogs/smiley.js +7 -0
  566. data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
  567. data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
  568. data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
  569. data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
  570. data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
  571. data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
  572. data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
  573. data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/envelope.gif +0 -0
  574. data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/heart.gif +0 -0
  575. data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/kiss.gif +0 -0
  576. data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
  577. data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
  578. data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
  579. data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
  580. data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
  581. data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
  582. data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
  583. data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
  584. data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
  585. data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  586. data/generators/ckeditor_install/templates/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
  587. data/generators/ckeditor_install/templates/ckeditor/plugins/specialchar/dialogs/specialchar.js +7 -0
  588. data/generators/ckeditor_install/templates/ckeditor/plugins/styles/styles/default.js +6 -0
  589. data/generators/ckeditor_install/templates/ckeditor/plugins/table/dialogs/table.js +9 -0
  590. data/generators/ckeditor_install/templates/ckeditor/plugins/tableresize/plugin.js +7 -0
  591. data/generators/ckeditor_install/templates/ckeditor/plugins/tabletools/dialogs/tableCell.js +8 -0
  592. data/generators/ckeditor_install/templates/ckeditor/plugins/templates/dialogs/templates.js +7 -0
  593. data/generators/ckeditor_install/templates/ckeditor/plugins/templates/templates/default.js +6 -0
  594. data/generators/ckeditor_install/templates/ckeditor/plugins/templates/templates/images/template1.gif +0 -0
  595. data/generators/ckeditor_install/templates/ckeditor/plugins/templates/templates/images/template2.gif +0 -0
  596. data/generators/ckeditor_install/templates/ckeditor/plugins/templates/templates/images/template3.gif +0 -0
  597. data/generators/ckeditor_install/templates/ckeditor/plugins/uicolor/dialogs/uicolor.js +7 -0
  598. data/generators/ckeditor_install/templates/ckeditor/plugins/uicolor/lang/en.js +6 -0
  599. data/generators/ckeditor_install/templates/ckeditor/plugins/uicolor/lang/he.js +6 -0
  600. data/generators/ckeditor_install/templates/ckeditor/plugins/uicolor/plugin.js +6 -0
  601. data/generators/ckeditor_install/templates/ckeditor/plugins/uicolor/uicolor.gif +0 -0
  602. data/generators/ckeditor_install/templates/ckeditor/plugins/uicolor/yui/assets/hue_bg.png +0 -0
  603. data/generators/ckeditor_install/templates/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
  604. data/generators/ckeditor_install/templates/ckeditor/plugins/uicolor/yui/assets/picker_mask.png +0 -0
  605. data/generators/ckeditor_install/templates/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
  606. data/generators/ckeditor_install/templates/ckeditor/plugins/uicolor/yui/assets/yui.css +6 -0
  607. data/generators/ckeditor_install/templates/ckeditor/plugins/uicolor/yui/yui.js +76 -0
  608. data/generators/ckeditor_install/templates/ckeditor/plugins/wsc/dialogs/ciframe.html +49 -0
  609. data/generators/ckeditor_install/templates/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +52 -0
  610. data/generators/ckeditor_install/templates/ckeditor/plugins/wsc/dialogs/wsc.css +6 -0
  611. data/generators/ckeditor_install/templates/ckeditor/plugins/wsc/dialogs/wsc.js +7 -0
  612. data/generators/ckeditor_install/templates/ckeditor/skins/kama/dialog.css +9 -0
  613. data/generators/ckeditor_install/templates/ckeditor/skins/kama/editor.css +12 -0
  614. data/generators/ckeditor_install/templates/ckeditor/skins/kama/icons.png +0 -0
  615. data/generators/ckeditor_install/templates/ckeditor/skins/kama/icons_rtl.png +0 -0
  616. data/generators/ckeditor_install/templates/ckeditor/skins/kama/images/dialog_sides.gif +0 -0
  617. data/generators/ckeditor_install/templates/ckeditor/skins/kama/images/dialog_sides.png +0 -0
  618. data/generators/ckeditor_install/templates/ckeditor/skins/kama/images/dialog_sides_rtl.png +0 -0
  619. data/generators/ckeditor_install/templates/ckeditor/skins/kama/images/mini.gif +0 -0
  620. data/generators/ckeditor_install/templates/ckeditor/skins/kama/images/noimage.png +0 -0
  621. data/generators/ckeditor_install/templates/ckeditor/skins/kama/images/sprites.png +0 -0
  622. data/generators/ckeditor_install/templates/ckeditor/skins/kama/images/sprites_ie6.png +0 -0
  623. data/generators/ckeditor_install/templates/ckeditor/skins/kama/images/toolbar_start.gif +0 -0
  624. data/generators/ckeditor_install/templates/ckeditor/skins/kama/skin.js +7 -0
  625. data/generators/ckeditor_install/templates/ckeditor/skins/kama/templates.css +6 -0
  626. data/generators/ckeditor_install/templates/ckeditor/skins/office2003/dialog.css +9 -0
  627. data/generators/ckeditor_install/templates/ckeditor/skins/office2003/editor.css +13 -0
  628. data/generators/ckeditor_install/templates/ckeditor/skins/office2003/icons.png +0 -0
  629. data/generators/ckeditor_install/templates/ckeditor/skins/office2003/icons_rtl.png +0 -0
  630. data/generators/ckeditor_install/templates/ckeditor/skins/office2003/images/dialog_sides.gif +0 -0
  631. data/generators/ckeditor_install/templates/ckeditor/skins/office2003/images/dialog_sides.png +0 -0
  632. data/generators/ckeditor_install/templates/ckeditor/skins/office2003/images/dialog_sides_rtl.png +0 -0
  633. data/generators/ckeditor_install/templates/ckeditor/skins/office2003/images/mini.gif +0 -0
  634. data/generators/ckeditor_install/templates/ckeditor/skins/office2003/images/noimage.png +0 -0
  635. data/generators/ckeditor_install/templates/ckeditor/skins/office2003/images/sprites.png +0 -0
  636. data/generators/ckeditor_install/templates/ckeditor/skins/office2003/images/sprites_ie6.png +0 -0
  637. data/generators/ckeditor_install/templates/ckeditor/skins/office2003/skin.js +6 -0
  638. data/generators/ckeditor_install/templates/ckeditor/skins/office2003/templates.css +6 -0
  639. data/generators/ckeditor_install/templates/ckeditor/skins/v2/dialog.css +9 -0
  640. data/generators/ckeditor_install/templates/ckeditor/skins/v2/editor.css +12 -0
  641. data/generators/ckeditor_install/templates/ckeditor/skins/v2/icons.png +0 -0
  642. data/generators/ckeditor_install/templates/ckeditor/skins/v2/icons_rtl.png +0 -0
  643. data/generators/ckeditor_install/templates/ckeditor/skins/v2/images/dialog_sides.gif +0 -0
  644. data/generators/ckeditor_install/templates/ckeditor/skins/v2/images/dialog_sides.png +0 -0
  645. data/generators/ckeditor_install/templates/ckeditor/skins/v2/images/dialog_sides_rtl.png +0 -0
  646. data/generators/ckeditor_install/templates/ckeditor/skins/v2/images/mini.gif +0 -0
  647. data/generators/ckeditor_install/templates/ckeditor/skins/v2/images/noimage.png +0 -0
  648. data/generators/ckeditor_install/templates/ckeditor/skins/v2/images/sprites.png +0 -0
  649. data/generators/ckeditor_install/templates/ckeditor/skins/v2/images/sprites_ie6.png +0 -0
  650. data/generators/ckeditor_install/templates/ckeditor/skins/v2/images/toolbar_start.gif +0 -0
  651. data/generators/ckeditor_install/templates/ckeditor/skins/v2/skin.js +6 -0
  652. data/generators/ckeditor_install/templates/ckeditor/skins/v2/templates.css +6 -0
  653. data/generators/ckeditor_install/templates/ckeditor/swfupload/fileprogress.js +275 -0
  654. data/generators/ckeditor_install/templates/ckeditor/swfupload/handlers.js +170 -0
  655. data/generators/ckeditor_install/templates/ckeditor/swfupload/mootools-1.2.3-core-yc.js +356 -0
  656. data/generators/ckeditor_install/templates/ckeditor/swfupload/querystring.js +40 -0
  657. data/generators/ckeditor_install/templates/ckeditor/swfupload/swfupload.js +1 -0
  658. data/generators/ckeditor_install/templates/ckeditor/swfupload/swfupload.queue.js +1 -0
  659. data/generators/ckeditor_install/templates/ckeditor/swfupload/swfupload.swf +0 -0
  660. data/generators/ckeditor_install/templates/ckeditor/swfupload/swfupload.swfobject.js +111 -0
  661. data/generators/ckeditor_install/templates/ckeditor/themes/default/theme.js +8 -0
  662. data/generators/ckeditor_migration/USAGE +12 -0
  663. data/generators/ckeditor_migration/ckeditor_migration_generator.rb +36 -0
  664. data/generators/ckeditor_migration/templates/models/attachment_fu/asset.rb +32 -0
  665. data/generators/ckeditor_migration/templates/models/attachment_fu/attachment_file.rb +24 -0
  666. data/generators/ckeditor_migration/templates/models/attachment_fu/migration.rb +30 -0
  667. data/generators/ckeditor_migration/templates/models/attachment_fu/picture.rb +25 -0
  668. data/generators/ckeditor_migration/templates/models/paperclip/asset.rb +88 -0
  669. data/generators/ckeditor_migration/templates/models/paperclip/attachment_file.rb +40 -0
  670. data/generators/ckeditor_migration/templates/models/paperclip/migration.rb +31 -0
  671. data/generators/ckeditor_migration/templates/models/paperclip/picture.rb +23 -0
  672. data/lib/ckeditor.rb +89 -0
  673. data/lib/ckeditor/form_builder.rb +22 -0
  674. data/lib/ckeditor/formtastic.rb +12 -0
  675. data/lib/ckeditor/middleware.rb +18 -0
  676. data/lib/ckeditor/safe_buffer.rb +34 -0
  677. data/lib/ckeditor/utils.rb +19 -0
  678. data/lib/ckeditor/version.rb +11 -0
  679. data/lib/ckeditor/view_helper.rb +91 -0
  680. metadata +768 -0
@@ -0,0 +1,40 @@
1
+ /* Client-side access to querystring name=value pairs
2
+ Version 1.3
3
+ 28 May 2008
4
+
5
+ License (Simplified BSD):
6
+ http://adamv.com/dev/javascript/qslicense.txt
7
+ */
8
+ function Querystring(qs) { // optionally pass a querystring to parse
9
+ this.params = {};
10
+
11
+ if (qs == null) qs = location.search.substring(1, location.search.length);
12
+ if (qs.length == 0) return;
13
+
14
+ // Turn <plus> back to <space>
15
+ // See: http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.13.4.1
16
+ qs = qs.replace(/\+/g, ' ');
17
+ var args = qs.split('&'); // parse out name/value pairs separated via &
18
+
19
+ // split out each name=value pair
20
+ for (var i = 0; i < args.length; i++) {
21
+ var pair = args[i].split('=');
22
+ var name = decodeURIComponent(pair[0]);
23
+
24
+ var value = (pair.length==2)
25
+ ? decodeURIComponent(pair[1])
26
+ : name;
27
+
28
+ this.params[name] = value;
29
+ }
30
+ }
31
+
32
+ Querystring.prototype.get = function(key, default_) {
33
+ var value = this.params[key];
34
+ return (value != null) ? value : default_;
35
+ }
36
+
37
+ Querystring.prototype.contains = function(key) {
38
+ var value = this.params[key];
39
+ return (value != null);
40
+ }
@@ -0,0 +1 @@
1
+ var SWFUpload;if(SWFUpload==undefined){SWFUpload=function(settings){this.initSWFUpload(settings)}}SWFUpload.prototype.initSWFUpload=function(settings){try{this.customSettings={};this.settings=settings;this.eventQueue=[];this.movieName="SWFUpload_"+SWFUpload.movieCount++;this.movieElement=null;SWFUpload.instances[this.movieName]=this;this.initSettings();this.loadFlash();this.displayDebugInfo()}catch(ex){delete SWFUpload.instances[this.movieName];throw ex;}};SWFUpload.instances={};SWFUpload.movieCount=0;SWFUpload.version="2.2.0 2009-03-25";SWFUpload.QUEUE_ERROR={QUEUE_LIMIT_EXCEEDED:-100,FILE_EXCEEDS_SIZE_LIMIT:-110,ZERO_BYTE_FILE:-120,INVALID_FILETYPE:-130};SWFUpload.UPLOAD_ERROR={HTTP_ERROR:-200,MISSING_UPLOAD_URL:-210,IO_ERROR:-220,SECURITY_ERROR:-230,UPLOAD_LIMIT_EXCEEDED:-240,UPLOAD_FAILED:-250,SPECIFIED_FILE_ID_NOT_FOUND:-260,FILE_VALIDATION_FAILED:-270,FILE_CANCELLED:-280,UPLOAD_STOPPED:-290};SWFUpload.FILE_STATUS={QUEUED:-1,IN_PROGRESS:-2,ERROR:-3,COMPLETE:-4,CANCELLED:-5};SWFUpload.BUTTON_ACTION={SELECT_FILE:-100,SELECT_FILES:-110,START_UPLOAD:-120};SWFUpload.CURSOR={ARROW:-1,HAND:-2};SWFUpload.WINDOW_MODE={WINDOW:"window",TRANSPARENT:"transparent",OPAQUE:"opaque"};SWFUpload.completeURL=function(url){if(typeof(url)!=="string"||url.match(/^https?:\/\//i)||url.match(/^\//)){return url}var currentURL=window.location.protocol+"//"+window.location.hostname+(window.location.port?":"+window.location.port:"");var indexSlash=window.location.pathname.lastIndexOf("/");if(indexSlash<=0){path="/"}else{path=window.location.pathname.substr(0,indexSlash)+"/"}return path+url};SWFUpload.prototype.initSettings=function(){this.ensureDefault=function(settingName,defaultValue){this.settings[settingName]=(this.settings[settingName]==undefined)?defaultValue:this.settings[settingName]};this.ensureDefault("upload_url","");this.ensureDefault("preserve_relative_urls",false);this.ensureDefault("file_post_name","Filedata");this.ensureDefault("post_params",{});this.ensureDefault("use_query_string",false);this.ensureDefault("requeue_on_error",false);this.ensureDefault("http_success",[]);this.ensureDefault("assume_success_timeout",0);this.ensureDefault("file_types","*.*");this.ensureDefault("file_types_description","All Files");this.ensureDefault("file_size_limit",0);this.ensureDefault("file_upload_limit",0);this.ensureDefault("file_queue_limit",0);this.ensureDefault("flash_url","swfupload.swf");this.ensureDefault("prevent_swf_caching",true);this.ensureDefault("button_image_url","");this.ensureDefault("button_width",1);this.ensureDefault("button_height",1);this.ensureDefault("button_text","");this.ensureDefault("button_text_style","color: #000000; font-size: 16pt;");this.ensureDefault("button_text_top_padding",0);this.ensureDefault("button_text_left_padding",0);this.ensureDefault("button_action",SWFUpload.BUTTON_ACTION.SELECT_FILES);this.ensureDefault("button_disabled",false);this.ensureDefault("button_placeholder_id","");this.ensureDefault("button_placeholder",null);this.ensureDefault("button_cursor",SWFUpload.CURSOR.ARROW);this.ensureDefault("button_window_mode",SWFUpload.WINDOW_MODE.WINDOW);this.ensureDefault("debug",false);this.settings.debug_enabled=this.settings.debug;this.settings.return_upload_start_handler=this.returnUploadStart;this.ensureDefault("swfupload_loaded_handler",null);this.ensureDefault("file_dialog_start_handler",null);this.ensureDefault("file_queued_handler",null);this.ensureDefault("file_queue_error_handler",null);this.ensureDefault("file_dialog_complete_handler",null);this.ensureDefault("upload_start_handler",null);this.ensureDefault("upload_progress_handler",null);this.ensureDefault("upload_error_handler",null);this.ensureDefault("upload_success_handler",null);this.ensureDefault("upload_complete_handler",null);this.ensureDefault("debug_handler",this.debugMessage);this.ensureDefault("custom_settings",{});this.customSettings=this.settings.custom_settings;if(!!this.settings.prevent_swf_caching){this.settings.flash_url=this.settings.flash_url+(this.settings.flash_url.indexOf("?")<0?"?":"&")+"preventswfcaching="+new Date().getTime()}if(!this.settings.preserve_relative_urls){this.settings.upload_url=SWFUpload.completeURL(this.settings.upload_url);this.settings.button_image_url=SWFUpload.completeURL(this.settings.button_image_url)}delete this.ensureDefault};SWFUpload.prototype.loadFlash=function(){var targetElement,tempParent;if(document.getElementById(this.movieName)!==null){throw"ID "+this.movieName+" is already in use. The Flash Object could not be added";}targetElement=document.getElementById(this.settings.button_placeholder_id)||this.settings.button_placeholder;if(targetElement==undefined){throw"Could not find the placeholder element: "+this.settings.button_placeholder_id;}tempParent=document.createElement("div");tempParent.innerHTML=this.getFlashHTML();targetElement.parentNode.replaceChild(tempParent.firstChild,targetElement);if(window[this.movieName]==undefined){window[this.movieName]=this.getMovieElement()}};SWFUpload.prototype.getFlashHTML=function(){return['<object id="',this.movieName,'" type="application/x-shockwave-flash" data="',this.settings.flash_url,'" width="',this.settings.button_width,'" height="',this.settings.button_height,'" class="swfupload">','<param name="wmode" value="',this.settings.button_window_mode,'" />','<param name="movie" value="',this.settings.flash_url,'" />','<param name="quality" value="high" />','<param name="menu" value="false" />','<param name="allowScriptAccess" value="always" />','<param name="flashvars" value="'+this.getFlashVars()+'" />','</object>'].join("")};SWFUpload.prototype.getFlashVars=function(){var paramString=this.buildParamString();var httpSuccessString=this.settings.http_success.join(",");return["movieName=",encodeURIComponent(this.movieName),"&amp;uploadURL=",encodeURIComponent(this.settings.upload_url),"&amp;useQueryString=",encodeURIComponent(this.settings.use_query_string),"&amp;requeueOnError=",encodeURIComponent(this.settings.requeue_on_error),"&amp;httpSuccess=",encodeURIComponent(httpSuccessString),"&amp;assumeSuccessTimeout=",encodeURIComponent(this.settings.assume_success_timeout),"&amp;params=",encodeURIComponent(paramString),"&amp;filePostName=",encodeURIComponent(this.settings.file_post_name),"&amp;fileTypes=",encodeURIComponent(this.settings.file_types),"&amp;fileTypesDescription=",encodeURIComponent(this.settings.file_types_description),"&amp;fileSizeLimit=",encodeURIComponent(this.settings.file_size_limit),"&amp;fileUploadLimit=",encodeURIComponent(this.settings.file_upload_limit),"&amp;fileQueueLimit=",encodeURIComponent(this.settings.file_queue_limit),"&amp;debugEnabled=",encodeURIComponent(this.settings.debug_enabled),"&amp;buttonImageURL=",encodeURIComponent(this.settings.button_image_url),"&amp;buttonWidth=",encodeURIComponent(this.settings.button_width),"&amp;buttonHeight=",encodeURIComponent(this.settings.button_height),"&amp;buttonText=",encodeURIComponent(this.settings.button_text),"&amp;buttonTextTopPadding=",encodeURIComponent(this.settings.button_text_top_padding),"&amp;buttonTextLeftPadding=",encodeURIComponent(this.settings.button_text_left_padding),"&amp;buttonTextStyle=",encodeURIComponent(this.settings.button_text_style),"&amp;buttonAction=",encodeURIComponent(this.settings.button_action),"&amp;buttonDisabled=",encodeURIComponent(this.settings.button_disabled),"&amp;buttonCursor=",encodeURIComponent(this.settings.button_cursor)].join("")};SWFUpload.prototype.getMovieElement=function(){if(this.movieElement==undefined){this.movieElement=document.getElementById(this.movieName)}if(this.movieElement===null){throw"Could not find Flash element";}return this.movieElement};SWFUpload.prototype.buildParamString=function(){var postParams=this.settings.post_params;var paramStringPairs=[];if(typeof(postParams)==="object"){for(var name in postParams){if(postParams.hasOwnProperty(name)){paramStringPairs.push(encodeURIComponent(name.toString())+"="+encodeURIComponent(postParams[name].toString()))}}}return paramStringPairs.join("&amp;")};SWFUpload.prototype.destroy=function(){try{this.cancelUpload(null,false);var movieElement=null;movieElement=this.getMovieElement();if(movieElement&&typeof(movieElement.CallFunction)==="unknown"){for(var i in movieElement){try{if(typeof(movieElement[i])==="function"){movieElement[i]=null}}catch(ex1){}}try{movieElement.parentNode.removeChild(movieElement)}catch(ex){}}window[this.movieName]=null;SWFUpload.instances[this.movieName]=null;delete SWFUpload.instances[this.movieName];this.movieElement=null;this.settings=null;this.customSettings=null;this.eventQueue=null;this.movieName=null;return true}catch(ex2){return false}};SWFUpload.prototype.displayDebugInfo=function(){this.debug(["---SWFUpload Instance Info---\n","Version: ",SWFUpload.version,"\n","Movie Name: ",this.movieName,"\n","Settings:\n","\t","upload_url: ",this.settings.upload_url,"\n","\t","flash_url: ",this.settings.flash_url,"\n","\t","use_query_string: ",this.settings.use_query_string.toString(),"\n","\t","requeue_on_error: ",this.settings.requeue_on_error.toString(),"\n","\t","http_success: ",this.settings.http_success.join(", "),"\n","\t","assume_success_timeout: ",this.settings.assume_success_timeout,"\n","\t","file_post_name: ",this.settings.file_post_name,"\n","\t","post_params: ",this.settings.post_params.toString(),"\n","\t","file_types: ",this.settings.file_types,"\n","\t","file_types_description: ",this.settings.file_types_description,"\n","\t","file_size_limit: ",this.settings.file_size_limit,"\n","\t","file_upload_limit: ",this.settings.file_upload_limit,"\n","\t","file_queue_limit: ",this.settings.file_queue_limit,"\n","\t","debug: ",this.settings.debug.toString(),"\n","\t","prevent_swf_caching: ",this.settings.prevent_swf_caching.toString(),"\n","\t","button_placeholder_id: ",this.settings.button_placeholder_id.toString(),"\n","\t","button_placeholder: ",(this.settings.button_placeholder?"Set":"Not Set"),"\n","\t","button_image_url: ",this.settings.button_image_url.toString(),"\n","\t","button_width: ",this.settings.button_width.toString(),"\n","\t","button_height: ",this.settings.button_height.toString(),"\n","\t","button_text: ",this.settings.button_text.toString(),"\n","\t","button_text_style: ",this.settings.button_text_style.toString(),"\n","\t","button_text_top_padding: ",this.settings.button_text_top_padding.toString(),"\n","\t","button_text_left_padding: ",this.settings.button_text_left_padding.toString(),"\n","\t","button_action: ",this.settings.button_action.toString(),"\n","\t","button_disabled: ",this.settings.button_disabled.toString(),"\n","\t","custom_settings: ",this.settings.custom_settings.toString(),"\n","Event Handlers:\n","\t","swfupload_loaded_handler assigned: ",(typeof this.settings.swfupload_loaded_handler==="function").toString(),"\n","\t","file_dialog_start_handler assigned: ",(typeof this.settings.file_dialog_start_handler==="function").toString(),"\n","\t","file_queued_handler assigned: ",(typeof this.settings.file_queued_handler==="function").toString(),"\n","\t","file_queue_error_handler assigned: ",(typeof this.settings.file_queue_error_handler==="function").toString(),"\n","\t","upload_start_handler assigned: ",(typeof this.settings.upload_start_handler==="function").toString(),"\n","\t","upload_progress_handler assigned: ",(typeof this.settings.upload_progress_handler==="function").toString(),"\n","\t","upload_error_handler assigned: ",(typeof this.settings.upload_error_handler==="function").toString(),"\n","\t","upload_success_handler assigned: ",(typeof this.settings.upload_success_handler==="function").toString(),"\n","\t","upload_complete_handler assigned: ",(typeof this.settings.upload_complete_handler==="function").toString(),"\n","\t","debug_handler assigned: ",(typeof this.settings.debug_handler==="function").toString(),"\n"].join(""))};SWFUpload.prototype.addSetting=function(name,value,default_value){if(value==undefined){return(this.settings[name]=default_value)}else{return(this.settings[name]=value)}};SWFUpload.prototype.getSetting=function(name){if(this.settings[name]!=undefined){return this.settings[name]}return""};SWFUpload.prototype.callFlash=function(functionName,argumentArray){argumentArray=argumentArray||[];var movieElement=this.getMovieElement();var returnValue,returnString;try{returnString=movieElement.CallFunction('<invoke name="'+functionName+'" returntype="javascript">'+__flash__argumentsToXML(argumentArray,0)+'</invoke>');returnValue=eval(returnString)}catch(ex){throw"Call to "+functionName+" failed";}if(returnValue!=undefined&&typeof returnValue.post==="object"){returnValue=this.unescapeFilePostParams(returnValue)}return returnValue};SWFUpload.prototype.selectFile=function(){this.callFlash("SelectFile")};SWFUpload.prototype.selectFiles=function(){this.callFlash("SelectFiles")};SWFUpload.prototype.startUpload=function(fileID){this.callFlash("StartUpload",[fileID])};SWFUpload.prototype.cancelUpload=function(fileID,triggerErrorEvent){if(triggerErrorEvent!==false){triggerErrorEvent=true}this.callFlash("CancelUpload",[fileID,triggerErrorEvent])};SWFUpload.prototype.stopUpload=function(){this.callFlash("StopUpload")};SWFUpload.prototype.getStats=function(){return this.callFlash("GetStats")};SWFUpload.prototype.setStats=function(statsObject){this.callFlash("SetStats",[statsObject])};SWFUpload.prototype.getFile=function(fileID){if(typeof(fileID)==="number"){return this.callFlash("GetFileByIndex",[fileID])}else{return this.callFlash("GetFile",[fileID])}};SWFUpload.prototype.addFileParam=function(fileID,name,value){return this.callFlash("AddFileParam",[fileID,name,value])};SWFUpload.prototype.removeFileParam=function(fileID,name){this.callFlash("RemoveFileParam",[fileID,name])};SWFUpload.prototype.setUploadURL=function(url){this.settings.upload_url=url.toString();this.callFlash("SetUploadURL",[url])};SWFUpload.prototype.setPostParams=function(paramsObject){this.settings.post_params=paramsObject;this.callFlash("SetPostParams",[paramsObject])};SWFUpload.prototype.addPostParam=function(name,value){this.settings.post_params[name]=value;this.callFlash("SetPostParams",[this.settings.post_params])};SWFUpload.prototype.removePostParam=function(name){delete this.settings.post_params[name];this.callFlash("SetPostParams",[this.settings.post_params])};SWFUpload.prototype.setFileTypes=function(types,description){this.settings.file_types=types;this.settings.file_types_description=description;this.callFlash("SetFileTypes",[types,description])};SWFUpload.prototype.setFileSizeLimit=function(fileSizeLimit){this.settings.file_size_limit=fileSizeLimit;this.callFlash("SetFileSizeLimit",[fileSizeLimit])};SWFUpload.prototype.setFileUploadLimit=function(fileUploadLimit){this.settings.file_upload_limit=fileUploadLimit;this.callFlash("SetFileUploadLimit",[fileUploadLimit])};SWFUpload.prototype.setFileQueueLimit=function(fileQueueLimit){this.settings.file_queue_limit=fileQueueLimit;this.callFlash("SetFileQueueLimit",[fileQueueLimit])};SWFUpload.prototype.setFilePostName=function(filePostName){this.settings.file_post_name=filePostName;this.callFlash("SetFilePostName",[filePostName])};SWFUpload.prototype.setUseQueryString=function(useQueryString){this.settings.use_query_string=useQueryString;this.callFlash("SetUseQueryString",[useQueryString])};SWFUpload.prototype.setRequeueOnError=function(requeueOnError){this.settings.requeue_on_error=requeueOnError;this.callFlash("SetRequeueOnError",[requeueOnError])};SWFUpload.prototype.setHTTPSuccess=function(http_status_codes){if(typeof http_status_codes==="string"){http_status_codes=http_status_codes.replace(" ","").split(",")}this.settings.http_success=http_status_codes;this.callFlash("SetHTTPSuccess",[http_status_codes])};SWFUpload.prototype.setAssumeSuccessTimeout=function(timeout_seconds){this.settings.assume_success_timeout=timeout_seconds;this.callFlash("SetAssumeSuccessTimeout",[timeout_seconds])};SWFUpload.prototype.setDebugEnabled=function(debugEnabled){this.settings.debug_enabled=debugEnabled;this.callFlash("SetDebugEnabled",[debugEnabled])};SWFUpload.prototype.setButtonImageURL=function(buttonImageURL){if(buttonImageURL==undefined){buttonImageURL=""}this.settings.button_image_url=buttonImageURL;this.callFlash("SetButtonImageURL",[buttonImageURL])};SWFUpload.prototype.setButtonDimensions=function(width,height){this.settings.button_width=width;this.settings.button_height=height;var movie=this.getMovieElement();if(movie!=undefined){movie.style.width=width+"px";movie.style.height=height+"px"}this.callFlash("SetButtonDimensions",[width,height])};SWFUpload.prototype.setButtonText=function(html){this.settings.button_text=html;this.callFlash("SetButtonText",[html])};SWFUpload.prototype.setButtonTextPadding=function(left,top){this.settings.button_text_top_padding=top;this.settings.button_text_left_padding=left;this.callFlash("SetButtonTextPadding",[left,top])};SWFUpload.prototype.setButtonTextStyle=function(css){this.settings.button_text_style=css;this.callFlash("SetButtonTextStyle",[css])};SWFUpload.prototype.setButtonDisabled=function(isDisabled){this.settings.button_disabled=isDisabled;this.callFlash("SetButtonDisabled",[isDisabled])};SWFUpload.prototype.setButtonAction=function(buttonAction){this.settings.button_action=buttonAction;this.callFlash("SetButtonAction",[buttonAction])};SWFUpload.prototype.setButtonCursor=function(cursor){this.settings.button_cursor=cursor;this.callFlash("SetButtonCursor",[cursor])};SWFUpload.prototype.queueEvent=function(handlerName,argumentArray){if(argumentArray==undefined){argumentArray=[]}else if(!(argumentArray instanceof Array)){argumentArray=[argumentArray]}var self=this;if(typeof this.settings[handlerName]==="function"){this.eventQueue.push(function(){this.settings[handlerName].apply(this,argumentArray)});setTimeout(function(){self.executeNextEvent()},0)}else if(this.settings[handlerName]!==null){throw"Event handler "+handlerName+" is unknown or is not a function";}};SWFUpload.prototype.executeNextEvent=function(){var f=this.eventQueue?this.eventQueue.shift():null;if(typeof(f)==="function"){f.apply(this)}};SWFUpload.prototype.unescapeFilePostParams=function(file){var reg=/[$]([0-9a-f]{4})/i;var unescapedPost={};var uk;if(file!=undefined){for(var k in file.post){if(file.post.hasOwnProperty(k)){uk=k;var match;while((match=reg.exec(uk))!==null){uk=uk.replace(match[0],String.fromCharCode(parseInt("0x"+match[1],16)))}unescapedPost[uk]=file.post[k]}}file.post=unescapedPost}return file};SWFUpload.prototype.testExternalInterface=function(){try{return this.callFlash("TestExternalInterface")}catch(ex){return false}};SWFUpload.prototype.flashReady=function(){var movieElement=this.getMovieElement();if(!movieElement){this.debug("Flash called back ready but the flash movie can't be found.");return}this.cleanUp(movieElement);this.queueEvent("swfupload_loaded_handler")};SWFUpload.prototype.cleanUp=function(movieElement){try{if(this.movieElement&&typeof(movieElement.CallFunction)==="unknown"){this.debug("Removing Flash functions hooks (this should only run in IE and should prevent memory leaks)");for(var key in movieElement){try{if(typeof(movieElement[key])==="function"){movieElement[key]=null}}catch(ex){}}}}catch(ex1){}window["__flash__removeCallback"]=function(instance,name){try{if(instance){instance[name]=null}}catch(flashEx){}}};SWFUpload.prototype.fileDialogStart=function(){this.queueEvent("file_dialog_start_handler")};SWFUpload.prototype.fileQueued=function(file){file=this.unescapeFilePostParams(file);this.queueEvent("file_queued_handler",file)};SWFUpload.prototype.fileQueueError=function(file,errorCode,message){file=this.unescapeFilePostParams(file);this.queueEvent("file_queue_error_handler",[file,errorCode,message])};SWFUpload.prototype.fileDialogComplete=function(numFilesSelected,numFilesQueued,numFilesInQueue){this.queueEvent("file_dialog_complete_handler",[numFilesSelected,numFilesQueued,numFilesInQueue])};SWFUpload.prototype.uploadStart=function(file){file=this.unescapeFilePostParams(file);this.queueEvent("return_upload_start_handler",file)};SWFUpload.prototype.returnUploadStart=function(file){var returnValue;if(typeof this.settings.upload_start_handler==="function"){file=this.unescapeFilePostParams(file);returnValue=this.settings.upload_start_handler.call(this,file)}else if(this.settings.upload_start_handler!=undefined){throw"upload_start_handler must be a function";}if(returnValue===undefined){returnValue=true}returnValue=!!returnValue;this.callFlash("ReturnUploadStart",[returnValue])};SWFUpload.prototype.uploadProgress=function(file,bytesComplete,bytesTotal){file=this.unescapeFilePostParams(file);this.queueEvent("upload_progress_handler",[file,bytesComplete,bytesTotal])};SWFUpload.prototype.uploadError=function(file,errorCode,message){file=this.unescapeFilePostParams(file);this.queueEvent("upload_error_handler",[file,errorCode,message])};SWFUpload.prototype.uploadSuccess=function(file,serverData,responseReceived){file=this.unescapeFilePostParams(file);this.queueEvent("upload_success_handler",[file,serverData,responseReceived])};SWFUpload.prototype.uploadComplete=function(file){file=this.unescapeFilePostParams(file);this.queueEvent("upload_complete_handler",file)};SWFUpload.prototype.debug=function(message){this.queueEvent("debug_handler",message)};SWFUpload.prototype.debugMessage=function(message){if(this.settings.debug){var exceptionMessage,exceptionValues=[];if(typeof message==="object"&&typeof message.name==="string"&&typeof message.message==="string"){for(var key in message){if(message.hasOwnProperty(key)){exceptionValues.push(key+": "+message[key])}}exceptionMessage=exceptionValues.join("\n")||"";exceptionValues=exceptionMessage.split("\n");exceptionMessage="EXCEPTION: "+exceptionValues.join("\nEXCEPTION: ");SWFUpload.Console.writeLine(exceptionMessage)}else{SWFUpload.Console.writeLine(message)}}};SWFUpload.Console={};SWFUpload.Console.writeLine=function(message){var console,documentForm;try{console=document.getElementById("SWFUpload_Console");if(!console){documentForm=document.createElement("form");document.getElementsByTagName("body")[0].appendChild(documentForm);console=document.createElement("textarea");console.id="SWFUpload_Console";console.style.fontFamily="monospace";console.setAttribute("wrap","off");console.wrap="off";console.style.overflow="auto";console.style.width="700px";console.style.height="350px";console.style.margin="5px";documentForm.appendChild(console)}console.value+=message+"\n";console.scrollTop=console.scrollHeight-console.clientHeight}catch(ex){alert("Exception: "+ex.name+" Message: "+ex.message)}};
@@ -0,0 +1 @@
1
+ var SWFUpload;if(typeof(SWFUpload)==="function"){SWFUpload.queue={};SWFUpload.prototype.initSettings=(function(oldInitSettings){return function(){if(typeof(oldInitSettings)==="function"){oldInitSettings.call(this)}this.queueSettings={};this.queueSettings.queue_cancelled_flag=false;this.queueSettings.queue_upload_count=0;this.queueSettings.user_upload_complete_handler=this.settings.upload_complete_handler;this.queueSettings.user_upload_start_handler=this.settings.upload_start_handler;this.settings.upload_complete_handler=SWFUpload.queue.uploadCompleteHandler;this.settings.upload_start_handler=SWFUpload.queue.uploadStartHandler;this.settings.queue_complete_handler=this.settings.queue_complete_handler||null}})(SWFUpload.prototype.initSettings);SWFUpload.prototype.startUpload=function(fileID){this.queueSettings.queue_cancelled_flag=false;this.callFlash("StartUpload",[fileID])};SWFUpload.prototype.cancelQueue=function(){this.queueSettings.queue_cancelled_flag=true;this.stopUpload();var stats=this.getStats();while(stats.files_queued>0){this.cancelUpload();stats=this.getStats()}};SWFUpload.queue.uploadStartHandler=function(file){var returnValue;if(typeof(this.queueSettings.user_upload_start_handler)==="function"){returnValue=this.queueSettings.user_upload_start_handler.call(this,file)}returnValue=(returnValue===false)?false:true;this.queueSettings.queue_cancelled_flag=!returnValue;return returnValue};SWFUpload.queue.uploadCompleteHandler=function(file){var user_upload_complete_handler=this.queueSettings.user_upload_complete_handler;var continueUpload;if(file.filestatus===SWFUpload.FILE_STATUS.COMPLETE){this.queueSettings.queue_upload_count++}if(typeof(user_upload_complete_handler)==="function"){continueUpload=(user_upload_complete_handler.call(this,file)===false)?false:true}else if(file.filestatus===SWFUpload.FILE_STATUS.QUEUED){continueUpload=false}else{continueUpload=true}if(continueUpload){var stats=this.getStats();if(stats.files_queued>0&&this.queueSettings.queue_cancelled_flag===false){this.startUpload()}else if(this.queueSettings.queue_cancelled_flag===false){this.queueEvent("queue_complete_handler",[this.queueSettings.queue_upload_count]);this.queueSettings.queue_upload_count=0}else{this.queueSettings.queue_cancelled_flag=false;this.queueSettings.queue_upload_count=0}}}}
@@ -0,0 +1,111 @@
1
+ /*
2
+ SWFUpload.SWFObject Plugin
3
+
4
+ Summary:
5
+ This plugin uses SWFObject to embed SWFUpload dynamically in the page. SWFObject provides accurate Flash Player detection and DOM Ready loading.
6
+ This plugin replaces the Graceful Degradation plugin.
7
+
8
+ Features:
9
+ * swfupload_load_failed_hander event
10
+ * swfupload_pre_load_handler event
11
+ * minimum_flash_version setting (default: "9.0.28")
12
+ * SWFUpload.onload event for early loading
13
+
14
+ Usage:
15
+ Provide handlers and settings as needed. When using the SWFUpload.SWFObject plugin you should initialize SWFUploading
16
+ in SWFUpload.onload rather than in window.onload. When initialized this way SWFUpload can load earlier preventing the UI flicker
17
+ that was seen using the Graceful Degradation plugin.
18
+
19
+ <script type="text/javascript">
20
+ var swfu;
21
+ SWFUpload.onload = function () {
22
+ swfu = new SWFUpload({
23
+ minimum_flash_version: "9.0.28",
24
+ swfupload_pre_load_handler: swfuploadPreLoad,
25
+ swfupload_load_failed_handler: swfuploadLoadFailed
26
+ });
27
+ };
28
+ </script>
29
+
30
+ Notes:
31
+ You must provide set minimum_flash_version setting to "8" if you are using SWFUpload for Flash Player 8.
32
+ The swfuploadLoadFailed event is only fired if the minimum version of Flash Player is not met. Other issues such as missing SWF files, browser bugs
33
+ or corrupt Flash Player installations will not trigger this event.
34
+ The swfuploadPreLoad event is fired as soon as the minimum version of Flash Player is found. It does not wait for SWFUpload to load and can
35
+ be used to prepare the SWFUploadUI and hide alternate content.
36
+ swfobject's onDomReady event is cross-browser safe but will default to the window.onload event when DOMReady is not supported by the browser.
37
+ Early DOM Loading is supported in major modern browsers but cannot be guaranteed for every browser ever made.
38
+ */
39
+
40
+
41
+ /* SWFObject v2.1 <http://code.google.com/p/swfobject/>
42
+ Copyright (c) 2007-2008 Geoff Stearns, Michael Williams, and Bobby van der Sluis
43
+ This software is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
44
+ */
45
+ var swfobject=function(){var b="undefined",Q="object",n="Shockwave Flash",p="ShockwaveFlash.ShockwaveFlash",P="application/x-shockwave-flash",m="SWFObjectExprInst",j=window,K=document,T=navigator,o=[],N=[],i=[],d=[],J,Z=null,M=null,l=null,e=false,A=false;var h=function(){var v=typeof K.getElementById!=b&&typeof K.getElementsByTagName!=b&&typeof K.createElement!=b,AC=[0,0,0],x=null;if(typeof T.plugins!=b&&typeof T.plugins[n]==Q){x=T.plugins[n].description;if(x&&!(typeof T.mimeTypes!=b&&T.mimeTypes[P]&&!T.mimeTypes[P].enabledPlugin)){x=x.replace(/^.*\s+(\S+\s+\S+$)/,"$1");AC[0]=parseInt(x.replace(/^(.*)\..*$/,"$1"),10);AC[1]=parseInt(x.replace(/^.*\.(.*)\s.*$/,"$1"),10);AC[2]=/r/.test(x)?parseInt(x.replace(/^.*r(.*)$/,"$1"),10):0}}else{if(typeof j.ActiveXObject!=b){var y=null,AB=false;try{y=new ActiveXObject(p+".7")}catch(t){try{y=new ActiveXObject(p+".6");AC=[6,0,21];y.AllowScriptAccess="always"}catch(t){if(AC[0]==6){AB=true}}if(!AB){try{y=new ActiveXObject(p)}catch(t){}}}if(!AB&&y){try{x=y.GetVariable("$version");if(x){x=x.split(" ")[1].split(",");AC=[parseInt(x[0],10),parseInt(x[1],10),parseInt(x[2],10)]}}catch(t){}}}}var AD=T.userAgent.toLowerCase(),r=T.platform.toLowerCase(),AA=/webkit/.test(AD)?parseFloat(AD.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,q=false,z=r?/win/.test(r):/win/.test(AD),w=r?/mac/.test(r):/mac/.test(AD);/*@cc_on q=true;@if(@_win32)z=true;@elif(@_mac)w=true;@end@*/return{w3cdom:v,pv:AC,webkit:AA,ie:q,win:z,mac:w}}();var L=function(){if(!h.w3cdom){return }f(H);if(h.ie&&h.win){try{K.write("<script id=__ie_ondomload defer=true src=//:><\/script>");J=C("__ie_ondomload");if(J){I(J,"onreadystatechange",S)}}catch(q){}}if(h.webkit&&typeof K.readyState!=b){Z=setInterval(function(){if(/loaded|complete/.test(K.readyState)){E()}},10)}if(typeof K.addEventListener!=b){K.addEventListener("DOMContentLoaded",E,null)}R(E)}();function S(){if(J.readyState=="complete"){J.parentNode.removeChild(J);E()}}function E(){if(e){return }if(h.ie&&h.win){var v=a("span");try{var u=K.getElementsByTagName("body")[0].appendChild(v);u.parentNode.removeChild(u)}catch(w){return }}e=true;if(Z){clearInterval(Z);Z=null}var q=o.length;for(var r=0;r<q;r++){o[r]()}}function f(q){if(e){q()}else{o[o.length]=q}}function R(r){if(typeof j.addEventListener!=b){j.addEventListener("load",r,false)}else{if(typeof K.addEventListener!=b){K.addEventListener("load",r,false)}else{if(typeof j.attachEvent!=b){I(j,"onload",r)}else{if(typeof j.onload=="function"){var q=j.onload;j.onload=function(){q();r()}}else{j.onload=r}}}}}function H(){var t=N.length;for(var q=0;q<t;q++){var u=N[q].id;if(h.pv[0]>0){var r=C(u);if(r){N[q].width=r.getAttribute("width")?r.getAttribute("width"):"0";N[q].height=r.getAttribute("height")?r.getAttribute("height"):"0";if(c(N[q].swfVersion)){if(h.webkit&&h.webkit<312){Y(r)}W(u,true)}else{if(N[q].expressInstall&&!A&&c("6.0.65")&&(h.win||h.mac)){k(N[q])}else{O(r)}}}}else{W(u,true)}}}function Y(t){var q=t.getElementsByTagName(Q)[0];if(q){var w=a("embed"),y=q.attributes;if(y){var v=y.length;for(var u=0;u<v;u++){if(y[u].nodeName=="DATA"){w.setAttribute("src",y[u].nodeValue)}else{w.setAttribute(y[u].nodeName,y[u].nodeValue)}}}var x=q.childNodes;if(x){var z=x.length;for(var r=0;r<z;r++){if(x[r].nodeType==1&&x[r].nodeName=="PARAM"){w.setAttribute(x[r].getAttribute("name"),x[r].getAttribute("value"))}}}t.parentNode.replaceChild(w,t)}}function k(w){A=true;var u=C(w.id);if(u){if(w.altContentId){var y=C(w.altContentId);if(y){M=y;l=w.altContentId}}else{M=G(u)}if(!(/%$/.test(w.width))&&parseInt(w.width,10)<310){w.width="310"}if(!(/%$/.test(w.height))&&parseInt(w.height,10)<137){w.height="137"}K.title=K.title.slice(0,47)+" - Flash Player Installation";var z=h.ie&&h.win?"ActiveX":"PlugIn",q=K.title,r="MMredirectURL="+j.location+"&MMplayerType="+z+"&MMdoctitle="+q,x=w.id;if(h.ie&&h.win&&u.readyState!=4){var t=a("div");x+="SWFObjectNew";t.setAttribute("id",x);u.parentNode.insertBefore(t,u);u.style.display="none";var v=function(){u.parentNode.removeChild(u)};I(j,"onload",v)}U({data:w.expressInstall,id:m,width:w.width,height:w.height},{flashvars:r},x)}}function O(t){if(h.ie&&h.win&&t.readyState!=4){var r=a("div");t.parentNode.insertBefore(r,t);r.parentNode.replaceChild(G(t),r);t.style.display="none";var q=function(){t.parentNode.removeChild(t)};I(j,"onload",q)}else{t.parentNode.replaceChild(G(t),t)}}function G(v){var u=a("div");if(h.win&&h.ie){u.innerHTML=v.innerHTML}else{var r=v.getElementsByTagName(Q)[0];if(r){var w=r.childNodes;if(w){var q=w.length;for(var t=0;t<q;t++){if(!(w[t].nodeType==1&&w[t].nodeName=="PARAM")&&!(w[t].nodeType==8)){u.appendChild(w[t].cloneNode(true))}}}}}return u}function U(AG,AE,t){var q,v=C(t);if(v){if(typeof AG.id==b){AG.id=t}if(h.ie&&h.win){var AF="";for(var AB in AG){if(AG[AB]!=Object.prototype[AB]){if(AB.toLowerCase()=="data"){AE.movie=AG[AB]}else{if(AB.toLowerCase()=="styleclass"){AF+=' class="'+AG[AB]+'"'}else{if(AB.toLowerCase()!="classid"){AF+=" "+AB+'="'+AG[AB]+'"'}}}}}var AD="";for(var AA in AE){if(AE[AA]!=Object.prototype[AA]){AD+='<param name="'+AA+'" value="'+AE[AA]+'" />'}}v.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+AF+">"+AD+"</object>";i[i.length]=AG.id;q=C(AG.id)}else{if(h.webkit&&h.webkit<312){var AC=a("embed");AC.setAttribute("type",P);for(var z in AG){if(AG[z]!=Object.prototype[z]){if(z.toLowerCase()=="data"){AC.setAttribute("src",AG[z])}else{if(z.toLowerCase()=="styleclass"){AC.setAttribute("class",AG[z])}else{if(z.toLowerCase()!="classid"){AC.setAttribute(z,AG[z])}}}}}for(var y in AE){if(AE[y]!=Object.prototype[y]){if(y.toLowerCase()!="movie"){AC.setAttribute(y,AE[y])}}}v.parentNode.replaceChild(AC,v);q=AC}else{var u=a(Q);u.setAttribute("type",P);for(var x in AG){if(AG[x]!=Object.prototype[x]){if(x.toLowerCase()=="styleclass"){u.setAttribute("class",AG[x])}else{if(x.toLowerCase()!="classid"){u.setAttribute(x,AG[x])}}}}for(var w in AE){if(AE[w]!=Object.prototype[w]&&w.toLowerCase()!="movie"){F(u,w,AE[w])}}v.parentNode.replaceChild(u,v);q=u}}}return q}function F(t,q,r){var u=a("param");u.setAttribute("name",q);u.setAttribute("value",r);t.appendChild(u)}function X(r){var q=C(r);if(q&&(q.nodeName=="OBJECT"||q.nodeName=="EMBED")){if(h.ie&&h.win){if(q.readyState==4){B(r)}else{j.attachEvent("onload",function(){B(r)})}}else{q.parentNode.removeChild(q)}}}function B(t){var r=C(t);if(r){for(var q in r){if(typeof r[q]=="function"){r[q]=null}}r.parentNode.removeChild(r)}}function C(t){var q=null;try{q=K.getElementById(t)}catch(r){}return q}function a(q){return K.createElement(q)}function I(t,q,r){t.attachEvent(q,r);d[d.length]=[t,q,r]}function c(t){var r=h.pv,q=t.split(".");q[0]=parseInt(q[0],10);q[1]=parseInt(q[1],10)||0;q[2]=parseInt(q[2],10)||0;return(r[0]>q[0]||(r[0]==q[0]&&r[1]>q[1])||(r[0]==q[0]&&r[1]==q[1]&&r[2]>=q[2]))?true:false}function V(v,r){if(h.ie&&h.mac){return }var u=K.getElementsByTagName("head")[0],t=a("style");t.setAttribute("type","text/css");t.setAttribute("media","screen");if(!(h.ie&&h.win)&&typeof K.createTextNode!=b){t.appendChild(K.createTextNode(v+" {"+r+"}"))}u.appendChild(t);if(h.ie&&h.win&&typeof K.styleSheets!=b&&K.styleSheets.length>0){var q=K.styleSheets[K.styleSheets.length-1];if(typeof q.addRule==Q){q.addRule(v,r)}}}function W(t,q){var r=q?"visible":"hidden";if(e&&C(t)){C(t).style.visibility=r}else{V("#"+t,"visibility:"+r)}}function g(s){var r=/[\\\"<>\.;]/;var q=r.exec(s)!=null;return q?encodeURIComponent(s):s}var D=function(){if(h.ie&&h.win){window.attachEvent("onunload",function(){var w=d.length;for(var v=0;v<w;v++){d[v][0].detachEvent(d[v][1],d[v][2])}var t=i.length;for(var u=0;u<t;u++){X(i[u])}for(var r in h){h[r]=null}h=null;for(var q in swfobject){swfobject[q]=null}swfobject=null})}}();return{registerObject:function(u,q,t){if(!h.w3cdom||!u||!q){return }var r={};r.id=u;r.swfVersion=q;r.expressInstall=t?t:false;N[N.length]=r;W(u,false)},getObjectById:function(v){var q=null;if(h.w3cdom){var t=C(v);if(t){var u=t.getElementsByTagName(Q)[0];if(!u||(u&&typeof t.SetVariable!=b)){q=t}else{if(typeof u.SetVariable!=b){q=u}}}}return q},embedSWF:function(x,AE,AB,AD,q,w,r,z,AC){if(!h.w3cdom||!x||!AE||!AB||!AD||!q){return }AB+="";AD+="";if(c(q)){W(AE,false);var AA={};if(AC&&typeof AC===Q){for(var v in AC){if(AC[v]!=Object.prototype[v]){AA[v]=AC[v]}}}AA.data=x;AA.width=AB;AA.height=AD;var y={};if(z&&typeof z===Q){for(var u in z){if(z[u]!=Object.prototype[u]){y[u]=z[u]}}}if(r&&typeof r===Q){for(var t in r){if(r[t]!=Object.prototype[t]){if(typeof y.flashvars!=b){y.flashvars+="&"+t+"="+r[t]}else{y.flashvars=t+"="+r[t]}}}}f(function(){U(AA,y,AE);if(AA.id==AE){W(AE,true)}})}else{if(w&&!A&&c("6.0.65")&&(h.win||h.mac)){A=true;W(AE,false);f(function(){var AF={};AF.id=AF.altContentId=AE;AF.width=AB;AF.height=AD;AF.expressInstall=w;k(AF)})}}},getFlashPlayerVersion:function(){return{major:h.pv[0],minor:h.pv[1],release:h.pv[2]}},hasFlashPlayerVersion:c,createSWF:function(t,r,q){if(h.w3cdom){return U(t,r,q)}else{return undefined}},removeSWF:function(q){if(h.w3cdom){X(q)}},createCSS:function(r,q){if(h.w3cdom){V(r,q)}},addDomLoadEvent:f,addLoadEvent:R,getQueryParamValue:function(v){var u=K.location.search||K.location.hash;if(v==null){return g(u)}if(u){var t=u.substring(1).split("&");for(var r=0;r<t.length;r++){if(t[r].substring(0,t[r].indexOf("="))==v){return g(t[r].substring((t[r].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(A&&M){var q=C(m);if(q){q.parentNode.replaceChild(M,q);if(l){W(l,true);if(h.ie&&h.win){M.style.display="block"}}M=null;l=null;A=false}}}}}();
46
+
47
+
48
+
49
+ var SWFUpload;
50
+ if (typeof(SWFUpload) === "function") {
51
+ SWFUpload.onload = function () {};
52
+
53
+ swfobject.addDomLoadEvent(function () {
54
+ if (typeof(SWFUpload.onload) === "function") {
55
+ SWFUpload.onload.call(window);
56
+ }
57
+ });
58
+
59
+ SWFUpload.prototype.initSettings = (function (oldInitSettings) {
60
+ return function () {
61
+ if (typeof(oldInitSettings) === "function") {
62
+ oldInitSettings.call(this);
63
+ }
64
+
65
+ this.ensureDefault = function (settingName, defaultValue) {
66
+ this.settings[settingName] = (this.settings[settingName] == undefined) ? defaultValue : this.settings[settingName];
67
+ };
68
+
69
+ this.ensureDefault("minimum_flash_version", "9.0.28");
70
+ this.ensureDefault("swfupload_pre_load_handler", null);
71
+ this.ensureDefault("swfupload_load_failed_handler", null);
72
+
73
+ delete this.ensureDefault;
74
+
75
+ };
76
+ })(SWFUpload.prototype.initSettings);
77
+
78
+
79
+ SWFUpload.prototype.loadFlash = function (oldLoadFlash) {
80
+ return function () {
81
+ var hasFlash = swfobject.hasFlashPlayerVersion(this.settings.minimum_flash_version);
82
+
83
+ if (hasFlash) {
84
+ this.queueEvent("swfupload_pre_load_handler");
85
+ if (typeof(oldLoadFlash) === "function") {
86
+ oldLoadFlash.call(this);
87
+ }
88
+ } else {
89
+ this.queueEvent("swfupload_load_failed_handler");
90
+ }
91
+ };
92
+
93
+ }(SWFUpload.prototype.loadFlash);
94
+
95
+ SWFUpload.prototype.displayDebugInfo = function (oldDisplayDebugInfo) {
96
+ return function () {
97
+ if (typeof(oldDisplayDebugInfo) === "function") {
98
+ oldDisplayDebugInfo.call(this);
99
+ }
100
+
101
+ this.debug(
102
+ [
103
+ "SWFUpload.SWFObject Plugin settings:", "\n",
104
+ "\t", "minimum_flash_version: ", this.settings.minimum_flash_version, "\n",
105
+ "\t", "swfupload_pre_load_handler assigned: ", (typeof(this.settings.swfupload_pre_load_handler) === "function").toString(), "\n",
106
+ "\t", "swfupload_load_failed_handler assigned: ", (typeof(this.settings.swfupload_load_failed_handler) === "function").toString(), "\n",
107
+ ].join("")
108
+ );
109
+ };
110
+ }(SWFUpload.prototype.displayDebugInfo);
111
+ }
@@ -0,0 +1,8 @@
1
+ /*
2
+ Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.themes.add('default',(function(){function a(b,c){var d,e;e=b.config.sharedSpaces;e=e&&e[c];e=e&&CKEDITOR.document.getById(e);if(e){var f='<span class="cke_shared"><span class="'+b.skinClass+' '+b.id+' cke_editor_'+b.name+'">'+'<span class="'+CKEDITOR.env.cssClass+'">'+'<span class="cke_wrapper cke_'+b.lang.dir+'">'+'<span class="cke_editor">'+'<div class="cke_'+c+'">'+'</div></span></span></span></span></span>',g=e.append(CKEDITOR.dom.element.createFromHtml(f,e.getDocument()));if(e.getCustomData('cke_hasshared'))g.hide();else e.setCustomData('cke_hasshared',1);d=g.getChild([0,0,0,0]);b.on('focus',function(){for(var h=0,i,j=e.getChildren();i=j.getItem(h);h++){if(i.type==CKEDITOR.NODE_ELEMENT&&!i.equals(g)&&i.hasClass('cke_shared'))i.hide();}g.show();});b.on('destroy',function(){g.remove();});}return d;};return{build:function(b,c){var d=b.name,e=b.element,f=b.elementMode;if(!e||f==CKEDITOR.ELEMENT_MODE_NONE)return;if(f==CKEDITOR.ELEMENT_MODE_REPLACE)e.hide();var g=b.fire('themeSpace',{space:'top',html:''}).html,h=b.fire('themeSpace',{space:'contents',html:''}).html,i=b.fireOnce('themeSpace',{space:'bottom',html:''}).html,j=h&&b.config.height,k=b.config.tabIndex||b.element.getAttribute('tabindex')||0;if(!h)j='auto';else if(!isNaN(j))j+='px';var l='',m=b.config.width;if(m){if(!isNaN(m))m+='px';l+='width: '+m+';';}var n=g&&a(b,'top'),o=a(b,'bottom');n&&(n.setHtml(g),g='');o&&(o.setHtml(i),i='');var p=CKEDITOR.dom.element.createFromHtml(['<span id="cke_',d,'" onmousedown="return false;" class="',b.skinClass,' ',b.id,' cke_editor_',d,'" dir="',b.lang.dir,'" title="',CKEDITOR.env.gecko?' ':'','" lang="',b.langCode,'"'+(CKEDITOR.env.webkit?' tabindex="'+k+'"':'')+' role="application"'+' aria-labelledby="cke_',d,'_arialbl"'+(l?' style="'+l+'"':'')+'>'+'<span id="cke_',d,'_arialbl" class="cke_voice_label">'+b.lang.editor+'</span>'+'<span class="',CKEDITOR.env.cssClass,'" role="presentation"><span class="cke_wrapper cke_',b.lang.dir,'" role="presentation"><table class="cke_editor" border="0" cellspacing="0" cellpadding="0" role="presentation"><tbody><tr',g?'':' style="display:none"',' role="presentation"><td id="cke_top_',d,'" class="cke_top" role="presentation">',g,'</td></tr><tr',h?'':' style="display:none"',' role="presentation"><td id="cke_contents_',d,'" class="cke_contents" style="height:',j,'" role="presentation">',h,'</td></tr><tr',i?'':' style="display:none"',' role="presentation"><td id="cke_bottom_',d,'" class="cke_bottom" role="presentation">',i,'</td></tr></tbody></table><style>.',b.skinClass,'{visibility:hidden;}</style></span></span></span>'].join(''));
7
+ p.getChild([1,0,0,0,0]).unselectable();p.getChild([1,0,0,0,2]).unselectable();if(f==CKEDITOR.ELEMENT_MODE_REPLACE)p.insertAfter(e);else e.append(p);b.container=p;p.disableContextMenu();b.fireOnce('themeLoaded');b.fireOnce('uiReady');},buildDialog:function(b){var c=CKEDITOR.tools.getNextNumber(),d=CKEDITOR.dom.element.createFromHtml(['<div class="',b.id,'_dialog cke_editor_',b.name.replace('.','\\.'),'_dialog cke_skin_',b.skinName,'" dir="',b.lang.dir,'" lang="',b.langCode,'" role="dialog" aria-labelledby="%title#"><table class="cke_dialog',' '+CKEDITOR.env.cssClass,' cke_',b.lang.dir,'" style="position:absolute" role="presentation"><tr><td role="presentation"><div class="%body" role="presentation"><div id="%title#" class="%title" role="presentation"></div><a id="%close_button#" class="%close_button" href="javascript:void(0)" title="'+b.lang.common.close+'" role="button"><span class="cke_label">X</span></a>'+'<div id="%tabs#" class="%tabs" role="tablist"></div>'+'<table class="%contents" role="presentation"><tr>'+'<td id="%contents#" class="%contents" role="presentation"></td>'+'</tr></table>'+'<div id="%footer#" class="%footer" role="presentation"></div>'+'</div>'+'<div id="%tl#" class="%tl"></div>'+'<div id="%tc#" class="%tc"></div>'+'<div id="%tr#" class="%tr"></div>'+'<div id="%ml#" class="%ml"></div>'+'<div id="%mr#" class="%mr"></div>'+'<div id="%bl#" class="%bl"></div>'+'<div id="%bc#" class="%bc"></div>'+'<div id="%br#" class="%br"></div>'+'</td></tr>'+'</table>',CKEDITOR.env.ie?'':'<style>.cke_dialog{visibility:hidden;}</style>','</div>'].join('').replace(/#/g,'_'+c).replace(/%/g,'cke_dialog_')),e=d.getChild([0,0,0,0,0]),f=e.getChild(0),g=e.getChild(1);f.unselectable();g.unselectable();return{element:d,parts:{dialog:d.getChild(0),title:f,close:g,tabs:e.getChild(2),contents:e.getChild([3,0,0,0]),footer:e.getChild(4)}};},destroy:function(b){var c=b.container;c.clearCustomData();b.element.clearCustomData();if(c)c.remove();if(b.elementMode==CKEDITOR.ELEMENT_MODE_REPLACE)b.element.show();delete b.element;}};})());CKEDITOR.editor.prototype.getThemeSpace=function(a){var b='cke_'+a,c=this._[b]||(this._[b]=CKEDITOR.document.getById(b+'_'+this.name));return c;};CKEDITOR.editor.prototype.resize=function(a,b,c,d){var e=this.container,f=CKEDITOR.document.getById('cke_contents_'+this.name),g=d?e.getChild(1):e;CKEDITOR.env.webkit&&g.setStyle('display','none');g.setSize('width',a,true);if(CKEDITOR.env.webkit){g.$.offsetWidth;g.setStyle('display','');}var h=c?0:(g.$.offsetHeight||0)-(f.$.clientHeight||0);
8
+ f.setStyle('height',Math.max(b-h,0)+'px');this.fire('resize');};CKEDITOR.editor.prototype.getResizable=function(){return this.container.getChild(1);};
@@ -0,0 +1,12 @@
1
+ CKEditor
2
+ ========
3
+
4
+ # Generate models to store uploaded images and files from ckeditor
5
+ # It generate three models: Ckeditor::Asset, Ckeditor::Picture and Ckeditor::AttachmentFile,
6
+ # and migration for "ckeditor_assets" table
7
+ # By default backend is paperclip
8
+
9
+ ./script/generate ckeditor_migration
10
+
11
+ # options:
12
+ --backend, [--backend=PROCESSOR] # Configure for selected file uploader (options: paperclip/attachment_fu)
@@ -0,0 +1,36 @@
1
+ class CkeditorMigrationGenerator < Rails::Generator::Base
2
+
3
+ def manifest
4
+ record do |m|
5
+ create_models(m)
6
+ create_migration(m)
7
+ end
8
+ end
9
+
10
+ protected
11
+
12
+ def create_models(m)
13
+ m.directory(File.join('app', 'models', ckeditor_dir))
14
+
15
+ m.template "models/#{generator_dir}/asset.rb",
16
+ File.join('app/models', ckeditor_dir, "asset.rb")
17
+
18
+ m.template "models/#{generator_dir}/picture.rb",
19
+ File.join('app/models', ckeditor_dir, "picture.rb")
20
+
21
+ m.template "models/#{generator_dir}/attachment_file.rb",
22
+ File.join('app/models', ckeditor_dir, "attachment_file.rb")
23
+ end
24
+
25
+ def create_migration(m)
26
+ m.migration_template "models/#{generator_dir}/migration.rb", 'db/migrate', :migration_file_name => "create_ckeditor_assets.rb"
27
+ end
28
+
29
+ def ckeditor_dir
30
+ 'ckeditor'
31
+ end
32
+
33
+ def generator_dir
34
+ options[:backend] || "paperclip"
35
+ end
36
+ end
@@ -0,0 +1,32 @@
1
+ class Ckeditor::Asset < ActiveRecord::Base
2
+ set_table_name "ckeditor_assets"
3
+
4
+ belongs_to :user
5
+ belongs_to :assetable, :polymorphic => true
6
+
7
+ scope :masters, where("parent_id IS NULL")
8
+
9
+ def url(*args)
10
+ public_filename(*args)
11
+ end
12
+
13
+ def format_created_at
14
+ I18n.l(self.created_at, :format=>"%d.%m.%Y %H:%M")
15
+ end
16
+
17
+ def to_xml(options = {})
18
+ xml = options[:builder] ||= Builder::XmlMarkup.new(:indent => options[:indent])
19
+
20
+ xml.tag!(self.read_attribute(:type).to_s.downcase) do
21
+ xml.filename{ xml.cdata!(self.filename) }
22
+ xml.size self.size
23
+ xml.path{ xml.cdata!(self.public_filename) }
24
+
25
+ xml.thumbnails do
26
+ self.thumbnails.each do |t|
27
+ xml.tag!(t.thumbnail, self.public_filename(t.thumbnail))
28
+ end
29
+ end unless self.thumbnails.empty?
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,24 @@
1
+ class Ckeditor::AttachmentFile < Ckeditor::Asset
2
+ has_attachment :storage => :file_system, :path_prefix => 'public/assets/attachments',
3
+ :max_size => 10.megabytes
4
+
5
+ validates_as_attachment
6
+
7
+ # Map file extensions to mime types.
8
+ # Thanks to bug in Flash 8 the content type is always set to application/octet-stream.
9
+ # From: http://blog.airbladesoftware.com/2007/8/8/uploading-files-with-swfupload
10
+ def swf_uploaded_data=(data)
11
+ data.content_type = MIME::Types.type_for(data.original_filename)
12
+ self.uploaded_data = data
13
+ end
14
+
15
+ def full_filename(thumbnail = nil)
16
+ file_system_path = self.attachment_options[:path_prefix]
17
+ Rails.root.join(file_system_path, file_name_for(self.id))
18
+ end
19
+
20
+ def file_name_for(asset = nil)
21
+ extension = filename.scan(/\.\w+$/)
22
+ return "#{asset}_#{filename}"
23
+ end
24
+ end
@@ -0,0 +1,30 @@
1
+ class CreateCkeditorAssets < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :ckeditor_assets do |t|
4
+ t.integer "parent_id"
5
+ t.string "content_type"
6
+ t.string "filename", :limit=>80
7
+ t.string "thumbnail", :limit=>20
8
+ t.integer "size"
9
+ t.integer "width"
10
+ t.integer "height"
11
+ t.string "type", :limit=>40
12
+ t.integer "user_id"
13
+ t.integer "assetable_id"
14
+ t.string "assetable_type", :limit=>40
15
+
16
+ t.timestamps
17
+ end
18
+
19
+ add_index "ckeditor_assets", ["assetable_id", "assetable_type", "type"], :name => "ndx_type_assetable"
20
+ add_index "ckeditor_assets", ["assetable_id", "assetable_type"], :name => "fk_assets"
21
+ add_index "ckeditor_assets", ["parent_id", "type"], :name => "ndx_type_name"
22
+ add_index "ckeditor_assets", ["thumbnail", "parent_id"], :name => "assets_thumbnail_parent_id"
23
+ add_index "ckeditor_assets", ["user_id", "assetable_type", "assetable_id"], :name => "assets_user_type_assetable_id"
24
+ add_index :ckeditor_assets, :user_id, :name => "fk_user"
25
+ end
26
+
27
+ def self.down
28
+ drop_table :ckeditor_assets
29
+ end
30
+ end
@@ -0,0 +1,25 @@
1
+ class Ckeditor::Picture < Ckeditor::Asset
2
+ has_attachment :content_type => :image,
3
+ :storage => :file_system, :path_prefix => 'public/assets/pictures',
4
+ :max_size => 2.megabytes,
5
+ :size => 0.kilobytes..2000.kilobytes,
6
+ :processor => 'Rmagick',
7
+ :thumbnails => { :content => '575>', :thumb => '100x100!' }
8
+
9
+ validates_as_attachment
10
+
11
+ def url_content
12
+ public_filename(:content)
13
+ end
14
+
15
+ def url_thumb
16
+ public_filename(:thumb)
17
+ end
18
+
19
+ def to_json(options = {})
20
+ options[:methods] ||= []
21
+ options[:methods] << :url_content
22
+ options[:methods] << :url_thumb
23
+ super options
24
+ end
25
+ end
@@ -0,0 +1,88 @@
1
+ require 'mime/types'
2
+
3
+ class Ckeditor::Asset < ActiveRecord::Base
4
+ set_table_name "ckeditor_assets"
5
+
6
+ belongs_to :user
7
+ belongs_to :assetable, :polymorphic => true
8
+
9
+ before_validation :make_content_type
10
+ before_create :make_dimensions
11
+
12
+ def url(*args)
13
+ data.url(*args)
14
+ end
15
+ alias :public_filename :url
16
+
17
+ def filename
18
+ data_file_name
19
+ end
20
+
21
+ def content_type
22
+ data_content_type
23
+ end
24
+
25
+ def size
26
+ data_file_size
27
+ end
28
+
29
+ def path
30
+ data.path
31
+ end
32
+
33
+ def styles
34
+ data.styles
35
+ end
36
+
37
+ def format_created_at
38
+ I18n.l(self.created_at, :format=>"%d.%m.%Y %H:%M")
39
+ end
40
+
41
+ def to_xml(options = {})
42
+ builder = options[:builder] ||= Nokogiri::XML::Builder.new(options)
43
+
44
+ builder.send(self.type.to_s.downcase) do |xml|
45
+ xml.id_ self.id
46
+ xml.filename self.filename
47
+ xml.size self.size
48
+ xml.path self.url
49
+
50
+ xml.styles do
51
+ self.styles.each do |style|
52
+ xml.send(style.first, self.url(style.first))
53
+ end
54
+ end unless self.styles.empty?
55
+ end
56
+
57
+ builder.to_xml
58
+ end
59
+
60
+ def has_dimensions?
61
+ self.respond_to?(:width) && self.respond_to?(:height)
62
+ end
63
+
64
+ def image?
65
+ ["image/jpeg", "image/tiff", "image/png", "image/gif", "image/bmp"].include?(self.data_content_type)
66
+ end
67
+
68
+ def geometry
69
+ @geometry ||= Paperclip::Geometry.from_file(data.to_file)
70
+ @geometry
71
+ end
72
+
73
+ private
74
+
75
+ def make_dimensions
76
+ if image? && has_dimensions?
77
+ self.width = geometry.width
78
+ self.height = geometry.height
79
+ end
80
+ end
81
+
82
+ def make_content_type
83
+ if data_content_type == "application/octet-stream"
84
+ content_types = MIME::Types.type_for(filename)
85
+ self.data_content_type = content_types.first.to_s unless content_types.empty?
86
+ end
87
+ end
88
+ end
@@ -0,0 +1,40 @@
1
+ class Ckeditor::AttachmentFile < Ckeditor::Asset
2
+ has_attached_file :data,
3
+ :url => "/ckeditor_assets/attachments/:id/:filename",
4
+ :path => ":rails_root/public/ckeditor_assets/attachments/:id/:filename"
5
+
6
+ validates_attachment_size :data, :less_than=>100.megabytes
7
+
8
+ def url(*args)
9
+ if [:thumb, :content].include?(args.first)
10
+ send("url_#{args.first}")
11
+ else
12
+ data.url(*args)
13
+ end
14
+ end
15
+
16
+ def url_content
17
+ data.url
18
+ end
19
+
20
+ def url_thumb
21
+ extname = File.extname(filename)
22
+
23
+ case extname.to_s
24
+ when '.swf' then '/javascripts/ckeditor/images/swf.gif'
25
+ when '.pdf' then '/javascripts/ckeditor/images/pdf.gif'
26
+ when '.doc', '.txt' then '/javascripts/ckeditor/images/doc.gif'
27
+ when '.mp3' then '/javascripts/ckeditor/images/mp3.gif'
28
+ when '.rar', '.zip', '.tg' then '/javascripts/ckeditor/images/rar.gif'
29
+ when '.xls' then '/javascripts/ckeditor/images/xls.gif'
30
+ else '/javascripts/ckeditor/images/ckfnothumb.gif'
31
+ end
32
+ end
33
+
34
+ def to_json(options = {})
35
+ options[:methods] ||= []
36
+ options[:methods] << :url_content
37
+ options[:methods] << :url_thumb
38
+ super options
39
+ end
40
+ end