quic_cms 0.0.8 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1445) hide show
  1. data/README.rdoc +11 -1
  2. data/app/assets/javascripts/quic_cms/application.js +1 -1
  3. data/app/assets/javascripts/quic_cms/ckeditor/CHANGES.html +1433 -0
  4. data/app/assets/javascripts/quic_cms/ckeditor/INSTALL.html +92 -0
  5. data/app/assets/javascripts/quic_cms/ckeditor/LICENSE.html +1327 -0
  6. data/app/assets/javascripts/quic_cms/ckeditor/_samples/adobeair/application.xml +32 -0
  7. data/app/assets/javascripts/quic_cms/ckeditor/_samples/adobeair/run.bat +9 -0
  8. data/app/assets/javascripts/quic_cms/ckeditor/_samples/adobeair/run.sh +8 -0
  9. data/app/assets/javascripts/quic_cms/ckeditor/_samples/adobeair/sample.html +45 -0
  10. data/app/assets/javascripts/quic_cms/ckeditor/_samples/ajax.html +98 -0
  11. data/app/assets/javascripts/quic_cms/ckeditor/_samples/api.html +192 -0
  12. data/app/assets/javascripts/quic_cms/ckeditor/_samples/api_dialog.html +198 -0
  13. data/app/assets/javascripts/quic_cms/ckeditor/_samples/api_dialog/my_dialog.js +28 -0
  14. data/app/assets/javascripts/quic_cms/ckeditor/_samples/asp/index.html +103 -0
  15. data/app/assets/javascripts/quic_cms/ckeditor/_samples/assets/output_for_flash.fla +0 -0
  16. data/app/assets/javascripts/quic_cms/ckeditor/_samples/assets/output_for_flash.swf +0 -0
  17. data/app/assets/javascripts/quic_cms/ckeditor/_samples/assets/output_xhtml.css +204 -0
  18. data/app/assets/javascripts/quic_cms/ckeditor/_samples/assets/parsesample.css +70 -0
  19. data/app/assets/javascripts/quic_cms/ckeditor/_samples/assets/swfobject.js +18 -0
  20. data/app/assets/javascripts/quic_cms/ckeditor/_samples/autogrow.html +108 -0
  21. data/app/assets/javascripts/quic_cms/ckeditor/_samples/bbcode.html +125 -0
  22. data/app/assets/javascripts/quic_cms/ckeditor/_samples/devtools.html +94 -0
  23. data/app/assets/javascripts/quic_cms/ckeditor/_samples/divreplace.html +154 -0
  24. data/app/assets/javascripts/quic_cms/ckeditor/_samples/enterkey.html +115 -0
  25. data/app/assets/javascripts/quic_cms/ckeditor/_samples/fullpage.html +82 -0
  26. data/app/assets/javascripts/quic_cms/ckeditor/_samples/index.html +116 -0
  27. data/app/assets/javascripts/quic_cms/ckeditor/_samples/jqueryadapter.html +99 -0
  28. data/app/assets/javascripts/quic_cms/ckeditor/_samples/output_for_flash.html +275 -0
  29. data/app/assets/javascripts/quic_cms/ckeditor/_samples/output_html.html +285 -0
  30. data/app/assets/javascripts/quic_cms/ckeditor/_samples/output_xhtml.html +177 -0
  31. data/app/assets/javascripts/quic_cms/ckeditor/_samples/php/index.html +47 -0
  32. data/app/assets/javascripts/quic_cms/ckeditor/_samples/placeholder.html +81 -0
  33. data/app/assets/javascripts/quic_cms/ckeditor/_samples/readonly.html +91 -0
  34. data/app/assets/javascripts/quic_cms/ckeditor/_samples/replacebyclass.html +64 -0
  35. data/app/assets/javascripts/quic_cms/ckeditor/_samples/replacebycode.html +97 -0
  36. data/app/assets/javascripts/quic_cms/ckeditor/_samples/sample.css +163 -0
  37. data/app/assets/javascripts/quic_cms/ckeditor/_samples/sample.js +65 -0
  38. data/app/assets/javascripts/quic_cms/ckeditor/_samples/sharedspaces.html +153 -0
  39. data/app/assets/javascripts/quic_cms/ckeditor/_samples/skins.html +110 -0
  40. data/app/assets/javascripts/quic_cms/ckeditor/_samples/stylesheetparser.html +93 -0
  41. data/app/assets/javascripts/quic_cms/ckeditor/_samples/tableresize.html +115 -0
  42. data/app/assets/javascripts/quic_cms/ckeditor/_samples/ui_color.html +129 -0
  43. data/app/assets/javascripts/quic_cms/ckeditor/_samples/ui_languages.html +134 -0
  44. data/app/assets/javascripts/quic_cms/ckeditor/_source/adapters/jquery.js +306 -0
  45. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/_bootstrap.js +87 -0
  46. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/ckeditor.js +141 -0
  47. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/ckeditor_base.js +227 -0
  48. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/ckeditor_basic.js +238 -0
  49. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/command.js +209 -0
  50. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/commanddefinition.js +129 -0
  51. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/config.js +439 -0
  52. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/dataprocessor.js +65 -0
  53. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/dom.js +20 -0
  54. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/dom/comment.js +32 -0
  55. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/dom/document.js +251 -0
  56. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/dom/documentfragment.js +49 -0
  57. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/dom/domobject.js +258 -0
  58. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/dom/element.js +1691 -0
  59. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/dom/elementpath.js +119 -0
  60. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/dom/event.js +145 -0
  61. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/dom/node.js +696 -0
  62. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/dom/nodelist.js +26 -0
  63. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/dom/range.js +2054 -0
  64. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/dom/rangelist.js +213 -0
  65. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/dom/text.js +128 -0
  66. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/dom/walker.js +462 -0
  67. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/dom/window.js +96 -0
  68. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/dtd.js +266 -0
  69. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/editor.js +1059 -0
  70. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/editor_basic.js +186 -0
  71. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/env.js +305 -0
  72. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/event.js +342 -0
  73. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/eventInfo.js +120 -0
  74. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/focusmanager.js +152 -0
  75. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/htmlparser.js +224 -0
  76. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/htmlparser/basicwriter.js +145 -0
  77. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/htmlparser/cdata.js +43 -0
  78. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/htmlparser/comment.js +60 -0
  79. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/htmlparser/element.js +308 -0
  80. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/htmlparser/filter.js +288 -0
  81. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/htmlparser/fragment.js +518 -0
  82. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/htmlparser/text.js +53 -0
  83. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/lang.js +157 -0
  84. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/loader.js +240 -0
  85. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/plugindefinition.js +83 -0
  86. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/plugins.js +103 -0
  87. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/resourcemanager.js +238 -0
  88. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/scriptloader.js +180 -0
  89. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/skins.js +184 -0
  90. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/themes.js +19 -0
  91. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/tools.js +763 -0
  92. data/app/assets/javascripts/quic_cms/ckeditor/_source/core/ui.js +128 -0
  93. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/_languages.js +84 -0
  94. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/_translationstatus.txt +61 -0
  95. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/af.js +815 -0
  96. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/ar.js +815 -0
  97. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/bg.js +815 -0
  98. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/bn.js +815 -0
  99. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/bs.js +815 -0
  100. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/ca.js +815 -0
  101. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/cs.js +815 -0
  102. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/cy.js +815 -0
  103. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/da.js +815 -0
  104. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/de.js +815 -0
  105. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/el.js +815 -0
  106. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/en-au.js +815 -0
  107. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/en-ca.js +815 -0
  108. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/en-gb.js +815 -0
  109. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/en.js +815 -0
  110. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/eo.js +815 -0
  111. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/es.js +815 -0
  112. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/et.js +815 -0
  113. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/eu.js +815 -0
  114. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/fa.js +815 -0
  115. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/fi.js +815 -0
  116. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/fo.js +815 -0
  117. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/fr-ca.js +815 -0
  118. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/fr.js +815 -0
  119. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/gl.js +815 -0
  120. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/gu.js +815 -0
  121. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/he.js +815 -0
  122. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/hi.js +815 -0
  123. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/hr.js +815 -0
  124. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/hu.js +815 -0
  125. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/is.js +815 -0
  126. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/it.js +815 -0
  127. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/ja.js +815 -0
  128. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/ka.js +815 -0
  129. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/km.js +815 -0
  130. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/ko.js +815 -0
  131. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/lt.js +815 -0
  132. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/lv.js +815 -0
  133. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/mn.js +815 -0
  134. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/ms.js +815 -0
  135. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/nb.js +815 -0
  136. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/nl.js +815 -0
  137. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/no.js +815 -0
  138. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/pl.js +815 -0
  139. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/pt-br.js +814 -0
  140. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/pt.js +815 -0
  141. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/ro.js +815 -0
  142. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/ru.js +815 -0
  143. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/sk.js +815 -0
  144. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/sl.js +815 -0
  145. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/sr-latn.js +815 -0
  146. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/sr.js +815 -0
  147. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/sv.js +814 -0
  148. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/th.js +815 -0
  149. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/tr.js +814 -0
  150. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/uk.js +815 -0
  151. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/vi.js +815 -0
  152. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/zh-cn.js +815 -0
  153. data/app/assets/javascripts/quic_cms/ckeditor/_source/lang/zh.js +815 -0
  154. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +222 -0
  155. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/a11yhelp/lang/en.js +108 -0
  156. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/a11yhelp/lang/he.js +216 -0
  157. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/a11yhelp/plugin.js +47 -0
  158. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/about/dialogs/about.js +76 -0
  159. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png +0 -0
  160. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/about/plugin.js +24 -0
  161. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/adobeair/plugin.js +228 -0
  162. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/ajax/plugin.js +152 -0
  163. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/autogrow/plugin.js +141 -0
  164. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/basicstyles/plugin.js +129 -0
  165. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/bbcode/plugin.js +931 -0
  166. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/bidi/plugin.js +334 -0
  167. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/blockquote/plugin.js +305 -0
  168. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/button/plugin.js +290 -0
  169. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/clipboard/dialogs/paste.js +223 -0
  170. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/clipboard/plugin.js +453 -0
  171. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/colorbutton/plugin.js +301 -0
  172. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js +340 -0
  173. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/colordialog/plugin.js +15 -0
  174. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/contextmenu/plugin.js +179 -0
  175. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/devtools/lang/en.js +16 -0
  176. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/devtools/plugin.js +173 -0
  177. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/dialog/dialogDefinition.js +1166 -0
  178. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/dialog/plugin.js +3308 -0
  179. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/dialogadvtab/plugin.js +208 -0
  180. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/dialogui/plugin.js +1541 -0
  181. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/div/dialogs/div.js +535 -0
  182. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/div/plugin.js +121 -0
  183. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/docprops/dialogs/docprops.js +674 -0
  184. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/docprops/plugin.js +22 -0
  185. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/domiterator/plugin.js +361 -0
  186. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/editingblock/plugin.js +278 -0
  187. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/elementspath/plugin.js +218 -0
  188. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/enterkey/plugin.js +433 -0
  189. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/entities/plugin.js +250 -0
  190. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/fakeobjects/plugin.js +175 -0
  191. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/filebrowser/plugin.js +534 -0
  192. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/find/dialogs/find.js +915 -0
  193. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/find/plugin.js +47 -0
  194. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/flash/dialogs/flash.js +674 -0
  195. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/flash/images/placeholder.png +0 -0
  196. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/flash/plugin.js +154 -0
  197. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/floatpanel/plugin.js +428 -0
  198. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/font/plugin.js +234 -0
  199. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/format/plugin.js +197 -0
  200. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/forms/dialogs/button.js +118 -0
  201. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/forms/dialogs/checkbox.js +153 -0
  202. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/forms/dialogs/form.js +177 -0
  203. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js +100 -0
  204. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/forms/dialogs/radio.js +135 -0
  205. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/forms/dialogs/select.js +558 -0
  206. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/forms/dialogs/textarea.js +135 -0
  207. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/forms/dialogs/textfield.js +199 -0
  208. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/forms/images/hiddenfield.gif +0 -0
  209. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/forms/plugin.js +288 -0
  210. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/horizontalrule/plugin.js +48 -0
  211. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/htmldataprocessor/plugin.js +596 -0
  212. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/htmlwriter/plugin.js +319 -0
  213. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/iframe/dialogs/iframe.js +229 -0
  214. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/iframe/images/placeholder.png +0 -0
  215. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/iframe/plugin.js +87 -0
  216. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/iframedialog/plugin.js +188 -0
  217. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/image/dialogs/image.js +1407 -0
  218. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/image/plugin.js +81 -0
  219. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/indent/plugin.js +461 -0
  220. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/justify/plugin.js +253 -0
  221. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/keystrokes/plugin.js +225 -0
  222. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/link/dialogs/anchor.js +144 -0
  223. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/link/dialogs/link.js +1425 -0
  224. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/link/images/anchor.gif +0 -0
  225. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/link/plugin.js +374 -0
  226. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/list/plugin.js +774 -0
  227. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/listblock/plugin.js +266 -0
  228. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/liststyle/dialogs/liststyle.js +225 -0
  229. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/liststyle/plugin.js +66 -0
  230. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/maximize/plugin.js +353 -0
  231. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/menu/plugin.js +541 -0
  232. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/menubutton/plugin.js +98 -0
  233. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/newpage/plugin.js +55 -0
  234. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif +0 -0
  235. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/pagebreak/plugin.js +164 -0
  236. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/panel/plugin.js +400 -0
  237. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/panelbutton/plugin.js +144 -0
  238. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/pastefromword/filter/default.js +1367 -0
  239. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/pastefromword/plugin.js +141 -0
  240. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +67 -0
  241. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/pastetext/plugin.js +98 -0
  242. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/placeholder/dialogs/placeholder.js +71 -0
  243. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/placeholder/lang/en.js +16 -0
  244. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/placeholder/lang/he.js +16 -0
  245. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/placeholder/placeholder.gif +0 -0
  246. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/placeholder/plugin.js +171 -0
  247. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/popup/plugin.js +64 -0
  248. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/preview/plugin.js +113 -0
  249. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/print/plugin.js +42 -0
  250. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/removeformat/plugin.js +185 -0
  251. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/resize/plugin.js +168 -0
  252. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/richcombo/plugin.js +381 -0
  253. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/save/plugin.js +56 -0
  254. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/scayt/dialogs/options.js +537 -0
  255. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/scayt/dialogs/toolbar.css +71 -0
  256. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/scayt/plugin.js +973 -0
  257. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/selection/plugin.js +1729 -0
  258. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/showblocks/images/block_address.png +0 -0
  259. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/showblocks/images/block_blockquote.png +0 -0
  260. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/showblocks/images/block_div.png +0 -0
  261. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/showblocks/images/block_h1.png +0 -0
  262. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/showblocks/images/block_h2.png +0 -0
  263. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/showblocks/images/block_h3.png +0 -0
  264. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/showblocks/images/block_h4.png +0 -0
  265. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/showblocks/images/block_h5.png +0 -0
  266. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/showblocks/images/block_h6.png +0 -0
  267. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/showblocks/images/block_p.png +0 -0
  268. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/showblocks/images/block_pre.png +0 -0
  269. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/showblocks/plugin.js +160 -0
  270. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/showborders/plugin.js +207 -0
  271. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/dialogs/smiley.js +224 -0
  272. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/images/angel_smile.gif +0 -0
  273. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/images/angry_smile.gif +0 -0
  274. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/images/broken_heart.gif +0 -0
  275. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/images/confused_smile.gif +0 -0
  276. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/images/cry_smile.gif +0 -0
  277. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/images/devil_smile.gif +0 -0
  278. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif +0 -0
  279. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/images/envelope.gif +0 -0
  280. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/images/heart.gif +0 -0
  281. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/images/kiss.gif +0 -0
  282. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/images/lightbulb.gif +0 -0
  283. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/images/omg_smile.gif +0 -0
  284. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/images/regular_smile.gif +0 -0
  285. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/images/sad_smile.gif +0 -0
  286. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/images/shades_smile.gif +0 -0
  287. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/images/teeth_smile.gif +0 -0
  288. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/images/thumbs_down.gif +0 -0
  289. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/images/thumbs_up.gif +0 -0
  290. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/images/tounge_smile.gif +0 -0
  291. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  292. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/images/wink_smile.gif +0 -0
  293. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/smiley/plugin.js +94 -0
  294. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/sourcearea/plugin.js +209 -0
  295. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js +350 -0
  296. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/specialchar/lang/en.js +122 -0
  297. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/specialchar/plugin.js +70 -0
  298. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/styles/plugin.js +1700 -0
  299. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/styles/styles/default.js +88 -0
  300. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/stylescombo/plugin.js +218 -0
  301. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/stylesheetparser/plugin.js +148 -0
  302. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/tab/plugin.js +367 -0
  303. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/table/dialogs/table.js +623 -0
  304. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/table/plugin.js +78 -0
  305. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/tableresize/plugin.js +443 -0
  306. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +525 -0
  307. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/tabletools/plugin.js +1194 -0
  308. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/templates/dialogs/templates.js +234 -0
  309. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/templates/plugin.js +99 -0
  310. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/templates/templates/default.js +94 -0
  311. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/templates/templates/images/template1.gif +0 -0
  312. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/templates/templates/images/template2.gif +0 -0
  313. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/templates/templates/images/template3.gif +0 -0
  314. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/toolbar/plugin.js +545 -0
  315. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js +205 -0
  316. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/uicolor/lang/en.js +15 -0
  317. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/uicolor/lang/he.js +15 -0
  318. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/uicolor/plugin.js +37 -0
  319. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/uicolor/uicolor.gif +0 -0
  320. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png +0 -0
  321. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
  322. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png +0 -0
  323. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
  324. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/uicolor/yui/assets/yui.css +15 -0
  325. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/uicolor/yui/yui.js +71 -0
  326. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/undo/plugin.js +578 -0
  327. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/wsc/dialogs/ciframe.html +49 -0
  328. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html +52 -0
  329. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/wsc/dialogs/wsc.css +82 -0
  330. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/wsc/dialogs/wsc.js +192 -0
  331. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/wsc/plugin.js +33 -0
  332. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/wysiwygarea/plugin.js +1347 -0
  333. data/app/assets/javascripts/quic_cms/ckeditor/_source/plugins/xml/plugin.js +170 -0
  334. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/dialog.css +989 -0
  335. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/editor.css +25 -0
  336. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/elementspath.css +73 -0
  337. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/icons.css +366 -0
  338. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/icons.png +0 -0
  339. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/icons_rtl.png +0 -0
  340. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/images/dialog_sides.gif +0 -0
  341. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/images/dialog_sides.png +0 -0
  342. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png +0 -0
  343. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/images/mini.gif +0 -0
  344. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/images/noimage.png +0 -0
  345. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/images/sprites.png +0 -0
  346. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/images/sprites_ie6.png +0 -0
  347. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/images/toolbar_start.gif +0 -0
  348. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/mainui.css +206 -0
  349. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/menu.css +232 -0
  350. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/panel.css +217 -0
  351. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/presets.css +49 -0
  352. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/reset.css +85 -0
  353. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/richcombo.css +287 -0
  354. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/skin.js +236 -0
  355. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/templates.css +88 -0
  356. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/kama/toolbar.css +408 -0
  357. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/office2003/dialog.css +891 -0
  358. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/office2003/editor.css +25 -0
  359. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/office2003/elementspath.css +74 -0
  360. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/office2003/icons.css +363 -0
  361. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/office2003/icons.png +0 -0
  362. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/office2003/icons_rtl.png +0 -0
  363. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/office2003/images/dialog_sides.gif +0 -0
  364. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/office2003/images/dialog_sides.png +0 -0
  365. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png +0 -0
  366. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/office2003/images/mini.gif +0 -0
  367. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/office2003/images/noimage.png +0 -0
  368. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/office2003/images/sprites.png +0 -0
  369. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/office2003/images/sprites_ie6.png +0 -0
  370. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/office2003/mainui.css +153 -0
  371. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/office2003/menu.css +229 -0
  372. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/office2003/panel.css +212 -0
  373. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/office2003/presets.css +49 -0
  374. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/office2003/reset.css +85 -0
  375. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/office2003/richcombo.css +309 -0
  376. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/office2003/skin.js +74 -0
  377. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/office2003/templates.css +87 -0
  378. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/office2003/toolbar.css +522 -0
  379. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/dialog.css +907 -0
  380. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/editor.css +25 -0
  381. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/elementspath.css +74 -0
  382. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/icons.css +363 -0
  383. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/icons.png +0 -0
  384. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/icons_rtl.png +0 -0
  385. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/images/dialog_sides.gif +0 -0
  386. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/images/dialog_sides.png +0 -0
  387. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png +0 -0
  388. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/images/mini.gif +0 -0
  389. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/images/noimage.png +0 -0
  390. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/images/sprites.png +0 -0
  391. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/images/sprites_ie6.png +0 -0
  392. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/images/toolbar_start.gif +0 -0
  393. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/mainui.css +162 -0
  394. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/menu.css +232 -0
  395. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/panel.css +212 -0
  396. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/presets.css +50 -0
  397. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/reset.css +85 -0
  398. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/richcombo.css +302 -0
  399. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/skin.js +70 -0
  400. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/templates.css +87 -0
  401. data/app/assets/javascripts/quic_cms/ckeditor/_source/skins/v2/toolbar.css +465 -0
  402. data/app/assets/javascripts/quic_cms/ckeditor/_source/themes/default/theme.js +407 -0
  403. data/app/assets/javascripts/quic_cms/ckeditor/adapters/jquery.js +6 -0
  404. data/app/assets/javascripts/quic_cms/ckeditor/ckeditor.js +149 -0
  405. data/app/assets/javascripts/quic_cms/ckeditor/ckeditor.pack +211 -0
  406. data/app/assets/javascripts/quic_cms/ckeditor/ckeditor_basic.js +8 -0
  407. data/app/assets/javascripts/quic_cms/ckeditor/ckeditor_basic_source.js +20 -0
  408. data/app/assets/javascripts/quic_cms/ckeditor/ckeditor_source.js +35 -0
  409. data/app/assets/javascripts/quic_cms/ckeditor/config.js +65 -0
  410. data/app/assets/javascripts/quic_cms/ckeditor/contents.css +25 -0
  411. data/app/assets/javascripts/quic_cms/ckeditor/filebrowser/images/gal_add.jpg +0 -0
  412. data/app/assets/javascripts/quic_cms/ckeditor/filebrowser/images/gal_add.png +0 -0
  413. data/app/assets/javascripts/quic_cms/ckeditor/filebrowser/images/gal_del.png +0 -0
  414. data/app/assets/javascripts/quic_cms/ckeditor/filebrowser/images/gal_more.gif +0 -0
  415. data/app/assets/javascripts/quic_cms/ckeditor/filebrowser/images/preloader.gif +0 -0
  416. data/app/assets/javascripts/quic_cms/ckeditor/filebrowser/images/thumbs/ckfnothumb.gif +0 -0
  417. data/app/assets/javascripts/quic_cms/ckeditor/filebrowser/images/thumbs/mp3.gif +0 -0
  418. data/app/assets/javascripts/quic_cms/ckeditor/filebrowser/images/thumbs/pdf.gif +0 -0
  419. data/app/assets/javascripts/quic_cms/ckeditor/filebrowser/images/thumbs/rar.gif +0 -0
  420. data/app/assets/javascripts/quic_cms/ckeditor/filebrowser/images/thumbs/swf.gif +0 -0
  421. data/app/assets/javascripts/quic_cms/ckeditor/filebrowser/images/thumbs/xls.gif +0 -0
  422. data/app/assets/javascripts/quic_cms/ckeditor/filebrowser/javascripts/application.js +222 -0
  423. data/app/assets/javascripts/quic_cms/ckeditor/filebrowser/javascripts/fileuploader.js +1301 -0
  424. data/app/assets/javascripts/quic_cms/ckeditor/filebrowser/javascripts/jquery.js +18 -0
  425. data/app/assets/javascripts/quic_cms/ckeditor/filebrowser/javascripts/jquery.tmpl.js +10 -0
  426. data/app/assets/javascripts/quic_cms/ckeditor/filebrowser/javascripts/rails.js +367 -0
  427. data/app/assets/javascripts/quic_cms/ckeditor/filebrowser/stylesheets/uploader.css +117 -0
  428. data/app/assets/javascripts/quic_cms/ckeditor/images/spacer.gif +0 -0
  429. data/app/assets/javascripts/quic_cms/ckeditor/lang/_languages.js +6 -0
  430. data/app/assets/javascripts/quic_cms/ckeditor/lang/_translationstatus.txt +61 -0
  431. data/app/assets/javascripts/quic_cms/ckeditor/lang/af.js +6 -0
  432. data/app/assets/javascripts/quic_cms/ckeditor/lang/ar.js +6 -0
  433. data/app/assets/javascripts/quic_cms/ckeditor/lang/bg.js +6 -0
  434. data/app/assets/javascripts/quic_cms/ckeditor/lang/bn.js +6 -0
  435. data/app/assets/javascripts/quic_cms/ckeditor/lang/bs.js +6 -0
  436. data/app/assets/javascripts/quic_cms/ckeditor/lang/ca.js +6 -0
  437. data/app/assets/javascripts/quic_cms/ckeditor/lang/cs.js +6 -0
  438. data/app/assets/javascripts/quic_cms/ckeditor/lang/cy.js +6 -0
  439. data/app/assets/javascripts/quic_cms/ckeditor/lang/da.js +6 -0
  440. data/app/assets/javascripts/quic_cms/ckeditor/lang/de.js +6 -0
  441. data/app/assets/javascripts/quic_cms/ckeditor/lang/el.js +6 -0
  442. data/app/assets/javascripts/quic_cms/ckeditor/lang/en-au.js +6 -0
  443. data/app/assets/javascripts/quic_cms/ckeditor/lang/en-ca.js +6 -0
  444. data/app/assets/javascripts/quic_cms/ckeditor/lang/en-gb.js +6 -0
  445. data/app/assets/javascripts/quic_cms/ckeditor/lang/en.js +6 -0
  446. data/app/assets/javascripts/quic_cms/ckeditor/lang/eo.js +6 -0
  447. data/app/assets/javascripts/quic_cms/ckeditor/lang/es.js +6 -0
  448. data/app/assets/javascripts/quic_cms/ckeditor/lang/et.js +6 -0
  449. data/app/assets/javascripts/quic_cms/ckeditor/lang/eu.js +6 -0
  450. data/app/assets/javascripts/quic_cms/ckeditor/lang/fa.js +6 -0
  451. data/app/assets/javascripts/quic_cms/ckeditor/lang/fi.js +6 -0
  452. data/app/assets/javascripts/quic_cms/ckeditor/lang/fo.js +6 -0
  453. data/app/assets/javascripts/quic_cms/ckeditor/lang/fr-ca.js +6 -0
  454. data/app/assets/javascripts/quic_cms/ckeditor/lang/fr.js +6 -0
  455. data/app/assets/javascripts/quic_cms/ckeditor/lang/gl.js +6 -0
  456. data/app/assets/javascripts/quic_cms/ckeditor/lang/gu.js +6 -0
  457. data/app/assets/javascripts/quic_cms/ckeditor/lang/he.js +6 -0
  458. data/app/assets/javascripts/quic_cms/ckeditor/lang/hi.js +6 -0
  459. data/app/assets/javascripts/quic_cms/ckeditor/lang/hr.js +6 -0
  460. data/app/assets/javascripts/quic_cms/ckeditor/lang/hu.js +6 -0
  461. data/app/assets/javascripts/quic_cms/ckeditor/lang/is.js +6 -0
  462. data/app/assets/javascripts/quic_cms/ckeditor/lang/it.js +6 -0
  463. data/app/assets/javascripts/quic_cms/ckeditor/lang/ja.js +6 -0
  464. data/app/assets/javascripts/quic_cms/ckeditor/lang/ka.js +6 -0
  465. data/app/assets/javascripts/quic_cms/ckeditor/lang/km.js +6 -0
  466. data/app/assets/javascripts/quic_cms/ckeditor/lang/ko.js +6 -0
  467. data/app/assets/javascripts/quic_cms/ckeditor/lang/lt.js +6 -0
  468. data/app/assets/javascripts/quic_cms/ckeditor/lang/lv.js +6 -0
  469. data/app/assets/javascripts/quic_cms/ckeditor/lang/mn.js +6 -0
  470. data/app/assets/javascripts/quic_cms/ckeditor/lang/ms.js +6 -0
  471. data/app/assets/javascripts/quic_cms/ckeditor/lang/nb.js +6 -0
  472. data/app/assets/javascripts/quic_cms/ckeditor/lang/nl.js +6 -0
  473. data/app/assets/javascripts/quic_cms/ckeditor/lang/no.js +6 -0
  474. data/app/assets/javascripts/quic_cms/ckeditor/lang/pl.js +6 -0
  475. data/app/assets/javascripts/quic_cms/ckeditor/lang/pt-br.js +6 -0
  476. data/app/assets/javascripts/quic_cms/ckeditor/lang/pt.js +6 -0
  477. data/app/assets/javascripts/quic_cms/ckeditor/lang/ro.js +6 -0
  478. data/app/assets/javascripts/quic_cms/ckeditor/lang/ru.js +6 -0
  479. data/app/assets/javascripts/quic_cms/ckeditor/lang/sk.js +6 -0
  480. data/app/assets/javascripts/quic_cms/ckeditor/lang/sl.js +6 -0
  481. data/app/assets/javascripts/quic_cms/ckeditor/lang/sr-latn.js +6 -0
  482. data/app/assets/javascripts/quic_cms/ckeditor/lang/sr.js +6 -0
  483. data/app/assets/javascripts/quic_cms/ckeditor/lang/sv.js +6 -0
  484. data/app/assets/javascripts/quic_cms/ckeditor/lang/th.js +6 -0
  485. data/app/assets/javascripts/quic_cms/ckeditor/lang/tr.js +6 -0
  486. data/app/assets/javascripts/quic_cms/ckeditor/lang/uk.js +6 -0
  487. data/app/assets/javascripts/quic_cms/ckeditor/lang/vi.js +6 -0
  488. data/app/assets/javascripts/quic_cms/ckeditor/lang/zh-cn.js +6 -0
  489. data/app/assets/javascripts/quic_cms/ckeditor/lang/zh.js +6 -0
  490. data/app/assets/javascripts/quic_cms/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +7 -0
  491. data/app/assets/javascripts/quic_cms/ckeditor/plugins/a11yhelp/lang/en.js +6 -0
  492. data/app/assets/javascripts/quic_cms/ckeditor/plugins/a11yhelp/lang/he.js +6 -0
  493. data/app/assets/javascripts/quic_cms/ckeditor/plugins/about/dialogs/about.js +6 -0
  494. data/app/assets/javascripts/quic_cms/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
  495. data/app/assets/javascripts/quic_cms/ckeditor/plugins/adobeair/plugin.js +6 -0
  496. data/app/assets/javascripts/quic_cms/ckeditor/plugins/ajax/plugin.js +6 -0
  497. data/app/assets/javascripts/quic_cms/ckeditor/plugins/attachment/dialogs/attachment.js +1 -0
  498. data/app/assets/javascripts/quic_cms/ckeditor/plugins/attachment/images/attachment.png +0 -0
  499. data/app/assets/javascripts/quic_cms/ckeditor/plugins/attachment/lang/en.js +10 -0
  500. data/app/assets/javascripts/quic_cms/ckeditor/plugins/attachment/lang/ru.js +10 -0
  501. data/app/assets/javascripts/quic_cms/ckeditor/plugins/attachment/lang/uk.js +10 -0
  502. data/app/assets/javascripts/quic_cms/ckeditor/plugins/attachment/plugin.js +1 -0
  503. data/app/assets/javascripts/quic_cms/ckeditor/plugins/autogrow/plugin.js +6 -0
  504. data/app/assets/javascripts/quic_cms/ckeditor/plugins/bbcode/plugin.js +9 -0
  505. data/app/assets/javascripts/quic_cms/ckeditor/plugins/clipboard/dialogs/paste.js +7 -0
  506. data/app/assets/javascripts/quic_cms/ckeditor/plugins/colordialog/dialogs/colordialog.js +7 -0
  507. data/app/assets/javascripts/quic_cms/ckeditor/plugins/devtools/lang/en.js +6 -0
  508. data/app/assets/javascripts/quic_cms/ckeditor/plugins/devtools/plugin.js +6 -0
  509. data/app/assets/javascripts/quic_cms/ckeditor/plugins/dialog/dialogDefinition.js +4 -0
  510. data/app/assets/javascripts/quic_cms/ckeditor/plugins/div/dialogs/div.js +8 -0
  511. data/app/assets/javascripts/quic_cms/ckeditor/plugins/docprops/dialogs/docprops.js +10 -0
  512. data/app/assets/javascripts/quic_cms/ckeditor/plugins/docprops/plugin.js +6 -0
  513. data/app/assets/javascripts/quic_cms/ckeditor/plugins/embed/dialogs/embed.js +1 -0
  514. data/app/assets/javascripts/quic_cms/ckeditor/plugins/embed/images/embed.png +0 -0
  515. data/app/assets/javascripts/quic_cms/ckeditor/plugins/embed/lang/en.js +9 -0
  516. data/app/assets/javascripts/quic_cms/ckeditor/plugins/embed/lang/ru.js +9 -0
  517. data/app/assets/javascripts/quic_cms/ckeditor/plugins/embed/lang/uk.js +9 -0
  518. data/app/assets/javascripts/quic_cms/ckeditor/plugins/embed/plugin.js +1 -0
  519. data/app/assets/javascripts/quic_cms/ckeditor/plugins/find/dialogs/find.js +10 -0
  520. data/app/assets/javascripts/quic_cms/ckeditor/plugins/flash/dialogs/flash.js +9 -0
  521. data/app/assets/javascripts/quic_cms/ckeditor/plugins/flash/images/placeholder.png +0 -0
  522. data/app/assets/javascripts/quic_cms/ckeditor/plugins/forms/dialogs/button.js +6 -0
  523. data/app/assets/javascripts/quic_cms/ckeditor/plugins/forms/dialogs/checkbox.js +6 -0
  524. data/app/assets/javascripts/quic_cms/ckeditor/plugins/forms/dialogs/form.js +6 -0
  525. data/app/assets/javascripts/quic_cms/ckeditor/plugins/forms/dialogs/hiddenfield.js +6 -0
  526. data/app/assets/javascripts/quic_cms/ckeditor/plugins/forms/dialogs/radio.js +6 -0
  527. data/app/assets/javascripts/quic_cms/ckeditor/plugins/forms/dialogs/select.js +9 -0
  528. data/app/assets/javascripts/quic_cms/ckeditor/plugins/forms/dialogs/textarea.js +6 -0
  529. data/app/assets/javascripts/quic_cms/ckeditor/plugins/forms/dialogs/textfield.js +6 -0
  530. data/app/assets/javascripts/quic_cms/ckeditor/plugins/forms/images/hiddenfield.gif +0 -0
  531. data/app/assets/javascripts/quic_cms/ckeditor/plugins/iframe/dialogs/iframe.js +7 -0
  532. data/app/assets/javascripts/quic_cms/ckeditor/plugins/iframe/images/placeholder.png +0 -0
  533. data/app/assets/javascripts/quic_cms/ckeditor/plugins/iframedialog/plugin.js +6 -0
  534. data/app/assets/javascripts/quic_cms/ckeditor/plugins/image/dialogs/image.js +13 -0
  535. data/app/assets/javascripts/quic_cms/ckeditor/plugins/link/dialogs/anchor.js +6 -0
  536. data/app/assets/javascripts/quic_cms/ckeditor/plugins/link/dialogs/link.js +12 -0
  537. data/app/assets/javascripts/quic_cms/ckeditor/plugins/link/images/anchor.gif +0 -0
  538. data/app/assets/javascripts/quic_cms/ckeditor/plugins/liststyle/dialogs/liststyle.js +7 -0
  539. data/app/assets/javascripts/quic_cms/ckeditor/plugins/pagebreak/images/pagebreak.gif +0 -0
  540. data/app/assets/javascripts/quic_cms/ckeditor/plugins/pastefromword/filter/default.js +11 -0
  541. data/app/assets/javascripts/quic_cms/ckeditor/plugins/pastetext/dialogs/pastetext.js +6 -0
  542. data/app/assets/javascripts/quic_cms/ckeditor/plugins/placeholder/dialogs/placeholder.js +6 -0
  543. data/app/assets/javascripts/quic_cms/ckeditor/plugins/placeholder/lang/en.js +6 -0
  544. data/app/assets/javascripts/quic_cms/ckeditor/plugins/placeholder/lang/he.js +6 -0
  545. data/app/assets/javascripts/quic_cms/ckeditor/plugins/placeholder/placeholder.gif +0 -0
  546. data/app/assets/javascripts/quic_cms/ckeditor/plugins/placeholder/plugin.js +6 -0
  547. data/app/assets/javascripts/quic_cms/ckeditor/plugins/scayt/dialogs/options.js +8 -0
  548. data/app/assets/javascripts/quic_cms/ckeditor/plugins/scayt/dialogs/toolbar.css +6 -0
  549. data/app/assets/javascripts/quic_cms/ckeditor/plugins/showblocks/images/block_address.png +0 -0
  550. data/app/assets/javascripts/quic_cms/ckeditor/plugins/showblocks/images/block_blockquote.png +0 -0
  551. data/app/assets/javascripts/quic_cms/ckeditor/plugins/showblocks/images/block_div.png +0 -0
  552. data/app/assets/javascripts/quic_cms/ckeditor/plugins/showblocks/images/block_h1.png +0 -0
  553. data/app/assets/javascripts/quic_cms/ckeditor/plugins/showblocks/images/block_h2.png +0 -0
  554. data/app/assets/javascripts/quic_cms/ckeditor/plugins/showblocks/images/block_h3.png +0 -0
  555. data/app/assets/javascripts/quic_cms/ckeditor/plugins/showblocks/images/block_h4.png +0 -0
  556. data/app/assets/javascripts/quic_cms/ckeditor/plugins/showblocks/images/block_h5.png +0 -0
  557. data/app/assets/javascripts/quic_cms/ckeditor/plugins/showblocks/images/block_h6.png +0 -0
  558. data/app/assets/javascripts/quic_cms/ckeditor/plugins/showblocks/images/block_p.png +0 -0
  559. data/app/assets/javascripts/quic_cms/ckeditor/plugins/showblocks/images/block_pre.png +0 -0
  560. data/app/assets/javascripts/quic_cms/ckeditor/plugins/smiley/dialogs/smiley.js +7 -0
  561. data/app/assets/javascripts/quic_cms/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
  562. data/app/assets/javascripts/quic_cms/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
  563. data/app/assets/javascripts/quic_cms/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
  564. data/app/assets/javascripts/quic_cms/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
  565. data/app/assets/javascripts/quic_cms/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
  566. data/app/assets/javascripts/quic_cms/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
  567. data/app/assets/javascripts/quic_cms/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
  568. data/app/assets/javascripts/quic_cms/ckeditor/plugins/smiley/images/envelope.gif +0 -0
  569. data/app/assets/javascripts/quic_cms/ckeditor/plugins/smiley/images/heart.gif +0 -0
  570. data/app/assets/javascripts/quic_cms/ckeditor/plugins/smiley/images/kiss.gif +0 -0
  571. data/app/assets/javascripts/quic_cms/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
  572. data/app/assets/javascripts/quic_cms/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
  573. data/app/assets/javascripts/quic_cms/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
  574. data/app/assets/javascripts/quic_cms/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
  575. data/app/assets/javascripts/quic_cms/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
  576. data/app/assets/javascripts/quic_cms/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
  577. data/app/assets/javascripts/quic_cms/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
  578. data/app/assets/javascripts/quic_cms/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
  579. data/app/assets/javascripts/quic_cms/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
  580. data/app/assets/javascripts/quic_cms/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  581. data/app/assets/javascripts/quic_cms/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
  582. data/app/assets/javascripts/quic_cms/ckeditor/plugins/specialchar/dialogs/specialchar.js +7 -0
  583. data/app/assets/javascripts/quic_cms/ckeditor/plugins/specialchar/lang/en.js +6 -0
  584. data/app/assets/javascripts/quic_cms/ckeditor/plugins/styles/styles/default.js +6 -0
  585. data/app/assets/javascripts/quic_cms/ckeditor/plugins/stylesheetparser/plugin.js +6 -0
  586. data/app/assets/javascripts/quic_cms/ckeditor/plugins/table/dialogs/table.js +9 -0
  587. data/app/assets/javascripts/quic_cms/ckeditor/plugins/tableresize/plugin.js +7 -0
  588. data/app/assets/javascripts/quic_cms/ckeditor/plugins/tabletools/dialogs/tableCell.js +8 -0
  589. data/app/assets/javascripts/quic_cms/ckeditor/plugins/templates/dialogs/templates.js +7 -0
  590. data/app/assets/javascripts/quic_cms/ckeditor/plugins/templates/templates/default.js +6 -0
  591. data/app/assets/javascripts/quic_cms/ckeditor/plugins/templates/templates/images/template1.gif +0 -0
  592. data/app/assets/javascripts/quic_cms/ckeditor/plugins/templates/templates/images/template2.gif +0 -0
  593. data/app/assets/javascripts/quic_cms/ckeditor/plugins/templates/templates/images/template3.gif +0 -0
  594. data/app/assets/javascripts/quic_cms/ckeditor/plugins/uicolor/dialogs/uicolor.js +7 -0
  595. data/app/assets/javascripts/quic_cms/ckeditor/plugins/uicolor/lang/en.js +6 -0
  596. data/app/assets/javascripts/quic_cms/ckeditor/plugins/uicolor/lang/he.js +6 -0
  597. data/app/assets/javascripts/quic_cms/ckeditor/plugins/uicolor/plugin.js +6 -0
  598. data/app/assets/javascripts/quic_cms/ckeditor/plugins/uicolor/uicolor.gif +0 -0
  599. data/app/assets/javascripts/quic_cms/ckeditor/plugins/uicolor/yui/assets/hue_bg.png +0 -0
  600. data/app/assets/javascripts/quic_cms/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
  601. data/app/assets/javascripts/quic_cms/ckeditor/plugins/uicolor/yui/assets/picker_mask.png +0 -0
  602. data/app/assets/javascripts/quic_cms/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
  603. data/app/assets/javascripts/quic_cms/ckeditor/plugins/uicolor/yui/assets/yui.css +6 -0
  604. data/app/assets/javascripts/quic_cms/ckeditor/plugins/uicolor/yui/yui.js +76 -0
  605. data/app/assets/javascripts/quic_cms/ckeditor/plugins/wsc/dialogs/ciframe.html +49 -0
  606. data/app/assets/javascripts/quic_cms/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +52 -0
  607. data/app/assets/javascripts/quic_cms/ckeditor/plugins/wsc/dialogs/wsc.css +6 -0
  608. data/app/assets/javascripts/quic_cms/ckeditor/plugins/wsc/dialogs/wsc.js +7 -0
  609. data/app/assets/javascripts/quic_cms/ckeditor/plugins/xml/plugin.js +6 -0
  610. data/app/assets/javascripts/quic_cms/ckeditor/skins/kama/dialog.css +10 -0
  611. data/app/assets/javascripts/quic_cms/ckeditor/skins/kama/editor.css +13 -0
  612. data/app/assets/javascripts/quic_cms/ckeditor/skins/kama/icons.png +0 -0
  613. data/app/assets/javascripts/quic_cms/ckeditor/skins/kama/icons_rtl.png +0 -0
  614. data/app/assets/javascripts/quic_cms/ckeditor/skins/kama/images/dialog_sides.gif +0 -0
  615. data/app/assets/javascripts/quic_cms/ckeditor/skins/kama/images/dialog_sides.png +0 -0
  616. data/app/assets/javascripts/quic_cms/ckeditor/skins/kama/images/dialog_sides_rtl.png +0 -0
  617. data/app/assets/javascripts/quic_cms/ckeditor/skins/kama/images/mini.gif +0 -0
  618. data/app/assets/javascripts/quic_cms/ckeditor/skins/kama/images/noimage.png +0 -0
  619. data/app/assets/javascripts/quic_cms/ckeditor/skins/kama/images/sprites.png +0 -0
  620. data/app/assets/javascripts/quic_cms/ckeditor/skins/kama/images/sprites_ie6.png +0 -0
  621. data/app/assets/javascripts/quic_cms/ckeditor/skins/kama/images/toolbar_start.gif +0 -0
  622. data/app/assets/javascripts/quic_cms/ckeditor/skins/kama/skin.js +7 -0
  623. data/app/assets/javascripts/quic_cms/ckeditor/skins/kama/templates.css +6 -0
  624. data/app/assets/javascripts/quic_cms/ckeditor/skins/office2003/dialog.css +9 -0
  625. data/app/assets/javascripts/quic_cms/ckeditor/skins/office2003/editor.css +14 -0
  626. data/app/assets/javascripts/quic_cms/ckeditor/skins/office2003/icons.png +0 -0
  627. data/app/assets/javascripts/quic_cms/ckeditor/skins/office2003/icons_rtl.png +0 -0
  628. data/app/assets/javascripts/quic_cms/ckeditor/skins/office2003/images/dialog_sides.gif +0 -0
  629. data/app/assets/javascripts/quic_cms/ckeditor/skins/office2003/images/dialog_sides.png +0 -0
  630. data/app/assets/javascripts/quic_cms/ckeditor/skins/office2003/images/dialog_sides_rtl.png +0 -0
  631. data/app/assets/javascripts/quic_cms/ckeditor/skins/office2003/images/mini.gif +0 -0
  632. data/app/assets/javascripts/quic_cms/ckeditor/skins/office2003/images/noimage.png +0 -0
  633. data/app/assets/javascripts/quic_cms/ckeditor/skins/office2003/images/sprites.png +0 -0
  634. data/app/assets/javascripts/quic_cms/ckeditor/skins/office2003/images/sprites_ie6.png +0 -0
  635. data/app/assets/javascripts/quic_cms/ckeditor/skins/office2003/skin.js +6 -0
  636. data/app/assets/javascripts/quic_cms/ckeditor/skins/office2003/templates.css +6 -0
  637. data/app/assets/javascripts/quic_cms/ckeditor/skins/v2/dialog.css +9 -0
  638. data/app/assets/javascripts/quic_cms/ckeditor/skins/v2/editor.css +13 -0
  639. data/app/assets/javascripts/quic_cms/ckeditor/skins/v2/icons.png +0 -0
  640. data/app/assets/javascripts/quic_cms/ckeditor/skins/v2/icons_rtl.png +0 -0
  641. data/app/assets/javascripts/quic_cms/ckeditor/skins/v2/images/dialog_sides.gif +0 -0
  642. data/app/assets/javascripts/quic_cms/ckeditor/skins/v2/images/dialog_sides.png +0 -0
  643. data/app/assets/javascripts/quic_cms/ckeditor/skins/v2/images/dialog_sides_rtl.png +0 -0
  644. data/app/assets/javascripts/quic_cms/ckeditor/skins/v2/images/mini.gif +0 -0
  645. data/app/assets/javascripts/quic_cms/ckeditor/skins/v2/images/noimage.png +0 -0
  646. data/app/assets/javascripts/quic_cms/ckeditor/skins/v2/images/sprites.png +0 -0
  647. data/app/assets/javascripts/quic_cms/ckeditor/skins/v2/images/sprites_ie6.png +0 -0
  648. data/app/assets/javascripts/quic_cms/ckeditor/skins/v2/images/toolbar_start.gif +0 -0
  649. data/app/assets/javascripts/quic_cms/ckeditor/skins/v2/skin.js +6 -0
  650. data/app/assets/javascripts/quic_cms/ckeditor/skins/v2/templates.css +6 -0
  651. data/app/assets/javascripts/quic_cms/ckeditor/themes/default/theme.js +8 -0
  652. data/app/controllers/quic_cms/admin/base_controller.rb +1 -1
  653. data/app/views/layouts/quic_cms/application.html.erb +2 -1
  654. data/app/views/quic_cms/admin/pages/_form.html.erb +1 -3
  655. data/config/initializers/ckeditor.rb +1 -0
  656. data/lib/quic_cms.rb +1 -0
  657. data/lib/quic_cms/version.rb +1 -1
  658. data/test/dummy/config/application.rb +1 -0
  659. data/test/dummy/db/development.sqlite3 +0 -0
  660. data/test/dummy/log/development.log +3718 -0
  661. data/test/dummy/tmp/cache/assets/BA9/B00/sprockets%2F0ed496270513006281b4125980118d01 +0 -0
  662. data/test/dummy/tmp/cache/assets/BE8/650/sprockets%2F2c171522598162b8b7c137897113b222 +0 -0
  663. data/test/dummy/tmp/cache/assets/BEC/6F0/sprockets%2F48177951709b5121021c0398c43b19b9 +0 -0
  664. data/test/dummy/tmp/cache/assets/C00/FB0/sprockets%2F99063b099506960c1b808d7161492e95 +0 -0
  665. data/test/dummy/tmp/cache/assets/C02/240/sprockets%2F92422c8797c636792f215f408a815572 +0 -0
  666. data/test/dummy/tmp/cache/assets/C15/C30/sprockets%2F3107179f7ac02b0859196b12a1566820 +0 -0
  667. data/test/dummy/tmp/cache/assets/C19/F10/sprockets%2F51196128ddc04761d5d99123570061a6 +0 -0
  668. data/test/dummy/tmp/cache/assets/C1E/A20/sprockets%2Fc28f2bc2240bd8192774817101958381 +0 -0
  669. data/test/dummy/tmp/cache/assets/C26/EE0/sprockets%2F10f9707f33e3e5391283887d201637a5 +0 -0
  670. data/test/dummy/tmp/cache/assets/C2B/7A0/sprockets%2F475277546e0684f30aa42930647f68c4 +0 -0
  671. data/test/dummy/tmp/cache/assets/C2E/540/sprockets%2F8b9993d855003970032f6e594770d0e2 +0 -0
  672. data/test/dummy/tmp/cache/assets/C3F/EF0/sprockets%2F14a2163d232862b1b47df49117b12296 +0 -0
  673. data/test/dummy/tmp/cache/assets/C40/050/sprockets%2F1cb77052c853c8560100d67502b0d593 +0 -0
  674. data/test/dummy/tmp/cache/assets/C40/B70/sprockets%2F6b135270e5a2926b6d4321740e73e043 +0 -0
  675. data/test/dummy/tmp/cache/assets/C41/420/sprockets%2F23d6322f57f0d4a573800342714d34c4 +0 -0
  676. data/test/dummy/tmp/cache/assets/C48/E50/sprockets%2F5ec937848a200c06a81181693f5a6022 +0 -0
  677. data/test/dummy/tmp/cache/assets/C49/620/sprockets%2Fbb842440fcf2c28d7724692111470446 +0 -0
  678. data/test/dummy/tmp/cache/assets/C4B/230/sprockets%2Fe7c23393245a2f45c1688e174720c044 +0 -0
  679. data/test/dummy/tmp/cache/assets/C4C/050/sprockets%2F97a2c4ac206474543a4b654e47170278 +0 -0
  680. data/test/dummy/tmp/cache/assets/C4C/650/sprockets%2F47b2d64d42241f728c294311c8d21765 +0 -0
  681. data/test/dummy/tmp/cache/assets/C50/970/sprockets%2F89093924837210142fbe53ea25a5296c +0 -0
  682. data/test/dummy/tmp/cache/assets/C54/A90/sprockets%2F68b18d0537309c046a27f3f02e846665 +0 -0
  683. data/test/dummy/tmp/cache/assets/C56/B40/sprockets%2F1f955a3f3214835d28e0550947544ef3 +0 -0
  684. data/test/dummy/tmp/cache/assets/C58/3B0/sprockets%2Fd09f04ca085203994685ff8b14616248 +0 -0
  685. data/test/dummy/tmp/cache/assets/C58/FC0/sprockets%2F941e427937eef488c1a46576523133a2 +0 -0
  686. data/test/dummy/tmp/cache/assets/C58/FD0/sprockets%2F57f5231943f48d91476fd853007b1b35 +0 -0
  687. data/test/dummy/tmp/cache/assets/C5E/2B0/sprockets%2Fbf0d1841586851e90065f6313e886a96 +0 -0
  688. data/test/dummy/tmp/cache/assets/C63/110/sprockets%2F73c968745f3699c9981b070a92a37b02 +0 -0
  689. data/test/dummy/tmp/cache/assets/C69/EB0/sprockets%2F059031a69f2ce31c504524471d1521eb +0 -0
  690. data/test/dummy/tmp/cache/assets/C6B/F40/sprockets%2Fc257c24502f5a60523167aa4e0661a83 +0 -0
  691. data/test/dummy/tmp/cache/assets/C6C/310/sprockets%2F1052028d12936b016fea13b515fc8806 +0 -0
  692. data/test/dummy/tmp/cache/assets/C6D/790/sprockets%2Fa3a24a406e171426160834581bb5a95e +0 -0
  693. data/test/dummy/tmp/cache/assets/C6F/C20/sprockets%2Fc3d12234ae140472e6482928fc77a010 +0 -0
  694. data/test/dummy/tmp/cache/assets/C71/080/sprockets%2F8763fca4757f09817422f8986390be58 +0 -0
  695. data/test/dummy/tmp/cache/assets/C72/480/sprockets%2F7a17a36d252b5076443fe3f40312b628 +0 -0
  696. data/test/dummy/tmp/cache/assets/C75/850/sprockets%2F22067df88e271fa9206f31119d1604a2 +0 -0
  697. data/test/dummy/tmp/cache/assets/C75/A30/sprockets%2Fc1777340fc22577de17d1310c829d203 +0 -0
  698. data/test/dummy/tmp/cache/assets/C76/140/sprockets%2F1c0d64340e13a68755330e7c6993e11a +0 -0
  699. data/test/dummy/tmp/cache/assets/C76/2F0/sprockets%2F207b3b1f1687453100995c262df2ad92 +0 -0
  700. data/test/dummy/tmp/cache/assets/C76/6B0/sprockets%2Fd201089413d0434f95216ddc91b813b9 +0 -0
  701. data/test/dummy/tmp/cache/assets/C76/B60/sprockets%2Fe34a8c4105968f604e2b480293c1240d +0 -0
  702. data/test/dummy/tmp/cache/assets/C78/AE0/sprockets%2Ffa346e6a94e122a55c4069c644571006 +0 -0
  703. data/test/dummy/tmp/cache/assets/C7A/7E0/sprockets%2F4d63f771501e1143330139edb6568cd6 +0 -0
  704. data/test/dummy/tmp/cache/assets/C7B/720/sprockets%2F821ebe0e0602a52c4154b26497f93864 +0 -0
  705. data/test/dummy/tmp/cache/assets/C7B/EC0/sprockets%2F3a1b095fc269441668290cb01179f90b +0 -0
  706. data/test/dummy/tmp/cache/assets/C7C/E40/sprockets%2F6704046639ccf03d5350a8882562cb1e +0 -0
  707. data/test/dummy/tmp/cache/assets/C7D/870/sprockets%2Fe5648066bb7f0360f106d0771797f1a0 +0 -0
  708. data/test/dummy/tmp/cache/assets/C7D/AC0/sprockets%2F7927fd1409b522d7f823a6361c8514a0 +0 -0
  709. data/test/dummy/tmp/cache/assets/C7D/C00/sprockets%2F2712631e1c8bf27884440a9a818a3f70 +0 -0
  710. data/test/dummy/tmp/cache/assets/C7D/E20/sprockets%2Fc8146d3e853310afc9a6651d98820033 +0 -0
  711. data/test/dummy/tmp/cache/assets/C80/7D0/sprockets%2F02c02880672e8c449809c2536b4e4ae4 +0 -0
  712. data/test/dummy/tmp/cache/assets/C81/950/sprockets%2Fa6850f257f4889661f807ab7a0101d16 +0 -0
  713. data/test/dummy/tmp/cache/assets/C81/AF0/sprockets%2F375e7715f62372371fba373323e4d28c +0 -0
  714. data/test/dummy/tmp/cache/assets/C82/6B0/sprockets%2F9708a2d0aac258177047ae7479f17208 +0 -0
  715. data/test/dummy/tmp/cache/assets/C84/8A0/sprockets%2Fbc21960379f7615fbf2509700e1c6278 +0 -0
  716. data/test/dummy/tmp/cache/assets/C85/EF0/sprockets%2Fc01f47407897149438bf3cb76a270b83 +0 -0
  717. data/test/dummy/tmp/cache/assets/C87/C40/sprockets%2F26e981c2094f4a58d2616952238c4ca7 +0 -0
  718. data/test/dummy/tmp/cache/assets/C8A/590/sprockets%2F5715384dc171b7958b8b194446a0c5f7 +0 -0
  719. data/test/dummy/tmp/cache/assets/C8A/9A0/sprockets%2Fc560c3846e32c448416c3758f6435fa7 +0 -0
  720. data/test/dummy/tmp/cache/assets/C8D/270/sprockets%2F23af40159d3146c88880d688643ce85a +0 -0
  721. data/test/dummy/tmp/cache/assets/C8D/DC0/sprockets%2F970e39e54f930627908c184c0c0d198d +0 -0
  722. data/test/dummy/tmp/cache/assets/C8E/690/sprockets%2F77ca911d740fc5565604575984c3c63f +0 -0
  723. data/test/dummy/tmp/cache/assets/C8E/970/sprockets%2F64112952397c3d6098740767debbef90 +0 -0
  724. data/test/dummy/tmp/cache/assets/C8F/020/sprockets%2F98794fb0d419b924531f32451d8c96e2 +0 -0
  725. data/test/dummy/tmp/cache/assets/C90/260/sprockets%2F9a8a10e77ca8397891e22f7c08390393 +0 -0
  726. data/test/dummy/tmp/cache/assets/C95/090/sprockets%2F94430d478572f5056553cc7a4ce98f84 +0 -0
  727. data/test/dummy/tmp/cache/assets/C95/480/sprockets%2F03478841395887e0bbd35727db7f43f9 +0 -0
  728. data/test/dummy/tmp/cache/assets/C98/B90/sprockets%2Fdf812b9995f9a0268053d85659d87a22 +0 -0
  729. data/test/dummy/tmp/cache/assets/C9B/FB0/sprockets%2Fc6979861fa39fc442d67c1586c951608 +0 -0
  730. data/test/dummy/tmp/cache/assets/C9D/D40/sprockets%2F2baf719a78a436f6578886f9f0321589 +0 -0
  731. data/test/dummy/tmp/cache/assets/C9E/080/sprockets%2Fa1670c0b29cb01d5c95134842b71428e +0 -0
  732. data/test/dummy/tmp/cache/assets/C9F/180/sprockets%2Fd5753ee4e1c602043f121a63a21b7929 +0 -0
  733. data/test/dummy/tmp/cache/assets/C9F/670/sprockets%2Fb2a33b4a6619309303861beb7b204d86 +0 -0
  734. data/test/dummy/tmp/cache/assets/C9F/A70/sprockets%2F410038970db000bd0df8164735e39b6b +0 -0
  735. data/test/dummy/tmp/cache/assets/CA0/200/sprockets%2Ffbd03fc52020251915284a5853d6a29b +0 -0
  736. data/test/dummy/tmp/cache/assets/CA0/2F0/sprockets%2F11cb49d59ba21115595a0b7d5614d165 +0 -0
  737. data/test/dummy/tmp/cache/assets/CA1/150/sprockets%2F21163d6f3c9530d21e8b6a5f225094a2 +0 -0
  738. data/test/dummy/tmp/cache/assets/CA1/260/sprockets%2F24d1f70b25419d53b16cf474328b106c +0 -0
  739. data/test/dummy/tmp/cache/assets/CA1/430/sprockets%2F183a5ead10b8c16887521169c25a0e41 +0 -0
  740. data/test/dummy/tmp/cache/assets/CA1/FB0/sprockets%2Fc60c900af814ae57025cb363b4248842 +0 -0
  741. data/test/dummy/tmp/cache/assets/CA2/970/sprockets%2F03048cf2419530cb16fc280d0d95850d +0 -0
  742. data/test/dummy/tmp/cache/assets/CA2/C00/sprockets%2F9a4243a2621b32b8c14f62878b80d41b +0 -0
  743. data/test/dummy/tmp/cache/assets/CA3/B60/sprockets%2F9e34421b27465ae7bb43104e2348b5e2 +0 -0
  744. data/test/dummy/tmp/cache/assets/CA4/210/sprockets%2F8e90ce1f015324bd09f761c200577d05 +0 -0
  745. data/test/dummy/tmp/cache/assets/CA4/E10/sprockets%2F4310f265a63cf3b52f6467a67c40e133 +0 -0
  746. data/test/dummy/tmp/cache/assets/CA4/E30/sprockets%2F3d73a1d4684deb495551035be8023a42 +0 -0
  747. data/test/dummy/tmp/cache/assets/CA5/A10/sprockets%2F88145120bdf0b15e89c2457181ec73a0 +0 -0
  748. data/test/dummy/tmp/cache/assets/CA6/560/sprockets%2F81489014c4449d9aba3fee003573150c +0 -0
  749. data/test/dummy/tmp/cache/assets/CA9/350/sprockets%2Fc85402b163892c69b910da717ccb7070 +0 -0
  750. data/test/dummy/tmp/cache/assets/CA9/8A0/sprockets%2Ffb6936125256940aee9212e175ab40d5 +0 -0
  751. data/test/dummy/tmp/cache/assets/CAA/EF0/sprockets%2Fdfcd08e2c912e599c10026f124692045 +0 -0
  752. data/test/dummy/tmp/cache/assets/CAB/5A0/sprockets%2F2400b439df2400520d059f5f97f76db4 +0 -0
  753. data/test/dummy/tmp/cache/assets/CAD/030/sprockets%2Fc565af3799566b844973fcf47c585796 +0 -0
  754. data/test/dummy/tmp/cache/assets/CAD/6B0/sprockets%2F00214f89d0b79a537c138f9d05419bd2 +0 -0
  755. data/test/dummy/tmp/cache/assets/CAE/7E0/sprockets%2F794828340e6ce5ea34c119aa4818a820 +0 -0
  756. data/test/dummy/tmp/cache/assets/CAE/DC0/sprockets%2F92d004f456f5bc540ee1d20166882f29 +0 -0
  757. data/test/dummy/tmp/cache/assets/CAF/8A0/sprockets%2Fd176c310bcd73272926735a9eca12994 +0 -0
  758. data/test/dummy/tmp/cache/assets/CB0/D90/sprockets%2F4d262b0c7b3fd1948e495061a754564c +0 -0
  759. data/test/dummy/tmp/cache/assets/CB1/290/sprockets%2F5ff5268c663edec25694005a34138c42 +0 -0
  760. data/test/dummy/tmp/cache/assets/CB1/CE0/sprockets%2Fe60f18194ca87aa6965a543377e1d312 +0 -0
  761. data/test/dummy/tmp/cache/assets/CB1/D60/sprockets%2Fa0e7cb0bf434b0592722f91f69057864 +0 -0
  762. data/test/dummy/tmp/cache/assets/CB2/DA0/sprockets%2F993bc59d1167cbe6b4623d5874222b60 +0 -0
  763. data/test/dummy/tmp/cache/assets/CB2/DC0/sprockets%2Fa0fa4e463758f4335b166b4938ce6242 +0 -0
  764. data/test/dummy/tmp/cache/assets/CB3/4A0/sprockets%2Fbb9103242f461947785a56f73b7c52ae +0 -0
  765. data/test/dummy/tmp/cache/assets/CB4/2A0/sprockets%2F66af1045036b448809782ed595be0ad6 +0 -0
  766. data/test/dummy/tmp/cache/assets/CB5/8D0/sprockets%2F7682a96fc8a95540a291bff1822015d7 +0 -0
  767. data/test/dummy/tmp/cache/assets/CB5/C50/sprockets%2F29b01c56582276472596d0f8bc1e9d1c +0 -0
  768. data/test/dummy/tmp/cache/assets/CB5/FA0/sprockets%2Ff5533a865ca40618366b48d81455dde3 +0 -0
  769. data/test/dummy/tmp/cache/assets/CB6/110/sprockets%2Fa2efe87014e245955867b8b5760ab280 +0 -0
  770. data/test/dummy/tmp/cache/assets/CB6/840/sprockets%2Fa39ecb12678f1652a2542c75ca473897 +0 -0
  771. data/test/dummy/tmp/cache/assets/CB6/A90/sprockets%2F76e12d51f22fc7245074b5026787fe9b +0 -0
  772. data/test/dummy/tmp/cache/assets/CB7/070/sprockets%2F20142a0511d0cbf006290cd790ba0f28 +0 -0
  773. data/test/dummy/tmp/cache/assets/CB7/730/sprockets%2F821fea94576058e621dc8c97131d613e +0 -0
  774. data/test/dummy/tmp/cache/assets/CB8/290/sprockets%2F2430b4427d5e41e868f6782a7d8c5f03 +0 -0
  775. data/test/dummy/tmp/cache/assets/CB8/620/sprockets%2F635209129dc8db616dfc65a5846285c3 +0 -0
  776. data/test/dummy/tmp/cache/assets/CB9/030/sprockets%2Fa90e77528d941f587b920398a03da44c +0 -0
  777. data/test/dummy/tmp/cache/assets/CB9/6B0/sprockets%2Fd82f9fd70e39265347eed48b15252314 +0 -0
  778. data/test/dummy/tmp/cache/assets/CB9/AE0/sprockets%2Fc3553e3e6741439fd4a45658f206f17d +0 -0
  779. data/test/dummy/tmp/cache/assets/CB9/EC0/sprockets%2Fe598c1399ecc80d200671b7090174f9e +0 -0
  780. data/test/dummy/tmp/cache/assets/CBB/0C0/sprockets%2F1328ebe19e07138eb454c13f699547b8 +0 -0
  781. data/test/dummy/tmp/cache/assets/CBB/3E0/sprockets%2F49fea4f989d31c41d53f19127e627008 +0 -0
  782. data/test/dummy/tmp/cache/assets/CBD/3C0/sprockets%2F5885f4a1aa606b46a497b5f97395e450 +0 -0
  783. data/test/dummy/tmp/cache/assets/CBD/800/sprockets%2F2762aa263cf846341e803d7495eeb959 +0 -0
  784. data/test/dummy/tmp/cache/assets/CBE/100/sprockets%2F8a7d7501e3853709f723eddf365035f8 +0 -0
  785. data/test/dummy/tmp/cache/assets/CC0/4C0/sprockets%2F268199406a3d37df6a9e5f561b439c46 +0 -0
  786. data/test/dummy/tmp/cache/assets/CC1/E30/sprockets%2F573cf1953cd9ff793aa38191a3587417 +0 -0
  787. data/test/dummy/tmp/cache/assets/CC3/C50/sprockets%2F55f33d846deee95546027cc4974362b7 +0 -0
  788. data/test/dummy/tmp/cache/assets/CC3/FE0/sprockets%2F34958a1997a5b090f760906ace58f5d7 +0 -0
  789. data/test/dummy/tmp/cache/assets/CC4/000/sprockets%2F728a4d72e3163d39d6c18492a77d7f77 +0 -0
  790. data/test/dummy/tmp/cache/assets/CC4/DC0/sprockets%2F7905d79f00ab9594da97a9e71d218196 +0 -0
  791. data/test/dummy/tmp/cache/assets/CC5/650/sprockets%2Ff8829579c3299160bfb12f49eae86702 +0 -0
  792. data/test/dummy/tmp/cache/assets/CC5/B70/sprockets%2Fa8a390f184309cdf18ce7299186815e9 +0 -0
  793. data/test/dummy/tmp/cache/assets/CC6/200/sprockets%2F29833f86e3f2d1f69671bfd593f03285 +0 -0
  794. data/test/dummy/tmp/cache/assets/CC6/2E0/sprockets%2F59c69872075fdeddb7415771760b7a76 +0 -0
  795. data/test/dummy/tmp/cache/assets/CC6/E40/sprockets%2F878c668ea3348a6b36f78fd8e5216440 +0 -0
  796. data/test/dummy/tmp/cache/assets/CC6/FF0/sprockets%2F6f0125f107d2cc11407af150ea13479d +0 -0
  797. data/test/dummy/tmp/cache/assets/CC8/030/sprockets%2F03126385510ccbac3058cee402d9b318 +0 -0
  798. data/test/dummy/tmp/cache/assets/CC8/660/sprockets%2Fa2ac894529de4959f2013b8d769993e2 +0 -0
  799. data/test/dummy/tmp/cache/assets/CC9/7F0/sprockets%2F2d607f27e953c9946ddf934f953c1058 +0 -0
  800. data/test/dummy/tmp/cache/assets/CCA/3E0/sprockets%2F6cb270301396d4ae1d4751be2e3d1730 +0 -0
  801. data/test/dummy/tmp/cache/assets/CCB/370/sprockets%2F5fa5b3041150df5fae120868635023be +0 -0
  802. data/test/dummy/tmp/cache/assets/CCB/9D0/sprockets%2F07b5f6d94791700c1f2afa73a3110f02 +0 -0
  803. data/test/dummy/tmp/cache/assets/CCB/B70/sprockets%2F69c2f3999528dc33f3db458864674af1 +0 -0
  804. data/test/dummy/tmp/cache/assets/CCC/590/sprockets%2Ff367ff8ba47450339d939c8329bd6981 +0 -0
  805. data/test/dummy/tmp/cache/assets/CCC/BD0/sprockets%2F4b178d6b060b95a0df43427a5113c0d7 +0 -0
  806. data/test/dummy/tmp/cache/assets/CCE/990/sprockets%2F40d48492f5a402e533c3aff1d134236b +0 -0
  807. data/test/dummy/tmp/cache/assets/CCE/A00/sprockets%2Fd6d008fb404404b2df575ec03f325361 +0 -0
  808. data/test/dummy/tmp/cache/assets/CCF/720/sprockets%2F24b233fe1c38cf0423108356fa3e529a +0 -0
  809. data/test/dummy/tmp/cache/assets/CCF/BA0/sprockets%2F70f8333bf3f98829b761a93e7a92f966 +0 -0
  810. data/test/dummy/tmp/cache/assets/CD0/7E0/sprockets%2Fcf05167df91a5db0c305159c41326c53 +0 -0
  811. data/test/dummy/tmp/cache/assets/CD1/0D0/sprockets%2F60811cc22b8d47ea5428dd1324c5a734 +0 -0
  812. data/test/dummy/tmp/cache/assets/CD1/660/sprockets%2Fd4d143a86e0209903576f08e4dda0a30 +0 -0
  813. data/test/dummy/tmp/cache/assets/CD1/C70/sprockets%2F3b4743392eb69a611d0ec30c1990f3a2 +0 -0
  814. data/test/dummy/tmp/cache/assets/CD2/7D0/sprockets%2F9e390f792d29706357d29e8a176f96cf +0 -0
  815. data/test/dummy/tmp/cache/assets/CD3/F20/sprockets%2F3c8e81ac877a1bb3884cd016167213a1 +0 -0
  816. data/test/dummy/tmp/cache/assets/CD4/2B0/sprockets%2F16e4cf1935bc65a98133d3417d15b1d0 +0 -0
  817. data/test/dummy/tmp/cache/assets/CD5/660/sprockets%2F0d9f2205132f4395245624aad196affb +0 -0
  818. data/test/dummy/tmp/cache/assets/CD5/E00/sprockets%2Fdf9027be61905960b2b2b1442b9e62a4 +0 -0
  819. data/test/dummy/tmp/cache/assets/CD6/570/sprockets%2Fac32e6004b8e321866118fd8e91005cf +0 -0
  820. data/test/dummy/tmp/cache/assets/CD6/670/sprockets%2Fd70c95bc23151521d524c027d995cd3e +0 -0
  821. data/test/dummy/tmp/cache/assets/CD7/7D0/sprockets%2F3b089bcaa223b0f894270485b123d97d +0 -0
  822. data/test/dummy/tmp/cache/assets/CD7/C30/sprockets%2F74f1278997de668e0999818b0f5f25fa +0 -0
  823. data/test/dummy/tmp/cache/assets/CD7/C70/sprockets%2F3df412c4ef7765057082c54b2160cdd4 +0 -0
  824. data/test/dummy/tmp/cache/assets/CD8/2C0/sprockets%2F9a85a3d0cd4b7b7503512fc796b45114 +0 -0
  825. data/test/dummy/tmp/cache/assets/CD8/6D0/sprockets%2F14eb1204415e05b0f6259a9b83f67c4f +0 -0
  826. data/test/dummy/tmp/cache/assets/CD8/C50/sprockets%2F24a232380906f7b67e3d24374addc82b +0 -0
  827. data/test/dummy/tmp/cache/assets/CD8/CD0/sprockets%2F0694c2303fea9d50a175b42fd941b727 +0 -0
  828. data/test/dummy/tmp/cache/assets/CD8/FE0/sprockets%2Fc7d3b2ee7b659128f0d024ae75161362 +0 -0
  829. data/test/dummy/tmp/cache/assets/CD9/5D0/sprockets%2Fd9720571f2423fa71ed077ad2f290b36 +0 -0
  830. data/test/dummy/tmp/cache/assets/CD9/770/sprockets%2Fc21e1599a9c45b20b3443f0e73e490c6 +0 -0
  831. data/test/dummy/tmp/cache/assets/CD9/B10/sprockets%2F294f09681f11092abd7e4c54a2a76b07 +0 -0
  832. data/test/dummy/tmp/cache/assets/CDA/2A0/sprockets%2F27ed85fa31b725f321d658360d10e72e +0 -0
  833. data/test/dummy/tmp/cache/assets/CDA/3F0/sprockets%2F34425722001aec4465e3e8fc9d0c38c8 +0 -0
  834. data/test/dummy/tmp/cache/assets/CDB/240/sprockets%2Fb48b8310de6a5a17e4e309923452c8b5 +0 -0
  835. data/test/dummy/tmp/cache/assets/CDB/AB0/sprockets%2F2030ba553249f5ef6c5bf980c12c5736 +0 -0
  836. data/test/dummy/tmp/cache/assets/CDC/1D0/sprockets%2F706f9f3eba40ce7429300472e9f6a321 +0 -0
  837. data/test/dummy/tmp/cache/assets/CDC/830/sprockets%2Fbe2365ed7f324292a3358e122d3c8f16 +0 -0
  838. data/test/dummy/tmp/cache/assets/CDC/C50/sprockets%2Fa6b30fd25737732ec068a0ac8359f255 +0 -0
  839. data/test/dummy/tmp/cache/assets/CDC/D20/sprockets%2F8a48a585006247290fdb1dc59f27eb11 +0 -0
  840. data/test/dummy/tmp/cache/assets/CDC/D50/sprockets%2F6732c9b33041a8e54acfd2885c55532b +0 -0
  841. data/test/dummy/tmp/cache/assets/CDD/1C0/sprockets%2Fe26f29c99d576e3ee9c746915909767d +0 -0
  842. data/test/dummy/tmp/cache/assets/CDD/5E0/sprockets%2F57d2f52089d2eb75918a910d2ca1b554 +0 -0
  843. data/test/dummy/tmp/cache/assets/CDD/710/sprockets%2F975c50fd5ca30d27572fc258b13c1368 +0 -0
  844. data/test/dummy/tmp/cache/assets/CDD/AA0/sprockets%2Fc13727d57b9af7a1754940dc713d0d17 +0 -0
  845. data/test/dummy/tmp/cache/assets/CDD/C80/sprockets%2Fa6c15376b7caa23300632f88787e48ba +0 -0
  846. data/test/dummy/tmp/cache/assets/CDD/D70/sprockets%2F061ada1194efb117568a81057d9cf349 +0 -0
  847. data/test/dummy/tmp/cache/assets/CDF/370/sprockets%2F86b9d86e55641e1707162f4212bace4c +0 -0
  848. data/test/dummy/tmp/cache/assets/CDF/560/sprockets%2F8e106e27b03a69d93685c2aee1a66245 +0 -0
  849. data/test/dummy/tmp/cache/assets/CDF/5C0/sprockets%2Fb31e92bf2c749c1cf1b736b905816355 +0 -0
  850. data/test/dummy/tmp/cache/assets/CDF/AA0/sprockets%2F99be3d39064f40cb77823a0f7d2b6241 +0 -0
  851. data/test/dummy/tmp/cache/assets/CDF/E60/sprockets%2F1fee08179f19a22b46cd5800a89a6551 +0 -0
  852. data/test/dummy/tmp/cache/assets/CE1/C70/sprockets%2F817e1841b28bbb825d3041b7ff13988c +0 -0
  853. data/test/dummy/tmp/cache/assets/CE1/D10/sprockets%2Fe1e212786f9631820b8ef35b06ce537a +0 -0
  854. data/test/dummy/tmp/cache/assets/CE2/490/sprockets%2Ffe227615ab72b54040fe0ad98a888771 +0 -0
  855. data/test/dummy/tmp/cache/assets/CE3/2A0/sprockets%2F5bea23987a4a993d04a94e70d4d82334 +0 -0
  856. data/test/dummy/tmp/cache/assets/CE3/3F0/sprockets%2Fd38c41f298204e76e180087753baeab8 +0 -0
  857. data/test/dummy/tmp/cache/assets/CE3/9F0/sprockets%2Fa4fe1895a510793f159535fcf3fd0080 +0 -0
  858. data/test/dummy/tmp/cache/assets/CE3/BE0/sprockets%2F339906a8160c198e4ad6eb2f33564a7d +0 -0
  859. data/test/dummy/tmp/cache/assets/CE3/F50/sprockets%2F2acd33aa007898286b722159ddb47f86 +0 -0
  860. data/test/dummy/tmp/cache/assets/CE4/030/sprockets%2F29a287220a79f5a18493e8a520ffbc92 +0 -0
  861. data/test/dummy/tmp/cache/assets/CE4/2F0/sprockets%2F9db4b70644dcb543990c77621555bbf4 +0 -0
  862. data/test/dummy/tmp/cache/assets/CE4/980/sprockets%2F60753c8e8406b916fa3d388cab146e53 +0 -0
  863. data/test/dummy/tmp/cache/assets/CE5/8A0/sprockets%2Fa7753624ae6236766f7bc8cd64620c2d +0 -0
  864. data/test/dummy/tmp/cache/assets/CE5/BA0/sprockets%2F6b49565064aa8f9ae51d4a074f810f93 +0 -0
  865. data/test/dummy/tmp/cache/assets/CE5/E20/sprockets%2F730a585af55d9fc85b168391bf4a1057 +0 -0
  866. data/test/dummy/tmp/cache/assets/CE5/FE0/sprockets%2F29813f05338952d028c444d24eee5dee +0 -0
  867. data/test/dummy/tmp/cache/assets/CE6/2C0/sprockets%2Ffe4c39bd9f08f903872a6d1510618b09 +0 -0
  868. data/test/dummy/tmp/cache/assets/CE7/4E0/sprockets%2F4e47ca597b75951b0931d435be4aa984 +0 -0
  869. data/test/dummy/tmp/cache/assets/CE8/140/sprockets%2F05fe34d971769784dd1b3cc2673de215 +0 -0
  870. data/test/dummy/tmp/cache/assets/CE8/200/sprockets%2F50b67d9bf00fae9f00644246695ff464 +0 -0
  871. data/test/dummy/tmp/cache/assets/CE8/390/sprockets%2F82e58c1f0c62a976fd7078a21a8b9084 +0 -0
  872. data/test/dummy/tmp/cache/assets/CE8/F00/sprockets%2F430764e4051a4e97fdd866f24d7e3b53 +0 -0
  873. data/test/dummy/tmp/cache/assets/CE8/F20/sprockets%2Fd6f66b97f4d60511d2d79cde08803127 +0 -0
  874. data/test/dummy/tmp/cache/assets/CE8/FD0/sprockets%2Fe629bc56195844f132fc57731db970da +0 -0
  875. data/test/dummy/tmp/cache/assets/CE9/120/sprockets%2F85e72796fd5147fc3b51281a6a8a3f26 +0 -0
  876. data/test/dummy/tmp/cache/assets/CE9/1B0/sprockets%2Fd5957ba5a3f67c24c81b744740716c9e +0 -0
  877. data/test/dummy/tmp/cache/assets/CE9/630/sprockets%2Fb675d8ff067a52683161c773fdb4228c +0 -0
  878. data/test/dummy/tmp/cache/assets/CEA/000/sprockets%2F0226c2df8c1fd6b73f4579308e25d739 +0 -0
  879. data/test/dummy/tmp/cache/assets/CEA/0A0/sprockets%2F5f483d61dc19cd1e9244797c0d3b7266 +0 -0
  880. data/test/dummy/tmp/cache/assets/CEA/280/sprockets%2Fd5b90b2554e34f5e753983451b9a3e6e +0 -0
  881. data/test/dummy/tmp/cache/assets/CEC/7A0/sprockets%2F5c6bb7169f4d498b1082825bf593bb47 +0 -0
  882. data/test/dummy/tmp/cache/assets/CED/760/sprockets%2F4f8e9121d16e6fb3f819cc596a636613 +0 -0
  883. data/test/dummy/tmp/cache/assets/CED/9A0/sprockets%2F752755fd322ddd7070c897f1ac662f94 +0 -0
  884. data/test/dummy/tmp/cache/assets/CEE/450/sprockets%2F96f5d60952c3704fa5655b8918b4b9bb +0 -0
  885. data/test/dummy/tmp/cache/assets/CEF/480/sprockets%2Ff979e376408802959ca90b94bdb7d20a +0 -0
  886. data/test/dummy/tmp/cache/assets/CF1/080/sprockets%2Fdf94dea9527ae6744781fd470b273384 +0 -0
  887. data/test/dummy/tmp/cache/assets/CF4/3F0/sprockets%2F4736d9499ae845cb62b6d0ae5447b939 +0 -0
  888. data/test/dummy/tmp/cache/assets/CF5/390/sprockets%2Fa0eb0bd9a8b1f90433100506f50c82c6 +0 -0
  889. data/test/dummy/tmp/cache/assets/CF5/7A0/sprockets%2F30612db003a21add69f58b42e15a4a66 +0 -0
  890. data/test/dummy/tmp/cache/assets/CF7/BF0/sprockets%2F554a5f8795063d8fd8c6e561e824b1e8 +0 -0
  891. data/test/dummy/tmp/cache/assets/CF8/770/sprockets%2F849c0848e70e4d4e6be6385586bc19c6 +0 -0
  892. data/test/dummy/tmp/cache/assets/CF9/210/sprockets%2F5b31953c297de85a3892a7eb5f9777f1 +0 -0
  893. data/test/dummy/tmp/cache/assets/CFA/7C0/sprockets%2Ffb8696d8b68967af71a46ab5966123e5 +0 -0
  894. data/test/dummy/tmp/cache/assets/CFB/670/sprockets%2F67bddc46330005055d3d28c2dc24b0d9 +0 -0
  895. data/test/dummy/tmp/cache/assets/CFE/170/sprockets%2F311bf55e96c3e141e0a77034cf36b3c1 +0 -0
  896. data/test/dummy/tmp/cache/assets/CFF/270/sprockets%2F406e6bf7874bdf7c6266987d359fa545 +0 -0
  897. data/test/dummy/tmp/cache/assets/CFF/B60/sprockets%2F40c558722b84e02d2fc177acd020d26f +0 -0
  898. data/test/dummy/tmp/cache/assets/D00/0B0/sprockets%2F3733cec50b3b4153593e50ad60da6c57 +0 -0
  899. data/test/dummy/tmp/cache/assets/D00/BB0/sprockets%2F77ba2a28c550328a23fef9c74b1b2016 +0 -0
  900. data/test/dummy/tmp/cache/assets/D01/500/sprockets%2F600c6cd4c2f013e942a8334f327b2cf6 +0 -0
  901. data/test/dummy/tmp/cache/assets/D01/900/sprockets%2Fa1e28c17c5a22dc2df534dc025421888 +0 -0
  902. data/test/dummy/tmp/cache/assets/D02/0F0/sprockets%2F2c0ba17652354bdb34a2278bc57d59d3 +0 -0
  903. data/test/dummy/tmp/cache/assets/D02/6D0/sprockets%2Faac844134172df1238e57a4c82c1e5e1 +0 -0
  904. data/test/dummy/tmp/cache/assets/D02/820/sprockets%2F6e22ec4606b5a20f35d1ff123599e2a1 +0 -0
  905. data/test/dummy/tmp/cache/assets/D02/C40/sprockets%2F9443e181cb6eed05b38c3190c1c00d49 +0 -0
  906. data/test/dummy/tmp/cache/assets/D02/FB0/sprockets%2Ff44b240284f27c454a71013cf1cc67ed +0 -0
  907. data/test/dummy/tmp/cache/assets/D04/180/sprockets%2Fc23974aa0c53259ae50ae78d8a3a3605 +0 -0
  908. data/test/dummy/tmp/cache/assets/D04/5F0/sprockets%2F6cadb80225a0a82b12942f4e5146d77f +0 -0
  909. data/test/dummy/tmp/cache/assets/D04/7F0/sprockets%2Fd8d200d19413ab405bee251309cf969c +0 -0
  910. data/test/dummy/tmp/cache/assets/D05/2D0/sprockets%2F9656e025ba626405d0ef4bd64b542a3e +0 -0
  911. data/test/dummy/tmp/cache/assets/D05/500/sprockets%2F7f6941698cb0f58e2f4a467f775fb597 +0 -0
  912. data/test/dummy/tmp/cache/assets/D05/810/sprockets%2F1ede656f846f8768c6357769d29d3e4a +0 -0
  913. data/test/dummy/tmp/cache/assets/D06/E30/sprockets%2F0d1fe4b29bae2d497c16f403302076e9 +0 -0
  914. data/test/dummy/tmp/cache/assets/D07/5D0/sprockets%2F22119a913995edad10e0aee93653d0c7 +0 -0
  915. data/test/dummy/tmp/cache/assets/D07/8A0/sprockets%2F769d10f50c2bc67b130dde07b415977a +0 -0
  916. data/test/dummy/tmp/cache/assets/D08/150/sprockets%2F242c164e9e44faf1ec145d9a69070d30 +0 -0
  917. data/test/dummy/tmp/cache/assets/D08/770/sprockets%2F93550f16b6fe16f059f2cb4191b32af1 +0 -0
  918. data/test/dummy/tmp/cache/assets/D08/A10/sprockets%2Fd3b843d85cf4d78123475a38a4cca032 +0 -0
  919. data/test/dummy/tmp/cache/assets/D09/410/sprockets%2F790cf80b3e51783c5a6ca0811381bbd9 +0 -0
  920. data/test/dummy/tmp/cache/assets/D09/980/sprockets%2Fdd5011c5700e9ad5cf620d109790ff66 +0 -0
  921. data/test/dummy/tmp/cache/assets/D09/DE0/sprockets%2F29a155455a48c80f271c6eb5026ffcb2 +0 -0
  922. data/test/dummy/tmp/cache/assets/D0A/060/sprockets%2Fdb39590b115562a7f5814d55adde413d +0 -0
  923. data/test/dummy/tmp/cache/assets/D0A/680/sprockets%2F4e57352bac0417f076a3d1c9b6ef2088 +0 -0
  924. data/test/dummy/tmp/cache/assets/D0A/A20/sprockets%2Fbc40e54ee6ca1740dd8007d4d7019595 +0 -0
  925. data/test/dummy/tmp/cache/assets/D0B/510/sprockets%2Fb7a123f988364204afa414a6b1f9e8a5 +0 -0
  926. data/test/dummy/tmp/cache/assets/D0B/980/sprockets%2F07dbe0d6772cd21c5e2285520c587df3 +0 -0
  927. data/test/dummy/tmp/cache/assets/D0C/B00/sprockets%2Fc62c6219698b16ef1b028ea8ed35c033 +0 -0
  928. data/test/dummy/tmp/cache/assets/D0D/020/sprockets%2Ff57d0875e7d1b63a776219cd1abd4430 +0 -0
  929. data/test/dummy/tmp/cache/assets/D0D/8C0/sprockets%2Fcbf2a38ef6181a10793f6651fe5d8022 +0 -0
  930. data/test/dummy/tmp/cache/assets/D0D/C00/sprockets%2F53852a63b3c146839a8e2f54dfbf6a10 +0 -0
  931. data/test/dummy/tmp/cache/assets/D0E/430/sprockets%2F13fc71cac9e245d6caf62719782117b4 +0 -0
  932. data/test/dummy/tmp/cache/assets/D0E/690/sprockets%2Ff4730e60f81dfea9115f12de06e04667 +0 -0
  933. data/test/dummy/tmp/cache/assets/D0E/7C0/sprockets%2F6e9eea96162225a3aab317a09e33e876 +0 -0
  934. data/test/dummy/tmp/cache/assets/D0F/760/sprockets%2F4c301ecc2c8877d39b3a31193287cd9b +0 -0
  935. data/test/dummy/tmp/cache/assets/D0F/FD0/sprockets%2Fcfd66bf2be9d70197a5d5085109a5062 +0 -0
  936. data/test/dummy/tmp/cache/assets/D10/1D0/sprockets%2F52279d9d21a7df58c91d5340b73dd5b0 +0 -0
  937. data/test/dummy/tmp/cache/assets/D10/220/sprockets%2F88d1f830206a30934b7a2f94bda7f94b +0 -0
  938. data/test/dummy/tmp/cache/assets/D10/330/sprockets%2F7f7cf3a2e56266383a03cac8496ae045 +0 -0
  939. data/test/dummy/tmp/cache/assets/D10/530/sprockets%2Fff660e0fe9ab7942363c6c27e10263c5 +0 -0
  940. data/test/dummy/tmp/cache/assets/D10/610/sprockets%2F9d3a0221c48e82bf28c4147f13e8c5d8 +0 -0
  941. data/test/dummy/tmp/cache/assets/D10/BA0/sprockets%2Fdd8dc1bb89f056184d557b2a683223f1 +0 -0
  942. data/test/dummy/tmp/cache/assets/D12/520/sprockets%2Fa86f8493293773a720cf70c6becf110e +0 -0
  943. data/test/dummy/tmp/cache/assets/D12/C10/sprockets%2Fa2a036519a61832a4a877e6bb97c68de +0 -0
  944. data/test/dummy/tmp/cache/assets/D12/D60/sprockets%2F6ac774e46154dfb57be2f6e083208d51 +0 -0
  945. data/test/dummy/tmp/cache/assets/D13/AC0/sprockets%2F977e301577ec9e3a00562d5e33f0ff6a +0 -0
  946. data/test/dummy/tmp/cache/assets/D13/DF0/sprockets%2Fb5ca7c9d6dffa0a472d1420866805893 +0 -0
  947. data/test/dummy/tmp/cache/assets/D14/0E0/sprockets%2F0fb7f16804802ef4be6956b17dff1254 +0 -0
  948. data/test/dummy/tmp/cache/assets/D14/3C0/sprockets%2Fba286854d8220dc2cf47f5294fc5329a +0 -0
  949. data/test/dummy/tmp/cache/assets/D14/4D0/sprockets%2F255a54fd2997bdecf3a672561e14f307 +0 -0
  950. data/test/dummy/tmp/cache/assets/D14/920/sprockets%2F965d4d8180e422f88e28040eac2bf4f4 +0 -0
  951. data/test/dummy/tmp/cache/assets/D14/C40/sprockets%2Fbf54d40aed607b61df3566336988d15b +0 -0
  952. data/test/dummy/tmp/cache/assets/D14/E70/sprockets%2Fc007eb86107b35c6c8e950249828bcee +0 -0
  953. data/test/dummy/tmp/cache/assets/D15/050/sprockets%2F820f1d934d954b6b99169fa7216bcc0c +0 -0
  954. data/test/dummy/tmp/cache/assets/D15/1C0/sprockets%2Fda1f2f703eb6609650e9ac7f6708c724 +0 -0
  955. data/test/dummy/tmp/cache/assets/D15/690/sprockets%2Ff28e3e1b83616382aa782068eed71ef2 +0 -0
  956. data/test/dummy/tmp/cache/assets/D15/F40/sprockets%2F576b17f966768a1cdb0ce1e49237b4a4 +0 -0
  957. data/test/dummy/tmp/cache/assets/D16/050/sprockets%2F1f9395b7b5d9cc2a032c42ba9729f188 +0 -0
  958. data/test/dummy/tmp/cache/assets/D16/250/sprockets%2F0f8a465784c71c337d9c5961f11cca4f +0 -0
  959. data/test/dummy/tmp/cache/assets/D16/2B0/sprockets%2F9ee2638a8417c8e55d2d9b0ab300947f +0 -0
  960. data/test/dummy/tmp/cache/assets/D16/930/sprockets%2F1c06f48de8d3819531d5d11f2d088ff4 +0 -0
  961. data/test/dummy/tmp/cache/assets/D16/B40/sprockets%2Ffb159c9be6f30068043f92e0ab3f6857 +0 -0
  962. data/test/dummy/tmp/cache/assets/D17/F10/sprockets%2F9234640d69b0ca49bc292595f29d1fbf +0 -0
  963. data/test/dummy/tmp/cache/assets/D19/190/sprockets%2F906b6dd82fe1f502fe36c13756b8b288 +0 -0
  964. data/test/dummy/tmp/cache/assets/D1A/270/sprockets%2F5f7ae9c6bd0454b4d37a83767f8a2336 +0 -0
  965. data/test/dummy/tmp/cache/assets/D1A/850/sprockets%2F47454d31b988dd2674890f1c6cfcc3c2 +0 -0
  966. data/test/dummy/tmp/cache/assets/D1B/240/sprockets%2Fc8ea449d50537d4b4867645acc76f1d4 +0 -0
  967. data/test/dummy/tmp/cache/assets/D1B/410/sprockets%2F608db8f6904ace27ca14e96f9584a271 +0 -0
  968. data/test/dummy/tmp/cache/assets/D1C/350/sprockets%2Fbcb5a3522785d5af4609969c3f16c4e9 +0 -0
  969. data/test/dummy/tmp/cache/assets/D1C/7D0/sprockets%2Ffcaef48203f274c9022979d66cdd5761 +0 -0
  970. data/test/dummy/tmp/cache/assets/D1C/BE0/sprockets%2F9ab18579e9e51d07b3d746eb39d027c5 +0 -0
  971. data/test/dummy/tmp/cache/assets/D1C/EE0/sprockets%2Ff12340d7f0399dfa57b48791853ec9ba +0 -0
  972. data/test/dummy/tmp/cache/assets/D1D/0C0/sprockets%2Ff61378ce55c3f8329592b45fb15c9f0c +0 -0
  973. data/test/dummy/tmp/cache/assets/D1D/6D0/sprockets%2F02cdb068bd169f122b47a20bb20e05c4 +0 -0
  974. data/test/dummy/tmp/cache/assets/D1D/9A0/sprockets%2F5846ec16d54ef6fb9a7852451a24c57e +0 -0
  975. data/test/dummy/tmp/cache/assets/D1E/370/sprockets%2F77995f5614d5babf94e32718a05e9bf0 +0 -0
  976. data/test/dummy/tmp/cache/assets/D1E/580/sprockets%2F1e7317490a6cce8aa8e399f4d7d64552 +0 -0
  977. data/test/dummy/tmp/cache/assets/D1F/6D0/sprockets%2F725c4fa3df346c837966db9a46a25f47 +0 -0
  978. data/test/dummy/tmp/cache/assets/D20/160/sprockets%2F3c9878e0967c3920f1cc666cea09f09b +0 -0
  979. data/test/dummy/tmp/cache/assets/D20/AB0/sprockets%2Fda897bdbbb238984a80758d3a52f8951 +0 -0
  980. data/test/dummy/tmp/cache/assets/D21/3F0/sprockets%2F5d55289baff6579aaf24988b0dd25517 +0 -0
  981. data/test/dummy/tmp/cache/assets/D21/8A0/sprockets%2F626b731d9e9921a47d263e65fe8ae65d +0 -0
  982. data/test/dummy/tmp/cache/assets/D21/C30/sprockets%2F0066015dccca5c488f2986d8e9f59a65 +0 -0
  983. data/test/dummy/tmp/cache/assets/D22/8B0/sprockets%2Ff9742ee32f669795aa43c95f5551a2ce +0 -0
  984. data/test/dummy/tmp/cache/assets/D23/280/sprockets%2F1e99b3a947580c2ed37d4f736bf5566d +0 -0
  985. data/test/dummy/tmp/cache/assets/D23/4E0/sprockets%2F870c063e9ef88f8a665b055a34be488d +0 -0
  986. data/test/dummy/tmp/cache/assets/D23/B10/sprockets%2F306f09cc0eaa37a66d1d171a9411ce10 +0 -0
  987. data/test/dummy/tmp/cache/assets/D24/8D0/sprockets%2Fc8ac73fd5048d9fb945461355eff5564 +0 -0
  988. data/test/dummy/tmp/cache/assets/D25/C00/sprockets%2Fb0687345f7c88bcf0e909c427bf628c9 +0 -0
  989. data/test/dummy/tmp/cache/assets/D26/620/sprockets%2F6f2d2e0ffd30fc1742c8d00f164300b2 +0 -0
  990. data/test/dummy/tmp/cache/assets/D27/690/sprockets%2F27a15a0dac7444330f14e70bb40ff45e +0 -0
  991. data/test/dummy/tmp/cache/assets/D27/690/sprockets%2Fa3a6f32b8c0df1565c0a05218fd63a50 +0 -0
  992. data/test/dummy/tmp/cache/assets/D28/1C0/sprockets%2Fd24e224b1ca657115c81e231bfba518e +0 -0
  993. data/test/dummy/tmp/cache/assets/D28/9B0/sprockets%2F5d574609b56dd2dbc9e5173d49e965d8 +0 -0
  994. data/test/dummy/tmp/cache/assets/D28/A00/sprockets%2F70c6a6ffd2140f5b3e2ba6b1a7370252 +0 -0
  995. data/test/dummy/tmp/cache/assets/D29/EC0/sprockets%2Fa02efcd37502f44f0126fc241a8e290a +0 -0
  996. data/test/dummy/tmp/cache/assets/D2A/440/sprockets%2Ff312d991b84ec7ee7bc9ec7647958270 +0 -0
  997. data/test/dummy/tmp/cache/assets/D2A/8F0/sprockets%2Fb750d324f7ad56bc84e694fa9c799593 +0 -0
  998. data/test/dummy/tmp/cache/assets/D2A/B00/sprockets%2F0d99e114e864890c781f8b54c9efd6c5 +0 -0
  999. data/test/dummy/tmp/cache/assets/D2A/BC0/sprockets%2Fa3731b0ddae8c49ea5a2327360186b1b +0 -0
  1000. data/test/dummy/tmp/cache/assets/D2B/190/sprockets%2F8921bfcea7bcce26116813f7003ad140 +0 -0
  1001. data/test/dummy/tmp/cache/assets/D2C/7F0/sprockets%2F42496fe275b38f59bb93d1e967f5a49d +0 -0
  1002. data/test/dummy/tmp/cache/assets/D2D/3B0/sprockets%2Fdd4a548e507c03dbf3aa328405c440b8 +0 -0
  1003. data/test/dummy/tmp/cache/assets/D2D/450/sprockets%2Fa8ba4d54b2c181815ecc5d5032b16d82 +0 -0
  1004. data/test/dummy/tmp/cache/assets/D2D/C80/sprockets%2F43e518ae9ac05130abce156b7a5525e4 +0 -0
  1005. data/test/dummy/tmp/cache/assets/D2D/E20/sprockets%2Fb418f337a60fbfd754111a7b2283c1cc +0 -0
  1006. data/test/dummy/tmp/cache/assets/D2E/E60/sprockets%2Fe13ab4d3e16ba0f18b3629a0fa653098 +0 -0
  1007. data/test/dummy/tmp/cache/assets/D2E/FE0/sprockets%2Ffa132c2a5a3f84423d46f6b45290bb4c +0 -0
  1008. data/test/dummy/tmp/cache/assets/D2F/000/sprockets%2F5ca393a9c7c0c6b1b511d1b48c5138e3 +0 -0
  1009. data/test/dummy/tmp/cache/assets/D2F/280/sprockets%2Fcc258b590fc2b5147aa4d841bce34404 +0 -0
  1010. data/test/dummy/tmp/cache/assets/D2F/550/sprockets%2F27d2a7a21ca620d552ad5b3a469ce287 +0 -0
  1011. data/test/dummy/tmp/cache/assets/D30/E70/sprockets%2F2a1084b3fdd66724a5241ec3f6e70c2c +0 -0
  1012. data/test/dummy/tmp/cache/assets/D31/580/sprockets%2F93e0de2c0b522651aed176083ccb8d35 +0 -0
  1013. data/test/dummy/tmp/cache/assets/D31/5D0/sprockets%2F05f10cb83e80bb2f68510fec3846bf01 +0 -0
  1014. data/test/dummy/tmp/cache/assets/D32/030/sprockets%2F4ed4c1992a22a60d40f509c3b3bfb619 +0 -0
  1015. data/test/dummy/tmp/cache/assets/D32/960/sprockets%2F2008afcab237a725b3de364432d86bf6 +0 -0
  1016. data/test/dummy/tmp/cache/assets/D32/980/sprockets%2F1da108456928fcd66a226aa47d2bc23d +0 -0
  1017. data/test/dummy/tmp/cache/assets/D32/990/sprockets%2F2ee06a770a48963bbabccfe911054163 +0 -0
  1018. data/test/dummy/tmp/cache/assets/D32/BD0/sprockets%2Fcf34067d191acab2fa610887f9137aa0 +0 -0
  1019. data/test/dummy/tmp/cache/assets/D33/7E0/sprockets%2F069ebd818385e57eb6f44f6759b8d67d +0 -0
  1020. data/test/dummy/tmp/cache/assets/D33/FD0/sprockets%2F62d071f1de1bb35736d14554fad5ec07 +0 -0
  1021. data/test/dummy/tmp/cache/assets/D34/1C0/sprockets%2F4a0fd80f5980c69fc46d11bd0021f15e +0 -0
  1022. data/test/dummy/tmp/cache/assets/D35/280/sprockets%2F86432622a2409351574fd5eadb3cdbec +0 -0
  1023. data/test/dummy/tmp/cache/assets/D35/5B0/sprockets%2Fa96c3456c6f1f53ef1e0432710d7b1ae +0 -0
  1024. data/test/dummy/tmp/cache/assets/D35/6E0/sprockets%2Fd479de40b5ca3b4320606387bf6a50cf +0 -0
  1025. data/test/dummy/tmp/cache/assets/D36/970/sprockets%2F613e7935e43ca8fc4db19033fb505b1c +0 -0
  1026. data/test/dummy/tmp/cache/assets/D37/E10/sprockets%2Fc03e77cea4a0d205f7479e6251d1a75c +0 -0
  1027. data/test/dummy/tmp/cache/assets/D39/5A0/sprockets%2F327e7decd19f890d2f5204ef125041bc +0 -0
  1028. data/test/dummy/tmp/cache/assets/D39/680/sprockets%2F12070b959a65f5acfd6dbab489352e20 +0 -0
  1029. data/test/dummy/tmp/cache/assets/D39/B10/sprockets%2F9214ceeae0aedd48c732271f94175b41 +0 -0
  1030. data/test/dummy/tmp/cache/assets/D39/ED0/sprockets%2F5a206f5ad5cfd866a16f87c315830b0c +0 -0
  1031. data/test/dummy/tmp/cache/assets/D3A/1D0/sprockets%2Fd7454f2304191bb2d85b4e34cc573cfe +0 -0
  1032. data/test/dummy/tmp/cache/assets/D3A/9C0/sprockets%2Ff51ea96963110ff570e3bc4d3d0ed741 +0 -0
  1033. data/test/dummy/tmp/cache/assets/D3A/A70/sprockets%2F69f8e7327aafcc7c8dd43b1162b12234 +0 -0
  1034. data/test/dummy/tmp/cache/assets/D3B/340/sprockets%2F3640a0ecf60034c63d655b9e7d0d8f8a +0 -0
  1035. data/test/dummy/tmp/cache/assets/D3C/130/sprockets%2Fa1c7d908282d0968accee5e60b73b441 +0 -0
  1036. data/test/dummy/tmp/cache/assets/D3C/5D0/sprockets%2F8c4467e86136eda23a30e63be4f18bd2 +0 -0
  1037. data/test/dummy/tmp/cache/assets/D3C/B30/sprockets%2F4a2bf801768841d7bf0fa8eb474ac712 +0 -0
  1038. data/test/dummy/tmp/cache/assets/D3D/810/sprockets%2Fb7ab88a4c1659e7acdd0238b13d95065 +0 -0
  1039. data/test/dummy/tmp/cache/assets/D3E/010/sprockets%2F1c6e1c37654206dbe2c037d65f7fd55d +0 -0
  1040. data/test/dummy/tmp/cache/assets/D3E/310/sprockets%2F3259177cc0c40b33519fadeede556c38 +0 -0
  1041. data/test/dummy/tmp/cache/assets/D3E/4A0/sprockets%2F974d2195038c944e25a1ce280bacfdf4 +0 -0
  1042. data/test/dummy/tmp/cache/assets/D3E/AB0/sprockets%2Fe128c2d98548dd02639d29ba027adfc2 +0 -0
  1043. data/test/dummy/tmp/cache/assets/D3F/4F0/sprockets%2F4db1fa452a7c549240e4478a5f278ecb +0 -0
  1044. data/test/dummy/tmp/cache/assets/D3F/710/sprockets%2F725c3e393c4ab6be4e91e326b0733f9c +0 -0
  1045. data/test/dummy/tmp/cache/assets/D3F/850/sprockets%2F34d80409f076d45e0a8912aedf367aec +0 -0
  1046. data/test/dummy/tmp/cache/assets/D3F/A30/sprockets%2Fc10a5624d99094a75a2f4d308e2f9dfa +0 -0
  1047. data/test/dummy/tmp/cache/assets/D3F/FB0/sprockets%2F6cff9b4007bd32a816d5b7a8d9f27303 +0 -0
  1048. data/test/dummy/tmp/cache/assets/D40/0B0/sprockets%2Fd2d52fe53d1f298420cdf171385e6cf2 +0 -0
  1049. data/test/dummy/tmp/cache/assets/D40/1A0/sprockets%2F10097c31a8b4fcdac4496548ce78eb42 +0 -0
  1050. data/test/dummy/tmp/cache/assets/D40/280/sprockets%2Fb71c94900758a1ee72eb3e712b75dfc4 +0 -0
  1051. data/test/dummy/tmp/cache/assets/D40/620/sprockets%2F0f3d148f095d5f9f029801c39c2f3acc +0 -0
  1052. data/test/dummy/tmp/cache/assets/D40/660/sprockets%2F00b8ae875b125ef35f304c8c8d8ec930 +0 -0
  1053. data/test/dummy/tmp/cache/assets/D40/9A0/sprockets%2Fd34761c33ca768e3a49a39dc1db455c7 +0 -0
  1054. data/test/dummy/tmp/cache/assets/D41/140/sprockets%2Faa479f48ed71b61b5e0013c6bc2f5789 +0 -0
  1055. data/test/dummy/tmp/cache/assets/D41/E00/sprockets%2F59ead0253463d7686749bcda14a26afd +0 -0
  1056. data/test/dummy/tmp/cache/assets/D42/070/sprockets%2Fd09dc4aba1b955e389545a771ca726d6 +0 -0
  1057. data/test/dummy/tmp/cache/assets/D42/570/sprockets%2Fbe52c899a74e44b6cad242b78752af22 +0 -0
  1058. data/test/dummy/tmp/cache/assets/D42/5E0/sprockets%2F2ba53d4c2e73ef90999ee4062c73dd30 +0 -0
  1059. data/test/dummy/tmp/cache/assets/D42/BB0/sprockets%2Fb48143c1558469bc73e5daf1efa7562b +0 -0
  1060. data/test/dummy/tmp/cache/assets/D42/E10/sprockets%2F0263f69dd4c85d5ef8ae211f416f603d +0 -0
  1061. data/test/dummy/tmp/cache/assets/D43/110/sprockets%2Fbc264df2f4d136c884ea9df36202349e +0 -0
  1062. data/test/dummy/tmp/cache/assets/D44/620/sprockets%2Ff9016ae6e54ede4979ca002c2703fa89 +0 -0
  1063. data/test/dummy/tmp/cache/assets/D44/D80/sprockets%2Fe4aad65716db3b1792eec515819fe148 +0 -0
  1064. data/test/dummy/tmp/cache/assets/D45/0C0/sprockets%2F7e0ef33be170ff83c9549f61327efa03 +0 -0
  1065. data/test/dummy/tmp/cache/assets/D45/650/sprockets%2Faf6e402610cf49945b35c8b5efd1826f +0 -0
  1066. data/test/dummy/tmp/cache/assets/D45/680/sprockets%2F37587b87d0e4d248a561ca4a9ada5d58 +0 -0
  1067. data/test/dummy/tmp/cache/assets/D45/B10/sprockets%2Fe1e9d029d8de7fe2d32c059325ef4127 +0 -0
  1068. data/test/dummy/tmp/cache/assets/D45/C80/sprockets%2F8799183ad4d5b9013a28fae421c6d9eb +0 -0
  1069. data/test/dummy/tmp/cache/assets/D46/190/sprockets%2F5ef52ed8c45ad02239f9558ef0c8a801 +0 -0
  1070. data/test/dummy/tmp/cache/assets/D46/E20/sprockets%2F7f351e414e91656ff5b9eb04a6275ead +0 -0
  1071. data/test/dummy/tmp/cache/assets/D46/E50/sprockets%2Fda288492725b6ba6289a76c34f8abed0 +0 -0
  1072. data/test/dummy/tmp/cache/assets/D47/A10/sprockets%2F3ebc074f3752856dee88a308d1d638da +0 -0
  1073. data/test/dummy/tmp/cache/assets/D47/AF0/sprockets%2F83370fc28b1d79e8d72a4fa4e0d194b9 +0 -0
  1074. data/test/dummy/tmp/cache/assets/D49/5B0/sprockets%2Fcb68d52da3b7e6ac4d77362992b435d8 +0 -0
  1075. data/test/dummy/tmp/cache/assets/D49/A00/sprockets%2F7ded9ff607debe16984d3a831421654a +0 -0
  1076. data/test/dummy/tmp/cache/assets/D4A/1D0/sprockets%2F0d932eb8b78c61249f4d5e27bf0f387b +0 -0
  1077. data/test/dummy/tmp/cache/assets/D4A/2C0/sprockets%2Fd0e6d8402f96c16ce4517e083f689dbb +0 -0
  1078. data/test/dummy/tmp/cache/assets/D4B/0F0/sprockets%2F844d1c69ec2785074f1ffe80feac6307 +0 -0
  1079. data/test/dummy/tmp/cache/assets/D4B/300/sprockets%2F797bb46db3da2f3628f84e4f3d0d9426 +0 -0
  1080. data/test/dummy/tmp/cache/assets/D4B/A00/sprockets%2F54fd929b2ef8525f51e6a8be0ad36817 +0 -0
  1081. data/test/dummy/tmp/cache/assets/D4C/E00/sprockets%2F8677c72a9f224ea1cba659d6a89901ed +0 -0
  1082. data/test/dummy/tmp/cache/assets/D4C/E80/sprockets%2F98370ffcd58f4603ef398c61fb72c0d1 +0 -0
  1083. data/test/dummy/tmp/cache/assets/D4C/F90/sprockets%2F43b9e4352cc1f7a655fc3df7538c709f +0 -0
  1084. data/test/dummy/tmp/cache/assets/D4D/150/sprockets%2Fbbe7af80f4891617ccd4670a87376af6 +0 -0
  1085. data/test/dummy/tmp/cache/assets/D4D/6B0/sprockets%2F584dedd4c44bba7ce97409b61569148e +0 -0
  1086. data/test/dummy/tmp/cache/assets/D4E/4A0/sprockets%2F9e2275ca84766e60e374c7dbbb9a97e0 +0 -0
  1087. data/test/dummy/tmp/cache/assets/D4F/150/sprockets%2F4de840f827f7bb7c32a87674bac678d3 +0 -0
  1088. data/test/dummy/tmp/cache/assets/D4F/590/sprockets%2F63c853804ff249d0e3a09ff37ed77ec5 +0 -0
  1089. data/test/dummy/tmp/cache/assets/D4F/A00/sprockets%2Ff4124b4cf0c274b32c72b92a3c03a3cb +0 -0
  1090. data/test/dummy/tmp/cache/assets/D4F/FB0/sprockets%2Fca20e6eb23ed9896276d6234fa955e7e +0 -0
  1091. data/test/dummy/tmp/cache/assets/D50/0A0/sprockets%2Fa6d68cf1e5c807169f84b56566eeee10 +0 -0
  1092. data/test/dummy/tmp/cache/assets/D50/1B0/sprockets%2F8ffb560df41fe4a297eb69cf52892513 +0 -0
  1093. data/test/dummy/tmp/cache/assets/D50/540/sprockets%2Fad846f1891d7062f6f60cf681fc7de62 +0 -0
  1094. data/test/dummy/tmp/cache/assets/D50/A70/sprockets%2Fa208fab6bac5993c1d14611438aa1a1a +0 -0
  1095. data/test/dummy/tmp/cache/assets/D50/A70/sprockets%2Fc8118d589febd77f0be84b65c055b665 +0 -0
  1096. data/test/dummy/tmp/cache/assets/D50/CB0/sprockets%2F4f27f68146979f0cd1ce95a4b735bbe6 +0 -0
  1097. data/test/dummy/tmp/cache/assets/D51/0E0/sprockets%2F508a2de7b9a6af12b7f76a87876627fc +0 -0
  1098. data/test/dummy/tmp/cache/assets/D51/850/sprockets%2F73d9a6f49f9ad7ab10371f999f0d822c +0 -0
  1099. data/test/dummy/tmp/cache/assets/D52/450/sprockets%2F0a3e7cf32c285f8c9955585aaff2e765 +0 -0
  1100. data/test/dummy/tmp/cache/assets/D52/650/sprockets%2F3e4e654eca896ccf627994ff4014cc64 +0 -0
  1101. data/test/dummy/tmp/cache/assets/D53/960/sprockets%2F9c0dc258558bb12d1188cf77757ff8fb +0 -0
  1102. data/test/dummy/tmp/cache/assets/D53/F70/sprockets%2F60836b48e9d63cee38fbec34f837c643 +0 -0
  1103. data/test/dummy/tmp/cache/assets/D55/1F0/sprockets%2F43cc11b1d8d19f1be51301b5f9a3a42d +0 -0
  1104. data/test/dummy/tmp/cache/assets/D55/B30/sprockets%2Fb37c19a00eb723aee5d2226b1db5505d +0 -0
  1105. data/test/dummy/tmp/cache/assets/D56/530/sprockets%2F97856af23f6cec888615d8137da1ffb5 +0 -0
  1106. data/test/dummy/tmp/cache/assets/D56/870/sprockets%2F53f9885475c8b8b3ca779bd7a0d99c0b +0 -0
  1107. data/test/dummy/tmp/cache/assets/D56/950/sprockets%2F6f1685a221c3a61acc4d580fcabb5106 +0 -0
  1108. data/test/dummy/tmp/cache/assets/D57/240/sprockets%2F22b217bb8c40d5c328d5b071c4c2fcf1 +0 -0
  1109. data/test/dummy/tmp/cache/assets/D57/7C0/sprockets%2F1812fc85fc78e3c8171098b996f2fcde +0 -0
  1110. data/test/dummy/tmp/cache/assets/D59/870/sprockets%2Fd2d9bb106815a331e6ba701faca32e59 +0 -0
  1111. data/test/dummy/tmp/cache/assets/D5A/820/sprockets%2F26302ba3c0a8e0762a220bd672efbef9 +0 -0
  1112. data/test/dummy/tmp/cache/assets/D5A/870/sprockets%2Fc5e5de478ad943df467a847b848de562 +0 -0
  1113. data/test/dummy/tmp/cache/assets/D5A/9A0/sprockets%2F442faf3bd44c107a62ef5310ac18a66d +0 -0
  1114. data/test/dummy/tmp/cache/assets/D5B/180/sprockets%2F12d5aad0f5a4b488585e11a193da6a1c +0 -0
  1115. data/test/dummy/tmp/cache/assets/D5B/A60/sprockets%2F816aec61d14f2af6a4cd02be400b4784 +0 -0
  1116. data/test/dummy/tmp/cache/assets/D5C/FE0/sprockets%2Fd60ce66a0952a06b2e0e620a6f3a59cb +0 -0
  1117. data/test/dummy/tmp/cache/assets/D5D/BA0/sprockets%2F31670cc3b4127dfa0aa8223be6865bed +0 -0
  1118. data/test/dummy/tmp/cache/assets/D5E/640/sprockets%2Febfd05301a3ee3861e1b7c436c42b4f4 +0 -0
  1119. data/test/dummy/tmp/cache/assets/D5E/930/sprockets%2F0edd4c0c6728defd7562f10c044f2a02 +0 -0
  1120. data/test/dummy/tmp/cache/assets/D5F/0E0/sprockets%2F9a71774b13a4dd37bcb4a0dd446a26d3 +0 -0
  1121. data/test/dummy/tmp/cache/assets/D5F/250/sprockets%2Fb238ccdb4aff13b36307e71f319334bb +0 -0
  1122. data/test/dummy/tmp/cache/assets/D60/1E0/sprockets%2F0e0599c3bcfe600e6b7bf1d9c172a121 +0 -0
  1123. data/test/dummy/tmp/cache/assets/D60/650/sprockets%2Fd69d97469c9e1dbda61b7956fe33a968 +0 -0
  1124. data/test/dummy/tmp/cache/assets/D60/A10/sprockets%2Ffab303c37d2152b48e86f641ee4d1b0c +0 -0
  1125. data/test/dummy/tmp/cache/assets/D60/BD0/sprockets%2F190c2ffc620c42c7afddc0f0555290b7 +0 -0
  1126. data/test/dummy/tmp/cache/assets/D61/220/sprockets%2F370faa6c6d33c3a7c9171ad0bb9647b2 +0 -0
  1127. data/test/dummy/tmp/cache/assets/D61/3D0/sprockets%2F53d45fbb14e913381c1551abcba6ad79 +0 -0
  1128. data/test/dummy/tmp/cache/assets/D61/880/sprockets%2F71b81dc2f7d907ba0d10b574c14fa36f +0 -0
  1129. data/test/dummy/tmp/cache/assets/D61/980/sprockets%2Fcdd020599eb357378bc81cbc2ad424b0 +0 -0
  1130. data/test/dummy/tmp/cache/assets/D61/F40/sprockets%2F9f77e16f876692ade17c52bf6cb958b9 +0 -0
  1131. data/test/dummy/tmp/cache/assets/D62/120/sprockets%2F3c45336edb0a92f42feabe1c510847f2 +0 -0
  1132. data/test/dummy/tmp/cache/assets/D62/BE0/sprockets%2F0152cc0084a7aeaf763600eae8e8d84a +0 -0
  1133. data/test/dummy/tmp/cache/assets/D63/F40/sprockets%2Fcdd856c38bb25ca10b768135d3bc084c +0 -0
  1134. data/test/dummy/tmp/cache/assets/D64/230/sprockets%2Fd1090ad2274e9c9c461a3335da8f0cde +0 -0
  1135. data/test/dummy/tmp/cache/assets/D64/3D0/sprockets%2F62226828ff03e13ea4bed0e503ce57ea +0 -0
  1136. data/test/dummy/tmp/cache/assets/D64/DC0/sprockets%2Ff8c5f5c526d31882930ee0c2aa2c8aa1 +0 -0
  1137. data/test/dummy/tmp/cache/assets/D65/020/sprockets%2F190f56bd0fe0aab8306a81a3484f75dd +0 -0
  1138. data/test/dummy/tmp/cache/assets/D65/160/sprockets%2Ffe22c9e0074b563e5a7d20fd0e75e1c2 +0 -0
  1139. data/test/dummy/tmp/cache/assets/D65/7F0/sprockets%2Fc10da6dd4d43166ce3c03409c0e79ee6 +0 -0
  1140. data/test/dummy/tmp/cache/assets/D65/AE0/sprockets%2Ffdb0eb414bc1e891142da6b62790ed38 +0 -0
  1141. data/test/dummy/tmp/cache/assets/D65/C40/sprockets%2F99ca4a06ab35157f8ed4f0ff51b1133c +0 -0
  1142. data/test/dummy/tmp/cache/assets/D65/E50/sprockets%2Fd93da14d25e0f1c43647c1a7ee51e70e +0 -0
  1143. data/test/dummy/tmp/cache/assets/D66/730/sprockets%2F9e0149c86ef27bd0d430da23e35bfd32 +0 -0
  1144. data/test/dummy/tmp/cache/assets/D66/FD0/sprockets%2F389ca2ed5642082cfba0ee7821f821ab +0 -0
  1145. data/test/dummy/tmp/cache/assets/D67/350/sprockets%2Fdc9530bc412e1d6489b8a3fd0a549bd1 +0 -0
  1146. data/test/dummy/tmp/cache/assets/D67/A30/sprockets%2Fe85aadf4f84bc091db2596d4b01702e3 +0 -0
  1147. data/test/dummy/tmp/cache/assets/D68/4D0/sprockets%2Fb5d76958b044bc7c00ebb414b9cab927 +0 -0
  1148. data/test/dummy/tmp/cache/assets/D69/020/sprockets%2F515c19c79abe2b7f0fc244bd25305e8d +0 -0
  1149. data/test/dummy/tmp/cache/assets/D69/5D0/sprockets%2F52558166bcc91e3cb21bd50fd76ec37a +0 -0
  1150. data/test/dummy/tmp/cache/assets/D69/680/sprockets%2F6ce6c7a1f23d635a20ded2d9390b83c5 +0 -0
  1151. data/test/dummy/tmp/cache/assets/D69/A80/sprockets%2F3a512d72c5288bbee98f2c2c322eef40 +0 -0
  1152. data/test/dummy/tmp/cache/assets/D6A/320/sprockets%2F91ff6c61a8b0793410dcbdf9d2b0942b +0 -0
  1153. data/test/dummy/tmp/cache/assets/D6A/980/sprockets%2Ffd5e40ecf366b149f10912de65ada237 +0 -0
  1154. data/test/dummy/tmp/cache/assets/D6A/F30/sprockets%2F39fdb1d2c0e914412ee264a8c7c924af +0 -0
  1155. data/test/dummy/tmp/cache/assets/D6C/B60/sprockets%2Fc783cbf78d7eae8cd0c723c41e231109 +0 -0
  1156. data/test/dummy/tmp/cache/assets/D6D/350/sprockets%2F64785abd066a95c7eab3fdbb9d501506 +0 -0
  1157. data/test/dummy/tmp/cache/assets/D6D/4C0/sprockets%2F58655bde9ec7c133f2cb3f1622dd28d0 +0 -0
  1158. data/test/dummy/tmp/cache/assets/D6D/800/sprockets%2F0203086dc58dc9f17f1a07be7fa485eb +0 -0
  1159. data/test/dummy/tmp/cache/assets/D6D/BB0/sprockets%2F441e6aa638bca68b878941fbaf190a0e +0 -0
  1160. data/test/dummy/tmp/cache/assets/D6E/2A0/sprockets%2F03d17b340fb9bfb96b4ea3b363849c8c +0 -0
  1161. data/test/dummy/tmp/cache/assets/D6E/8B0/sprockets%2F04997da1743423e3bde3df6acd319d7b +0 -0
  1162. data/test/dummy/tmp/cache/assets/D6E/950/sprockets%2Fd223cb5e86bd8ad40dbc66446622e6f5 +0 -0
  1163. data/test/dummy/tmp/cache/assets/D6F/0B0/sprockets%2F4b05d8c7399a122b6ef34628c37dceac +0 -0
  1164. data/test/dummy/tmp/cache/assets/D6F/320/sprockets%2Fe35de59d66e41bc4725c01c6ac5b629e +0 -0
  1165. data/test/dummy/tmp/cache/assets/D6F/650/sprockets%2F3904fad3d035a3648931e9f7fb0e4dea +0 -0
  1166. data/test/dummy/tmp/cache/assets/D6F/700/sprockets%2F3620b8afd3d9b58babd42165554fc3f9 +0 -0
  1167. data/test/dummy/tmp/cache/assets/D70/0D0/sprockets%2Ff09fa4e5d715cd863e5034b7b72b4ee2 +0 -0
  1168. data/test/dummy/tmp/cache/assets/D70/330/sprockets%2F6153c4b5e1f9986ed06448aa4e7bccb0 +0 -0
  1169. data/test/dummy/tmp/cache/assets/D70/820/sprockets%2Ffae870c1c0e77ea97d58fbd20440465c +0 -0
  1170. data/test/dummy/tmp/cache/assets/D70/BF0/sprockets%2F0f3792677c0ab0f2b93fb1a1eaf7887d +0 -0
  1171. data/test/dummy/tmp/cache/assets/D71/D20/sprockets%2F7cb49b60108c88a3ed9264ddda7b3a39 +0 -0
  1172. data/test/dummy/tmp/cache/assets/D71/F90/sprockets%2F35061e6dd5d9cde1b98db7d04084d0d8 +0 -0
  1173. data/test/dummy/tmp/cache/assets/D72/1A0/sprockets%2F410c3f6c72a55b8ef8ddfea4552b9516 +0 -0
  1174. data/test/dummy/tmp/cache/assets/D72/270/sprockets%2F1e79d738f4e8ad90c3b231cabcd77318 +0 -0
  1175. data/test/dummy/tmp/cache/assets/D72/410/sprockets%2F11979bbd7835dab1bf8e0a62c77ce472 +0 -0
  1176. data/test/dummy/tmp/cache/assets/D73/310/sprockets%2F105b3d4e9ce85c750ff6e9f337a7a05a +0 -0
  1177. data/test/dummy/tmp/cache/assets/D73/730/sprockets%2Fb9ac32937da67ff2b416dc98a63ac490 +0 -0
  1178. data/test/dummy/tmp/cache/assets/D74/6D0/sprockets%2F8d9d45f098fba5e0e531f96a0653aba6 +0 -0
  1179. data/test/dummy/tmp/cache/assets/D74/710/sprockets%2Fd37e7a68d51378e4e61a0caf49e13de4 +0 -0
  1180. data/test/dummy/tmp/cache/assets/D75/7E0/sprockets%2F70932e6bea85a0e9e9c2a91c7451eee4 +0 -0
  1181. data/test/dummy/tmp/cache/assets/D75/C60/sprockets%2F85a3fcd918d553d00d7b674863efc1ea +0 -0
  1182. data/test/dummy/tmp/cache/assets/D75/C70/sprockets%2F55a3dc3a742a9a89c16e2c71693cd9de +0 -0
  1183. data/test/dummy/tmp/cache/assets/D75/DE0/sprockets%2Fecd1f7ce3208f7f020a685d816f72c6f +0 -0
  1184. data/test/dummy/tmp/cache/assets/D76/570/sprockets%2F92b832c3059ea4e88d2b67bdcc5915fb +0 -0
  1185. data/test/dummy/tmp/cache/assets/D76/BF0/sprockets%2F8df269f086a3f34fdb0b9a3c09c6049e +0 -0
  1186. data/test/dummy/tmp/cache/assets/D76/D50/sprockets%2F7f14465f3b0bdf1a91f4b8a95e7d43d8 +0 -0
  1187. data/test/dummy/tmp/cache/assets/D77/040/sprockets%2Ff247e5f40d8b4786fae85bb13c883a4a +0 -0
  1188. data/test/dummy/tmp/cache/assets/D77/B50/sprockets%2F8363e57c3433ca775ac6f4b9e1e0be8f +0 -0
  1189. data/test/dummy/tmp/cache/assets/D77/F40/sprockets%2F1f90795ff6d3c7ad010b4ea38928e9cb +0 -0
  1190. data/test/dummy/tmp/cache/assets/D78/B00/sprockets%2F062fe8c9e8ace815ad1e229c676a219f +0 -0
  1191. data/test/dummy/tmp/cache/assets/D78/B10/sprockets%2F1ff16042259ede2ee4664e183cf79ead +0 -0
  1192. data/test/dummy/tmp/cache/assets/D78/BA0/sprockets%2Fc8c08dd357dce5fc5431e9731f2a8e36 +0 -0
  1193. data/test/dummy/tmp/cache/assets/D78/D20/sprockets%2F161a8f9916c399c8cbe4df0d8fb82a11 +0 -0
  1194. data/test/dummy/tmp/cache/assets/D79/010/sprockets%2F671f0cdced78d4aa1f8b06e7453793f5 +0 -0
  1195. data/test/dummy/tmp/cache/assets/D79/420/sprockets%2F525a40cf98dc966f62bc7cf27bc5a564 +0 -0
  1196. data/test/dummy/tmp/cache/assets/D7A/2D0/sprockets%2F94e531f86e75b46b3c7fe11ee440d6fd +0 -0
  1197. data/test/dummy/tmp/cache/assets/D7A/A10/sprockets%2F4e75c71a9f65d59c55c1dc3b64bae486 +0 -0
  1198. data/test/dummy/tmp/cache/assets/D7A/CF0/sprockets%2F6abfff0e11af85fb99410d7f403768d8 +0 -0
  1199. data/test/dummy/tmp/cache/assets/D7A/F90/sprockets%2Fb284bac1409cf8da64f89e59450c8d5c +0 -0
  1200. data/test/dummy/tmp/cache/assets/D7C/390/sprockets%2Fd7b071ae9f49d6dcef53b978314f24d3 +0 -0
  1201. data/test/dummy/tmp/cache/assets/D7C/DD0/sprockets%2F63ae8f81ace247ef4d63bb783ac44886 +0 -0
  1202. data/test/dummy/tmp/cache/assets/D7C/F00/sprockets%2Fd6109ba1a79aaa83bba1e51e372a2b20 +0 -0
  1203. data/test/dummy/tmp/cache/assets/D7D/060/sprockets%2F81ef86311ee9c61682c08eb97db6da9a +0 -0
  1204. data/test/dummy/tmp/cache/assets/D7E/510/sprockets%2Fca236fdfc85f7b6c63875a8b4f41c638 +0 -0
  1205. data/test/dummy/tmp/cache/assets/D7E/850/sprockets%2Ff486c9f55e1d446fb93aee02a4fd5548 +0 -0
  1206. data/test/dummy/tmp/cache/assets/D7E/BD0/sprockets%2Faca7ebc091f967a4e5b8719c94165ee6 +0 -0
  1207. data/test/dummy/tmp/cache/assets/D80/190/sprockets%2F589ca16b1a8c8998495a58fb4bd3a5cd +0 -0
  1208. data/test/dummy/tmp/cache/assets/D80/730/sprockets%2F945d794f55bdcf8703d8e523aadc258f +0 -0
  1209. data/test/dummy/tmp/cache/assets/D80/A20/sprockets%2Feefc3489dc8ec4d3c348d9805a45b375 +0 -0
  1210. data/test/dummy/tmp/cache/assets/D80/CE0/sprockets%2Fceb0d83a564c4a44497d9c48c919eff4 +0 -0
  1211. data/test/dummy/tmp/cache/assets/D81/570/sprockets%2Ff9053fc2281ecf6f69b6f8b3a7b863e4 +0 -0
  1212. data/test/dummy/tmp/cache/assets/D82/610/sprockets%2Fb6ad52d0017bf26a6a13ced1f900e03f +0 -0
  1213. data/test/dummy/tmp/cache/assets/D82/C60/sprockets%2Fc221ff6cc5bdf9f78d6e792183e6d227 +0 -0
  1214. data/test/dummy/tmp/cache/assets/D83/4D0/sprockets%2Fb92cb6d4b120a4b0eb5c2310cb49a6d9 +0 -0
  1215. data/test/dummy/tmp/cache/assets/D83/530/sprockets%2F35434a7ac3a2d3d041f1fcb484b4eb1b +0 -0
  1216. data/test/dummy/tmp/cache/assets/D84/6F0/sprockets%2Fcc254b6f939747b5f7a727953ff4acfb +0 -0
  1217. data/test/dummy/tmp/cache/assets/D84/B70/sprockets%2Fb80c5e68acedc31a5aa52a52c0320b77 +0 -0
  1218. data/test/dummy/tmp/cache/assets/D85/670/sprockets%2Ffe6a29627ab687590e49bd3afb7884dd +0 -0
  1219. data/test/dummy/tmp/cache/assets/D85/810/sprockets%2F5e80ae94ff4dfe299e1557c3a37f0f58 +0 -0
  1220. data/test/dummy/tmp/cache/assets/D85/DA0/sprockets%2Fc2e1e1867daee15ab1bc1ec90234a360 +0 -0
  1221. data/test/dummy/tmp/cache/assets/D86/2E0/sprockets%2F8c0198089731cc8f80ddcfa599faa9d7 +0 -0
  1222. data/test/dummy/tmp/cache/assets/D86/360/sprockets%2Fdac7134a4350b2a50e7ea27df0156dbe +0 -0
  1223. data/test/dummy/tmp/cache/assets/D86/410/sprockets%2F204c4d2fb7b2f8a253e5cb2a1b196d1a +0 -0
  1224. data/test/dummy/tmp/cache/assets/D86/980/sprockets%2Fa0094c6c4cb00d9c7c25058b11fcaee1 +0 -0
  1225. data/test/dummy/tmp/cache/assets/D87/330/sprockets%2Fc32ddf367fe4fd8c9ee178b87553b356 +0 -0
  1226. data/test/dummy/tmp/cache/assets/D87/590/sprockets%2F057e0db227b0d2eea2e5d41219d26bfa +0 -0
  1227. data/test/dummy/tmp/cache/assets/D88/670/sprockets%2Fb55a88873969aad88d7a06bed968fbc0 +0 -0
  1228. data/test/dummy/tmp/cache/assets/D89/200/sprockets%2Fa888f8137663fdf977c6a7187aea8abb +0 -0
  1229. data/test/dummy/tmp/cache/assets/D89/B00/sprockets%2F51c8a4fc3fc6d4b4ae5666bbaa000272 +0 -0
  1230. data/test/dummy/tmp/cache/assets/D8A/1F0/sprockets%2Fa584778e1b83fba1e899d0eb9ed58a96 +0 -0
  1231. data/test/dummy/tmp/cache/assets/D8A/2C0/sprockets%2F9023ee258ac0b3afb7bf546bba8060a3 +0 -0
  1232. data/test/dummy/tmp/cache/assets/D8A/BA0/sprockets%2Ff25447f638ee98604dbc3c7ff5eac787 +0 -0
  1233. data/test/dummy/tmp/cache/assets/D8A/C00/sprockets%2F76e1ac1d5c2fabb44cef4910221d91f0 +0 -0
  1234. data/test/dummy/tmp/cache/assets/D8B/E00/sprockets%2F580a8725e6f86d83d493cbcfefd69d27 +0 -0
  1235. data/test/dummy/tmp/cache/assets/D8C/4B0/sprockets%2Fddca9303dcea152235c696bd23fc14c2 +0 -0
  1236. data/test/dummy/tmp/cache/assets/D8C/660/sprockets%2Fca11131ab889aad26644ae1ff94eb41a +0 -0
  1237. data/test/dummy/tmp/cache/assets/D8C/E50/sprockets%2Fa79bc162ae104d187ca49b4cdcb52d40 +0 -0
  1238. data/test/dummy/tmp/cache/assets/D8D/890/sprockets%2F351dbe7b0436abbe86cb8af5462b030e +0 -0
  1239. data/test/dummy/tmp/cache/assets/D8E/6D0/sprockets%2F11f02e2179c6e36d2a53e61b1a3beeef +0 -0
  1240. data/test/dummy/tmp/cache/assets/D8F/2C0/sprockets%2Feef1d8a352931bd39c211f0f30e6e2ac +0 -0
  1241. data/test/dummy/tmp/cache/assets/D90/9E0/sprockets%2Fa9ceedcc16170311b30c88da1ca368c9 +0 -0
  1242. data/test/dummy/tmp/cache/assets/D90/F50/sprockets%2F0f293f5b0f85c1a1fd48c2b0610cbcf8 +0 -0
  1243. data/test/dummy/tmp/cache/assets/D91/A80/sprockets%2F33e68918bcd0f1d2f3e74dfa100d42da +0 -0
  1244. data/test/dummy/tmp/cache/assets/D91/D40/sprockets%2F7a4af3978cd1dc0cb31dad052392a4e7 +0 -0
  1245. data/test/dummy/tmp/cache/assets/D93/180/sprockets%2F911e3c82316bd872e74b2ccbb5aa50ff +0 -0
  1246. data/test/dummy/tmp/cache/assets/D93/C00/sprockets%2Fd488319eaf212fb1a38bd4a3ae2b469a +0 -0
  1247. data/test/dummy/tmp/cache/assets/D94/4C0/sprockets%2Fa5c02c8ab2f99f10e2bcabf418546f25 +0 -0
  1248. data/test/dummy/tmp/cache/assets/D94/530/sprockets%2Fde7075de3200dc2c4eac4e1f761485bd +0 -0
  1249. data/test/dummy/tmp/cache/assets/D94/9F0/sprockets%2F1b1129cfc72e04e65b13edf34ceb496a +0 -0
  1250. data/test/dummy/tmp/cache/assets/D94/B10/sprockets%2Fbcfb028c273e438d5b2d60d430f8ad7b +0 -0
  1251. data/test/dummy/tmp/cache/assets/D94/C20/sprockets%2F7a101ec2d75abbc0dd7e508478a48ef0 +0 -0
  1252. data/test/dummy/tmp/cache/assets/D94/EC0/sprockets%2Fbd52d50da5c5eaf9a316a36d5c076f61 +0 -0
  1253. data/test/dummy/tmp/cache/assets/D95/350/sprockets%2F1f3d20dc63195f7f2dfe670eba6220cd +0 -0
  1254. data/test/dummy/tmp/cache/assets/D95/C40/sprockets%2F8afc3bf0557baa6f0a547b59061ed5c2 +0 -0
  1255. data/test/dummy/tmp/cache/assets/D96/3B0/sprockets%2Fb8ba9ecefe9a40e9364b646210c1bc23 +0 -0
  1256. data/test/dummy/tmp/cache/assets/D96/460/sprockets%2F5b5c02dc0a42e48ec921a28a9a8edf09 +0 -0
  1257. data/test/dummy/tmp/cache/assets/D97/010/sprockets%2Fb309aeaddf391f44fec1cb76e3131564 +0 -0
  1258. data/test/dummy/tmp/cache/assets/D97/980/sprockets%2Fb147432bbfe84eee5312dcd755f0e03e +0 -0
  1259. data/test/dummy/tmp/cache/assets/D97/BE0/sprockets%2F9340b16c8a74b4ec8857ba3ca5c2df2a +0 -0
  1260. data/test/dummy/tmp/cache/assets/D98/A70/sprockets%2Fc2b7a7570c7ce543b508ecb0ffdd9105 +0 -0
  1261. data/test/dummy/tmp/cache/assets/D9A/060/sprockets%2F5519910b3dedc05c9ac10acf470e98ee +0 -0
  1262. data/test/dummy/tmp/cache/assets/D9A/6F0/sprockets%2Ffe5d3eebd51fda4d6564f610217e170e +0 -0
  1263. data/test/dummy/tmp/cache/assets/D9A/F60/sprockets%2F3795c6bbf7d0e64b30bbb9f53d5804aa +0 -0
  1264. data/test/dummy/tmp/cache/assets/D9A/FD0/sprockets%2F83efda39f23ab1e659e140fc618a42cc +0 -0
  1265. data/test/dummy/tmp/cache/assets/D9B/2F0/sprockets%2F9fe27100bdcaabcf9846cb036f91d572 +0 -0
  1266. data/test/dummy/tmp/cache/assets/D9B/3B0/sprockets%2F7faed13fe306993b1ad1e784f7da004d +0 -0
  1267. data/test/dummy/tmp/cache/assets/D9B/4F0/sprockets%2F0d94a7210999a7c5b5da2ccaf92ca91d +0 -0
  1268. data/test/dummy/tmp/cache/assets/D9B/5B0/sprockets%2F45dd3f642b59a7c5b3ef5fdbb8d16021 +0 -0
  1269. data/test/dummy/tmp/cache/assets/D9B/E30/sprockets%2F5b5ca2d2218086be74ba495c6a8ebda9 +0 -0
  1270. data/test/dummy/tmp/cache/assets/D9C/AA0/sprockets%2Fa1396fb7f51c5bbfc6101729ad7e39da +0 -0
  1271. data/test/dummy/tmp/cache/assets/D9C/F10/sprockets%2Fcd6c0589a97bc00bf795fd0a0da74f15 +0 -0
  1272. data/test/dummy/tmp/cache/assets/D9D/1B0/sprockets%2F05b6f241ca68070e88fab18f7abbdf83 +0 -0
  1273. data/test/dummy/tmp/cache/assets/D9D/A80/sprockets%2F7b2d79acdbca2dc61ee55c837140d648 +0 -0
  1274. data/test/dummy/tmp/cache/assets/D9D/F70/sprockets%2F9e98ba43acde2a53f4473e116a3e75db +0 -0
  1275. data/test/dummy/tmp/cache/assets/D9E/5D0/sprockets%2Fe03864504ac3aec186f7b19a4af9eac9 +0 -0
  1276. data/test/dummy/tmp/cache/assets/D9E/870/sprockets%2F69c856a61e0c9b8c5c110e3d8fcacc36 +0 -0
  1277. data/test/dummy/tmp/cache/assets/DA0/A70/sprockets%2F86c966ab0c1c3d8fa213fa9fcc3820f9 +0 -0
  1278. data/test/dummy/tmp/cache/assets/DA0/CC0/sprockets%2Fce1324ffa47d1ec4f81b52ae656a5f86 +0 -0
  1279. data/test/dummy/tmp/cache/assets/DA0/F80/sprockets%2Fdf90f09e67bbee23244a0e5f729ab8d1 +0 -0
  1280. data/test/dummy/tmp/cache/assets/DA1/0B0/sprockets%2F36d9c1e3be67364c96da8fe2600bbf0f +0 -0
  1281. data/test/dummy/tmp/cache/assets/DA1/0B0/sprockets%2Ff5b17f9c4f24a11edebff34c149096e3 +0 -0
  1282. data/test/dummy/tmp/cache/assets/DA1/350/sprockets%2Fad69dbcd3078800eafd83c35ce6e1538 +0 -0
  1283. data/test/dummy/tmp/cache/assets/DA1/7B0/sprockets%2F1eaf1d2c98579ba25b5d723dfa2d693d +0 -0
  1284. data/test/dummy/tmp/cache/assets/DA1/970/sprockets%2Fbf8a889df2281a60ed6cbec40584c5a3 +0 -0
  1285. data/test/dummy/tmp/cache/assets/DA2/F50/sprockets%2F64c68dca163ed984760b6beba7ce5b24 +0 -0
  1286. data/test/dummy/tmp/cache/assets/DA3/960/sprockets%2Ff462ec2d8ab778da8b7364e2eea1453d +0 -0
  1287. data/test/dummy/tmp/cache/assets/DA3/C70/sprockets%2Fe11d250efc53ad89e9dac25d00988ef4 +0 -0
  1288. data/test/dummy/tmp/cache/assets/DA4/2C0/sprockets%2Ff3d9c4d5eb87c07442d700fd21ec9bd9 +0 -0
  1289. data/test/dummy/tmp/cache/assets/DA4/3A0/sprockets%2F5f87fca4333b3d3be75d846ad6744eab +0 -0
  1290. data/test/dummy/tmp/cache/assets/DA4/9B0/sprockets%2F9a2db0b2d4f7f5c02a67fee3f83584e5 +0 -0
  1291. data/test/dummy/tmp/cache/assets/DA4/D50/sprockets%2F229bc9d8bea3f22e268bc5a685e6dc52 +0 -0
  1292. data/test/dummy/tmp/cache/assets/DA5/D50/sprockets%2Feb9084eb3c96c230de7ce47a6e83ef31 +0 -0
  1293. data/test/dummy/tmp/cache/assets/DA6/1D0/sprockets%2Fac9a973c9a1dc7503e28e7ff68eaa234 +0 -0
  1294. data/test/dummy/tmp/cache/assets/DA6/FC0/sprockets%2Ff01be55d37ae55528dacf9e3bf65c583 +0 -0
  1295. data/test/dummy/tmp/cache/assets/DA7/830/sprockets%2F5f76428ad99efd1581b4b91cc1f1da6e +0 -0
  1296. data/test/dummy/tmp/cache/assets/DA7/970/sprockets%2F81f8c8b3ce9d1bfd5f33896c002cbf82 +0 -0
  1297. data/test/dummy/tmp/cache/assets/DA7/AA0/sprockets%2Fdcc7f1714594fdad718c4c6d5b518cf4 +0 -0
  1298. data/test/dummy/tmp/cache/assets/DA7/BC0/sprockets%2F4897daac4ae12adfc78760ac793a54e9 +0 -0
  1299. data/test/dummy/tmp/cache/assets/DA7/BD0/sprockets%2Fa5e7e05a11ec5bf7f68b2953b9fd507f +0 -0
  1300. data/test/dummy/tmp/cache/assets/DA8/960/sprockets%2Feada6e6381fc62dc368e3b6e05f697b3 +0 -0
  1301. data/test/dummy/tmp/cache/assets/DA9/030/sprockets%2Ffb94112f8d6154f78c3fa18b6f9dde0c +0 -0
  1302. data/test/dummy/tmp/cache/assets/DA9/870/sprockets%2F4efb8160f0ab5e3c6d9f26667bde3b88 +0 -0
  1303. data/test/dummy/tmp/cache/assets/DAA/280/sprockets%2Fb1b928cc15ad669e45b924e5fe617ede +0 -0
  1304. data/test/dummy/tmp/cache/assets/DAA/300/sprockets%2Fa63ffc606928545d5c68dfc45ea4afc4 +0 -0
  1305. data/test/dummy/tmp/cache/assets/DAA/350/sprockets%2F39c328c8550ee2e0a39dbfc92d925eff +0 -0
  1306. data/test/dummy/tmp/cache/assets/DAB/5C0/sprockets%2Fe0183ee232c79dd5fb1996841dffafb6 +0 -0
  1307. data/test/dummy/tmp/cache/assets/DAC/CB0/sprockets%2F7e46dca8f3c6f36d8c251fbdca144898 +0 -0
  1308. data/test/dummy/tmp/cache/assets/DAC/EE0/sprockets%2F747a0f5ae6e8fbbee76450c9d622b98b +0 -0
  1309. data/test/dummy/tmp/cache/assets/DAE/690/sprockets%2F45e34bb8844af4f2ede8c8a6e7765e1b +0 -0
  1310. data/test/dummy/tmp/cache/assets/DAE/940/sprockets%2Fe85b9dc8b8bb68801e32e09df59b2da8 +0 -0
  1311. data/test/dummy/tmp/cache/assets/DAE/D10/sprockets%2Fff0f2e187dd40943fc5672e3f7eac66f +0 -0
  1312. data/test/dummy/tmp/cache/assets/DB1/710/sprockets%2F80a2f98e5104baceb767e99fea7673fc +0 -0
  1313. data/test/dummy/tmp/cache/assets/DB6/DD0/sprockets%2F30dde5d8fa4257bedf99f1e657d934d7 +0 -0
  1314. data/test/dummy/tmp/cache/assets/DB6/E40/sprockets%2Fd34872593df77b4760eaceae98d78eda +0 -0
  1315. data/test/dummy/tmp/cache/assets/DB7/220/sprockets%2F2f9a57eeb18e9e7da174ce069299c5fd +0 -0
  1316. data/test/dummy/tmp/cache/assets/DB8/020/sprockets%2F8fe9e933e637b0dde67de1c7ff97a550 +0 -0
  1317. data/test/dummy/tmp/cache/assets/DB8/5E0/sprockets%2F7f67e1aeed28f5dbd2836f84c25e9e93 +0 -0
  1318. data/test/dummy/tmp/cache/assets/DB8/B60/sprockets%2Fab2954a1b4cfc4b0e2c66c352cb25a7d +0 -0
  1319. data/test/dummy/tmp/cache/assets/DBA/A20/sprockets%2F759cdaee13f68c98e48a59e0d34dd58f +0 -0
  1320. data/test/dummy/tmp/cache/assets/DBB/480/sprockets%2F48abb2bc119e084b0b8cdc5d1872c0be +0 -0
  1321. data/test/dummy/tmp/cache/assets/DBC/8D0/sprockets%2Ffc230cafbe156d070cdc4b6922d2b9a5 +0 -0
  1322. data/test/dummy/tmp/cache/assets/DBD/320/sprockets%2F2b65e932b8737db3cc451ab20c0efccb +0 -0
  1323. data/test/dummy/tmp/cache/assets/DBD/380/sprockets%2Fa310affe5dc17e1c208ba29c5c81c1f7 +0 -0
  1324. data/test/dummy/tmp/cache/assets/DBD/7E0/sprockets%2Fa3720fb80ef0d17bebb9cbfe407f1106 +0 -0
  1325. data/test/dummy/tmp/cache/assets/DC0/3F0/sprockets%2F9daae6a0cf920c744e1abbc4081b52f9 +0 -0
  1326. data/test/dummy/tmp/cache/assets/DC1/460/sprockets%2F2a63a229e7ed193a49fbbd0d0cb561dd +0 -0
  1327. data/test/dummy/tmp/cache/assets/DC1/B80/sprockets%2Facacb282d8ea59a00a5fd454b609a93c +0 -0
  1328. data/test/dummy/tmp/cache/assets/DC1/DA0/sprockets%2Fa1d2e51413b94cb2cffaf8c612dd971a +0 -0
  1329. data/test/dummy/tmp/cache/assets/DC5/920/sprockets%2F189afd04f90ca4d5be92fb09312a3deb +0 -0
  1330. data/test/dummy/tmp/cache/assets/DC6/F60/sprockets%2F46edc56bddf48f0d060e1ccef3440d25 +0 -0
  1331. data/test/dummy/tmp/cache/assets/DC7/4B0/sprockets%2F2e81ca666f3d4b86cef64e11f0cca52a +0 -0
  1332. data/test/dummy/tmp/cache/assets/DC7/680/sprockets%2Fd829a102cf914f54eaf0c3a8cd5b6e0f +0 -0
  1333. data/test/dummy/tmp/cache/assets/DC8/390/sprockets%2F0aad7ee75bde1854be0d53bb8e151c68 +0 -0
  1334. data/test/dummy/tmp/cache/assets/DC8/7B0/sprockets%2F2e3c3d4bb59426da50cd1c6df47ce37d +0 -0
  1335. data/test/dummy/tmp/cache/assets/DC9/FC0/sprockets%2F3a24d7f0ca926afa47cc0be08e9bc846 +0 -0
  1336. data/test/dummy/tmp/cache/assets/DCB/310/sprockets%2Fddd2b6caa0d201c7b567fa1ff56e9477 +0 -0
  1337. data/test/dummy/tmp/cache/assets/DCC/230/sprockets%2F4fbadc0d0eb4b1f637ee0e37c729857b +0 -0
  1338. data/test/dummy/tmp/cache/assets/DCC/E50/sprockets%2F6910e6b16bc8fea2827b0f5ff4ad4a6c +0 -0
  1339. data/test/dummy/tmp/cache/assets/DD0/DA0/sprockets%2F8136eeece3046ba40c48c36a8ecb77fe +0 -0
  1340. data/test/dummy/tmp/cache/assets/DD1/4F0/sprockets%2Fa23f4dc3298a9ff5c051c6573dedd2de +0 -0
  1341. data/test/dummy/tmp/cache/assets/DD1/8F0/sprockets%2F83f2e8ac11e34511bec0df8f9fce27f4 +0 -0
  1342. data/test/dummy/tmp/cache/assets/DD1/D30/sprockets%2F8255cd4bfaedb0685c977ea321fa7cf2 +0 -0
  1343. data/test/dummy/tmp/cache/assets/DD2/CB0/sprockets%2Fb6eeafc80775ee7a8f03670dbd24a90e +0 -0
  1344. data/test/dummy/tmp/cache/assets/DD3/A70/sprockets%2Fe4ad942ec54ff6e45633c615eaca49af +0 -0
  1345. data/test/dummy/tmp/cache/assets/DD4/0E0/sprockets%2F0cc6edb2467c3cfec1de97b8a270587e +0 -0
  1346. data/test/dummy/tmp/cache/assets/DD4/ED0/sprockets%2Fc802ee9056d8a9eda175ebb6dd4719ac +0 -0
  1347. data/test/dummy/tmp/cache/assets/DD6/180/sprockets%2Fc8e682fcdec36aa25b5c2c7f3b09955f +0 -0
  1348. data/test/dummy/tmp/cache/assets/DD6/750/sprockets%2Ff97a293f76a97e0c02c6dd8bfd41ba5e +0 -0
  1349. data/test/dummy/tmp/cache/assets/DD7/140/sprockets%2Fa76f26f3774fe26856fad3dc04daeed2 +0 -0
  1350. data/test/dummy/tmp/cache/assets/DD7/A40/sprockets%2Fd331fb0878fd8cefc6a644cb4d2a956e +0 -0
  1351. data/test/dummy/tmp/cache/assets/DD8/2D0/sprockets%2F1e9141c7b09fdc7edd69cfe2ab1596e5 +0 -0
  1352. data/test/dummy/tmp/cache/assets/DD9/360/sprockets%2F79d79f0eb57b05e2ddce9c07e2a6c66b +0 -0
  1353. data/test/dummy/tmp/cache/assets/DD9/4A0/sprockets%2Fbd5ee46629c52e17ef5d910ec7c2ede6 +0 -0
  1354. data/test/dummy/tmp/cache/assets/DD9/860/sprockets%2F6b8da6eba1fec2995d710cc99bf658a2 +0 -0
  1355. data/test/dummy/tmp/cache/assets/DD9/E30/sprockets%2Fc83d5941be7eaaafd26924ada767fd85 +0 -0
  1356. data/test/dummy/tmp/cache/assets/DD9/E60/sprockets%2Fc0d0cccb43be3ea072b0fae322a0873c +0 -0
  1357. data/test/dummy/tmp/cache/assets/DDA/7F0/sprockets%2F669aba5af9e9471a68f8dd9be640aa2c +0 -0
  1358. data/test/dummy/tmp/cache/assets/DDB/570/sprockets%2Ffcf2f12c56ce4df8779ab4832de75cd2 +0 -0
  1359. data/test/dummy/tmp/cache/assets/DDB/7D0/sprockets%2Ff6e99f11a89d9bb903e97e5d4ed0a1ba +0 -0
  1360. data/test/dummy/tmp/cache/assets/DDB/DD0/sprockets%2Fcfdbc8923bee60c577a19ffe7424f72c +0 -0
  1361. data/test/dummy/tmp/cache/assets/DDB/E70/sprockets%2F9861e7858fde4a644c0c5e2bfedc0c9b +0 -0
  1362. data/test/dummy/tmp/cache/assets/DDF/030/sprockets%2F00baca8df8cc4424ce2c4c632070caac +0 -0
  1363. data/test/dummy/tmp/cache/assets/DDF/1D0/sprockets%2F2a72ab03a965f1b1bfdddcc3cc0155b2 +0 -0
  1364. data/test/dummy/tmp/cache/assets/DE1/5B0/sprockets%2Ff9dbf94f992d24bc1ada3f41ef458e68 +0 -0
  1365. data/test/dummy/tmp/cache/assets/DE3/780/sprockets%2Fd23df897ee3e8c98c1e9def097aa61d0 +0 -0
  1366. data/test/dummy/tmp/cache/assets/DE3/DF0/sprockets%2F44a65bafad2d02bf2bc017cab1793c7b +0 -0
  1367. data/test/dummy/tmp/cache/assets/DE4/CE0/sprockets%2F4ffede03976e1969f85bb576e5abe0ce +0 -0
  1368. data/test/dummy/tmp/cache/assets/DE5/770/sprockets%2F63662f5d5fff5faec7c6c3edf3998b31 +0 -0
  1369. data/test/dummy/tmp/cache/assets/DEA/090/sprockets%2F01cbf5af01ea4b3c693e79d315ddda0b +0 -0
  1370. data/test/dummy/tmp/cache/assets/DEB/E10/sprockets%2Fe32593dfde78efef348b6d9ca947b76a +0 -0
  1371. data/test/dummy/tmp/cache/assets/DEE/750/sprockets%2F9a7dda51453523c143c8eefbac3caaa7 +0 -0
  1372. data/test/dummy/tmp/cache/assets/DEE/C20/sprockets%2F3dadc39c1fae53590e508c2a5dabdc15 +0 -0
  1373. data/test/dummy/tmp/cache/assets/DF0/D00/sprockets%2Ff09010d1d9bbeeccc11758ebafb5427c +0 -0
  1374. data/test/dummy/tmp/cache/assets/DF2/C90/sprockets%2Fc8cbf80d4e9ac03245cbe229c27aa1ee +0 -0
  1375. data/test/dummy/tmp/cache/assets/DF3/3D0/sprockets%2Fe9e4dd0fbd96400e70bcbe5b62af20f3 +0 -0
  1376. data/test/dummy/tmp/cache/assets/DF3/920/sprockets%2Fbd6c0174d04aeb0875a6f4bbcd2e75cf +0 -0
  1377. data/test/dummy/tmp/cache/assets/DF3/C50/sprockets%2F71c1dd251bedbf172ed2ee25ff4456ab +0 -0
  1378. data/test/dummy/tmp/cache/assets/DF4/6D0/sprockets%2Ffd69442c5b02e3aedaf36b342bbd4a9f +0 -0
  1379. data/test/dummy/tmp/cache/assets/DF4/730/sprockets%2Fe4d08b1ffdac83138fbc8b7c4ac421a6 +0 -0
  1380. data/test/dummy/tmp/cache/assets/DF4/DC0/sprockets%2Fab0ed5aba0f6cd57228d5d2c04f7e7c6 +0 -0
  1381. data/test/dummy/tmp/cache/assets/DF4/ED0/sprockets%2F9064c1a67a6badbcb92f3aa60ee468ae +0 -0
  1382. data/test/dummy/tmp/cache/assets/DF5/2E0/sprockets%2F0d9a7cdbcd4b6f31dc0dfc9576b1e520 +0 -0
  1383. data/test/dummy/tmp/cache/assets/DF5/2E0/sprockets%2Fb4b23f8d4c1560dafe3ec9d6be0a92d2 +0 -0
  1384. data/test/dummy/tmp/cache/assets/DF8/110/sprockets%2Fb303fcdf636f4a8078cccc5aefbd9031 +0 -0
  1385. data/test/dummy/tmp/cache/assets/DF9/FC0/sprockets%2F50bbf9fdafe071e6028b76ed31ab8cb6 +0 -0
  1386. data/test/dummy/tmp/cache/assets/DFB/360/sprockets%2F9abc6db13d4d137b882a2eb7eead827d +0 -0
  1387. data/test/dummy/tmp/cache/assets/DFB/CF0/sprockets%2Face4e0a9ba7ca0feaa7911992cff5059 +0 -0
  1388. data/test/dummy/tmp/cache/assets/DFC/140/sprockets%2F7e7ad5c9b10d9185e7ceea0cb8c80cb2 +0 -0
  1389. data/test/dummy/tmp/cache/assets/DFC/2A0/sprockets%2Fac1af26cf800dfb87c37f18c48d2fb2e +0 -0
  1390. data/test/dummy/tmp/cache/assets/DFD/4D0/sprockets%2F2e5f7f564fe27f90ded02fb1cc3d3a5b +0 -0
  1391. data/test/dummy/tmp/cache/assets/DFD/540/sprockets%2F2a2b0ef6f64035dd392dca378d8ccdfe +0 -0
  1392. data/test/dummy/tmp/cache/assets/DFE/3E0/sprockets%2F789f8ad6ee09f4732a026faa8c0abfab +0 -0
  1393. data/test/dummy/tmp/cache/assets/DFF/910/sprockets%2F6b0fb645978bd30cfed1ede2cac722e9 +0 -0
  1394. data/test/dummy/tmp/cache/assets/DFF/BD0/sprockets%2F1afc22ed3a41058feddbef34fc8a9892 +0 -0
  1395. data/test/dummy/tmp/cache/assets/DFF/E10/sprockets%2F9b0da01c99b97d0782dae4fa9d5edcb1 +0 -0
  1396. data/test/dummy/tmp/cache/assets/E01/B80/sprockets%2F26a49fb3e5c42fb5fa8e7deda7a2a826 +0 -0
  1397. data/test/dummy/tmp/cache/assets/E02/DB0/sprockets%2Ffe8db23e9dd1ce02c01f1f93f6fbc973 +0 -0
  1398. data/test/dummy/tmp/cache/assets/E03/A00/sprockets%2Fb65afd30ebf7f8a668f00ed285f8cbd0 +0 -0
  1399. data/test/dummy/tmp/cache/assets/E03/A40/sprockets%2F534e94f19bc2fd5f47de81edbb1e5da3 +0 -0
  1400. data/test/dummy/tmp/cache/assets/E04/990/sprockets%2F00a94c7ef2c7525f9fdfc1bd3fcf860d +0 -0
  1401. data/test/dummy/tmp/cache/assets/E0A/750/sprockets%2Ffea08f995694e9ddd6beceb40316e1cb +0 -0
  1402. data/test/dummy/tmp/cache/assets/E0B/7D0/sprockets%2Fd70d98fcdbf69f522acefc8e226fd045 +0 -0
  1403. data/test/dummy/tmp/cache/assets/E0E/470/sprockets%2Fdf9bcee6df67e5d6a2a25909d463b5df +0 -0
  1404. data/test/dummy/tmp/cache/assets/E0E/650/sprockets%2F5a33fc11ab6bc0f1fd24b6deaf07e00b +0 -0
  1405. data/test/dummy/tmp/cache/assets/E10/E40/sprockets%2F112f373dc0ecdabbd21552bf3e2cfc0d +0 -0
  1406. data/test/dummy/tmp/cache/assets/E11/0F0/sprockets%2Fff7d87ecb3d281cbdcc83b95b96fd626 +0 -0
  1407. data/test/dummy/tmp/cache/assets/E14/580/sprockets%2F9aca4c2b442dee3efba02471f4cc10dc +0 -0
  1408. data/test/dummy/tmp/cache/assets/E14/6B0/sprockets%2Fdddb89ed1db182d9f02758ce56e8ef4f +0 -0
  1409. data/test/dummy/tmp/cache/assets/E16/510/sprockets%2Fc5995b57e5de1c95aa9f4dcd9c1ff3c9 +0 -0
  1410. data/test/dummy/tmp/cache/assets/E1B/540/sprockets%2Fcd1fe0e9ac0a5ae34c554cbe26b3a84b +0 -0
  1411. data/test/dummy/tmp/cache/assets/E1D/140/sprockets%2Fc1bfeb7c6cce6c51cfd70a151f60e14b +0 -0
  1412. data/test/dummy/tmp/cache/assets/E1E/B50/sprockets%2F0d1b5aad8e8cf604c44debaca856e0b3 +0 -0
  1413. data/test/dummy/tmp/cache/assets/E21/6C0/sprockets%2Fc83ac0d6ac44dc1a2d437ec84e9bcdd1 +0 -0
  1414. data/test/dummy/tmp/cache/assets/E22/0A0/sprockets%2Ffad6b5952f8d6b362ae2dbc29ad02bca +0 -0
  1415. data/test/dummy/tmp/cache/assets/E23/B10/sprockets%2Ff8d7e7befa2eea7e47a030a63a50fe0a +0 -0
  1416. data/test/dummy/tmp/cache/assets/E23/EB0/sprockets%2F8e8e37b3fb709ec24b03dcbbada1f08c +0 -0
  1417. data/test/dummy/tmp/cache/assets/E24/170/sprockets%2F26403c9bcdbfec6ce5f8b13b46ba1d6c +0 -0
  1418. data/test/dummy/tmp/cache/assets/E24/390/sprockets%2Fbcb78d3acfe8b742db65217becf03ea1 +0 -0
  1419. data/test/dummy/tmp/cache/assets/E24/3A0/sprockets%2Fd724e26eeb4b56c72cd3a604ecdfaae3 +0 -0
  1420. data/test/dummy/tmp/cache/assets/E25/700/sprockets%2F981acc1f4dab3b465ea4deaf72be443e +0 -0
  1421. data/test/dummy/tmp/cache/assets/E26/050/sprockets%2F103d5888bec43da7a0ddcdb2bf3beb97 +0 -0
  1422. data/test/dummy/tmp/cache/assets/E26/0F0/sprockets%2F4e30a2bd37a1dd9c36e6cee8a9b1d5ea +0 -0
  1423. data/test/dummy/tmp/cache/assets/E29/E80/sprockets%2F90cb9bddaa39285cdca816dd90d72adb +0 -0
  1424. data/test/dummy/tmp/cache/assets/E2B/2D0/sprockets%2Fe5397bda4daaf7830a72dfd6e05bffc0 +0 -0
  1425. data/test/dummy/tmp/cache/assets/E2B/D40/sprockets%2F6a8aecedec265cd422c43118c2cf6fff +0 -0
  1426. data/test/dummy/tmp/cache/assets/E2D/0E0/sprockets%2Fffa3484fba492abd803cbd8aef9cd055 +0 -0
  1427. data/test/dummy/tmp/cache/assets/E2F/320/sprockets%2F9caa91c3f6b2af91b45b9fcdb68af62b +0 -0
  1428. data/test/dummy/tmp/cache/assets/E2F/650/sprockets%2F7b75dca570f1d49cfef1cc23cbfd57f1 +0 -0
  1429. data/test/dummy/tmp/cache/assets/E37/FC0/sprockets%2Fde33a8396fe6d0cfd90c36ebef72cf3c +0 -0
  1430. data/test/dummy/tmp/cache/assets/E38/9E0/sprockets%2F2abf75fb8e27e59efc5a6daa42d9d8c2 +0 -0
  1431. data/test/dummy/tmp/cache/assets/E3A/650/sprockets%2Ffb4abcc7eedf902d354dd59e3b5d389f +0 -0
  1432. data/test/dummy/tmp/cache/assets/E45/2F0/sprockets%2Fede8097d852ebcde8097daefcf826e6a +0 -0
  1433. data/test/dummy/tmp/cache/assets/E49/020/sprockets%2F3c6401cbfb8c71dbb0ce0f64bde3dbb6 +0 -0
  1434. data/test/dummy/tmp/cache/assets/E49/ED0/sprockets%2Fdf98ada6ae6737d7ceff1fc0d8967c8c +0 -0
  1435. data/test/dummy/tmp/cache/assets/E53/770/sprockets%2Fe2e0a3e9ffa5dfaab1928c0cd2f4a9b3 +0 -0
  1436. data/test/dummy/tmp/cache/assets/E5A/CF0/sprockets%2Fbdeb098bcbca426a7e1bd57ad6ea777c +0 -0
  1437. data/test/dummy/tmp/cache/assets/E66/7B0/sprockets%2F9f4bfaee4738b7f9ab2c0cc3acfb875e +0 -0
  1438. data/test/dummy/tmp/cache/assets/E69/AE0/sprockets%2F979dd3fdf9f63a16c3de57fcbbea40fa +0 -0
  1439. data/test/dummy/tmp/cache/assets/E6D/700/sprockets%2F79e4a4cf98db8cf1e9e6cb4df415cbae +0 -0
  1440. data/test/dummy/tmp/cache/assets/E72/620/sprockets%2F9e672ffd3fa2edeb8dc98ddcd427dd09 +0 -0
  1441. data/test/dummy/tmp/cache/assets/E79/690/sprockets%2Fbabceaf46edfe2e70c21ef3a158bb2d0 +0 -0
  1442. data/test/dummy/tmp/cache/assets/E8A/670/sprockets%2Fdeb4bee79b6ff1fa244abfba59ce1e41 +0 -0
  1443. data/test/dummy/tmp/cache/assets/E90/270/sprockets%2Fc1cdf1f3fb4d844ec448dc6eeb5be8ca +0 -0
  1444. data/test/dummy/tmp/cache/assets/ED7/DC0/sprockets%2Faeeeccc9e87d37893ddecd4cfef2b68e +0 -0
  1445. metadata +2226 -13
@@ -1,3 +1,13 @@
1
1
  = QuicCms
2
2
 
3
- This project rocks and uses MIT-LICENSE.
3
+ Quic Cms is a very basic Page & Menu system CMS. It contains a administration interface that uses ckeditor and allows the uploading of images and files.
4
+
5
+
6
+ == install
7
+
8
+ add " gem 'quic_cms' " to your Gemfile
9
+ run " bundle install "
10
+
11
+ rake quic_cms:install:migrations
12
+
13
+ == Page Administration
@@ -6,4 +6,4 @@
6
6
  //
7
7
  //= require jquery
8
8
  //= require jquery_ujs
9
- //= require_tree .
9
+ //= require ./pages
@@ -0,0 +1,1433 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <!--
3
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
4
+ For licensing, see LICENSE.html or http://ckeditor.com/license
5
+ -->
6
+ <html xmlns="http://www.w3.org/1999/xhtml">
7
+ <head>
8
+ <title>Changelog &mdash; CKEditor</title>
9
+ <meta http-equiv="content-type" content="text/html; charset=utf-8" />
10
+ <style type="text/css">
11
+
12
+ #footer hr
13
+ {
14
+ margin: 10px 0 15px 0;
15
+ height: 1px;
16
+ border: solid 1px gray;
17
+ border-bottom: none;
18
+ }
19
+
20
+ #footer p
21
+ {
22
+ margin: 0 10px 10px 10px;
23
+ float: left;
24
+ }
25
+
26
+ #footer #copy
27
+ {
28
+ float: right;
29
+ }
30
+
31
+ </style>
32
+ </head>
33
+ <body>
34
+ <h1>
35
+ CKEditor Changelog
36
+ </h1>
37
+ <h3>
38
+ CKEditor 3.6.2</h3>
39
+ <p>
40
+ New features:</p>
41
+ <ul>
42
+ <li><a href="http://dev.ckeditor.com/ticket/6089">#6089</a> : The editor is now enabled on iOS 5 (iPad and iPhone).</li>
43
+ <li><a href="http://dev.ckeditor.com/ticket/6089">#7354</a> : It is now possible to exit from blockquotes by using the <em>Enter</em> key on empty paragraphs.</li>
44
+ <li><a href="http://dev.ckeditor.com/ticket/7931">#7931</a> : The <code><a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#event:mode">mode</a></code> event now carries the previous editor mode.</li>
45
+ <li><a href="http://dev.ckeditor.com/ticket/6161">#6161</a> : New <code><a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.autoGrow_onStartup">autoGrow_onStartup</a></code> configuration option.</li>
46
+ <li><a href="http://dev.ckeditor.com/ticket/8052">#8052</a> : <code>autogrow</code> is now available as an editor <a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#execCommand">command</a>.</li>
47
+ <li><a href="http://dev.ckeditor.com/ticket/3457">#3457</a> : It is now possible to edit the contents of <code>&lt;textarea&gt;</code> elements through the dialog window.</li>
48
+ <li><a href="http://dev.ckeditor.com/ticket/8242">#8242</a> : The "&raquo;" character is now added to the Special Character dialog window.</li>
49
+ </ul>
50
+ <p>
51
+ Fixed issues:</p>
52
+ <ul>
53
+ <li><a href="http://dev.ckeditor.com/ticket/8171">#8171</a>, <a href="http://dev.ckeditor.com/ticket/8172">#8172</a> : Updated links to WebSpellChecker.net.</li>
54
+ <li><a href="http://dev.ckeditor.com/ticket/8155">#8155</a> : Tooltips in the Special Character dialog window corrected.</li>
55
+ <li><a href="http://dev.ckeditor.com/ticket/8163">#8163</a> : The name of the <code><a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.filebrowserWindowFeatures">filebrowserWindowFeatures</a></code> configuration setting corrected to match the documented name.</li>
56
+ <li><a href="http://dev.ckeditor.com/ticket/8124">#8124</a> : The Style fields in Advanced dialog window tabs are now validated according to CSS style attribute syntax.</li>
57
+ <li><a href="http://dev.ckeditor.com/ticket/8025">#8025</a> : The checkboxes in the Find and Replace dialog window are now part of a fieldset.</li>
58
+ <li><a href="http://dev.ckeditor.com/ticket/7943">#7943</a> : CSS conflict no longer appears when the page styles set the <code>float</code> property of <code>label</code> elements.</li>
59
+ <li><a href="http://dev.ckeditor.com/ticket/8016">#8016</a> : [WebKit] Flash content is not visible when previewing content.</li>
60
+ <li><a href="http://dev.ckeditor.com/ticket/6908">#6908</a> : Text color should always be applied to the linked text.</li>
61
+ <li><a href="http://dev.ckeditor.com/ticket/7619">#7619</a> : [IE] IFrame shim now consolidates the editor dialog window to avoid having it masked by embedded objects.</li>
62
+ <li><a href="http://dev.ckeditor.com/ticket/7900">#7900</a> : [FF] Copy/Paste operations for table cells no longer break the Table Properties dialog window.</li>
63
+ <li><a href="http://dev.ckeditor.com/ticket/7243">#7243</a> : Inline JavaScript events may become corrupted.</li>
64
+ <li><a href="http://dev.ckeditor.com/ticket/7448">#7448</a> : List creation in RTL blocks is wrongly merged with the above LTR block.</li>
65
+ <li><a href="http://dev.ckeditor.com/ticket/6957">#6957</a> : Highlighting of searched terms does not reach read-only blocks.</li>
66
+ <li><a href="http://dev.ckeditor.com/ticket/7948">#7948</a> : Tooltips with information about correct length units are now displayed for the Width/Height fields of the Table Properties dialog window.</li>
67
+ <li><a href="http://dev.ckeditor.com/ticket/6212">#6212</a> : [WebKit] Editor resize may scroll the host page.</li>
68
+ <li><a href="http://dev.ckeditor.com/ticket/6540">#6540</a> : [Safari] Editor loses focus on resizing.</li>
69
+ <li><a href="http://dev.ckeditor.com/ticket/7908">#7908</a> : [IE] Unlink command is sometimes missing from the context menu of a link.</li>
70
+ <li><a href="http://dev.ckeditor.com/ticket/8159">#8159</a> : Editor fails to load if the browser has no default language set.</li>
71
+ <li><a href="http://dev.ckeditor.com/ticket/7490">#7490</a> : [IE] Block format leaks to the next unselected line when <code>enterMode</code> is set to <code>BR</code>.</li>
72
+ <li><a href="http://dev.ckeditor.com/ticket/8087">#8087</a> : Indenting list items may add redundant text direction attributes.</li>
73
+ <li><a href="http://dev.ckeditor.com/ticket/6200">#6200</a> : Add styling for certain dialog window element types that miss focus outline (like checkbox).</li>
74
+ <li><a href="http://dev.ckeditor.com/ticket/7894">#7894</a> : Fault tolerance when parsing a malformed link.</li>
75
+ <li><a href="http://dev.ckeditor.com/ticket/8049">#8049</a> : Bullets/Numbers are invisible for list items with LTR text direction.</li>
76
+ <li><a href="http://dev.ckeditor.com/ticket/8222">#8222</a> : [IE] Incorrect selection locking after opening a dialog window in some cases.</li>
77
+ <li><a href="http://dev.ckeditor.com/ticket/7002">#7002</a> : [IE] Undo operation when a table is selected results in an error.</li>
78
+ <li><a href="http://dev.ckeditor.com/ticket/8232">#8232</a> : [IE] Unable to apply inline style that starts at the end of a link text.</li>
79
+ <li><a href="http://dev.ckeditor.com/ticket/7153">#7153</a> : Fail to load the source version of the editor after the window is loaded.</li>
80
+ <li><a href="http://dev.ckeditor.com/ticket/8246">#8246</a> : Bad editing performance on certain document contents.</li>
81
+ <li><a href="http://dev.ckeditor.com/ticket/7912">#7912</a> : Cursor trapped in an invisible element after pressing the <em>Enter</em> key.</li>
82
+ <li><a href="http://dev.ckeditor.com/ticket/7645">#7645</a> : Full list or table deletion with the <em>Backspace/Delete</em> key.</li>
83
+ <li><a href="http://dev.ckeditor.com/ticket/8050">#8050</a> : AutoGrow feature better fits the content styles.</li>
84
+ <li><a href="http://dev.ckeditor.com/ticket/8349">#8349</a> : [IE9] Larger toolbar top offset on HTML5 pages.</li>
85
+ <li><a href="http://dev.ckeditor.com/ticket/8352">#8352</a> : [IE9] Toolbar wrapping is incorrect.</li>
86
+ <li><a href="http://dev.ckeditor.com/ticket/8080">#8080</a> : JavaScript error when inserting a new table row.</li>
87
+ <li>Updated the following language files:<ul>
88
+ <li><a href="http://dev.ckeditor.com/ticket/8263">#8263</a> : Dutch;</li>
89
+ <li><a href="http://dev.ckeditor.com/ticket/8238">#8238</a> : Estonian;</li>
90
+ <li><a href="http://dev.ckeditor.com/ticket/8193">#8193</a> : Finnish;</li>
91
+ <li>German;</li>
92
+ <li>Hebrew;</li>
93
+ <li><a href="http://dev.ckeditor.com/ticket/8179">#8179</a> : Hungarian;</li>
94
+ <li><a href="http://dev.ckeditor.com/ticket/8128">#8128</a> : Italian;</li>
95
+ <li><a href="http://dev.ckeditor.com/ticket/8371">#8371</a> : Lithuanian;</li>
96
+ <li><a href="http://dev.ckeditor.com/ticket/8126">#8126</a>, <a href="http://dev.ckeditor.com/ticket/8256">#8256</a> : Norwegian (Bokmal and Nynorsk);</li>
97
+ <li><a href="http://dev.ckeditor.com/ticket/8356">#8356</a> : Persian;</li>
98
+ <li>Polish;</li>
99
+ <li>Portuguese (Brazil);</li>
100
+ <li><a href="http://dev.ckeditor.com/ticket/8151">#8151</a>, <a href="http://dev.ckeditor.com/ticket/8298">#8298</a> : Russian;</li>
101
+ <li>Spanish;</li>
102
+ </ul></li>
103
+ </ul>
104
+ <h3>
105
+ CKEditor 3.6.1</h3>
106
+ <p>
107
+ New features:</p>
108
+ <ul>
109
+ <li><a href="http://dev.ckeditor.com/ticket/4556">#4556</a> : Initial support for HTML5 elements.</li>
110
+ <li><a href="http://dev.ckeditor.com/ticket/6492">#6492</a> : The Find/Replace dialog window will now be populated with text selected in the editor.</li>
111
+ <li><a href="http://dev.ckeditor.com/ticket/7323">#7323</a> : New <code><a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.definition.uiElement.html#align">align</a></code> property in dialog window UI elements for field alignment.</li>
112
+ <li><a href="http://dev.ckeditor.com/ticket/6462">#6462</a> : A wider range of CSS length units (like pt and percentage) are now supported in related dialog window fields.</li>
113
+ <li><a href="http://dev.ckeditor.com/ticket/7911">#7911</a> : New Remove Anchor option is now available in the context menu.</li>
114
+ <li><a href="http://dev.ckeditor.com/ticket/7387">#7387</a> : Allow <code>styleDefinition</code> to be applied to a set of elements.</li>
115
+ <li><a href="http://dev.ckeditor.com/ticket/4345">#4345</a> : A new <code><a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#event:langLoaded">langLoaded</a></code> event added to <code><a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html">CKEDITOR.editor</a></code> in order to make it possible to perform "by code" language updates.</li>
116
+ <li><a href="http://dev.ckeditor.com/ticket/7959">#7959</a> : The cursor will now blink in the first cell after a table is inserted.</li>
117
+ <li><a href="http://dev.ckeditor.com/ticket/7885">#7885</a> : New <code><a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#removeMenuItem">editor::removeMenuItem</a></code> API for removing plugin context menu items introduced.</li>
118
+ <li><a href="http://dev.ckeditor.com/ticket/7991">#7991</a> : Introduce the <code><a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.definition.labeledElement.html#controlStyle">controlStyle</a></code> and <code><a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.definition.labeledElement.html#inputStyle">inputStyle</a></code> definitions to allow fine-grained controlling of dialog window element styles.</li>
119
+ </ul>
120
+ <p>
121
+ Fixed issues:</p>
122
+ <ul>
123
+ <li><a href="http://dev.ckeditor.com/ticket/7914">#7914</a> : <strong>ATTENTION!</strong> The signature for the <code><a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#setReadOnly">setReadOnly()</a></code> function has been changed, reversing the meaning of the parameter to be passed to it. Please make sure to update your code when upgrading.</li>
124
+ <li><a href="http://dev.ckeditor.com/ticket/7657">#7657</a> : Wrong margin mirroring when creating a list from RTL paragraphs.</li>
125
+ <li><a href="http://dev.ckeditor.com/ticket/7620">#7620</a> : A glitch in list pasting from Microsoft Word caused by broken child references when filtering.</li>
126
+ <li><a href="http://dev.ckeditor.com/ticket/7811">#7811</a> : [IE] Deleting table row throws a JavaScript error.</li>
127
+ <li><a href="http://dev.ckeditor.com/ticket/6962">#6962</a> : Changed the <code>CKEDITOR.CTRL</code>, <code>CKEDITOR.SHIFT</code> and <code>CKEDITOR.ALT</code> constant values to avoid collision with any possible Unicode character.</li>
128
+ <li><a href="http://dev.ckeditor.com/ticket/6263">#6263</a> : Some table cell context menu options may be incorrectly disabled.</li>
129
+ <li><a href="http://dev.ckeditor.com/ticket/6247">#6247</a> : Focus is not restored properly after a drop-down menu is closed.</li>
130
+ <li><a href="http://dev.ckeditor.com/ticket/7334">#7334</a> : [IE7] Indentation style does not apply to RTL lists.</li>
131
+ <li><a href="http://dev.ckeditor.com/ticket/6845">#6845</a> : Spaces inside the URL field in the Link dialog window will now be removed.</li>
132
+ <li><a href="http://dev.ckeditor.com/ticket/7840">#7840</a> : [IE] Opening the Table Properties dialog window via the context menu causes a JavaScript error.</li>
133
+ <li><a href="http://dev.ckeditor.com/ticket/7733">#7733</a> : Flash movies inserted with the Flash Properties dialog window are not displaying properly when injected into the page.</li>
134
+ <li><a href="http://dev.ckeditor.com/ticket/7837">#7837</a> : [IE&lt;8] Inserting a page break results in an error.</li>
135
+ <li><a href="http://dev.ckeditor.com/ticket/7804">#7804</a> : The HTML5 <a href="http://www.w3.org/TR/html-markup/wbr.html"><code>wbr</code></a> tag is now recognized by the editor.</li>
136
+ <li><a href="http://dev.ckeditor.com/ticket/7867">#7867</a> : The file browser for the background image in the Document Properties plugin dialog window does not work.</li>
137
+ <li><a href="http://dev.ckeditor.com/ticket/7130">#7130</a> : The column resizer gripping area is invading adjacent table cells.</li>
138
+ <li><a href="http://dev.ckeditor.com/ticket/7844">#7844</a> : [FF] Calling <code>setData()</code> on a hidden editor caused editor not to display.</li>
139
+ <li><a href="http://dev.ckeditor.com/ticket/7860">#7860</a> : The BBCode plugin was stripping BBCode tags that were not implemented in the plugin, but from now on they will be handled as simple text.</li>
140
+ <li><a href="http://dev.ckeditor.com/ticket/7321">#7321</a> : [IE6] Contents inside the RTL fields in dialog windows are overflowing.</li>
141
+ <li><a href="http://dev.ckeditor.com/ticket/7323">#7323</a> : [IE Quirks] Some fields are not centered in the dialog window.</li>
142
+ <li><a href="http://dev.ckeditor.com/ticket/5955">#5955</a> : Editor accessibility issue with JAWS when a drop-down menu is placed as the first item in the toolbar.</li>
143
+ <li><a href="http://dev.ckeditor.com/ticket/6671">#6671</a> : [FF] Selection of an item from the Styles drop-down list is not refreshed after the style is removed.</li>
144
+ <li><a href="http://dev.ckeditor.com/ticket/7879">#7879</a> : The Style and Height/Width fields of the Table Properties dialog window are not synchronized.</li>
145
+ <li><a href="http://dev.ckeditor.com/ticket/7581">#7581</a> : [IE] The <em>Enter</em> key pressed at the end of a list item containing the <code>start</code> attribute crashes the browser.</li>
146
+ <li><a href="http://dev.ckeditor.com/ticket/7266">#7266</a> : Dialog window fields that did not pass validation are now ARIA-compatible with <code>aria-invalid</code>.</li>
147
+ <li><a href="http://dev.ckeditor.com/ticket/7742">#7742</a> : [WebKit] Indentation, alignment, and language direction are not applied on an empty document without the editor being in focus.</li>
148
+ <li><a href="http://dev.ckeditor.com/ticket/7801">#7801</a> : [Opera] Pasted paragraphs now split partially selected blocks.</li>
149
+ <li><a href="http://dev.ckeditor.com/ticket/6663">#6663</a> : Table caption that contains rich text is corrupted after an edit done with the Table Properties dialog window.</li>
150
+ <li><a href="http://dev.ckeditor.com/ticket/7893">#7893</a> : [WebKit, Opera, IE&lt;8] It is impossible to link to anchors in the document.</li>
151
+ <li><a href="http://dev.ckeditor.com/ticket/7637">#7637</a> : Cursor position might in some cases cause problems after inserting a page break.</li>
152
+ <li><a href="http://dev.ckeditor.com/ticket/5314">#5314</a> : The <code>aria-selected</code> attribute is not removed when toolbar drop-down menu items are deselected.</li>
153
+ <li><a href="http://dev.ckeditor.com/ticket/7749">#7749</a> : Small check introduced to avoid issues with custom data processors and the <code>insertHtml</code> function.</li>
154
+ <li><a href="http://dev.ckeditor.com/ticket/7269">#7269</a> : [WebKit] Paste from Word is including the full <code>file://</code> URL path for anchor links.</li>
155
+ <li><a href="http://dev.ckeditor.com/ticket/7584">#7584</a> : Start number of the List dialog window now works with numbered list items.</li>
156
+ <li><a href="http://dev.ckeditor.com/ticket/6975">#6975</a> : [IE6, IE7] A definition list crashes Internet Explorer on HTML output.</li>
157
+ <li><a href="http://dev.ckeditor.com/ticket/7841">#7841</a> : Deleting a column with a cell deleted in one of the rows does not work.</li>
158
+ <li><a href="http://dev.ckeditor.com/ticket/7944">#7944</a> : The <em>Enter</em> key should not split or create new paragraphs inside caption elements.</li>
159
+ <li><a href="http://dev.ckeditor.com/ticket/7639">#7639</a> : [IE9] Browser might crash when an object is selected in the document.</li>
160
+ <li><a href="http://dev.ckeditor.com/ticket/7847">#7847</a> : [IE8] Inserting an image with non-secure source in a HTTPS page breaks the dialog window.</li>
161
+ <li><a href="http://dev.ckeditor.com/ticket/7953">#7953</a> : [IE] Text selection lost after the browser context menu is opened.</li>
162
+ <li><a href="http://dev.ckeditor.com/ticket/5239">#5239</a> : Inconsistent focus behavior after closing a toolbar drop-down menu.</li>
163
+ <li><a href="http://dev.ckeditor.com/ticket/6470">#6470</a> : The Start attribute of a Numbered List is rendered incorrectly if the field is left empty.</li>
164
+ <li><a href="http://dev.ckeditor.com/ticket/7324">#7324</a> : [IE6 Quirks] Context menus are not displayed correctly.</li>
165
+ <li><a href="http://dev.ckeditor.com/ticket/7566">#7566</a> : BiDi: Increasing indentation of a list item changes the language direction.</li>
166
+ <li><a href="http://dev.ckeditor.com/ticket/7839">#7839</a> : [IE] Pasting multi-level numbered lists from Microsoft Word does not work properly.</li>
167
+ <li><a href="http://dev.ckeditor.com/ticket/188">#188</a> : [IE] Object selection was making the toolbar inactive in some situations.</li>
168
+ <li>Updated the following language files:<ul>
169
+ <li><a href="http://dev.ckeditor.com/ticket/7834">#7834</a> : Dutch;</li>
170
+ <li><a href="http://dev.ckeditor.com/ticket/7869">#7869</a>, <a href="http://dev.ckeditor.com/ticket/7869">#7999</a> : Welsh;</li>
171
+ <li>Polish;</li>
172
+ <li>Hebrew;</li>
173
+ <li>German</li>
174
+ </ul></li>
175
+ </ul>
176
+ <h3>
177
+ CKEditor 3.6</h3>
178
+ <p>
179
+ New features:</p>
180
+ <ul>
181
+ <li><a href="http://dev.ckeditor.com/ticket/7044">#7044</a> : New BBCode sample plugin that makes the editor output (one dialect of) BBCode format.</li>
182
+ <li><a href="http://dev.ckeditor.com/ticket/5647">#5647</a> : Accessibility enhancements to the structure of the toolbar.</li>
183
+ <li><a href="http://dev.ckeditor.com/ticket/5647">#5647</a> : The Kama skin now presents separators for the toolbar items, making it easier to group buttons and have a cleaner layout.</li>
184
+ <li><a href="http://dev.ckeditor.com/ticket/5647">#5647</a> : Usability enhancements to keyboard navigation on the toolbar. The <em>Tab</em> key is now used to jump between toolbar groups, while the <em>Arrow</em> keys can be used to cycle within the group. The new <code><a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.toolbarGroupCycling">toolbarGroupCycling</a></code> setting can be used to change the <em>Arrow</em> keys behavior.</li>
185
+ <li><a href="http://dev.ckeditor.com/ticket/1376">#1376</a> : It is now possible to put the editor in the "read-only" state, so that the users would not be able to introduce changes to the contents. Check out the new <code><a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#setReadOnly">CKEDITOR.editor::setReadOnly</a></code> method, the <code><a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#readOnly">CKEDITOR.editor::readOnly</a></code> property, the <code><a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#event:readOnly">CKEDITOR.editor::readOnly</a></code> event, and the <code><a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.readOnly">readOnly</a></code> setting.</li>
186
+ <li><a href="http://dev.ckeditor.com/ticket/3582">#3582</a> : New presentation of anchor elements in the WYSIWYG mode.</li>
187
+ <li><a href="http://dev.ckeditor.com/ticket/6737">#6737</a> : The Format drop-down list will now display the preview of its contents exactly as defined in their style configurations.</li>
188
+ <li><a href="http://dev.ckeditor.com/ticket/6654">#6654</a> : A new <code><a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.autoParagraph">autoParagraph</a></code> configuration setting is added to disable the auto paragraphing feature.</li>
189
+ <li><a href="http://dev.ckeditor.com/ticket/901">#901</a> : New Stylesheet Parser (<code>stylesheetparser</code>) plugin that fills the Styles drop-down list based on the CSS classes available for the content. Check the new sample to learn how to use it.</li>
190
+ <li><a href="http://dev.ckeditor.com/ticket/2988">#2988</a> : New Document Properties (<code>docprops</code>) plugin that sets the metadata of the page in the Full Page mode.</li>
191
+ <li><a href="http://dev.ckeditor.com/ticket/7240">#7240</a> : New Developer Tools (<code>devtools</code>) plugin that shows information about dialog window UI elements to allow for easier customization.</li>
192
+ <li><a href="http://dev.ckeditor.com/ticket/6841">#6841</a> : Pressing the <em>Enter</em> key at the end of a pre-formatted block will now exit from it.</li>
193
+ <li><a href="http://dev.ckeditor.com/ticket/6850">#6850</a> : The About CKEditor dialog window now contains a link to CKEditor User's Guide.</li>
194
+ <li><a href="http://dev.ckeditor.com/ticket/5745">#5745</a> : Extra configuration options for the <code>iframeDialog</code> can now be passed.</li>
195
+ <li><a href="http://dev.ckeditor.com/ticket/6589">#6589</a> : The <code>onDialogEvent</code> function will now be used automatically in the <code>iframeDialog</code> contents if no callback is used on creation.</li>
196
+ <li><a href="http://dev.ckeditor.com/ticket/7757">#7757</a> : Georgian localization added.</li>
197
+ </ul>
198
+ <p>
199
+ Fixed issues:</p>
200
+ <ul>
201
+ <li><a href="http://dev.ckeditor.com/ticket/6774">#6774</a> : Internal styles are not included in the <code>contents.css</code> sample.</li>
202
+ <li><a href="http://dev.ckeditor.com/ticket/6521">#6521</a> : Added sample for the TableResize plugin.</li>
203
+ <li><a href="http://dev.ckeditor.com/ticket/6664">#6664</a> : Page break is sometimes merged into block-level elements.</li>
204
+ <li><a href="http://dev.ckeditor.com/ticket/7594">#7594</a> : Toolbar keyboard navigation is not possible after recreating the editor.</li>
205
+ <li><a href="http://dev.ckeditor.com/ticket/6657">#6657</a> : Allow to style the entire dialog window field when the input element is disabled.</li>
206
+ <li>Updated the following language files:<ul>
207
+ <li>Hebrew;</li>
208
+ <li>Polish;</li>
209
+ </ul></li>
210
+ </ul>
211
+ <h3>
212
+ CKEditor 3.5.4</h3>
213
+ <p>
214
+ Fixed issues:</p>
215
+ <ul>
216
+ <li>Added protection against XSS attacks in PHP samples when displaying element names.</li>
217
+ <li><a href="http://dev.ckeditor.com/ticket/7347">#7347</a> : The <em>Enter</em> key will no longer be caught by the dialog window covering the editor.</li>
218
+ <li><a href="http://dev.ckeditor.com/ticket/6718">#6718</a> : Paste from Word command overrides the Force Paste as Plain Text configuration.</li>
219
+ <li><a href="http://dev.ckeditor.com/ticket/6629">#6629</a> : Padding body is no longer needed when the last block is pre-formatted.</li>
220
+ <li><a href="http://dev.ckeditor.com/ticket/4844">#4844</a> : [IE] Dialog windows fail to load if there are too many editor instances on the page.</li>
221
+ <li><a href="http://dev.ckeditor.com/ticket/5788">#5788</a> : HTML parser trims empty spaces following <code>&lt;br&gt;</code> elements.</li>
222
+ <li><a href="http://dev.ckeditor.com/ticket/7513">#7513</a> : Invalid markup could cause the editor to hang.</li>
223
+ <li><a href="http://dev.ckeditor.com/ticket/6109">#6109</a> : Paste and Paste as Plain Text dialog windows now use the standard <code><a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.html#commitContent">commitContent</a></code> and <code><a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dialog.html#setupContent">setupContent</a></code> methods.</li>
224
+ <li><a href="http://dev.ckeditor.com/ticket/7588">#7588</a> : The editor code now has a protection system to avoid issues when including <code>ckeditor.js</code> more than once in the page.</li>
225
+ <li><a href="http://dev.ckeditor.com/ticket/7322">#7322</a> : Text font plugin now recognizes font family names that contain quotes.</li>
226
+ <li><a href="http://dev.ckeditor.com/ticket/7540">#7540</a> : Paste from Word introduces wrong spaces.</li>
227
+ <li><a href="http://dev.ckeditor.com/ticket/7697">#7697</a> : Successive calls of the <code>replace()</code> method did not work after SCAYT context menu initialization.</li>
228
+ <li>Updated the following language files:<ul>
229
+ <li><a href="http://dev.ckeditor.com/ticket/7647">#7647</a> : Slovak;</li>
230
+ </ul></li>
231
+ </ul>
232
+ <h3>
233
+ CKEditor 3.5.3</h3>
234
+ <p>
235
+ New features:</p>
236
+ <ul>
237
+ <li><a href="http://dev.ckeditor.com/ticket/4890">#4890</a> : Added the possibility to edit the <code>rel</code> attribute for links.</li>
238
+ <li><a href="http://dev.ckeditor.com/ticket/7004">#7004</a> : Allow loading plugin translations even if they are not present in the plugin definition.</li>
239
+ <li><a href="http://dev.ckeditor.com/ticket/7315">#7315</a> : Firing the <code>resize</code> event on dialog window instances is now possible.</li>
240
+ <li><a href="http://dev.ckeditor.com/ticket/7259">#7259</a> : Dialog window definition allows to specify initial <code>width</code> and <code>height</code> values.</li>
241
+ <li><a href="http://dev.ckeditor.com/ticket/7131">#7131</a> : List item numbering is now supported on pasting from Microsoft Word.</li>
242
+ </ul>
243
+ <p>
244
+ Fixed issues:</p>
245
+ <ul>
246
+ <li><a href="http://dev.ckeditor.com/ticket/1272">#1272</a> : [WebKit] It is now possible to apply styles to collapsed selections in Safari and Chrome.</li>
247
+ <li><a href="http://dev.ckeditor.com/ticket/7054">#7054</a> : The tooltips for special characters are now lowercased, making them more readable.</li>
248
+ <li><a href="http://dev.ckeditor.com/ticket/7102">#7102</a> : "Replace DIV" sample did not work when double-clicking inside the formatted text.</li>
249
+ <li><a href="http://dev.ckeditor.com/ticket/7088">#7088</a> : Loading of plugins failed on new instances of the editor after the Insert Special Character dialog window was used.</li>
250
+ <li><a href="http://dev.ckeditor.com/ticket/6215">#6215</a> : Removal of inline styles now also removes overrides.</li>
251
+ <li><a href="http://dev.ckeditor.com/ticket/6144">#6144</a> : Rich text drop-down lists have wrong height when toolbar is wrapped.</li>
252
+ <li><a href="http://dev.ckeditor.com/ticket/6387">#6387</a> : AutoGrow may cause an error when editor instance is destroyed too quickly after a height change.</li>
253
+ <li><a href="http://dev.ckeditor.com/ticket/6901">#6901</a> : Mixed direction content was not properly respected in a shared toolbar setting.</li>
254
+ <li><a href="http://dev.ckeditor.com/ticket/4809">#4809</a> : Table-related tags are output in wrong order.</li>
255
+ <li><a href="http://dev.ckeditor.com/ticket/7092">#7092</a> : Corrupted toolbar button state for inline style after switching to Source.</li>
256
+ <li><a href="http://dev.ckeditor.com/ticket/6921">#6921</a> : Pasted text marked by SCAYT in one language is not re-checked if another spellchecking language is selected in the editor.</li>
257
+ <li><a href="http://dev.ckeditor.com/ticket/6614">#6614</a> : Enhancement of the resize handle in RTL.</li>
258
+ <li><a href="http://dev.ckeditor.com/ticket/5924">#5924</a> : Flash plugin now recognizes Flash content without an <code>embed</code> tag.</li>
259
+ <li><a href="http://dev.ckeditor.com/ticket/4475">#4475</a> : Protected source in attributes and inline CSS text is not handled correctly.</li>
260
+ <li><a href="http://dev.ckeditor.com/ticket/6984">#6984</a> : [FF] Trailing line breaks are lost in <code>ENTER_BR</code>.</li>
261
+ <li><a href="http://dev.ckeditor.com/ticket/6987">#6987</a> : [IE] Text selection lost when calling <code>editor::insertHtml</code> from a dialog window in some situations.</li>
262
+ <li><a href="http://dev.ckeditor.com/ticket/6865">#6865</a> : BiDi mirroring does not work when a text direction change is done through a dialog window.</li>
263
+ <li><a href="http://dev.ckeditor.com/ticket/6966">#6966</a> : [IE] Unintended paragraph is created in an empty document in <code>enterMode</code> set for <code>BR</code> and <code>DIV</code>.</li>
264
+ <li><a href="http://dev.ckeditor.com/ticket/7084">#7084</a> : SCAYT dialog window is now working properly with more than one editor instance in a page.</li>
265
+ <li><a href="http://dev.ckeditor.com/ticket/6662">#6662</a> : [FF] List structure pasting error caused by a regression from FF3.5.x is now fixed.</li>
266
+ <li><a href="http://dev.ckeditor.com/ticket/7300">#7300</a> : Link dialog window now loads numeric values correctly.</li>
267
+ <li><a href="http://dev.ckeditor.com/ticket/7330">#7330</a> : New list items no longer inherit the <code>value</code> attribute from their sibling.</li>
268
+ <li><a href="http://dev.ckeditor.com/ticket/7293">#7293</a> : The "Automatic" color button is now presented correctly without focus inside the editor.</li>
269
+ <li><a href="http://dev.ckeditor.com/ticket/7018">#7018</a> : [IE] Toolbar drop-down lists did not have a border around them.</li>
270
+ <li><a href="http://dev.ckeditor.com/ticket/7073">#7073</a> : Image dialog window no longer allows zero height and width value to be entered.</li>
271
+ <li><a href="http://dev.ckeditor.com/ticket/7316">#7316</a> : [FF] Clicking on "Paste" button incorrectly breaks the line at the cursor position.</li>
272
+ <li><a href="http://dev.ckeditor.com/ticket/6751">#6751</a> : Inline whitespaces are incorrectly stripped when pasting from Word.</li>
273
+ <li><a href="http://dev.ckeditor.com/ticket/6236">#6236</a> : [IE] Fixing malformed nested list structure which was introduced by the <em>Backspace</em> key.</li>
274
+ <li><a href="http://dev.ckeditor.com/ticket/6649">#6649</a> : [IE] Selection of the full table sometimes does not work.</li>
275
+ <li><a href="http://dev.ckeditor.com/ticket/6946">#6946</a> : HTML parser is now able to fix orphan list items.</li>
276
+ <li><a href="http://dev.ckeditor.com/ticket/6861">#6861</a> : Indenting a list item should retain the text direction.</li>
277
+ <li><a href="http://dev.ckeditor.com/ticket/6938">#6938</a> : Outdenting a list item should retain the text direction.</li>
278
+ <li><a href="http://dev.ckeditor.com/ticket/6849">#6849</a> : Correct <em>Enter</em> key behavior on list item.</li>
279
+ <li><a href="http://dev.ckeditor.com/ticket/7113">#7113</a> : [WebKit] Undesired document scroll on click after scrolling.</li>
280
+ <li><a href="http://dev.ckeditor.com/ticket/6491">#6491</a> : Undesired Image dialog window dimension lock reset on URL change.</li>
281
+ <li><a href="http://dev.ckeditor.com/ticket/7284">#7284</a> : [FF Quirks] Maximize now works correctly.</li>
282
+ <li><a href="http://dev.ckeditor.com/ticket/6609">#6609</a> : [IE9] Browser in high contrast mode is not properly detected.</li>
283
+ <li><a href="http://dev.ckeditor.com/ticket/7222">#7222</a> : [WebKit] Impossible to apply a single style to a collapsed selection without giving the editor focus.</li>
284
+ <li><a href="http://dev.ckeditor.com/ticket/7180">#7180</a> : [IE9] When using Kama skin and RTL layout dialog window buttons were not being displayed correctly.</li>
285
+ <li><a href="http://dev.ckeditor.com/ticket/7182">#7182</a> : [IE9] When using Office2003/v2 skin and RTL layout dialog window shadows were corrupted.</li>
286
+ <li><a href="http://dev.ckeditor.com/ticket/6913">#6913</a> : Invalid escape sequence (<code>\b</code>) was used in the PHP integration.</li>
287
+ <li><a href="http://dev.ckeditor.com/ticket/5757">#5757</a> : [IE6] Text was not wrapping in the accessibility instructions dialog window.</li>
288
+ <li><a href="http://dev.ckeditor.com/changeset/6604">[6604]</a> : <code>Xml.js</code> and <code>Ajax.js</code> are now available as plugins ('xml' and 'ajax').</li>
289
+ <li><a href="http://dev.ckeditor.com/ticket/7304">#7304</a> : Microsoft Word cleanup function is not always invoked when clicking on the "Paste From Word" button.</li>
290
+ <li><a href="http://dev.ckeditor.com/ticket/6658">#6658</a> : [IE] Pasting text from Microsoft Word with one or more tabs between list items was failing.</li>
291
+ <li><a href="http://dev.ckeditor.com/ticket/7433">#7433</a> : [IE9] <code>ENTER_BR</code> at the end of a block breaks due to an IE9 regression.</li>
292
+ <li><a href="http://dev.ckeditor.com/ticket/7432">#7432</a> : [WebKit] Unable to create a new list in an empty document.</li>
293
+ <li><a href="http://dev.ckeditor.com/ticket/4880">#4880</a> : CKEditor changes tag style inside HTML comment with <code>cke_protected</code>.</li>
294
+ <li><a href="http://dev.ckeditor.com/ticket/7023">#7023</a> : [IE] JavaScript error when a Selection Field is inserted into a page.</li>
295
+ <li><a href="http://dev.ckeditor.com/ticket/7034">#7034</a> : Inserting special characters into styled text.</li>
296
+ <li><a href="http://dev.ckeditor.com/ticket/7132">#7132</a> : Paste toolbar buttons are becoming disabled.</li>
297
+ <li><a href="http://dev.ckeditor.com/ticket/7138">#7138</a> : The <code>api.html</code> sample in Opera does not work as expected.</li>
298
+ <li><a href="http://dev.ckeditor.com/ticket/7160">#7160</a> : Cannot paste the form element on top of the page.</li>
299
+ <li><a href="http://dev.ckeditor.com/ticket/7171">#7171</a> : Double-clicking an image in non-editable content opens the editing dialog window.</li>
300
+ <li><a href="http://dev.ckeditor.com/ticket/7455">#7455</a> : Extra line break is added automatically to the preformatted element.</li>
301
+ <li><a href="http://dev.ckeditor.com/ticket/7467">#7467</a> : [Firefox] Extra <code>br</code> element is added in a nested list.</li>
302
+ <li>Updated the following language files:<ul>
303
+ <li><a href="http://dev.ckeditor.com/ticket/7124">#7124</a> : Czech;</li>
304
+ <li><a href="http://dev.ckeditor.com/ticket/7126">#7126</a> : French;</li>
305
+ <li><a href="http://dev.ckeditor.com/ticket/7140">#7140</a> : Catalan;</li>
306
+ <li><a href="http://dev.ckeditor.com/ticket/7215">#7215</a> : Faroese;</li>
307
+ <li><a href="http://dev.ckeditor.com/ticket/7177">#7177</a> : Finnish;</li>
308
+ <li><a href="http://dev.ckeditor.com/ticket/7163">#7163</a> : Norwegian (no and nb);</li>
309
+ <li><a href="http://dev.ckeditor.com/ticket/7219">#7219</a> : Swedish;</li>
310
+ <li><a href="http://dev.ckeditor.com/ticket/7183">#7183</a> : Afrikaans;</li>
311
+ <li>Hebrew;</li>
312
+ <li>Spanish;</li>
313
+ <li>Polish;</li>
314
+ <li>German;</li>
315
+ </ul></li>
316
+ </ul>
317
+ <h3>
318
+ CKEditor 3.5.2</h3>
319
+ <p>
320
+ Fixed issues:</p>
321
+ <ul>
322
+ <li><a href="http://dev.ckeditor.com/ticket/7168">#7168</a> : [IE9] Destroying an editor instance throws an error.</li>
323
+ <li><a href="http://dev.ckeditor.com/ticket/7169">#7169</a> : [IE9] Menu item has incorrect height.</li>
324
+ <li><a href="http://dev.ckeditor.com/ticket/7178">#7178</a> : [IE9] Read-only attributes do not work in IE9.</li>
325
+ <li><a href="http://dev.ckeditor.com/ticket/7181">#7181</a> : [IE9] Toolbar items are not aligned in v2 and Office2003 skins.</li>
326
+ <li><a href="http://dev.ckeditor.com/ticket/7174">#7174</a> : [IE9] Elements path does not load correctly when the editor is switched back from Source to WYSIWYG.</li>
327
+ </ul>
328
+ <h3>
329
+ CKEditor 3.5.1</h3>
330
+ <p>
331
+ New features:</p>
332
+ <ul>
333
+ <li><a href="http://dev.ckeditor.com/ticket/6107">#6107</a> : It is now possible to remove block styles using Styles and Paragraph Format drop-down lists.</li>
334
+ <li><a href="http://dev.ckeditor.com/ticket/5590">#5590</a> : Remove Format command works in collapsed selections.</li>
335
+ <li><a href="http://dev.ckeditor.com/ticket/5755">#5755</a> : The <code><a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.dialog_buttonsOrder">dialog_buttonsOrder</a></code> option now works in Internet Explorer.</li>
336
+ <li><a href="http://dev.ckeditor.com/ticket/6869">#6869</a> : The <code>data-cke-nostyle</code> attribute (which was introduced for escaping the element from been influenced by the style system since 3.5) is deprecated in favor of the new <code>data-nostyle</code> attribute.</li>
337
+ <li>Revised sample pages with code examples and clarifications.</li>
338
+ </ul>
339
+ <p>
340
+ Fixed issues:</p>
341
+ <ul>
342
+ <li><a href="http://dev.ckeditor.com/ticket/5855">#5855</a> : Updating a link multiple times generates wrong <code>href</code> attribute.</li>
343
+ <li><a href="http://dev.ckeditor.com/ticket/6166">#6166</a> : Error on Maximize command, when the toolbar button is not shown.</li>
344
+ <li><a href="http://dev.ckeditor.com/ticket/6607">#6607</a> : Table cell "merge down" and "merge right" commands work only once.</li>
345
+ <li><a href="http://dev.ckeditor.com/ticket/6228">#6228</a> : Merge down does not work, throwing a JavasSript error.</li>
346
+ <li><a href="http://dev.ckeditor.com/ticket/6625">#6625</a> : BIDI: Mixed LTR/RTL direction causes incorrect behavior.</li>
347
+ <li><a href="http://dev.ckeditor.com/ticket/6881">#6881</a> : IFrame capitalization is now consistent throughout labels.</li>
348
+ <li><a href="http://dev.ckeditor.com/ticket/6686">#6686</a> : BIDI: [FF] When we apply explicit language direction to a numbered/bulleted list, the corresponding language direction toolbar icon is not highlighted.</li>
349
+ <li><a href="http://dev.ckeditor.com/ticket/6566">#6566</a> : It is now possible to exit a blockquote using <code>ENTER_BR</code>.</li>
350
+ <li><a href="http://dev.ckeditor.com/ticket/6868">#6868</a> : Partial (invalid) list structure crashes the editor on load.</li>
351
+ <li><a href="http://dev.ckeditor.com/ticket/6804">#6804</a> : Buggy behavior when editing the <code>legend</code> element inside a <code>fieldset</code>.</li>
352
+ <li><a href="http://dev.ckeditor.com/ticket/6724">#6724</a> : [IE7] Nested list display bug on empty list item.</li>
353
+ <li><a href="http://dev.ckeditor.com/ticket/6715">#6715</a> : List items do not create paragraphs after the list placed in a table cell is removed.</li>
354
+ <li><a href="http://dev.ckeditor.com/ticket/6695">#6695</a> : [Webkit] Display bug after the editor is restored from the full screen mode.</li>
355
+ <li><a href="http://dev.ckeditor.com/ticket/6661">#6661</a> : [IE] Pre-formatted style does not preserve applied text direction.</li>
356
+ <li><a href="http://dev.ckeditor.com/ticket/6655">#6655</a> : Using the editor resize grip causes small visual offsets.</li>
357
+ <li><a href="http://dev.ckeditor.com/ticket/6604">#6604</a> : The <code>div</code> element should be used as a formatting block in <code>ENTER_BR</code>.</li>
358
+ <li><a href="http://dev.ckeditor.com/ticket/6249">#6249</a> : BIDI: List item bullets are off viewport with RTL text direction.</li>
359
+ <li><a href="http://dev.ckeditor.com/ticket/6610">#6610</a> : BIDI: <code>ENTER_BR</code> change direction in one line out of multiple.</li>
360
+ <li><a href="http://dev.ckeditor.com/ticket/6872">#6872</a> : [IE] Link target field is not populated properly when no target is set.</li>
361
+ <li><a href="http://dev.ckeditor.com/ticket/6880">#6880</a> : Samples: Added a user-friendly message for users on servers without PHP support.</li>
362
+ <li><a href="http://dev.ckeditor.com/ticket/6628">#6628</a> : Setting <code><a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.enterMode">config.enterMode</a></code> from PHP fails.</li>
363
+ <li><a href="http://dev.ckeditor.com/ticket/6278">#6278</a> : Comments were moved above the <code>br</code> tags.</li>
364
+ <li><a href="http://dev.ckeditor.com/ticket/6687">#6687</a> : Empty tag should be removed in inline-style format.</li>
365
+ <li><a href="http://dev.ckeditor.com/ticket/6645">#6645</a> : Allow to configure whether &quot; (double quotes) characters should be encoded in the contents.</li>
366
+ <li><a href="http://dev.ckeditor.com/ticket/6336">#6336</a> : IE: (double)clicking an <code>input type="submit"</code> button submitted the form.</li>
367
+ <li><a href="http://dev.ckeditor.com/ticket/6646">#6646</a> : Context menu was not working for text inputs present in the initial content.</li>
368
+ <li><a href="http://dev.ckeditor.com/ticket/6641">#6641</a> : Copying and pasting links inside the editor was not working.</li>
369
+ <li><a href="http://dev.ckeditor.com/ticket/4208">#4208</a> : The <code><a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.disableObjectResizing">disableObjectResizing</a></code> setting now works in IE.</li>
370
+ <li><a href="http://dev.ckeditor.com/ticket/6242">#6242</a> : [IE] Editing existing links with <code>href</code> of a relative path mangles containing text.</li>
371
+ <li><a href="http://dev.ckeditor.com/ticket/5930">#5930</a> : [IE] Style definitions are no longer lowercased.</li>
372
+ <li><a href="http://dev.ckeditor.com/ticket/5361">#5361</a> : Preview window's title should reflect the title tag in full page mode.</li>
373
+ <li><a href="http://dev.ckeditor.com/ticket/5522">#5522</a> : [IE] In versions &lt; 8 or compatibility mode, <code>type="text"</code> was missing in text fields.</li>
374
+ <li><a href="http://dev.ckeditor.com/ticket/6126">#6126</a> : [IE] Avoid problems if there are two buttons named "submit".</li>
375
+ <li><a href="http://dev.ckeditor.com/ticket/6791">#6791</a> : [IE7] Editor did not show up when the name of a replaced textarea matched the name of a <code>meta</code> tag in the page.</li>
376
+ <li><a href="http://dev.ckeditor.com/ticket/5684">#5684</a> : [FF] When <code><a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.forcePasteAsPlainText">forcePasteAsPlainText</a></code> is used, the cursor disappears after paste.</li>
377
+ <li><a href="http://dev.ckeditor.com/ticket/6390">#6390</a> : Prevent toolbar dialog window buttons from being clicked twice.</li>
378
+ <li><a href="http://dev.ckeditor.com/ticket/6684">#6684</a> : [Webkit] Toolbar buttons are not wrapping correctly when the editor is displayed inside a table.</li>
379
+ <li><a href="http://dev.ckeditor.com/ticket/6703">#6703</a> : [IE] editor <code>focus</code> event not fired in an instance, when a dialog window closes.</li>
380
+ <li><a href="http://dev.ckeditor.com/ticket/6873">#6873</a> : Difficult to drag the resize grip of the spell checker dialog window.</li>
381
+ <li><a href="http://dev.ckeditor.com/ticket/6896">#6896</a> : [Webkit] Unable to paste into source area when the editor is maximized.</li>
382
+ <li><a href="http://dev.ckeditor.com/ticket/6020">#6020</a> : The state of the Cut, Copy, and Paste toolbar now matches the state of the context menu buttons.</li>
383
+ <li><a href="http://dev.ckeditor.com/ticket/5256">#5256</a> : JavaScript error thrown when percent (%) sign is used in image URL.</li>
384
+ <li><a href="http://dev.ckeditor.com/ticket/6577">#6577</a> : [FF] Selection error when an element containing the editor instance is hidden.</li>
385
+ <li><a href="http://dev.ckeditor.com/ticket/5500">#5500</a> : [IE] <code>value</code> attribute of text input dialog window field was missing.</li>
386
+ <li><a href="http://dev.ckeditor.com/ticket/6665">#6665</a> : [IE] <code>name</code> field of Link dialog window was missing.</li>
387
+ <li><a href="http://dev.ckeditor.com/ticket/6639">#6639</a> : Line-breaks inside pasted list item from Microsoft Word break the list structure.</li>
388
+ <li><a href="http://dev.ckeditor.com/ticket/6909">#6909</a> : [IE] GIF icons of toolbar button from custom plugins are not diplayed in zoom level 100%.</li>
389
+ <li><a href="http://dev.ckeditor.com/ticket/6860">#6860</a> : [FF] Double-clicking the placeholder element in order to open a Placeholder dialog window throws a JavaScript error.</li>
390
+ <li><a href="http://dev.ckeditor.com/ticket/6630">#6630</a> : Empty <code>pre</code> elements are output differently in various browsers.</li>
391
+ <li><a href="http://dev.ckeditor.com/ticket/6568">#6568</a> : Insert table row/column does not work with spanning.</li>
392
+ <li><a href="http://dev.ckeditor.com/ticket/6735">#6735</a> : Inaccurate read-only selection detection.</li>
393
+ <li><a href="http://dev.ckeditor.com/ticket/6728">#6728</a> : BIDI: Change direction does not work with list nested inside a blockquote.</li>
394
+ <li><a href="http://dev.ckeditor.com/ticket/6432">#6432</a> : Inserting a table in place of a fully selected list results in a JavaScript error.</li>
395
+ <li><a href="http://dev.ckeditor.com/ticket/6438">#6438</a> : [IE] Performance enhancement when typing inside an element with many child nodes.</li>
396
+ <li><a href="http://dev.ckeditor.com/ticket/6970">#6970</a> : [IE] Dialog window shadows were presented inaccurately.</li>
397
+ <li><a href="http://dev.ckeditor.com/ticket/6672">#6672</a> : [IE] Unnecessary <code>br</code> element is no longer inserted after a form.</li>
398
+ <li><a href="http://dev.ckeditor.com/ticket/7087">#7087</a> : [FF] Sometimes it was not possible to move cursor out of link at the end of block.</li>
399
+ <li>Updated the following language files:<ul>
400
+ <li><a href="http://dev.ckeditor.com/ticket/6981">#6981</a> : English (GB);</li>
401
+ <li><a href="http://dev.ckeditor.com/ticket/6991">#6991</a> : Finnish;</li>
402
+ <li><a href="http://dev.ckeditor.com/ticket/6357">#6357</a> : French;</li>
403
+ <li><a href="http://dev.ckeditor.com/ticket/7055">#7055</a> : Polish;</li>
404
+ <li><a href="http://dev.ckeditor.com/ticket/7068">#7068</a> : German;</li>
405
+ </ul></li>
406
+ </ul>
407
+ <h3>
408
+ CKEditor 3.5</h3>
409
+ <p>
410
+ New features:</p>
411
+ <ul>
412
+ <li><a href="http://dev.ckeditor.com/ticket/4090">#4090</a> : Full Adobe AIR support.</li>
413
+ <li><a href="http://dev.ckeditor.com/ticket/5084">#5084</a> : Dialog windows are now resizable with a grip located in the footer.</li>
414
+ <li><a href="http://dev.ckeditor.com/ticket/5755">#5755</a> : Introduced the <a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.dialog_buttonsOrder">dialog_buttonsOrder</a> setting, making it possible to control the buttons order.</li>
415
+ <li><a href="http://dev.ckeditor.com/ticket/4648">#4648</a> : Added the new iFrame plugin.</li>
416
+ <li><a href="http://dev.ckeditor.com/ticket/6010">#6010</a> : The Automatic option of the font/background color panel now represents the real color.</li>
417
+ <li><a href="http://dev.ckeditor.com/ticket/5654">#5654</a> : New "placeholder" plugin.</li>
418
+ <li><a href="http://dev.ckeditor.com/ticket/6334">#6334</a> : CKEditor now uses <a href="http://www.w3.org/TR/2010/WD-html5-20101019/elements.html#embedding-custom-non-visible-data-with-the-data-attributes">HTML5's data-* attributes</a> for its internal attributes.</li>
419
+ <li><a href="http://dev.ckeditor.com/ticket/6103">#6103</a> : It's now possible to control the styling of inline read-only elements with the <a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.disableReadonlyStyling">disableReadonlyStyling</a> setting. It's also possible to avoid inline-styling any element by setting its "data-cke-nostyle" attribute to "1".</li>
420
+ <li><a href="http://dev.ckeditor.com/ticket/5404">#5404</a> : <a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.fillEmptyBlocks">fillEmptyBlocks</a> configuration option of v2 is now available.</li>
421
+ <li><a href="http://dev.ckeditor.com/ticket/5367">#5367</a> : New <a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#insertText">CKEDITOR.editor#insertText</a> method (check api.html sample page for usages) is now provided to insert plain text into editor.</li>
422
+ <li><a href="http://dev.ckeditor.com/ticket/5367">#5915</a> : New <a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.removeDialogTabs">removeDialogTabs</a> configuration option to hide certain dialog tabs.</li>
423
+ </ul>
424
+ <p>
425
+ Fixed issues:</p>
426
+ <ul>
427
+ <li><a href="http://dev.ckeditor.com/ticket/4821">#4821</a> : Icons in the toolbar were distorted with IE and zoom != 100%.</li>
428
+ <li><a href="http://dev.ckeditor.com/ticket/5587">#5587</a> : Visual improvements in dialogs, reinforce field label on separate line.</li>
429
+ <li><a href="http://dev.ckeditor.com/ticket/4652">#4652</a> : Now it's able to disable editor context menu by simply removing the "contextmenu" plugin.</li>
430
+ <li><a href="http://dev.ckeditor.com/ticket/5599">#5599</a> : Labels of "specialchar" dialog are now translated.</li>
431
+ <li><a href="http://dev.ckeditor.com/ticket/6419">#6419</a> : [IE] List creation by merging problem.</li>
432
+ <li><a href="http://dev.ckeditor.com/ticket/6502">#6502</a> : Removed IE6 image preloading, which was used to defect the duplicate request of background images.</li>
433
+ <li><a href="http://dev.ckeditor.com/ticket/6822">#6822</a> : Added labels to fake objects.</li>
434
+ <li><a href="http://dev.ckeditor.com/ticket/6898">#6898</a> : [IE6] Toolbar icons becomes invisible in RTL.</li>
435
+ <li>Updated the following language files:<ul>
436
+ <li>Hebrew</li>
437
+ </ul></li>
438
+ </ul>
439
+ <h3>
440
+ CKEditor 3.4.3</h3>
441
+ <p>
442
+ Fixed issues:</p>
443
+ <ul>
444
+ <li><a href="http://dev.ckeditor.com/ticket/6554">#6554</a> : [Webkit] cannot type after inserting Page Break.</li>
445
+ <li><a href="http://dev.ckeditor.com/ticket/6569">#6569</a> : Indentation now complies with text direction of the only item.</li>
446
+ <li><a href="http://dev.ckeditor.com/ticket/6579">#6579</a> : The jQuery adapter was not working properly and was turned on in incompatible environments.</li>
447
+ <li><a href="http://dev.ckeditor.com/ticket/6644">#6644</a> : Restrict <code>onmousedown</code> handler to the toolbar area.</li>
448
+ <li><a href="http://dev.ckeditor.com/ticket/6656">#6656</a> : Panelbutton's buttons became active when clicking on Source.</li>
449
+ <li><a href="http://dev.ckeditor.com/ticket/6248">#6248</a> : Whitespaces (<code>nbsp</code> elements) were incorrectly added into empty table cells and list items.</li>
450
+ <li><a href="http://dev.ckeditor.com/ticket/6575">#6575</a> : Tabs disappearing in Link dialog window after a specific sequence of actions.</li>
451
+ <li><a href="http://dev.ckeditor.com/ticket/6510">#6510</a> : Margin mirroring does not respect style configuration.</li>
452
+ <li><a href="http://dev.ckeditor.com/ticket/6471">#6471</a> : BIDI: Pressing Decrease Indent in an RTL bulleted list causes incorrect behaviour.</li>
453
+ <li><a href="http://dev.ckeditor.com/ticket/6479">#6479</a> : BIDI: Language direction is not being preserved when pressing Enter after a Paragraph Format was applied.</li>
454
+ <li><a href="http://dev.ckeditor.com/ticket/6670">#6670</a> : BIDI: Indent &amp; List icons are not reversed when we apply RTL direction to a paragraph with any of Paragraph Formatting options.</li>
455
+ <li><a href="http://dev.ckeditor.com/ticket/6640">#6640</a> : Floating panels are now being closed when switching modes.</li>
456
+ <li><a href="http://dev.ckeditor.com/ticket/4790">#4790</a> : Remove list with multiple items in <code>enterBr</code> doesnot preserve line breaks.</li>
457
+ <li><a href="http://dev.ckeditor.com/ticket/6297">#6297</a> : Floated inline elements are not taking part in behavior of blocks anymore.</li>
458
+ <li><a href="http://dev.ckeditor.com/ticket/6171">#6171</a> : [Firefox] Opening rich content drop-down list scrolls host page to the top when editor has a vertical scrollbar.</li>
459
+ <li><a href="http://dev.ckeditor.com/ticket/6330">#6330</a> : List markers from MS Word with Roman numbering are not preserved.</li>
460
+ <li><a href="http://dev.ckeditor.com/ticket/6720">#6720</a> : Attribute protection might detect wrong elements.</li>
461
+ <li><a href="http://dev.ckeditor.com/ticket/6580">#6580</a> : [IE9] Flash dialog window does not get filled up.</li>
462
+ <li><a href="http://dev.ckeditor.com/ticket/6447">#6447</a> : Decreasing indentation of a list with <code>indentClasses</code> config does not work.</li>
463
+ <li><a href="http://dev.ckeditor.com/ticket/5894">#5894</a> : Adding custom buttons at the bottom of a dialog window does not cause it to expand to include its contents.</li>
464
+ <li><a href="http://dev.ckeditor.com/ticket/6513">#6513</a> : Wrong ARIA attributes created on list options of Styles drop-down list.</li>
465
+ <li><a href="http://dev.ckeditor.com/ticket/6150">#6150</a> : [Safari] Color dialog window was broken.</li>
466
+ <li><a href="http://dev.ckeditor.com/ticket/6747">#6747</a> : Full screen layout issue caused by page element focus outside editor.</li>
467
+ <li><a href="http://dev.ckeditor.com/ticket/6779">#6779</a> : Clicking the <code>body</code> element on elements path turns the selection on and off immediately.</li>
468
+ <li><a href="http://dev.ckeditor.com/ticket/6781">#6781</a> : [IE7] Dialog windows are broken with RTL, Office 2003 and v2 skins.</li>
469
+ <li><a href="http://dev.ckeditor.com/ticket/6798">#6798</a> : [IE7] Dialog window buttons disappearing in RTL after dragging.</li>
470
+ <li><a href="http://dev.ckeditor.com/ticket/6806">#6806</a> : [IE7] Dialog window buttons invisible on focus.</li>
471
+ <li><a href="http://dev.ckeditor.com/ticket/6588">#6588</a> : Copy and paste adds <code>&lt;span&gt;</code> if SCAYT is enabled.</li>
472
+ <li><a href="http://dev.ckeditor.com/ticket/6673">#6673</a> : IE Target combo for Image Link shown as blank even when we select <code>&lt;not set&gt;</code> as an option.</li>
473
+ <li>Updated the following language files:<ul>
474
+ <li><a href="http://dev.ckeditor.com/ticket/6756">#6756</a> : Hungarian;</li>
475
+ <li><a href="http://dev.ckeditor.com/ticket/6794">#6794</a> : Japanese;</li>
476
+ </ul></li>
477
+ </ul>
478
+ <h3>
479
+ CKEditor 3.4.2</h3>
480
+ <p>
481
+ New features:</p>
482
+ <ul>
483
+ <li><a href="http://dev.ckeditor.com/ticket/5024">#5024</a> : Added a sample that shows how to output HTML that is valid for Flash.</li>
484
+ </ul>
485
+ <p>
486
+ Fixed issues:</p>
487
+ <ul>
488
+ <li><a href="http://dev.ckeditor.com/ticket/5237">#5237</a> : English text in dialogs' title was flipped when using RTL language (office2003 and v2 skins).</li>
489
+ <li><a href="http://dev.ckeditor.com/ticket/6289">#6289</a> : Deleting nested table removed the parent cell.</li>
490
+ <li><a href="http://dev.ckeditor.com/ticket/6341">#6341</a> : The editor contents now have the text cursor.</li>
491
+ <li><a href="http://dev.ckeditor.com/ticket/6153">#6153</a> : Chrome: tab focus is wrong.</li>
492
+ <li><a href="http://dev.ckeditor.com/ticket/6261">#6261</a> : Focus and infinite loop between multiple editors.</li>
493
+ <li><a href="http://dev.ckeditor.com/ticket/6170">#6170</a> : Dedicated class names are removed from floating panels when opening another panel.</li>
494
+ <li><a href="http://dev.ckeditor.com/ticket/6339">#6339</a> : Autogrow plugin now doesn't work on maximized editors.</li>
495
+ <li><a href="http://dev.ckeditor.com/ticket/6237">#6237</a> : BIDI: Applying same language direction to all paragraphs not working.</li>
496
+ <li><a href="http://dev.ckeditor.com/ticket/6353">#6353</a> : [IE] Resize was broken with office2003 and v2 skins.</li>
497
+ <li><a href="http://dev.ckeditor.com/ticket/6375">#6375</a> : Avoiding errors when hiding the editor after the blur event.</li>
498
+ <li><a href="http://dev.ckeditor.com/ticket/6133">#6133</a> : Styled paragraphs result on buggy list creation.</li>
499
+ <li><a href="http://dev.ckeditor.com/ticket/5074">#5074</a> : Link target is not removed when changing to popup.</li>
500
+ <li><a href="http://dev.ckeditor.com/ticket/6408">#6408</a> : [IE] Autogrow now works correctly on Quirks.</li>
501
+ <li><a href="http://dev.ckeditor.com/ticket/6420">#6420</a> : [IE] The table properties dialog now correctly retrieves the caption text.</li>
502
+ <li><a href="http://dev.ckeditor.com/ticket/6141">#6141</a> : It was impossible to outdent a list when indentOffset was set to 0.</li>
503
+ <li><a href="http://dev.ckeditor.com/ticket/6377">#6377</a> : FF width and height are not shown for smiley in Image properties dialog.</li>
504
+ <li><a href="http://dev.ckeditor.com/ticket/5399">#5399</a> : Lists pasted from Word do not maintain their nesting.</li>
505
+ <li><a href="http://dev.ckeditor.com/ticket/6225">#6225</a> : [FF] Cannot transform several lines to list with enterMode BR.</li>
506
+ <li><a href="http://dev.ckeditor.com/ticket/6467">#6467</a> : [FF] It is now possible to disable the plugin command on "mode" event.</li>
507
+ <li><a href="http://dev.ckeditor.com/ticket/6461">#6461</a> : Attributes are now being kept when changing block formatting.</li>
508
+ <li><a href="http://dev.ckeditor.com/ticket/6226">#6226</a> : BIDI: Language direction applied to a Paragraph is removed when we apply one of Paragraph formatting options.</li>
509
+ <li><a href="http://dev.ckeditor.com/ticket/5395">#5395</a> : [Opera] Native context menu incorrectly opened after Opera 10.2.</li>
510
+ <li><a href="http://dev.ckeditor.com/ticket/6444">#6444</a> : [Opera] Close panels and dialogs don't return focus to wysiwyg frame.</li>
511
+ <li><a href="http://dev.ckeditor.com/ticket/6332">#6332</a> : IE: V2 skin bottom dialog's border broken.</li>
512
+ <li><a href="http://dev.ckeditor.com/ticket/5646">#5646</a> : Parser incorrectly removes inline element when there's only one comment node enclosed.</li>
513
+ <li><a href="http://dev.ckeditor.com/ticket/6189">#6189</a> : Minor code size reduction.</li>
514
+ <li><a href="http://dev.ckeditor.com/ticket/5045">#5045</a> : uiColor behaved wrong if multiple editors were used with period in their names.</li>
515
+ <li><a href="http://dev.ckeditor.com/ticket/5766">#5766</a> : Config entry "ignoreEmptyParagraph" should only remove one single empty paragraph in document.</li>
516
+ <li><a href="http://dev.ckeditor.com/ticket/5931">#5931</a> : Unable to apply inline style because of nested elements with same style name.</li>
517
+ <li><a href="http://dev.ckeditor.com/ticket/6083">#6083</a> : Dialog close sometimes cause collapsed editor selection before the insertion.</li>
518
+ <li><a href="http://dev.ckeditor.com/ticket/6253">#6253</a> : BIDI: creating a Numbered/Bulleted list causing improper behavior on bidi.</li>
519
+ <li><a href="http://dev.ckeditor.com/ticket/4023">#4023</a> : [Opera] Maximize plugin.</li>
520
+ <li><a href="http://dev.ckeditor.com/ticket/6403">#6403</a> : [Opera] Font name options are not correctly marked in dropdown list.</li>
521
+ <li><a href="http://dev.ckeditor.com/ticket/4534">#4534</a> : [Opera] Arrow key to navigate through combo list has side effects of window scrolling.</li>
522
+ <li><a href="http://dev.ckeditor.com/ticket/6534">#6534</a> : [Opera] Menu key brings up both CKEditor and browser context menu.</li>
523
+ <li><a href="http://dev.ckeditor.com/ticket/6534">#6534</a> : [Opera] Menu key brings up both CKEditor and browser context menu.</li>
524
+ <li><a href="http://dev.ckeditor.com/ticket/6416">#6416</a> : [IE9] Unable to make text selection with mouse in source area.</li>
525
+ <li><a href="http://dev.ckeditor.com/ticket/6417">#6417</a> : [IE9] Context menu opens at the upper-left corner always.</li>
526
+ <li><a href="http://dev.ckeditor.com/ticket/6501">#6501</a> : [IE9] Context menu item layout is broken.</li>
527
+ <li><a href="http://dev.ckeditor.com/ticket/6099">#6099</a> : BIDI: when we apply explicit language direction to Numbered/Bulleted List the corresponding BIDI Tool bar icon is not highlighted in the Toolbar.</li>
528
+ <li><a href="http://dev.ckeditor.com/ticket/6100">#6100</a> : BIDI: when we change Table language direction indentation of text in Table cells is not applied correctly.</li>
529
+ <li><a href="http://dev.ckeditor.com/ticket/6376">#6376</a> : BIDI: buttons should not toggle the base language direction.</li>
530
+ <li><a href="http://dev.ckeditor.com/ticket/6235">#6235</a> : BIDI: Applying direction to multi-paragraph selection within a div.</li>
531
+ <li><a href="http://dev.ckeditor.com/ticket/6187">#6187</a> : [IE6] Multi-instance loading produces 404s on background images.</li>
532
+ <li><a href="http://dev.ckeditor.com/ticket/5446">#5446</a> : Setting config.filebrowserImageBrowseUrl results in displaying also Browser Server on links.</li>
533
+ <li><a href="http://dev.ckeditor.com/ticket/5626">#5626</a> : CKeditor 3.2.1 : html content attached makes ckeditor crash the browser FF/IE.</li>
534
+ <li><a href="http://dev.ckeditor.com/ticket/6508">#6508</a> : BiDi: Margin mirroring logic doesn't honor CSS direction.</li>
535
+ <li><a href="http://dev.ckeditor.com/ticket/6043">#6043</a> : BIDI: When we apply RTL direction to a right aligned Paragraph, Paragraph is not moved to the left &amp; Alignment of Paragraph is not changed.</li>
536
+ <li><a href="http://dev.ckeditor.com/ticket/6485">#6485</a> : BIDI: When direction is applied on partial selected list, the style is been incorrectly applied to the entire list.</li>
537
+ <li><a href="http://dev.ckeditor.com/ticket/6087">#6087</a> : Cursor of input fields in dialog isn't visible in RTL.</li>
538
+ <li><a href="http://dev.ckeditor.com/ticket/5595">#5595</a> : Extra leading spaces added in preformatted block.</li>
539
+ <li><a href="http://dev.ckeditor.com/ticket/6094">#6094</a> : Match full word option doesn't stop on block boundaries.</li>
540
+ <li><a href="http://dev.ckeditor.com/ticket/5730">#5730</a> : [Safari] Continual pastes (holding paste key) breaks document contents.</li>
541
+ <li><a href="http://dev.ckeditor.com/ticket/5850">#5850</a> : [IE] Inline style misbehaviors at the beginning of numbered/bulleted list.</li>
542
+ <li>Updated the following language files:<ul>
543
+ <li><a href="http://dev.ckeditor.com/ticket/6427">#6427</a> : Ukrainian;</li>
544
+ <li><a href="http://dev.ckeditor.com/ticket/6464">#6464</a> : Finnish;</li>
545
+ <li>Hebrew;</li>
546
+ </ul></li>
547
+ </ul>
548
+ <h3>
549
+ CKEditor 3.4.1</h3>
550
+ <p>
551
+ New features:</p>
552
+ <ul>
553
+ <li><a href="http://dev.ckeditor.com/ticket/5308">#5308</a> : Introduced the <a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.filebrowserWindowFeatures">filebrowserWindowFeatures</a> setting, making it possible to have custom window features in the file browser window.</li>
554
+ </ul>
555
+ <p>
556
+ Fixed issues:</p>
557
+ <ul>
558
+ <li><a href="http://dev.ckeditor.com/ticket/6027">#6027</a> : Modifying Table Properties by selecting more than one cell caused issues.</li>
559
+ <li><a href="http://dev.ckeditor.com/ticket/6146">#6146</a> : IE: Floating panels were being opened in the wrong place in RTL pages with horizontal scrollbars.</li>
560
+ <li><a href="http://dev.ckeditor.com/ticket/6055">#6055</a> : The timestamp is now added only once to each loaded file.</li>
561
+ <li><a href="http://dev.ckeditor.com/ticket/6097">#6097</a> : The bookmarks now use the right name.</li>
562
+ <li><a href="http://dev.ckeditor.com/ticket/5717">#5717</a> : Removed the scayt_contextMenuOntop setting and the SCAYT context menu options are always on top.</li>
563
+ <li><a href="http://dev.ckeditor.com/ticket/5956">#5956</a> : [FF] It was impossible to create an editor inside an hidden container.</li>
564
+ <li><a href="http://dev.ckeditor.com/ticket/5753">#5753</a> : It was impossible to have a default value for the name field in the select dialog.</li>
565
+ <li><a href="http://dev.ckeditor.com/ticket/6041">#6041</a> : BIDI: Direction of Increase Indent &amp; Decrease Indent icons are not reversed after changing Lang direction to RTL.</li>
566
+ <li><a href="http://dev.ckeditor.com/ticket/6138">#6138</a> : List indentation is not working.</li>
567
+ <li><a href="http://dev.ckeditor.com/ticket/5649">#5649</a> : Image dialog too wide when many styles are set.</li>
568
+ <li><a href="http://dev.ckeditor.com/ticket/5715">#5715</a> : Cell color picker dialog returns focus to document.</li>
569
+ <li><a href="http://dev.ckeditor.com/ticket/6108">#6108</a> : Fixed div style.</li>
570
+ <li><a href="http://dev.ckeditor.com/ticket/5336">#5336</a> : Remove object style.</li>
571
+ <li><a href="http://dev.ckeditor.com/ticket/6155">#6155</a> : [[FF]] Modifying Table Header Properties by selecting first Row, causing several issues.</li>
572
+ <li><a href="http://dev.ckeditor.com/ticket/6163">#6163</a> : Focus not going to Tabs in Image dialog when we went to Edit the Image.</li>
573
+ <li><a href="http://dev.ckeditor.com/ticket/6177">#6177</a> : IE we can't start Numbered/Bulleted list on a Empty page.</li>
574
+ <li><a href="http://dev.ckeditor.com/ticket/6034">#6034</a> : Horizontal Alignment applied to Table cell is not updated correctly in the Toolbar.</li>
575
+ <li><a href="http://dev.ckeditor.com/ticket/6112">#6112</a> : BIDI: Alignment set to text in Table cell is not shown in the Tool bar when we press Enter to start a new Paragraph.</li>
576
+ <li><a href="http://dev.ckeditor.com/ticket/6117">#6117</a> : BIDI: Language direction is changing when we come out of Numbered/Bulleted list.</li>
577
+ <li><a href="http://dev.ckeditor.com/ticket/6182">#6182</a> : Language Direction field on the Advanced tab of Table Properties dialog has a fixed pixel width.</li>
578
+ <li><a href="http://dev.ckeditor.com/ticket/5487">#5487</a> : Fullpage writer problem with line-break.</li>
579
+ <li><a href="http://dev.ckeditor.com/ticket/6197">#6197</a> : The CKEDITOR.loader base path auto-detection was not working with the _source folder.</li>
580
+ <li><a href="http://dev.ckeditor.com/ticket/6240">#6240</a> : Font Names &amp; Font Sizes should be shown Left Align even for RTL Languages.</li>
581
+ <li><a href="http://dev.ckeditor.com/ticket/5975">#5975</a> : Page-break should have proper Alt Text instead of Unknown object. so that JAWS reads it properly.</li>
582
+ <li><a href="http://dev.ckeditor.com/ticket/6255">#6255</a> : Inserting a page break as the first node triggered an error.</li>
583
+ <li><a href="http://dev.ckeditor.com/ticket/6188">#6188</a> : [IE7] Automatic color button had the wrong cursor.</li>
584
+ <li><a href="http://dev.ckeditor.com/ticket/6129">#6129</a> : The show blocks' labels are now shown in the right for RTL languages.</li>
585
+ <li><a href="http://dev.ckeditor.com/ticket/5421">#5421</a> : &amp;shy; entity not converted when config.entities=false.</li>
586
+ <li><a href="http://dev.ckeditor.com/ticket/5769">#5769</a> : xhtml code generation problem &amp;nbsp; instead of &amp;#160; (htmlentities, entities,entities_additional,..., configuration).</li>
587
+ <li><a href="http://dev.ckeditor.com/ticket/4472">#4472</a> : [FF3] Browser window scrolls to loaded CKEditor.</li>
588
+ <li><a href="http://dev.ckeditor.com/ticket/6230">#6230</a> : Fixed invalid parameter count for setTimeout function call.</li>
589
+ <li><a href="http://dev.ckeditor.com/ticket/5335">#5335</a> : Several lines' formatted data will be merged to one line when we apply Numbers/Bullets.</li>
590
+ <li><a href="http://dev.ckeditor.com/ticket/5353">#5353</a> : wrong width of editor after resize() called in Firefox 3.6.</li>
591
+ <li><a href="http://dev.ckeditor.com/ticket/5778">#5778</a> : [IE] Unwanted scroll on first mouse right-click.</li>
592
+ <li><a href="http://dev.ckeditor.com/ticket/5218">#5218</a> : [FF] Copy/paste of an image from same domain changed URL to relative URL.</li>
593
+ <li><a href="http://dev.ckeditor.com/ticket/6265">#6265</a> : Popup window properties were visible in the link dialog's target tab when nothing was selected.</li>
594
+ <li><a href="http://dev.ckeditor.com/ticket/6075">#6075</a> : [FF] Newly created links didn't fill in information on edit.</li>
595
+ <li><a href="http://dev.ckeditor.com/ticket/6183">#6183</a> : The toolbar panels options sometimes had the contents' link color.</li>
596
+ <li><a href="http://dev.ckeditor.com/ticket/6192">#6192</a> : [WebKit] Inserting smileys was not working because of editor focus issues.</li>
597
+ <li><a href="http://dev.ckeditor.com/ticket/6178">#6178</a> : [WebKit] Inserting elements by code was failing if the editor didn't receive the focus first.</li>
598
+ <li><a href="http://dev.ckeditor.com/ticket/6179">#6179</a> : [WebKit] The Image dialog was not working if the editor didn't receive the focus first.</li>
599
+ <li><a href="http://dev.ckeditor.com/ticket/4657">#4657</a> : [Opera] Styles where not working with collapsed selections.</li>
600
+ <li><a href="http://dev.ckeditor.com/ticket/5839">#5839</a> : "Insert row after" was removing the ids of the elements from the clicked row.</li>
601
+ <li><a href="http://dev.ckeditor.com/ticket/6315">#6315</a> : DIV plugin TT #2885 regression.</li>
602
+ <li>Updated the following language files:<ul>
603
+ <li><a href="http://dev.ckeditor.com/ticket/6246">#6246</a> : Chinese Simplified;</li>
604
+ <li><a href="http://dev.ckeditor.com/ticket/6256">#6256</a> : Dutch;</li>
605
+ <li><a href="http://dev.ckeditor.com/ticket/6271">#6271</a> : English;</li>
606
+ </ul></li>
607
+ </ul>
608
+ <h3>
609
+ CKEditor 3.4</h3>
610
+ <p>
611
+ Fixed issues:</p>
612
+ <ul>
613
+ <li><a href="http://dev.ckeditor.com/ticket/6118">#6118</a> : Initial focus is now set to the tabs in the table properties dialog.</li>
614
+ <li><a href="http://dev.ckeditor.com/ticket/6135">#6135</a> : The dialogadvtab plugin now uses the correct label.</li>
615
+ <li><a href="http://dev.ckeditor.com/ticket/6125">#6125</a> : Focus was lost after applying commands in Opera.</li>
616
+ <li><a href="http://dev.ckeditor.com/ticket/6137">#6137</a> : The table dialog was missing the default width value on second opening.</li>
617
+ </ul>
618
+ <h3>
619
+ CKEditor 3.4 Beta</h3>
620
+ <p>
621
+ New features:</p>
622
+ <ul>
623
+ <li><a href="http://dev.ckeditor.com/ticket/5909">#5909</a> : New BiDi feature, making it possible to switch the base language direction of block elements.</li>
624
+ <li><a href="http://dev.ckeditor.com/ticket/5268">#5268</a> : Introducing the "tableresize" plugin, which makes it possible to resize tables columns by mouse drag. It's not enabled by default, so it must be enabled in the configurations file.</li>
625
+ <li><a href="http://dev.ckeditor.com/ticket/979">#979</a> : New <a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.enableTabKeyTools">enableTabKeyTools</a> configuration to allow using the TAB key to navigate through table cells.</li>
626
+ <li><a href="http://dev.ckeditor.com/ticket/4606">#4606</a> : Introduce the "autogrow" plugin, which makes the editor resize automatically, based on the contents size.</li>
627
+ <li><a href="http://dev.ckeditor.com/ticket/5737">#5737</a> : Added support for the <a href="http://www.w3.org/TR/html5/editing.html#contenteditable">HTML5 contenteditable attribute</a>, making it possible to define read only regions into the editor contents.</li>
628
+ <li><a href="http://dev.ckeditor.com/ticket/5418">#5418</a> : New "Advanced" tab introduced on the Table Properties dialog. It's based on the new dialogadvtab plugin.</li>
629
+ <li><a href="http://dev.ckeditor.com/ticket/6082">#6082</a> : Introduced the <a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.useComputedState">useComputedState</a> setting, making it possible to control whether toolbar features, like alignment and direction, should reflect the "computed" selection states, even when the effective feature value is not applied.</li>
630
+ </ul>
631
+ <p>
632
+ Fixed issues:</p>
633
+ <ul>
634
+ <li><a href="http://dev.ckeditor.com/ticket/5911">#5911</a> : BiDi: List items should support and retain correct base language direction</li>
635
+ <li><a href="http://dev.ckeditor.com/ticket/5689">#5689</a> : Make it possible to run CKEditor inside of Firefox chrome.</li>
636
+ <li><a href="http://dev.ckeditor.com/ticket/6042">#6042</a> : It wasn't possible to align a paragraph with the dir attribute to the opposite direction.</li>
637
+ <li><a href="http://dev.ckeditor.com/ticket/6058">#6058</a> : Fixed a small style glitch with file upload fields in IE+Quirks.</li>
638
+ </ul>
639
+ <h3>
640
+ CKEditor 3.3.2</h3>
641
+ <p>
642
+ New features:</p>
643
+ <ul>
644
+ <li><a href="http://dev.ckeditor.com/ticket/5882">#5882</a> : Introduce the dialog#selectPage event, replicating the OnDialogTabChange feature available in FCKeditor 2.</li>
645
+ <li><a href="http://dev.ckeditor.com/ticket/5927">#5927</a> : The native controls in ui.dialog.elements can be styled with the controlStyle definition.</li>
646
+ </ul>
647
+ <p>
648
+ Fixed issues:</p>
649
+ <ul>
650
+ <li><a href="http://dev.ckeditor.com/ticket/1644">#1644</a> : Removed references to cursor:hand in the stylesheets.</li>
651
+ <li><a href="http://dev.ckeditor.com/ticket/5411">#5411</a> : Anchor, hidden fields and Page-Break objects can no longer be resized.</li>
652
+ <li><a href="http://dev.ckeditor.com/ticket/5456">#5456</a> : Initial focus incorect in api_dialog sample page.</li>
653
+ <li><a href="http://dev.ckeditor.com/ticket/5628">#5628</a> : Incorrect &lt;pre&gt; siblings merging.</li>
654
+ <li><a href="http://dev.ckeditor.com/ticket/5829">#5829</a> : Adding validation for start number field in list style dialog.</li>
655
+ <li><a href="http://dev.ckeditor.com/ticket/5845">#5845</a> : Context menu on empty list item loses selection.</li>
656
+ <li><a href="http://dev.ckeditor.com/ticket/5860">#5860</a> : [IE] &gt; in attribute values are incorrectly escaped.</li>
657
+ <li><a href="http://dev.ckeditor.com/ticket/5905">#5905</a> : SCAYT is not any more enabled by default.</li>
658
+ <li><a href="http://dev.ckeditor.com/ticket/5736">#5736</a> : Improved the text generated for mailto: links if no text was selected.</li>
659
+ <li><a href="http://dev.ckeditor.com/ticket/4779">#4779</a> : Adjust resize_minWidth and resize_minHeight if smaller than actual dimensions.</li>
660
+ <li><a href="http://dev.ckeditor.com/ticket/5687">#5687</a> : Navigation through colors is now compatible with RTL.</li>
661
+ <li><a href="http://dev.ckeditor.com/ticket/4615">#4615</a> : [IE] Text fields are no longer disrupted in dialog with RTL.</li>
662
+ <li><a href="http://dev.ckeditor.com/ticket/5887">#5887</a> : The number of columns in the smileys table is now configurable via the smiley_columns setting.</li>
663
+ <li><a href="http://dev.ckeditor.com/ticket/5100">#5100</a> : It was possible to drag&amp;drop some elements like context menu items or dropdown entries.</li>
664
+ <li><a href="http://dev.ckeditor.com/ticket/5933">#5933</a> : Text color and background color panels don't have scrollbars anymore under office2003 and v2 skins.</li>
665
+ <li><a href="http://dev.ckeditor.com/ticket/5943">#5943</a> : An error is no longer generated when using percent or pixel values in the image dialog.</li>
666
+ <li><a href="http://dev.ckeditor.com/ticket/5951">#5951</a> : Avoid problems with security systems due to the usage of UniversalXPConnect.</li>
667
+ <li><a href="http://dev.ckeditor.com/ticket/5441">#5441</a> : Avoid errors if the editor instance is removed from the DOM before calling its destroy() method.</li>
668
+ <li><a href="http://dev.ckeditor.com/ticket/4997">#4997</a> : Provide better access to the native input in the ui.dialog.file element.</li>
669
+ <li><a href="http://dev.ckeditor.com/ticket/5914">#5914</a> : Modified the Smileys dialog to make active only the images and not their borders.</li>
670
+ <li><a href="http://dev.ckeditor.com/ticket/5565">#5565</a> : The scrollbar does not behaves erratically when opening a rich combo in RTL page.</li>
671
+ <li><a href="http://dev.ckeditor.com/ticket/5843">#5843</a> : In CKEditor 3.3: When we set the focus in the 'instanceReady' event, FF3.6 is giving js error.</li>
672
+ <li><a href="http://dev.ckeditor.com/ticket/5902">#5902</a> : paste and pastetext dialogs cannot be skinned easily.</li>
673
+ <li><a href="http://dev.ckeditor.com/ticket/5959">#5959</a> : Dialog auto focus does not check for hidden tabs.</li>
674
+ <li><a href="http://dev.ckeditor.com/ticket/5415">#5415</a> : Undo not working when we change the Table Properties for the table on a saved page.</li>
675
+ <li><a href="http://dev.ckeditor.com/ticket/5435">#5435</a> : IE: we can't start Numbered/Bulleted list in Tables by Clicking on Insert/Remove Numbers/Bullets Icon.</li>
676
+ <li><a href="http://dev.ckeditor.com/ticket/5832">#5832</a> : The JQuery adapter sample is not working properly with SSL.</li>
677
+ <li><a href="http://dev.ckeditor.com/ticket/5728">#5728</a> : Text field &amp; Upload Button in Upload Tab of Image Properties dialog are not shown Properly in Arabic.</li>
678
+ <li><a href="http://dev.ckeditor.com/ticket/5436">#5436</a> : IE: Cursor goes to next Table Cell after we insert a Smiley in the Table Cell.</li>
679
+ <li><a href="http://dev.ckeditor.com/ticket/5580">#5580</a> : Maximize does not work properly in the Office 2003 and V2 skins.</li>
680
+ <li><a href="http://dev.ckeditor.com/ticket/5495">#5495</a> : The link dialog was breaking the undo system on some situations.</li>
681
+ <li><a href="http://dev.ckeditor.com/ticket/5775">#5775</a> : Required field's label to contain a CSS class to allow it to be styled differently.</li>
682
+ <li><a href="http://dev.ckeditor.com/ticket/5999">#5999</a> : Table dialog rows and columns fields are now marked as required.</li>
683
+ <li><a href="http://dev.ckeditor.com/ticket/5693">#5693</a> : baseHref detection in the flash dialog now works correctly.</li>
684
+ <li><a href="http://dev.ckeditor.com/ticket/5690">#5690</a> : Table cell's width attribute is now respected properly.</li>
685
+ <li><a href="http://dev.ckeditor.com/ticket/5819">#5819</a> : Introducing the new removeFormatCleanup event and making sure remove format doesn't break the showborder plugin.</li>
686
+ <li><a href="http://dev.ckeditor.com/ticket/5558">#5558</a> : After pasting on WebKit based browsers the editor now scrolls to the end of the pasted content.</li>
687
+ <li><a href="http://dev.ckeditor.com/ticket/5799">#5799</a> : Correct plugin dependencies for the liststyle plugin with contextMenu and dialog.</li>
688
+ <li><a href="http://dev.ckeditor.com/ticket/5436">#5436</a> : IE: The cursor was moving to the wrong position when inserting inline elements at the end of cells on tables.</li>
689
+ <li><a href="http://dev.ckeditor.com/ticket/5984">#5984</a> : Firefox: CTRL+HOME was creating an unwanted empty paragraph at the start of the document.</li>
690
+ <li><a href="http://dev.ckeditor.com/ticket/5634">#5634</a> : IE: It was needed to click twice in the editor to make it editable on some situations.</li>
691
+ <li><a href="http://dev.ckeditor.com/ticket/5338">#5338</a> : Pasting from Open Office could lead on error.</li>
692
+ <li><a href="http://dev.ckeditor.com/ticket/5224">#5224</a> : Some invalid markup could break the editor.</li>
693
+ <li><a href="http://dev.ckeditor.com/ticket/5455">#5455</a> : It was not possible to remove formatting from pasted content on specific cases.</li>
694
+ <li><a href="http://dev.ckeditor.com/ticket/5735">#5735</a> : IE: The editor was having focus issues when the previous selection got hidden by scroll operations.</li>
695
+ <li><a href="http://dev.ckeditor.com/ticket/5563">#5563</a> : Firefox: The disableObjectResizing and disableNativeTableHandles settings stopped working.</li>
696
+ <li><a href="http://dev.ckeditor.com/ticket/5781">#5781</a> : Firefox: Editing was not possible in an empty document.</li>
697
+ <li><a href="http://dev.ckeditor.com/ticket/5293">#5293</a> : Firefox: Unwanted BR tags were being left in the editor output when it should be empty.</li>
698
+ <li><a href="http://dev.ckeditor.com/ticket/5280">#5280</a> : IE: Scrollbars where reacting improperly when clicking in the bar space.</li>
699
+ <li><a href="http://dev.ckeditor.com/ticket/5840">#5840</a> : Some dialog access keys are conflicting with "Ctrl + A", select all text behavior on text input.</li>
700
+ <li><a href="http://dev.ckeditor.com/ticket/6059">#6059</a> : Changing list type didn't preserve the list's attributes.</li>
701
+ <li><a href="http://dev.ckeditor.com/ticket/5193">#5193</a> : In Firefox, the element path options had the text cursor instead of the arrow.</li>
702
+ <li><a href="http://dev.ckeditor.com/ticket/6073">#6073</a> : The list context menu was showing the wrong option when in a mixed list hierarchy.</li>
703
+ <li><a href="http://dev.ckeditor.com/ticket/6074">#6074</a> : The Insert Table Column command was duplicating the selected column cells ids.</li>
704
+ <li><a href="http://dev.ckeditor.com/ticket/6066">#6066</a> : The toolbar combos had the text cursor instead of the arrow.</li>
705
+ <li><a href="http://dev.ckeditor.com/ticket/6062">#6062</a> : The toolbar buttons had the text cursor instead of the arrow.</li>
706
+ <li><a href="http://dev.ckeditor.com/ticket/6068">#6068</a> : [IE7] A few labels were hidden in a RTL language.</li>
707
+ <li><a href="http://dev.ckeditor.com/ticket/6000">#6000</a> : Safari and Chrome where scrolling the contents to the top when moving the focus to the editor.</li>
708
+ <li><a href="http://dev.ckeditor.com/ticket/6090">#6090</a> : IE: Textarea with selection inside causes Link dialog issues.</li>
709
+ <li><a href="http://dev.ckeditor.com/ticket/5079">#5079</a> : Page break in lists move to above the list when you switch from WYSIWYG to HTML mode and back.</li>
710
+ <li>Updated the following language files:<ul>
711
+ <li>Chinese Simplified;</li>
712
+ <li>Hebrew;</li>
713
+ <li><a href="http://dev.ckeditor.com/ticket/5962">#5962</a> : German;</li>
714
+ <li><a href="http://dev.ckeditor.com/ticket/5645">#5645</a> : Portuguese;</li>
715
+ <li><a href="http://dev.ckeditor.com/ticket/5797">#5797</a> : Turkish;</li>
716
+ </ul></li>
717
+ </ul>
718
+ <h3>
719
+ CKEditor 3.3.1</h3>
720
+ <p>
721
+ Fixed issues:</p>
722
+ <ul>
723
+ <li><a href="http://dev.ckeditor.com/ticket/5780">#5780</a> : Text selection lost when opening some of the dialogs.</li>
724
+ <li><a href="http://dev.ckeditor.com/ticket/5787">#5787</a> : Liststyle plugin wasn't packaged into the core (CKEDITOR.resourceManager.load exception).</li>
725
+ <li><a href="http://dev.ckeditor.com/ticket/5637">#5637</a> : Fix wrong nesting that generated "&lt;head&gt; must be a child of &lt;html&gt;" warning in Webkit.</li>
726
+ <li><a href="http://dev.ckeditor.com/ticket/5790">#5790</a> : Internal only attributes output on fullpage &lt;html&gt; tag.</li>
727
+ <li><a href="http://dev.ckeditor.com/ticket/5761">#5761</a> : [IE] Color dialog matrix buttons are barely clickable in quirks mode.</li>
728
+ <li><a href="http://dev.ckeditor.com/ticket/5759">#5759</a> : [IE] Clicking on the scrollbar and then on the host page causes error.</li>
729
+ <li><a href="http://dev.ckeditor.com/ticket/5772">#5772</a> : List style dialog is missing tab page ids.</li>
730
+ <li><a href="http://dev.ckeditor.com/ticket/5782">#5782</a> : [FF] Wysiwyg mode is broken by 'display' style changes on editor's parent DOM tree.</li>
731
+ <li><a href="http://dev.ckeditor.com/ticket/5801">#5801</a> : [IE] contentEditable="false" doesn't apply in effect on inline-elements.</li>
732
+ <li><a href="http://dev.ckeditor.com/ticket/5794">#5794</a> : Empty find matching twice results in JavaScript error.</li>
733
+ <li><a href="http://dev.ckeditor.com/ticket/5732">#5732</a> : If it isn't possible to connect to the SCAYT servers the dialogs might hang in Firefox. Fix for Firefox&gt;=3.6.</li>
734
+ <li><a href="http://dev.ckeditor.com/ticket/5807">#5807</a> : [FF2] New page command results in uneditable document.</li>
735
+ <li><a href="http://dev.ckeditor.com/ticket/5807">#5807</a> : [FF2] SCAYT plugin is disabled in Firefox2 due to selection interference.</li>
736
+ <li><a href="http://dev.ckeditor.com/ticket/5772">#5772</a> : [IE] Some numbered list style types are not supported by IE6/7 and causes JavaScript error.</li>
737
+ </ul>
738
+ <h3>
739
+ CKEditor 3.3</h3>
740
+ <p>
741
+ New features:</p>
742
+ <ul>
743
+ <li><a href="http://dev.ckeditor.com/ticket/635">#635</a> : The properties dialog will now open when double clicking on objects.</li>
744
+ <li><a href="http://dev.ckeditor.com/ticket/3893">#3893</a> : It's now possible to indent/outdent lists when selecting the first list item.</li>
745
+ <li><a href="http://dev.ckeditor.com/ticket/4968">#4968</a> : The <a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.contentsLangDirection">contentsLangDirection</a> setting now has a default value 'ui' which inherit language direction from the editor UI language.</li>
746
+ <li><a href="http://dev.ckeditor.com/ticket/4649">#4649</a> : The color picker dialog is now accessible.</li>
747
+ <li><a href="http://dev.ckeditor.com/ticket/3593">#3593</a> : The editing area is now enabled by contentEditable="true" instead of designMode="on" to allow creating uneditable content elements in all browsers.</li>
748
+ <li><a href="http://dev.ckeditor.com/ticket/4056">#4056</a> : Hidden fields will now be displayed as fake element just like in FCKeditor 2.</li>
749
+ </ul>
750
+ <h3>
751
+ CKEditor 3.2.2</h3>
752
+ <p>
753
+ New features:</p>
754
+ <ul>
755
+ <li>The SCAYT spell checker is now enabled by default through the <a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.scayt_autoStartup">autoStartup</a> setting.</li>
756
+ <li><a href="http://dev.ckeditor.com/ticket/5631">#5631</a> : The SCAYT context menu options can now be reorganized through the <a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.scayt_contextMenuItemsOrder">scayt_contextMenuItemsOrder</a> setting.</li>
757
+ <li><a href="http://dev.ckeditor.com/ticket/4231">#4231</a> : Introducing the <a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.resize_dir">resize_dir setting</a>, to be able to restrict manual resizing of the editor to only one direction (horizontal/vertical).</li>
758
+ <li><a href="http://dev.ckeditor.com/ticket/5479">#5479</a> : Introducing the classic ASP integration files and samples.</li>
759
+ <li><a href="http://dev.ckeditor.com/ticket/5024">#5024</a> : Added samples (<a href="http://nightly.ckeditor.com/latest/ckeditor/_samples/output_html.html">HTML</a> and <a href="http://nightly.ckeditor.com/latest/ckeditor/_samples/output_xhtml.html">XHTML</a>) to show how to output HTML using fonts and other attributes instead of styles.</li>
760
+ <li><a href="http://dev.ckeditor.com/ticket/4358">#4358</a> : Introduced the List Properties dialog.</li>
761
+ <li><a href="http://dev.ckeditor.com/ticket/5485">#5485</a> : Adding the <a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.contentsLanguage">contentsLanguage</a> configuration option to be able to set the language for the editor contents.</li>
762
+ </ul>
763
+ <p>
764
+ Fixed issues:</p>
765
+ <ul>
766
+ <li><a href="http://dev.ckeditor.com/ticket/5330">#5330</a> : Corrected detection of CTRL and META keys in Macs for the context menu.</li>
767
+ <li><a href="http://dev.ckeditor.com/ticket/5434">#5434</a> : Fixed access denied issues with IE when accessing web sites through IPv6 IP addresses.</li>
768
+ <li><a href="http://dev.ckeditor.com/ticket/4476">#4476</a> : [IE] Inaccessible empty list item contains sub list.</li>
769
+ <li><a href="http://dev.ckeditor.com/ticket/4881">#4881</a> : [IE] Selection range broken because of cutting a single control type element from it.</li>
770
+ <li><a href="http://dev.ckeditor.com/ticket/5505">#5505</a> : Image dialog throw JavaScript error when click close dialog before preview area is loading.</li>
771
+ <li><a href="http://dev.ckeditor.com/ticket/5144">#5144</a> : [Chrome] Paste in Webkit sometimes leaves extra 'div' element.</li>
772
+ <li><a href="http://dev.ckeditor.com/ticket/5021">#5021</a> : [Firefox] Typing in empty document start from second line when <a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.enterMode">enterMode</a> = CKEDITOR.ENTER_BR.</li>
773
+ <li><a href="http://dev.ckeditor.com/ticket/5416">#5416</a> : [IE] Delete table throws a error when <a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.enterMode">enterMode</a> = CKEDITOR.ENTER_BR.</li>
774
+ <li><a href="http://dev.ckeditor.com/ticket/4459">#4459</a> : [IE] Select element is penetrating the maximized editor in IE6.</li>
775
+ <li><a href="http://dev.ckeditor.com/ticket/5559">#5559</a> : [IE] The first call to <a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#setData">setData</a> is affected by iframe cache when loading the wysiwyg mode.</li>
776
+ <li><a href="http://dev.ckeditor.com/ticket/5567">#5567</a> : [IE] Remove inline styles in some case doesn't join identical siblings.</li>
777
+ <li><a href="http://dev.ckeditor.com/ticket/5450">#5450</a> : [FireFox] Press ENTER on 'replace' button result wrong.</li>
778
+ <li><a href="http://dev.ckeditor.com/ticket/5121">#5121</a> : Recognizes the &lt;br /&gt; tag as a separator when apply block styles and <a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.enterMode">enterMode</a> = CKEDITOR.ENTER_BR.</li>
779
+ <li><a href="http://dev.ckeditor.com/ticket/5575">#5575</a> : <a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.html#.replaceAll">CKEDITOR.replaceAll</a> should consider all kind of white spaces between class names.</li>
780
+ <li><a href="http://dev.ckeditor.com/ticket/5582">#5582</a> : Prevent the default behavior when click the 'x' button to close dialog box.</li>
781
+ <li><a href="http://dev.ckeditor.com/ticket/5584">#5584</a> : ENTER key with <a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.forceEnterMode">forceEnterMode</a> turns on doesn't inherit current block attributes.</li>
782
+ <li><a href="http://dev.ckeditor.com/ticket/4797">#4797</a> : [Opera] Press ENTER key in dialog fields to close throws JavaScript error.</li>
783
+ <li><a href="http://dev.ckeditor.com/ticket/5578">#5578</a> : Add flash fake element align property when switch mode (source to wysiwyg).</li>
784
+ <li><a href="http://dev.ckeditor.com/ticket/5577">#5577</a> : Update delete column behavior when choose multiple cells in the same column.</li>
785
+ <li><a href="http://dev.ckeditor.com/ticket/5512">#5512</a> : Open context menu with SHIFT+F10 doesn't get correct editor selection.</li>
786
+ <li><a href="http://dev.ckeditor.com/ticket/5433">#5433</a> : English protocol text directions in Link dialog are not incorrect in 'rtl' UI languages.</li>
787
+ <li><a href="http://dev.ckeditor.com/ticket/5553">#5553</a> : Paste dialog clipboard area text direction is incorrect for 'rtl' content languages.</li>
788
+ <li><a href="http://dev.ckeditor.com/ticket/4734">#4734</a> : Font size resets when font name is changed in an empty numbered list.</li>
789
+ <li><a href="http://dev.ckeditor.com/ticket/5237">#5237</a> : English text in dialogs' title is flipped when using RTL language.</li>
790
+ <li><a href="http://dev.ckeditor.com/ticket/3257">#3257</a> : Create list doesn't keep blocks as headings.</li>
791
+ <li><a href="http://dev.ckeditor.com/ticket/5111">#5111</a> : [Firefox] JAWS doesn't respect PC cursor mode (application role) on toolbar.</li>
792
+ <li><a href="http://dev.ckeditor.com/ticket/5530">#5530</a> : Page break for printing can't be removed with undo.</li>
793
+ <li><a href="http://dev.ckeditor.com/ticket/5381">#5381</a> : Unable to place cursor between two paragraphs in body.</li>
794
+ <li><a href="http://dev.ckeditor.com/ticket/5568">#5568</a> : [IE6/7] Selecting a entire table cell changes the original range.</li>
795
+ <li><a href="http://dev.ckeditor.com/ticket/5623">#5623</a> : [Firefox] Apply style that edges another inline style result incorrect.</li>
796
+ <li><a href="http://dev.ckeditor.com/ticket/5586">#5586</a> : [Firefox] Maximize the second editor ruins full screen mode.</li>
797
+ <li><a href="http://dev.ckeditor.com/ticket/5617">#5617</a> : HTML filter system does not allow two 'text' filter rules.</li>
798
+ <li><a href="http://dev.ckeditor.com/ticket/5663">#5663</a> : General memory clean up after destroying last instance.</li>
799
+ <li><a href="http://dev.ckeditor.com/ticket/5461">#5461</a> : [IE] Fix Paste from Word dialog doesn't accept imput problem.</li>
800
+ <li><a href="http://dev.ckeditor.com/ticket/5676">#5676</a> : Make color buttons use RRGGBB instead of RGB for better compatibility with IE.</li>
801
+ <li><a href="http://dev.ckeditor.com/ticket/4948">#4948</a> : [Safari] Select the first/last cell of table to open context menu may lead to undetected table.</li>
802
+ <li><a href="http://dev.ckeditor.com/ticket/5591">#5591</a> : [Firefox] Select a list item makes selected element broken.</li>
803
+ <li><a href="http://dev.ckeditor.com/ticket/5667">#5667</a> : Pasting in a RTL page content causes shows up the horizontal scrollbar.</li>
804
+ <li><a href="http://dev.ckeditor.com/ticket/5688">#5688</a> : Duplicate ids are used in dialog definition.</li>
805
+ <li><a href="http://dev.ckeditor.com/ticket/5719">#5719</a> : [IE] 'change' dialog event should not be triggered when dialog is already closed.</li>
806
+ <li><a href="http://dev.ckeditor.com/ticket/5747">#5747</a> : [IE] Error thrown when IE input field editing mode is turned on.</li>
807
+ <li><a href="http://dev.ckeditor.com/ticket/5516">#5516</a> : IE8: Toolbar buttons have higher bottom padding.</li>
808
+ <li><a href="http://dev.ckeditor.com/ticket/5402">#5402</a> : SHIFT-ENTER could now be used to exit from preformat block.</li>
809
+ <li>SCAYT plugin related:<ul>
810
+ <li><a href="http://dev.ckeditor.com/ticket/4836">#4836</a> : Using SCAYT result in fragile elements when applying inline styles.</li>
811
+ <li><a href="http://dev.ckeditor.com/ticket/5425">#5425</a> : [Opera] Disable SCAYT plugin for Opera browser.</li>
812
+ <li><a href="http://dev.ckeditor.com/ticket/5632">#5632</a> : SCAYT word marker is not visible on text with background-color set.</li>
813
+ <li><a href="http://dev.ckeditor.com/ticket/4125">#4125</a> : Remove Format command incorrectly removes SCAYT word markers.</li>
814
+ <li><a href="http://dev.ckeditor.com/ticket/5671">#5671</a> : SCAYT bootstrap script could be added multiple times unnecessarily.</li>
815
+ <li><a href="http://dev.ckeditor.com/ticket/5573">#5573</a> : SCAYT move cursor position after insert element into marked word text.</li>
816
+ <li><a href="http://dev.ckeditor.com/ticket/5546">#5546</a> : SCAYT interferes with undo/redo commands.</li>
817
+ <li><a href="http://dev.ckeditor.com/ticket/5570">#5570</a> : [IE] First enabling SCAYT blind cursor in editor.</li>
818
+ <li><a href="http://dev.ckeditor.com/ticket/5741">#5741</a> : Enable SCAYT cause error in multiple editor instances.</li>
819
+ <li><a href="http://dev.ckeditor.com/ticket/5744">#5744</a> : Remove editor with SCAYT enabled in source mode throws error.</li>
820
+ </ul></li>
821
+ <li>Updated the following language files:<ul>
822
+ <li><a href="http://dev.ckeditor.com/ticket/5432">#5432</a> : Dutch;</li>
823
+ <li><a href="http://dev.ckeditor.com/ticket/5619">#5619</a> : Finnish;</li>
824
+ <li><a href="http://dev.ckeditor.com/ticket/5515">#5515</a> : Hebrew;</li>
825
+ <li><a href="http://dev.ckeditor.com/ticket/5588">#5588</a> : Turkish;</li>
826
+ </ul></li>
827
+ </ul>
828
+ <h3>
829
+ CKEditor 3.2.1</h3>
830
+ <p>
831
+ New features:</p>
832
+ <ul>
833
+ <li><a href="http://dev.ckeditor.com/ticket/4478">#4478</a> : Enable the SelectAll command in source mode.</li>
834
+ <li><a href="http://dev.ckeditor.com/ticket/5150">#5150</a> : Allow names in the CKEDITOR.config.colorButton_colors setting.</li>
835
+ <li><a href="http://dev.ckeditor.com/ticket/4810">#4810</a> : Adding configuration option for image dialog preview area filling text.</li>
836
+ <li><a href="http://dev.ckeditor.com/ticket/536">#536</a> : Object style now could be applied on any parent element of current selection.</li>
837
+ <li><a href="http://dev.ckeditor.com/ticket/5290">#5290</a> : Unified stylesSet loading removing dependencies from the styles combo.
838
+ Now the configuration entry is named 'config.stylesSet' instead of config.stylesCombo_stylesSet and the default location
839
+ is under the 'styles' plugin instead of 'stylescombo'.</li>
840
+ <li><a href="http://dev.ckeditor.com/ticket/5352">#5352</a> : Allow to define the stylesSet array in the config object for the editor.</li>
841
+ <li><a href="http://dev.ckeditor.com/ticket/5302">#5302</a> : Adding config option "forceEnterMode".</li>
842
+ <li><a href="http://dev.ckeditor.com/ticket/5216">#5216</a> : Extend CKEDITOR.appendTo to allow a data parameter for the initial value.</li>
843
+ <li><a href="http://dev.ckeditor.com/ticket/5024">#5024</a> : Added sample to show how to output XHTML and avoid deprecated tags.</li>
844
+ </ul>
845
+ <p>
846
+ Fixed issues:</p>
847
+ <ul>
848
+ <li><a href="http://dev.ckeditor.com/ticket/5152">#5152</a> : Indentation using class attribute doesn't work properly.</li>
849
+ <li><a href="http://dev.ckeditor.com/ticket/4682">#4682</a> : It wasn't possible to edit block elements in IE that had styles like width, height or float.</li>
850
+ <li><a href="http://dev.ckeditor.com/ticket/4750">#4750</a> : Correcting default order of buttons layout in dialogs on Mac.</li>
851
+ <li><a href="http://dev.ckeditor.com/ticket/4932">#4932</a> : Fixed collapse button not clickable on simple toolbar.</li>
852
+ <li><a href="http://dev.ckeditor.com/ticket/5228">#5228</a> : Link dialog is automatically changes protocol when URLs that starts with '?'.</li>
853
+ <li><a href="http://dev.ckeditor.com/ticket/4877">#4877</a> : Fixed CKEditor displays source code in one long line (IE quirks mode + office2003 skin).</li>
854
+ <li><a href="http://dev.ckeditor.com/ticket/5132">#5132</a> : Apply inline style leaks into sibling words which are seperated spaces.</li>
855
+ <li><a href="http://dev.ckeditor.com/ticket/3599">#3599</a> : Background color style on sized text displayed as narrow band behind.</li>
856
+ <li><a href="http://dev.ckeditor.com/ticket/4661">#4661</a> : Translation missing in link dialog.</li>
857
+ <li><a href="http://dev.ckeditor.com/ticket/5240">#5240</a> : Flash alignment property is not presented visually on fake element.</li>
858
+ <li><a href="http://dev.ckeditor.com/ticket/4910">#4910</a> : Pasting in IE scrolls document to the end.</li>
859
+ <li><a href="http://dev.ckeditor.com/ticket/5041">#5041</a> : Table summary attribute can't be removed with dialog.</li>
860
+ <li><a href="http://dev.ckeditor.com/ticket/5124">#5124</a> : All inline styles cannot be applied on empty spaces.</li>
861
+ <li><a href="http://dev.ckeditor.com/ticket/3570">#3570</a> : SCAYT marker shouldn't appear inside elements path bar.</li>
862
+ <li><a href="http://dev.ckeditor.com/ticket/4553">#4553</a> : Dirty check result incorrect when editor document is empty.</li>
863
+ <li><a href="http://dev.ckeditor.com/ticket/4555">#4555</a> : Unreleased memory when editor is created and destroyed.</li>
864
+ <li><a href="http://dev.ckeditor.com/ticket/5118">#5118</a> : Arrow keys navigation in RTL languages is incorrect.</li>
865
+ <li><a href="http://dev.ckeditor.com/ticket/4721">#4721</a> : Remove attribute 'value' of checkbox in IE.</li>
866
+ <li><a href="http://dev.ckeditor.com/ticket/5278">#5278</a> : IE: Add validation to check for bad window names of popup window.</li>
867
+ <li><a href="http://dev.ckeditor.com/ticket/5171">#5171</a> : Dialogs contains lists don't have proper voice labels.</li>
868
+ <li><a href="http://dev.ckeditor.com/ticket/4791">#4791</a> : Can't place cursor inside a form that end with a checkbox/radio.</li>
869
+ <li><a href="http://dev.ckeditor.com/ticket/4479">#4479</a> : StylesCombo doesn't reflect the selection state until it's first opened.</li>
870
+ <li><a href="http://dev.ckeditor.com/ticket/4717">#4717</a> : 'Unlink' and 'Outdent' command buttons should be disabled on editor startup.</li>
871
+ <li><a href="http://dev.ckeditor.com/ticket/5119">#5119</a> : Disabled command buttons are not being properly styled when focused.</li>
872
+ <li><a href="http://dev.ckeditor.com/ticket/5307">#5307</a> : Hide dialog page cause problem when there's two tab pages remain.</li>
873
+ <li><a href="http://dev.ckeditor.com/ticket/5343">#5343</a> : Active list item ARIA role is wrongly placed.</li>
874
+ <li><a href="http://dev.ckeditor.com/ticket/3599">#3599</a> : Background color style applying to text with font size style has been narrowly rendered.</li>
875
+ <li><a href="http://dev.ckeditor.com/ticket/4711">#4711</a> : Line break character inside preformatted text makes it unable to type text at the end of previous line.</li>
876
+ <li><a href="http://dev.ckeditor.com/ticket/4829">#4829</a> : [IE] Apply style from combo has wrong result on manually created selection.</li>
877
+ <li><a href="http://dev.ckeditor.com/ticket/4830">#4830</a> : Retrieving selected element isn't always right, especially selecting using keyboard (SHIFT+ARROW).</li>
878
+ <li><a href="http://dev.ckeditor.com/ticket/5128">#5128</a> : Element attribute inside preformatted text is corrupted when converting to other blocks.</li>
879
+ <li><a href="http://dev.ckeditor.com/ticket/5190">#5190</a> : Template list entry shouldn't gain initial focus open templates list dialog opens.</li>
880
+ <li><a href="http://dev.ckeditor.com/ticket/5238">#5238</a> : Menu button doesn't display arrow icon in high-contrast mode.</li>
881
+ <li><a href="http://dev.ckeditor.com/ticket/3576">#3576</a> : Non-attributed element of the same name with the applied style is incorrectly removed.</li>
882
+ <li><a href="http://dev.ckeditor.com/ticket/5221">#5221</a> : Insert table into empty document cause JavaScript error thrown.</li>
883
+ <li><a href="http://dev.ckeditor.com/ticket/5242">#5242</a> : Apply 'automatic' color option of text color incorrectly removes background-color style.</li>
884
+ <li><a href="http://dev.ckeditor.com/ticket/4719">#4719</a> : IE does not escape attribute values properly.</li>
885
+ <li><a href="http://dev.ckeditor.com/ticket/5170">#5170</a> : Firefox does not insert text into styled element properly.</li>
886
+ <li><a href="http://dev.ckeditor.com/ticket/4026">#4026</a> : Office2003 skin has no toolbar button borders in High Contrast in IE7.</li>
887
+ <li><a href="http://dev.ckeditor.com/ticket/4348">#4348</a> : There should have exception thrown when 'CKEDITOR_BASEPATH' couldn't be figured out automatically.</li>
888
+ <li><a href="http://dev.ckeditor.com/ticket/5364">#5364</a> : Focus may not be put into dialog correctly when dialog skin file is loading slow.</li>
889
+ <li><a href="http://dev.ckeditor.com/ticket/4016">#4016</a> : Justify the layout of forms select dialog in Chrome and IE7.</li>
890
+ <li><a href="http://dev.ckeditor.com/ticket/5373">#5373</a> : Variable 'pathBlockElements' defines wrong items in CKEDITOR.dom.elementPath.</li>
891
+ <li><a href="http://dev.ckeditor.com/ticket/5082">#5082</a> : Ctrl key should be described as Cmd key on Mac.</li>
892
+ <li><a href="http://dev.ckeditor.com/ticket/5182">#5182</a> : Context menu is not been announced correctly by ATs.</li>
893
+ <li><a href="http://dev.ckeditor.com/ticket/4898">#4898</a> : Can't navigate outside table under the last paragraph of document.</li>
894
+ <li><a href="http://dev.ckeditor.com/ticket/4950">#4950</a> : List commands could compromise list item attribute and styles.</li>
895
+ <li><a href="http://dev.ckeditor.com/ticket/5018">#5018</a> : Find result highlighting remove normal font color styles unintentionally.</li>
896
+ <li><a href="http://dev.ckeditor.com/ticket/5376">#5376</a> : Unable to exit list from within a empty block under list item.</li>
897
+ <li><a href="http://dev.ckeditor.com/ticket/5145">#5145</a> : Various SCAYT fixes.</li>
898
+ <li><a href="http://dev.ckeditor.com/ticket/5319">#5319</a> : Match whole word doesn't work anymore after replacement has happened.</li>
899
+ <li><a href="http://dev.ckeditor.com/ticket/5363">#5363</a> : 'title' attribute now presents on all editor iframes.</li>
900
+ <li><a href="http://dev.ckeditor.com/ticket/5374">#5374</a> : Unable to toggle inline style when the selection starts at the linefeed of the previous paragraph.</li>
901
+ <li><a href="http://dev.ckeditor.com/ticket/4513">#4513</a> : Selected link element is not always correctly detected when using keyboard arrows to perform such selection.</li>
902
+ <li><a href="http://dev.ckeditor.com/ticket/5372">#5372</a> : Newly created sub list should inherit nothing from the original (parent) list, except the list type.</li>
903
+ <li><a href="http://dev.ckeditor.com/ticket/5274">#5274</a> : [IE6] Templates preview image is displayed in wrong size.</li>
904
+ <li><a href="http://dev.ckeditor.com/ticket/5292">#5292</a> : Preview in font size and family doesn't work with custom styles.</li>
905
+ <li><a href="http://dev.ckeditor.com/ticket/5396">#5396</a> : Selection is lost when use cell properties dialog to change cell type to header.</li>
906
+ <li><a href="http://dev.ckeditor.com/ticket/4082">#4082</a> : [IE+Quirks] Preview text in the image dialog is not wrapping.</li>
907
+ <li><a href="http://dev.ckeditor.com/ticket/4197">#4197</a> : Fixing format combo don't hide when editor blur on Safari.</li>
908
+ <li><a href="http://dev.ckeditor.com/ticket/5401">#5401</a> : The context menu break layout with Office2003 and V2 skin on IE quirks mode.</li>
909
+ <li><a href="http://dev.ckeditor.com/ticket/4825">#4825</a> : Fixing browser context menu is opened when clicking right mouse button twice.</li>
910
+ <li><a href="http://dev.ckeditor.com/ticket/5356">#5356</a> : The SCAYT dialog had issues with Prototype enabled pages.</li>
911
+ <li><a href="http://dev.ckeditor.com/ticket/5266">#5266</a> : SCAYT was disturbing the rendering of TH elements.</li>
912
+ <li><a href="http://dev.ckeditor.com/ticket/4688">#4688</a> : SCAYT was interfering on checkDirty.</li>
913
+ <li><a href="http://dev.ckeditor.com/ticket/5429">#5429</a> : High Contrast mode was being mistakenly detected when loading the editor through Dojo's xhrGet.</li>
914
+ <li><a href="http://dev.ckeditor.com/ticket/5221">#5221</a> : Range is mangled when making collapsed selection in an empty paragraph.</li>
915
+ <li><a href="http://dev.ckeditor.com/ticket/5261">#5261</a> : Config option 'scayt_autoStartup' slow down editor loading.</li>
916
+ <li><a href="http://dev.ckeditor.com/ticket/3846">#3846</a> : Google Chrome - No Img properties after inserting.</li>
917
+ <li><a href="http://dev.ckeditor.com/ticket/5465">#5465</a> : ShiftEnter=DIV doesn't respect list item when pressing ENTER at end of list item.</li>
918
+ <li><a href="http://dev.ckeditor.com/ticket/5454">#5454</a> : After replaced success, the popup window couldn't be closed and a js error occured.</li>
919
+ <li><a href="http://dev.ckeditor.com/ticket/4784">#4784</a> : Incorrect cursor position after delete table cells.</li>
920
+ <li><a href="http://dev.ckeditor.com/ticket/5149">#5149</a> : [FF] Cursor disappears after maximize when the editor has focus.</li>
921
+ <li><a href="http://dev.ckeditor.com/ticket/5220">#5220</a> : DTD now shows tolerance to &lt;style&gt; appear inside content.</li>
922
+ <li><a href="http://dev.ckeditor.com/ticket/5440">#5440</a> : Mobile browsers (iPhone, Android...) are marked as incompatible as they don't support editing features.</li>
923
+ <li><a href="http://dev.ckeditor.com/ticket/5504">#5504</a> : [IE6/7] 'Paste' dialog will always get opened even when user allows the clipboard access dialog when using 'Paste' button.</li>
924
+ <li>Updated the following language files:<ul>
925
+ <li><a href="http://dev.ckeditor.com/ticket/5326">#5326</a> : Catalan;</li>
926
+ <li><a href="http://dev.ckeditor.com/ticket/5370">#5370</a> : Faroese;</li>
927
+ <li><a href="http://dev.ckeditor.com/ticket/5392">#5392</a> : Finnish;</li>
928
+ <li><a href="http://dev.ckeditor.com/ticket/4580">#4580</a> : Hungarian;</li>
929
+ <li><a href="http://dev.ckeditor.com/ticket/5301">#5301</a> : Norwegian;</li>
930
+ </ul></li>
931
+ </ul>
932
+ <h3>
933
+ CKEditor 3.2</h3>
934
+ <p>
935
+ New features:</p>
936
+ <ul>
937
+ <li>Several accessibility enhancements:<ul>
938
+ <li><a href="http://dev.ckeditor.com/ticket/4502">#4502</a> : The editor accessibility is now totally based on <a href="http://www.w3.org/WAI/intro/aria">WAI-ARIA</a>.</li>
939
+ <li><a href="http://dev.ckeditor.com/ticket/5015">#5015</a> : Adding accessibility help dialog plugin.</li>
940
+ <li><a href="http://dev.ckeditor.com/ticket/5014">#5014</a> : Keyboard navigation compliance with screen reader suggested keys.</li>
941
+ <li><a href="http://dev.ckeditor.com/ticket/4595">#4595</a> : Better accessibility in the Templates dialog.</li>
942
+ <li><a href="http://dev.ckeditor.com/ticket/3389">#3389</a> : Esc/Arrow Key now works for closing sub menu.</li>
943
+ </ul></li>
944
+ <li><a href="http://dev.ckeditor.com/ticket/4973">#4973</a> : The Style field in the Div Container dialog is now loading the styles defined in the default styleset used by the Styles toolbar combo.</li>
945
+ </ul>
946
+ <p>
947
+ Fixed issues:</p>
948
+ <ul>
949
+ <li><a href="http://dev.ckeditor.com/ticket/5049">#5049</a> : Form Field list command in JAWS incorrectly lists extra fields.</li>
950
+ <li><a href="http://dev.ckeditor.com/ticket/5008">#5008</a> : Lock/Unlock ratio buttons in the Image dialog was poorly designed in High Contrast mode.</li>
951
+ <li><a href="http://dev.ckeditor.com/ticket/3980">#3980</a> : All labels in dialogs now use &lt;label&gt; instead of &lt;div&gt;.</li>
952
+ <li><a href="http://dev.ckeditor.com/ticket/5213">#5213</a> : Reorganization of some entries in the language files to make it more consistent.</li>
953
+ <li><a href="http://dev.ckeditor.com/ticket/5199">#5199</a> : In IE, single row toolbars didn't have the bottom padding.</li>
954
+ </ul>
955
+ <h3>
956
+ CKEditor 3.1.1</h3>
957
+ <p>
958
+ New features:</p>
959
+ <ul>
960
+ <li><a href="http://dev.ckeditor.com/ticket/4399">#4399</a> : Improved support for external file browsers by allowing executing a callback function.</li>
961
+ <li><a href="http://dev.ckeditor.com/ticket/4612">#4612</a> : The text of links is now updated if it matches the URL to which it points to.</li>
962
+ <li><a href="http://dev.ckeditor.com/ticket/4936">#4936</a> : New localization support for the Welsh language.</li>
963
+ </ul>
964
+ <p>
965
+ Fixed issues:</p>
966
+ <ul>
967
+ <li><a href="http://dev.ckeditor.com/ticket/4272">#4272</a> : Kama skin toolbar was broken in IE+Quirks+RTL.</li>
968
+ <li><a href="http://dev.ckeditor.com/ticket/4987">#4987</a> : Changed the url which is called by the Browser Server button in the Link tab of Image Properties dialog.</li>
969
+ <li><a href="http://dev.ckeditor.com/ticket/5030">#5030</a> : The CKEDITOR.timestamp wasn't been appended to the skin.js file.</li>
970
+ <li><a href="http://dev.ckeditor.com/ticket/4993">#4993</a> : Removed the float style from images when the user selects 'not set' for alignment.</li>
971
+ <li><a href="http://dev.ckeditor.com/ticket/4944">#4944</a> : Fixed a bug where nested list structures with inconsequent levels were not being pasted correctly from MS Word.</li>
972
+ <li><a href="http://dev.ckeditor.com/ticket/4637">#4637</a> : Table cells' 'nowrap' attribute was not being loaded by the cell property dialog. Thanks to pomu0325.</li>
973
+ <li><a href="http://dev.ckeditor.com/ticket/4724">#4724</a> : Using the mouse to insert a link in IE might create incorrect results.</li>
974
+ <li><a href="http://dev.ckeditor.com/ticket/4640">#4640</a> : Small optimizations for the fileBrowser plugin.</li>
975
+ <li><a href="http://dev.ckeditor.com/ticket/4583">#4583</a> : The "Target Frame Name" field is now visible when target is set to 'frame' only.</li>
976
+ <li><a href="http://dev.ckeditor.com/ticket/4863">#4863</a> : Fixing iframedialog's height doesn't stretch to 100% (except IE Quirks).</li>
977
+ <li><a href="http://dev.ckeditor.com/ticket/4964">#4964</a> : The BACKSPACE key positioning was not correct in some cases with Firefox.</li>
978
+ <li><a href="http://dev.ckeditor.com/ticket/4980">#4980</a> : Setting border, vspace and hspace of images to zero was not working.</li>
979
+ <li><a href="http://dev.ckeditor.com/ticket/4773">#4773</a> : The fileBrowser plugin was overwriting onClick functions eventually defined on fileButton elements.</li>
980
+ <li><a href="http://dev.ckeditor.com/ticket/4731">#4731</a> : The clipboard plugin was missing a reference to the dialog plugin.</li>
981
+ <li><a href="http://dev.ckeditor.com/ticket/5051">#5051</a> : The about plugin was missing a reference to the dialog plugin.</li>
982
+ <li><a href="http://dev.ckeditor.com/ticket/5146">#5146</a> : The wsc plugin was missing a reference to the dialog plugin.</li>
983
+ <li><a href="http://dev.ckeditor.com/ticket/4632">#4632</a> : The print command will now properly break on the insertion point of page break for printing.</li>
984
+ <li><a href="http://dev.ckeditor.com/ticket/4862">#4862</a> : The English (United Kingdom) language file has been renamed to en-gb.js.</li>
985
+ <li><a href="http://dev.ckeditor.com/ticket/4618">#4618</a> : Selecting an emoticon or the lock and reset buttons in the image dialog fired the onBeforeUnload event in IE.</li>
986
+ <li><a href="http://dev.ckeditor.com/ticket/4678">#4678</a> : It was not possible to set tables' width to empty value.</li>
987
+ <li><a href="http://dev.ckeditor.com/ticket/5012">#5012</a> : Fixed dependency issues with the menu plugin.</li>
988
+ <li><a href="http://dev.ckeditor.com/ticket/5040">#5040</a> : The editor will not properly ignore font related settings that have extra item separators (semi-colons).</li>
989
+ <li><a href="http://dev.ckeditor.com/ticket/4046">#4046</a> : Justify should respect config.enterMode = CKEDITOR.ENTER_BR.</li>
990
+ <li><a href="http://dev.ckeditor.com/ticket/4622">#4622</a> : Inserting tables multiple times was corrupting the undo system.</li>
991
+ <li><a href="http://dev.ckeditor.com/ticket/4647">#4647</a> : [IE] Selection on an element within positioned container is lost after open context-menu then click one menu item.</li>
992
+ <li><a href="http://dev.ckeditor.com/ticket/4683">#4683</a> : Double-quote character in attribute values was not escaped in the editor output.</li>
993
+ <li><a href="http://dev.ckeditor.com/ticket/4762">#4762</a> : [IE] Unexpected vertical-scrolling behavior happens whenever focus is moving out of editor in source mode.</li>
994
+ <li><a href="http://dev.ckeditor.com/ticket/4772">#4772</a> : Text color was not being applied properly on links.</li>
995
+ <li><a href="http://dev.ckeditor.com/ticket/4795">#4795</a> : [IE] Press 'Del' key on horizontal line or table result in error.</li>
996
+ <li><a href="http://dev.ckeditor.com/ticket/4824">#4824</a> : [IE] &lt;br/&gt; at the very first table cell breaks the editor selection.</li>
997
+ <li><a href="http://dev.ckeditor.com/ticket/4851">#4851</a> : [IE] Delete table rows with context-menu may cause error.</li>
998
+ <li><a href="http://dev.ckeditor.com/ticket/4951">#4951</a> : Replacing text with empty string was throwing errors.</li>
999
+ <li><a href="http://dev.ckeditor.com/ticket/4963">#4963</a> : Link dialog was not opening properly for e-mail type links.</li>
1000
+ <li><a href="http://dev.ckeditor.com/ticket/5043">#5043</a> : Removed the possibility of having an unwanted script tag being outputted with the editor contents.</li>
1001
+ <li><a href="http://dev.ckeditor.com/ticket/3678">#3678</a> : There were issues when editing links inside floating divs with IE.</li>
1002
+ <li><a href="http://dev.ckeditor.com/ticket/4763">#4763</a> : Pressing ENTER key with text selected was not deleting the text in some situations.</li>
1003
+ <li><a href="http://dev.ckeditor.com/ticket/5096">#5096</a> : Simple ampersand attribute value doesn't work for more than one occurrence.</li>
1004
+ <li><a href="http://dev.ckeditor.com/ticket/3494">#3494</a> : Context menu is too narrow in some translations.</li>
1005
+ <li><a href="http://dev.ckeditor.com/ticket/5005">#5005</a> : Fixed HTML errors in PHP samples.</li>
1006
+ <li><a href="http://dev.ckeditor.com/ticket/5123">#5123</a> : Fixed broken XHTML in User Interface Languages sample.</li>
1007
+ <li><a href="http://dev.ckeditor.com/ticket/4893">#4893</a> : Editor now understands table cell inline styles.</li>
1008
+ <li><a href="http://dev.ckeditor.com/ticket/4611">#4611</a> : Selection around &lt;select&gt; in editor doesn't cause error anymore.</li>
1009
+ <li><a href="http://dev.ckeditor.com/ticket/4886">#4886</a> : Extra BR tags were being created in the output HTML.</li>
1010
+ <li><a href="http://dev.ckeditor.com/ticket/4933">#4933</a> : Empty tags with BR were being left in the DOM.</li>
1011
+ <li><a href="http://dev.ckeditor.com/ticket/5127">#5127</a> : There were errors when removing dialog definition pages through code.</li>
1012
+ <li><a href="http://dev.ckeditor.com/ticket/4767">#4767</a> : CKEditor was not working when ckeditor_source.js is loaded in the &lt;body&gt; .</li>
1013
+ <li><a href="http://dev.ckeditor.com/ticket/5062">#5062</a> : Avoided security warning message when loading the wysiwyg area in IE6 under HTTPS.</li>
1014
+ <li><a href="http://dev.ckeditor.com/ticket/5135">#5135</a> : The TAB key will now behave properly when in Source mode.</li>
1015
+ <li><a href="http://dev.ckeditor.com/ticket/4988">#4988</a> : It wasn't possible to use forcePasteAsPlainText with Safari on Mac.</li>
1016
+ <li><a href="http://dev.ckeditor.com/ticket/5095">#5095</a> : Safari on Mac deleted the current selection in the editor when Edit menu was clicked.</li>
1017
+ <li><a href="http://dev.ckeditor.com/ticket/5140">#5140</a> : In High Contrast mode, arrows were now been displayed for menus with submenus.</li>
1018
+ <li><a href="http://dev.ckeditor.com/ticket/5163">#5163</a> : The undo system was not working on some specific cases.</li>
1019
+ <li><a href="http://dev.ckeditor.com/ticket/5162">#5162</a> : The ajax sample was throwing errors when loading data.</li>
1020
+ <li><a href="http://dev.ckeditor.com/ticket/4999">#4999</a> : The Template dialog was not generating an undo snapshot.</li>
1021
+ <li>Updated the following language files:<ul>
1022
+ <li><a href="http://dev.ckeditor.com/ticket/5006">#5006</a> : Dutch;</li>
1023
+ <li><a href="http://dev.ckeditor.com/ticket/5039">#5039</a> : Finnish;</li>
1024
+ <li><a href="http://dev.ckeditor.com/ticket/5148">#5148</a> : Hebrew;</li>
1025
+ <li><a href="http://dev.ckeditor.com/ticket/5071">#5071</a> : Russian;</li>
1026
+ <li><a href="http://dev.ckeditor.com/ticket/5147">#5147</a> : Spanish;</li>
1027
+ </ul></li>
1028
+ </ul>
1029
+ <h3>
1030
+ CKEditor 3.1</h3>
1031
+ <p>
1032
+ New features:</p>
1033
+ <ul>
1034
+ <li><a href="http://dev.ckeditor.com/ticket/4067">#4067</a> : Introduced the full page editing support (from &lt;html&gt; to &lt;/html&gt;).</li>
1035
+ <li><a href="http://dev.ckeditor.com/ticket/4228">#4228</a> : Introduced the Shared Spaces feature.</li>
1036
+ <li><a href="http://dev.ckeditor.com/ticket/4379">#4379</a> : Introduced the new powerful pasting system and word cleanup procedure, including enhancements to the paste as plain text feature.</li>
1037
+ <li><a href="http://dev.ckeditor.com/ticket/2872">#2872</a> : Introduced the new native PHP API, the first standardized server side support.</li>
1038
+ <li><a href="http://dev.ckeditor.com/ticket/4210">#4210</a> : Added CKEditor plugin for jQuery.</li>
1039
+ <li><a href="http://dev.ckeditor.com/ticket/2885">#2885</a> : Added 'div' dialog and corresponding context menu options.</li>
1040
+ <li><a href="http://dev.ckeditor.com/ticket/4574">#4574</a> : Added the table merging tools and corresponding context menu options.</li>
1041
+ <li><a href="http://dev.ckeditor.com/ticket/4340">#4340</a> : Added the email protection option for link dialog.</li>
1042
+ <li><a href="http://dev.ckeditor.com/ticket/4463">#4463</a> : Added inline CSS support in all places where custom stylesheet could apply.</li>
1043
+ <li><a href="http://dev.ckeditor.com/ticket/3881">#3881</a> : Added color dialog for 'more color' option in color buttons.</li>
1044
+ <li><a href="http://dev.ckeditor.com/ticket/4341">#4341</a> : Added the 'showborder' plugin.</li>
1045
+ <li><a href="http://dev.ckeditor.com/ticket/4549">#4549</a> : Make the anti-cache query string configurable.</li>
1046
+ <li><a href="http://dev.ckeditor.com/ticket/4708">#4708</a> : Added the 'htmlEncodeOutput' config option.</li>
1047
+ <li><a href="http://dev.ckeditor.com/ticket/4342">#4342</a> : Introduced the bodyId and bodyClass settings to specify the id and class. to be used in the editing area at runtime.</li>
1048
+ <li><a href="http://dev.ckeditor.com/ticket/3401">#3401</a> : Introduced the baseHref setting so it's possible to set the URL to be used to resolve absolute and relative URLs in the contents.</li>
1049
+ <li><a href="http://dev.ckeditor.com/ticket/4729">#4729</a> : Added support to fake elements for comments.</li>
1050
+ </ul>
1051
+ <p>
1052
+ Fixed issues:</p>
1053
+ <ul>
1054
+ <li><a href="http://dev.ckeditor.com/ticket/4707">#4707</a> : Fixed invalid link is requested in image preview.</li>
1055
+ <li><a href="http://dev.ckeditor.com/ticket/4461">#4461</a> : Fixed toolbar separator line along side combo enlarging the toolbar height.</li>
1056
+ <li><a href="http://dev.ckeditor.com/ticket/4596">#4596</a> : Fixed image re-size lock buttons aren't accessible in high-contrast mode.</li>
1057
+ <li><a href="http://dev.ckeditor.com/ticket/4676">#4676</a> : Fixed editing tables using table properties dialog overwrites original style values.</li>
1058
+ <li><a href="http://dev.ckeditor.com/ticket/4714">#4714</a> : Fixed IE6 JavaScript error when editing flash by commit 'Flash' dialog.</li>
1059
+ <li><a href="http://dev.ckeditor.com/ticket/3905">#3905</a> : Fixed 'wysiwyg' mode causes unauthenticated content warnings over SSL in FF 3.5.</li>
1060
+ <li><a href="http://dev.ckeditor.com/ticket/4768">#4768</a> : Fixed open context menu in IE throws js error when focus is not inside document.</li>
1061
+ <li><a href="http://dev.ckeditor.com/ticket/4822">#4822</a> : Fixed applying 'Headers' to existing table does not work in IE.</li>
1062
+ <li><a href="http://dev.ckeditor.com/ticket/4855">#4855</a> : Fixed toolbar doesn't wrap well for 'v2' skin in all browsers.</li>
1063
+ <li><a href="http://dev.ckeditor.com/ticket/4882">#4882</a> : Fixed auto detect paste from MS-Word is not working for Safari.</li>
1064
+ <li><a href="http://dev.ckeditor.com/ticket/4882">#4882</a> : Fixed unexpected margin style left behind on content cleaning up from MS-Word.</li>
1065
+ <li><a href="http://dev.ckeditor.com/ticket/4896">#4896</a> : Fixed paste nested list from MS-Word with measurement units set to cm is broken.</li>
1066
+ <li><a href="http://dev.ckeditor.com/ticket/4899">#4899</a> : Fixed unable to undo pre-formatted style.</li>
1067
+ <li><a href="http://dev.ckeditor.com/ticket/4900">#4900</a> : Fixed ratio-lock inconsistent between browsers.</li>
1068
+ <li><a href="http://dev.ckeditor.com/ticket/4901">#4901</a> : Fixed unable to edit any link with popup window's features in Firefox.</li>
1069
+ <li><a href="http://dev.ckeditor.com/ticket/4904">#4904</a> : Fixed when paste happen from dialog, it always throw JavaScript error.</li>
1070
+ <li><a href="http://dev.ckeditor.com/ticket/4905">#4905</a> : Fixed paste plain text result incorrect when content from dialog.</li>
1071
+ <li><a href="http://dev.ckeditor.com/ticket/4889">#4889</a> : Fixed unable to undo 'New Page' command after typing inside editor.</li>
1072
+ <li><a href="http://dev.ckeditor.com/ticket/4892">#4892</a> : Fixed table alignment style is not properly represented by the wrapping div.</li>
1073
+ <li><a href="http://dev.ckeditor.com/ticket/4918">#4918</a> : Fixed switching mode when maximized is showing background page contents.</li>
1074
+ </ul>
1075
+ <h3>
1076
+ CKEditor 3.0.2</h3>
1077
+ <p>
1078
+ New features:</p>
1079
+ <ul>
1080
+ <li><a href="http://dev.ckeditor.com/ticket/4343">#4343</a> : Added the configuration option &#39;browserContextMenuOnCtrl&#39; so it&#39;s possible to enable the default browser context menu by holding the CTRL key.</li>
1081
+ </ul>
1082
+ <p>
1083
+ Fixed issues:</p>
1084
+ <ul>
1085
+ <li><a href="http://dev.ckeditor.com/ticket/4552">#4552</a> : Fixed float panel doesn't show up since editor instanced been destroyed once.</li>
1086
+ <li><a href="http://dev.ckeditor.com/ticket/3918">#3918</a> : Fixed fake object is editable with Image dialog.</li>
1087
+ <li><a href="http://dev.ckeditor.com/ticket/4053">#4053</a> : Fixed 'Form Properties' missing from context menu when selection collapsed inside form.</li>
1088
+ <li><a href="http://dev.ckeditor.com/ticket/4401">#4401</a> : Fixed customized by removing 'upload' tab page from 'Link dialog' cause JavaScript error.</li>
1089
+ <li><a href="http://dev.ckeditor.com/ticket/4477">#4477</a> : Adding missing tag names in object style elements.</li>
1090
+ <li><a href="http://dev.ckeditor.com/ticket/4567">#4567</a> : Fixed IE throw error when pressing BACKSPACE in source mode.</li>
1091
+ <li><a href="http://dev.ckeditor.com/ticket/4573">#4573</a> : Fixed 'IgnoreEmptyPargraph' config doesn't work with the config 'entities' is set to 'false'.</li>
1092
+ <li><a href="http://dev.ckeditor.com/ticket/4614">#4614</a> : Fixed attribute protection fails because of line-break.</li>
1093
+ <li><a href="http://dev.ckeditor.com/ticket/4546">#4546</a> : Fixed UIColor plugin doesn't work when editor id contains CSS selector preserved keywords.</li>
1094
+ <li><a href="http://dev.ckeditor.com/ticket/4609">#4609</a> : Fixed flash object is lost when loading data from outside editor.</li>
1095
+ <li><a href="http://dev.ckeditor.com/ticket/4625">#4625</a> : Fixed editor stays visible in a div with style 'visibility:hidden'.</li>
1096
+ <li><a href="http://dev.ckeditor.com/ticket/4621">#4621</a> : Fixed clicking below table caused an empty table been generated.</li>
1097
+ <li><a href="http://dev.ckeditor.com/ticket/3373">#3373</a> : Fixed empty context menu when there's no menu item at all.</li>
1098
+ <li><a href="http://dev.ckeditor.com/ticket/4473">#4473</a> : Fixed setting rules on the same element tag name throws error.</li>
1099
+ <li><a href="http://dev.ckeditor.com/ticket/4514">#4514</a> : Fixed press 'Back' button breaks wysiwyg editing mode is Firefox.</li>
1100
+ <li><a href="http://dev.ckeditor.com/ticket/4542">#4542</a> : Fixed unable to access buttons using tab key in Safari and Opera.</li>
1101
+ <li><a href="http://dev.ckeditor.com/ticket/4577">#4577</a> : Fixed relative link url is broken after opening 'Link' dialog.</li>
1102
+ <li><a href="http://dev.ckeditor.com/ticket/4597">#4597</a> : Fixed custom style with same attribute name but different attribute value doesn't work.</li>
1103
+ <li><a href="http://dev.ckeditor.com/ticket/4651">#4651</a> : Fixed 'Deleted' and 'Inserted' text style is not rendering in wysiwyg mode and is wrong is source mode.</li>
1104
+ <li><a href="http://dev.ckeditor.com/ticket/4654">#4654</a> : Fixed 'CKEDITOR.config.font_defaultLabel(fontSize_defaultLabel)' is not working.</li>
1105
+ <li><a href="http://dev.ckeditor.com/ticket/3950">#3950</a> : Fixed table column insertion incorrect when selecting empty cell area.</li>
1106
+ <li><a href="http://dev.ckeditor.com/ticket/3912">#3912</a> : Fixed UIColor not working in IE when page has more than 30+ editors.</li>
1107
+ <li><a href="http://dev.ckeditor.com/ticket/4031">#4031</a> : Fixed mouse cursor on toolbar combo has more than 3 shapes.</li>
1108
+ <li><a href="http://dev.ckeditor.com/ticket/4041">#4041</a> : Fixed open context menu on multiple cells to remove them result in only one removed.</li>
1109
+ <li><a href="http://dev.ckeditor.com/ticket/4185">#4185</a> : Fixed resize handler effect doesn't affect flash object on output.</li>
1110
+ <li><a href="http://dev.ckeditor.com/ticket/4196">#4196</a> : Fixed 'Remove Numbered/Bulleted List' on nested list doesn't work well on nested list.</li>
1111
+ <li><a href="http://dev.ckeditor.com/ticket/4200">#4200</a> : Fixed unable to insert 'password' type filed with attributes.</li>
1112
+ <li><a href="http://dev.ckeditor.com/ticket/4530">#4530</a> : Fixed context menu couldn't open in Opera.</li>
1113
+ <li><a href="http://dev.ckeditor.com/ticket/4536">#4536</a> : Fixed keyboard navigation doesn't work at all in IE quirks mode.</li>
1114
+ <li><a href="http://dev.ckeditor.com/ticket/4584">#4584</a> : Fixed updated link Target field is not updating when updating to certain values.</li>
1115
+ <li><a href="http://dev.ckeditor.com/ticket/4603">#4603</a> : Fixed unable to disable submenu items in contextmenu.</li>
1116
+ <li><a href="http://dev.ckeditor.com/ticket/4672">#4672</a> : Fixed unable to redo the insertion of horizontal line.</li>
1117
+ <li><a href="http://dev.ckeditor.com/ticket/4677">#4677</a> : Fixed 'Tab' key is trapped by hidden dialog elements.</li>
1118
+ <li><a href="http://dev.ckeditor.com/ticket/4073">#4073</a> : Fixed insert template with replace option could result in empty document.</li>
1119
+ <li><a href="http://dev.ckeditor.com/ticket/4455">#4455</a> : Fixed unable to start editing when image inside document not loaded.</li>
1120
+ <li><a href="http://dev.ckeditor.com/ticket/4517">#4517</a> : Fixed 'dialog_backgroundCoverColor' doesn't work on IE6.</li>
1121
+ <li><a href="http://dev.ckeditor.com/ticket/3165">#3165</a> : Fixed enter key in empty list item before nested one result in collapsed line.</li>
1122
+ <li><a href="http://dev.ckeditor.com/ticket/4527">#4527</a> : Fixed checkbox generate invalid 'checked' attribute.</li>
1123
+ <li><a href="http://dev.ckeditor.com/ticket/1659">#1659</a> : Fixed unable to click below content to start editing in IE with 'config.docType' setting to standard compliant.</li>
1124
+ <li><a href="http://dev.ckeditor.com/ticket/3933">#3933</a> : Fixed extra &lt;br&gt; left at the end of document when the last element is a table.</li>
1125
+ <li><a href="http://dev.ckeditor.com/ticket/4736">#4736</a> : Fixed PAGE UP and PAGE DOWN keys in standards mode are not working.</li>
1126
+ <li><a href="http://dev.ckeditor.com/ticket/4725">#4725</a> : Fixed hitting 'enter' before html comment node produces a JavaScript error.</li>
1127
+ <li><a href="http://dev.ckeditor.com/ticket/4522">#4522</a> : Fixed unable to redo when typing after insert an image with relative url.</li>
1128
+ <li><a href="http://dev.ckeditor.com/ticket/4594">#4594</a> : Fixed context menu goes off-screen when mouse is at right had side of screen.</li>
1129
+ <li><a href="http://dev.ckeditor.com/ticket/4673">#4673</a> : Fixed undo not available straight away if shift key is used to enter first character.</li>
1130
+ <li><a href="http://dev.ckeditor.com/ticket/4690">#4690</a> : Fixed the parsing of nested inline elements.</li>
1131
+ <li><a href="http://dev.ckeditor.com/ticket/4450">#4450</a> : Fixed selecting multiple table cells before apply justify commands generates spurious paragraph in Firefox.</li>
1132
+ <li><a href="http://dev.ckeditor.com/ticket/4733">#4733</a> : Fixed dialog opening sometimes hang up Firefox and Safari.</li>
1133
+ <li><a href="http://dev.ckeditor.com/ticket/4498">#4498</a> : Fixed toolbar collapse button missing tooltip.</li>
1134
+ <li><a href="http://dev.ckeditor.com/ticket/4738">#4738</a> : Fixed inserting table inside bold/italic/underline generates error on ENTER_BR mode.</li>
1135
+ <li><a href="http://dev.ckeditor.com/ticket/4246">#4246</a> : Fixed avoid XHTML deprecated attributes for image styling.</li>
1136
+ <li><a href="http://dev.ckeditor.com/ticket/4543">#4543</a> : Fixed unable to move cursor between table and hr.</li>
1137
+ <li><a href="http://dev.ckeditor.com/ticket/4764">#4764</a> : Fixed wrong exception message when CKEDITOR.editor.append() to non-existing elements.</li>
1138
+ <li><a href="http://dev.ckeditor.com/ticket/4521">#4521</a> : Fixed dialog layout in IE6/7 may have scroll-bar and other weird effects.</li>
1139
+ <li><a href="http://dev.ckeditor.com/ticket/4709">#4709</a> : Fixed inconsistent scroll-bar behavior on IE.</li>
1140
+ <li><a href="http://dev.ckeditor.com/ticket/4776">#4776</a> : Fixed preview page failed to open when relative URl contains in document.</li>
1141
+ <li><a href="http://dev.ckeditor.com/ticket/4812">#4812</a> : Fixed 'Esc' key not working on dialogs in Opera.</li>
1142
+ <li>Updated the following language files:<ul>
1143
+ <li><a href="http://dev.ckeditor.com/ticket/4346">#4346</a> : Dutch;</li>
1144
+ <li><a href="http://dev.ckeditor.com/ticket/4837">#4837</a> : Finnish;</li>
1145
+ <li><a href="http://dev.ckeditor.com/ticket/4371">#4371</a> : Hebrew;</li>
1146
+ <li><a href="http://dev.ckeditor.com/ticket/4371">#4607</a> <a href="http://dev.ckeditor.com/ticket/4713">#4713</a> : Japanese;</li>
1147
+ <li><a href="http://dev.ckeditor.com/ticket/4660">#4660</a> : Norwegian.</li>
1148
+ </ul></li>
1149
+ </ul>
1150
+ <h3>
1151
+ CKEditor 3.0.1</h3>
1152
+ <p>
1153
+ New features:</p>
1154
+ <ul>
1155
+ <li><a href="http://dev.ckeditor.com/ticket/4219">#4219</a> : Added fallback mechanism for config.language.</li>
1156
+ <li><a href="http://dev.ckeditor.com/ticket/4194">#4194</a> : Added support for using multiple css style sheets within the editor.</li>
1157
+ </ul>
1158
+ <p>
1159
+ Fixed issues:</p>
1160
+ <ul>
1161
+ <li><a href="http://dev.ckeditor.com/ticket/3898">#3898</a> : Added validation for URL value in Image dialog.</li>
1162
+ <li><a href="http://dev.ckeditor.com/ticket/3528">#3528</a> : Fixed Context Menu issue when triggered using Shift+F10.</li>
1163
+ <li><a href="http://dev.ckeditor.com/ticket/4028">#4028</a> : Maximize control's tool tip was wrong once it is maximized.</li>
1164
+ <li><a href="http://dev.ckeditor.com/ticket/4237">#4237</a> : Toolbar is chopped off in Safari browser 3.x.</li>
1165
+ <li><a href="http://dev.ckeditor.com/ticket/4241">#4241</a> : Float panels are left on screen while editor is destroyed.</li>
1166
+ <li><a href="http://dev.ckeditor.com/ticket/4274">#4274</a> : Double click event is incorrect handled in 'divreplace' sample.</li>
1167
+ <li><a href="http://dev.ckeditor.com/ticket/4354">#4354</a> : Fixed TAB key on toolbar to not focus disabled buttons.</li>
1168
+ <li><a href="http://dev.ckeditor.com/ticket/3856">#3856</a> : Fixed focus and blur events in source view mode.</li>
1169
+ <li><a href="http://dev.ckeditor.com/ticket/3438">#3438</a> : Floating panels are off by (-1px, 0px) in RTL mode.</li>
1170
+ <li><a href="http://dev.ckeditor.com/ticket/3370">#3370</a> : Refactored use of CKEDITOR.env.isCustomDomain().</li>
1171
+ <li><a href="http://dev.ckeditor.com/ticket/4230">#4230</a> : HC detection caused js error.</li>
1172
+ <li><a href="http://dev.ckeditor.com/ticket/3978">#3978</a> : Fixed setStyle float on IE7 strict.</li>
1173
+ <li><a href="http://dev.ckeditor.com/ticket/4262">#4262</a> : Tab and Shift+Tab was not working to cycle through CTRL+SHIFT+F10 context menu in IE.</li>
1174
+ <li><a href="http://dev.ckeditor.com/ticket/3633">#3633</a> : Default context menu isn't disabled in toolbar, status bar, panels...</li>
1175
+ <li><a href="http://dev.ckeditor.com/ticket/3897">#3897</a> : Now there is no image previews when the URL is empty in image dialog.</li>
1176
+ <li><a href="http://dev.ckeditor.com/ticket/4048">#4048</a> : Context submenu was lacking uiColor.</li>
1177
+ <li><a href="http://dev.ckeditor.com/ticket/3568">#3568</a> : Dialogs now select all text when tabbing to text inputs.</li>
1178
+ <li><a href="http://dev.ckeditor.com/ticket/3727">#3727</a> : Cell Properties dialog was missing color selection option.</li>
1179
+ <li><a href="http://dev.ckeditor.com/ticket/3517">#3517</a> : Fixed "Match cyclic" field in Find &amp; Replace dialog.</li>
1180
+ <li><a href="http://dev.ckeditor.com/ticket/4368">#4368</a> : borderColor table cell attribute haven't worked for none-IE</li>
1181
+ <li><a href="http://dev.ckeditor.com/ticket/4203">#4203</a> : In IE quirks mode + toolbar collapsed + source mode editing block height was incorrect.</li>
1182
+ <li><a href="http://dev.ckeditor.com/ticket/4387">#4387</a> : Fixed: right clicking in Kama skin can lead to a javascript error.</li>
1183
+ <li><a href="http://dev.ckeditor.com/ticket/4397">#4397</a> : Wysiwyg mode caused the host page scroll.</li>
1184
+ <li><a href="http://dev.ckeditor.com/ticket/4385">#4385</a> : Fixed editor's auto adjusting on DOM structure were confusing the dirty checking mechanism.</li>
1185
+ <li><a href="http://dev.ckeditor.com/ticket/4397">#4397</a> : Fixed regression of [3816] where turn on design mode was causing Firefox3 to scroll the host page.</li>
1186
+ <li><a href="http://dev.ckeditor.com/ticket/4254">#4254</a> : Added basic API sample.</li>
1187
+ <li><a href="http://dev.ckeditor.com/ticket/4107">#4107</a> : Normalize css font-family style text for correct comparision.</li>
1188
+ <li><a href="http://dev.ckeditor.com/ticket/3664">#3664</a> : Insert block element in empty editor document should not create new paragraph.</li>
1189
+ <li><a href="http://dev.ckeditor.com/ticket/4037">#4037</a> : 'id' attribute is missing with Flash dialog advanced page.</li>
1190
+ <li><a href="http://dev.ckeditor.com/ticket/4047">#4047</a> : Delete selected control type element when 'Backspace' is pressed on it.</li>
1191
+ <li><a href="http://dev.ckeditor.com/ticket/4191">#4191</a> : Fixed: dialog changes confirmation on image dialog appeared even when no changes have been made.</li>
1192
+ <li><a href="http://dev.ckeditor.com/ticket/4351">#4351</a> : Dash and dot could appear in attribute names.</li>
1193
+ <li><a href="http://dev.ckeditor.com/ticket/4355">#4355</a> : 'maximize' and 'showblock' commands shouldn't take editor focus.</li>
1194
+ <li><a href="http://dev.ckeditor.com/ticket/4504">#4504</a> : Fixed 'Enter'/'Esc' key is not working on dialog button.</li>
1195
+ <li><a href="http://dev.ckeditor.com/ticket/4245">#4245</a> : 'Strange Template' now come with a style attribute for width.</li>
1196
+ <li><a href="http://dev.ckeditor.com/ticket/4512">#4512</a> : Fixed styles plugin incorrectly adding semicolons to style text.</li>
1197
+ <li><a href="http://dev.ckeditor.com/ticket/3855">#3855</a> : Fixed loading unminified _source files when ckeditor_source.js is used.</li>
1198
+ <li><a href="http://dev.ckeditor.com/ticket/3717">#3717</a> : Dialog settings defaults can now be overridden in-page through the CKEDITOR.config object.</li>
1199
+ <li><a href="http://dev.ckeditor.com/ticket/4481">#4481</a> : The 'stylesCombo_stylesSet' configuration entry didn't work for full URLs.</li>
1200
+ <li><a href="http://dev.ckeditor.com/ticket/4480">#4480</a> : Fixed scope attribute in th.</li>
1201
+ <li><a href="http://dev.ckeditor.com/ticket/4467">#4467</a> : Fixed bug to use custom icon in context menus. Thanks to george.</li>
1202
+ <li><a href="http://dev.ckeditor.com/ticket/4190">#4190</a> : Fixed select field dialog layout in Safari.</li>
1203
+ <li><a href="http://dev.ckeditor.com/ticket/4518">#4518</a> : Fixed unable to open dialog without editor focus in IE.</li>
1204
+ <li><a href="http://dev.ckeditor.com/ticket/4519">#4519</a> : Fixed maximize without editor focus throw error in IE.</li>
1205
+ <li>Updated the following language files:<ul>
1206
+ <li><a href="http://dev.ckeditor.com/ticket/3947">#3947</a> : Arabic;</li>
1207
+ <li><a href="http://dev.ckeditor.com/ticket/4466">#4466</a> : Czech;</li>
1208
+ <li><a href="http://dev.ckeditor.com/ticket/4363">#4363</a> : Danish;</li>
1209
+ <li><a href="http://dev.ckeditor.com/ticket/4346">#4346</a> : Dutch;</li>
1210
+ <li><a href="http://dev.ckeditor.com/ticket/4371">#4371</a> <a href="http://dev.ckeditor.com/ticket/4456">#4456</a> : Hebrew;</li>
1211
+ <li><a href="http://dev.ckeditor.com/ticket/4382">#4382</a> : Polish.</li>
1212
+ </ul></li>
1213
+ </ul>
1214
+ <h3>
1215
+ CKEditor 3.0</h3>
1216
+ <p>
1217
+ New features:</p>
1218
+ <ul>
1219
+ <li><a href="http://dev.ckeditor.com/ticket/3188">#3188</a> : Introduce
1220
+ &lt;pre&gt; formatting feature when converting from other blocks.</li>
1221
+ <li><a href="http://dev.ckeditor.com/ticket/4445">#4445</a> : editor::setData now support an optional callback parameter.</li>
1222
+ </ul>
1223
+ <p>
1224
+ Fixed issues:</p>
1225
+ <ul>
1226
+ <li><a href="http://dev.ckeditor.com/ticket/2856">#2856</a> : Fixed problem with inches in Paste From Word plugin.</li>
1227
+ <li><a href="http://dev.ckeditor.com/ticket/3929">#3929</a> : Using Paste dialog,
1228
+ the text is pasted into current selection</li>
1229
+ <li><a href="http://dev.ckeditor.com/ticket/3920">#3920</a> : Mouse cursor over characters in
1230
+ Special Character dialog now is correct</li>
1231
+ <li><a href="http://dev.ckeditor.com/ticket/3882">#3882</a> : Fixed an issue
1232
+ with PasteFromWord dialog in which default values was ignored</li>
1233
+ <li><a href="http://dev.ckeditor.com/ticket/3859">#3859</a> : Fixed Flash dialog layout in Webkit</li>
1234
+ <li><a href="http://dev.ckeditor.com/ticket/3852">#3852</a> : Disabled textarea resizing in dialogs</li>
1235
+ <li><a href="http://dev.ckeditor.com/ticket/3831">#3831</a> : The attempt to remove the contextmenu plugin
1236
+ will not anymore break the editor</li>
1237
+ <li><a href="http://dev.ckeditor.com/ticket/3781">#3781</a> : Colorbutton is now disabled in 'source' mode</li>
1238
+ <li><a href="http://dev.ckeditor.com/ticket/3848">#3848</a> : Fixed an issue with Webkit in witch
1239
+ elements in the Image and Link dialogs had wrong dimensions.</li>
1240
+ <li><a href="http://dev.ckeditor.com/ticket/3808">#3808</a> : Fixed UI Color Picker dialog size in example page.</li>
1241
+ <li><a href="http://dev.ckeditor.com/ticket/3658">#3658</a> : Editor had horizontal scrollbar in IE6.</li>
1242
+ <li><a href="http://dev.ckeditor.com/ticket/3819">#3819</a> : The cursor was not visible
1243
+ when applying style to collapsed selections in Firefox 2.</li>
1244
+ <li><a href="http://dev.ckeditor.com/ticket/3809">#3809</a> : Fixed beam cursor
1245
+ when mouse cursor is over text-only buttons in IE.</li>
1246
+ <li><a href="http://dev.ckeditor.com/ticket/3815">#3815</a> : Fixed an issue
1247
+ with the form dialog in which the "enctype" attribute is outputted as "encoding".</li>
1248
+ <li><a href="http://dev.ckeditor.com/ticket/3785">#3785</a> : Fixed an issue
1249
+ in CKEDITOR.tools.htmlEncode() which incorrectly outputs &amp;nbsp; in IE8.</li>
1250
+ <li><a href="http://dev.ckeditor.com/ticket/3820">#3820</a> : Fixed an issue in
1251
+ bullet list command in which a list created at the bottom of another gets merged to the top.
1252
+ </li>
1253
+ <li><a href="http://dev.ckeditor.com/ticket/3830">#3830</a> : Table cell properties dialog
1254
+ doesn't apply to all selected cells.</li>
1255
+ <li><a href="http://dev.ckeditor.com/ticket/3835">#3835</a> : Element path is not refreshed
1256
+ after click on 'newpage'; and safari is not putting focus on document also.
1257
+ </li>
1258
+ <li><a href="http://dev.ckeditor.com/ticket/3821">#3821</a> : Fixed an issue with JAWS in which
1259
+ toolbar items are read inconsistently between virtual cursor modes.</li>
1260
+ <li><a href="http://dev.ckeditor.com/ticket/3789">#3789</a> : The &quot;src&quot; attribute
1261
+ was getting duplicated in some situations.</li>
1262
+ <li><a href="http://dev.ckeditor.com/ticket/3591">#3591</a> : Protecting flash related elements
1263
+ including '&lt;object&gt;', '&lt;embed&gt;' and '&lt;param&gt;'.
1264
+ </li>
1265
+ <li><a href="http://dev.ckeditor.com/ticket/3759">#3759</a> : Fixed CKEDITOR.dom.element::scrollIntoView
1266
+ logic bug which scroll even element is inside viewport.
1267
+ </li>
1268
+ <li><a href="http://dev.ckeditor.com/ticket/3773">#3773</a> : Fixed remove list will merge lines.
1269
+ </li>
1270
+ <li><a href="http://dev.ckeditor.com/ticket/3829">#3829</a> : Fixed remove empty link on output data.</li>
1271
+ <li><a href="http://dev.ckeditor.com/ticket/3730">#3730</a> : Indent is performing on the whole
1272
+ block instead of selected lines in enterMode = BR.</li>
1273
+ <li><a href="http://dev.ckeditor.com/ticket/3844">#3844</a> : Fixed UndoManager register keydown on obsoleted document</li>
1274
+ <li><a href="http://dev.ckeditor.com/ticket/3805">#3805</a> : Enabled SCAYT plugin for IE.</li>
1275
+ <li><a href="http://dev.ckeditor.com/ticket/3834">#3834</a> : Context menu on table caption was incorrect.</li>
1276
+ <li><a href="http://dev.ckeditor.com/ticket/3812">#3812</a> : Fixed an issue in which the editor
1277
+ may show up empty or uneditable in IE7, 8 and Firefox 3.</li>
1278
+ <li><a href="http://dev.ckeditor.com/ticket/3825">#3825</a> : Fixed JS error when opening spellingcheck.</li>
1279
+ <li><a href="http://dev.ckeditor.com/ticket/3862">#3862</a> : Fixed html parser infinite loop on certain malformed
1280
+ source code.</li>
1281
+ <li><a href="http://dev.ckeditor.com/ticket/3639">#3639</a> : Button size was inconsistent.</li>
1282
+ <li><a href="http://dev.ckeditor.com/ticket/3874">#3874</a> : Paste as plain text in Safari loosing lines.</li>
1283
+ <li><a href="http://dev.ckeditor.com/ticket/3849">#3849</a> : Fixed IE8 crashes when applying lists and indenting.</li>
1284
+ <li><a href="http://dev.ckeditor.com/ticket/3876">#3876</a> : Changed dialog checkbox and radio labels to explicit labels.</li>
1285
+ <li><a href="http://dev.ckeditor.com/ticket/3843">#3843</a> : Fixed context submenu position in IE 6 &amp; 7 RTL.</li>
1286
+ <li><a href="http://dev.ckeditor.com/ticket/3864">#3864</a> : [FF]Document is not editable after inserting element on a fresh page.</li>
1287
+ <li><a href="http://dev.ckeditor.com/ticket/3883">#3883</a> : Fixed removing inline style logic incorrect on Firefox2.</li>
1288
+ <li><a href="http://dev.ckeditor.com/ticket/3884">#3884</a> : Empty "href" attribute was duplicated on output data.</li>
1289
+ <li><a href="http://dev.ckeditor.com/ticket/3858">#3858</a> : Fixed the issue where toolbars
1290
+ break up in IE6 and IE7 after the browser is resized.</li>
1291
+ <li><a href="http://dev.ckeditor.com/ticket/3868">#3868</a> : [chrome] SCAYT toolbar options was in reversed order.</li>
1292
+ <li><a href="http://dev.ckeditor.com/ticket/3875">#3875</a> : Fixed an issue in Safari where
1293
+ table row/column/cell menus are not useable when table cells are selected.</li>
1294
+ <li><a href="http://dev.ckeditor.com/ticket/3896">#3896</a> : The editing area was
1295
+ flashing when switching forth and back to source view.</li>
1296
+ <li><a href="http://dev.ckeditor.com/ticket/3894">#3894</a> : Fixed an issue where editor failed to initialize when using the on-demand loading way.</li>
1297
+ <li><a href="http://dev.ckeditor.com/ticket/3903">#3903</a> : Color button plugin doesn't read config entry from editor instance correctly.</li>
1298
+ <li><a href="http://dev.ckeditor.com/ticket/3801">#3801</a> : Comments at the start of the document was lost in IE.</li>
1299
+ <li><a href="http://dev.ckeditor.com/ticket/3871">#3871</a> : Unable to redo when undos to the front of snapshots stack.</li>
1300
+ <li><a href="http://dev.ckeditor.com/ticket/3909">#3909</a> : Move focus from editor into a text input control is broken.</li>
1301
+ <li><a href="http://dev.ckeditor.com/ticket/3870">#3870</a> : The empty paragraph
1302
+ desappears when hitting ENTER after &quot;New Page&quot;.</li>
1303
+ <li><a href="http://dev.ckeditor.com/ticket/3887">#3887</a> : Fixed an issue in which the create
1304
+ list command may leak outside of a selected table cell and into the rest of document.</li>
1305
+ <li><a href="http://dev.ckeditor.com/ticket/3916">#3916</a> : Fixed maximize does not enlarge editor width when width is set.</li>
1306
+ <li><a href="http://dev.ckeditor.com/ticket/3879">#3879</a> : [webkit] Color button panel had incorrect size on first open.</li>
1307
+ <li><a href="http://dev.ckeditor.com/ticket/3839">#3839</a> : Update Scayt plugin to reflect the latest change from SpellChecker.net.</li>
1308
+ <li><a href="http://dev.ckeditor.com/ticket/3742">#3742</a> : Fixed wrong dialog layout for dialogs without tab bar in IE RTL mode .</li>
1309
+ <li><a href="http://dev.ckeditor.com/ticket/3671">#3671</a> : Fixed body fixing should be applied to the real type under fake elements.</li>
1310
+ <li><a href="http://dev.ckeditor.com/ticket/3836">#3836</a> : Fixed remove list in enterMode=BR will merge sibling text to one line.</li>
1311
+ <li><a href="http://dev.ckeditor.com/ticket/3949">#3949</a> : Fixed enterKey within pre-formatted text introduce wrong line-break.</li>
1312
+ <li><a href="http://dev.ckeditor.com/ticket/3878">#3878</a> : Whenever possible,
1313
+ dialogs will not present scrollbars if the content is too big for its standard
1314
+ size.</li>
1315
+ <li><a href="http://dev.ckeditor.com/ticket/3782">#3782</a> : Remove empty list in table cell result in collapsed cell.</li>
1316
+ <li>Updated the following language files:<ul>
1317
+ <li><a href="http://dev.ckeditor.com/ticket/4183">#4183</a> : Basque;</li>
1318
+ <li><a href="http://dev.ckeditor.com/ticket/3837">#3837</a> : Brazilian Portuguese;</li>
1319
+ <li><a href="http://dev.ckeditor.com/ticket/4171">#4171</a> : Catalan;</li>
1320
+ <li><a href="http://dev.ckeditor.com/ticket/4115">#4115</a> : Chinese (Simplified);</li>
1321
+ <li><a href="http://dev.ckeditor.com/ticket/4179">#4179</a> : Chinese (Traditional);</li>
1322
+ <li><a href="http://dev.ckeditor.com/ticket/4102">#4102</a> : Croatian;</li>
1323
+ <li><a href="http://dev.ckeditor.com/ticket/4105">#4105</a> : French;</li>
1324
+ <li><a href="http://dev.ckeditor.com/ticket/4104">#4104</a> : German;</li>
1325
+ <li><a href="http://dev.ckeditor.com/ticket/4116">#4116</a> : Italian;</li>
1326
+ <li><a href="http://dev.ckeditor.com/ticket/4091">#4091</a> : Japanese;</li>
1327
+ <li><a href="http://dev.ckeditor.com/ticket/4120">#4120</a> : Polish;</li>
1328
+ <li><a href="http://dev.ckeditor.com/ticket/3987">#3987</a> : Spanish;</li>
1329
+ <li><a href="http://dev.ckeditor.com/ticket/4089">#4089</a> : Ukrainian;</li>
1330
+ <li><a href="http://dev.ckeditor.com/ticket/4166">#4166</a> : Vietnamese.</li>
1331
+ </ul></li>
1332
+ <li><a href="http://dev.ckeditor.com/ticket/3984">#3984</a> : [IE]The pre-formatted style is generating error.</li>
1333
+ <li><a href="http://dev.ckeditor.com/ticket/3946">#3946</a> : Fixed unable to hide contextmenu.</li>
1334
+ <li><a href="http://dev.ckeditor.com/ticket/3956">#3956</a> : Fixed About dialog in Source Mode for IE.</li>
1335
+ <li><a href="http://dev.ckeditor.com/ticket/3953">#3953</a> : Fixed keystroke for close Paste dialog.</li>
1336
+ <li><a href="http://dev.ckeditor.com/ticket/3951">#3951</a> : Reset size and lock ratio options were not accessible in Image dialog.</li>
1337
+ <li><a href="http://dev.ckeditor.com/ticket/3921">#3921</a> : Fixed Container scroll issue on IE7.</li>
1338
+ <li><a href="http://dev.ckeditor.com/ticket/3940">#3940</a> : Fixed list operation doesn't stop at table.</li>
1339
+ <li><a href="http://dev.ckeditor.com/ticket/3891">#3891</a> : [IE] Fixed 'automatic' font color doesn't work.</li>
1340
+ <li><a href="http://dev.ckeditor.com/ticket/3972">#3972</a> : Fixed unable to remove a single empty list in document in Firefox with enterMode=BR.</li>
1341
+ <li><a href="http://dev.ckeditor.com/ticket/3973">#3973</a> : Fixed list creation error at the end of document.</li>
1342
+ <li><a href="http://dev.ckeditor.com/ticket/3959">#3959</a> : Pasting styled text from word result in content lost.</li>
1343
+ <li><a href="http://dev.ckeditor.com/ticket/3793">#3793</a> : Combined images into sprites.</li>
1344
+ <li><a href="http://dev.ckeditor.com/ticket/3783">#3783</a> : Fixed indenting command in table cells create collapsed paragraph.</li>
1345
+ <li><a href="http://dev.ckeditor.com/ticket/3968">#3968</a> : About dialog layout was broken with IE+Standards+RTL.</li>
1346
+ <li><a href="http://dev.ckeditor.com/ticket/3991">#3991</a> : In IE quirks, text was not visible in v2 and office2003 skins.</li>
1347
+ <li><a href="http://dev.ckeditor.com/ticket/3983">#3983</a> : In IE, we&#39;ll now
1348
+ silently ignore wrong toolbar definition settings which have extra commas being
1349
+ left around.</li>
1350
+ <li>Fixed the following test cases:<ul>
1351
+ <li><a href="http://dev.ckeditor.com/ticket/3992">#3992</a> : core/ckeditor2.html</li>
1352
+ <li><a href="http://dev.ckeditor.com/ticket/4138">#4138</a> : core/plugins.html</li>
1353
+ <li><a href="http://dev.ckeditor.com/ticket/3801">#3801</a> : plugins/htmldataprocessor/htmldataprocessor.html</li>
1354
+ </ul></li>
1355
+ <li><a href="http://dev.ckeditor.com/ticket/3989">#3989</a> : Host page horizontal scrolling a lot when on having righ-to-left direction.</li>
1356
+ <li><a href="http://dev.ckeditor.com/ticket/4001">#4001</a> : Create link around existing image result incorrect.</li>
1357
+ <li><a href="http://dev.ckeditor.com/ticket/3988">#3988</a> : Destroy editor on form submit event cause error.</li>
1358
+ <li><a href="http://dev.ckeditor.com/ticket/3994">#3994</a> : Insert horizontal line at end of document cause error.</li>
1359
+ <li><a href="http://dev.ckeditor.com/ticket/4074">#4074</a> : Indent error with 'indentClasses' config specified.</li>
1360
+ <li><a href="http://dev.ckeditor.com/ticket/4057">#4057</a> : Fixed anchor is lost after switch between editing modes.</li>
1361
+ <li><a href="http://dev.ckeditor.com/ticket/3644">#3644</a> : Image dialog was missin radio lock.</li>
1362
+ <li><a href="http://dev.ckeditor.com/ticket/4014">#4014</a> : Firefox2 had no dialog button backgrounds.</li>
1363
+ <li><a href="http://dev.ckeditor.com/ticket/4018">#4018</a> : Firefox2 had no richcombo text visible.</li>
1364
+ <li><a href="http://dev.ckeditor.com/ticket/4035">#4035</a> : [IE6] Paste dialog size was too small.</li>
1365
+ <li><a href="http://dev.ckeditor.com/ticket/4049">#4049</a> : Kama skin was too wide with config.width.</li>
1366
+ <li>The following released files now doesn't require the _source folder<ul>
1367
+ <li><a href="http://dev.ckeditor.com/ticket/4086">#4086</a> : _samples/ui_languages.html</li>
1368
+ <li><a href="http://dev.ckeditor.com/ticket/4093">#4093</a> : _tests/core/dom/document.html</li>
1369
+ <li><a href="http://dev.ckeditor.com/ticket/4094">#4094</a> : Smiley plugin file</li>
1370
+ <li><a href="http://dev.ckeditor.com/ticket/4097">#4097</a> : No undo/redo support for fontColor and backgroundColor buttons.</li>
1371
+ </ul></li>
1372
+ <li><a href="http://dev.ckeditor.com/ticket/4085">#4085</a> : Paste and Paste from Word dialogs were not well styled in IE+RTL.</li>
1373
+ <li><a href="http://dev.ckeditor.com/ticket/3982">#3982</a> : Fixed enterKey on empty list item result in weird dom structure.</li>
1374
+ <li><a href="http://dev.ckeditor.com/ticket/4101">#4101</a> : Now it is possible to close dialog before gets focus.</li>
1375
+ <li><a href="http://dev.ckeditor.com/ticket/4075">#4075</a> : [IE6/7]Fixed apply custom inline style with "class" attribute failed.</li>
1376
+ <li><a href="http://dev.ckeditor.com/ticket/4087">#4087</a> : [Firefox]Fixed extra blocks created on create list when full document selected.</li>
1377
+ <li><a href="http://dev.ckeditor.com/ticket/4097">#4097</a> : No undo/redo support for fontColor and backgroundColor buttons.</li>
1378
+ <li><a href="http://dev.ckeditor.com/ticket/4111">#4111</a> : Fixed apply block style after inline style applied on full document error.</li>
1379
+ <li><a href="http://dev.ckeditor.com/ticket/3622">#3622</a> : Fixed shift enter with selection not deleting highlighted text.</li>
1380
+ <li><a href="http://dev.ckeditor.com/ticket/4092">#4092</a> : [IE6] Close button was missing for dialog without multiple tabs.</li>
1381
+ <li><a href="http://dev.ckeditor.com/ticket/4003">#4003</a> : Markup on the image dialog was disrupted when removing the border input.</li>
1382
+ <li><a href="http://dev.ckeditor.com/ticket/4096">#4096</a> : Editor content area was pushed down in IE RTL quirks.</li>
1383
+ <li><a href="http://dev.ckeditor.com/ticket/4112">#4112</a> : [FF] Paste dialog had scrollbars in quirks.</li>
1384
+ <li><a href="http://dev.ckeditor.com/ticket/4118">#4118</a> : Dialog dragging was
1385
+ occasionally behaving strangely .</li>
1386
+ <li><a href="http://dev.ckeditor.com/ticket/4077">#4077</a> : The toolbar combos
1387
+ were rendering incorrectly in some languages, like Chinese.</li>
1388
+ <li><a href="http://dev.ckeditor.com/ticket/3622">#3622</a> : The toolbar in the v2
1389
+ skin was wrapping improperly in some languages.</li>
1390
+ <li><a href="http://dev.ckeditor.com/ticket/4119">#4119</a> : Unable to edit image link with image dialog.</li>
1391
+ <li><a href="http://dev.ckeditor.com/ticket/4117">#4117</a> : Fixed dialog error when transforming image into button.</li>
1392
+ <li><a href="http://dev.ckeditor.com/ticket/4058">#4058</a> : [FF] wysiwyg mode is sometimes not been activated.</li>
1393
+ <li><a href="http://dev.ckeditor.com/ticket/4114">#4114</a> : [IE] RTE + IE6/IE7 Quirks = dialog mispositoned.</li>
1394
+ <li><a href="http://dev.ckeditor.com/ticket/4123">#4123</a> : Some dialog buttons were broken in IE7 quirks.</li>
1395
+ <li><a href="http://dev.ckeditor.com/ticket/4122">#4122</a> : [IE] The image dialog
1396
+ was being rendered improperly when loading an image with long URL.</li>
1397
+ <li><a href="http://dev.ckeditor.com/ticket/4144">#4144</a> : Fixed the white-spaces at the end of &lt;pre&gt; is incorrectly removed.</li>
1398
+ <li><a href="http://dev.ckeditor.com/ticket/4143">#4143</a> : Fixed element id is lost when extracting contents from the range.</li>
1399
+ <li><a href="http://dev.ckeditor.com/ticket/4007">#4007</a> : [IE] Source area overflow from editor chrome.</li>
1400
+ <li><a href="http://dev.ckeditor.com/ticket/4145">#4145</a> : Fixed the on demand
1401
+ (&quot;basic&quot;) loading model of the editor.</li>
1402
+ <li><a href="http://dev.ckeditor.com/ticket/4139">#4139</a> : Fixed list plugin regression of [3903].</li>
1403
+ <li><a href="http://dev.ckeditor.com/ticket/4147">#4147</a> : Unify style text normalization logic when comparing styles.</li>
1404
+ <li><a href="http://dev.ckeditor.com/ticket/4150">#4150</a> : Fixed enlarge list result incorrect at the inner boundary of block.</li>
1405
+ <li><a href="http://dev.ckeditor.com/ticket/4164">#4164</a> : Now it is possible to paste text
1406
+ in Source mode even if forcePasteAsPlainText = true.</li>
1407
+ <li><a href="http://dev.ckeditor.com/ticket/4129">#4129</a> : [FF]Unable to remove list with Ctrl-A.</li>
1408
+ <li><a href="http://dev.ckeditor.com/ticket/4172">#4172</a> : [Safari] The trailing
1409
+ &lt;br&gt; was not been always added to blank lines ending with &amp;nbsp;.</li>
1410
+ <li><a href="http://dev.ckeditor.com/ticket/4178">#4178</a> : It&#39;s now possible to
1411
+ copy and paste Flash content among different editor instances.</li>
1412
+ <li><a href="http://dev.ckeditor.com/ticket/4193">#4193</a> : Automatic font color produced empty span on Firefox 3.5.</li>
1413
+ <li><a href="http://dev.ckeditor.com/ticket/4186">#4186</a> : [FF] Fixed First open float panel cause host page scrollbar blinking.</li>
1414
+ <li><a href="http://dev.ckeditor.com/ticket/4227">#4227</a> : Fixed destroy editor instance created on textarea which is not within form cause error.</li>
1415
+ <li><a href="http://dev.ckeditor.com/ticket/4240">#4240</a> : Fixed editor name containing hyphen break editor completely.</li>
1416
+ <li><a href="http://dev.ckeditor.com/ticket/3828">#3828</a> : Malformed nested list is now corrected by the parser.</li>
1417
+ </ul>
1418
+ <h3>
1419
+ CKEditor 3.0 RC</h3>
1420
+ <p>
1421
+ Changelog starts at this release.</p>
1422
+ <div id="footer">
1423
+ <hr />
1424
+ <p>
1425
+ CKEditor - The text editor for Internet - <a href="http://ckeditor.com/">http://ckeditor.com</a>
1426
+ </p>
1427
+ <p id="copy">
1428
+ Copyright &copy; 2003-2011, <a href="http://cksource.com/">CKSource</a> - Frederico
1429
+ Knabben. All rights reserved.
1430
+ </p>
1431
+ </div>
1432
+ </body>
1433
+ </html>