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
@@ -0,0 +1,7 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ (function(){function a(e,f){var g;try{g=e.getSelection().getRanges()[0];}catch(h){return null;}g.shrink(CKEDITOR.SHRINK_TEXT);return g.getCommonAncestor().getAscendant(f,1);};var b=function(e){return e.type==CKEDITOR.NODE_ELEMENT&&e.is('li');},c={a:'lower-alpha',A:'upper-alpha',i:'lower-roman',I:'upper-roman',1:'decimal',disc:'disc',circle:'circle',square:'square'};function d(e,f){var g=e.lang.list;if(f=='bulletedListStyle')return{title:g.bulletedTitle,minWidth:300,minHeight:50,contents:[{id:'info',accessKey:'I',elements:[{type:'select',label:g.type,id:'type',align:'center',style:'width:150px',items:[[g.notset,''],[g.circle,'circle'],[g.disc,'disc'],[g.square,'square']],setup:function(i){var j=i.getStyle('list-style-type')||c[i.getAttribute('type')]||i.getAttribute('type')||'';this.setValue(j);},commit:function(i){var j=this.getValue();if(j)i.setStyle('list-style-type',j);else i.removeStyle('list-style-type');}}]}],onShow:function(){var i=this.getParentEditor(),j=a(i,'ul');j&&this.setupContent(j);},onOk:function(){var i=this.getParentEditor(),j=a(i,'ul');j&&this.commitContent(j);}};else if(f=='numberedListStyle'){var h=[[g.notset,''],[g.lowerRoman,'lower-roman'],[g.upperRoman,'upper-roman'],[g.lowerAlpha,'lower-alpha'],[g.upperAlpha,'upper-alpha'],[g.decimal,'decimal']];if(!CKEDITOR.env.ie||CKEDITOR.env.version>7)h.concat([[g.armenian,'armenian'],[g.decimalLeadingZero,'decimal-leading-zero'],[g.georgian,'georgian'],[g.lowerGreek,'lower-greek']]);return{title:g.numberedTitle,minWidth:300,minHeight:50,contents:[{id:'info',accessKey:'I',elements:[{type:'hbox',widths:['25%','75%'],children:[{label:g.start,type:'text',id:'start',validate:CKEDITOR.dialog.validate.integer(g.validateStartNumber),setup:function(i){var j=i.getFirst(b).getAttribute('value')||i.getAttribute('start')||1;j&&this.setValue(j);},commit:function(i){var j=i.getFirst(b),k=j.getAttribute('value')||i.getAttribute('start')||1;i.getFirst(b).removeAttribute('value');var l=parseInt(this.getValue(),10);if(isNaN(l))i.removeAttribute('start');else i.setAttribute('start',l);var m=j,n=k,o=isNaN(l)?1:l;while((m=m.getNext(b))&&n++){if(m.getAttribute('value')==n)m.setAttribute('value',o+n-k);}}},{type:'select',label:g.type,id:'type',style:'width: 100%;',items:h,setup:function(i){var j=i.getStyle('list-style-type')||c[i.getAttribute('type')]||i.getAttribute('type')||'';this.setValue(j);},commit:function(i){var j=this.getValue();if(j)i.setStyle('list-style-type',j);else i.removeStyle('list-style-type');}}]}]}],onShow:function(){var i=this.getParentEditor(),j=a(i,'ol');
7
+ j&&this.setupContent(j);},onOk:function(){var i=this.getParentEditor(),j=a(i,'ol');j&&this.commitContent(j);}};}};CKEDITOR.dialog.add('numberedListStyle',function(e){return d(e,'numberedListStyle');});CKEDITOR.dialog.add('bulletedListStyle',function(e){return d(e,'bulletedListStyle');});})();
@@ -0,0 +1,11 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ (function(){var a=CKEDITOR.htmlParser.fragment.prototype,b=CKEDITOR.htmlParser.element.prototype;a.onlyChild=b.onlyChild=function(){var u=this.children,v=u.length,w=v==1&&u[0];return w||null;};b.removeAnyChildWithName=function(u){var v=this.children,w=[],x;for(var y=0;y<v.length;y++){x=v[y];if(!x.name)continue;if(x.name==u){w.push(x);v.splice(y--,1);}w=w.concat(x.removeAnyChildWithName(u));}return w;};b.getAncestor=function(u){var v=this.parent;while(v&&!(v.name&&v.name.match(u)))v=v.parent;return v;};a.firstChild=b.firstChild=function(u){var v;for(var w=0;w<this.children.length;w++){v=this.children[w];if(u(v))return v;else if(v.name){v=v.firstChild(u);if(v)return v;}}return null;};b.addStyle=function(u,v,w){var A=this;var x,y='';if(typeof v=='string')y+=u+':'+v+';';else{if(typeof u=='object')for(var z in u){if(u.hasOwnProperty(z))y+=z+':'+u[z]+';';}else y+=u;w=v;}if(!A.attributes)A.attributes={};x=A.attributes.style||'';x=(w?[y,x]:[x,y]).join(';');A.attributes.style=x.replace(/^;|;(?=;)/,'');};CKEDITOR.dtd.parentOf=function(u){var v={};for(var w in this){if(w.indexOf('$')==-1&&this[w][u])v[w]=1;}return v;};function c(u){var v=u.children,w,x,y=u.children.length,z,A,B=/list-style-type:(.*?)(?:;|$)/,C=CKEDITOR.plugins.pastefromword.filters.stylesFilter;x=u.attributes;if(B.exec(x.style))return;for(var D=0;D<y;D++){w=v[D];if(w.attributes.value&&Number(w.attributes.value)==D+1)delete w.attributes.value;z=B.exec(w.attributes.style);if(z)if(z[1]==A||!A)A=z[1];else{A=null;break;}}if(A){for(D=0;D<y;D++){x=v[D].attributes;x.style&&(x.style=C([['list-style-type']])(x.style)||'');}u.addStyle('list-style-type',A);}};var d=/^([.\d]*)+(em|ex|px|gd|rem|vw|vh|vm|ch|mm|cm|in|pt|pc|deg|rad|ms|s|hz|khz){1}?/i,e=/^(?:\b0[^\s]*\s*){1,4}$/,f='^m{0,4}(cm|cd|d?c{0,3})(xc|xl|l?x{0,3})(ix|iv|v?i{0,3})$',g=new RegExp(f),h=new RegExp(f.toUpperCase()),i={decimal:/\d+/,'lower-roman':g,'upper-roman':h,'lower-alpha':/^[a-z]+$/,'upper-alpha':/^[A-Z]+$/},j={disc:/[l\u00B7\u2002]/,circle:/[\u006F\u00D8]/,square:/[\u006E\u25C6]/},k={ol:i,ul:j},l=[[1000,'M'],[900,'CM'],[500,'D'],[400,'CD'],[100,'C'],[90,'XC'],[50,'L'],[40,'XL'],[10,'X'],[9,'IX'],[5,'V'],[4,'IV'],[1,'I']],m='ABCDEFGHIJKLMNOPQRSTUVWXYZ';function n(u){u=u.toUpperCase();var v=l.length,w=0;for(var x=0;x<v;++x)for(var y=l[x],z=y[1].length;u.substr(0,z)==y[1];u=u.substr(z))w+=y[0];return w;};function o(u){u=u.toUpperCase();var v=m.length,w=1;for(var x=1;u.length>0;x*=v){w+=m.indexOf(u.charAt(u.length-1))*x;u=u.substr(0,u.length-1);}return w;
7
+ };var p=0,q=null,r,s=CKEDITOR.plugins.pastefromword={utils:{createListBulletMarker:function(u,v){var w=new CKEDITOR.htmlParser.element('cke:listbullet');w.attributes={'cke:listsymbol':u[0]};w.add(new CKEDITOR.htmlParser.text(v));return w;},isListBulletIndicator:function(u){var v=u.attributes&&u.attributes.style;if(/mso-list\s*:\s*Ignore/i.test(v))return true;},isContainingOnlySpaces:function(u){var v;return(v=u.onlyChild())&&/^(:?\s|&nbsp;)+$/.test(v.value);},resolveList:function(u){var v=u.attributes,w;if((w=u.removeAnyChildWithName('cke:listbullet'))&&w.length&&(w=w[0])){u.name='cke:li';if(v.style)v.style=s.filters.stylesFilter([['text-indent'],['line-height'],[/^margin(:?-left)?$/,null,function(x){var y=x.split(' ');x=CKEDITOR.tools.convertToPx(y[3]||y[1]||y[0]);if(!p&&q!==null&&x>q)p=x-q;q=x;v['cke:indent']=p&&Math.ceil(x/p)+1||1;}],[/^mso-list$/,null,function(x){x=x.split(' ');var y=Number(x[0].match(/\d+/)),z=Number(x[1].match(/\d+/));if(z==1){y!==r&&(v['cke:reset']=1);r=y;}v['cke:indent']=z;}]])(v.style,u)||'';if(!v['cke:indent']){q=0;v['cke:indent']=1;}CKEDITOR.tools.extend(v,w.attributes);return true;}else r=q=p=null;return false;},getStyleComponents:(function(){var u=CKEDITOR.dom.element.createFromHtml('<div style="position:absolute;left:-9999px;top:-9999px;"></div>',CKEDITOR.document);CKEDITOR.document.getBody().append(u);return function(v,w,x){u.setStyle(v,w);var y={},z=x.length;for(var A=0;A<z;A++)y[x[A]]=u.getStyle(x[A]);return y;};})(),listDtdParents:CKEDITOR.dtd.parentOf('ol')},filters:{flattenList:function(u,v){v=typeof v=='number'?v:1;var w=u.attributes,x;switch(w.type){case 'a':x='lower-alpha';break;case '1':x='decimal';break;}var y=u.children,z;for(var A=0;A<y.length;A++){z=y[A];if(z.name in CKEDITOR.dtd.$listItem){var B=z.attributes,C=z.children,D=C.length,E=C[D-1];if(E.name in CKEDITOR.dtd.$list){u.add(E,A+1);if(!--C.length)y.splice(A--,1);}z.name='cke:li';w.start&&!A&&(B.value=w.start);s.filters.stylesFilter([['tab-stops',null,function(H){var I=H.split(' ')[1].match(d);I&&(q=CKEDITOR.tools.convertToPx(I[0]));}],v==1?['mso-list',null,function(H){H=H.split(' ');var I=Number(H[0].match(/\d+/));I!==r&&(B['cke:reset']=1);r=I;}]:null])(B.style);B['cke:indent']=v;B['cke:listtype']=u.name;B['cke:list-style-type']=x;}else if(z.name in CKEDITOR.dtd.$list){arguments.callee.apply(this,[z,v+1]);y=y.slice(0,A).concat(z.children).concat(y.slice(A+1));u.children=[];for(var F=0,G=y.length;F<G;F++)u.add(y[F]);}}delete u.name;w['cke:list']=1;},assembleList:function(u){var v=u.children,w,x,y,z,A,B,C,D=[],E,F,G,H,I,J;
8
+ for(var K=0;K<v.length;K++){w=v[K];if('cke:li'==w.name){w.name='li';x=w;y=x.attributes;G=y['cke:listsymbol'];G=G&&G.match(/^(?:[(]?)([^\s]+?)([.)]?)$/);H=I=J=null;if(y['cke:ignored']){v.splice(K--,1);continue;}y['cke:reset']&&(C=A=B=null);z=Number(y['cke:indent']);if(z!=A)F=E=null;if(!G){H=y['cke:listtype']||'ol';I=y['cke:list-style-type'];}else{if(F&&k[F][E].test(G[1])){H=F;I=E;}else for(var L in k)for(var M in k[L]){if(k[L][M].test(G[1]))if(L=='ol'&&/alpha|roman/.test(M)){var N=/roman/.test(M)?n(G[1]):o(G[1]);if(!J||N<J){J=N;H=L;I=M;}}else{H=L;I=M;break;}}!H&&(H=G[2]?'ol':'ul');}F=H;E=I||(H=='ol'?'decimal':'disc');if(I&&I!=(H=='ol'?'decimal':'disc'))x.addStyle('list-style-type',I);if(H=='ol'&&G){switch(I){case 'decimal':J=Number(G[1]);break;case 'lower-roman':case 'upper-roman':J=n(G[1]);break;case 'lower-alpha':case 'upper-alpha':J=o(G[1]);break;}x.attributes.value=J;}if(!C){D.push(C=new CKEDITOR.htmlParser.element(H));C.add(x);v[K]=C;}else{if(z>A){D.push(C=new CKEDITOR.htmlParser.element(H));C.add(x);B.add(C);}else if(z<A){var O=A-z,P;while(O--&&(P=C.parent))C=P.parent;C.add(x);}else C.add(x);v.splice(K--,1);}B=x;A=z;}else if(C)C=A=B=null;}for(K=0;K<D.length;K++)c(D[K]);C=A=B=r=q=p=null;},falsyFilter:function(u){return false;},stylesFilter:function(u,v){return function(w,x){var y=[];(w||'').replace(/&quot;/g,'"').replace(/\s*([^ :;]+)\s*:\s*([^;]+)\s*(?=;|$)/g,function(A,B,C){B=B.toLowerCase();B=='font-family'&&(C=C.replace(/["']/g,''));var D,E,F,G;for(var H=0;H<u.length;H++){if(u[H]){D=u[H][0];E=u[H][1];F=u[H][2];G=u[H][3];if(B.match(D)&&(!E||C.match(E))){B=G||B;v&&(F=F||C);if(typeof F=='function')F=F(C,x,B);if(F&&F.push)B=F[0],F=F[1];if(typeof F=='string')y.push([B,F]);return;}}}!v&&y.push([B,C]);});for(var z=0;z<y.length;z++)y[z]=y[z].join(':');return y.length?y.join(';')+';':false;};},elementMigrateFilter:function(u,v){return function(w){var x=v?new CKEDITOR.style(u,v)._.definition:u;w.name=x.element;CKEDITOR.tools.extend(w.attributes,CKEDITOR.tools.clone(x.attributes));w.addStyle(CKEDITOR.style.getStyleText(x));};},styleMigrateFilter:function(u,v){var w=this.elementMigrateFilter;return function(x,y){var z=new CKEDITOR.htmlParser.element(null),A={};A[v]=x;w(u,A)(z);z.children=y.children;y.children=[z];};},bogusAttrFilter:function(u,v){if(v.name.indexOf('cke:')==-1)return false;},applyStyleFilter:null},getRules:function(u){var v=CKEDITOR.dtd,w=CKEDITOR.tools.extend({},v.$block,v.$listItem,v.$tableContent),x=u.config,y=this.filters,z=y.falsyFilter,A=y.stylesFilter,B=y.elementMigrateFilter,C=CKEDITOR.tools.bind(this.filters.styleMigrateFilter,this.filters),D=this.utils.createListBulletMarker,E=y.flattenList,F=y.assembleList,G=this.utils.isListBulletIndicator,H=this.utils.isContainingOnlySpaces,I=this.utils.resolveList,J=function(O){O=CKEDITOR.tools.convertToPx(O);
9
+ return isNaN(O)?O:O+'px';},K=this.utils.getStyleComponents,L=this.utils.listDtdParents,M=x.pasteFromWordRemoveFontStyles!==false,N=x.pasteFromWordRemoveStyles!==false;return{elementNames:[[/meta|link|script/,'']],root:function(O){O.filterChildren();F(O);},elements:{'^':function(O){var P;if(CKEDITOR.env.gecko&&(P=y.applyStyleFilter))P(O);},$:function(O){var P=O.name||'',Q=O.attributes;if(P in w&&Q.style)Q.style=A([[/^(:?width|height)$/,null,J]])(Q.style)||'';if(P.match(/h\d/)){O.filterChildren();if(I(O))return;B(x['format_'+P])(O);}else if(P in v.$inline){O.filterChildren();if(H(O))delete O.name;}else if(P.indexOf(':')!=-1&&P.indexOf('cke')==-1){O.filterChildren();if(P=='v:imagedata'){var R=O.attributes['o:href'];if(R)O.attributes.src=R;O.name='img';return;}delete O.name;}if(P in L){O.filterChildren();F(O);}},style:function(O){if(CKEDITOR.env.gecko){var P=O.onlyChild().value.match(/\/\* Style Definitions \*\/([\s\S]*?)\/\*/),Q=P&&P[1],R={};if(Q){Q.replace(/[\n\r]/g,'').replace(/(.+?)\{(.+?)\}/g,function(S,T,U){T=T.split(',');var V=T.length,W;for(var X=0;X<V;X++)CKEDITOR.tools.trim(T[X]).replace(/^(\w+)(\.[\w-]+)?$/g,function(Y,Z,aa){Z=Z||'*';aa=aa.substring(1,aa.length);if(aa.match(/MsoNormal/))return;if(!R[Z])R[Z]={};if(aa)R[Z][aa]=U;else R[Z]=U;});});y.applyStyleFilter=function(S){var T=R['*']?'*':S.name,U=S.attributes&&S.attributes['class'],V;if(T in R){V=R[T];if(typeof V=='object')V=V[U];V&&S.addStyle(V,true);}};}}return false;},p:function(O){if(/MsoListParagraph/.exec(O.attributes['class'])){var P=O.firstChild(function(S){return S.type==CKEDITOR.NODE_TEXT&&!H(S.parent);}),Q=P&&P.parent,R=Q&&Q.attributes;R&&!R.style&&(R.style='mso-list: Ignore;');}O.filterChildren();if(I(O))return;if(x.enterMode==CKEDITOR.ENTER_BR){delete O.name;O.add(new CKEDITOR.htmlParser.element('br'));}else B(x['format_'+(x.enterMode==CKEDITOR.ENTER_P?'p':'div')])(O);},div:function(O){var P=O.onlyChild();if(P&&P.name=='table'){var Q=O.attributes;P.attributes=CKEDITOR.tools.extend(P.attributes,Q);Q.style&&P.addStyle(Q.style);var R=new CKEDITOR.htmlParser.element('div');R.addStyle('clear','both');O.add(R);delete O.name;}},td:function(O){if(O.getAncestor('thead'))O.name='th';},ol:E,ul:E,dl:E,font:function(O){if(G(O.parent)){delete O.name;return;}O.filterChildren();var P=O.attributes,Q=P.style,R=O.parent;if('font'==R.name){CKEDITOR.tools.extend(R.attributes,O.attributes);Q&&R.addStyle(Q);delete O.name;}else{Q=Q||'';if(P.color){P.color!='#000000'&&(Q+='color:'+P.color+';');delete P.color;
10
+ }if(P.face){Q+='font-family:'+P.face+';';delete P.face;}if(P.size){Q+='font-size:'+(P.size>3?'large':P.size<3?'small':'medium')+';';delete P.size;}O.name='span';O.addStyle(Q);}},span:function(O){if(G(O.parent))return false;O.filterChildren();if(H(O)){delete O.name;return null;}if(G(O)){var P=O.firstChild(function(Y){return Y.value||Y.name=='img';}),Q=P&&(P.value||'l.'),R=Q&&Q.match(/^(?:[(]?)([^\s]+?)([.)]?)$/);if(R){var S=D(R,Q),T=O.getAncestor('span');if(T&&/ mso-hide:\s*all|display:\s*none /.test(T.attributes.style))S.attributes['cke:ignored']=1;return S;}}var U=O.children,V=O.attributes,W=V&&V.style,X=U&&U[0];if(W)V.style=A([['line-height'],[/^font-family$/,null,!M?C(x.font_style,'family'):null],[/^font-size$/,null,!M?C(x.fontSize_style,'size'):null],[/^color$/,null,!M?C(x.colorButton_foreStyle,'color'):null],[/^background-color$/,null,!M?C(x.colorButton_backStyle,'color'):null]])(W,O)||'';return null;},b:B(x.coreStyles_bold),i:B(x.coreStyles_italic),u:B(x.coreStyles_underline),s:B(x.coreStyles_strike),sup:B(x.coreStyles_superscript),sub:B(x.coreStyles_subscript),a:function(O){var P=O.attributes;if(P&&!P.href&&P.name)delete O.name;else if(CKEDITOR.env.webkit&&P.href&&P.href.match(/file:\/\/\/[\S]+#/i))P.href=P.href.replace(/file:\/\/\/[^#]+/i,'');},'cke:listbullet':function(O){if(O.getAncestor(/h\d/)&&!x.pasteFromWordNumberedHeadingToList)delete O.name;}},attributeNames:[[/^onmouse(:?out|over)/,''],[/^onload$/,''],[/(?:v|o):\w+/,''],[/^lang/,'']],attributes:{style:A(N?[[/^list-style-type$/,null],[/^margin$|^margin-(?!bottom|top)/,null,function(O,P,Q){if(P.name in {p:1,div:1}){var R=x.contentsLangDirection=='ltr'?'margin-left':'margin-right';if(Q=='margin')O=K(Q,O,[R])[R];else if(Q!=R)return null;if(O&&!e.test(O))return[R,O];}return null;}],[/^clear$/],[/^border.*|margin.*|vertical-align|float$/,null,function(O,P){if(P.name=='img')return O;}],[/^width|height$/,null,function(O,P){if(P.name in {table:1,td:1,th:1,img:1})return O;}]]:[[/^mso-/],[/-color$/,null,function(O){if(O=='transparent')return false;if(CKEDITOR.env.gecko)return O.replace(/-moz-use-text-color/g,'transparent');}],[/^margin$/,e],['text-indent','0cm'],['page-break-before'],['tab-stops'],['display','none'],M?[/font-?/]:null],N),width:function(O,P){if(P.name in v.$tableContent)return false;},border:function(O,P){if(P.name in v.$tableContent)return false;},'class':z,bgcolor:z,valign:N?z:function(O,P){P.addStyle('vertical-align',O);return false;}},comment:!CKEDITOR.env.ie?function(O,P){var Q=O.match(/<img.*?>/),R=O.match(/^\[if !supportLists\]([\s\S]*?)\[endif\]$/);
11
+ if(R){var S=R[1]||Q&&'l.',T=S&&S.match(/>(?:[(]?)([^\s]+?)([.)]?)</);return D(T,S);}if(CKEDITOR.env.gecko&&Q){var U=CKEDITOR.htmlParser.fragment.fromHtml(Q[0]).children[0],V=P.previous,W=V&&V.value.match(/<v:imagedata[^>]*o:href=['"](.*?)['"]/),X=W&&W[1];X&&(U.attributes.src=X);return U;}return false;}:z};}},t=function(){this.dataFilter=new CKEDITOR.htmlParser.filter();};t.prototype={toHtml:function(u){var v=CKEDITOR.htmlParser.fragment.fromHtml(u,false),w=new CKEDITOR.htmlParser.basicWriter();v.writeHtml(w,this.dataFilter);return w.getHtml(true);}};CKEDITOR.cleanWord=function(u,v){if(CKEDITOR.env.gecko)u=u.replace(/(<!--\[if[^<]*?\])-->([\S\s]*?)<!--(\[endif\]-->)/gi,'$1$2$3');var w=new t(),x=w.dataFilter;x.addRules(CKEDITOR.plugins.pastefromword.getRules(v));v.fire('beforeCleanWord',{filter:x});try{u=w.toHtml(u,false);}catch(y){alert(v.lang.pastefromword.error);}u=u.replace(/cke:.*?".*?"/g,'');u=u.replace(/style=""/g,'');u=u.replace(/<span>/g,'');return u;};})();
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ (function(){CKEDITOR.dialog.add('pastetext',function(a){return{title:a.lang.pasteText.title,minWidth:CKEDITOR.env.ie&&CKEDITOR.env.quirks?368:350,minHeight:240,onShow:function(){this.setupContent();},onOk:function(){this.commitContent();},contents:[{label:a.lang.common.generalTab,id:'general',elements:[{type:'html',id:'pasteMsg',html:'<div style="white-space:normal;width:340px;">'+a.lang.clipboard.pasteMsg+'</div>'},{type:'textarea',id:'content',className:'cke_pastetext',onLoad:function(){var b=this.getDialog().getContentElement('general','pasteMsg').getElement(),c=this.getElement().getElementsByTag('textarea').getItem(0);c.setAttribute('aria-labelledby',b.$.id);c.setStyle('direction',a.config.contentsLangDirection);},focus:function(){this.getElement().focus();},setup:function(){this.setValue('');},commit:function(){var b=this.getValue();setTimeout(function(){a.fire('paste',{text:b});},0);}}]}]};});})();
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ (function(){function a(b,c){var d=b.lang.placeholder,e=b.lang.common.generalTab;return{title:d.title,minWidth:300,minHeight:80,contents:[{id:'info',label:e,title:e,elements:[{id:'text',type:'text',style:'width: 100%;',label:d.text,'default':'',required:true,validate:CKEDITOR.dialog.validate.notEmpty(d.textMissing),setup:function(f){if(c)this.setValue(f.getText().slice(2,-2));},commit:function(f){var g='[['+this.getValue()+']]';CKEDITOR.plugins.placeholder.createPlaceholder(b,f,g);}}]}],onShow:function(){if(c)this._element=CKEDITOR.plugins.placeholder.getSelectedPlaceHoder(b);this.setupContent(this._element);},onOk:function(){this.commitContent(this._element);delete this._element;}};};CKEDITOR.dialog.add('createplaceholder',function(b){return a(b);});CKEDITOR.dialog.add('editplaceholder',function(b){return a(b,1);});})();
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','en',{placeholder:{title:'Placeholder Properties',toolbar:'Create Placeholder',text:'Placeholder Text',edit:'Edit Placeholder',textMissing:'The placeholder must contain text.'}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','he',{placeholder:{title:'מאפייני שומר מקום',toolbar:'צור שומר מקום',text:'תוכן שומר המקום',edit:'ערוך שומר מקום',textMissing:'שומר המקום חייב להכיל טקסט.'}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ (function(){var a=/\[\[[^\]]+\]\]/g;CKEDITOR.plugins.add('placeholder',{requires:['dialog'],lang:['en','he'],init:function(b){var c=b.lang.placeholder;b.addCommand('createplaceholder',new CKEDITOR.dialogCommand('createplaceholder'));b.addCommand('editplaceholder',new CKEDITOR.dialogCommand('editplaceholder'));b.ui.addButton('CreatePlaceholder',{label:c.toolbar,command:'createplaceholder',icon:this.path+'placeholder.gif'});if(b.addMenuItems){b.addMenuGroup('placeholder',20);b.addMenuItems({editplaceholder:{label:c.edit,command:'editplaceholder',group:'placeholder',order:1,icon:this.path+'placeholder.gif'}});if(b.contextMenu)b.contextMenu.addListener(function(d,e){if(!d||!d.data('cke-placeholder'))return null;return{editplaceholder:CKEDITOR.TRISTATE_OFF};});}b.on('doubleclick',function(d){if(CKEDITOR.plugins.placeholder.getSelectedPlaceHoder(b))d.data.dialog='editplaceholder';});b.addCss('.cke_placeholder{background-color: #ffff00;'+(CKEDITOR.env.gecko?'cursor: default;':'')+'}');b.on('contentDom',function(){b.document.getBody().on('resizestart',function(d){if(b.getSelection().getSelectedElement().data('cke-placeholder'))d.data.preventDefault();});});CKEDITOR.dialog.add('createplaceholder',this.path+'dialogs/placeholder.js');CKEDITOR.dialog.add('editplaceholder',this.path+'dialogs/placeholder.js');},afterInit:function(b){var c=b.dataProcessor,d=c&&c.dataFilter,e=c&&c.htmlFilter;if(d)d.addRules({text:function(f){return f.replace(a,function(g){return CKEDITOR.plugins.placeholder.createPlaceholder(b,null,g,1);});}});if(e)e.addRules({elements:{span:function(f){if(f.attributes&&f.attributes['data-cke-placeholder'])delete f.name;}}});}});})();CKEDITOR.plugins.placeholder={createPlaceholder:function(a,b,c,d){var e=new CKEDITOR.dom.element('span',a.document);e.setAttributes({contentEditable:'false','data-cke-placeholder':1,'class':'cke_placeholder'});c&&e.setText(c);if(d)return e.getOuterHtml();if(b){if(CKEDITOR.env.ie){e.insertAfter(b);setTimeout(function(){b.remove();e.focus();},10);}else e.replace(b);}else a.insertElement(e);return null;},getSelectedPlaceHoder:function(a){var b=a.getSelection().getRanges()[0];b.shrink(CKEDITOR.SHRINK_TEXT);var c=b.startContainer;while(c&&!(c.type==CKEDITOR.NODE_ELEMENT&&c.data('cke-placeholder')))c=c.getParent();return c;}};
@@ -0,0 +1,8 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.dialog.add('scaytcheck',function(a){var b=true,c,d=CKEDITOR.document,e=a.name,f=CKEDITOR.plugins.scayt.getUiTabs(a),g,h=[],i=0,j=['dic_create_'+e+',dic_restore_'+e,'dic_rename_'+e+',dic_delete_'+e],k=['mixedCase','mixedWithDigits','allCaps','ignoreDomainNames'];function l(){if(typeof document.forms['optionsbar_'+e]!='undefined')return document.forms['optionsbar_'+e].options;return[];};function m(){if(typeof document.forms['languagesbar_'+e]!='undefined')return document.forms['languagesbar_'+e].scayt_lang;return[];};function n(z,A){if(!z)return;var B=z.length;if(B==undefined){z.checked=z.value==A.toString();return;}for(var C=0;C<B;C++){z[C].checked=false;if(z[C].value==A.toString())z[C].checked=true;}};var o=a.lang.scayt,p=[{id:'options',label:o.optionsTab,elements:[{type:'html',id:'options',html:'<form name="optionsbar_'+e+'"><div class="inner_options">'+'\t<div class="messagebox"></div>'+'\t<div style="display:none;">'+'\t\t<input type="checkbox" name="options" id="allCaps_'+e+'" />'+'\t\t<label for="allCaps" id="label_allCaps_'+e+'"></label>'+'\t</div>'+'\t<div style="display:none;">'+'\t\t<input name="options" type="checkbox" id="ignoreDomainNames_'+e+'" />'+'\t\t<label for="ignoreDomainNames" id="label_ignoreDomainNames_'+e+'"></label>'+'\t</div>'+'\t<div style="display:none;">'+'\t<input name="options" type="checkbox" id="mixedCase_'+e+'" />'+'\t\t<label for="mixedCase" id="label_mixedCase_'+e+'"></label>'+'\t</div>'+'\t<div style="display:none;">'+'\t\t<input name="options" type="checkbox" id="mixedWithDigits_'+e+'" />'+'\t\t<label for="mixedWithDigits" id="label_mixedWithDigits_'+e+'"></label>'+'\t</div>'+'</div></form>'}]},{id:'langs',label:o.languagesTab,elements:[{type:'html',id:'langs',html:'<form name="languagesbar_'+e+'"><div class="inner_langs">'+'\t<div class="messagebox"></div>\t'+' <div style="float:left;width:45%;margin-left:5px;" id="scayt_lcol_'+e+'" ></div>'+' <div style="float:left;width:45%;margin-left:15px;" id="scayt_rcol_'+e+'"></div>'+'</div></form>'}]},{id:'dictionaries',label:o.dictionariesTab,elements:[{type:'html',style:'',id:'dictionaries',html:'<form name="dictionarybar_'+e+'"><div class="inner_dictionary" style="text-align:left; white-space:normal; width:320px; overflow: hidden;">'+'\t<div style="margin:5px auto; width:80%;white-space:normal; overflow:hidden;" id="dic_message_'+e+'"> </div>'+'\t<div style="margin:5px auto; width:80%;white-space:normal;"> '+' <span class="cke_dialog_ui_labeled_label" >Dictionary name</span><br>'+'\t\t<span class="cke_dialog_ui_labeled_content" >'+'\t\t\t<div class="cke_dialog_ui_input_text">'+'\t\t\t\t<input id="dic_name_'+e+'" type="text" class="cke_dialog_ui_input_text"/>'+'\t\t</div></span></div>'+'\t\t<div style="margin:5px auto; width:80%;white-space:normal;">'+'\t\t\t<a style="display:none;" class="cke_dialog_ui_button" href="javascript:void(0)" id="dic_create_'+e+'">'+'\t\t\t\t</a>'+'\t\t\t<a style="display:none;" class="cke_dialog_ui_button" href="javascript:void(0)" id="dic_delete_'+e+'">'+'\t\t\t\t</a>'+'\t\t\t<a style="display:none;" class="cke_dialog_ui_button" href="javascript:void(0)" id="dic_rename_'+e+'">'+'\t\t\t\t</a>'+'\t\t\t<a style="display:none;" class="cke_dialog_ui_button" href="javascript:void(0)" id="dic_restore_'+e+'">'+'\t\t\t\t</a>'+'\t\t</div>'+'\t<div style="margin:5px auto; width:95%;white-space:normal;" id="dic_info_'+e+'"></div>'+'</div></form>'}]},{id:'about',label:o.aboutTab,elements:[{type:'html',id:'about',style:'margin: 5px 5px;',html:'<div id="scayt_about_'+e+'"></div>'}]}],q={title:o.title,minWidth:360,minHeight:220,onShow:function(){var z=this;
7
+ z.data=a.fire('scaytDialog',{});z.options=z.data.scayt_control.option();z.chosed_lang=z.sLang=z.data.scayt_control.sLang;if(!z.data||!z.data.scayt||!z.data.scayt_control){alert('Error loading application service');z.hide();return;}var A=0;if(b)z.data.scayt.getCaption(a.langCode||'en',function(B){if(A++>0)return;c=B;s.apply(z);t.apply(z);b=false;});else t.apply(z);z.selectPage(z.data.tab);},onOk:function(){var z=this.data.scayt_control;z.option(this.options);var A=this.chosed_lang;z.setLang(A);z.refresh();},onCancel:function(){var z=l();for(var A in z)z[A].checked=false;n(m(),'');},contents:h},r=CKEDITOR.plugins.scayt.getScayt(a);for(g=0;g<f.length;g++){if(f[g]==1)h[h.length]=p[g];}if(f[2]==1)i=1;var s=function(){var z=this,A=z.data.scayt.getLangList(),B=['dic_create','dic_delete','dic_rename','dic_restore'],C=[],D=[],E=k,F;if(i){for(F=0;F<B.length;F++){C[F]=B[F]+'_'+e;d.getById(C[F]).setHtml('<span class="cke_dialog_ui_button">'+c['button_'+B[F]]+'</span>');}d.getById('dic_info_'+e).setHtml(c.dic_info);}if(f[0]==1)for(F in E){var G='label_'+E[F],H=G+'_'+e,I=d.getById(H);if('undefined'!=typeof I&&'undefined'!=typeof c[G]&&'undefined'!=typeof z.options[E[F]]){I.setHtml(c[G]);var J=I.getParent();J.$.style.display='block';}}var K='<p><img src="'+window.scayt.getAboutInfo().logoURL+'" /></p>'+'<p>'+c.version+window.scayt.getAboutInfo().version.toString()+'</p>'+'<p>'+c.about_throwt_copy+'</p>';d.getById('scayt_about_'+e).setHtml(K);var L=function(U,V){var W=d.createElement('label');W.setAttribute('for','cke_option'+U);W.setHtml(V[U]);if(z.sLang==U)z.chosed_lang=U;var X=d.createElement('div'),Y=CKEDITOR.dom.element.createFromHtml('<input id="cke_option'+U+'" type="radio" '+(z.sLang==U?'checked="checked"':'')+' value="'+U+'" name="scayt_lang" />');Y.on('click',function(){this.$.checked=true;z.chosed_lang=U;});X.append(Y);X.append(W);return{lang:V[U],code:U,radio:X};};if(f[1]==1){for(F in A.rtl)D[D.length]=L(F,A.ltr);for(F in A.ltr)D[D.length]=L(F,A.ltr);D.sort(function(U,V){return V.lang>U.lang?-1:1;});var M=d.getById('scayt_lcol_'+e),N=d.getById('scayt_rcol_'+e);for(F=0;F<D.length;F++){var O=F<D.length/2?M:N;O.append(D[F].radio);}}var P={};P.dic_create=function(U,V,W){var X=W[0]+','+W[1],Y=c.err_dic_create,Z=c.succ_dic_create;window.scayt.createUserDictionary(V,function(aa){x(X);w(W[1]);Z=Z.replace('%s',aa.dname);v(Z);},function(aa){Y=Y.replace('%s',aa.dname);u(Y+'( '+(aa.message||'')+')');});};P.dic_rename=function(U,V){var W=c.err_dic_rename||'',X=c.succ_dic_rename||'';
8
+ window.scayt.renameUserDictionary(V,function(Y){X=X.replace('%s',Y.dname);y(V);v(X);},function(Y){W=W.replace('%s',Y.dname);y(V);u(W+'( '+(Y.message||'')+' )');});};P.dic_delete=function(U,V,W){var X=W[0]+','+W[1],Y=c.err_dic_delete,Z=c.succ_dic_delete;window.scayt.deleteUserDictionary(function(aa){Z=Z.replace('%s',aa.dname);x(X);w(W[0]);y('');v(Z);},function(aa){Y=Y.replace('%s',aa.dname);u(Y);});};P.dic_restore=z.dic_restore||(function(U,V,W){var X=W[0]+','+W[1],Y=c.err_dic_restore,Z=c.succ_dic_restore;window.scayt.restoreUserDictionary(V,function(aa){Z=Z.replace('%s',aa.dname);x(X);w(W[1]);v(Z);},function(aa){Y=Y.replace('%s',aa.dname);u(Y);});});function Q(U){var V=d.getById('dic_name_'+e).getValue();if(!V){u(' Dictionary name should not be empty. ');return false;}try{var W=U.data.getTarget().getParent(),X=/(dic_\w+)_[\w\d]+/.exec(W.getId())[1];P[X].apply(null,[W,V,j]);}catch(Y){u(' Dictionary error. ');}return true;};var R=(j[0]+','+j[1]).split(','),S;for(F=0,S=R.length;F<S;F+=1){var T=d.getById(R[F]);if(T)T.on('click',Q,this);}},t=function(){var z=this;if(f[0]==1){var A=l();for(var B=0,C=A.length;B<C;B++){var D=A[B].id,E=d.getById(D);if(E){A[B].checked=false;if(z.options[D.split('_')[0]]==1)A[B].checked=true;if(b)E.on('click',function(){z.options[this.getId().split('_')[0]]=this.$.checked?1:0;});}}}if(f[1]==1){var F=d.getById('cke_option'+z.sLang);n(F.$,z.sLang);}if(i){window.scayt.getNameUserDictionary(function(G){var H=G.dname;x(j[0]+','+j[1]);if(H){d.getById('dic_name_'+e).setValue(H);w(j[1]);}else w(j[0]);},function(){d.getById('dic_name_'+e).setValue('');});v('');}};function u(z){d.getById('dic_message_'+e).setHtml('<span style="color:red;">'+z+'</span>');};function v(z){d.getById('dic_message_'+e).setHtml('<span style="color:blue;">'+z+'</span>');};function w(z){z=String(z);var A=z.split(',');for(var B=0,C=A.length;B<C;B+=1)d.getById(A[B]).$.style.display='inline';};function x(z){z=String(z);var A=z.split(',');for(var B=0,C=A.length;B<C;B+=1)d.getById(A[B]).$.style.display='none';};function y(z){d.getById('dic_name_'+e).$.value=z;};return q;});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ a{text-decoration:none;padding:2px 4px 4px 6px;display:block;border-width:1px;border-style:solid;margin:0;}a.cke_scayt_toogle:hover,a.cke_scayt_toogle:focus,a.cke_scayt_toogle:active{border-color:#316ac5;background-color:#dff1ff;color:#000;cursor:pointer;margin:0;}a.cke_scayt_toogle{color:#316ac5;border-color:#fff;}.scayt_enabled a.cke_scayt_item{color:#316ac5;border-color:#fff;margin:0;}.scayt_disabled a.cke_scayt_item{color:gray;border-color:#fff;}.scayt_enabled a.cke_scayt_item:hover,.scayt_enabled a.cke_scayt_item:focus,.scayt_enabled a.cke_scayt_item:active{border-color:#316ac5;background-color:#dff1ff;color:#000;cursor:pointer;}.scayt_disabled a.cke_scayt_item:hover,.scayt_disabled a.cke_scayt_item:focus,.scayt_disabled a.cke_scayt_item:active{border-color:gray;background-color:#dff1ff;color:gray;cursor:no-drop;}.cke_scayt_set_on,.cke_scayt_set_off{display:none;}.scayt_enabled .cke_scayt_set_on{display:none;}.scayt_disabled .cke_scayt_set_on{display:inline;}.scayt_disabled .cke_scayt_set_off{display:none;}.scayt_enabled .cke_scayt_set_off{display:inline;}
@@ -0,0 +1,7 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.dialog.add('smiley',function(a){var b=a.config,c=a.lang.smiley,d=b.smiley_images,e=b.smiley_columns||8,f,g,h=function(o){var p=o.data.getTarget(),q=p.getName();if(q=='a')p=p.getChild(0);else if(q!='img')return;var r=p.getAttribute('cke_src'),s=p.getAttribute('title'),t=a.document.createElement('img',{attributes:{src:r,'data-cke-saved-src':r,title:s,alt:s,width:p.$.width,height:p.$.height}});a.insertElement(t);g.hide();o.data.preventDefault();},i=CKEDITOR.tools.addFunction(function(o,p){o=new CKEDITOR.dom.event(o);p=new CKEDITOR.dom.element(p);var q,r,s=o.getKeystroke(),t=a.lang.dir=='rtl';switch(s){case 38:if(q=p.getParent().getParent().getPrevious()){r=q.getChild([p.getParent().getIndex(),0]);r.focus();}o.preventDefault();break;case 40:if(q=p.getParent().getParent().getNext()){r=q.getChild([p.getParent().getIndex(),0]);if(r)r.focus();}o.preventDefault();break;case 32:h({data:o});o.preventDefault();break;case t?37:39:case 9:if(q=p.getParent().getNext()){r=q.getChild(0);r.focus();o.preventDefault(true);}else if(q=p.getParent().getParent().getNext()){r=q.getChild([0,0]);if(r)r.focus();o.preventDefault(true);}break;case t?39:37:case CKEDITOR.SHIFT+9:if(q=p.getParent().getPrevious()){r=q.getChild(0);r.focus();o.preventDefault(true);}else if(q=p.getParent().getParent().getPrevious()){r=q.getLast().getChild(0);r.focus();o.preventDefault(true);}break;default:return;}}),j=CKEDITOR.tools.getNextId()+'_smiley_emtions_label',k=['<div><span id="'+j+'" class="cke_voice_label">'+c.options+'</span>','<table role="listbox" aria-labelledby="'+j+'" style="width:100%;height:100%" cellspacing="2" cellpadding="2"',CKEDITOR.env.ie&&CKEDITOR.env.quirks?' style="position:absolute;"':'','><tbody>'],l=d.length;for(f=0;f<l;f++){if(f%e===0)k.push('<tr>');var m='cke_smile_label_'+f+'_'+CKEDITOR.tools.getNextNumber();k.push('<td class="cke_dark_background cke_centered" style="vertical-align: middle;"><a href="javascript:void(0)" role="option"',' aria-posinset="'+(f+1)+'"',' aria-setsize="'+l+'"',' aria-labelledby="'+m+'"',' class="cke_smile cke_hand" tabindex="-1" onkeydown="CKEDITOR.tools.callFunction( ',i,', event, this );">','<img class="cke_hand" title="',b.smiley_descriptions[f],'" cke_src="',CKEDITOR.tools.htmlEncode(b.smiley_path+d[f]),'" alt="',b.smiley_descriptions[f],'"',' src="',CKEDITOR.tools.htmlEncode(b.smiley_path+d[f]),'"',CKEDITOR.env.ie?" onload=\"this.setAttribute('width', 2); this.removeAttribute('width');\" ":'','><span id="'+m+'" class="cke_voice_label">'+b.smiley_descriptions[f]+'</span>'+'</a>','</td>');
7
+ if(f%e==e-1)k.push('</tr>');}if(f<e-1){for(;f<e-1;f++)k.push('<td></td>');k.push('</tr>');}k.push('</tbody></table></div>');var n={type:'html',id:'smileySelector',html:k.join(''),onLoad:function(o){g=o.sender;},focus:function(){var o=this;setTimeout(function(){var p=o.getElement().getElementsByTag('a').getItem(0);p.focus();},0);},onClick:h,style:'width: 100%; border-collapse: separate;'};return{title:a.lang.smiley.title,minWidth:270,minHeight:120,contents:[{id:'tab1',label:'',title:'',expand:true,padding:0,elements:[n]}],buttons:[CKEDITOR.dialog.cancelButton]};});
@@ -0,0 +1,7 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.dialog.add('specialchar',function(a){var b,c=a.lang.specialChar,d=function(j){var k,l;if(j.data)k=j.data.getTarget();else k=new CKEDITOR.dom.element(j);if(k.getName()=='a'&&(l=k.getChild(0).getHtml())){k.removeClass('cke_light_background');b.hide();var m=a.document.createElement('span');m.setHtml(l);a.insertText(m.getText());}},e=CKEDITOR.tools.addFunction(d),f,g=function(j,k){var l;k=k||j.data.getTarget();if(k.getName()=='span')k=k.getParent();if(k.getName()=='a'&&(l=k.getChild(0).getHtml())){if(f)h(null,f);var m=b.getContentElement('info','htmlPreview').getElement();b.getContentElement('info','charPreview').getElement().setHtml(l);m.setHtml(CKEDITOR.tools.htmlEncode(l));k.getParent().addClass('cke_light_background');f=k;}},h=function(j,k){k=k||j.data.getTarget();if(k.getName()=='span')k=k.getParent();if(k.getName()=='a'){b.getContentElement('info','charPreview').getElement().setHtml('&nbsp;');b.getContentElement('info','htmlPreview').getElement().setHtml('&nbsp;');k.getParent().removeClass('cke_light_background');f=undefined;}},i=CKEDITOR.tools.addFunction(function(j){j=new CKEDITOR.dom.event(j);var k=j.getTarget(),l,m,n=j.getKeystroke(),o=a.lang.dir=='rtl';switch(n){case 38:if(l=k.getParent().getParent().getPrevious()){m=l.getChild([k.getParent().getIndex(),0]);m.focus();h(null,k);g(null,m);}j.preventDefault();break;case 40:if(l=k.getParent().getParent().getNext()){m=l.getChild([k.getParent().getIndex(),0]);if(m&&m.type==1){m.focus();h(null,k);g(null,m);}}j.preventDefault();break;case 32:d({data:j});j.preventDefault();break;case o?37:39:case 9:if(l=k.getParent().getNext()){m=l.getChild(0);if(m.type==1){m.focus();h(null,k);g(null,m);j.preventDefault(true);}else h(null,k);}else if(l=k.getParent().getParent().getNext()){m=l.getChild([0,0]);if(m&&m.type==1){m.focus();h(null,k);g(null,m);j.preventDefault(true);}else h(null,k);}break;case o?39:37:case CKEDITOR.SHIFT+9:if(l=k.getParent().getPrevious()){m=l.getChild(0);m.focus();h(null,k);g(null,m);j.preventDefault(true);}else if(l=k.getParent().getParent().getPrevious()){m=l.getLast().getChild(0);m.focus();h(null,k);g(null,m);j.preventDefault(true);}else h(null,k);break;default:return;}});return{title:c.title,minWidth:430,minHeight:280,buttons:[CKEDITOR.dialog.cancelButton],charColumns:17,onLoad:function(){var j=this.definition.charColumns,k=a.config.extraSpecialChars,l=a.config.specialChars,m=CKEDITOR.tools.getNextId()+'_specialchar_table_label',n=['<table role="listbox" aria-labelledby="'+m+'"'+' style="width: 320px; height: 100%; border-collapse: separate;"'+' align="center" cellspacing="2" cellpadding="2" border="0">'],o=0,p=l.length,q,r;
7
+ while(o<p){n.push('<tr>');for(var s=0;s<j;s++,o++){if(q=l[o]){r='';if(q instanceof Array){r=q[1];q=q[0];}else{var t=q.replace('&','').replace(';','').replace('#','');r=c[t]||q;}var u='cke_specialchar_label_'+o+'_'+CKEDITOR.tools.getNextNumber();n.push('<td class="cke_dark_background" style="cursor: default" role="presentation"><a href="javascript: void(0);" role="option" aria-posinset="'+(o+1)+'"',' aria-setsize="'+p+'"',' aria-labelledby="'+u+'"',' style="cursor: inherit; display: block; height: 1.25em; margin-top: 0.25em; text-align: center;" title="',CKEDITOR.tools.htmlEncode(r),'" onkeydown="CKEDITOR.tools.callFunction( '+i+', event, this )"'+' onclick="CKEDITOR.tools.callFunction('+e+', this); return false;"'+' tabindex="-1">'+'<span style="margin: 0 auto;cursor: inherit">'+q+'</span>'+'<span class="cke_voice_label" id="'+u+'">'+r+'</span></a>');}else n.push('<td class="cke_dark_background">&nbsp;');n.push('</td>');}n.push('</tr>');}n.push('</tbody></table>','<span id="'+m+'" class="cke_voice_label">'+c.options+'</span>');this.getContentElement('info','charContainer').getElement().setHtml(n.join(''));},contents:[{id:'info',label:a.lang.common.generalTab,title:a.lang.common.generalTab,padding:0,align:'top',elements:[{type:'hbox',align:'top',widths:['320px','90px'],children:[{type:'html',id:'charContainer',html:'',onMouseover:g,onMouseout:h,focus:function(){var j=this.getElement().getElementsByTag('a').getItem(0);setTimeout(function(){j.focus();g(null,j);},0);},onShow:function(){var j=this.getElement().getChild([0,0,0,0,0]);setTimeout(function(){j.focus();g(null,j);},0);},onLoad:function(j){b=j.sender;}},{type:'hbox',align:'top',widths:['100%'],children:[{type:'vbox',align:'top',children:[{type:'html',html:'<div></div>'},{type:'html',id:'charPreview',className:'cke_dark_background',style:"border:1px solid #eeeeee;font-size:28px;height:40px;width:70px;padding-top:9px;font-family:'Microsoft Sans Serif',Arial,Helvetica,Verdana;text-align:center;",html:'<div>&nbsp;</div>'},{type:'html',id:'htmlPreview',className:'cke_dark_background',style:"border:1px solid #eeeeee;font-size:14px;height:20px;width:70px;padding-top:2px;font-family:'Microsoft Sans Serif',Arial,Helvetica,Verdana;text-align:center;",html:'<div>&nbsp;</div>'}]}]}]}]}]};});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('specialchar','en',{euro:'Euro sign',lsquo:'Left single quotation mark',rsquo:'Right single quotation mark',ldquo:'Left double quotation mark',rdquo:'Right double quotation mark',ndash:'En dash',mdash:'Em dash',iexcl:'Inverted exclamation mark',cent:'Cent sign',pound:'Pound sign',curren:'Currency sign',yen:'Yen sign',brvbar:'Broken bar',sect:'Section sign',uml:'Diaeresis',copy:'Copyright sign',ordf:'Feminine ordinal indicator',laquo:'Left-pointing double angle quotation mark',not:'Not sign',reg:'Registered sign',macr:'Macron',deg:'Degree sign',sup2:'Superscript two',sup3:'Superscript three',acute:'Acute accent',micro:'Micro sign',para:'Pilcrow sign',middot:'Middle dot',cedil:'Cedilla',sup1:'Superscript one',ordm:'Masculine ordinal indicator',raquo:'Right-pointing double angle quotation mark',frac14:'Vulgar fraction one quarter',frac12:'Vulgar fraction one half',frac34:'Vulgar fraction three quarters',iquest:'Inverted question mark',Agrave:'Latin capital letter A with grave accent',Aacute:'Latin capital letter A with acute accent',Acirc:'Latin capital letter A with circumflex',Atilde:'Latin capital letter A with tilde',Auml:'Latin capital letter A with diaeresis',Aring:'Latin capital letter A with ring above',AElig:'Latin Capital letter Æ',Ccedil:'Latin capital letter C with cedilla',Egrave:'Latin capital letter E with grave accent',Eacute:'Latin capital letter E with acute accent',Ecirc:'Latin capital letter E with circumflex',Euml:'Latin capital letter E with diaeresis',Igrave:'Latin capital letter I with grave accent',Iacute:'Latin capital letter I with acute accent',Icirc:'Latin capital letter I with circumflex',Iuml:'Latin capital letter I with diaeresis',ETH:'Latin capital letter Eth',Ntilde:'Latin capital letter N with tilde',Ograve:'Latin capital letter O with grave accent',Oacute:'Latin capital letter O with acute accent',Ocirc:'Latin capital letter O with circumflex',Otilde:'Latin capital letter O with tilde',Ouml:'Latin capital letter O with diaeresis',times:'Multiplication sign',Oslash:'Latin capital letter O with stroke',Ugrave:'Latin capital letter U with grave accent',Uacute:'Latin capital letter U with acute accent',Ucirc:'Latin capital letter U with circumflex',Uuml:'Latin capital letter U with diaeresis',Yacute:'Latin capital letter Y with acute accent',THORN:'Latin capital letter Thorn',szlig:'Latin small letter sharp s',agrave:'Latin small letter a with grave accent',aacute:'Latin small letter a with acute accent',acirc:'Latin small letter a with circumflex',atilde:'Latin small letter a with tilde',auml:'Latin small letter a with diaeresis',aring:'Latin small letter a with ring above',aelig:'Latin small letter æ',ccedil:'Latin small letter c with cedilla',egrave:'Latin small letter e with grave accent',eacute:'Latin small letter e with acute accent',ecirc:'Latin small letter e with circumflex',euml:'Latin small letter e with diaeresis',igrave:'Latin small letter i with grave accent',iacute:'Latin small letter i with acute accent',icirc:'Latin small letter i with circumflex',iuml:'Latin small letter i with diaeresis',eth:'Latin small letter eth',ntilde:'Latin small letter n with tilde',ograve:'Latin small letter o with grave accent',oacute:'Latin small letter o with acute accent',ocirc:'Latin small letter o with circumflex',otilde:'Latin small letter o with tilde',ouml:'Latin small letter o with diaeresis',divide:'Division sign',oslash:'Latin small letter o with stroke',ugrave:'Latin small letter u with grave accent',uacute:'Latin small letter u with acute accent',ucirc:'Latin small letter u with circumflex',uuml:'Latin small letter u with diaeresis',yacute:'Latin small letter y with acute accent',thorn:'Latin small letter thorn',yuml:'Latin small letter y with diaeresis',OElig:'Latin capital ligature OE',oelig:'Latin small ligature oe',372:'Latin capital letter W with circumflex',374:'Latin capital letter Y with circumflex',373:'Latin small letter w with circumflex',375:'Latin small letter y with circumflex',sbquo:'Single low-9 quotation mark',8219:'Single high-reversed-9 quotation mark',bdquo:'Double low-9 quotation mark',hellip:'Horizontal ellipsis',trade:'Trade mark sign',9658:'Black right-pointing pointer',bull:'Bullet',rarr:'Rightwards arrow',rArr:'Rightwards double arrow',hArr:'Left right double arrow',diams:'Black diamond suit',asymp:'Almost equal to'});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.stylesSet.add('default',[{name:'Blue Title',element:'h3',styles:{color:'Blue'}},{name:'Red Title',element:'h3',styles:{color:'Red'}},{name:'Marker: Yellow',element:'span',styles:{'background-color':'Yellow'}},{name:'Marker: Green',element:'span',styles:{'background-color':'Lime'}},{name:'Big',element:'big'},{name:'Small',element:'small'},{name:'Typewriter',element:'tt'},{name:'Computer Code',element:'code'},{name:'Keyboard Phrase',element:'kbd'},{name:'Sample Text',element:'samp'},{name:'Variable',element:'var'},{name:'Deleted Text',element:'del'},{name:'Inserted Text',element:'ins'},{name:'Cited Work',element:'cite'},{name:'Inline Quotation',element:'q'},{name:'Language: RTL',element:'span',attributes:{dir:'rtl'}},{name:'Language: LTR',element:'span',attributes:{dir:'ltr'}},{name:'Image on Left',element:'img',attributes:{style:'padding: 5px; margin-right: 5px',border:'2',align:'left'}},{name:'Image on Right',element:'img',attributes:{style:'padding: 5px; margin-left: 5px',border:'2',align:'right'}},{name:'Borderless Table',element:'table',styles:{'border-style':'hidden','background-color':'#E6E6FA'}},{name:'Square Bulleted List',element:'ul',styles:{'list-style-type':'square'}}]);
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ (function(){function a(c,d,e){var f=c.join(' ');f=f.replace(/(,|>|\+|~)/g,' ');f=f.replace(/\[[^\]]*/g,'');f=f.replace(/#[^\s]*/g,'');f=f.replace(/\:{1,2}[^\s]*/g,'');f=f.replace(/\s+/g,' ');var g=f.split(' '),h=[];for(var i=0;i<g.length;i++){var j=g[i];if(e.test(j)&&!d.test(j))if(CKEDITOR.tools.indexOf(h,j)==-1)h.push(j);}return h;};function b(c,d,e){var f=[],g=[],h;for(h=0;h<c.styleSheets.length;h++){var i=c.styleSheets[h],j=i.ownerNode||i.owningElement;if(j.getAttribute('data-cke-temp'))continue;if(i.href&&i.href.substr(0,9)=='chrome://')continue;var k=i.cssRules||i.rules;for(var l=0;l<k.length;l++)g.push(k[l].selectorText);}var m=a(g,d,e);for(h=0;h<m.length;h++){var n=m[h].split('.'),o=n[0].toLowerCase(),p=n[1];f.push({name:o+'.'+p,element:o,attributes:{'class':p}});}return f;};CKEDITOR.plugins.add('stylesheetparser',{requires:['styles'],onLoad:function(){var c=CKEDITOR.editor.prototype;c.getStylesSet=CKEDITOR.tools.override(c.getStylesSet,function(d){return function(e){var f=this;d.call(this,function(g){var h=f.config.stylesheetParser_skipSelectors||/(^body\.|^\.)/i,i=f.config.stylesheetParser_validSelectors||/\w+\.\w+/;e(f._.stylesDefinitions=g.concat(b(f.document.$,h,i)));});};});}});})();
@@ -0,0 +1,9 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ (function(){var a=CKEDITOR.tools.cssLength,b=function(e){var f=this.id;if(!e.info)e.info={};e.info[f]=this.getValue();};function c(e){var f=0,g=0;for(var h=0,i,j=e.$.rows.length;h<j;h++){i=e.$.rows[h],f=0;for(var k=0,l,m=i.cells.length;k<m;k++){l=i.cells[k];f+=l.colSpan;}f>g&&(g=f);}return g;};function d(e,f){var g=function(i){return new CKEDITOR.dom.element(i,e.document);},h=e.plugins.dialogadvtab;return{title:e.lang.table.title,minWidth:310,minHeight:CKEDITOR.env.ie?310:280,onLoad:function(){var i=this,j=i.getContentElement('advanced','advStyles');if(j)j.on('change',function(k){var l=this.getStyle('width',''),m=i.getContentElement('info','txtWidth');m&&m.setValue(l,true);var n=this.getStyle('height',''),o=i.getContentElement('info','txtHeight');o&&o.setValue(n,true);});},onShow:function(){var q=this;var i=e.getSelection(),j=i.getRanges(),k=null,l=q.getContentElement('info','txtRows'),m=q.getContentElement('info','txtCols'),n=q.getContentElement('info','txtWidth'),o=q.getContentElement('info','txtHeight');if(f=='tableProperties'){if(k=i.getSelectedElement())k=k.getAscendant('table',true);else if(j.length>0){if(CKEDITOR.env.webkit)j[0].shrink(CKEDITOR.NODE_ELEMENT);var p=j[0].getCommonAncestor(true);k=p.getAscendant('table',true);}q._.selectedElement=k;}if(k){q.setupContent(k);l&&l.disable();m&&m.disable();}else{l&&l.enable();m&&m.enable();}n&&n.onChange();o&&o.onChange();},onOk:function(){var i=e.getSelection(),j=this._.selectedElement&&i.createBookmarks(),k=this._.selectedElement||g('table'),l=this,m={};this.commitContent(m,k);if(m.info){var n=m.info;if(!this._.selectedElement){var o=k.append(g('tbody')),p=parseInt(n.txtRows,10)||0,q=parseInt(n.txtCols,10)||0;for(var r=0;r<p;r++){var s=o.append(g('tr'));for(var t=0;t<q;t++){var u=s.append(g('td'));if(!CKEDITOR.env.ie)u.append(g('br'));}}}var v=n.selHeaders;if(!k.$.tHead&&(v=='row'||v=='both')){var w=new CKEDITOR.dom.element(k.$.createTHead());o=k.getElementsByTag('tbody').getItem(0);var x=o.getElementsByTag('tr').getItem(0);for(r=0;r<x.getChildCount();r++){var y=x.getChild(r);if(y.type==CKEDITOR.NODE_ELEMENT&&!y.data('cke-bookmark')){y.renameNode('th');y.setAttribute('scope','col');}}w.append(x.remove());}if(k.$.tHead!==null&&!(v=='row'||v=='both')){w=new CKEDITOR.dom.element(k.$.tHead);o=k.getElementsByTag('tbody').getItem(0);var z=o.getFirst();while(w.getChildCount()>0){x=w.getFirst();for(r=0;r<x.getChildCount();r++){var A=x.getChild(r);if(A.type==CKEDITOR.NODE_ELEMENT){A.renameNode('td');A.removeAttribute('scope');
7
+ }}x.insertBefore(z);}w.remove();}if(!this.hasColumnHeaders&&(v=='col'||v=='both'))for(s=0;s<k.$.rows.length;s++){A=new CKEDITOR.dom.element(k.$.rows[s].cells[0]);A.renameNode('th');A.setAttribute('scope','row');}if(this.hasColumnHeaders&&!(v=='col'||v=='both'))for(r=0;r<k.$.rows.length;r++){s=new CKEDITOR.dom.element(k.$.rows[r]);if(s.getParent().getName()=='tbody'){A=new CKEDITOR.dom.element(s.$.cells[0]);A.renameNode('td');A.removeAttribute('scope');}}n.txtHeight?k.setStyle('height',n.txtHeight):k.removeStyle('height');n.txtWidth?k.setStyle('width',n.txtWidth):k.removeStyle('width');if(!k.getAttribute('style'))k.removeAttribute('style');}if(!this._.selectedElement){e.insertElement(k);setTimeout(function(){var B=new CKEDITOR.dom.element(k.$.rows[0].cells[0]),C=new CKEDITOR.dom.range(e.document);C.moveToPosition(B,CKEDITOR.POSITION_AFTER_START);C.select(1);},0);}else try{i.selectBookmarks(j);}catch(B){}},contents:[{id:'info',label:e.lang.table.title,elements:[{type:'hbox',widths:[null,null],styles:['vertical-align:top'],children:[{type:'vbox',padding:0,children:[{type:'text',id:'txtRows','default':3,label:e.lang.table.rows,required:true,controlStyle:'width:5em',validate:function(){var i=true,j=this.getValue();i=i&&CKEDITOR.dialog.validate.integer()(j)&&j>0;if(!i){alert(e.lang.table.invalidRows);this.select();}return i;},setup:function(i){this.setValue(i.$.rows.length);},commit:b},{type:'text',id:'txtCols','default':2,label:e.lang.table.columns,required:true,controlStyle:'width:5em',validate:function(){var i=true,j=this.getValue();i=i&&CKEDITOR.dialog.validate.integer()(j)&&j>0;if(!i){alert(e.lang.table.invalidCols);this.select();}return i;},setup:function(i){this.setValue(c(i));},commit:b},{type:'html',html:'&nbsp;'},{type:'select',id:'selHeaders','default':'',label:e.lang.table.headers,items:[[e.lang.table.headersNone,''],[e.lang.table.headersRow,'row'],[e.lang.table.headersColumn,'col'],[e.lang.table.headersBoth,'both']],setup:function(i){var j=this.getDialog();j.hasColumnHeaders=true;for(var k=0;k<i.$.rows.length;k++){var l=i.$.rows[k].cells[0];if(l&&l.nodeName.toLowerCase()!='th'){j.hasColumnHeaders=false;break;}}if(i.$.tHead!==null)this.setValue(j.hasColumnHeaders?'both':'row');else this.setValue(j.hasColumnHeaders?'col':'');},commit:b},{type:'text',id:'txtBorder','default':1,label:e.lang.table.border,controlStyle:'width:3em',validate:CKEDITOR.dialog.validate.number(e.lang.table.invalidBorder),setup:function(i){this.setValue(i.getAttribute('border')||'');
8
+ },commit:function(i,j){if(this.getValue())j.setAttribute('border',this.getValue());else j.removeAttribute('border');}},{id:'cmbAlign',type:'select','default':'',label:e.lang.common.align,items:[[e.lang.common.notSet,''],[e.lang.common.alignLeft,'left'],[e.lang.common.alignCenter,'center'],[e.lang.common.alignRight,'right']],setup:function(i){this.setValue(i.getAttribute('align')||'');},commit:function(i,j){if(this.getValue())j.setAttribute('align',this.getValue());else j.removeAttribute('align');}}]},{type:'vbox',padding:0,children:[{type:'hbox',widths:['5em'],children:[{type:'text',id:'txtWidth',controlStyle:'width:5em',label:e.lang.common.width,title:e.lang.common.cssLengthTooltip,'default':500,getValue:a,validate:CKEDITOR.dialog.validate.cssLength(e.lang.common.invalidCssLength.replace('%1',e.lang.common.width)),onChange:function(){var i=this.getDialog().getContentElement('advanced','advStyles');i&&i.updateStyle('width',this.getValue());},setup:function(i){var j=i.getStyle('width');j&&this.setValue(j);},commit:b}]},{type:'hbox',widths:['5em'],children:[{type:'text',id:'txtHeight',controlStyle:'width:5em',label:e.lang.common.height,title:e.lang.common.cssLengthTooltip,'default':'',getValue:a,validate:CKEDITOR.dialog.validate.cssLength(e.lang.common.invalidCssLength.replace('%1',e.lang.common.height)),onChange:function(){var i=this.getDialog().getContentElement('advanced','advStyles');i&&i.updateStyle('height',this.getValue());},setup:function(i){var j=i.getStyle('width');j&&this.setValue(j);},commit:b}]},{type:'html',html:'&nbsp;'},{type:'text',id:'txtCellSpace',controlStyle:'width:3em',label:e.lang.table.cellSpace,'default':1,validate:CKEDITOR.dialog.validate.number(e.lang.table.invalidCellSpacing),setup:function(i){this.setValue(i.getAttribute('cellSpacing')||'');},commit:function(i,j){if(this.getValue())j.setAttribute('cellSpacing',this.getValue());else j.removeAttribute('cellSpacing');}},{type:'text',id:'txtCellPad',controlStyle:'width:3em',label:e.lang.table.cellPad,'default':1,validate:CKEDITOR.dialog.validate.number(e.lang.table.invalidCellPadding),setup:function(i){this.setValue(i.getAttribute('cellPadding')||'');},commit:function(i,j){if(this.getValue())j.setAttribute('cellPadding',this.getValue());else j.removeAttribute('cellPadding');}}]}]},{type:'html',align:'right',html:''},{type:'vbox',padding:0,children:[{type:'text',id:'txtCaption',label:e.lang.table.caption,setup:function(i){var m=this;m.enable();var j=i.getElementsByTag('caption');if(j.count()>0){var k=j.getItem(0),l=k.getFirst(CKEDITOR.dom.walker.nodeType(CKEDITOR.NODE_ELEMENT));
9
+ if(l&&!l.equals(k.getBogus())){m.disable();m.setValue(k.getText());return;}k=CKEDITOR.tools.trim(k.getText());m.setValue(k);}},commit:function(i,j){if(!this.isEnabled())return;var k=this.getValue(),l=j.getElementsByTag('caption');if(k){if(l.count()>0){l=l.getItem(0);l.setHtml('');}else{l=new CKEDITOR.dom.element('caption',e.document);if(j.getChildCount())l.insertBefore(j.getFirst());else l.appendTo(j);}l.append(new CKEDITOR.dom.text(k,e.document));}else if(l.count()>0)for(var m=l.count()-1;m>=0;m--)l.getItem(m).remove();}},{type:'text',id:'txtSummary',label:e.lang.table.summary,setup:function(i){this.setValue(i.getAttribute('summary')||'');},commit:function(i,j){if(this.getValue())j.setAttribute('summary',this.getValue());else j.removeAttribute('summary');}}]}]},h&&h.createAdvancedTab(e)]};};CKEDITOR.dialog.add('table',function(e){return d(e,'table');});CKEDITOR.dialog.add('tableProperties',function(e){return d(e,'tableProperties');});})();
@@ -0,0 +1,7 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ (function(){var a=CKEDITOR.tools.cssLength,b=CKEDITOR.env.ie&&(CKEDITOR.env.ie7Compat||CKEDITOR.env.quirks||CKEDITOR.env.version<7);function c(k){return CKEDITOR.env.ie?k.$.clientWidth:parseInt(k.getComputedStyle('width'),10);};function d(k,l){var m=k.getComputedStyle('border-'+l+'-width'),n={thin:'0px',medium:'1px',thick:'2px'};if(m.indexOf('px')<0)if(m in n&&k.getComputedStyle('border-style')!='none')m=n[m];else m=0;return parseInt(m,10);};function e(k){var l=k.$.rows,m=0,n,o,p;for(var q=0,r=l.length;q<r;q++){p=l[q];n=p.cells.length;if(n>m){m=n;o=p;}}return o;};function f(k){var l=[],m=-1,n=k.getComputedStyle('direction')=='rtl',o=e(k),p=new CKEDITOR.dom.element(k.$.tBodies[0]),q=p.getDocumentPosition();for(var r=0,s=o.cells.length;r<s;r++){var t=new CKEDITOR.dom.element(o.cells[r]),u=o.cells[r+1]&&new CKEDITOR.dom.element(o.cells[r+1]);m+=t.$.colSpan||1;var v,w,x,y=t.getDocumentPosition().x;n?w=y+d(t,'left'):v=y+t.$.offsetWidth-d(t,'right');if(u){y=u.getDocumentPosition().x;n?v=y+u.$.offsetWidth-d(u,'right'):w=y+d(u,'left');}else{y=k.getDocumentPosition().x;n?v=y:w=y+k.$.offsetWidth;}x=Math.max(w-v,3);l.push({table:k,index:m,x:v,y:q.y,width:x,height:p.$.offsetHeight,rtl:n});}return l;};function g(k,l){for(var m=0,n=k.length;m<n;m++){var o=k[m];if(l>=o.x&&l<=o.x+o.width)return o;}return null;};function h(k){(k.data||k).preventDefault();};function i(k){var l,m,n,o,p,q,r,s,t,u;function v(){l=null;q=0;o=0;m.removeListener('mouseup',A);n.removeListener('mousedown',z);n.removeListener('mousemove',B);m.getBody().setStyle('cursor','auto');b?n.remove():n.hide();};function w(){var D=l.index,E=CKEDITOR.tools.buildTableMap(l.table),F=[],G=[],H=Number.MAX_VALUE,I=H,J=l.rtl;for(var K=0,L=E.length;K<L;K++){var M=E[K],N=M[D+(J?1:0)],O=M[D+(J?0:1)];N=N&&new CKEDITOR.dom.element(N);O=O&&new CKEDITOR.dom.element(O);if(!N||!O||!N.equals(O)){N&&(H=Math.min(H,c(N)));O&&(I=Math.min(I,c(O)));F.push(N);G.push(O);}}r=F;s=G;t=l.x-H;u=l.x+I;n.setOpacity(0.5);p=parseInt(n.getStyle('left'),10);q=0;o=1;n.on('mousemove',B);m.on('dragstart',h);};function x(){o=0;n.setOpacity(0);q&&y();var D=l.table;setTimeout(function(){D.removeCustomData('_cke_table_pillars');},0);m.removeListener('dragstart',h);};function y(){var D=l.rtl,E=D?s.length:r.length;for(var F=0;F<E;F++){var G=r[F],H=s[F],I=l.table;CKEDITOR.tools.setTimeout(function(J,K,L,M,N,O){J&&J.setStyle('width',a(Math.max(K+O,0)));L&&L.setStyle('width',a(Math.max(M-O,0)));if(N)I.setStyle('width',a(N+O*(D?-1:1)));},0,this,[G,G&&c(G),H,H&&c(H),(!G||!H)&&c(I)+d(I,'left')+d(I,'right'),q]);
7
+ }};function z(D){h(D);w();m.on('mouseup',A,this);};function A(D){D.removeListener();x();};function B(D){C(D.data.$.clientX);};m=k.document;n=CKEDITOR.dom.element.createFromHtml('<div data-cke-temp=1 contenteditable=false unselectable=on style="position:absolute;cursor:col-resize;filter:alpha(opacity=0);opacity:0;padding:0;background-color:#004;background-image:none;border:0px none;z-index:10"></div>',m);if(!b)m.getDocumentElement().append(n);this.attachTo=function(D){if(o)return;if(b){m.getBody().append(n);q=0;}l=D;n.setStyles({width:a(D.width),height:a(D.height),left:a(D.x),top:a(D.y)});b&&n.setOpacity(0.25);n.on('mousedown',z,this);m.getBody().setStyle('cursor','col-resize');n.show();};var C=this.move=function(D){if(!l)return 0;if(!o&&(D<l.x||D>l.x+l.width)){v();return 0;}var E=D-Math.round(n.$.offsetWidth/2);if(o){if(E==t||E==u)return 1;E=Math.max(E,t);E=Math.min(E,u);q=E-p;}n.setStyle('left',a(E));return 1;};};function j(k){var l=k.data.getTarget();if(k.name=='mouseout'){if(!l.is('table'))return;var m=new CKEDITOR.dom.element(k.data.$.relatedTarget||k.data.$.toElement);while(m&&m.$&&!m.equals(l)&&!m.is('body'))m=m.getParent();if(!m||m.equals(l))return;}l.getAscendant('table',1).removeCustomData('_cke_table_pillars');k.removeListener();};CKEDITOR.plugins.add('tableresize',{requires:['tabletools'],init:function(k){k.on('contentDom',function(){var l;k.document.getBody().on('mousemove',function(m){m=m.data;if(l&&l.move(m.$.clientX)){h(m);return;}var n=m.getTarget(),o,p;if(!n.is('table')&&!n.getAscendant('tbody',1))return;o=n.getAscendant('table',1);if(!(p=o.getCustomData('_cke_table_pillars'))){o.setCustomData('_cke_table_pillars',p=f(o));o.on('mouseout',j);o.on('mousedown',j);}var q=g(p,m.$.clientX);if(q){!l&&(l=new i(k));l.attachTo(q);}});});}});})();
@@ -0,0 +1,8 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.dialog.add('cellProperties',function(a){var b=a.lang.table,c=b.cell,d=a.lang.common,e=CKEDITOR.dialog.validate,f=/^(\d+(?:\.\d+)?)(px|%)$/,g=/^(\d+(?:\.\d+)?)px$/,h=CKEDITOR.tools.bind,i={type:'html',html:'&nbsp;'},j=a.lang.dir=='rtl';function k(l,m){var n=function(){var r=this;p(r);m(r,r._.parentDialog);r._.parentDialog.changeFocus(true);},o=function(){p(this);this._.parentDialog.changeFocus();},p=function(r){r.removeListener('ok',n);r.removeListener('cancel',o);},q=function(r){r.on('ok',n);r.on('cancel',o);};a.execCommand(l);if(a._.storedDialogs.colordialog)q(a._.storedDialogs.colordialog);else CKEDITOR.on('dialogDefinition',function(r){if(r.data.name!=l)return;var s=r.data.definition;r.removeListener();s.onLoad=CKEDITOR.tools.override(s.onLoad,function(t){return function(){q(this);s.onLoad=t;if(typeof t=='function')t.call(this);};});});};return{title:c.title,minWidth:CKEDITOR.env.ie&&CKEDITOR.env.quirks?450:410,minHeight:CKEDITOR.env.ie&&(CKEDITOR.env.ie7Compat||CKEDITOR.env.quirks)?230:200,contents:[{id:'info',label:c.title,accessKey:'I',elements:[{type:'hbox',widths:['40%','5%','40%'],children:[{type:'vbox',padding:0,children:[{type:'hbox',widths:['70%','30%'],children:[{type:'text',id:'width',width:'100px',label:d.width,validate:e.number(c.invalidWidth),onLoad:function(){var l=this.getDialog().getContentElement('info','widthType'),m=l.getElement(),n=this.getInputElement(),o=n.getAttribute('aria-labelledby');n.setAttribute('aria-labelledby',[o,m.$.id].join(' '));},setup:function(l){var m=parseInt(l.getAttribute('width'),10),n=parseInt(l.getStyle('width'),10);!isNaN(m)&&this.setValue(m);!isNaN(n)&&this.setValue(n);},commit:function(l){var m=parseInt(this.getValue(),10),n=this.getDialog().getValueOf('info','widthType');if(!isNaN(m))l.setStyle('width',m+n);else l.removeStyle('width');l.removeAttribute('width');},'default':''},{type:'select',id:'widthType',label:a.lang.table.widthUnit,labelStyle:'visibility:hidden','default':'px',items:[[b.widthPx,'px'],[b.widthPc,'%']],setup:function(l){var m=f.exec(l.getStyle('width')||l.getAttribute('width'));if(m)this.setValue(m[2]);}}]},{type:'hbox',widths:['70%','30%'],children:[{type:'text',id:'height',label:d.height,width:'100px','default':'',validate:e.number(c.invalidHeight),onLoad:function(){var l=this.getDialog().getContentElement('info','htmlHeightType'),m=l.getElement(),n=this.getInputElement(),o=n.getAttribute('aria-labelledby');n.setAttribute('aria-labelledby',[o,m.$.id].join(' '));},setup:function(l){var m=parseInt(l.getAttribute('height'),10),n=parseInt(l.getStyle('height'),10);
7
+ !isNaN(m)&&this.setValue(m);!isNaN(n)&&this.setValue(n);},commit:function(l){var m=parseInt(this.getValue(),10);if(!isNaN(m))l.setStyle('height',CKEDITOR.tools.cssLength(m));else l.removeStyle('height');l.removeAttribute('height');}},{id:'htmlHeightType',type:'html',html:'<br />'+b.widthPx}]},i,{type:'select',id:'wordWrap',label:c.wordWrap,'default':'yes',items:[[c.yes,'yes'],[c.no,'no']],setup:function(l){var m=l.getAttribute('noWrap'),n=l.getStyle('white-space');if(n=='nowrap'||m)this.setValue('no');},commit:function(l){if(this.getValue()=='no')l.setStyle('white-space','nowrap');else l.removeStyle('white-space');l.removeAttribute('noWrap');}},i,{type:'select',id:'hAlign',label:c.hAlign,'default':'',items:[[d.notSet,''],[d.alignLeft,'left'],[d.alignCenter,'center'],[d.alignRight,'right']],setup:function(l){var m=l.getAttribute('align'),n=l.getStyle('text-align');this.setValue(n||m||'');},commit:function(l){var m=this.getValue();if(m)l.setStyle('text-align',m);else l.removeStyle('text-align');l.removeAttribute('align');}},{type:'select',id:'vAlign',label:c.vAlign,'default':'',items:[[d.notSet,''],[d.alignTop,'top'],[d.alignMiddle,'middle'],[d.alignBottom,'bottom'],[c.alignBaseline,'baseline']],setup:function(l){var m=l.getAttribute('vAlign'),n=l.getStyle('vertical-align');switch(n){case 'top':case 'middle':case 'bottom':case 'baseline':break;default:n='';}this.setValue(n||m||'');},commit:function(l){var m=this.getValue();if(m)l.setStyle('vertical-align',m);else l.removeStyle('vertical-align');l.removeAttribute('vAlign');}}]},i,{type:'vbox',padding:0,children:[{type:'select',id:'cellType',label:c.cellType,'default':'td',items:[[c.data,'td'],[c.header,'th']],setup:function(l){this.setValue(l.getName());},commit:function(l){l.renameNode(this.getValue());}},i,{type:'text',id:'rowSpan',label:c.rowSpan,'default':'',validate:e.integer(c.invalidRowSpan),setup:function(l){var m=parseInt(l.getAttribute('rowSpan'),10);if(m&&m!=1)this.setValue(m);},commit:function(l){var m=parseInt(this.getValue(),10);if(m&&m!=1)l.setAttribute('rowSpan',this.getValue());else l.removeAttribute('rowSpan');}},{type:'text',id:'colSpan',label:c.colSpan,'default':'',validate:e.integer(c.invalidColSpan),setup:function(l){var m=parseInt(l.getAttribute('colSpan'),10);if(m&&m!=1)this.setValue(m);},commit:function(l){var m=parseInt(this.getValue(),10);if(m&&m!=1)l.setAttribute('colSpan',this.getValue());else l.removeAttribute('colSpan');}},i,{type:'hbox',padding:0,widths:['60%','40%'],children:[{type:'text',id:'bgColor',label:c.bgColor,'default':'',setup:function(l){var m=l.getAttribute('bgColor'),n=l.getStyle('background-color');
8
+ this.setValue(n||m);},commit:function(l){var m=this.getValue();if(m)l.setStyle('background-color',this.getValue());else l.removeStyle('background-color');l.removeAttribute('bgColor');}},{type:'button',id:'bgColorChoose','class':'colorChooser',label:c.chooseColor,onLoad:function(){this.getElement().getParent().setStyle('vertical-align','bottom');},onClick:function(){var l=this;k('colordialog',function(m){l.getDialog().getContentElement('info','bgColor').setValue(m.getContentElement('picker','selectedColor').getValue());});}}]},i,{type:'hbox',padding:0,widths:['60%','40%'],children:[{type:'text',id:'borderColor',label:c.borderColor,'default':'',setup:function(l){var m=l.getAttribute('borderColor'),n=l.getStyle('border-color');this.setValue(n||m);},commit:function(l){var m=this.getValue();if(m)l.setStyle('border-color',this.getValue());else l.removeStyle('border-color');l.removeAttribute('borderColor');}},{type:'button',id:'borderColorChoose','class':'colorChooser',label:c.chooseColor,style:(j?'margin-right':'margin-left')+': 10px',onLoad:function(){this.getElement().getParent().setStyle('vertical-align','bottom');},onClick:function(){var l=this;k('colordialog',function(m){l.getDialog().getContentElement('info','borderColor').setValue(m.getContentElement('picker','selectedColor').getValue());});}}]}]}]}]}],onShow:function(){var l=this;l.cells=CKEDITOR.plugins.tabletools.getSelectedCells(l._.editor.getSelection());l.setupContent(l.cells[0]);},onOk:function(){var r=this;var l=r._.editor.getSelection(),m=l.createBookmarks(),n=r.cells;for(var o=0;o<n.length;o++)r.commitContent(n[o]);l.selectBookmarks(m);var p=l.getStartElement(),q=new CKEDITOR.dom.elementPath(p);r._.editor._.selectionPreviousPath=q;r._.editor.fire('selectionChange',{selection:l,path:q,element:p});}};});
@@ -0,0 +1,7 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ (function(){var a=CKEDITOR.document;CKEDITOR.dialog.add('templates',function(b){function c(k,l){k.setHtml('');for(var m=0,n=l.length;m<n;m++){var o=CKEDITOR.getTemplates(l[m]),p=o.imagesPath,q=o.templates,r=q.length;for(var s=0;s<r;s++){var t=q[s],u=d(t,p);u.setAttribute('aria-posinset',s+1);u.setAttribute('aria-setsize',r);k.append(u);}}};function d(k,l){var m=CKEDITOR.dom.element.createFromHtml('<a href="javascript:void(0)" tabIndex="-1" role="option" ><div class="cke_tpl_item"></div></a>'),n='<table style="width:350px;" class="cke_tpl_preview" role="presentation"><tr>';if(k.image&&l)n+='<td class="cke_tpl_preview_img"><img src="'+CKEDITOR.getUrl(l+k.image)+'"'+(CKEDITOR.env.ie6Compat?' onload="this.width=this.width"':'')+' alt="" title=""></td>';n+='<td style="white-space:normal;"><span class="cke_tpl_title">'+k.title+'</span><br/>';if(k.description)n+='<span>'+k.description+'</span>';n+='</td></tr></table>';m.getFirst().setHtml(n);m.on('click',function(){e(k.html);});return m;};function e(k){var l=CKEDITOR.dialog.getCurrent(),m=l.getValueOf('selectTpl','chkInsertOpt');if(m){b.on('contentDom',function(n){n.removeListener();l.hide();var o=new CKEDITOR.dom.range(b.document);o.moveToElementEditStart(b.document.getBody());o.select(1);setTimeout(function(){b.fire('saveSnapshot');},0);});b.fire('saveSnapshot');b.setData(k);}else{b.insertHtml(k);l.hide();}};function f(k){var l=k.data.getTarget(),m=g.equals(l);if(m||g.contains(l)){var n=k.data.getKeystroke(),o=g.getElementsByTag('a'),p;if(o){if(m)p=o.getItem(0);else switch(n){case 40:p=l.getNext();break;case 38:p=l.getPrevious();break;case 13:case 32:l.fire('click');}if(p){p.focus();k.data.preventDefault();}}}};CKEDITOR.skins.load(b,'templates');var g,h='cke_tpl_list_label_'+CKEDITOR.tools.getNextNumber(),i=b.lang.templates,j=b.config;return{title:b.lang.templates.title,minWidth:CKEDITOR.env.ie?440:400,minHeight:340,contents:[{id:'selectTpl',label:i.title,elements:[{type:'vbox',padding:5,children:[{id:'selectTplText',type:'html',html:'<span>'+i.selectPromptMsg+'</span>'},{id:'templatesList',type:'html',focus:true,html:'<div class="cke_tpl_list" tabIndex="-1" role="listbox" aria-labelledby="'+h+'">'+'<div class="cke_tpl_loading"><span></span></div>'+'</div>'+'<span class="cke_voice_label" id="'+h+'">'+i.options+'</span>'},{id:'chkInsertOpt',type:'checkbox',label:i.insertOption,'default':j.templates_replaceContent}]}]}],buttons:[CKEDITOR.dialog.cancelButton],onShow:function(){var k=this.getContentElement('selectTpl','templatesList');
7
+ g=k.getElement();CKEDITOR.loadTemplates(j.templates_files,function(){var l=(j.templates||'default').split(',');if(l.length){c(g,l);k.focus();}else g.setHtml('<div class="cke_tpl_empty"><span>'+i.emptyListMsg+'</span>'+'</div>');});this._.element.on('keydown',f);},onHide:function(){this._.element.removeListener('keydown',f);}};});})();
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.addTemplates('default',{imagesPath:CKEDITOR.getUrl(CKEDITOR.plugins.getPath('templates')+'templates/images/'),templates:[{title:'Image and Title',image:'template1.gif',description:'One main image with a title and text that surround the image.',html:'<h3><img style="margin-right: 10px" height="100" width="100" align="left"/>Type the title here</h3><p>Type the text here</p>'},{title:'Strange Template',image:'template2.gif',description:'A template that defines two colums, each one with a title, and some text.',html:'<table cellspacing="0" cellpadding="0" style="width:100%" border="0"><tr><td style="width:50%"><h3>Title 1</h3></td><td></td><td style="width:50%"><h3>Title 2</h3></td></tr><tr><td>Text 1</td><td></td><td>Text 2</td></tr></table><p>More text goes here.</p>'},{title:'Text and Table',image:'template3.gif',description:'A title with some text and a table.',html:'<div style="width: 80%"><h3>Title goes here</h3><table style="width:150px;float: right" cellspacing="0" cellpadding="0" border="1"><caption style="border:solid 1px black"><strong>Table title</strong></caption></tr><tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr><tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr><tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr></table><p>Type the text here</p></div>'}]});
@@ -0,0 +1,7 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.dialog.add('uicolor',function(a){var b,c,d,e=a.getUiColor(),f='cke_uicolor_picker'+CKEDITOR.tools.getNextNumber();function g(j){if(/^#/.test(j))j=window.YAHOO.util.Color.hex2rgb(j.substr(1));c.setValue(j,true);c.refresh(f);};function h(j,k){if(k||b._.contents.tab1.livePeview.getValue())a.setUiColor(j);b._.contents.tab1.configBox.setValue('config.uiColor = "#'+c.get('hex')+'"');};d={id:'yuiColorPicker',type:'html',html:"<div id='"+f+"' class='cke_uicolor_picker' style='width: 360px; height: 200px; position: relative;'></div>",onLoad:function(j){var k=CKEDITOR.getUrl('plugins/uicolor/yui/');c=new window.YAHOO.widget.ColorPicker(f,{showhsvcontrols:true,showhexcontrols:true,images:{PICKER_THUMB:k+'assets/picker_thumb.png',HUE_THUMB:k+'assets/hue_thumb.png'}});if(e)g(e);c.on('rgbChange',function(){b._.contents.tab1.predefined.setValue('');h('#'+c.get('hex'));});var l=new CKEDITOR.dom.nodeList(c.getElementsByTagName('input'));for(var m=0;m<l.count();m++)l.getItem(m).addClass('cke_dialog_ui_input_text');}};var i=true;return{title:a.lang.uicolor.title,minWidth:360,minHeight:320,onLoad:function(){b=this;this.setupContent();if(CKEDITOR.env.ie7Compat)b.parts.contents.setStyle('overflow','hidden');},contents:[{id:'tab1',label:'',title:'',expand:true,padding:0,elements:[d,{id:'tab1',type:'vbox',children:[{id:'livePeview',type:'checkbox',label:a.lang.uicolor.preview,'default':1,onLoad:function(){i=true;},onChange:function(){if(i)return;var j=this.getValue(),k=j?'#'+c.get('hex'):e;h(k,true);}},{type:'hbox',children:[{id:'predefined',type:'select','default':'',label:a.lang.uicolor.predefined,items:[[''],['Light blue','#9AB8F3'],['Sand','#D2B48C'],['Metallic','#949AAA'],['Purple','#C2A3C7'],['Olive','#A2C980'],['Happy green','#9BD446'],['Jezebel Blue','#14B8C4'],['Burn','#FF893A'],['Easy red','#FF6969'],['Pisces 3','#48B4F2'],['Aquarius 5','#487ED4'],['Absinthe','#A8CF76'],['Scrambled Egg','#C7A622'],['Hello monday','#8E8D80'],['Lovely sunshine','#F1E8B1'],['Recycled air','#B3C593'],['Down','#BCBCA4'],['Mark Twain','#CFE91D'],['Specks of dust','#D1B596'],['Lollipop','#F6CE23']],onChange:function(){var j=this.getValue();if(j){g(j);h(j);CKEDITOR.document.getById('predefinedPreview').setStyle('background',j);}else CKEDITOR.document.getById('predefinedPreview').setStyle('background','');},onShow:function(){var j=a.getUiColor();if(j)this.setValue(j);}},{id:'predefinedPreview',type:'html',html:'<div id="cke_uicolor_preview" style="border: 1px solid black; padding: 3px; width: 30px;"><div id="predefinedPreview" style="width: 30px; height: 30px;">&nbsp;</div></div>'}]},{id:'configBox',type:'text',label:a.lang.uicolor.config,onShow:function(){var j=a.getUiColor();
7
+ if(j)this.setValue('config.uiColor = "'+j+'"');}}]}]}],buttons:[CKEDITOR.dialog.okButton]};});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('uicolor','en',{uicolor:{title:'UI Color Picker',preview:'Live preview',config:'Paste this string into your config.js file',predefined:'Predefined color sets'}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('uicolor','he',{uicolor:{title:'בחירת צבע ממשק משתמש',preview:'תצוגה מקדימה',config:'הדבק את הטקסט הבא לתוך הקובץ config.js',predefined:'קבוצות צבעים מוגדרות מראש'}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.add('uicolor',{requires:['dialog'],lang:['en','he'],init:function(a){if(CKEDITOR.env.ie6Compat)return;a.addCommand('uicolor',new CKEDITOR.dialogCommand('uicolor'));a.ui.addButton('UIColor',{label:a.lang.uicolor.title,command:'uicolor',icon:this.path+'uicolor.gif'});CKEDITOR.dialog.add('uicolor',this.path+'dialogs/uicolor.js');CKEDITOR.scriptLoader.load(CKEDITOR.getUrl('plugins/uicolor/yui/yui.js'));a.element.getDocument().appendStyleSheet(CKEDITOR.getUrl('plugins/uicolor/yui/assets/yui.css'));}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ .yui-h-slider,.yui-v-slider{position:relative;}.yui-h-slider .yui-slider-thumb,.yui-v-slider .yui-slider-thumb{position:absolute;cursor:default;}.yui-skin-sam .yui-h-slider{background:url(bg-h.gif) no-repeat 5px 0;height:28px;width:228px;}.yui-skin-sam .yui-h-slider .yui-slider-thumb{top:4px;}.yui-skin-sam .yui-v-slider{background:url(bg-v.gif) no-repeat 12px 0;height:228px;width:48px;}.cke_uicolor_picker .yui-picker-panel{background:#e3e3e3;border-color:#888;}.cke_uicolor_picker .yui-picker-panel .hd{background-color:#ccc;font-size:100%;line-height:100%;border:1px solid #e3e3e3;font-weight:bold;overflow:hidden;padding:6px;color:#000;}.cke_uicolor_picker .yui-picker-panel .bd{background:#e8e8e8;margin:1px;height:200px;}.cke_uicolor_picker .yui-picker-panel .ft{background:#e8e8e8;margin:1px;padding:1px;}.cke_uicolor_picker .yui-picker{position:relative;}.cke_uicolor_picker .yui-picker-hue-thumb{cursor:default;width:18px;height:18px;top:-8px;left:-2px;z-index:9;position:absolute;}.cke_uicolor_picker .yui-picker-hue-bg{-moz-outline:none;outline:0 none;position:absolute;left:200px;height:183px;width:14px;background:url(hue_bg.png) no-repeat;top:4px;}.cke_uicolor_picker .yui-picker-bg{-moz-outline:none;outline:0 none;position:absolute;top:4px;left:4px;height:182px;width:182px;background-color:#F00;background-image:url(picker_mask.png);}*html .cke_uicolor_picker .yui-picker-bg{background-image:none;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='picker_mask.png',sizingMethod='scale');}.cke_uicolor_picker .yui-picker-mask{position:absolute;z-index:1;top:0;left:0;}.cke_uicolor_picker .yui-picker-thumb{cursor:default;width:11px;height:11px;z-index:9;position:absolute;top:-4px;left:-4px;}.cke_uicolor_picker .yui-picker-swatch{position:absolute;left:240px;top:4px;height:60px;width:55px;border:1px solid #888;}.cke_uicolor_picker .yui-picker-websafe-swatch{position:absolute;left:304px;top:4px;height:24px;width:24px;border:1px solid #888;}.cke_uicolor_picker .yui-picker-controls{position:absolute;top:72px;left:226px;font:1em monospace;}.cke_uicolor_picker .yui-picker-controls .hd{background:transparent;border-width:0!important;}.cke_uicolor_picker .yui-picker-controls .bd{height:100px;border-width:0!important;}.cke_uicolor_picker .yui-picker-controls ul{float:left;padding:0 2px 0 0;margin:0;}.cke_uicolor_picker .yui-picker-controls li{padding:2px;list-style:none;margin:0;}.cke_uicolor_picker .yui-picker-controls input{font-size:.85em;width:2.4em;}.cke_uicolor_picker .yui-picker-hex-controls{clear:both;padding:2px;}.cke_uicolor_picker .yui-picker-hex-controls input{width:4.6em;}.cke_uicolor_picker .yui-picker-controls a{font:1em arial,helvetica,clean,sans-serif;display:block;*display:inline-block;padding:0;color:#000;}
@@ -0,0 +1,76 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ /*jsl:ignoreall*/
7
+ /*
8
+ Copyright (c) 2009, Yahoo! Inc. All rights reserved.
9
+ Code licensed under the BSD License:
10
+ http://developer.yahoo.net/yui/license.txt
11
+ version: 2.7.0
12
+ */
13
+ if(typeof YAHOO=="undefined"||!YAHOO){var YAHOO={};}YAHOO.namespace=function(){var A=arguments,E=null,C,B,D;for(C=0;C<A.length;C=C+1){D=(""+A[C]).split(".");E=YAHOO;for(B=(D[0]=="YAHOO")?1:0;B<D.length;B=B+1){E[D[B]]=E[D[B]]||{};E=E[D[B]];}}return E;};YAHOO.log=function(D,A,C){var B=YAHOO.widget.Logger;if(B&&B.log){return B.log(D,A,C);}else{return false;}};YAHOO.register=function(A,E,D){var I=YAHOO.env.modules,B,H,G,F,C;if(!I[A]){I[A]={versions:[],builds:[]};}B=I[A];H=D.version;G=D.build;F=YAHOO.env.listeners;B.name=A;B.version=H;B.build=G;B.versions.push(H);B.builds.push(G);B.mainClass=E;for(C=0;C<F.length;C=C+1){F[C](B);}if(E){E.VERSION=H;E.BUILD=G;}else{YAHOO.log("mainClass is undefined for module "+A,"warn");}};YAHOO.env=YAHOO.env||{modules:[],listeners:[]};YAHOO.env.getVersion=function(A){return YAHOO.env.modules[A]||null;};YAHOO.env.ua=function(){var C={ie:0,opera:0,gecko:0,webkit:0,mobile:null,air:0,caja:0},B=navigator.userAgent,A;if((/KHTML/).test(B)){C.webkit=1;}A=B.match(/AppleWebKit\/([^\s]*)/);if(A&&A[1]){C.webkit=parseFloat(A[1]);if(/ Mobile\//.test(B)){C.mobile="Apple";}else{A=B.match(/NokiaN[^\/]*/);if(A){C.mobile=A[0];}}A=B.match(/AdobeAIR\/([^\s]*)/);if(A){C.air=A[0];}}if(!C.webkit){A=B.match(/Opera[\s\/]([^\s]*)/);if(A&&A[1]){C.opera=parseFloat(A[1]);A=B.match(/Opera Mini[^;]*/);if(A){C.mobile=A[0];}}else{A=B.match(/MSIE\s([^;]*)/);if(A&&A[1]){C.ie=parseFloat(A[1]);}else{A=B.match(/Gecko\/([^\s]*)/);if(A){C.gecko=1;A=B.match(/rv:([^\s\)]*)/);if(A&&A[1]){C.gecko=parseFloat(A[1]);}}}}}A=B.match(/Caja\/([^\s]*)/);if(A&&A[1]){C.caja=parseFloat(A[1]);}return C;}();(function(){YAHOO.namespace("util","widget","example");if("undefined"!==typeof YAHOO_config){var B=YAHOO_config.listener,A=YAHOO.env.listeners,D=true,C;if(B){for(C=0;C<A.length;C=C+1){if(A[C]==B){D=false;break;}}if(D){A.push(B);}}}})();YAHOO.lang=YAHOO.lang||{};(function(){var B=YAHOO.lang,F="[object Array]",C="[object Function]",A=Object.prototype,E=["toString","valueOf"],D={isArray:function(G){return A.toString.apply(G)===F;},isBoolean:function(G){return typeof G==="boolean";},isFunction:function(G){return A.toString.apply(G)===C;},isNull:function(G){return G===null;},isNumber:function(G){return typeof G==="number"&&isFinite(G);},isObject:function(G){return(G&&(typeof G==="object"||B.isFunction(G)))||false;},isString:function(G){return typeof G==="string";},isUndefined:function(G){return typeof G==="undefined";},_IEEnumFix:(YAHOO.env.ua.ie)?function(I,H){var G,K,J;for(G=0;G<E.length;G=G+1){K=E[G];J=H[K];if(B.isFunction(J)&&J!=A[K]){I[K]=J;}}}:function(){},extend:function(J,K,I){if(!K||!J){throw new Error("extend failed, please check that "+"all dependencies are included.");}var H=function(){},G;H.prototype=K.prototype;J.prototype=new H();J.prototype.constructor=J;J.superclass=K.prototype;if(K.prototype.constructor==A.constructor){K.prototype.constructor=K;}if(I){for(G in I){if(B.hasOwnProperty(I,G)){J.prototype[G]=I[G];}}B._IEEnumFix(J.prototype,I);}},augmentObject:function(K,J){if(!J||!K){throw new Error("Absorb failed, verify dependencies.");}var G=arguments,I,L,H=G[2];if(H&&H!==true){for(I=2;I<G.length;I=I+1){K[G[I]]=J[G[I]];}}else{for(L in J){if(H||!(L in K)){K[L]=J[L];}}B._IEEnumFix(K,J);}},augmentProto:function(J,I){if(!I||!J){throw new Error("Augment failed, verify dependencies.");}var G=[J.prototype,I.prototype],H;for(H=2;H<arguments.length;H=H+1){G.push(arguments[H]);}B.augmentObject.apply(this,G);},dump:function(G,L){var I,K,N=[],O="{...}",H="f(){...}",M=", ",J=" => ";if(!B.isObject(G)){return G+"";}else{if(G instanceof Date||("nodeType" in G&&"tagName" in G)){return G;}else{if(B.isFunction(G)){return H;}}}L=(B.isNumber(L))?L:3;if(B.isArray(G)){N.push("[");for(I=0,K=G.length;I<K;I=I+1){if(B.isObject(G[I])){N.push((L>0)?B.dump(G[I],L-1):O);}else{N.push(G[I]);}N.push(M);}if(N.length>1){N.pop();}N.push("]");}else{N.push("{");for(I in G){if(B.hasOwnProperty(G,I)){N.push(I+J);if(B.isObject(G[I])){N.push((L>0)?B.dump(G[I],L-1):O);}else{N.push(G[I]);}N.push(M);}}if(N.length>1){N.pop();}N.push("}");}return N.join("");},substitute:function(V,H,O){var L,K,J,R,S,U,Q=[],I,M="dump",P=" ",G="{",T="}",N;for(;;){L=V.lastIndexOf(G);if(L<0){break;}K=V.indexOf(T,L);if(L+1>=K){break;}I=V.substring(L+1,K);R=I;U=null;J=R.indexOf(P);if(J>-1){U=R.substring(J+1);R=R.substring(0,J);}S=H[R];if(O){S=O(R,S,U);}if(B.isObject(S)){if(B.isArray(S)){S=B.dump(S,parseInt(U,10));}else{U=U||"";N=U.indexOf(M);if(N>-1){U=U.substring(4);}if(S.toString===A.toString||N>-1){S=B.dump(S,parseInt(U,10));}else{S=S.toString();}}}else{if(!B.isString(S)&&!B.isNumber(S)){S="~-"+Q.length+"-~";Q[Q.length]=I;}}V=V.substring(0,L)+S+V.substring(K+1);}for(L=Q.length-1;L>=0;L=L-1){V=V.replace(new RegExp("~-"+L+"-~"),"{"+Q[L]+"}","g");}return V;},trim:function(G){try{return G.replace(/^\s+|\s+$/g,"");}catch(H){return G;}},merge:function(){var J={},H=arguments,G=H.length,I;for(I=0;I<G;I=I+1){B.augmentObject(J,H[I],true);}return J;},later:function(N,H,O,J,K){N=N||0;H=H||{};var I=O,M=J,L,G;if(B.isString(O)){I=H[O];}if(!I){throw new TypeError("method undefined");}if(!B.isArray(M)){M=[J];}L=function(){I.apply(H,M);};G=(K)?setInterval(L,N):setTimeout(L,N);return{interval:K,cancel:function(){if(this.interval){clearInterval(G);}else{clearTimeout(G);}}};},isValue:function(G){return(B.isObject(G)||B.isString(G)||B.isNumber(G)||B.isBoolean(G));}};B.hasOwnProperty=(A.hasOwnProperty)?function(G,H){return G&&G.hasOwnProperty(H);}:function(G,H){return !B.isUndefined(G[H])&&G.constructor.prototype[H]!==G[H];};D.augmentObject(B,D,true);YAHOO.util.Lang=B;B.augment=B.augmentProto;YAHOO.augment=B.augmentProto;YAHOO.extend=B.extend;})();YAHOO.register("yahoo",YAHOO,{version:"2.7.0",build:"1796"});(function(){YAHOO.env._id_counter=YAHOO.env._id_counter||0;var E=YAHOO.util,L=YAHOO.lang,m=YAHOO.env.ua,A=YAHOO.lang.trim,d={},h={},N=/^t(?:able|d|h)$/i,X=/color$/i,K=window.document,W=K.documentElement,e="ownerDocument",n="defaultView",v="documentElement",t="compatMode",b="offsetLeft",P="offsetTop",u="offsetParent",Z="parentNode",l="nodeType",C="tagName",O="scrollLeft",i="scrollTop",Q="getBoundingClientRect",w="getComputedStyle",a="currentStyle",M="CSS1Compat",c="BackCompat",g="class",F="className",J="",B=" ",s="(?:^|\\s)",k="(?= |$)",U="g",p="position",f="fixed",V="relative",j="left",o="top",r="medium",q="borderLeftWidth",R="borderTopWidth",D=m.opera,I=m.webkit,H=m.gecko,T=m.ie;E.Dom={CUSTOM_ATTRIBUTES:(!W.hasAttribute)?{"for":"htmlFor","class":F}:{"htmlFor":"for","className":g},get:function(y){var AA,Y,z,x,G;if(y){if(y[l]||y.item){return y;}if(typeof y==="string"){AA=y;y=K.getElementById(y);if(y&&y.id===AA){return y;}else{if(y&&K.all){y=null;Y=K.all[AA];for(x=0,G=Y.length;x<G;++x){if(Y[x].id===AA){return Y[x];}}}}return y;}if(y.DOM_EVENTS){y=y.get("element");}if("length" in y){z=[];for(x=0,G=y.length;x<G;++x){z[z.length]=E.Dom.get(y[x]);}return z;}return y;}return null;},getComputedStyle:function(G,Y){if(window[w]){return G[e][n][w](G,null)[Y];}else{if(G[a]){return E.Dom.IE_ComputedStyle.get(G,Y);}}},getStyle:function(G,Y){return E.Dom.batch(G,E.Dom._getStyle,Y);},_getStyle:function(){if(window[w]){return function(G,y){y=(y==="float")?y="cssFloat":E.Dom._toCamel(y);var x=G.style[y],Y;if(!x){Y=G[e][n][w](G,null);if(Y){x=Y[y];}}return x;};}else{if(W[a]){return function(G,y){var x;switch(y){case"opacity":x=100;try{x=G.filters["DXImageTransform.Microsoft.Alpha"].opacity;}catch(z){try{x=G.filters("alpha").opacity;}catch(Y){}}return x/100;case"float":y="styleFloat";default:y=E.Dom._toCamel(y);x=G[a]?G[a][y]:null;return(G.style[y]||x);}};}}}(),setStyle:function(G,Y,x){E.Dom.batch(G,E.Dom._setStyle,{prop:Y,val:x});},_setStyle:function(){if(T){return function(Y,G){var x=E.Dom._toCamel(G.prop),y=G.val;if(Y){switch(x){case"opacity":if(L.isString(Y.style.filter)){Y.style.filter="alpha(opacity="+y*100+")";if(!Y[a]||!Y[a].hasLayout){Y.style.zoom=1;}}break;case"float":x="styleFloat";default:Y.style[x]=y;}}else{}};}else{return function(Y,G){var x=E.Dom._toCamel(G.prop),y=G.val;if(Y){if(x=="float"){x="cssFloat";}Y.style[x]=y;}else{}};}}(),getXY:function(G){return E.Dom.batch(G,E.Dom._getXY);},_canPosition:function(G){return(E.Dom._getStyle(G,"display")!=="none"&&E.Dom._inDoc(G));},_getXY:function(){if(K[v][Q]){return function(y){var z,Y,AA,AF,AE,AD,AC,G,x,AB=Math.floor,AG=false;if(E.Dom._canPosition(y)){AA=y[Q]();AF=y[e];z=E.Dom.getDocumentScrollLeft(AF);Y=E.Dom.getDocumentScrollTop(AF);AG=[AB(AA[j]),AB(AA[o])];if(T&&m.ie<8){AE=2;AD=2;AC=AF[t];G=S(AF[v],q);x=S(AF[v],R);if(m.ie===6){if(AC!==c){AE=0;AD=0;}}if((AC==c)){if(G!==r){AE=parseInt(G,10);}if(x!==r){AD=parseInt(x,10);}}AG[0]-=AE;AG[1]-=AD;}if((Y||z)){AG[0]+=z;AG[1]+=Y;}AG[0]=AB(AG[0]);AG[1]=AB(AG[1]);}else{}return AG;};}else{return function(y){var x,Y,AA,AB,AC,z=false,G=y;if(E.Dom._canPosition(y)){z=[y[b],y[P]];x=E.Dom.getDocumentScrollLeft(y[e]);Y=E.Dom.getDocumentScrollTop(y[e]);AC=((H||m.webkit>519)?true:false);while((G=G[u])){z[0]+=G[b];z[1]+=G[P];if(AC){z=E.Dom._calcBorders(G,z);}}if(E.Dom._getStyle(y,p)!==f){G=y;while((G=G[Z])&&G[C]){AA=G[i];AB=G[O];if(H&&(E.Dom._getStyle(G,"overflow")!=="visible")){z=E.Dom._calcBorders(G,z);}if(AA||AB){z[0]-=AB;z[1]-=AA;}}z[0]+=x;z[1]+=Y;}else{if(D){z[0]-=x;z[1]-=Y;}else{if(I||H){z[0]+=x;z[1]+=Y;}}}z[0]=Math.floor(z[0]);z[1]=Math.floor(z[1]);}else{}return z;};}}(),getX:function(G){var Y=function(x){return E.Dom.getXY(x)[0];};return E.Dom.batch(G,Y,E.Dom,true);},getY:function(G){var Y=function(x){return E.Dom.getXY(x)[1];};return E.Dom.batch(G,Y,E.Dom,true);},setXY:function(G,x,Y){E.Dom.batch(G,E.Dom._setXY,{pos:x,noRetry:Y});},_setXY:function(G,z){var AA=E.Dom._getStyle(G,p),y=E.Dom.setStyle,AD=z.pos,Y=z.noRetry,AB=[parseInt(E.Dom.getComputedStyle(G,j),10),parseInt(E.Dom.getComputedStyle(G,o),10)],AC,x;if(AA=="static"){AA=V;y(G,p,AA);}AC=E.Dom._getXY(G);if(!AD||AC===false){return false;}if(isNaN(AB[0])){AB[0]=(AA==V)?0:G[b];}if(isNaN(AB[1])){AB[1]=(AA==V)?0:G[P];}if(AD[0]!==null){y(G,j,AD[0]-AC[0]+AB[0]+"px");}if(AD[1]!==null){y(G,o,AD[1]-AC[1]+AB[1]+"px");}if(!Y){x=E.Dom._getXY(G);if((AD[0]!==null&&x[0]!=AD[0])||(AD[1]!==null&&x[1]!=AD[1])){E.Dom._setXY(G,{pos:AD,noRetry:true});}}},setX:function(Y,G){E.Dom.setXY(Y,[G,null]);},setY:function(G,Y){E.Dom.setXY(G,[null,Y]);},getRegion:function(G){var Y=function(x){var y=false;if(E.Dom._canPosition(x)){y=E.Region.getRegion(x);}else{}return y;};return E.Dom.batch(G,Y,E.Dom,true);},getClientWidth:function(){return E.Dom.getViewportWidth();},getClientHeight:function(){return E.Dom.getViewportHeight();},getElementsByClassName:function(AB,AF,AC,AE,x,AD){AB=L.trim(AB);AF=AF||"*";AC=(AC)?E.Dom.get(AC):null||K;if(!AC){return[];}var Y=[],G=AC.getElementsByTagName(AF),z=E.Dom.hasClass;for(var y=0,AA=G.length;y<AA;++y){if(z(G[y],AB)){Y[Y.length]=G[y];}}if(AE){E.Dom.batch(Y,AE,x,AD);}return Y;},hasClass:function(Y,G){return E.Dom.batch(Y,E.Dom._hasClass,G);},_hasClass:function(x,Y){var G=false,y;if(x&&Y){y=E.Dom.getAttribute(x,F)||J;if(Y.exec){G=Y.test(y);}else{G=Y&&(B+y+B).indexOf(B+Y+B)>-1;}}else{}return G;},addClass:function(Y,G){return E.Dom.batch(Y,E.Dom._addClass,G);},_addClass:function(x,Y){var G=false,y;if(x&&Y){y=E.Dom.getAttribute(x,F)||J;if(!E.Dom._hasClass(x,Y)){E.Dom.setAttribute(x,F,A(y+B+Y));G=true;}}else{}return G;},removeClass:function(Y,G){return E.Dom.batch(Y,E.Dom._removeClass,G);},_removeClass:function(y,x){var Y=false,AA,z,G;if(y&&x){AA=E.Dom.getAttribute(y,F)||J;E.Dom.setAttribute(y,F,AA.replace(E.Dom._getClassRegex(x),J));z=E.Dom.getAttribute(y,F);if(AA!==z){E.Dom.setAttribute(y,F,A(z));Y=true;if(E.Dom.getAttribute(y,F)===""){G=(y.hasAttribute&&y.hasAttribute(g))?g:F;y.removeAttribute(G);}}}else{}return Y;},replaceClass:function(x,Y,G){return E.Dom.batch(x,E.Dom._replaceClass,{from:Y,to:G});
14
+ },_replaceClass:function(y,x){var Y,AB,AA,G=false,z;if(y&&x){AB=x.from;AA=x.to;if(!AA){G=false;}else{if(!AB){G=E.Dom._addClass(y,x.to);}else{if(AB!==AA){z=E.Dom.getAttribute(y,F)||J;Y=(B+z.replace(E.Dom._getClassRegex(AB),B+AA)).split(E.Dom._getClassRegex(AA));Y.splice(1,0,B+AA);E.Dom.setAttribute(y,F,A(Y.join(J)));G=true;}}}}else{}return G;},generateId:function(G,x){x=x||"yui-gen";var Y=function(y){if(y&&y.id){return y.id;}var z=x+YAHOO.env._id_counter++;if(y){if(y[e].getElementById(z)){return E.Dom.generateId(y,z+x);}y.id=z;}return z;};return E.Dom.batch(G,Y,E.Dom,true)||Y.apply(E.Dom,arguments);},isAncestor:function(Y,x){Y=E.Dom.get(Y);x=E.Dom.get(x);var G=false;if((Y&&x)&&(Y[l]&&x[l])){if(Y.contains&&Y!==x){G=Y.contains(x);}else{if(Y.compareDocumentPosition){G=!!(Y.compareDocumentPosition(x)&16);}}}else{}return G;},inDocument:function(G,Y){return E.Dom._inDoc(E.Dom.get(G),Y);},_inDoc:function(Y,x){var G=false;if(Y&&Y[C]){x=x||Y[e];G=E.Dom.isAncestor(x[v],Y);}else{}return G;},getElementsBy:function(Y,AF,AB,AD,y,AC,AE){AF=AF||"*";AB=(AB)?E.Dom.get(AB):null||K;if(!AB){return[];}var x=[],G=AB.getElementsByTagName(AF);for(var z=0,AA=G.length;z<AA;++z){if(Y(G[z])){if(AE){x=G[z];break;}else{x[x.length]=G[z];}}}if(AD){E.Dom.batch(x,AD,y,AC);}return x;},getElementBy:function(x,G,Y){return E.Dom.getElementsBy(x,G,Y,null,null,null,true);},batch:function(x,AB,AA,z){var y=[],Y=(z)?AA:window;x=(x&&(x[C]||x.item))?x:E.Dom.get(x);if(x&&AB){if(x[C]||x.length===undefined){return AB.call(Y,x,AA);}for(var G=0;G<x.length;++G){y[y.length]=AB.call(Y,x[G],AA);}}else{return false;}return y;},getDocumentHeight:function(){var Y=(K[t]!=M||I)?K.body.scrollHeight:W.scrollHeight,G=Math.max(Y,E.Dom.getViewportHeight());return G;},getDocumentWidth:function(){var Y=(K[t]!=M||I)?K.body.scrollWidth:W.scrollWidth,G=Math.max(Y,E.Dom.getViewportWidth());return G;},getViewportHeight:function(){var G=self.innerHeight,Y=K[t];if((Y||T)&&!D){G=(Y==M)?W.clientHeight:K.body.clientHeight;}return G;},getViewportWidth:function(){var G=self.innerWidth,Y=K[t];if(Y||T){G=(Y==M)?W.clientWidth:K.body.clientWidth;}return G;},getAncestorBy:function(G,Y){while((G=G[Z])){if(E.Dom._testElement(G,Y)){return G;}}return null;},getAncestorByClassName:function(Y,G){Y=E.Dom.get(Y);if(!Y){return null;}var x=function(y){return E.Dom.hasClass(y,G);};return E.Dom.getAncestorBy(Y,x);},getAncestorByTagName:function(Y,G){Y=E.Dom.get(Y);if(!Y){return null;}var x=function(y){return y[C]&&y[C].toUpperCase()==G.toUpperCase();};return E.Dom.getAncestorBy(Y,x);},getPreviousSiblingBy:function(G,Y){while(G){G=G.previousSibling;if(E.Dom._testElement(G,Y)){return G;}}return null;},getPreviousSibling:function(G){G=E.Dom.get(G);if(!G){return null;}return E.Dom.getPreviousSiblingBy(G);},getNextSiblingBy:function(G,Y){while(G){G=G.nextSibling;if(E.Dom._testElement(G,Y)){return G;}}return null;},getNextSibling:function(G){G=E.Dom.get(G);if(!G){return null;}return E.Dom.getNextSiblingBy(G);},getFirstChildBy:function(G,x){var Y=(E.Dom._testElement(G.firstChild,x))?G.firstChild:null;return Y||E.Dom.getNextSiblingBy(G.firstChild,x);},getFirstChild:function(G,Y){G=E.Dom.get(G);if(!G){return null;}return E.Dom.getFirstChildBy(G);},getLastChildBy:function(G,x){if(!G){return null;}var Y=(E.Dom._testElement(G.lastChild,x))?G.lastChild:null;return Y||E.Dom.getPreviousSiblingBy(G.lastChild,x);},getLastChild:function(G){G=E.Dom.get(G);return E.Dom.getLastChildBy(G);},getChildrenBy:function(Y,y){var x=E.Dom.getFirstChildBy(Y,y),G=x?[x]:[];E.Dom.getNextSiblingBy(x,function(z){if(!y||y(z)){G[G.length]=z;}return false;});return G;},getChildren:function(G){G=E.Dom.get(G);if(!G){}return E.Dom.getChildrenBy(G);},getDocumentScrollLeft:function(G){G=G||K;return Math.max(G[v].scrollLeft,G.body.scrollLeft);},getDocumentScrollTop:function(G){G=G||K;return Math.max(G[v].scrollTop,G.body.scrollTop);},insertBefore:function(Y,G){Y=E.Dom.get(Y);G=E.Dom.get(G);if(!Y||!G||!G[Z]){return null;}return G[Z].insertBefore(Y,G);},insertAfter:function(Y,G){Y=E.Dom.get(Y);G=E.Dom.get(G);if(!Y||!G||!G[Z]){return null;}if(G.nextSibling){return G[Z].insertBefore(Y,G.nextSibling);}else{return G[Z].appendChild(Y);}},getClientRegion:function(){var x=E.Dom.getDocumentScrollTop(),Y=E.Dom.getDocumentScrollLeft(),y=E.Dom.getViewportWidth()+Y,G=E.Dom.getViewportHeight()+x;return new E.Region(x,y,G,Y);},setAttribute:function(Y,G,x){G=E.Dom.CUSTOM_ATTRIBUTES[G]||G;Y.setAttribute(G,x);},getAttribute:function(Y,G){G=E.Dom.CUSTOM_ATTRIBUTES[G]||G;return Y.getAttribute(G);},_toCamel:function(Y){var x=d;function G(y,z){return z.toUpperCase();}return x[Y]||(x[Y]=Y.indexOf("-")===-1?Y:Y.replace(/-([a-z])/gi,G));},_getClassRegex:function(Y){var G;if(Y!==undefined){if(Y.exec){G=Y;}else{G=h[Y];if(!G){Y=Y.replace(E.Dom._patterns.CLASS_RE_TOKENS,"\\$1");G=h[Y]=new RegExp(s+Y+k,U);}}}return G;},_patterns:{ROOT_TAG:/^body|html$/i,CLASS_RE_TOKENS:/([\.\(\)\^\$\*\+\?\|\[\]\{\}])/g},_testElement:function(G,Y){return G&&G[l]==1&&(!Y||Y(G));},_calcBorders:function(x,y){var Y=parseInt(E.Dom[w](x,R),10)||0,G=parseInt(E.Dom[w](x,q),10)||0;if(H){if(N.test(x[C])){Y=0;G=0;}}y[0]+=G;y[1]+=Y;return y;}};var S=E.Dom[w];if(m.opera){E.Dom[w]=function(Y,G){var x=S(Y,G);if(X.test(G)){x=E.Dom.Color.toRGB(x);}return x;};}if(m.webkit){E.Dom[w]=function(Y,G){var x=S(Y,G);if(x==="rgba(0, 0, 0, 0)"){x="transparent";}return x;};}})();YAHOO.util.Region=function(C,D,A,B){this.top=C;this.y=C;this[1]=C;this.right=D;this.bottom=A;this.left=B;this.x=B;this[0]=B;this.width=this.right-this.left;this.height=this.bottom-this.top;};YAHOO.util.Region.prototype.contains=function(A){return(A.left>=this.left&&A.right<=this.right&&A.top>=this.top&&A.bottom<=this.bottom);};YAHOO.util.Region.prototype.getArea=function(){return((this.bottom-this.top)*(this.right-this.left));};YAHOO.util.Region.prototype.intersect=function(E){var C=Math.max(this.top,E.top),D=Math.min(this.right,E.right),A=Math.min(this.bottom,E.bottom),B=Math.max(this.left,E.left);if(A>=C&&D>=B){return new YAHOO.util.Region(C,D,A,B);
15
+ }else{return null;}};YAHOO.util.Region.prototype.union=function(E){var C=Math.min(this.top,E.top),D=Math.max(this.right,E.right),A=Math.max(this.bottom,E.bottom),B=Math.min(this.left,E.left);return new YAHOO.util.Region(C,D,A,B);};YAHOO.util.Region.prototype.toString=function(){return("Region {"+"top: "+this.top+", right: "+this.right+", bottom: "+this.bottom+", left: "+this.left+", height: "+this.height+", width: "+this.width+"}");};YAHOO.util.Region.getRegion=function(D){var F=YAHOO.util.Dom.getXY(D),C=F[1],E=F[0]+D.offsetWidth,A=F[1]+D.offsetHeight,B=F[0];return new YAHOO.util.Region(C,E,A,B);};YAHOO.util.Point=function(A,B){if(YAHOO.lang.isArray(A)){B=A[1];A=A[0];}YAHOO.util.Point.superclass.constructor.call(this,B,A,B,A);};YAHOO.extend(YAHOO.util.Point,YAHOO.util.Region);(function(){var B=YAHOO.util,A="clientTop",F="clientLeft",J="parentNode",K="right",W="hasLayout",I="px",U="opacity",L="auto",D="borderLeftWidth",G="borderTopWidth",P="borderRightWidth",V="borderBottomWidth",S="visible",Q="transparent",N="height",E="width",H="style",T="currentStyle",R=/^width|height$/,O=/^(\d[.\d]*)+(em|ex|px|gd|rem|vw|vh|vm|ch|mm|cm|in|pt|pc|deg|rad|ms|s|hz|khz|%){1}?/i,M={get:function(X,Z){var Y="",a=X[T][Z];if(Z===U){Y=B.Dom.getStyle(X,U);}else{if(!a||(a.indexOf&&a.indexOf(I)>-1)){Y=a;}else{if(B.Dom.IE_COMPUTED[Z]){Y=B.Dom.IE_COMPUTED[Z](X,Z);}else{if(O.test(a)){Y=B.Dom.IE.ComputedStyle.getPixel(X,Z);}else{Y=a;}}}}return Y;},getOffset:function(Z,e){var b=Z[T][e],X=e.charAt(0).toUpperCase()+e.substr(1),c="offset"+X,Y="pixel"+X,a="",d;if(b==L){d=Z[c];if(d===undefined){a=0;}a=d;if(R.test(e)){Z[H][e]=d;if(Z[c]>d){a=d-(Z[c]-d);}Z[H][e]=L;}}else{if(!Z[H][Y]&&!Z[H][e]){Z[H][e]=b;}a=Z[H][Y];}return a+I;},getBorderWidth:function(X,Z){var Y=null;if(!X[T][W]){X[H].zoom=1;}switch(Z){case G:Y=X[A];break;case V:Y=X.offsetHeight-X.clientHeight-X[A];break;case D:Y=X[F];break;case P:Y=X.offsetWidth-X.clientWidth-X[F];break;}return Y+I;},getPixel:function(Y,X){var a=null,b=Y[T][K],Z=Y[T][X];Y[H][K]=Z;a=Y[H].pixelRight;Y[H][K]=b;return a+I;},getMargin:function(Y,X){var Z;if(Y[T][X]==L){Z=0+I;}else{Z=B.Dom.IE.ComputedStyle.getPixel(Y,X);}return Z;},getVisibility:function(Y,X){var Z;while((Z=Y[T])&&Z[X]=="inherit"){Y=Y[J];}return(Z)?Z[X]:S;},getColor:function(Y,X){return B.Dom.Color.toRGB(Y[T][X])||Q;},getBorderColor:function(Y,X){var Z=Y[T],a=Z[X]||Z.color;return B.Dom.Color.toRGB(B.Dom.Color.toHex(a));}},C={};C.top=C.right=C.bottom=C.left=C[E]=C[N]=M.getOffset;C.color=M.getColor;C[G]=C[P]=C[V]=C[D]=M.getBorderWidth;C.marginTop=C.marginRight=C.marginBottom=C.marginLeft=M.getMargin;C.visibility=M.getVisibility;C.borderColor=C.borderTopColor=C.borderRightColor=C.borderBottomColor=C.borderLeftColor=M.getBorderColor;B.Dom.IE_COMPUTED=C;B.Dom.IE_ComputedStyle=M;})();(function(){var C="toString",A=parseInt,B=RegExp,D=YAHOO.util;D.Dom.Color={KEYWORDS:{black:"000",silver:"c0c0c0",gray:"808080",white:"fff",maroon:"800000",red:"f00",purple:"800080",fuchsia:"f0f",green:"008000",lime:"0f0",olive:"808000",yellow:"ff0",navy:"000080",blue:"00f",teal:"008080",aqua:"0ff"},re_RGB:/^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i,re_hex:/^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i,re_hex3:/([0-9A-F])/gi,toRGB:function(E){if(!D.Dom.Color.re_RGB.test(E)){E=D.Dom.Color.toHex(E);}if(D.Dom.Color.re_hex.exec(E)){E="rgb("+[A(B.$1,16),A(B.$2,16),A(B.$3,16)].join(", ")+")";}return E;},toHex:function(H){H=D.Dom.Color.KEYWORDS[H]||H;if(D.Dom.Color.re_RGB.exec(H)){var G=(B.$1.length===1)?"0"+B.$1:Number(B.$1),F=(B.$2.length===1)?"0"+B.$2:Number(B.$2),E=(B.$3.length===1)?"0"+B.$3:Number(B.$3);H=[G[C](16),F[C](16),E[C](16)].join("");}if(H.length<6){H=H.replace(D.Dom.Color.re_hex3,"$1$1");}if(H!=="transparent"&&H.indexOf("#")<0){H="#"+H;}return H.toLowerCase();}};}());YAHOO.register("dom",YAHOO.util.Dom,{version:"2.7.0",build:"1796"});YAHOO.util.CustomEvent=function(D,C,B,A){this.type=D;this.scope=C||window;this.silent=B;this.signature=A||YAHOO.util.CustomEvent.LIST;this.subscribers=[];if(!this.silent){}var E="_YUICEOnSubscribe";if(D!==E){this.subscribeEvent=new YAHOO.util.CustomEvent(E,this,true);}this.lastError=null;};YAHOO.util.CustomEvent.LIST=0;YAHOO.util.CustomEvent.FLAT=1;YAHOO.util.CustomEvent.prototype={subscribe:function(A,B,C){if(!A){throw new Error("Invalid callback for subscriber to '"+this.type+"'");}if(this.subscribeEvent){this.subscribeEvent.fire(A,B,C);}this.subscribers.push(new YAHOO.util.Subscriber(A,B,C));},unsubscribe:function(D,F){if(!D){return this.unsubscribeAll();}var E=false;for(var B=0,A=this.subscribers.length;B<A;++B){var C=this.subscribers[B];if(C&&C.contains(D,F)){this._delete(B);E=true;}}return E;},fire:function(){this.lastError=null;var K=[],E=this.subscribers.length;if(!E&&this.silent){return true;}var I=[].slice.call(arguments,0),G=true,D,J=false;if(!this.silent){}var C=this.subscribers.slice(),A=YAHOO.util.Event.throwErrors;for(D=0;D<E;++D){var M=C[D];if(!M){J=true;}else{if(!this.silent){}var L=M.getScope(this.scope);if(this.signature==YAHOO.util.CustomEvent.FLAT){var B=null;if(I.length>0){B=I[0];}try{G=M.fn.call(L,B,M.obj);}catch(F){this.lastError=F;if(A){throw F;}}}else{try{G=M.fn.call(L,this.type,I,M.obj);}catch(H){this.lastError=H;if(A){throw H;}}}if(false===G){if(!this.silent){}break;}}}return(G!==false);},unsubscribeAll:function(){var A=this.subscribers.length,B;for(B=A-1;B>-1;B--){this._delete(B);}this.subscribers=[];return A;},_delete:function(A){var B=this.subscribers[A];if(B){delete B.fn;delete B.obj;}this.subscribers.splice(A,1);},toString:function(){return"CustomEvent: "+"'"+this.type+"', "+"context: "+this.scope;}};YAHOO.util.Subscriber=function(A,B,C){this.fn=A;this.obj=YAHOO.lang.isUndefined(B)?null:B;this.overrideContext=C;};YAHOO.util.Subscriber.prototype.getScope=function(A){if(this.overrideContext){if(this.overrideContext===true){return this.obj;}else{return this.overrideContext;}}return A;};YAHOO.util.Subscriber.prototype.contains=function(A,B){if(B){return(this.fn==A&&this.obj==B);}else{return(this.fn==A);}};YAHOO.util.Subscriber.prototype.toString=function(){return"Subscriber { obj: "+this.obj+", overrideContext: "+(this.overrideContext||"no")+" }";};if(!YAHOO.util.Event){YAHOO.util.Event=function(){var H=false;var I=[];var J=[];var G=[];var E=[];var C=0;var F=[];var B=[];var A=0;var D={63232:38,63233:40,63234:37,63235:39,63276:33,63277:34,25:9};var K=YAHOO.env.ua.ie?"focusin":"focus";var L=YAHOO.env.ua.ie?"focusout":"blur";return{POLL_RETRYS:2000,POLL_INTERVAL:20,EL:0,TYPE:1,FN:2,WFN:3,UNLOAD_OBJ:3,ADJ_SCOPE:4,OBJ:5,OVERRIDE:6,lastError:null,isSafari:YAHOO.env.ua.webkit,webkit:YAHOO.env.ua.webkit,isIE:YAHOO.env.ua.ie,_interval:null,_dri:null,DOMReady:false,throwErrors:false,startInterval:function(){if(!this._interval){var M=this;var N=function(){M._tryPreloadAttach();};this._interval=setInterval(N,this.POLL_INTERVAL);}},onAvailable:function(S,O,Q,R,P){var M=(YAHOO.lang.isString(S))?[S]:S;for(var N=0;N<M.length;N=N+1){F.push({id:M[N],fn:O,obj:Q,overrideContext:R,checkReady:P});}C=this.POLL_RETRYS;this.startInterval();},onContentReady:function(P,M,N,O){this.onAvailable(P,M,N,O,true);},onDOMReady:function(M,N,O){if(this.DOMReady){setTimeout(function(){var P=window;if(O){if(O===true){P=N;}else{P=O;}}M.call(P,"DOMReady",[],N);},0);}else{this.DOMReadyEvent.subscribe(M,N,O);}},_addListener:function(O,M,Y,S,W,b){if(!Y||!Y.call){return false;}if(this._isValidCollection(O)){var Z=true;for(var T=0,V=O.length;T<V;++T){Z=this.on(O[T],M,Y,S,W)&&Z;}return Z;}else{if(YAHOO.lang.isString(O)){var R=this.getEl(O);if(R){O=R;}else{this.onAvailable(O,function(){YAHOO.util.Event.on(O,M,Y,S,W);});return true;}}}if(!O){return false;}if("unload"==M&&S!==this){J[J.length]=[O,M,Y,S,W];return true;}var N=O;if(W){if(W===true){N=S;}else{N=W;}}var P=function(c){return Y.call(N,YAHOO.util.Event.getEvent(c,O),S);};var a=[O,M,Y,P,N,S,W];var U=I.length;I[U]=a;if(this.useLegacyEvent(O,M)){var Q=this.getLegacyIndex(O,M);if(Q==-1||O!=G[Q][0]){Q=G.length;B[O.id+M]=Q;G[Q]=[O,M,O["on"+M]];E[Q]=[];O["on"+M]=function(c){YAHOO.util.Event.fireLegacyEvent(YAHOO.util.Event.getEvent(c),Q);};}E[Q].push(a);}else{try{this._simpleAdd(O,M,P,b);}catch(X){this.lastError=X;this.removeListener(O,M,Y);return false;}}return true;},addListener:function(N,Q,M,O,P){return this._addListener(N,Q,M,O,P,false);},addFocusListener:function(N,M,O,P){return this._addListener(N,K,M,O,P,true);},removeFocusListener:function(N,M){return this.removeListener(N,K,M);},addBlurListener:function(N,M,O,P){return this._addListener(N,L,M,O,P,true);},removeBlurListener:function(N,M){return this.removeListener(N,L,M);},fireLegacyEvent:function(R,P){var T=true,M,V,U,N,S;V=E[P].slice();for(var O=0,Q=V.length;O<Q;++O){U=V[O];if(U&&U[this.WFN]){N=U[this.ADJ_SCOPE];S=U[this.WFN].call(N,R);T=(T&&S);}}M=G[P];if(M&&M[2]){M[2](R);}return T;},getLegacyIndex:function(N,O){var M=this.generateId(N)+O;if(typeof B[M]=="undefined"){return -1;}else{return B[M];}},useLegacyEvent:function(M,N){return(this.webkit&&this.webkit<419&&("click"==N||"dblclick"==N));},removeListener:function(N,M,V){var Q,T,X;if(typeof N=="string"){N=this.getEl(N);}else{if(this._isValidCollection(N)){var W=true;for(Q=N.length-1;Q>-1;Q--){W=(this.removeListener(N[Q],M,V)&&W);}return W;}}if(!V||!V.call){return this.purgeElement(N,false,M);}if("unload"==M){for(Q=J.length-1;Q>-1;Q--){X=J[Q];if(X&&X[0]==N&&X[1]==M&&X[2]==V){J.splice(Q,1);return true;}}return false;}var R=null;var S=arguments[3];if("undefined"===typeof S){S=this._getCacheIndex(N,M,V);}if(S>=0){R=I[S];}if(!N||!R){return false;}if(this.useLegacyEvent(N,M)){var P=this.getLegacyIndex(N,M);var O=E[P];if(O){for(Q=0,T=O.length;Q<T;++Q){X=O[Q];if(X&&X[this.EL]==N&&X[this.TYPE]==M&&X[this.FN]==V){O.splice(Q,1);break;}}}}else{try{this._simpleRemove(N,M,R[this.WFN],false);}catch(U){this.lastError=U;return false;}}delete I[S][this.WFN];delete I[S][this.FN];
16
+ I.splice(S,1);return true;},getTarget:function(O,N){var M=O.target||O.srcElement;return this.resolveTextNode(M);},resolveTextNode:function(N){try{if(N&&3==N.nodeType){return N.parentNode;}}catch(M){}return N;},getPageX:function(N){var M=N.pageX;if(!M&&0!==M){M=N.clientX||0;if(this.isIE){M+=this._getScrollLeft();}}return M;},getPageY:function(M){var N=M.pageY;if(!N&&0!==N){N=M.clientY||0;if(this.isIE){N+=this._getScrollTop();}}return N;},getXY:function(M){return[this.getPageX(M),this.getPageY(M)];},getRelatedTarget:function(N){var M=N.relatedTarget;if(!M){if(N.type=="mouseout"){M=N.toElement;}else{if(N.type=="mouseover"){M=N.fromElement;}}}return this.resolveTextNode(M);},getTime:function(O){if(!O.time){var N=new Date().getTime();try{O.time=N;}catch(M){this.lastError=M;return N;}}return O.time;},stopEvent:function(M){this.stopPropagation(M);this.preventDefault(M);},stopPropagation:function(M){if(M.stopPropagation){M.stopPropagation();}else{M.cancelBubble=true;}},preventDefault:function(M){if(M.preventDefault){M.preventDefault();}else{M.returnValue=false;}},getEvent:function(O,M){var N=O||window.event;if(!N){var P=this.getEvent.caller;while(P){N=P.arguments[0];if(N&&Event==N.constructor){break;}P=P.caller;}}return N;},getCharCode:function(N){var M=N.keyCode||N.charCode||0;if(YAHOO.env.ua.webkit&&(M in D)){M=D[M];}return M;},_getCacheIndex:function(Q,R,P){for(var O=0,N=I.length;O<N;O=O+1){var M=I[O];if(M&&M[this.FN]==P&&M[this.EL]==Q&&M[this.TYPE]==R){return O;}}return -1;},generateId:function(M){var N=M.id;if(!N){N="yuievtautoid-"+A;++A;M.id=N;}return N;},_isValidCollection:function(N){try{return(N&&typeof N!=="string"&&N.length&&!N.tagName&&!N.alert&&typeof N[0]!=="undefined");}catch(M){return false;}},elCache:{},getEl:function(M){return(typeof M==="string")?document.getElementById(M):M;},clearCache:function(){},DOMReadyEvent:new YAHOO.util.CustomEvent("DOMReady",this),_load:function(N){if(!H){H=true;var M=YAHOO.util.Event;M._ready();M._tryPreloadAttach();}},_ready:function(N){var M=YAHOO.util.Event;if(!M.DOMReady){M.DOMReady=true;M.DOMReadyEvent.fire();M._simpleRemove(document,"DOMContentLoaded",M._ready);}},_tryPreloadAttach:function(){if(F.length===0){C=0;if(this._interval){clearInterval(this._interval);this._interval=null;}return;}if(this.locked){return;}if(this.isIE){if(!this.DOMReady){this.startInterval();return;}}this.locked=true;var S=!H;if(!S){S=(C>0&&F.length>0);}var R=[];var T=function(V,W){var U=V;if(W.overrideContext){if(W.overrideContext===true){U=W.obj;}else{U=W.overrideContext;}}W.fn.call(U,W.obj);};var N,M,Q,P,O=[];for(N=0,M=F.length;N<M;N=N+1){Q=F[N];if(Q){P=this.getEl(Q.id);if(P){if(Q.checkReady){if(H||P.nextSibling||!S){O.push(Q);F[N]=null;}}else{T(P,Q);F[N]=null;}}else{R.push(Q);}}}for(N=0,M=O.length;N<M;N=N+1){Q=O[N];T(this.getEl(Q.id),Q);}C--;if(S){for(N=F.length-1;N>-1;N--){Q=F[N];if(!Q||!Q.id){F.splice(N,1);}}this.startInterval();}else{if(this._interval){clearInterval(this._interval);this._interval=null;}}this.locked=false;},purgeElement:function(Q,R,T){var O=(YAHOO.lang.isString(Q))?this.getEl(Q):Q;var S=this.getListeners(O,T),P,M;if(S){for(P=S.length-1;P>-1;P--){var N=S[P];this.removeListener(O,N.type,N.fn);}}if(R&&O&&O.childNodes){for(P=0,M=O.childNodes.length;P<M;++P){this.purgeElement(O.childNodes[P],R,T);}}},getListeners:function(O,M){var R=[],N;if(!M){N=[I,J];}else{if(M==="unload"){N=[J];}else{N=[I];}}var T=(YAHOO.lang.isString(O))?this.getEl(O):O;for(var Q=0;Q<N.length;Q=Q+1){var V=N[Q];if(V){for(var S=0,U=V.length;S<U;++S){var P=V[S];if(P&&P[this.EL]===T&&(!M||M===P[this.TYPE])){R.push({type:P[this.TYPE],fn:P[this.FN],obj:P[this.OBJ],adjust:P[this.OVERRIDE],scope:P[this.ADJ_SCOPE],index:S});}}}}return(R.length)?R:null;},_unload:function(T){var N=YAHOO.util.Event,Q,P,O,S,R,U=J.slice(),M;for(Q=0,S=J.length;Q<S;++Q){O=U[Q];if(O){M=window;if(O[N.ADJ_SCOPE]){if(O[N.ADJ_SCOPE]===true){M=O[N.UNLOAD_OBJ];}else{M=O[N.ADJ_SCOPE];}}O[N.FN].call(M,N.getEvent(T,O[N.EL]),O[N.UNLOAD_OBJ]);U[Q]=null;}}O=null;M=null;J=null;if(I){for(P=I.length-1;P>-1;P--){O=I[P];if(O){N.removeListener(O[N.EL],O[N.TYPE],O[N.FN],P);}}O=null;}G=null;N._simpleRemove(window,"unload",N._unload);},_getScrollLeft:function(){return this._getScroll()[1];},_getScrollTop:function(){return this._getScroll()[0];},_getScroll:function(){var M=document.documentElement,N=document.body;if(M&&(M.scrollTop||M.scrollLeft)){return[M.scrollTop,M.scrollLeft];}else{if(N){return[N.scrollTop,N.scrollLeft];}else{return[0,0];}}},regCE:function(){},_simpleAdd:function(){if(window.addEventListener){return function(O,P,N,M){O.addEventListener(P,N,(M));};}else{if(window.attachEvent){return function(O,P,N,M){O.attachEvent("on"+P,N);};}else{return function(){};}}}(),_simpleRemove:function(){if(window.removeEventListener){return function(O,P,N,M){O.removeEventListener(P,N,(M));};}else{if(window.detachEvent){return function(N,O,M){N.detachEvent("on"+O,M);};}else{return function(){};}}}()};}();(function(){var EU=YAHOO.util.Event;EU.on=EU.addListener;EU.onFocus=EU.addFocusListener;EU.onBlur=EU.addBlurListener;
17
+ /* DOMReady: based on work by: Dean Edwards/John Resig/Matthias Miller */
18
+ if(EU.isIE){YAHOO.util.Event.onDOMReady(YAHOO.util.Event._tryPreloadAttach,YAHOO.util.Event,true);var n=document.createElement("p");EU._dri=setInterval(function(){try{n.doScroll("left");clearInterval(EU._dri);EU._dri=null;EU._ready();n=null;}catch(ex){}},EU.POLL_INTERVAL);}else{if(EU.webkit&&EU.webkit<525){EU._dri=setInterval(function(){var rs=document.readyState;if("loaded"==rs||"complete"==rs){clearInterval(EU._dri);EU._dri=null;EU._ready();}},EU.POLL_INTERVAL);}else{EU._simpleAdd(document,"DOMContentLoaded",EU._ready);}}EU._simpleAdd(window,"load",EU._load);EU._simpleAdd(window,"unload",EU._unload);EU._tryPreloadAttach();})();}YAHOO.util.EventProvider=function(){};YAHOO.util.EventProvider.prototype={__yui_events:null,__yui_subscribers:null,subscribe:function(A,C,F,E){this.__yui_events=this.__yui_events||{};var D=this.__yui_events[A];if(D){D.subscribe(C,F,E);
19
+ }else{this.__yui_subscribers=this.__yui_subscribers||{};var B=this.__yui_subscribers;if(!B[A]){B[A]=[];}B[A].push({fn:C,obj:F,overrideContext:E});}},unsubscribe:function(C,E,G){this.__yui_events=this.__yui_events||{};var A=this.__yui_events;if(C){var F=A[C];if(F){return F.unsubscribe(E,G);}}else{var B=true;for(var D in A){if(YAHOO.lang.hasOwnProperty(A,D)){B=B&&A[D].unsubscribe(E,G);}}return B;}return false;},unsubscribeAll:function(A){return this.unsubscribe(A);},createEvent:function(G,D){this.__yui_events=this.__yui_events||{};var A=D||{};var I=this.__yui_events;if(I[G]){}else{var H=A.scope||this;var E=(A.silent);var B=new YAHOO.util.CustomEvent(G,H,E,YAHOO.util.CustomEvent.FLAT);I[G]=B;if(A.onSubscribeCallback){B.subscribeEvent.subscribe(A.onSubscribeCallback);}this.__yui_subscribers=this.__yui_subscribers||{};var F=this.__yui_subscribers[G];if(F){for(var C=0;C<F.length;++C){B.subscribe(F[C].fn,F[C].obj,F[C].overrideContext);}}}return I[G];},fireEvent:function(E,D,A,C){this.__yui_events=this.__yui_events||{};var G=this.__yui_events[E];if(!G){return null;}var B=[];for(var F=1;F<arguments.length;++F){B.push(arguments[F]);}return G.fire.apply(G,B);},hasEvent:function(A){if(this.__yui_events){if(this.__yui_events[A]){return true;}}return false;}};(function(){var A=YAHOO.util.Event,C=YAHOO.lang;YAHOO.util.KeyListener=function(D,I,E,F){if(!D){}else{if(!I){}else{if(!E){}}}if(!F){F=YAHOO.util.KeyListener.KEYDOWN;}var G=new YAHOO.util.CustomEvent("keyPressed");this.enabledEvent=new YAHOO.util.CustomEvent("enabled");this.disabledEvent=new YAHOO.util.CustomEvent("disabled");if(C.isString(D)){D=document.getElementById(D);}if(C.isFunction(E)){G.subscribe(E);}else{G.subscribe(E.fn,E.scope,E.correctScope);}function H(O,N){if(!I.shift){I.shift=false;}if(!I.alt){I.alt=false;}if(!I.ctrl){I.ctrl=false;}if(O.shiftKey==I.shift&&O.altKey==I.alt&&O.ctrlKey==I.ctrl){var J,M=I.keys,L;if(YAHOO.lang.isArray(M)){for(var K=0;K<M.length;K++){J=M[K];L=A.getCharCode(O);if(J==L){G.fire(L,O);break;}}}else{L=A.getCharCode(O);if(M==L){G.fire(L,O);}}}}this.enable=function(){if(!this.enabled){A.on(D,F,H);this.enabledEvent.fire(I);}this.enabled=true;};this.disable=function(){if(this.enabled){A.removeListener(D,F,H);this.disabledEvent.fire(I);}this.enabled=false;};this.toString=function(){return"KeyListener ["+I.keys+"] "+D.tagName+(D.id?"["+D.id+"]":"");};};var B=YAHOO.util.KeyListener;B.KEYDOWN="keydown";B.KEYUP="keyup";B.KEY={ALT:18,BACK_SPACE:8,CAPS_LOCK:20,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,META:224,NUM_LOCK:144,PAGE_DOWN:34,PAGE_UP:33,PAUSE:19,PRINTSCREEN:44,RIGHT:39,SCROLL_LOCK:145,SHIFT:16,SPACE:32,TAB:9,UP:38};})();YAHOO.register("event",YAHOO.util.Event,{version:"2.7.0",build:"1796"});YAHOO.register("yahoo-dom-event", YAHOO, {version: "2.7.0", build: "1796"});
20
+ /*
21
+ Copyright (c) 2009, Yahoo! Inc. All rights reserved.
22
+ Code licensed under the BSD License:
23
+ http://developer.yahoo.net/yui/license.txt
24
+ version: 2.7.0
25
+ */
26
+ if(!YAHOO.util.DragDropMgr){YAHOO.util.DragDropMgr=function(){var A=YAHOO.util.Event,B=YAHOO.util.Dom;return{useShim:false,_shimActive:false,_shimState:false,_debugShim:false,_createShim:function(){var C=document.createElement("div");C.id="yui-ddm-shim";if(document.body.firstChild){document.body.insertBefore(C,document.body.firstChild);}else{document.body.appendChild(C);}C.style.display="none";C.style.backgroundColor="red";C.style.position="absolute";C.style.zIndex="99999";B.setStyle(C,"opacity","0");this._shim=C;A.on(C,"mouseup",this.handleMouseUp,this,true);A.on(C,"mousemove",this.handleMouseMove,this,true);A.on(window,"scroll",this._sizeShim,this,true);},_sizeShim:function(){if(this._shimActive){var C=this._shim;C.style.height=B.getDocumentHeight()+"px";C.style.width=B.getDocumentWidth()+"px";C.style.top="0";C.style.left="0";}},_activateShim:function(){if(this.useShim){if(!this._shim){this._createShim();}this._shimActive=true;var C=this._shim,D="0";if(this._debugShim){D=".5";}B.setStyle(C,"opacity",D);this._sizeShim();C.style.display="block";}},_deactivateShim:function(){this._shim.style.display="none";this._shimActive=false;},_shim:null,ids:{},handleIds:{},dragCurrent:null,dragOvers:{},deltaX:0,deltaY:0,preventDefault:true,stopPropagation:true,initialized:false,locked:false,interactionInfo:null,init:function(){this.initialized=true;},POINT:0,INTERSECT:1,STRICT_INTERSECT:2,mode:0,_execOnAll:function(E,D){for(var F in this.ids){for(var C in this.ids[F]){var G=this.ids[F][C];if(!this.isTypeOfDD(G)){continue;}G[E].apply(G,D);}}},_onLoad:function(){this.init();A.on(document,"mouseup",this.handleMouseUp,this,true);A.on(document,"mousemove",this.handleMouseMove,this,true);A.on(window,"unload",this._onUnload,this,true);A.on(window,"resize",this._onResize,this,true);},_onResize:function(C){this._execOnAll("resetConstraints",[]);},lock:function(){this.locked=true;},unlock:function(){this.locked=false;},isLocked:function(){return this.locked;},locationCache:{},useCache:true,clickPixelThresh:3,clickTimeThresh:1000,dragThreshMet:false,clickTimeout:null,startX:0,startY:0,fromTimeout:false,regDragDrop:function(D,C){if(!this.initialized){this.init();}if(!this.ids[C]){this.ids[C]={};}this.ids[C][D.id]=D;},removeDDFromGroup:function(E,C){if(!this.ids[C]){this.ids[C]={};}var D=this.ids[C];if(D&&D[E.id]){delete D[E.id];}},_remove:function(E){for(var D in E.groups){if(D){var C=this.ids[D];if(C&&C[E.id]){delete C[E.id];}}}delete this.handleIds[E.id];},regHandle:function(D,C){if(!this.handleIds[D]){this.handleIds[D]={};}this.handleIds[D][C]=C;},isDragDrop:function(C){return(this.getDDById(C))?true:false;},getRelated:function(H,D){var G=[];for(var F in H.groups){for(var E in this.ids[F]){var C=this.ids[F][E];if(!this.isTypeOfDD(C)){continue;}if(!D||C.isTarget){G[G.length]=C;}}}return G;},isLegalTarget:function(G,F){var D=this.getRelated(G,true);for(var E=0,C=D.length;E<C;++E){if(D[E].id==F.id){return true;}}return false;},isTypeOfDD:function(C){return(C&&C.__ygDragDrop);},isHandle:function(D,C){return(this.handleIds[D]&&this.handleIds[D][C]);},getDDById:function(D){for(var C in this.ids){if(this.ids[C][D]){return this.ids[C][D];}}return null;},handleMouseDown:function(E,D){this.currentTarget=YAHOO.util.Event.getTarget(E);this.dragCurrent=D;var C=D.getEl();this.startX=YAHOO.util.Event.getPageX(E);this.startY=YAHOO.util.Event.getPageY(E);this.deltaX=this.startX-C.offsetLeft;this.deltaY=this.startY-C.offsetTop;this.dragThreshMet=false;this.clickTimeout=setTimeout(function(){var F=YAHOO.util.DDM;F.startDrag(F.startX,F.startY);F.fromTimeout=true;},this.clickTimeThresh);},startDrag:function(C,E){if(this.dragCurrent&&this.dragCurrent.useShim){this._shimState=this.useShim;this.useShim=true;}this._activateShim();clearTimeout(this.clickTimeout);var D=this.dragCurrent;if(D&&D.events.b4StartDrag){D.b4StartDrag(C,E);D.fireEvent("b4StartDragEvent",{x:C,y:E});}if(D&&D.events.startDrag){D.startDrag(C,E);D.fireEvent("startDragEvent",{x:C,y:E});}this.dragThreshMet=true;},handleMouseUp:function(C){if(this.dragCurrent){clearTimeout(this.clickTimeout);if(this.dragThreshMet){if(this.fromTimeout){this.fromTimeout=false;this.handleMouseMove(C);}this.fromTimeout=false;this.fireEvents(C,true);}else{}this.stopDrag(C);this.stopEvent(C);}},stopEvent:function(C){if(this.stopPropagation){YAHOO.util.Event.stopPropagation(C);}if(this.preventDefault){YAHOO.util.Event.preventDefault(C);}},stopDrag:function(E,D){var C=this.dragCurrent;if(C&&!D){if(this.dragThreshMet){if(C.events.b4EndDrag){C.b4EndDrag(E);C.fireEvent("b4EndDragEvent",{e:E});}if(C.events.endDrag){C.endDrag(E);C.fireEvent("endDragEvent",{e:E});}}if(C.events.mouseUp){C.onMouseUp(E);C.fireEvent("mouseUpEvent",{e:E});}}if(this._shimActive){this._deactivateShim();if(this.dragCurrent&&this.dragCurrent.useShim){this.useShim=this._shimState;this._shimState=false;}}this.dragCurrent=null;this.dragOvers={};},handleMouseMove:function(F){var C=this.dragCurrent;if(C){if(YAHOO.util.Event.isIE&&!F.button){this.stopEvent(F);return this.handleMouseUp(F);}else{if(F.clientX<0||F.clientY<0){}}if(!this.dragThreshMet){var E=Math.abs(this.startX-YAHOO.util.Event.getPageX(F));var D=Math.abs(this.startY-YAHOO.util.Event.getPageY(F));if(E>this.clickPixelThresh||D>this.clickPixelThresh){this.startDrag(this.startX,this.startY);}}if(this.dragThreshMet){if(C&&C.events.b4Drag){C.b4Drag(F);C.fireEvent("b4DragEvent",{e:F});}if(C&&C.events.drag){C.onDrag(F);C.fireEvent("dragEvent",{e:F});}if(C){this.fireEvents(F,false);}}this.stopEvent(F);}},fireEvents:function(V,L){var a=this.dragCurrent;if(!a||a.isLocked()||a.dragOnly){return;}var N=YAHOO.util.Event.getPageX(V),M=YAHOO.util.Event.getPageY(V),P=new YAHOO.util.Point(N,M),K=a.getTargetCoord(P.x,P.y),F=a.getDragEl(),E=["out","over","drop","enter"],U=new YAHOO.util.Region(K.y,K.x+F.offsetWidth,K.y+F.offsetHeight,K.x),I=[],D={},Q=[],c={outEvts:[],overEvts:[],dropEvts:[],enterEvts:[]};for(var S in this.dragOvers){var d=this.dragOvers[S];if(!this.isTypeOfDD(d)){continue;
27
+ }if(!this.isOverTarget(P,d,this.mode,U)){c.outEvts.push(d);}I[S]=true;delete this.dragOvers[S];}for(var R in a.groups){if("string"!=typeof R){continue;}for(S in this.ids[R]){var G=this.ids[R][S];if(!this.isTypeOfDD(G)){continue;}if(G.isTarget&&!G.isLocked()&&G!=a){if(this.isOverTarget(P,G,this.mode,U)){D[R]=true;if(L){c.dropEvts.push(G);}else{if(!I[G.id]){c.enterEvts.push(G);}else{c.overEvts.push(G);}this.dragOvers[G.id]=G;}}}}}this.interactionInfo={out:c.outEvts,enter:c.enterEvts,over:c.overEvts,drop:c.dropEvts,point:P,draggedRegion:U,sourceRegion:this.locationCache[a.id],validDrop:L};for(var C in D){Q.push(C);}if(L&&!c.dropEvts.length){this.interactionInfo.validDrop=false;if(a.events.invalidDrop){a.onInvalidDrop(V);a.fireEvent("invalidDropEvent",{e:V});}}for(S=0;S<E.length;S++){var Y=null;if(c[E[S]+"Evts"]){Y=c[E[S]+"Evts"];}if(Y&&Y.length){var H=E[S].charAt(0).toUpperCase()+E[S].substr(1),X="onDrag"+H,J="b4Drag"+H,O="drag"+H+"Event",W="drag"+H;if(this.mode){if(a.events[J]){a[J](V,Y,Q);a.fireEvent(J+"Event",{event:V,info:Y,group:Q});}if(a.events[W]){a[X](V,Y,Q);a.fireEvent(O,{event:V,info:Y,group:Q});}}else{for(var Z=0,T=Y.length;Z<T;++Z){if(a.events[J]){a[J](V,Y[Z].id,Q[0]);a.fireEvent(J+"Event",{event:V,info:Y[Z].id,group:Q[0]});}if(a.events[W]){a[X](V,Y[Z].id,Q[0]);a.fireEvent(O,{event:V,info:Y[Z].id,group:Q[0]});}}}}}},getBestMatch:function(E){var G=null;var D=E.length;if(D==1){G=E[0];}else{for(var F=0;F<D;++F){var C=E[F];if(this.mode==this.INTERSECT&&C.cursorIsOver){G=C;break;}else{if(!G||!G.overlap||(C.overlap&&G.overlap.getArea()<C.overlap.getArea())){G=C;}}}}return G;},refreshCache:function(D){var F=D||this.ids;for(var C in F){if("string"!=typeof C){continue;}for(var E in this.ids[C]){var G=this.ids[C][E];if(this.isTypeOfDD(G)){var H=this.getLocation(G);if(H){this.locationCache[G.id]=H;}else{delete this.locationCache[G.id];}}}}},verifyEl:function(D){try{if(D){var C=D.offsetParent;if(C){return true;}}}catch(E){}return false;},getLocation:function(H){if(!this.isTypeOfDD(H)){return null;}var F=H.getEl(),K,E,D,M,L,N,C,J,G;try{K=YAHOO.util.Dom.getXY(F);}catch(I){}if(!K){return null;}E=K[0];D=E+F.offsetWidth;M=K[1];L=M+F.offsetHeight;N=M-H.padding[0];C=D+H.padding[1];J=L+H.padding[2];G=E-H.padding[3];return new YAHOO.util.Region(N,C,J,G);},isOverTarget:function(K,C,E,F){var G=this.locationCache[C.id];if(!G||!this.useCache){G=this.getLocation(C);this.locationCache[C.id]=G;}if(!G){return false;}C.cursorIsOver=G.contains(K);var J=this.dragCurrent;if(!J||(!E&&!J.constrainX&&!J.constrainY)){return C.cursorIsOver;}C.overlap=null;if(!F){var H=J.getTargetCoord(K.x,K.y);var D=J.getDragEl();F=new YAHOO.util.Region(H.y,H.x+D.offsetWidth,H.y+D.offsetHeight,H.x);}var I=F.intersect(G);if(I){C.overlap=I;return(E)?true:C.cursorIsOver;}else{return false;}},_onUnload:function(D,C){this.unregAll();},unregAll:function(){if(this.dragCurrent){this.stopDrag();this.dragCurrent=null;}this._execOnAll("unreg",[]);this.ids={};},elementCache:{},getElWrapper:function(D){var C=this.elementCache[D];if(!C||!C.el){C=this.elementCache[D]=new this.ElementWrapper(YAHOO.util.Dom.get(D));}return C;},getElement:function(C){return YAHOO.util.Dom.get(C);},getCss:function(D){var C=YAHOO.util.Dom.get(D);return(C)?C.style:null;},ElementWrapper:function(C){this.el=C||null;this.id=this.el&&C.id;this.css=this.el&&C.style;},getPosX:function(C){return YAHOO.util.Dom.getX(C);},getPosY:function(C){return YAHOO.util.Dom.getY(C);},swapNode:function(E,C){if(E.swapNode){E.swapNode(C);}else{var F=C.parentNode;var D=C.nextSibling;if(D==E){F.insertBefore(E,C);}else{if(C==E.nextSibling){F.insertBefore(C,E);}else{E.parentNode.replaceChild(C,E);F.insertBefore(E,D);}}}},getScroll:function(){var E,C,F=document.documentElement,D=document.body;if(F&&(F.scrollTop||F.scrollLeft)){E=F.scrollTop;C=F.scrollLeft;}else{if(D){E=D.scrollTop;C=D.scrollLeft;}else{}}return{top:E,left:C};},getStyle:function(D,C){return YAHOO.util.Dom.getStyle(D,C);},getScrollTop:function(){return this.getScroll().top;},getScrollLeft:function(){return this.getScroll().left;},moveToEl:function(C,E){var D=YAHOO.util.Dom.getXY(E);YAHOO.util.Dom.setXY(C,D);},getClientHeight:function(){return YAHOO.util.Dom.getViewportHeight();},getClientWidth:function(){return YAHOO.util.Dom.getViewportWidth();},numericSort:function(D,C){return(D-C);},_timeoutCount:0,_addListeners:function(){var C=YAHOO.util.DDM;if(YAHOO.util.Event&&document){C._onLoad();}else{if(C._timeoutCount>2000){}else{setTimeout(C._addListeners,10);if(document&&document.body){C._timeoutCount+=1;}}}},handleWasClicked:function(C,E){if(this.isHandle(E,C.id)){return true;}else{var D=C.parentNode;while(D){if(this.isHandle(E,D.id)){return true;}else{D=D.parentNode;}}}return false;}};}();YAHOO.util.DDM=YAHOO.util.DragDropMgr;YAHOO.util.DDM._addListeners();}(function(){var A=YAHOO.util.Event;var B=YAHOO.util.Dom;YAHOO.util.DragDrop=function(E,C,D){if(E){this.init(E,C,D);}};YAHOO.util.DragDrop.prototype={events:null,on:function(){this.subscribe.apply(this,arguments);},id:null,config:null,dragElId:null,handleElId:null,invalidHandleTypes:null,invalidHandleIds:null,invalidHandleClasses:null,startPageX:0,startPageY:0,groups:null,locked:false,lock:function(){this.locked=true;},unlock:function(){this.locked=false;},isTarget:true,padding:null,dragOnly:false,useShim:false,_domRef:null,__ygDragDrop:true,constrainX:false,constrainY:false,minX:0,maxX:0,minY:0,maxY:0,deltaX:0,deltaY:0,maintainOffset:false,xTicks:null,yTicks:null,primaryButtonOnly:true,available:false,hasOuterHandles:false,cursorIsOver:false,overlap:null,b4StartDrag:function(C,D){},startDrag:function(C,D){},b4Drag:function(C){},onDrag:function(C){},onDragEnter:function(C,D){},b4DragOver:function(C){},onDragOver:function(C,D){},b4DragOut:function(C){},onDragOut:function(C,D){},b4DragDrop:function(C){},onDragDrop:function(C,D){},onInvalidDrop:function(C){},b4EndDrag:function(C){},endDrag:function(C){},b4MouseDown:function(C){},onMouseDown:function(C){},onMouseUp:function(C){},onAvailable:function(){},getEl:function(){if(!this._domRef){this._domRef=B.get(this.id);
28
+ }return this._domRef;},getDragEl:function(){return B.get(this.dragElId);},init:function(F,C,D){this.initTarget(F,C,D);A.on(this._domRef||this.id,"mousedown",this.handleMouseDown,this,true);for(var E in this.events){this.createEvent(E+"Event");}},initTarget:function(E,C,D){this.config=D||{};this.events={};this.DDM=YAHOO.util.DDM;this.groups={};if(typeof E!=="string"){this._domRef=E;E=B.generateId(E);}this.id=E;this.addToGroup((C)?C:"default");this.handleElId=E;A.onAvailable(E,this.handleOnAvailable,this,true);this.setDragElId(E);this.invalidHandleTypes={A:"A"};this.invalidHandleIds={};this.invalidHandleClasses=[];this.applyConfig();},applyConfig:function(){this.events={mouseDown:true,b4MouseDown:true,mouseUp:true,b4StartDrag:true,startDrag:true,b4EndDrag:true,endDrag:true,drag:true,b4Drag:true,invalidDrop:true,b4DragOut:true,dragOut:true,dragEnter:true,b4DragOver:true,dragOver:true,b4DragDrop:true,dragDrop:true};if(this.config.events){for(var C in this.config.events){if(this.config.events[C]===false){this.events[C]=false;}}}this.padding=this.config.padding||[0,0,0,0];this.isTarget=(this.config.isTarget!==false);this.maintainOffset=(this.config.maintainOffset);this.primaryButtonOnly=(this.config.primaryButtonOnly!==false);this.dragOnly=((this.config.dragOnly===true)?true:false);this.useShim=((this.config.useShim===true)?true:false);},handleOnAvailable:function(){this.available=true;this.resetConstraints();this.onAvailable();},setPadding:function(E,C,F,D){if(!C&&0!==C){this.padding=[E,E,E,E];}else{if(!F&&0!==F){this.padding=[E,C,E,C];}else{this.padding=[E,C,F,D];}}},setInitPosition:function(F,E){var G=this.getEl();if(!this.DDM.verifyEl(G)){if(G&&G.style&&(G.style.display=="none")){}else{}return;}var D=F||0;var C=E||0;var H=B.getXY(G);this.initPageX=H[0]-D;this.initPageY=H[1]-C;this.lastPageX=H[0];this.lastPageY=H[1];this.setStartPosition(H);},setStartPosition:function(D){var C=D||B.getXY(this.getEl());this.deltaSetXY=null;this.startPageX=C[0];this.startPageY=C[1];},addToGroup:function(C){this.groups[C]=true;this.DDM.regDragDrop(this,C);},removeFromGroup:function(C){if(this.groups[C]){delete this.groups[C];}this.DDM.removeDDFromGroup(this,C);},setDragElId:function(C){this.dragElId=C;},setHandleElId:function(C){if(typeof C!=="string"){C=B.generateId(C);}this.handleElId=C;this.DDM.regHandle(this.id,C);},setOuterHandleElId:function(C){if(typeof C!=="string"){C=B.generateId(C);}A.on(C,"mousedown",this.handleMouseDown,this,true);this.setHandleElId(C);this.hasOuterHandles=true;},unreg:function(){A.removeListener(this.id,"mousedown",this.handleMouseDown);this._domRef=null;this.DDM._remove(this);},isLocked:function(){return(this.DDM.isLocked()||this.locked);},handleMouseDown:function(J,I){var D=J.which||J.button;if(this.primaryButtonOnly&&D>1){return;}if(this.isLocked()){return;}var C=this.b4MouseDown(J),F=true;if(this.events.b4MouseDown){F=this.fireEvent("b4MouseDownEvent",J);}var E=this.onMouseDown(J),H=true;if(this.events.mouseDown){H=this.fireEvent("mouseDownEvent",J);}if((C===false)||(E===false)||(F===false)||(H===false)){return;}this.DDM.refreshCache(this.groups);var G=new YAHOO.util.Point(A.getPageX(J),A.getPageY(J));if(!this.hasOuterHandles&&!this.DDM.isOverTarget(G,this)){}else{if(this.clickValidator(J)){this.setStartPosition();this.DDM.handleMouseDown(J,this);this.DDM.stopEvent(J);}else{}}},clickValidator:function(D){var C=YAHOO.util.Event.getTarget(D);return(this.isValidHandleChild(C)&&(this.id==this.handleElId||this.DDM.handleWasClicked(C,this.id)));},getTargetCoord:function(E,D){var C=E-this.deltaX;var F=D-this.deltaY;if(this.constrainX){if(C<this.minX){C=this.minX;}if(C>this.maxX){C=this.maxX;}}if(this.constrainY){if(F<this.minY){F=this.minY;}if(F>this.maxY){F=this.maxY;}}C=this.getTick(C,this.xTicks);F=this.getTick(F,this.yTicks);return{x:C,y:F};},addInvalidHandleType:function(C){var D=C.toUpperCase();this.invalidHandleTypes[D]=D;},addInvalidHandleId:function(C){if(typeof C!=="string"){C=B.generateId(C);}this.invalidHandleIds[C]=C;},addInvalidHandleClass:function(C){this.invalidHandleClasses.push(C);},removeInvalidHandleType:function(C){var D=C.toUpperCase();delete this.invalidHandleTypes[D];},removeInvalidHandleId:function(C){if(typeof C!=="string"){C=B.generateId(C);}delete this.invalidHandleIds[C];},removeInvalidHandleClass:function(D){for(var E=0,C=this.invalidHandleClasses.length;E<C;++E){if(this.invalidHandleClasses[E]==D){delete this.invalidHandleClasses[E];}}},isValidHandleChild:function(F){var E=true;var H;try{H=F.nodeName.toUpperCase();}catch(G){H=F.nodeName;}E=E&&!this.invalidHandleTypes[H];E=E&&!this.invalidHandleIds[F.id];for(var D=0,C=this.invalidHandleClasses.length;E&&D<C;++D){E=!B.hasClass(F,this.invalidHandleClasses[D]);}return E;},setXTicks:function(F,C){this.xTicks=[];this.xTickSize=C;var E={};for(var D=this.initPageX;D>=this.minX;D=D-C){if(!E[D]){this.xTicks[this.xTicks.length]=D;E[D]=true;}}for(D=this.initPageX;D<=this.maxX;D=D+C){if(!E[D]){this.xTicks[this.xTicks.length]=D;E[D]=true;}}this.xTicks.sort(this.DDM.numericSort);},setYTicks:function(F,C){this.yTicks=[];this.yTickSize=C;var E={};for(var D=this.initPageY;D>=this.minY;D=D-C){if(!E[D]){this.yTicks[this.yTicks.length]=D;E[D]=true;}}for(D=this.initPageY;D<=this.maxY;D=D+C){if(!E[D]){this.yTicks[this.yTicks.length]=D;E[D]=true;}}this.yTicks.sort(this.DDM.numericSort);},setXConstraint:function(E,D,C){this.leftConstraint=parseInt(E,10);this.rightConstraint=parseInt(D,10);this.minX=this.initPageX-this.leftConstraint;this.maxX=this.initPageX+this.rightConstraint;if(C){this.setXTicks(this.initPageX,C);}this.constrainX=true;},clearConstraints:function(){this.constrainX=false;this.constrainY=false;this.clearTicks();},clearTicks:function(){this.xTicks=null;this.yTicks=null;this.xTickSize=0;this.yTickSize=0;},setYConstraint:function(C,E,D){this.topConstraint=parseInt(C,10);this.bottomConstraint=parseInt(E,10);this.minY=this.initPageY-this.topConstraint;this.maxY=this.initPageY+this.bottomConstraint;if(D){this.setYTicks(this.initPageY,D);
29
+ }this.constrainY=true;},resetConstraints:function(){if(this.initPageX||this.initPageX===0){var D=(this.maintainOffset)?this.lastPageX-this.initPageX:0;var C=(this.maintainOffset)?this.lastPageY-this.initPageY:0;this.setInitPosition(D,C);}else{this.setInitPosition();}if(this.constrainX){this.setXConstraint(this.leftConstraint,this.rightConstraint,this.xTickSize);}if(this.constrainY){this.setYConstraint(this.topConstraint,this.bottomConstraint,this.yTickSize);}},getTick:function(I,F){if(!F){return I;}else{if(F[0]>=I){return F[0];}else{for(var D=0,C=F.length;D<C;++D){var E=D+1;if(F[E]&&F[E]>=I){var H=I-F[D];var G=F[E]-I;return(G>H)?F[D]:F[E];}}return F[F.length-1];}}},toString:function(){return("DragDrop "+this.id);}};YAHOO.augment(YAHOO.util.DragDrop,YAHOO.util.EventProvider);})();YAHOO.util.DD=function(C,A,B){if(C){this.init(C,A,B);}};YAHOO.extend(YAHOO.util.DD,YAHOO.util.DragDrop,{scroll:true,autoOffset:function(C,B){var A=C-this.startPageX;var D=B-this.startPageY;this.setDelta(A,D);},setDelta:function(B,A){this.deltaX=B;this.deltaY=A;},setDragElPos:function(C,B){var A=this.getDragEl();this.alignElWithMouse(A,C,B);},alignElWithMouse:function(C,G,F){var E=this.getTargetCoord(G,F);if(!this.deltaSetXY){var H=[E.x,E.y];YAHOO.util.Dom.setXY(C,H);var D=parseInt(YAHOO.util.Dom.getStyle(C,"left"),10);var B=parseInt(YAHOO.util.Dom.getStyle(C,"top"),10);this.deltaSetXY=[D-E.x,B-E.y];}else{YAHOO.util.Dom.setStyle(C,"left",(E.x+this.deltaSetXY[0])+"px");YAHOO.util.Dom.setStyle(C,"top",(E.y+this.deltaSetXY[1])+"px");}this.cachePosition(E.x,E.y);var A=this;setTimeout(function(){A.autoScroll.call(A,E.x,E.y,C.offsetHeight,C.offsetWidth);},0);},cachePosition:function(B,A){if(B){this.lastPageX=B;this.lastPageY=A;}else{var C=YAHOO.util.Dom.getXY(this.getEl());this.lastPageX=C[0];this.lastPageY=C[1];}},autoScroll:function(J,I,E,K){if(this.scroll){var L=this.DDM.getClientHeight();var B=this.DDM.getClientWidth();var N=this.DDM.getScrollTop();var D=this.DDM.getScrollLeft();var H=E+I;var M=K+J;var G=(L+N-I-this.deltaY);var F=(B+D-J-this.deltaX);var C=40;var A=(document.all)?80:30;if(H>L&&G<C){window.scrollTo(D,N+A);}if(I<N&&N>0&&I-N<C){window.scrollTo(D,N-A);}if(M>B&&F<C){window.scrollTo(D+A,N);}if(J<D&&D>0&&J-D<C){window.scrollTo(D-A,N);}}},applyConfig:function(){YAHOO.util.DD.superclass.applyConfig.call(this);this.scroll=(this.config.scroll!==false);},b4MouseDown:function(A){this.setStartPosition();this.autoOffset(YAHOO.util.Event.getPageX(A),YAHOO.util.Event.getPageY(A));},b4Drag:function(A){this.setDragElPos(YAHOO.util.Event.getPageX(A),YAHOO.util.Event.getPageY(A));},toString:function(){return("DD "+this.id);}});YAHOO.util.DDProxy=function(C,A,B){if(C){this.init(C,A,B);this.initFrame();}};YAHOO.util.DDProxy.dragElId="ygddfdiv";YAHOO.extend(YAHOO.util.DDProxy,YAHOO.util.DD,{resizeFrame:true,centerFrame:false,createFrame:function(){var B=this,A=document.body;if(!A||!A.firstChild){setTimeout(function(){B.createFrame();},50);return;}var F=this.getDragEl(),E=YAHOO.util.Dom;if(!F){F=document.createElement("div");F.id=this.dragElId;var D=F.style;D.position="absolute";D.visibility="hidden";D.cursor="move";D.border="2px solid #aaa";D.zIndex=999;D.height="25px";D.width="25px";var C=document.createElement("div");E.setStyle(C,"height","100%");E.setStyle(C,"width","100%");E.setStyle(C,"background-color","#ccc");E.setStyle(C,"opacity","0");F.appendChild(C);A.insertBefore(F,A.firstChild);}},initFrame:function(){this.createFrame();},applyConfig:function(){YAHOO.util.DDProxy.superclass.applyConfig.call(this);this.resizeFrame=(this.config.resizeFrame!==false);this.centerFrame=(this.config.centerFrame);this.setDragElId(this.config.dragElId||YAHOO.util.DDProxy.dragElId);},showFrame:function(E,D){var C=this.getEl();var A=this.getDragEl();var B=A.style;this._resizeProxy();if(this.centerFrame){this.setDelta(Math.round(parseInt(B.width,10)/2),Math.round(parseInt(B.height,10)/2));}this.setDragElPos(E,D);YAHOO.util.Dom.setStyle(A,"visibility","visible");},_resizeProxy:function(){if(this.resizeFrame){var H=YAHOO.util.Dom;var B=this.getEl();var C=this.getDragEl();var G=parseInt(H.getStyle(C,"borderTopWidth"),10);var I=parseInt(H.getStyle(C,"borderRightWidth"),10);var F=parseInt(H.getStyle(C,"borderBottomWidth"),10);var D=parseInt(H.getStyle(C,"borderLeftWidth"),10);if(isNaN(G)){G=0;}if(isNaN(I)){I=0;}if(isNaN(F)){F=0;}if(isNaN(D)){D=0;}var E=Math.max(0,B.offsetWidth-I-D);var A=Math.max(0,B.offsetHeight-G-F);H.setStyle(C,"width",E+"px");H.setStyle(C,"height",A+"px");}},b4MouseDown:function(B){this.setStartPosition();var A=YAHOO.util.Event.getPageX(B);var C=YAHOO.util.Event.getPageY(B);this.autoOffset(A,C);},b4StartDrag:function(A,B){this.showFrame(A,B);},b4EndDrag:function(A){YAHOO.util.Dom.setStyle(this.getDragEl(),"visibility","hidden");},endDrag:function(D){var C=YAHOO.util.Dom;var B=this.getEl();var A=this.getDragEl();C.setStyle(A,"visibility","");C.setStyle(B,"visibility","hidden");YAHOO.util.DDM.moveToEl(B,A);C.setStyle(A,"visibility","hidden");C.setStyle(B,"visibility","");},toString:function(){return("DDProxy "+this.id);}});YAHOO.util.DDTarget=function(C,A,B){if(C){this.initTarget(C,A,B);}};YAHOO.extend(YAHOO.util.DDTarget,YAHOO.util.DragDrop,{toString:function(){return("DDTarget "+this.id);}});YAHOO.register("dragdrop",YAHOO.util.DragDropMgr,{version:"2.7.0",build:"1796"});/*
30
+ Copyright (c) 2009, Yahoo! Inc. All rights reserved.
31
+ Code licensed under the BSD License:
32
+ http://developer.yahoo.net/yui/license.txt
33
+ version: 2.7.0
34
+ */
35
+ (function(){var B=YAHOO.util.Dom.getXY,A=YAHOO.util.Event,D=Array.prototype.slice;function C(G,E,F,H){C.ANIM_AVAIL=(!YAHOO.lang.isUndefined(YAHOO.util.Anim));if(G){this.init(G,E,true);this.initSlider(H);this.initThumb(F);}}YAHOO.lang.augmentObject(C,{getHorizSlider:function(F,G,I,H,E){return new C(F,F,new YAHOO.widget.SliderThumb(G,F,I,H,0,0,E),"horiz");},getVertSlider:function(G,H,E,I,F){return new C(G,G,new YAHOO.widget.SliderThumb(H,G,0,0,E,I,F),"vert");},getSliderRegion:function(G,H,J,I,E,K,F){return new C(G,G,new YAHOO.widget.SliderThumb(H,G,J,I,E,K,F),"region");},SOURCE_UI_EVENT:1,SOURCE_SET_VALUE:2,SOURCE_KEY_EVENT:3,ANIM_AVAIL:false},true);YAHOO.extend(C,YAHOO.util.DragDrop,{_mouseDown:false,dragOnly:true,initSlider:function(E){this.type=E;this.createEvent("change",this);this.createEvent("slideStart",this);this.createEvent("slideEnd",this);this.isTarget=false;this.animate=C.ANIM_AVAIL;this.backgroundEnabled=true;this.tickPause=40;this.enableKeys=true;this.keyIncrement=20;this.moveComplete=true;this.animationDuration=0.2;this.SOURCE_UI_EVENT=1;this.SOURCE_SET_VALUE=2;this.valueChangeSource=0;this._silent=false;this.lastOffset=[0,0];},initThumb:function(F){var E=this;this.thumb=F;F.cacheBetweenDrags=true;if(F._isHoriz&&F.xTicks&&F.xTicks.length){this.tickPause=Math.round(360/F.xTicks.length);}else{if(F.yTicks&&F.yTicks.length){this.tickPause=Math.round(360/F.yTicks.length);}}F.onAvailable=function(){return E.setStartSliderState();};F.onMouseDown=function(){E._mouseDown=true;return E.focus();};F.startDrag=function(){E._slideStart();};F.onDrag=function(){E.fireEvents(true);};F.onMouseUp=function(){E.thumbMouseUp();};},onAvailable:function(){this._bindKeyEvents();},_bindKeyEvents:function(){A.on(this.id,"keydown",this.handleKeyDown,this,true);A.on(this.id,"keypress",this.handleKeyPress,this,true);},handleKeyPress:function(F){if(this.enableKeys){var E=A.getCharCode(F);switch(E){case 37:case 38:case 39:case 40:case 36:case 35:A.preventDefault(F);break;default:}}},handleKeyDown:function(J){if(this.enableKeys){var G=A.getCharCode(J),F=this.thumb,H=this.getXValue(),E=this.getYValue(),I=true;switch(G){case 37:H-=this.keyIncrement;break;case 38:E-=this.keyIncrement;break;case 39:H+=this.keyIncrement;break;case 40:E+=this.keyIncrement;break;case 36:H=F.leftConstraint;E=F.topConstraint;break;case 35:H=F.rightConstraint;E=F.bottomConstraint;break;default:I=false;}if(I){if(F._isRegion){this._setRegionValue(C.SOURCE_KEY_EVENT,H,E,true);}else{this._setValue(C.SOURCE_KEY_EVENT,(F._isHoriz?H:E),true);}A.stopEvent(J);}}},setStartSliderState:function(){this.setThumbCenterPoint();this.baselinePos=B(this.getEl());this.thumb.startOffset=this.thumb.getOffsetFromParent(this.baselinePos);if(this.thumb._isRegion){if(this.deferredSetRegionValue){this._setRegionValue.apply(this,this.deferredSetRegionValue);this.deferredSetRegionValue=null;}else{this.setRegionValue(0,0,true,true,true);}}else{if(this.deferredSetValue){this._setValue.apply(this,this.deferredSetValue);this.deferredSetValue=null;}else{this.setValue(0,true,true,true);}}},setThumbCenterPoint:function(){var E=this.thumb.getEl();if(E){this.thumbCenterPoint={x:parseInt(E.offsetWidth/2,10),y:parseInt(E.offsetHeight/2,10)};}},lock:function(){this.thumb.lock();this.locked=true;},unlock:function(){this.thumb.unlock();this.locked=false;},thumbMouseUp:function(){this._mouseDown=false;if(!this.isLocked()&&!this.moveComplete){this.endMove();}},onMouseUp:function(){this._mouseDown=false;if(this.backgroundEnabled&&!this.isLocked()&&!this.moveComplete){this.endMove();}},getThumb:function(){return this.thumb;},focus:function(){this.valueChangeSource=C.SOURCE_UI_EVENT;var E=this.getEl();if(E.focus){try{E.focus();}catch(F){}}this.verifyOffset();return !this.isLocked();},onChange:function(E,F){},onSlideStart:function(){},onSlideEnd:function(){},getValue:function(){return this.thumb.getValue();},getXValue:function(){return this.thumb.getXValue();},getYValue:function(){return this.thumb.getYValue();},setValue:function(){var E=D.call(arguments);E.unshift(C.SOURCE_SET_VALUE);return this._setValue.apply(this,E);},_setValue:function(I,L,G,H,E){var F=this.thumb,K,J;if(!F.available){this.deferredSetValue=arguments;return false;}if(this.isLocked()&&!H){return false;}if(isNaN(L)){return false;}if(F._isRegion){return false;}this._silent=E;this.valueChangeSource=I||C.SOURCE_SET_VALUE;F.lastOffset=[L,L];this.verifyOffset(true);this._slideStart();if(F._isHoriz){K=F.initPageX+L+this.thumbCenterPoint.x;this.moveThumb(K,F.initPageY,G);}else{J=F.initPageY+L+this.thumbCenterPoint.y;this.moveThumb(F.initPageX,J,G);}return true;},setRegionValue:function(){var E=D.call(arguments);E.unshift(C.SOURCE_SET_VALUE);return this._setRegionValue.apply(this,E);},_setRegionValue:function(F,J,H,I,G,K){var L=this.thumb,E,M;if(!L.available){this.deferredSetRegionValue=arguments;return false;}if(this.isLocked()&&!G){return false;}if(isNaN(J)){return false;}if(!L._isRegion){return false;}this._silent=K;this.valueChangeSource=F||C.SOURCE_SET_VALUE;L.lastOffset=[J,H];this.verifyOffset(true);this._slideStart();E=L.initPageX+J+this.thumbCenterPoint.x;M=L.initPageY+H+this.thumbCenterPoint.y;this.moveThumb(E,M,I);return true;},verifyOffset:function(F){var G=B(this.getEl()),E=this.thumb;if(!this.thumbCenterPoint||!this.thumbCenterPoint.x){this.setThumbCenterPoint();}if(G){if(G[0]!=this.baselinePos[0]||G[1]!=this.baselinePos[1]){this.setInitPosition();this.baselinePos=G;E.initPageX=this.initPageX+E.startOffset[0];E.initPageY=this.initPageY+E.startOffset[1];E.deltaSetXY=null;this.resetThumbConstraints();return false;}}return true;},moveThumb:function(K,J,I,G){var L=this.thumb,M=this,F,E,H;if(!L.available){return;}L.setDelta(this.thumbCenterPoint.x,this.thumbCenterPoint.y);E=L.getTargetCoord(K,J);F=[Math.round(E.x),Math.round(E.y)];if(this.animate&&L._graduated&&!I){this.lock();this.curCoord=B(this.thumb.getEl());this.curCoord=[Math.round(this.curCoord[0]),Math.round(this.curCoord[1])];setTimeout(function(){M.moveOneTick(F);
36
+ },this.tickPause);}else{if(this.animate&&C.ANIM_AVAIL&&!I){this.lock();H=new YAHOO.util.Motion(L.id,{points:{to:F}},this.animationDuration,YAHOO.util.Easing.easeOut);H.onComplete.subscribe(function(){M.unlock();if(!M._mouseDown){M.endMove();}});H.animate();}else{L.setDragElPos(K,J);if(!G&&!this._mouseDown){this.endMove();}}}},_slideStart:function(){if(!this._sliding){if(!this._silent){this.onSlideStart();this.fireEvent("slideStart");}this._sliding=true;}},_slideEnd:function(){if(this._sliding&&this.moveComplete){var E=this._silent;this._sliding=false;this._silent=false;this.moveComplete=false;if(!E){this.onSlideEnd();this.fireEvent("slideEnd");}}},moveOneTick:function(F){var H=this.thumb,G=this,I=null,E,J;if(H._isRegion){I=this._getNextX(this.curCoord,F);E=(I!==null)?I[0]:this.curCoord[0];I=this._getNextY(this.curCoord,F);J=(I!==null)?I[1]:this.curCoord[1];I=E!==this.curCoord[0]||J!==this.curCoord[1]?[E,J]:null;}else{if(H._isHoriz){I=this._getNextX(this.curCoord,F);}else{I=this._getNextY(this.curCoord,F);}}if(I){this.curCoord=I;this.thumb.alignElWithMouse(H.getEl(),I[0]+this.thumbCenterPoint.x,I[1]+this.thumbCenterPoint.y);if(!(I[0]==F[0]&&I[1]==F[1])){setTimeout(function(){G.moveOneTick(F);},this.tickPause);}else{this.unlock();if(!this._mouseDown){this.endMove();}}}else{this.unlock();if(!this._mouseDown){this.endMove();}}},_getNextX:function(E,F){var H=this.thumb,J,G=[],I=null;if(E[0]>F[0]){J=H.tickSize-this.thumbCenterPoint.x;G=H.getTargetCoord(E[0]-J,E[1]);I=[G.x,G.y];}else{if(E[0]<F[0]){J=H.tickSize+this.thumbCenterPoint.x;G=H.getTargetCoord(E[0]+J,E[1]);I=[G.x,G.y];}else{}}return I;},_getNextY:function(E,F){var H=this.thumb,J,G=[],I=null;if(E[1]>F[1]){J=H.tickSize-this.thumbCenterPoint.y;G=H.getTargetCoord(E[0],E[1]-J);I=[G.x,G.y];}else{if(E[1]<F[1]){J=H.tickSize+this.thumbCenterPoint.y;G=H.getTargetCoord(E[0],E[1]+J);I=[G.x,G.y];}else{}}return I;},b4MouseDown:function(E){if(!this.backgroundEnabled){return false;}this.thumb.autoOffset();this.resetThumbConstraints();},onMouseDown:function(F){if(!this.backgroundEnabled||this.isLocked()){return false;}this._mouseDown=true;var E=A.getPageX(F),G=A.getPageY(F);this.focus();this._slideStart();this.moveThumb(E,G);},onDrag:function(F){if(this.backgroundEnabled&&!this.isLocked()){var E=A.getPageX(F),G=A.getPageY(F);this.moveThumb(E,G,true,true);this.fireEvents();}},endMove:function(){this.unlock();this.fireEvents();this.moveComplete=true;this._slideEnd();},resetThumbConstraints:function(){var E=this.thumb;E.setXConstraint(E.leftConstraint,E.rightConstraint,E.xTickSize);E.setYConstraint(E.topConstraint,E.bottomConstraint,E.xTickSize);},fireEvents:function(G){var F=this.thumb,I,H,E;if(!G){F.cachePosition();}if(!this.isLocked()){if(F._isRegion){I=F.getXValue();H=F.getYValue();if(I!=this.previousX||H!=this.previousY){if(!this._silent){this.onChange(I,H);this.fireEvent("change",{x:I,y:H});}}this.previousX=I;this.previousY=H;}else{E=F.getValue();if(E!=this.previousVal){if(!this._silent){this.onChange(E);this.fireEvent("change",E);}}this.previousVal=E;}}},toString:function(){return("Slider ("+this.type+") "+this.id);}});YAHOO.lang.augmentProto(C,YAHOO.util.EventProvider);YAHOO.widget.Slider=C;})();YAHOO.widget.SliderThumb=function(G,B,E,D,A,F,C){if(G){YAHOO.widget.SliderThumb.superclass.constructor.call(this,G,B);this.parentElId=B;}this.isTarget=false;this.tickSize=C;this.maintainOffset=true;this.initSlider(E,D,A,F,C);this.scroll=false;};YAHOO.extend(YAHOO.widget.SliderThumb,YAHOO.util.DD,{startOffset:null,dragOnly:true,_isHoriz:false,_prevVal:0,_graduated:false,getOffsetFromParent0:function(C){var A=YAHOO.util.Dom.getXY(this.getEl()),B=C||YAHOO.util.Dom.getXY(this.parentElId);return[(A[0]-B[0]),(A[1]-B[1])];},getOffsetFromParent:function(H){var A=this.getEl(),E,I,F,B,K,D,C,J,G;if(!this.deltaOffset){I=YAHOO.util.Dom.getXY(A);F=H||YAHOO.util.Dom.getXY(this.parentElId);E=[(I[0]-F[0]),(I[1]-F[1])];B=parseInt(YAHOO.util.Dom.getStyle(A,"left"),10);K=parseInt(YAHOO.util.Dom.getStyle(A,"top"),10);D=B-E[0];C=K-E[1];if(isNaN(D)||isNaN(C)){}else{this.deltaOffset=[D,C];}}else{J=parseInt(YAHOO.util.Dom.getStyle(A,"left"),10);G=parseInt(YAHOO.util.Dom.getStyle(A,"top"),10);E=[J+this.deltaOffset[0],G+this.deltaOffset[1]];}return E;},initSlider:function(D,C,A,E,B){this.initLeft=D;this.initRight=C;this.initUp=A;this.initDown=E;this.setXConstraint(D,C,B);this.setYConstraint(A,E,B);if(B&&B>1){this._graduated=true;}this._isHoriz=(D||C);this._isVert=(A||E);this._isRegion=(this._isHoriz&&this._isVert);},clearTicks:function(){YAHOO.widget.SliderThumb.superclass.clearTicks.call(this);this.tickSize=0;this._graduated=false;},getValue:function(){return(this._isHoriz)?this.getXValue():this.getYValue();},getXValue:function(){if(!this.available){return 0;}var A=this.getOffsetFromParent();if(YAHOO.lang.isNumber(A[0])){this.lastOffset=A;return(A[0]-this.startOffset[0]);}else{return(this.lastOffset[0]-this.startOffset[0]);}},getYValue:function(){if(!this.available){return 0;}var A=this.getOffsetFromParent();if(YAHOO.lang.isNumber(A[1])){this.lastOffset=A;return(A[1]-this.startOffset[1]);}else{return(this.lastOffset[1]-this.startOffset[1]);}},toString:function(){return"SliderThumb "+this.id;},onChange:function(A,B){}});(function(){var A=YAHOO.util.Event,B=YAHOO.widget;function C(I,F,H,D){var G=this,J={min:false,max:false},E,K;this.minSlider=I;this.maxSlider=F;this.activeSlider=I;this.isHoriz=I.thumb._isHoriz;E=this.minSlider.thumb.onMouseDown;K=this.maxSlider.thumb.onMouseDown;this.minSlider.thumb.onMouseDown=function(){G.activeSlider=G.minSlider;E.apply(this,arguments);};this.maxSlider.thumb.onMouseDown=function(){G.activeSlider=G.maxSlider;K.apply(this,arguments);};this.minSlider.thumb.onAvailable=function(){I.setStartSliderState();J.min=true;if(J.max){G.fireEvent("ready",G);}};this.maxSlider.thumb.onAvailable=function(){F.setStartSliderState();J.max=true;if(J.min){G.fireEvent("ready",G);}};I.onMouseDown=F.onMouseDown=function(L){return this.backgroundEnabled&&G._handleMouseDown(L);
37
+ };I.onDrag=F.onDrag=function(L){G._handleDrag(L);};I.onMouseUp=F.onMouseUp=function(L){G._handleMouseUp(L);};I._bindKeyEvents=function(){G._bindKeyEvents(this);};F._bindKeyEvents=function(){};I.subscribe("change",this._handleMinChange,I,this);I.subscribe("slideStart",this._handleSlideStart,I,this);I.subscribe("slideEnd",this._handleSlideEnd,I,this);F.subscribe("change",this._handleMaxChange,F,this);F.subscribe("slideStart",this._handleSlideStart,F,this);F.subscribe("slideEnd",this._handleSlideEnd,F,this);this.createEvent("ready",this);this.createEvent("change",this);this.createEvent("slideStart",this);this.createEvent("slideEnd",this);D=YAHOO.lang.isArray(D)?D:[0,H];D[0]=Math.min(Math.max(parseInt(D[0],10)|0,0),H);D[1]=Math.max(Math.min(parseInt(D[1],10)|0,H),0);if(D[0]>D[1]){D.splice(0,2,D[1],D[0]);}this.minVal=D[0];this.maxVal=D[1];this.minSlider.setValue(this.minVal,true,true,true);this.maxSlider.setValue(this.maxVal,true,true,true);}C.prototype={minVal:-1,maxVal:-1,minRange:0,_handleSlideStart:function(E,D){this.fireEvent("slideStart",D);},_handleSlideEnd:function(E,D){this.fireEvent("slideEnd",D);},_handleDrag:function(D){B.Slider.prototype.onDrag.call(this.activeSlider,D);},_handleMinChange:function(){this.activeSlider=this.minSlider;this.updateValue();},_handleMaxChange:function(){this.activeSlider=this.maxSlider;this.updateValue();},_bindKeyEvents:function(D){A.on(D.id,"keydown",this._handleKeyDown,this,true);A.on(D.id,"keypress",this._handleKeyPress,this,true);},_handleKeyDown:function(D){this.activeSlider.handleKeyDown.apply(this.activeSlider,arguments);},_handleKeyPress:function(D){this.activeSlider.handleKeyPress.apply(this.activeSlider,arguments);},setValues:function(H,K,I,E,J){var F=this.minSlider,M=this.maxSlider,D=F.thumb,L=M.thumb,N=this,G={min:false,max:false};if(D._isHoriz){D.setXConstraint(D.leftConstraint,L.rightConstraint,D.tickSize);L.setXConstraint(D.leftConstraint,L.rightConstraint,L.tickSize);}else{D.setYConstraint(D.topConstraint,L.bottomConstraint,D.tickSize);L.setYConstraint(D.topConstraint,L.bottomConstraint,L.tickSize);}this._oneTimeCallback(F,"slideEnd",function(){G.min=true;if(G.max){N.updateValue(J);setTimeout(function(){N._cleanEvent(F,"slideEnd");N._cleanEvent(M,"slideEnd");},0);}});this._oneTimeCallback(M,"slideEnd",function(){G.max=true;if(G.min){N.updateValue(J);setTimeout(function(){N._cleanEvent(F,"slideEnd");N._cleanEvent(M,"slideEnd");},0);}});F.setValue(H,I,E,false);M.setValue(K,I,E,false);},setMinValue:function(F,H,I,E){var G=this.minSlider,D=this;this.activeSlider=G;D=this;this._oneTimeCallback(G,"slideEnd",function(){D.updateValue(E);setTimeout(function(){D._cleanEvent(G,"slideEnd");},0);});G.setValue(F,H,I);},setMaxValue:function(D,H,I,F){var G=this.maxSlider,E=this;this.activeSlider=G;this._oneTimeCallback(G,"slideEnd",function(){E.updateValue(F);setTimeout(function(){E._cleanEvent(G,"slideEnd");},0);});G.setValue(D,H,I);},updateValue:function(J){var E=this.minSlider.getValue(),K=this.maxSlider.getValue(),F=false,D,M,H,I,L,G;if(E!=this.minVal||K!=this.maxVal){F=true;D=this.minSlider.thumb;M=this.maxSlider.thumb;H=this.isHoriz?"x":"y";G=this.minSlider.thumbCenterPoint[H]+this.maxSlider.thumbCenterPoint[H];I=Math.max(K-G-this.minRange,0);L=Math.min(-E-G-this.minRange,0);if(this.isHoriz){I=Math.min(I,M.rightConstraint);D.setXConstraint(D.leftConstraint,I,D.tickSize);M.setXConstraint(L,M.rightConstraint,M.tickSize);}else{I=Math.min(I,M.bottomConstraint);D.setYConstraint(D.leftConstraint,I,D.tickSize);M.setYConstraint(L,M.bottomConstraint,M.tickSize);}}this.minVal=E;this.maxVal=K;if(F&&!J){this.fireEvent("change",this);}},selectActiveSlider:function(H){var E=this.minSlider,D=this.maxSlider,J=E.isLocked()||!E.backgroundEnabled,G=D.isLocked()||!E.backgroundEnabled,F=YAHOO.util.Event,I;if(J||G){this.activeSlider=J?D:E;}else{if(this.isHoriz){I=F.getPageX(H)-E.thumb.initPageX-E.thumbCenterPoint.x;}else{I=F.getPageY(H)-E.thumb.initPageY-E.thumbCenterPoint.y;}this.activeSlider=I*2>D.getValue()+E.getValue()?D:E;}},_handleMouseDown:function(D){if(!D._handled){D._handled=true;this.selectActiveSlider(D);return B.Slider.prototype.onMouseDown.call(this.activeSlider,D);}else{return false;}},_handleMouseUp:function(D){B.Slider.prototype.onMouseUp.apply(this.activeSlider,arguments);},_oneTimeCallback:function(F,D,E){F.subscribe(D,function(){F.unsubscribe(D,arguments.callee);E.apply({},[].slice.apply(arguments));});},_cleanEvent:function(K,E){var J,I,D,G,H,F;if(K.__yui_events&&K.events[E]){for(I=K.__yui_events.length;I>=0;--I){if(K.__yui_events[I].type===E){J=K.__yui_events[I];break;}}if(J){H=J.subscribers;F=[];G=0;for(I=0,D=H.length;I<D;++I){if(H[I]){F[G++]=H[I];}}J.subscribers=F;}}}};YAHOO.lang.augmentProto(C,YAHOO.util.EventProvider);B.Slider.getHorizDualSlider=function(H,J,K,G,F,D){var I=new B.SliderThumb(J,H,0,G,0,0,F),E=new B.SliderThumb(K,H,0,G,0,0,F);return new C(new B.Slider(H,H,I,"horiz"),new B.Slider(H,H,E,"horiz"),G,D);};B.Slider.getVertDualSlider=function(H,J,K,G,F,D){var I=new B.SliderThumb(J,H,0,0,0,G,F),E=new B.SliderThumb(K,H,0,0,0,G,F);return new B.DualSlider(new B.Slider(H,H,I,"vert"),new B.Slider(H,H,E,"vert"),G,D);};YAHOO.widget.DualSlider=C;})();YAHOO.register("slider",YAHOO.widget.Slider,{version:"2.7.0",build:"1796"});/*
38
+ Copyright (c) 2009, Yahoo! Inc. All rights reserved.
39
+ Code licensed under the BSD License:
40
+ http://developer.yahoo.net/yui/license.txt
41
+ version: 2.7.0
42
+ */
43
+ YAHOO.util.Attribute=function(B,A){if(A){this.owner=A;this.configure(B,true);}};YAHOO.util.Attribute.prototype={name:undefined,value:null,owner:null,readOnly:false,writeOnce:false,_initialConfig:null,_written:false,method:null,setter:null,getter:null,validator:null,getValue:function(){var A=this.value;if(this.getter){A=this.getter.call(this.owner,this.name);}return A;},setValue:function(F,B){var E,A=this.owner,C=this.name;var D={type:C,prevValue:this.getValue(),newValue:F};if(this.readOnly||(this.writeOnce&&this._written)){return false;}if(this.validator&&!this.validator.call(A,F)){return false;}if(!B){E=A.fireBeforeChangeEvent(D);if(E===false){return false;}}if(this.setter){F=this.setter.call(A,F,this.name);if(F===undefined){}}if(this.method){this.method.call(A,F,this.name);}this.value=F;this._written=true;D.type=C;if(!B){this.owner.fireChangeEvent(D);}return true;},configure:function(B,C){B=B||{};if(C){this._written=false;}this._initialConfig=this._initialConfig||{};for(var A in B){if(B.hasOwnProperty(A)){this[A]=B[A];if(C){this._initialConfig[A]=B[A];}}}},resetValue:function(){return this.setValue(this._initialConfig.value);},resetConfig:function(){this.configure(this._initialConfig,true);},refresh:function(A){this.setValue(this.value,A);}};(function(){var A=YAHOO.util.Lang;YAHOO.util.AttributeProvider=function(){};YAHOO.util.AttributeProvider.prototype={_configs:null,get:function(C){this._configs=this._configs||{};var B=this._configs[C];if(!B||!this._configs.hasOwnProperty(C)){return null;}return B.getValue();},set:function(D,E,B){this._configs=this._configs||{};var C=this._configs[D];if(!C){return false;}return C.setValue(E,B);},getAttributeKeys:function(){this._configs=this._configs;var C=[],B;for(B in this._configs){if(A.hasOwnProperty(this._configs,B)&&!A.isUndefined(this._configs[B])){C[C.length]=B;}}return C;},setAttributes:function(D,B){for(var C in D){if(A.hasOwnProperty(D,C)){this.set(C,D[C],B);}}},resetValue:function(C,B){this._configs=this._configs||{};if(this._configs[C]){this.set(C,this._configs[C]._initialConfig.value,B);return true;}return false;},refresh:function(E,C){this._configs=this._configs||{};var F=this._configs;E=((A.isString(E))?[E]:E)||this.getAttributeKeys();for(var D=0,B=E.length;D<B;++D){if(F.hasOwnProperty(E[D])){this._configs[E[D]].refresh(C);}}},register:function(B,C){this.setAttributeConfig(B,C);},getAttributeConfig:function(C){this._configs=this._configs||{};var B=this._configs[C]||{};var D={};for(C in B){if(A.hasOwnProperty(B,C)){D[C]=B[C];}}return D;},setAttributeConfig:function(B,C,D){this._configs=this._configs||{};C=C||{};if(!this._configs[B]){C.name=B;this._configs[B]=this.createAttribute(C);}else{this._configs[B].configure(C,D);}},configureAttribute:function(B,C,D){this.setAttributeConfig(B,C,D);},resetAttributeConfig:function(B){this._configs=this._configs||{};this._configs[B].resetConfig();},subscribe:function(B,C){this._events=this._events||{};if(!(B in this._events)){this._events[B]=this.createEvent(B);}YAHOO.util.EventProvider.prototype.subscribe.apply(this,arguments);},on:function(){this.subscribe.apply(this,arguments);},addListener:function(){this.subscribe.apply(this,arguments);},fireBeforeChangeEvent:function(C){var B="before";B+=C.type.charAt(0).toUpperCase()+C.type.substr(1)+"Change";C.type=B;return this.fireEvent(C.type,C);},fireChangeEvent:function(B){B.type+="Change";return this.fireEvent(B.type,B);},createAttribute:function(B){return new YAHOO.util.Attribute(B,this);}};YAHOO.augment(YAHOO.util.AttributeProvider,YAHOO.util.EventProvider);})();(function(){var B=YAHOO.util.Dom,C=YAHOO.util.AttributeProvider;var A=function(D,E){this.init.apply(this,arguments);};A.DOM_EVENTS={"click":true,"dblclick":true,"keydown":true,"keypress":true,"keyup":true,"mousedown":true,"mousemove":true,"mouseout":true,"mouseover":true,"mouseup":true,"focus":true,"blur":true,"submit":true,"change":true};A.prototype={DOM_EVENTS:null,DEFAULT_HTML_SETTER:function(F,D){var E=this.get("element");if(E){E[D]=F;}},DEFAULT_HTML_GETTER:function(D){var E=this.get("element"),F;if(E){F=E[D];}return F;},appendChild:function(D){D=D.get?D.get("element"):D;return this.get("element").appendChild(D);},getElementsByTagName:function(D){return this.get("element").getElementsByTagName(D);},hasChildNodes:function(){return this.get("element").hasChildNodes();},insertBefore:function(D,E){D=D.get?D.get("element"):D;E=(E&&E.get)?E.get("element"):E;return this.get("element").insertBefore(D,E);},removeChild:function(D){D=D.get?D.get("element"):D;return this.get("element").removeChild(D);},replaceChild:function(D,E){D=D.get?D.get("element"):D;E=E.get?E.get("element"):E;return this.get("element").replaceChild(D,E);},initAttributes:function(D){},addListener:function(H,G,I,F){var E=this.get("element")||this.get("id");F=F||this;var D=this;if(!this._events[H]){if(E&&this.DOM_EVENTS[H]){YAHOO.util.Event.addListener(E,H,function(J){if(J.srcElement&&!J.target){J.target=J.srcElement;}D.fireEvent(H,J);},I,F);}this.createEvent(H,this);}return YAHOO.util.EventProvider.prototype.subscribe.apply(this,arguments);},on:function(){return this.addListener.apply(this,arguments);},subscribe:function(){return this.addListener.apply(this,arguments);},removeListener:function(E,D){return this.unsubscribe.apply(this,arguments);},addClass:function(D){B.addClass(this.get("element"),D);},getElementsByClassName:function(E,D){return B.getElementsByClassName(E,D,this.get("element"));},hasClass:function(D){return B.hasClass(this.get("element"),D);},removeClass:function(D){return B.removeClass(this.get("element"),D);},replaceClass:function(E,D){return B.replaceClass(this.get("element"),E,D);},setStyle:function(E,D){return B.setStyle(this.get("element"),E,D);},getStyle:function(D){return B.getStyle(this.get("element"),D);},fireQueue:function(){var E=this._queue;for(var F=0,D=E.length;F<D;++F){this[E[F][0]].apply(this,E[F][1]);}},appendTo:function(E,F){E=(E.get)?E.get("element"):B.get(E);this.fireEvent("beforeAppendTo",{type:"beforeAppendTo",target:E});
44
+ F=(F&&F.get)?F.get("element"):B.get(F);var D=this.get("element");if(!D){return false;}if(!E){return false;}if(D.parent!=E){if(F){E.insertBefore(D,F);}else{E.appendChild(D);}}this.fireEvent("appendTo",{type:"appendTo",target:E});return D;},get:function(D){var F=this._configs||{},E=F.element;if(E&&!F[D]&&!YAHOO.lang.isUndefined(E.value[D])){this._setHTMLAttrConfig(D);}return C.prototype.get.call(this,D);},setAttributes:function(J,G){var E={},H=this._configOrder;for(var I=0,D=H.length;I<D;++I){if(J[H[I]]!==undefined){E[H[I]]=true;this.set(H[I],J[H[I]],G);}}for(var F in J){if(J.hasOwnProperty(F)&&!E[F]){this.set(F,J[F],G);}}},set:function(E,G,D){var F=this.get("element");if(!F){this._queue[this._queue.length]=["set",arguments];if(this._configs[E]){this._configs[E].value=G;}return;}if(!this._configs[E]&&!YAHOO.lang.isUndefined(F[E])){this._setHTMLAttrConfig(E);}return C.prototype.set.apply(this,arguments);},setAttributeConfig:function(D,E,F){this._configOrder.push(D);C.prototype.setAttributeConfig.apply(this,arguments);},createEvent:function(E,D){this._events[E]=true;return C.prototype.createEvent.apply(this,arguments);},init:function(E,D){this._initElement(E,D);},destroy:function(){var D=this.get("element");YAHOO.util.Event.purgeElement(D,true);this.unsubscribeAll();if(D&&D.parentNode){D.parentNode.removeChild(D);}this._queue=[];this._events={};this._configs={};this._configOrder=[];},_initElement:function(F,E){this._queue=this._queue||[];this._events=this._events||{};this._configs=this._configs||{};this._configOrder=[];E=E||{};E.element=E.element||F||null;var H=false;var D=A.DOM_EVENTS;this.DOM_EVENTS=this.DOM_EVENTS||{};for(var G in D){if(D.hasOwnProperty(G)){this.DOM_EVENTS[G]=D[G];}}if(typeof E.element==="string"){this._setHTMLAttrConfig("id",{value:E.element});}if(B.get(E.element)){H=true;this._initHTMLElement(E);this._initContent(E);}YAHOO.util.Event.onAvailable(E.element,function(){if(!H){this._initHTMLElement(E);}this.fireEvent("available",{type:"available",target:B.get(E.element)});},this,true);YAHOO.util.Event.onContentReady(E.element,function(){if(!H){this._initContent(E);}this.fireEvent("contentReady",{type:"contentReady",target:B.get(E.element)});},this,true);},_initHTMLElement:function(D){this.setAttributeConfig("element",{value:B.get(D.element),readOnly:true});},_initContent:function(D){this.initAttributes(D);this.setAttributes(D,true);this.fireQueue();},_setHTMLAttrConfig:function(D,F){var E=this.get("element");F=F||{};F.name=D;F.setter=F.setter||this.DEFAULT_HTML_SETTER;F.getter=F.getter||this.DEFAULT_HTML_GETTER;F.value=F.value||E[D];this._configs[D]=new YAHOO.util.Attribute(F,this);}};YAHOO.augment(A,C);YAHOO.util.Element=A;})();YAHOO.register("element",YAHOO.util.Element,{version:"2.7.0",build:"1796"});/*
45
+ Copyright (c) 2009, Yahoo! Inc. All rights reserved.
46
+ Code licensed under the BSD License:
47
+ http://developer.yahoo.net/yui/license.txt
48
+ version: 2.7.0
49
+ */
50
+ YAHOO.util.Color=function(){var A="0",B=YAHOO.lang.isArray,C=YAHOO.lang.isNumber;return{real2dec:function(D){return Math.min(255,Math.round(D*256));},hsv2rgb:function(H,O,M){if(B(H)){return this.hsv2rgb.call(this,H[0],H[1],H[2]);}var D,I,L,G=Math.floor((H/60)%6),J=(H/60)-G,F=M*(1-O),E=M*(1-J*O),N=M*(1-(1-J)*O),K;switch(G){case 0:D=M;I=N;L=F;break;case 1:D=E;I=M;L=F;break;case 2:D=F;I=M;L=N;break;case 3:D=F;I=E;L=M;break;case 4:D=N;I=F;L=M;break;case 5:D=M;I=F;L=E;break;}K=this.real2dec;return[K(D),K(I),K(L)];},rgb2hsv:function(D,H,I){if(B(D)){return this.rgb2hsv.apply(this,D);}D/=255;H/=255;I/=255;var G,L,E=Math.min(Math.min(D,H),I),J=Math.max(Math.max(D,H),I),K=J-E,F;switch(J){case E:G=0;break;case D:G=60*(H-I)/K;if(H<I){G+=360;}break;case H:G=(60*(I-D)/K)+120;break;case I:G=(60*(D-H)/K)+240;break;}L=(J===0)?0:1-(E/J);F=[Math.round(G),L,J];return F;},rgb2hex:function(F,E,D){if(B(F)){return this.rgb2hex.apply(this,F);}var G=this.dec2hex;return G(F)+G(E)+G(D);},dec2hex:function(D){D=parseInt(D,10)|0;D=(D>255||D<0)?0:D;return(A+D.toString(16)).slice(-2).toUpperCase();},hex2dec:function(D){return parseInt(D,16);},hex2rgb:function(D){var E=this.hex2dec;return[E(D.slice(0,2)),E(D.slice(2,4)),E(D.slice(4,6))];},websafe:function(F,E,D){if(B(F)){return this.websafe.apply(this,F);}var G=function(H){if(C(H)){H=Math.min(Math.max(0,H),255);var I,J;for(I=0;I<256;I=I+51){J=I+51;if(H>=I&&H<=J){return(H-I>25)?J:I;}}}return H;};return[G(F),G(E),G(D)];}};}();(function(){var J=0,F=YAHOO.util,C=YAHOO.lang,D=YAHOO.widget.Slider,B=F.Color,E=F.Dom,I=F.Event,A=C.substitute,H="yui-picker";function G(L,K){J=J+1;K=K||{};if(arguments.length===1&&!YAHOO.lang.isString(L)&&!L.nodeName){K=L;L=K.element||null;}if(!L&&!K.element){L=this._createHostElement(K);}G.superclass.constructor.call(this,L,K);this.initPicker();}YAHOO.extend(G,YAHOO.util.Element,{ID:{R:H+"-r",R_HEX:H+"-rhex",G:H+"-g",G_HEX:H+"-ghex",B:H+"-b",B_HEX:H+"-bhex",H:H+"-h",S:H+"-s",V:H+"-v",PICKER_BG:H+"-bg",PICKER_THUMB:H+"-thumb",HUE_BG:H+"-hue-bg",HUE_THUMB:H+"-hue-thumb",HEX:H+"-hex",SWATCH:H+"-swatch",WEBSAFE_SWATCH:H+"-websafe-swatch",CONTROLS:H+"-controls",RGB_CONTROLS:H+"-rgb-controls",HSV_CONTROLS:H+"-hsv-controls",HEX_CONTROLS:H+"-hex-controls",HEX_SUMMARY:H+"-hex-summary",CONTROLS_LABEL:H+"-controls-label"},TXT:{ILLEGAL_HEX:"Illegal hex value entered",SHOW_CONTROLS:"Show color details",HIDE_CONTROLS:"Hide color details",CURRENT_COLOR:"Currently selected color: {rgb}",CLOSEST_WEBSAFE:"Closest websafe color: {rgb}. Click to select.",R:"R",G:"G",B:"B",H:"H",S:"S",V:"V",HEX:"#",DEG:"\u00B0",PERCENT:"%"},IMAGE:{PICKER_THUMB:"../../build/colorpicker/assets/picker_thumb.png",HUE_THUMB:"../../build/colorpicker/assets/hue_thumb.png"},DEFAULT:{PICKER_SIZE:180},OPT:{HUE:"hue",SATURATION:"saturation",VALUE:"value",RED:"red",GREEN:"green",BLUE:"blue",HSV:"hsv",RGB:"rgb",WEBSAFE:"websafe",HEX:"hex",PICKER_SIZE:"pickersize",SHOW_CONTROLS:"showcontrols",SHOW_RGB_CONTROLS:"showrgbcontrols",SHOW_HSV_CONTROLS:"showhsvcontrols",SHOW_HEX_CONTROLS:"showhexcontrols",SHOW_HEX_SUMMARY:"showhexsummary",SHOW_WEBSAFE:"showwebsafe",CONTAINER:"container",IDS:"ids",ELEMENTS:"elements",TXT:"txt",IMAGES:"images",ANIMATE:"animate"},skipAnim:true,_createHostElement:function(){var K=document.createElement("div");if(this.CSS.BASE){K.className=this.CSS.BASE;}return K;},_updateHueSlider:function(){var K=this.get(this.OPT.PICKER_SIZE),L=this.get(this.OPT.HUE);L=K-Math.round(L/360*K);if(L===K){L=0;}this.hueSlider.setValue(L,this.skipAnim);},_updatePickerSlider:function(){var L=this.get(this.OPT.PICKER_SIZE),M=this.get(this.OPT.SATURATION),K=this.get(this.OPT.VALUE);M=Math.round(M*L/100);K=Math.round(L-(K*L/100));this.pickerSlider.setRegionValue(M,K,this.skipAnim);},_updateSliders:function(){this._updateHueSlider();this._updatePickerSlider();},setValue:function(L,K){K=(K)||false;this.set(this.OPT.RGB,L,K);this._updateSliders();},hueSlider:null,pickerSlider:null,_getH:function(){var K=this.get(this.OPT.PICKER_SIZE),L=(K-this.hueSlider.getValue())/K;L=Math.round(L*360);return(L===360)?0:L;},_getS:function(){return this.pickerSlider.getXValue()/this.get(this.OPT.PICKER_SIZE);},_getV:function(){var K=this.get(this.OPT.PICKER_SIZE);return(K-this.pickerSlider.getYValue())/K;},_updateSwatch:function(){var M=this.get(this.OPT.RGB),O=this.get(this.OPT.WEBSAFE),N=this.getElement(this.ID.SWATCH),L=M.join(","),K=this.get(this.OPT.TXT);E.setStyle(N,"background-color","rgb("+L+")");N.title=A(K.CURRENT_COLOR,{"rgb":"#"+this.get(this.OPT.HEX)});N=this.getElement(this.ID.WEBSAFE_SWATCH);L=O.join(",");E.setStyle(N,"background-color","rgb("+L+")");N.title=A(K.CLOSEST_WEBSAFE,{"rgb":"#"+B.rgb2hex(O)});},_getValuesFromSliders:function(){this.set(this.OPT.RGB,B.hsv2rgb(this._getH(),this._getS(),this._getV()));},_updateFormFields:function(){this.getElement(this.ID.H).value=this.get(this.OPT.HUE);this.getElement(this.ID.S).value=this.get(this.OPT.SATURATION);this.getElement(this.ID.V).value=this.get(this.OPT.VALUE);this.getElement(this.ID.R).value=this.get(this.OPT.RED);this.getElement(this.ID.R_HEX).innerHTML=B.dec2hex(this.get(this.OPT.RED));this.getElement(this.ID.G).value=this.get(this.OPT.GREEN);this.getElement(this.ID.G_HEX).innerHTML=B.dec2hex(this.get(this.OPT.GREEN));this.getElement(this.ID.B).value=this.get(this.OPT.BLUE);this.getElement(this.ID.B_HEX).innerHTML=B.dec2hex(this.get(this.OPT.BLUE));this.getElement(this.ID.HEX).value=this.get(this.OPT.HEX);},_onHueSliderChange:function(N){var L=this._getH(),K=B.hsv2rgb(L,1,1),M="rgb("+K.join(",")+")";this.set(this.OPT.HUE,L,true);E.setStyle(this.getElement(this.ID.PICKER_BG),"background-color",M);if(this.hueSlider.valueChangeSource!==D.SOURCE_SET_VALUE){this._getValuesFromSliders();}this._updateFormFields();this._updateSwatch();},_onPickerSliderChange:function(M){var L=this._getS(),K=this._getV();this.set(this.OPT.SATURATION,Math.round(L*100),true);this.set(this.OPT.VALUE,Math.round(K*100),true);if(this.pickerSlider.valueChangeSource!==D.SOURCE_SET_VALUE){this._getValuesFromSliders();
51
+ }this._updateFormFields();this._updateSwatch();},_getCommand:function(K){var L=I.getCharCode(K);if(L===38){return 3;}else{if(L===13){return 6;}else{if(L===40){return 4;}else{if(L>=48&&L<=57){return 1;}else{if(L>=97&&L<=102){return 2;}else{if(L>=65&&L<=70){return 2;}else{if("8, 9, 13, 27, 37, 39".indexOf(L)>-1||K.ctrlKey||K.metaKey){return 5;}else{return 0;}}}}}}}},_useFieldValue:function(L,K,N){var M=K.value;if(N!==this.OPT.HEX){M=parseInt(M,10);}if(M!==this.get(N)){this.set(N,M);}},_rgbFieldKeypress:function(M,K,O){var N=this._getCommand(M),L=(M.shiftKey)?10:1;switch(N){case 6:this._useFieldValue.apply(this,arguments);break;case 3:this.set(O,Math.min(this.get(O)+L,255));this._updateFormFields();break;case 4:this.set(O,Math.max(this.get(O)-L,0));this._updateFormFields();break;default:}},_hexFieldKeypress:function(L,K,N){var M=this._getCommand(L);if(M===6){this._useFieldValue.apply(this,arguments);}},_hexOnly:function(L,K){var M=this._getCommand(L);switch(M){case 6:case 5:case 1:break;case 2:if(K!==true){break;}default:I.stopEvent(L);return false;}},_numbersOnly:function(K){return this._hexOnly(K,true);},getElement:function(K){return this.get(this.OPT.ELEMENTS)[this.get(this.OPT.IDS)[K]];},_createElements:function(){var N,M,P,O,L,K=this.get(this.OPT.IDS),Q=this.get(this.OPT.TXT),S=this.get(this.OPT.IMAGES),R=function(U,V){var W=document.createElement(U);if(V){C.augmentObject(W,V,true);}return W;},T=function(U,V){var W=C.merge({autocomplete:"off",value:"0",size:3,maxlength:3},V);W.name=W.id;return new R(U,W);};L=this.get("element");N=new R("div",{id:K[this.ID.PICKER_BG],className:"yui-picker-bg",tabIndex:-1,hideFocus:true});M=new R("div",{id:K[this.ID.PICKER_THUMB],className:"yui-picker-thumb"});P=new R("img",{src:S.PICKER_THUMB});M.appendChild(P);N.appendChild(M);L.appendChild(N);N=new R("div",{id:K[this.ID.HUE_BG],className:"yui-picker-hue-bg",tabIndex:-1,hideFocus:true});M=new R("div",{id:K[this.ID.HUE_THUMB],className:"yui-picker-hue-thumb"});P=new R("img",{src:S.HUE_THUMB});M.appendChild(P);N.appendChild(M);L.appendChild(N);N=new R("div",{id:K[this.ID.CONTROLS],className:"yui-picker-controls"});L.appendChild(N);L=N;N=new R("div",{className:"hd"});M=new R("a",{id:K[this.ID.CONTROLS_LABEL],href:"#"});N.appendChild(M);L.appendChild(N);N=new R("div",{className:"bd"});L.appendChild(N);L=N;N=new R("ul",{id:K[this.ID.RGB_CONTROLS],className:"yui-picker-rgb-controls"});M=new R("li");M.appendChild(document.createTextNode(Q.R+" "));O=new T("input",{id:K[this.ID.R],className:"yui-picker-r"});M.appendChild(O);N.appendChild(M);M=new R("li");M.appendChild(document.createTextNode(Q.G+" "));O=new T("input",{id:K[this.ID.G],className:"yui-picker-g"});M.appendChild(O);N.appendChild(M);M=new R("li");M.appendChild(document.createTextNode(Q.B+" "));O=new T("input",{id:K[this.ID.B],className:"yui-picker-b"});M.appendChild(O);N.appendChild(M);L.appendChild(N);N=new R("ul",{id:K[this.ID.HSV_CONTROLS],className:"yui-picker-hsv-controls"});M=new R("li");M.appendChild(document.createTextNode(Q.H+" "));O=new T("input",{id:K[this.ID.H],className:"yui-picker-h"});M.appendChild(O);M.appendChild(document.createTextNode(" "+Q.DEG));N.appendChild(M);M=new R("li");M.appendChild(document.createTextNode(Q.S+" "));O=new T("input",{id:K[this.ID.S],className:"yui-picker-s"});M.appendChild(O);M.appendChild(document.createTextNode(" "+Q.PERCENT));N.appendChild(M);M=new R("li");M.appendChild(document.createTextNode(Q.V+" "));O=new T("input",{id:K[this.ID.V],className:"yui-picker-v"});M.appendChild(O);M.appendChild(document.createTextNode(" "+Q.PERCENT));N.appendChild(M);L.appendChild(N);N=new R("ul",{id:K[this.ID.HEX_SUMMARY],className:"yui-picker-hex_summary"});M=new R("li",{id:K[this.ID.R_HEX]});N.appendChild(M);M=new R("li",{id:K[this.ID.G_HEX]});N.appendChild(M);M=new R("li",{id:K[this.ID.B_HEX]});N.appendChild(M);L.appendChild(N);N=new R("div",{id:K[this.ID.HEX_CONTROLS],className:"yui-picker-hex-controls"});N.appendChild(document.createTextNode(Q.HEX+" "));M=new T("input",{id:K[this.ID.HEX],className:"yui-picker-hex",size:6,maxlength:6});N.appendChild(M);L.appendChild(N);L=this.get("element");N=new R("div",{id:K[this.ID.SWATCH],className:"yui-picker-swatch"});L.appendChild(N);N=new R("div",{id:K[this.ID.WEBSAFE_SWATCH],className:"yui-picker-websafe-swatch"});L.appendChild(N);},_attachRGBHSV:function(L,K){I.on(this.getElement(L),"keydown",function(N,M){M._rgbFieldKeypress(N,this,K);},this);I.on(this.getElement(L),"keypress",this._numbersOnly,this,true);I.on(this.getElement(L),"blur",function(N,M){M._useFieldValue(N,this,K);},this);},_updateRGB:function(){var K=[this.get(this.OPT.RED),this.get(this.OPT.GREEN),this.get(this.OPT.BLUE)];this.set(this.OPT.RGB,K);this._updateSliders();},_initElements:function(){var O=this.OPT,N=this.get(O.IDS),L=this.get(O.ELEMENTS),K,M,P;for(K in this.ID){if(C.hasOwnProperty(this.ID,K)){N[this.ID[K]]=N[K];}}M=E.get(N[this.ID.PICKER_BG]);if(!M){this._createElements();}else{}for(K in N){if(C.hasOwnProperty(N,K)){M=E.get(N[K]);P=E.generateId(M);N[K]=P;N[N[K]]=P;L[P]=M;}}},initPicker:function(){this._initSliders();this._bindUI();this.syncUI(true);},_initSliders:function(){var K=this.ID,L=this.get(this.OPT.PICKER_SIZE);this.hueSlider=D.getVertSlider(this.getElement(K.HUE_BG),this.getElement(K.HUE_THUMB),0,L);this.pickerSlider=D.getSliderRegion(this.getElement(K.PICKER_BG),this.getElement(K.PICKER_THUMB),0,L,0,L);this.set(this.OPT.ANIMATE,this.get(this.OPT.ANIMATE));},_bindUI:function(){var K=this.ID,L=this.OPT;this.hueSlider.subscribe("change",this._onHueSliderChange,this,true);this.pickerSlider.subscribe("change",this._onPickerSliderChange,this,true);I.on(this.getElement(K.WEBSAFE_SWATCH),"click",function(M){this.setValue(this.get(L.WEBSAFE));},this,true);I.on(this.getElement(K.CONTROLS_LABEL),"click",function(M){this.set(L.SHOW_CONTROLS,!this.get(L.SHOW_CONTROLS));I.preventDefault(M);},this,true);this._attachRGBHSV(K.R,L.RED);this._attachRGBHSV(K.G,L.GREEN);this._attachRGBHSV(K.B,L.BLUE);this._attachRGBHSV(K.H,L.HUE);
52
+ this._attachRGBHSV(K.S,L.SATURATION);this._attachRGBHSV(K.V,L.VALUE);I.on(this.getElement(K.HEX),"keydown",function(N,M){M._hexFieldKeypress(N,this,L.HEX);},this);I.on(this.getElement(this.ID.HEX),"keypress",this._hexOnly,this,true);I.on(this.getElement(this.ID.HEX),"blur",function(N,M){M._useFieldValue(N,this,L.HEX);},this);},syncUI:function(K){this.skipAnim=K;this._updateRGB();this.skipAnim=false;},_updateRGBFromHSV:function(){var L=[this.get(this.OPT.HUE),this.get(this.OPT.SATURATION)/100,this.get(this.OPT.VALUE)/100],K=B.hsv2rgb(L);this.set(this.OPT.RGB,K);this._updateSliders();},_updateHex:function(){var N=this.get(this.OPT.HEX),K=N.length,O,M,L;if(K===3){O=N.split("");for(M=0;M<K;M=M+1){O[M]=O[M]+O[M];}N=O.join("");}if(N.length!==6){return false;}L=B.hex2rgb(N);this.setValue(L);},_hideShowEl:function(M,K){var L=(C.isString(M)?this.getElement(M):M);E.setStyle(L,"display",(K)?"":"none");},initAttributes:function(K){K=K||{};G.superclass.initAttributes.call(this,K);this.setAttributeConfig(this.OPT.PICKER_SIZE,{value:K.size||this.DEFAULT.PICKER_SIZE});this.setAttributeConfig(this.OPT.HUE,{value:K.hue||0,validator:C.isNumber});this.setAttributeConfig(this.OPT.SATURATION,{value:K.saturation||0,validator:C.isNumber});this.setAttributeConfig(this.OPT.VALUE,{value:C.isNumber(K.value)?K.value:100,validator:C.isNumber});this.setAttributeConfig(this.OPT.RED,{value:C.isNumber(K.red)?K.red:255,validator:C.isNumber});this.setAttributeConfig(this.OPT.GREEN,{value:C.isNumber(K.green)?K.green:255,validator:C.isNumber});this.setAttributeConfig(this.OPT.BLUE,{value:C.isNumber(K.blue)?K.blue:255,validator:C.isNumber});this.setAttributeConfig(this.OPT.HEX,{value:K.hex||"FFFFFF",validator:C.isString});this.setAttributeConfig(this.OPT.RGB,{value:K.rgb||[255,255,255],method:function(O){this.set(this.OPT.RED,O[0],true);this.set(this.OPT.GREEN,O[1],true);this.set(this.OPT.BLUE,O[2],true);var Q=B.websafe(O),P=B.rgb2hex(O),N=B.rgb2hsv(O);this.set(this.OPT.WEBSAFE,Q,true);this.set(this.OPT.HEX,P,true);if(N[1]){this.set(this.OPT.HUE,N[0],true);}this.set(this.OPT.SATURATION,Math.round(N[1]*100),true);this.set(this.OPT.VALUE,Math.round(N[2]*100),true);},readonly:true});this.setAttributeConfig(this.OPT.CONTAINER,{value:null,method:function(N){if(N){N.showEvent.subscribe(function(){this.pickerSlider.focus();},this,true);}}});this.setAttributeConfig(this.OPT.WEBSAFE,{value:K.websafe||[255,255,255]});var M=K.ids||C.merge({},this.ID),L;if(!K.ids&&J>1){for(L in M){if(C.hasOwnProperty(M,L)){M[L]=M[L]+J;}}}this.setAttributeConfig(this.OPT.IDS,{value:M,writeonce:true});this.setAttributeConfig(this.OPT.TXT,{value:K.txt||this.TXT,writeonce:true});this.setAttributeConfig(this.OPT.IMAGES,{value:K.images||this.IMAGE,writeonce:true});this.setAttributeConfig(this.OPT.ELEMENTS,{value:{},readonly:true});this.setAttributeConfig(this.OPT.SHOW_CONTROLS,{value:C.isBoolean(K.showcontrols)?K.showcontrols:true,method:function(N){var O=E.getElementsByClassName("bd","div",this.getElement(this.ID.CONTROLS))[0];this._hideShowEl(O,N);this.getElement(this.ID.CONTROLS_LABEL).innerHTML=(N)?this.get(this.OPT.TXT).HIDE_CONTROLS:this.get(this.OPT.TXT).SHOW_CONTROLS;}});this.setAttributeConfig(this.OPT.SHOW_RGB_CONTROLS,{value:C.isBoolean(K.showrgbcontrols)?K.showrgbcontrols:true,method:function(N){this._hideShowEl(this.ID.RGB_CONTROLS,N);}});this.setAttributeConfig(this.OPT.SHOW_HSV_CONTROLS,{value:C.isBoolean(K.showhsvcontrols)?K.showhsvcontrols:false,method:function(N){this._hideShowEl(this.ID.HSV_CONTROLS,N);if(N&&this.get(this.OPT.SHOW_HEX_SUMMARY)){this.set(this.OPT.SHOW_HEX_SUMMARY,false);}}});this.setAttributeConfig(this.OPT.SHOW_HEX_CONTROLS,{value:C.isBoolean(K.showhexcontrols)?K.showhexcontrols:false,method:function(N){this._hideShowEl(this.ID.HEX_CONTROLS,N);}});this.setAttributeConfig(this.OPT.SHOW_WEBSAFE,{value:C.isBoolean(K.showwebsafe)?K.showwebsafe:true,method:function(N){this._hideShowEl(this.ID.WEBSAFE_SWATCH,N);}});this.setAttributeConfig(this.OPT.SHOW_HEX_SUMMARY,{value:C.isBoolean(K.showhexsummary)?K.showhexsummary:true,method:function(N){this._hideShowEl(this.ID.HEX_SUMMARY,N);if(N&&this.get(this.OPT.SHOW_HSV_CONTROLS)){this.set(this.OPT.SHOW_HSV_CONTROLS,false);}}});this.setAttributeConfig(this.OPT.ANIMATE,{value:C.isBoolean(K.animate)?K.animate:true,method:function(N){if(this.pickerSlider){this.pickerSlider.animate=N;this.hueSlider.animate=N;}}});this.on(this.OPT.HUE+"Change",this._updateRGBFromHSV,this,true);this.on(this.OPT.SATURATION+"Change",this._updateRGBFromHSV,this,true);this.on(this.OPT.VALUE+"Change",this._updateRGBFromHSV,this,true);this.on(this.OPT.RED+"Change",this._updateRGB,this,true);this.on(this.OPT.GREEN+"Change",this._updateRGB,this,true);this.on(this.OPT.BLUE+"Change",this._updateRGB,this,true);this.on(this.OPT.HEX+"Change",this._updateHex,this,true);this._initElements();}});YAHOO.widget.ColorPicker=G;})();YAHOO.register("colorpicker",YAHOO.widget.ColorPicker,{version:"2.7.0",build:"1796"});
53
+
54
+ /*
55
+ Copyright (c) 2009, Yahoo! Inc. All rights reserved.
56
+ Code licensed under the BSD License:
57
+ http://developer.yahoo.net/yui/license.txt
58
+ version: 2.7.0
59
+ */
60
+ (function(){var B=YAHOO.util;var A=function(D,C,E,F){if(!D){}this.init(D,C,E,F);};A.NAME="Anim";A.prototype={toString:function(){var C=this.getEl()||{};var D=C.id||C.tagName;return(this.constructor.NAME+": "+D);},patterns:{noNegatives:/width|height|opacity|padding/i,offsetAttribute:/^((width|height)|(top|left))$/,defaultUnit:/width|height|top$|bottom$|left$|right$/i,offsetUnit:/\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i},doMethod:function(C,E,D){return this.method(this.currentFrame,E,D-E,this.totalFrames);},setAttribute:function(C,F,E){var D=this.getEl();if(this.patterns.noNegatives.test(C)){F=(F>0)?F:0;}if("style" in D){B.Dom.setStyle(D,C,F+E);}else{if(C in D){D[C]=F;}}},getAttribute:function(C){var E=this.getEl();var G=B.Dom.getStyle(E,C);if(G!=="auto"&&!this.patterns.offsetUnit.test(G)){return parseFloat(G);}var D=this.patterns.offsetAttribute.exec(C)||[];var H=!!(D[3]);var F=!!(D[2]);if("style" in E){if(F||(B.Dom.getStyle(E,"position")=="absolute"&&H)){G=E["offset"+D[0].charAt(0).toUpperCase()+D[0].substr(1)];}else{G=0;}}else{if(C in E){G=E[C];}}return G;},getDefaultUnit:function(C){if(this.patterns.defaultUnit.test(C)){return"px";}return"";},setRuntimeAttribute:function(D){var I;var E;var F=this.attributes;this.runtimeAttributes[D]={};var H=function(J){return(typeof J!=="undefined");};if(!H(F[D]["to"])&&!H(F[D]["by"])){return false;}I=(H(F[D]["from"]))?F[D]["from"]:this.getAttribute(D);if(H(F[D]["to"])){E=F[D]["to"];}else{if(H(F[D]["by"])){if(I.constructor==Array){E=[];for(var G=0,C=I.length;G<C;++G){E[G]=I[G]+F[D]["by"][G]*1;}}else{E=I+F[D]["by"]*1;}}}this.runtimeAttributes[D].start=I;this.runtimeAttributes[D].end=E;this.runtimeAttributes[D].unit=(H(F[D].unit))?F[D]["unit"]:this.getDefaultUnit(D);return true;},init:function(E,J,I,C){var D=false;var F=null;var H=0;E=B.Dom.get(E);this.attributes=J||{};this.duration=!YAHOO.lang.isUndefined(I)?I:1;this.method=C||B.Easing.easeNone;this.useSeconds=true;this.currentFrame=0;this.totalFrames=B.AnimMgr.fps;this.setEl=function(M){E=B.Dom.get(M);};this.getEl=function(){return E;};this.isAnimated=function(){return D;};this.getStartTime=function(){return F;};this.runtimeAttributes={};this.animate=function(){if(this.isAnimated()){return false;}this.currentFrame=0;this.totalFrames=(this.useSeconds)?Math.ceil(B.AnimMgr.fps*this.duration):this.duration;if(this.duration===0&&this.useSeconds){this.totalFrames=1;}B.AnimMgr.registerElement(this);return true;};this.stop=function(M){if(!this.isAnimated()){return false;}if(M){this.currentFrame=this.totalFrames;this._onTween.fire();}B.AnimMgr.stop(this);};var L=function(){this.onStart.fire();this.runtimeAttributes={};for(var M in this.attributes){this.setRuntimeAttribute(M);}D=true;H=0;F=new Date();};var K=function(){var O={duration:new Date()-this.getStartTime(),currentFrame:this.currentFrame};O.toString=function(){return("duration: "+O.duration+", currentFrame: "+O.currentFrame);};this.onTween.fire(O);var N=this.runtimeAttributes;for(var M in N){this.setAttribute(M,this.doMethod(M,N[M].start,N[M].end),N[M].unit);}H+=1;};var G=function(){var M=(new Date()-F)/1000;var N={duration:M,frames:H,fps:H/M};N.toString=function(){return("duration: "+N.duration+", frames: "+N.frames+", fps: "+N.fps);};D=false;H=0;this.onComplete.fire(N);};this._onStart=new B.CustomEvent("_start",this,true);this.onStart=new B.CustomEvent("start",this);this.onTween=new B.CustomEvent("tween",this);this._onTween=new B.CustomEvent("_tween",this,true);this.onComplete=new B.CustomEvent("complete",this);this._onComplete=new B.CustomEvent("_complete",this,true);this._onStart.subscribe(L);this._onTween.subscribe(K);this._onComplete.subscribe(G);}};B.Anim=A;})();YAHOO.util.AnimMgr=new function(){var C=null;var B=[];var A=0;this.fps=1000;this.delay=1;this.registerElement=function(F){B[B.length]=F;A+=1;F._onStart.fire();this.start();};this.unRegister=function(G,F){F=F||E(G);if(!G.isAnimated()||F==-1){return false;}G._onComplete.fire();B.splice(F,1);A-=1;if(A<=0){this.stop();}return true;};this.start=function(){if(C===null){C=setInterval(this.run,this.delay);}};this.stop=function(H){if(!H){clearInterval(C);for(var G=0,F=B.length;G<F;++G){this.unRegister(B[0],0);}B=[];C=null;A=0;}else{this.unRegister(H);}};this.run=function(){for(var H=0,F=B.length;H<F;++H){var G=B[H];if(!G||!G.isAnimated()){continue;}if(G.currentFrame<G.totalFrames||G.totalFrames===null){G.currentFrame+=1;if(G.useSeconds){D(G);}G._onTween.fire();}else{YAHOO.util.AnimMgr.stop(G,H);}}};var E=function(H){for(var G=0,F=B.length;G<F;++G){if(B[G]==H){return G;}}return -1;};var D=function(G){var J=G.totalFrames;var I=G.currentFrame;var H=(G.currentFrame*G.duration*1000/G.totalFrames);var F=(new Date()-G.getStartTime());var K=0;if(F<G.duration*1000){K=Math.round((F/H-1)*G.currentFrame);}else{K=J-(I+1);}if(K>0&&isFinite(K)){if(G.currentFrame+K>=J){K=J-(I+1);}G.currentFrame+=K;}};};YAHOO.util.Bezier=new function(){this.getPosition=function(E,D){var F=E.length;var C=[];for(var B=0;B<F;++B){C[B]=[E[B][0],E[B][1]];}for(var A=1;A<F;++A){for(B=0;B<F-A;++B){C[B][0]=(1-D)*C[B][0]+D*C[parseInt(B+1,10)][0];C[B][1]=(1-D)*C[B][1]+D*C[parseInt(B+1,10)][1];}}return[C[0][0],C[0][1]];};};(function(){var A=function(F,E,G,H){A.superclass.constructor.call(this,F,E,G,H);};A.NAME="ColorAnim";A.DEFAULT_BGCOLOR="#fff";var C=YAHOO.util;YAHOO.extend(A,C.Anim);var D=A.superclass;var B=A.prototype;B.patterns.color=/color$/i;B.patterns.rgb=/^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;B.patterns.hex=/^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;B.patterns.hex3=/^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;B.patterns.transparent=/^transparent|rgba\(0, 0, 0, 0\)$/;B.parseColor=function(E){if(E.length==3){return E;}var F=this.patterns.hex.exec(E);if(F&&F.length==4){return[parseInt(F[1],16),parseInt(F[2],16),parseInt(F[3],16)];}F=this.patterns.rgb.exec(E);if(F&&F.length==4){return[parseInt(F[1],10),parseInt(F[2],10),parseInt(F[3],10)];}F=this.patterns.hex3.exec(E);if(F&&F.length==4){return[parseInt(F[1]+F[1],16),parseInt(F[2]+F[2],16),parseInt(F[3]+F[3],16)];
61
+ }return null;};B.getAttribute=function(E){var G=this.getEl();if(this.patterns.color.test(E)){var I=YAHOO.util.Dom.getStyle(G,E);var H=this;if(this.patterns.transparent.test(I)){var F=YAHOO.util.Dom.getAncestorBy(G,function(J){return !H.patterns.transparent.test(I);});if(F){I=C.Dom.getStyle(F,E);}else{I=A.DEFAULT_BGCOLOR;}}}else{I=D.getAttribute.call(this,E);}return I;};B.doMethod=function(F,J,G){var I;if(this.patterns.color.test(F)){I=[];for(var H=0,E=J.length;H<E;++H){I[H]=D.doMethod.call(this,F,J[H],G[H]);}I="rgb("+Math.floor(I[0])+","+Math.floor(I[1])+","+Math.floor(I[2])+")";}else{I=D.doMethod.call(this,F,J,G);}return I;};B.setRuntimeAttribute=function(F){D.setRuntimeAttribute.call(this,F);if(this.patterns.color.test(F)){var H=this.attributes;var J=this.parseColor(this.runtimeAttributes[F].start);var G=this.parseColor(this.runtimeAttributes[F].end);if(typeof H[F]["to"]==="undefined"&&typeof H[F]["by"]!=="undefined"){G=this.parseColor(H[F].by);for(var I=0,E=J.length;I<E;++I){G[I]=J[I]+G[I];}}this.runtimeAttributes[F].start=J;this.runtimeAttributes[F].end=G;}};C.ColorAnim=A;})();
62
+ /*
63
+ TERMS OF USE - EASING EQUATIONS
64
+ Open source under the BSD License.
65
+ Copyright 2001 Robert Penner All rights reserved.
66
+
67
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
68
+
69
+ * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
70
+ * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
71
+ * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.
72
+
73
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
74
+ */
75
+ YAHOO.util.Easing={easeNone:function(B,A,D,C){return D*B/C+A;},easeIn:function(B,A,D,C){return D*(B/=C)*B+A;},easeOut:function(B,A,D,C){return -D*(B/=C)*(B-2)+A;},easeBoth:function(B,A,D,C){if((B/=C/2)<1){return D/2*B*B+A;}return -D/2*((--B)*(B-2)-1)+A;},easeInStrong:function(B,A,D,C){return D*(B/=C)*B*B*B+A;},easeOutStrong:function(B,A,D,C){return -D*((B=B/C-1)*B*B*B-1)+A;},easeBothStrong:function(B,A,D,C){if((B/=C/2)<1){return D/2*B*B*B*B+A;}return -D/2*((B-=2)*B*B*B-2)+A;},elasticIn:function(C,A,G,F,B,E){if(C==0){return A;}if((C/=F)==1){return A+G;}if(!E){E=F*0.3;}if(!B||B<Math.abs(G)){B=G;var D=E/4;}else{var D=E/(2*Math.PI)*Math.asin(G/B);}return -(B*Math.pow(2,10*(C-=1))*Math.sin((C*F-D)*(2*Math.PI)/E))+A;},elasticOut:function(C,A,G,F,B,E){if(C==0){return A;}if((C/=F)==1){return A+G;}if(!E){E=F*0.3;}if(!B||B<Math.abs(G)){B=G;var D=E/4;}else{var D=E/(2*Math.PI)*Math.asin(G/B);}return B*Math.pow(2,-10*C)*Math.sin((C*F-D)*(2*Math.PI)/E)+G+A;},elasticBoth:function(C,A,G,F,B,E){if(C==0){return A;}if((C/=F/2)==2){return A+G;}if(!E){E=F*(0.3*1.5);}if(!B||B<Math.abs(G)){B=G;var D=E/4;}else{var D=E/(2*Math.PI)*Math.asin(G/B);}if(C<1){return -0.5*(B*Math.pow(2,10*(C-=1))*Math.sin((C*F-D)*(2*Math.PI)/E))+A;}return B*Math.pow(2,-10*(C-=1))*Math.sin((C*F-D)*(2*Math.PI)/E)*0.5+G+A;},backIn:function(B,A,E,D,C){if(typeof C=="undefined"){C=1.70158;}return E*(B/=D)*B*((C+1)*B-C)+A;},backOut:function(B,A,E,D,C){if(typeof C=="undefined"){C=1.70158;}return E*((B=B/D-1)*B*((C+1)*B+C)+1)+A;},backBoth:function(B,A,E,D,C){if(typeof C=="undefined"){C=1.70158;}if((B/=D/2)<1){return E/2*(B*B*(((C*=(1.525))+1)*B-C))+A;}return E/2*((B-=2)*B*(((C*=(1.525))+1)*B+C)+2)+A;},bounceIn:function(B,A,D,C){return D-YAHOO.util.Easing.bounceOut(C-B,0,D,C)+A;},bounceOut:function(B,A,D,C){if((B/=C)<(1/2.75)){return D*(7.5625*B*B)+A;}else{if(B<(2/2.75)){return D*(7.5625*(B-=(1.5/2.75))*B+0.75)+A;}else{if(B<(2.5/2.75)){return D*(7.5625*(B-=(2.25/2.75))*B+0.9375)+A;}}}return D*(7.5625*(B-=(2.625/2.75))*B+0.984375)+A;},bounceBoth:function(B,A,D,C){if(B<C/2){return YAHOO.util.Easing.bounceIn(B*2,0,D,C)*0.5+A;}return YAHOO.util.Easing.bounceOut(B*2-C,0,D,C)*0.5+D*0.5+A;}};(function(){var A=function(H,G,I,J){if(H){A.superclass.constructor.call(this,H,G,I,J);}};A.NAME="Motion";var E=YAHOO.util;YAHOO.extend(A,E.ColorAnim);var F=A.superclass;var C=A.prototype;C.patterns.points=/^points$/i;C.setAttribute=function(G,I,H){if(this.patterns.points.test(G)){H=H||"px";F.setAttribute.call(this,"left",I[0],H);F.setAttribute.call(this,"top",I[1],H);}else{F.setAttribute.call(this,G,I,H);}};C.getAttribute=function(G){if(this.patterns.points.test(G)){var H=[F.getAttribute.call(this,"left"),F.getAttribute.call(this,"top")];}else{H=F.getAttribute.call(this,G);}return H;};C.doMethod=function(G,K,H){var J=null;if(this.patterns.points.test(G)){var I=this.method(this.currentFrame,0,100,this.totalFrames)/100;J=E.Bezier.getPosition(this.runtimeAttributes[G],I);}else{J=F.doMethod.call(this,G,K,H);}return J;};C.setRuntimeAttribute=function(P){if(this.patterns.points.test(P)){var H=this.getEl();var J=this.attributes;var G;var L=J["points"]["control"]||[];var I;var M,O;if(L.length>0&&!(L[0] instanceof Array)){L=[L];}else{var K=[];for(M=0,O=L.length;M<O;++M){K[M]=L[M];}L=K;}if(E.Dom.getStyle(H,"position")=="static"){E.Dom.setStyle(H,"position","relative");}if(D(J["points"]["from"])){E.Dom.setXY(H,J["points"]["from"]);
76
+ }else{E.Dom.setXY(H,E.Dom.getXY(H));}G=this.getAttribute("points");if(D(J["points"]["to"])){I=B.call(this,J["points"]["to"],G);var N=E.Dom.getXY(this.getEl());for(M=0,O=L.length;M<O;++M){L[M]=B.call(this,L[M],G);}}else{if(D(J["points"]["by"])){I=[G[0]+J["points"]["by"][0],G[1]+J["points"]["by"][1]];for(M=0,O=L.length;M<O;++M){L[M]=[G[0]+L[M][0],G[1]+L[M][1]];}}}this.runtimeAttributes[P]=[G];if(L.length>0){this.runtimeAttributes[P]=this.runtimeAttributes[P].concat(L);}this.runtimeAttributes[P][this.runtimeAttributes[P].length]=I;}else{F.setRuntimeAttribute.call(this,P);}};var B=function(G,I){var H=E.Dom.getXY(this.getEl());G=[G[0]-H[0]+I[0],G[1]-H[1]+I[1]];return G;};var D=function(G){return(typeof G!=="undefined");};E.Motion=A;})();(function(){var D=function(F,E,G,H){if(F){D.superclass.constructor.call(this,F,E,G,H);}};D.NAME="Scroll";var B=YAHOO.util;YAHOO.extend(D,B.ColorAnim);var C=D.superclass;var A=D.prototype;A.doMethod=function(E,H,F){var G=null;if(E=="scroll"){G=[this.method(this.currentFrame,H[0],F[0]-H[0],this.totalFrames),this.method(this.currentFrame,H[1],F[1]-H[1],this.totalFrames)];}else{G=C.doMethod.call(this,E,H,F);}return G;};A.getAttribute=function(E){var G=null;var F=this.getEl();if(E=="scroll"){G=[F.scrollLeft,F.scrollTop];}else{G=C.getAttribute.call(this,E);}return G;};A.setAttribute=function(E,H,G){var F=this.getEl();if(E=="scroll"){F.scrollLeft=H[0];F.scrollTop=H[1];}else{C.setAttribute.call(this,E,H,G);}};B.Scroll=D;})();YAHOO.register("animation",YAHOO.util.Anim,{version:"2.7.0",build:"1799"});
@@ -0,0 +1,49 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.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>
7
+ <head>
8
+ <title></title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
10
+ <script type="text/javascript">
11
+
12
+ function gup( name )
13
+ {
14
+ name = name.replace( /[\[]/, '\\\[' ).replace( /[\]]/, '\\\]' ) ;
15
+ var regexS = '[\\?&]' + name + '=([^&#]*)' ;
16
+ var regex = new RegExp( regexS ) ;
17
+ var results = regex.exec( window.location.href ) ;
18
+
19
+ if ( results )
20
+ return results[ 1 ] ;
21
+ else
22
+ return '' ;
23
+ }
24
+
25
+ var interval;
26
+
27
+ function sendData2Master()
28
+ {
29
+ var destination = window.parent.parent ;
30
+ try
31
+ {
32
+ if ( destination.XDTMaster )
33
+ {
34
+ var t = destination.XDTMaster.read( [ gup( 'cmd' ), gup( 'data' ) ] ) ;
35
+ window.clearInterval( interval ) ;
36
+ }
37
+ }
38
+ catch (e) {}
39
+ }
40
+
41
+ function onLoad()
42
+ {
43
+ interval = window.setInterval( sendData2Master, 100 );
44
+ }
45
+
46
+ </script>
47
+ </head>
48
+ <body onload="onLoad()"><p></p></body>
49
+ </html>
@@ -0,0 +1,52 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.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>
7
+ <head>
8
+ <title></title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
10
+ <script type="text/javascript">
11
+
12
+ function doLoadScript( url )
13
+ {
14
+ if ( !url )
15
+ return false ;
16
+
17
+ var s = document.createElement( "script" ) ;
18
+ s.type = "text/javascript" ;
19
+ s.src = url ;
20
+ document.getElementsByTagName( "head" )[ 0 ].appendChild( s ) ;
21
+
22
+ return true ;
23
+ }
24
+
25
+ var opener;
26
+ function tryLoad()
27
+ {
28
+ opener = window.parent;
29
+
30
+ // get access to global parameters
31
+ var oParams = window.opener.oldFramesetPageParams;
32
+
33
+ // make frameset rows string prepare
34
+ var sFramesetRows = ( parseInt( oParams.firstframeh, 10 ) || '30') + ",*," + ( parseInt( oParams.thirdframeh, 10 ) || '150' ) + ',0' ;
35
+ document.getElementById( 'itFrameset' ).rows = sFramesetRows ;
36
+
37
+ // dynamic including init frames and crossdomain transport code
38
+ // from config sproxy_js_frameset url
39
+ var addScriptUrl = oParams.sproxy_js_frameset ;
40
+ doLoadScript( addScriptUrl ) ;
41
+ }
42
+
43
+ </script>
44
+ </head>
45
+
46
+ <frameset id="itFrameset" onload="tryLoad();" border="0" rows="30,*,*,0">
47
+ <frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="0" marginwidth="2" src="" name="navbar"></frame>
48
+ <frame scrolling="auto" framespacing="0" frameborder="0" noresize="noresize" marginheight="0" marginwidth="0" src="" name="mid"></frame>
49
+ <frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="1" marginwidth="1" src="" name="bot"></frame>
50
+ <frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="1" marginwidth="1" src="" name="spellsuggestall"></frame>
51
+ </frameset>
52
+ </html>