glebtv-ckeditor 4.2.1.5 → 4.3.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (437) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +37 -1
  3. data/README.md +286 -0
  4. data/Rakefile +76 -63
  5. data/app/assets/javascripts/ckeditor/application.js +1 -0
  6. data/app/assets/javascripts/ckeditor/config.js.erb +59 -20
  7. data/app/assets/javascripts/ckeditor/filebrowser/javascripts/{application.js → application.js.erb} +11 -2
  8. data/app/assets/javascripts/ckeditor/filebrowser/javascripts/jquery.endless-scroll.js +300 -0
  9. data/app/assets/javascripts/ckeditor/filebrowser/stylesheets/{uploader.css → uploader.css.erb} +6 -2
  10. data/app/assets/javascripts/ckeditor/init.js.erb +1 -6
  11. data/app/assets/javascripts/ckeditor/override.js.erb +22 -0
  12. data/app/assets/stylesheets/ckcontent.css +103 -0
  13. data/app/controllers/ckeditor/application_controller.rb +5 -4
  14. data/app/controllers/ckeditor/attachment_files_controller.rb +12 -10
  15. data/app/controllers/ckeditor/pictures_controller.rb +12 -10
  16. data/app/helpers/ckeditor/application_helper.rb +1 -1
  17. data/app/views/ckeditor/attachment_files/index.html.erb +11 -5
  18. data/app/views/ckeditor/pictures/index.html.erb +12 -6
  19. data/app/views/ckeditor/shared/_asset.html.erb +2 -2
  20. data/app/views/ckeditor/shared/_asset_tmpl.html.erb +3 -3
  21. data/app/views/layouts/ckeditor/application.html.erb +0 -1
  22. data/config/locales/cs.ckeditor.yml +1 -0
  23. data/config/locales/de.ckeditor.yml +9 -0
  24. data/config/locales/el-GR.cdkeditor.yml +9 -0
  25. data/config/locales/en.ckeditor.yml +1 -0
  26. data/config/locales/es.ckeditor.yml +1 -0
  27. data/config/locales/fr.ckeditor.yml +1 -0
  28. data/config/locales/hu.ckeditor.yml +9 -0
  29. data/config/locales/it.ckeditor.yml +1 -0
  30. data/config/locales/nl.ckeditor.yml +2 -1
  31. data/config/locales/pl.ckeditor.yml +1 -0
  32. data/config/locales/pt-BR.ckeditor.yml +2 -1
  33. data/config/locales/pt-PT.ckeditor.yml +9 -0
  34. data/config/locales/ru.ckeditor.yml +1 -0
  35. data/config/locales/sv-SE.ckeditor.yml +1 -0
  36. data/config/locales/uk.ckeditor.yml +1 -0
  37. data/config/locales/zh-CN.ckeditor.yml +1 -0
  38. data/lib/ckeditor.rb +63 -13
  39. data/lib/ckeditor/backend/carrierwave.rb +9 -9
  40. data/lib/ckeditor/backend/dragonfly.rb +2 -2
  41. data/lib/ckeditor/backend/paperclip.rb +4 -4
  42. data/lib/ckeditor/engine.rb +6 -6
  43. data/lib/ckeditor/helpers/controllers.rb +7 -7
  44. data/lib/ckeditor/helpers/form_builder.rb +1 -1
  45. data/lib/ckeditor/helpers/form_helper.rb +2 -21
  46. data/lib/ckeditor/helpers/view_helper.rb +2 -13
  47. data/lib/ckeditor/hooks/cancan.rb +2 -2
  48. data/lib/ckeditor/hooks/formtastic.rb +1 -1
  49. data/lib/ckeditor/hooks/pundit.rb +47 -0
  50. data/lib/ckeditor/http.rb +8 -7
  51. data/lib/ckeditor/orm/active_record.rb +3 -3
  52. data/lib/ckeditor/orm/base.rb +4 -6
  53. data/lib/ckeditor/orm/mongoid.rb +4 -4
  54. data/lib/ckeditor/paginatable.rb +56 -0
  55. data/lib/ckeditor/text_area.rb +52 -0
  56. data/lib/ckeditor/utils.rb +54 -36
  57. data/lib/ckeditor/version.rb +1 -4
  58. data/lib/generators/ckeditor/install_generator.rb +10 -10
  59. data/lib/generators/ckeditor/pundit_policy_generator.rb +22 -0
  60. data/lib/generators/ckeditor/templates/active_record/carrierwave/ckeditor/asset.rb +1 -1
  61. data/lib/generators/ckeditor/templates/active_record/carrierwave/migration.rb +4 -4
  62. data/lib/generators/ckeditor/templates/active_record/paperclip/ckeditor/attachment_file.rb +1 -1
  63. data/lib/generators/ckeditor/templates/active_record/paperclip/migration.rb +2 -2
  64. data/lib/generators/ckeditor/templates/base/carrierwave/uploaders/ckeditor_attachment_file_uploader.rb +1 -1
  65. data/lib/generators/ckeditor/templates/base/carrierwave/uploaders/ckeditor_picture_uploader.rb +1 -1
  66. data/lib/generators/ckeditor/templates/ckeditor.rb +21 -16
  67. data/lib/generators/ckeditor/templates/mongoid/carrierwave/ckeditor/asset.rb +1 -1
  68. data/lib/generators/ckeditor/templates/pundit_policy/attachment_file_policy.rb +20 -0
  69. data/lib/generators/ckeditor/templates/pundit_policy/picture_policy.rb +20 -0
  70. data/test/ckeditor_test.rb +54 -1
  71. data/test/controllers/attachment_files_controller_test.rb +15 -15
  72. data/test/controllers/pictures_controller_test.rb +15 -15
  73. data/test/dummy/app/views/posts/index.html.erb +1 -1
  74. data/test/dummy/config/routes.rb +1 -1
  75. data/test/dummy/log/test.log +301 -0
  76. data/test/dummy/tmp/cache/assets/test/sprockets/0ff571a66f03f4c98305b82fbc097934 +0 -0
  77. data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  78. data/test/dummy/tmp/cache/assets/test/sprockets/1c2a2034cd1d6490a47e1f2b22a328f3 +0 -0
  79. data/test/dummy/tmp/cache/assets/test/sprockets/233a499dd1009ab5b2a8040346715629 +0 -0
  80. data/test/dummy/tmp/cache/assets/test/sprockets/2a79c1fcf4595c4bfb3a1e77a732b9e9 +0 -0
  81. data/test/dummy/tmp/cache/assets/test/sprockets/2bb1e656d1d1c20542dd47020608ce4b +0 -0
  82. data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  83. data/test/dummy/tmp/cache/assets/test/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
  84. data/test/dummy/tmp/cache/assets/test/sprockets/3c088129885aa2261da0ab21707aa851 +0 -0
  85. data/test/dummy/tmp/cache/assets/test/sprockets/5296ab0e7196335ed50f33e398de0470 +0 -0
  86. data/test/dummy/tmp/cache/assets/test/sprockets/62133d9323b94de8b0cd2a3e490e0374 +0 -0
  87. data/test/dummy/tmp/cache/assets/test/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
  88. data/test/dummy/tmp/cache/assets/test/sprockets/70f2d021b0f59639252116032aa12a5d +0 -0
  89. data/test/dummy/tmp/cache/assets/test/sprockets/73eff3be45044b7438486d533547c02c +0 -0
  90. data/test/dummy/tmp/cache/assets/test/sprockets/7869bf4c6f26bcd697a78ffd20655de5 +0 -0
  91. data/test/dummy/tmp/cache/assets/test/sprockets/88d81ff5585179f4acb7ba76bdcb1244 +0 -0
  92. data/test/dummy/tmp/cache/assets/test/sprockets/990c65e42e2a681340e62644dd07782b +0 -0
  93. data/test/dummy/tmp/cache/assets/test/sprockets/aaf14684bcb6dafb17154d27c3d5a5de +0 -0
  94. data/test/dummy/tmp/cache/assets/test/sprockets/b2141ea733727ae31693b5129d431629 +0 -0
  95. data/test/dummy/tmp/cache/assets/test/sprockets/c1469bfe5d5645440961cc1e8fd48120 +0 -0
  96. data/test/dummy/tmp/cache/assets/test/sprockets/c479f0465142b7c9c5a9c58a256335d7 +0 -0
  97. data/test/dummy/tmp/cache/assets/test/sprockets/c73d53992216d52410b542dce76742ad +0 -0
  98. data/test/dummy/tmp/cache/assets/test/sprockets/c7476f60577593bf79ca5b6334b86903 +0 -0
  99. data/test/dummy/tmp/cache/assets/test/sprockets/cb4a5e7fc592c6023ed2acc5953b4685 +0 -0
  100. data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  101. data/test/dummy/tmp/cache/assets/test/sprockets/d7e7d3b3729ff516f81682711ea8a53a +0 -0
  102. data/test/dummy/tmp/cache/assets/test/sprockets/d9b8613a01ff7c7d9fe1a6b7cd5497ff +0 -0
  103. data/test/dummy/tmp/cache/assets/test/sprockets/e4513c04c145290b038978a8f471d244 +0 -0
  104. data/test/dummy/tmp/cache/assets/test/sprockets/e65823156ac3891c4779224e828d4877 +0 -0
  105. data/test/dummy/tmp/cache/assets/test/sprockets/f20469686afebc55828d93a978e5ff20 +0 -0
  106. data/test/dummy/tmp/cache/assets/test/sprockets/f24d6c64fd96102c27c1f10e82ebf864 +0 -0
  107. data/test/dummy/tmp/cache/assets/test/sprockets/f33022711bcfc1cae3955a1de79fe280 +0 -0
  108. data/test/dummy/tmp/cache/assets/test/sprockets/f69b1a9a1323d97109283e5bd378c23d +0 -0
  109. data/test/functional/posts_controller_test.rb +4 -4
  110. data/test/generators/install_generator_test.rb +7 -7
  111. data/test/models/attachment_file_test.rb +2 -2
  112. data/test/models/picture_test.rb +2 -2
  113. data/test/models/utils_test.rb +4 -5
  114. data/test/support/helpers.rb +8 -8
  115. data/test/tmp/app/models/ckeditor/asset.rb +5 -0
  116. data/test/tmp/app/models/ckeditor/attachment_file.rb +12 -0
  117. data/test/tmp/app/models/ckeditor/picture.rb +13 -0
  118. data/test/tmp/config/initializers/ckeditor.rb +26 -0
  119. data/test/tmp/config/routes.rb +5 -0
  120. data/vendor/assets/javascripts/ckeditor/CHANGES.md +414 -0
  121. data/{app → vendor}/assets/javascripts/ckeditor/LICENSE.md +1 -1
  122. data/{app → vendor}/assets/javascripts/ckeditor/README.md +1 -1
  123. data/vendor/assets/javascripts/ckeditor/adapters/jquery.js +10 -0
  124. data/vendor/assets/javascripts/ckeditor/build-config.js +165 -0
  125. data/vendor/assets/javascripts/ckeditor/ckeditor.js +978 -0
  126. data/vendor/assets/javascripts/ckeditor/config.js +10 -0
  127. data/vendor/assets/javascripts/ckeditor/lang/en.js +5 -0
  128. data/vendor/assets/javascripts/ckeditor/lang/ru.js +5 -0
  129. data/{app → vendor}/assets/javascripts/ckeditor/plugins/CKCss/ckcss.png +0 -0
  130. data/{app → vendor}/assets/javascripts/ckeditor/plugins/CKCss/css/styles.css +0 -0
  131. data/{app → vendor}/assets/javascripts/ckeditor/plugins/CKCss/dialogs/ckcss.js +0 -0
  132. data/{app → vendor}/assets/javascripts/ckeditor/plugins/CKCss/lang/en.js +0 -0
  133. data/{app → vendor}/assets/javascripts/ckeditor/plugins/CKCss/lang/ru.js +0 -0
  134. data/{app → vendor}/assets/javascripts/ckeditor/plugins/CKCss/plugin.js +3 -3
  135. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +10 -0
  136. data/{app → vendor}/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/en.js +4 -2
  137. data/{app → vendor}/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js +4 -2
  138. data/{app → vendor}/assets/javascripts/ckeditor/plugins/about/dialogs/about.js +1 -1
  139. data/{app → vendor}/assets/javascripts/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png +0 -0
  140. data/{app → vendor}/assets/javascripts/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
  141. data/{app → vendor}/assets/javascripts/ckeditor/plugins/clipboard/dialogs/paste.js +1 -1
  142. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/css/codemirror.min.css +1 -0
  143. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/icons/AutoComplete.png +0 -0
  144. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/icons/AutoFormat.png +0 -0
  145. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/icons/CommentSelectedRange.png +0 -0
  146. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/icons/SearchCode.png +0 -0
  147. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/icons/UncommentSelectedRange.png +0 -0
  148. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/js/beautify.min.js +0 -0
  149. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/codemirror.addons.min.js +1 -0
  150. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/codemirror.addons.search.min.js +1 -0
  151. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/codemirror.min.js +1 -0
  152. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/codemirror.mode.htmlmixed.min.js +1 -0
  153. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/codemirror.mode.javascript.min.js +1 -0
  154. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/js/codemirror.mode.php.min.js +1 -0
  155. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/lang/en.js +0 -0
  156. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/lang/ru.js +3 -1
  157. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/plugin.js +335 -90
  158. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/theme/3024-day.css +34 -0
  159. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/theme/3024-night.css +34 -0
  160. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/theme/ambiance-mobile.css +5 -5
  161. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/theme/ambiance.css +75 -75
  162. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/theme/base16-dark.css +34 -0
  163. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/theme/base16-light.css +34 -0
  164. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/theme/blackboard.css +28 -25
  165. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/theme/cobalt.css +21 -18
  166. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/theme/eclipse.css +23 -25
  167. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/theme/elegant.css +13 -10
  168. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/theme/erlang-dark.css +30 -21
  169. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/theme/lesser-dark.css +47 -44
  170. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/theme/mbo.css +37 -0
  171. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/theme/midnight.css +43 -52
  172. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/theme/monokai.css +29 -28
  173. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/theme/neat.css +12 -9
  174. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/theme/night.css +24 -21
  175. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/theme/paraiso-dark.css +34 -0
  176. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/theme/paraiso-light.css +34 -0
  177. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/theme/rubyblue.css +23 -21
  178. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/theme/solarized.css +180 -207
  179. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/theme/the-matrix.css +26 -0
  180. data/vendor/assets/javascripts/ckeditor/plugins/codemirror/theme/tomorrow-night-eighties.css +34 -0
  181. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/theme/twilight.css +28 -26
  182. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/theme/vibrant-ink.css +30 -27
  183. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/theme/xq-dark.css +49 -46
  184. data/{app → vendor}/assets/javascripts/ckeditor/plugins/codemirror/theme/xq-light.css +43 -43
  185. data/{app → vendor}/assets/javascripts/ckeditor/plugins/colordialog/dialogs/colordialog.js +1 -1
  186. data/{app → vendor}/assets/javascripts/ckeditor/plugins/dialog/dialogDefinition.js +1 -1
  187. data/{app → vendor}/assets/javascripts/ckeditor/plugins/div/dialogs/div.js +5 -5
  188. data/{app → vendor}/assets/javascripts/ckeditor/plugins/fakeobjects/images/spacer.gif +0 -0
  189. data/{app → vendor}/assets/javascripts/ckeditor/plugins/find/dialogs/find.js +1 -1
  190. data/{app → vendor}/assets/javascripts/ckeditor/plugins/flash/dialogs/flash.js +1 -1
  191. data/{app → vendor}/assets/javascripts/ckeditor/plugins/flash/images/placeholder.png +0 -0
  192. data/{app → vendor}/assets/javascripts/ckeditor/plugins/forms/dialogs/button.js +1 -1
  193. data/{app → vendor}/assets/javascripts/ckeditor/plugins/forms/dialogs/checkbox.js +1 -1
  194. data/{app → vendor}/assets/javascripts/ckeditor/plugins/forms/dialogs/form.js +2 -2
  195. data/{app → vendor}/assets/javascripts/ckeditor/plugins/forms/dialogs/hiddenfield.js +1 -1
  196. data/{app → vendor}/assets/javascripts/ckeditor/plugins/forms/dialogs/radio.js +1 -1
  197. data/{app → vendor}/assets/javascripts/ckeditor/plugins/forms/dialogs/select.js +1 -1
  198. data/{app → vendor}/assets/javascripts/ckeditor/plugins/forms/dialogs/textarea.js +1 -1
  199. data/{app → vendor}/assets/javascripts/ckeditor/plugins/forms/dialogs/textfield.js +1 -1
  200. data/{app → vendor}/assets/javascripts/ckeditor/plugins/forms/images/hiddenfield.gif +0 -0
  201. data/vendor/assets/javascripts/ckeditor/plugins/icons.png +0 -0
  202. data/{app/assets/javascripts/ckeditor/skins/moono → vendor/assets/javascripts/ckeditor/plugins}/icons_hidpi.png +0 -0
  203. data/{app → vendor}/assets/javascripts/ckeditor/plugins/iframe/dialogs/iframe.js +1 -1
  204. data/{app → vendor}/assets/javascripts/ckeditor/plugins/iframe/images/placeholder.png +0 -0
  205. data/{app → vendor}/assets/javascripts/ckeditor/plugins/iframedialog/plugin.js +13 -13
  206. data/vendor/assets/javascripts/ckeditor/plugins/image/dialogs/image.js +43 -0
  207. data/{app → vendor}/assets/javascripts/ckeditor/plugins/image/images/noimage.png +0 -0
  208. data/{app → vendor}/assets/javascripts/ckeditor/plugins/ipsum/icon.png +0 -0
  209. data/{app → vendor}/assets/javascripts/ckeditor/plugins/ipsum/plugin.js +0 -0
  210. data/{app → vendor}/assets/javascripts/ckeditor/plugins/link/dialogs/anchor.js +1 -1
  211. data/{app → vendor}/assets/javascripts/ckeditor/plugins/link/dialogs/link.js +8 -7
  212. data/{app → vendor}/assets/javascripts/ckeditor/plugins/link/images/anchor.png +0 -0
  213. data/{app → vendor}/assets/javascripts/ckeditor/plugins/link/images/hidpi/anchor.png +0 -0
  214. data/{app → vendor}/assets/javascripts/ckeditor/plugins/liststyle/dialogs/liststyle.js +1 -1
  215. data/{app → vendor}/assets/javascripts/ckeditor/plugins/magicline/images/hidpi/icon.png +0 -0
  216. data/{app → vendor}/assets/javascripts/ckeditor/plugins/magicline/images/icon.png +0 -0
  217. data/{app → vendor}/assets/javascripts/ckeditor/plugins/map/example_usage.js +0 -0
  218. data/{app → vendor}/assets/javascripts/ckeditor/plugins/map/map.gif +0 -0
  219. data/{app → vendor}/assets/javascripts/ckeditor/plugins/map/plugin.js +0 -0
  220. data/{app → vendor}/assets/javascripts/ckeditor/plugins/mediaembed/icons/hidpi/mediaembed.png +0 -0
  221. data/{app → vendor}/assets/javascripts/ckeditor/plugins/mediaembed/icons/mediaembed.png +0 -0
  222. data/{app → vendor}/assets/javascripts/ckeditor/plugins/mediaembed/plugin.js +0 -0
  223. data/{app → vendor}/assets/javascripts/ckeditor/plugins/pagebreak/images/pagebreak.gif +0 -0
  224. data/{app → vendor}/assets/javascripts/ckeditor/plugins/pastefromword/filter/default.js +1 -1
  225. data/{app → vendor}/assets/javascripts/ckeditor/plugins/preview/preview.html +0 -0
  226. data/{app → vendor}/assets/javascripts/ckeditor/plugins/scayt/LICENSE.md +0 -0
  227. data/{app → vendor}/assets/javascripts/ckeditor/plugins/scayt/README.md +0 -0
  228. data/vendor/assets/javascripts/ckeditor/plugins/scayt/dialogs/options.js +20 -0
  229. data/{app → vendor}/assets/javascripts/ckeditor/plugins/scayt/dialogs/toolbar.css +0 -0
  230. data/{app → vendor}/assets/javascripts/ckeditor/plugins/showblocks/images/block_address.png +0 -0
  231. data/{app → vendor}/assets/javascripts/ckeditor/plugins/showblocks/images/block_blockquote.png +0 -0
  232. data/{app → vendor}/assets/javascripts/ckeditor/plugins/showblocks/images/block_div.png +0 -0
  233. data/{app → vendor}/assets/javascripts/ckeditor/plugins/showblocks/images/block_h1.png +0 -0
  234. data/{app → vendor}/assets/javascripts/ckeditor/plugins/showblocks/images/block_h2.png +0 -0
  235. data/{app → vendor}/assets/javascripts/ckeditor/plugins/showblocks/images/block_h3.png +0 -0
  236. data/{app → vendor}/assets/javascripts/ckeditor/plugins/showblocks/images/block_h4.png +0 -0
  237. data/{app → vendor}/assets/javascripts/ckeditor/plugins/showblocks/images/block_h5.png +0 -0
  238. data/{app → vendor}/assets/javascripts/ckeditor/plugins/showblocks/images/block_h6.png +0 -0
  239. data/{app → vendor}/assets/javascripts/ckeditor/plugins/showblocks/images/block_p.png +0 -0
  240. data/{app → vendor}/assets/javascripts/ckeditor/plugins/showblocks/images/block_pre.png +0 -0
  241. data/{app → vendor}/assets/javascripts/ckeditor/plugins/smiley/dialogs/smiley.js +1 -1
  242. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
  243. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/angel_smile.png +0 -0
  244. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
  245. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/angry_smile.png +0 -0
  246. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
  247. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/broken_heart.png +0 -0
  248. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
  249. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/confused_smile.png +0 -0
  250. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
  251. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/cry_smile.png +0 -0
  252. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
  253. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/devil_smile.png +0 -0
  254. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
  255. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/embarrassed_smile.gif +0 -0
  256. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/embarrassed_smile.png +0 -0
  257. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/envelope.gif +0 -0
  258. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/envelope.png +0 -0
  259. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/heart.gif +0 -0
  260. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/heart.png +0 -0
  261. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/kiss.gif +0 -0
  262. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/kiss.png +0 -0
  263. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
  264. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/lightbulb.png +0 -0
  265. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
  266. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/omg_smile.png +0 -0
  267. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
  268. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/regular_smile.png +0 -0
  269. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
  270. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/sad_smile.png +0 -0
  271. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
  272. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/shades_smile.png +0 -0
  273. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
  274. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/teeth_smile.png +0 -0
  275. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
  276. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/thumbs_down.png +0 -0
  277. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
  278. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/thumbs_up.png +0 -0
  279. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/tongue_smile.gif +0 -0
  280. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/tongue_smile.png +0 -0
  281. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
  282. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  283. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png +0 -0
  284. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
  285. data/vendor/assets/javascripts/ckeditor/plugins/smiley/images/wink_smile.png +0 -0
  286. data/{app → vendor}/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/en.js +1 -1
  287. data/{app → vendor}/assets/javascripts/ckeditor/plugins/specialchar/dialogs/lang/ru.js +1 -1
  288. data/{app → vendor}/assets/javascripts/ckeditor/plugins/specialchar/dialogs/specialchar.js +1 -1
  289. data/{app → vendor}/assets/javascripts/ckeditor/plugins/stylesheetparser/plugin.js +6 -6
  290. data/{app → vendor}/assets/javascripts/ckeditor/plugins/table/dialogs/table.js +4 -4
  291. data/{app → vendor}/assets/javascripts/ckeditor/plugins/tabletools/dialogs/tableCell.js +1 -1
  292. data/{app → vendor}/assets/javascripts/ckeditor/plugins/templates/dialogs/templates.css +1 -1
  293. data/{app → vendor}/assets/javascripts/ckeditor/plugins/templates/dialogs/templates.js +1 -1
  294. data/{app → vendor}/assets/javascripts/ckeditor/plugins/templates/templates/default.js +2 -2
  295. data/{app → vendor}/assets/javascripts/ckeditor/plugins/templates/templates/images/template1.gif +0 -0
  296. data/{app → vendor}/assets/javascripts/ckeditor/plugins/templates/templates/images/template2.gif +0 -0
  297. data/{app → vendor}/assets/javascripts/ckeditor/plugins/templates/templates/images/template3.gif +0 -0
  298. data/{app → vendor}/assets/javascripts/ckeditor/plugins/wordcount/css/wordcount.css +0 -0
  299. data/{app → vendor}/assets/javascripts/ckeditor/plugins/wordcount/lang/en.js +0 -0
  300. data/vendor/assets/javascripts/ckeditor/plugins/wordcount/lang/ru.js +11 -0
  301. data/{app → vendor}/assets/javascripts/ckeditor/plugins/wordcount/plugin.js +72 -31
  302. data/{app → vendor}/assets/javascripts/ckeditor/plugins/wsc/LICENSE.md +0 -0
  303. data/{app → vendor}/assets/javascripts/ckeditor/plugins/wsc/README.md +0 -0
  304. data/{app → vendor}/assets/javascripts/ckeditor/plugins/wsc/dialogs/ciframe.html +0 -0
  305. data/{app → vendor}/assets/javascripts/ckeditor/plugins/wsc/dialogs/tmp.html +0 -0
  306. data/{app → vendor}/assets/javascripts/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +0 -0
  307. data/{app → vendor}/assets/javascripts/ckeditor/plugins/wsc/dialogs/wsc.css +0 -0
  308. data/{app → vendor}/assets/javascripts/ckeditor/plugins/wsc/dialogs/wsc.js +31 -31
  309. data/{app → vendor}/assets/javascripts/ckeditor/plugins/wsc/dialogs/wsc_ie.js +0 -0
  310. data/vendor/assets/javascripts/ckeditor/plugins/youtube/images/icon.png +0 -0
  311. data/{app → vendor}/assets/javascripts/ckeditor/plugins/youtube/lang/en.js +1 -0
  312. data/{app → vendor}/assets/javascripts/ckeditor/plugins/youtube/lang/ru.js +1 -0
  313. data/{app → vendor}/assets/javascripts/ckeditor/plugins/youtube/plugin.js +56 -15
  314. data/vendor/assets/javascripts/ckeditor/skins/moono/dialog.css.scss +768 -0
  315. data/vendor/assets/javascripts/ckeditor/skins/moono/dialog_ie.css.scss +809 -0
  316. data/vendor/assets/javascripts/ckeditor/skins/moono/dialog_ie7.css.scss +841 -0
  317. data/vendor/assets/javascripts/ckeditor/skins/moono/dialog_ie8.css.scss +822 -0
  318. data/vendor/assets/javascripts/ckeditor/skins/moono/dialog_iequirks.css.scss +813 -0
  319. data/vendor/assets/javascripts/ckeditor/skins/moono/dialog_opera.css.scss +781 -0
  320. data/vendor/assets/javascripts/ckeditor/skins/moono/editor.css.scss +2125 -0
  321. data/vendor/assets/javascripts/ckeditor/skins/moono/editor_gecko.css.scss +2134 -0
  322. data/vendor/assets/javascripts/ckeditor/skins/moono/editor_ie.css.scss +2183 -0
  323. data/vendor/assets/javascripts/ckeditor/skins/moono/editor_ie7.css.scss +2351 -0
  324. data/vendor/assets/javascripts/ckeditor/skins/moono/editor_ie8.css.scss +2195 -0
  325. data/vendor/assets/javascripts/ckeditor/skins/moono/editor_iequirks.css.scss +2243 -0
  326. data/vendor/assets/javascripts/ckeditor/skins/moono/icons.png +0 -0
  327. data/{app/assets/javascripts/ckeditor/plugins → vendor/assets/javascripts/ckeditor/skins/moono}/icons_hidpi.png +0 -0
  328. data/{app → vendor}/assets/javascripts/ckeditor/skins/moono/images/arrow.png +0 -0
  329. data/{app → vendor}/assets/javascripts/ckeditor/skins/moono/images/close.png +0 -0
  330. data/{app → vendor}/assets/javascripts/ckeditor/skins/moono/images/hidpi/close.png +0 -0
  331. data/{app → vendor}/assets/javascripts/ckeditor/skins/moono/images/hidpi/lock-open.png +0 -0
  332. data/{app → vendor}/assets/javascripts/ckeditor/skins/moono/images/hidpi/lock.png +0 -0
  333. data/{app → vendor}/assets/javascripts/ckeditor/skins/moono/images/hidpi/refresh.png +0 -0
  334. data/{app → vendor}/assets/javascripts/ckeditor/skins/moono/images/lock-open.png +0 -0
  335. data/{app → vendor}/assets/javascripts/ckeditor/skins/moono/images/lock.png +0 -0
  336. data/{app → vendor}/assets/javascripts/ckeditor/skins/moono/images/refresh.png +0 -0
  337. data/{app → vendor}/assets/javascripts/ckeditor/skins/moono/readme.md +1 -1
  338. data/{app → vendor}/assets/javascripts/ckeditor/styles.js +2 -2
  339. metadata +445 -352
  340. data/README.rdoc +0 -12
  341. data/app/assets/javascripts/ckeditor/CHANGES.md +0 -233
  342. data/app/assets/javascripts/ckeditor/build-config.js +0 -103
  343. data/app/assets/javascripts/ckeditor/ckeditor.js +0 -929
  344. data/app/assets/javascripts/ckeditor/contents.css +0 -103
  345. data/app/assets/javascripts/ckeditor/lang/en.js +0 -5
  346. data/app/assets/javascripts/ckeditor/lang/ru.js +0 -5
  347. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +0 -10
  348. data/app/assets/javascripts/ckeditor/plugins/codemirror/css/codemirror.min.css +0 -1
  349. data/app/assets/javascripts/ckeditor/plugins/codemirror/js/codemirror.addons.min.js +0 -1
  350. data/app/assets/javascripts/ckeditor/plugins/codemirror/js/codemirror.min.js +0 -5637
  351. data/app/assets/javascripts/ckeditor/plugins/codemirror/js/codemirror.modes.min.js +0 -1
  352. data/app/assets/javascripts/ckeditor/plugins/codemirror/js/codemirror.search-addons.min.js +0 -1
  353. data/app/assets/javascripts/ckeditor/plugins/font/lang/en.js +0 -14
  354. data/app/assets/javascripts/ckeditor/plugins/font/lang/ru.js +0 -14
  355. data/app/assets/javascripts/ckeditor/plugins/font/plugin.js +0 -225
  356. data/app/assets/javascripts/ckeditor/plugins/highslide/dialogs/hs.js +0 -73
  357. data/app/assets/javascripts/ckeditor/plugins/highslide/icon.png +0 -0
  358. data/app/assets/javascripts/ckeditor/plugins/highslide/lang/en.js +0 -7
  359. data/app/assets/javascripts/ckeditor/plugins/highslide/lang/ru.js +0 -7
  360. data/app/assets/javascripts/ckeditor/plugins/highslide/plugin.js +0 -26
  361. data/app/assets/javascripts/ckeditor/plugins/highslide/readme.txt +0 -55
  362. data/app/assets/javascripts/ckeditor/plugins/htmlbuttons/docs/install.html +0 -93
  363. data/app/assets/javascripts/ckeditor/plugins/htmlbuttons/docs/styles.css +0 -59
  364. data/app/assets/javascripts/ckeditor/plugins/htmlbuttons/icon1.png +0 -0
  365. data/app/assets/javascripts/ckeditor/plugins/htmlbuttons/icon2.png +0 -0
  366. data/app/assets/javascripts/ckeditor/plugins/htmlbuttons/icon3.png +0 -0
  367. data/app/assets/javascripts/ckeditor/plugins/icons.png +0 -0
  368. data/app/assets/javascripts/ckeditor/plugins/iframe/icons/hidpi/iframe.png +0 -0
  369. data/app/assets/javascripts/ckeditor/plugins/iframe/icons/iframe.png +0 -0
  370. data/app/assets/javascripts/ckeditor/plugins/iframe/lang/en.js +0 -11
  371. data/app/assets/javascripts/ckeditor/plugins/iframe/lang/ru.js +0 -11
  372. data/app/assets/javascripts/ckeditor/plugins/iframe/plugin.js +0 -83
  373. data/app/assets/javascripts/ckeditor/plugins/image/dialogs/image.js +0 -43
  374. data/app/assets/javascripts/ckeditor/plugins/oembed/images/icon.png +0 -0
  375. data/app/assets/javascripts/ckeditor/plugins/oembed/images/placeholder.png +0 -0
  376. data/app/assets/javascripts/ckeditor/plugins/oembed/libs/jquery.oembed.js +0 -70
  377. data/app/assets/javascripts/ckeditor/plugins/oembed/libs/jquery.oembed.min.js +0 -71
  378. data/app/assets/javascripts/ckeditor/plugins/oembed/oembed/images/icon.png +0 -0
  379. data/app/assets/javascripts/ckeditor/plugins/oembed/oembed/images/placeholder.png +0 -0
  380. data/app/assets/javascripts/ckeditor/plugins/oembed/oembed/lang/en.js +0 -23
  381. data/app/assets/javascripts/ckeditor/plugins/oembed/oembed/lang/ru.js +0 -23
  382. data/app/assets/javascripts/ckeditor/plugins/oembed/oembed/libs/jquery.oembed.js +0 -971
  383. data/app/assets/javascripts/ckeditor/plugins/oembed/oembed/libs/jquery.oembed.min.js +0 -11
  384. data/app/assets/javascripts/ckeditor/plugins/oembed/oembed/plugin.js +0 -373
  385. data/app/assets/javascripts/ckeditor/plugins/scayt/dialogs/options.js +0 -20
  386. data/app/assets/javascripts/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
  387. data/app/assets/javascripts/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
  388. data/app/assets/javascripts/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
  389. data/app/assets/javascripts/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
  390. data/app/assets/javascripts/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
  391. data/app/assets/javascripts/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
  392. data/app/assets/javascripts/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
  393. data/app/assets/javascripts/ckeditor/plugins/smiley/images/embarrassed_smile.gif +0 -0
  394. data/app/assets/javascripts/ckeditor/plugins/smiley/images/envelope.gif +0 -0
  395. data/app/assets/javascripts/ckeditor/plugins/smiley/images/heart.gif +0 -0
  396. data/app/assets/javascripts/ckeditor/plugins/smiley/images/kiss.gif +0 -0
  397. data/app/assets/javascripts/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
  398. data/app/assets/javascripts/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
  399. data/app/assets/javascripts/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
  400. data/app/assets/javascripts/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
  401. data/app/assets/javascripts/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
  402. data/app/assets/javascripts/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
  403. data/app/assets/javascripts/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
  404. data/app/assets/javascripts/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
  405. data/app/assets/javascripts/ckeditor/plugins/smiley/images/tongue_smile.gif +0 -0
  406. data/app/assets/javascripts/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
  407. data/app/assets/javascripts/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  408. data/app/assets/javascripts/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
  409. data/app/assets/javascripts/ckeditor/plugins/stylesheetparser/samples/assets/sample.css +0 -70
  410. data/app/assets/javascripts/ckeditor/plugins/stylesheetparser/samples/stylesheetparser.html +0 -82
  411. data/app/assets/javascripts/ckeditor/plugins/symbol/dialogs/lang/en.js +0 -181
  412. data/app/assets/javascripts/ckeditor/plugins/symbol/dialogs/symbol.js +0 -18
  413. data/app/assets/javascripts/ckeditor/plugins/symbol/icons/symbol.png +0 -0
  414. data/app/assets/javascripts/ckeditor/plugins/symbol/lang/en.js +0 -1
  415. data/app/assets/javascripts/ckeditor/plugins/symbol/plugin.js +0 -15
  416. data/app/assets/javascripts/ckeditor/plugins/uicolor/dialogs/uicolor.js +0 -9
  417. data/app/assets/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_bg.png +0 -0
  418. data/app/assets/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
  419. data/app/assets/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_mask.png +0 -0
  420. data/app/assets/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
  421. data/app/assets/javascripts/ckeditor/plugins/uicolor/yui/assets/yui.css +0 -15
  422. data/app/assets/javascripts/ckeditor/plugins/uicolor/yui/yui.js +0 -225
  423. data/app/assets/javascripts/ckeditor/plugins/youtube/images/icon.png +0 -0
  424. data/app/assets/javascripts/ckeditor/skins/moono/dialog.css +0 -5
  425. data/app/assets/javascripts/ckeditor/skins/moono/dialog_ie.css +0 -5
  426. data/app/assets/javascripts/ckeditor/skins/moono/dialog_ie7.css +0 -5
  427. data/app/assets/javascripts/ckeditor/skins/moono/dialog_ie8.css +0 -5
  428. data/app/assets/javascripts/ckeditor/skins/moono/dialog_iequirks.css +0 -5
  429. data/app/assets/javascripts/ckeditor/skins/moono/dialog_opera.css +0 -5
  430. data/app/assets/javascripts/ckeditor/skins/moono/editor.css +0 -5
  431. data/app/assets/javascripts/ckeditor/skins/moono/editor_gecko.css +0 -5
  432. data/app/assets/javascripts/ckeditor/skins/moono/editor_ie.css +0 -5
  433. data/app/assets/javascripts/ckeditor/skins/moono/editor_ie7.css +0 -5
  434. data/app/assets/javascripts/ckeditor/skins/moono/editor_ie8.css +0 -5
  435. data/app/assets/javascripts/ckeditor/skins/moono/editor_iequirks.css +0 -5
  436. data/app/assets/javascripts/ckeditor/skins/moono/icons.png +0 -0
  437. data/lib/ckeditor/tasks.rake +0 -11
@@ -1,70 +0,0 @@
1
- body
2
- {
3
- font-family: Arial, Verdana, sans-serif;
4
- font-size: 12px;
5
- color: #222;
6
- background-color: #fff;
7
- }
8
-
9
- /* preserved spaces for rtl list item bullets. (#6249)*/
10
- ol,ul,dl
11
- {
12
- padding-right:40px;
13
- }
14
-
15
- h1,h2,h3,h4
16
- {
17
- font-family: Georgia, Times, serif;
18
- }
19
-
20
- h1.lightBlue
21
- {
22
- color: #00A6C7;
23
- font-size: 1.8em;
24
- font-weight:normal;
25
- }
26
-
27
- h3.green
28
- {
29
- color: #739E39;
30
- font-weight:normal;
31
- }
32
-
33
- span.markYellow { background-color: yellow; }
34
- span.markGreen { background-color: lime; }
35
-
36
- img.left
37
- {
38
- padding: 5px;
39
- margin-right: 5px;
40
- float:left;
41
- border:2px solid #DDD;
42
- }
43
-
44
- img.right
45
- {
46
- padding: 5px;
47
- margin-right: 5px;
48
- float:right;
49
- border:2px solid #DDD;
50
- }
51
-
52
- a.green
53
- {
54
- color:#739E39;
55
- }
56
-
57
- table.grey
58
- {
59
- background-color : #F5F5F5;
60
- }
61
-
62
- table.grey th
63
- {
64
- background-color : #DDD;
65
- }
66
-
67
- ul.square
68
- {
69
- list-style-type : square;
70
- }
@@ -1,82 +0,0 @@
1
- <!DOCTYPE html>
2
- <!--
3
- Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
4
- For licensing, see LICENSE.md or http://ckeditor.com/license
5
- -->
6
- <html>
7
- <head>
8
- <title>Using Stylesheet Parser Plugin &mdash; CKEditor Sample</title>
9
- <meta charset="utf-8">
10
- <script src="../../../ckeditor.js"></script>
11
- <script src="../../../samples/sample.js"></script>
12
- <link rel="stylesheet" href="../../../samples/sample.css">
13
- <meta name="ckeditor-sample-required-plugins" content="stylescombo">
14
- <meta name="ckeditor-sample-name" content="Stylesheet Parser plugin">
15
- <meta name="ckeditor-sample-description" content="Using the Stylesheet Parser plugin to fill the Styles drop-down list based on the CSS classes available in the document stylesheet.">
16
- <meta name="ckeditor-sample-group" content="Plugins">
17
- </head>
18
- <body>
19
- <h1 class="samples">
20
- <a href="../../../samples/index.html">CKEditor Samples</a> &raquo; Using the Stylesheet Parser Plugin
21
- </h1>
22
- <div class="description">
23
- <p>
24
- This sample shows how to configure CKEditor instances to use the
25
- <strong>Stylesheet Parser</strong> (<code>stylesheetparser</code>) plugin that fills
26
- the <strong>Styles</strong> drop-down list based on the CSS rules available in the document stylesheet.
27
- </p>
28
- <p>
29
- To add a CKEditor instance using the <code>stylesheetparser</code> plugin, insert
30
- the following JavaScript call into your code:
31
- </p>
32
- <pre class="samples">
33
- CKEDITOR.replace( '<em>textarea_id</em>', {
34
- <strong>extraPlugins: 'stylesheetparser'</strong>
35
- });</pre>
36
- <p>
37
- Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of
38
- the <code>&lt;textarea&gt;</code> element to be replaced with CKEditor.
39
- </p>
40
- </div>
41
- <form action="../../../samples/sample_posteddata.php" method="post">
42
- <p>
43
- <label for="editor1">
44
- CKEditor using the <code>stylesheetparser</code> plugin with its default configuration:
45
- </label>
46
- <textarea cols="80" id="editor1" name="editor1" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
47
- <script>
48
-
49
- // This call can be placed at any point after the
50
- // <textarea>, or inside a <head><script> in a
51
- // window.onload event handler.
52
-
53
- // Replace the <textarea id="editor"> with an CKEditor
54
- // instance, using default configurations.
55
- CKEDITOR.replace( 'editor1' , {
56
- extraPlugins: 'stylesheetparser',
57
-
58
- // Stylesheet for the contents.
59
- contentsCss: 'assets/sample.css',
60
-
61
- // Do not load the default Styles configuration.
62
- stylesSet: []
63
- });
64
-
65
- </script>
66
- </p>
67
- <p>
68
- <input type="submit" value="Submit">
69
- </p>
70
- </form>
71
- <div id="footer">
72
- <hr>
73
- <p>
74
- CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
75
- </p>
76
- <p id="copy">
77
- Copyright &copy; 2003-2013, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
78
- Knabben. All rights reserved.
79
- </p>
80
- </div>
81
- </body>
82
- </html>
@@ -1,181 +0,0 @@
1
- CKEDITOR.plugins.setLang("symbol","en",{32:"Space",33:"Exclamation mark",34:"Quotation mark",35:"Number sign",36:"Dollar sign",37:"Percent sign",38:"Ampersand",39:"Apostrophe",40:"Left parenthesis",41:"Right parenthesis",42:"Asterisk",43:"Plus sign",44:"Comma",45:"Hyphen-minus",46:"Full stop",47:"Solidus",48:"Digit 0",49:"Digit 1",50:"Digit 2",51:"Digit 3",52:"Digit 4",53:"Digit 5",54:"Digit 6",55:"Digit 7",56:"Digit 8",57:"Digit 9",58:"Colon",59:"Semicolon",60:"Less-than sign",61:"Equals sign",62:"Greater-than sign",
2
- 63:"Question mark",64:"Commercial at",65:"Latin capital letter A",66:"Latin capital letter B",67:"Latin capital letter C",68:"Latin capital letter D",69:"Latin capital letter E",70:"Latin capital letter F",71:"Latin capital letter G",72:"Latin capital letter H",73:"Latin capital letter I",74:"Latin capital letter J",75:"Latin capital letter K",76:"Latin capital letter L",77:"Latin capital letter M",78:"Latin capital letter N",79:"Latin capital letter O",80:"Latin capital letter P",81:"Latin capital letter Q",
3
- 82:"Latin capital letter R",83:"Latin capital letter S",84:"Latin capital letter T",85:"Latin capital letter U",86:"Latin capital letter V",87:"Latin capital letter W",88:"Latin capital letter X",89:"Latin capital letter Y",90:"Latin capital letter Z",91:"Left square bracket",92:"Reverse solidus",93:"Right square bracket",94:"Circumflex accent",95:"Low line",96:"Grave accent",97:"Latin small letter a",98:"Latin small letter b",99:"Latin small letter c",100:"Latin small letter d",101:"Latin small letter e",
4
- 102:"Latin small letter f",103:"Latin small letter g",104:"Latin small letter h",105:"Latin small letter i",106:"Latin small letter j",107:"Latin small letter k",108:"Latin small letter l",109:"Latin small letter m",110:"Latin small letter n",111:"Latin small letter o",112:"Latin small letter p",113:"Latin small letter q",114:"Latin small letter r",115:"Latin small letter s",116:"Latin small letter t",117:"Latin small letter u",118:"Latin small letter v",119:"Latin small letter w",120:"Latin small letter x",
5
- 121:"Latin small letter y",122:"Latin small letter z",123:"Left curly bracket",124:"Vertical line",125:"Right curly bracket",126:"Tilde",160:"No-break space",161:"Inverted exclamation mark",162:"Cent sign",163:"Pound sign",164:"Currency sign",165:"Yen sign",166:"Broken bar",167:"Section sign",168:"Diaeresis",169:"Copyright sign",170:"Feminine ordinal indicator",171:"Left-pointing double angle quotation mark",172:"Not sign",173:"Soft hyphen",174:"Registered sign",175:"Macron",176:"Degree sign",177:"Plus-minus sign",
6
- 178:"Superscript two",179:"Superscript three",180:"Acute accent",181:"Micro sign",182:"Pilcrow sign",183:"Middle dot",184:"Cedilla",185:"Superscript one",186:"Masculine ordinal indicator",187:"Right-pointing double angle quotation mark",188:"Vulgar fraction one quarter",189:"Vulgar fraction one half",190:"Vulgar fraction three quarters",191:"Inverted question mark",192:"Latin capital letter A with grave",193:"Latin capital letter A with acute",194:"Latin capital letter A with circumflex",195:"Latin capital letter A with tilde",
7
- 196:"Latin capital letter A with diaeresis",197:"Latin capital letter A with ring above",198:"Latin capital letter AE",199:"Latin capital letter C with cedilla",200:"Latin capital letter E with grave",201:"Latin capital letter E with acute",202:"Latin capital letter E with circumflex",203:"Latin capital letter E with diaeresis",204:"Latin capital letterI with grave",205:"Latin capital letter I with acute",206:"Latin capital letter I with circumflex",207:"Latin capital letter I with diaeresis",208:"Latin capital letter ETH",
8
- 209:"Latin capital letter N with tilde",210:"Latin capital letter O with grave",211:"Latin capital letter O with acute",212:"Latin capital letter O with circumflex",213:"Latin capital letter O with tilde",214:"Latin capital letter O with diaeresis",215:"Multiplication sign",216:"Latin capital letter O with stroke",217:"Latin capital letter U with grave",218:"Latin capital letter U with acute",219:"Latin capital letter U with circumflex",220:"Latin capital letter U with diaeresis",221:"Latin capital letter Y with acute",
9
- 222:"Latin capital letter THORN",223:"Latin small letter SHARP S",224:"Latin small letter A with grave",225:"Latin small letter A with acute",226:"Latin small letter A with circumflex",227:"Latin small letter A with tilde",228:"Latin small letter A with diaeresis",229:"Latin small letter A with ring above",230:"Latin small letter AE",231:"Latin small letter C with cedilla",232:"Latin small letter E with grave",233:"Latin small letter E with acute",234:"Latin small letter E with circumflex",235:"Latin small letter E with diaeresis",
10
- 236:"Latin small letter I with grave",237:"Latin small letter I with acute",238:"Latin small letter I with circumflex",239:"Latin small letter I with diaeresis",240:"Latin small letter ETH",241:"Latin small letter N with tilde",242:"Latin small letter O with grave",243:"Latin small letter O with acute",244:"Latin small letter O with circumflex",245:"Latin small letter O with tilde",246:"Latin small letter O with diaeresis",247:"Division sign",248:"Latin small letter O with stroke",249:"Latin small letter U with grave",
11
- 250:"Latin small letter U with acute",251:"Latin small letter U with circumflex",252:"Latin small letter U with diaeresis",253:"Latin small letter Y with acute",254:"Latin small letter THORN",255:"Latin small letter Y with diaeresis",256:"Latin capital letter A with macron",257:"Latin small letter A with macron",258:"Latin capital letter A with breve",259:"Latin small letter A with breve",260:"Latin capital letter A with ogonek",261:"Latin small letter A with ogonek",262:"Latin capital letter C with acute",
12
- 263:"Latin small letter C with acute",264:"Latin capital letter C with circumflex",265:"Latin small letter C with circumflex",266:"Latin captial letter C with dot above",267:"Latin small letter C with dot above",268:"Latin capital letter C with caron",269:"Latin small letter C with caron",270:"Latin capital letter D with caron",271:"Latin small letter D with caron",272:"Latin capital letter D with stroke",273:"Latin small letter D with stroke",274:"Latin capital letter E with macron",275:"Latin small letter E with macron",
13
- 276:"Latin capital letter E with breve",277:"Latin small letter E with breve",278:"Latin capital letter E with dot above",279:"Latin small letter E with dot above",280:"Latin capital letter E with ogonek",281:"Latin small letter E with ogonek",282:"Latin capital letter E with caron",283:"Latin small letter E with caron",284:"Latin capital letter G with circumflex",285:"Latin small letter G with circumflex",286:"Latin capital letter G with breve",287:"Latin small letter G with breve",288:"Latin capital letter G with dot above",
14
- 289:"Latin small letter G with dot above",290:"Latin capital letter G with cedilla",291:"Latin small letter G with cedilla",292:"Latin capital letter H with circumflex",293:"Latin small letter H with circumflex",294:"Latin capital letter H with stroke",295:"Latin small letter H with stroke",296:"Latin capital letter I with tilde",297:"Latin small letter I with tilde",298:"Latin capital letter I with macron",299:"Latin small letter I with macron",301:"Latin small letter I with breve",302:"Latin capital letter I with ogonek",
15
- 303:"Latin small letter I with ogonek",304:"Latin capital letter I with dot above",305:"Latin small letter dotless I",306:"Latin capital ligature IJ",307:"Latin small ligature IJ",308:"Latin capital letter J with circumflex",309:"Latin small letter J with circumflex",310:"Latin capital letter K with cedilla",311:"Latin small letter K with cedilla",312:"Latin small letter KRA",313:"Latin capital letter L with acute",314:"Latin small letter L with acute",315:"Latin capital letter L with cedilla",316:"Latin small letter L with cedilla",
16
- 317:"Latin capital letter L with caron",318:"Latin small letter L with caron",319:"Latin capital letter L with middle dot",320:"Latin small letter L with middle dot",321:"Latin capital letter L with stroke",322:"Latin small letter L with stroke",323:"Latin capital letter N with acute",324:"Latin small letter N with acute",325:"Latin capital letter N with cedilla",326:"Latin small letter N with cedilla",327:"Latin capital letter N with caron",328:"Latin small letter N with caron",329:"Latin small letter N proceded by apostrophe (Depricated)",
17
- 330:"Latin capital letter ENG",331:"Latin small letter ENG",332:"Latin capital letter O with macron",333:"Latin small letter O with macron",334:"Latin capital letter O with breve",335:"Latin small letter O with breve",336:"Latin capital letter O with double acute",337:"Latin small letter O with double acute",338:"Latin capital ligature OE",339:"Latin small ligature OE",340:"Latin capital letter R with acute",341:"Latin small letter R with acute",342:"Latin capital letter R with cedilla",343:"Latin small letter R with cedilla",
18
- 344:"Latin capital letter R with caron",345:"Latin small letter R with caron",346:"Latin capital letter S with acute",347:"Latin small letter S with acute",348:"Latin capital letter S with circumflex",349:"Latin small letter S with circumflex",350:"Latin capital letter S with cedilla",351:"Latin small letter S with cedilla",352:"Latin capital letter S with caron",353:"Latin small letter S with caron",354:"Latin capital letter T with cedilla",355:"Latin small letter T with cedilla",356:"Latin capital letter T with caron",
19
- 357:"Latin small letter T with caron",358:"Latin capital letter T with stroke",359:"Latin small letter T with stroke",360:"Latin capital letter U with tilde",361:"Latin small letter U with tilde",362:"Latin capital letter U with macron",363:"Latin small letter U with macron",364:"Latin capital letter U with breve",365:"Latin small letter U with breve",366:"Latin capital letter U with ring above",367:"Latin small letter U with ring above",368:"Latin capital letter U with double acute",369:"Latin small letter U with double acute",
20
- 370:"Latin capital letter U with ogonek",371:"Latin small letter U with ogonek",372:"Latin capital letter W with circumflex",373:"Latin small letter W with circumflex",374:"Latin capital letter Y with circumflex",375:"Latin small letter Y with circumflex",376:"Latin capital letter Y with diaeresis",377:"Latin capital letter Z with acute",378:"Latin small letter Z with acute",379:"Latin capital letter Z with dot above",380:"Latin small letter Z with dot above",381:"Latin capital letter Z with caron",
21
- 382:"Latin small letter Z with caron",383:"Latin small letter Long S",384:"Latin small letter B with stroke",385:"Latin capital letter B with hook",386:"Latin capital letter B with topbar",387:"Latin small letter B with topbar",388:"Latin capital letter TONE SIX",389:"Latin small letter TONE SIX",390:"Latin capital letter Open O",391:"Latin capital letter C with hook",392:"Latin small letter C with hook",393:"Latin capital letter AFRICAN D",394:"Latin capital letter D with hook",395:"Latin capital letter D with topbar",
22
- 396:"Latin small letter D with topbar",397:"Latin small letter turned DELTA",398:"Latin capital letter reversed E",399:"Latin capital letter SCHWA",400:"Latin capital letter Open E",401:"Latin capital letter F with hook",402:"Latin small letter F with hook",403:"Latin capital letter G with hook",404:"Latin capital letter GAMMA",405:"Latin small letter HV",406:"Latin capital letter IOTA",407:"Latin capital letter I with stroke",409:"Latin small letter K with hook",410:"Latin small letter L with bar",
23
- 411:"Latin letter LAMBDA BAR",412:"Latin capital letter turned M",413:"Latin capital letter N with left hook",414:"Latin small letter N with long right LEG",415:"Latin capital letter O with middle tilde",416:"Latin capital letter O with horn",417:"Latin small letter O with horn",418:"Latin capital letter OI",419:"Latin small letter OI",420:"Latin capital letter P with hook",421:"Latin small letter P with hook",422:"Latin letter YR",423:"Latin capital letter TONE TWO",424:"Latin small letter TONE TWO",
24
- 425:"Latin capital letter ESH",426:"Latin letter reversed ESH LOOP",427:"Latin small letter T with palatal hook",428:"Latin capital letter T with hook",429:"Latin small letter T with hook",430:"Latin capital letter T with retroflex hook",431:"Latin capital letter U with horn",432:"Latin small letter U with horn",433:"Latin capital letter UPSILON",434:"Latin capital letter V with hook",435:"Latin capital letter Y with hook",436:"Latin small letter Y with hook",437:"Latin capital letter Z with stroke",
25
- 438:"Latin small letter Z with stroke",439:"Latin capital letter EZH",440:"Latin capital letter EZH reversed",441:"Latin small letter EZH reversed",442:"Latin small letter EZH with tail",443:"Latin letter TWO with stroke",444:"Latin capital letter Tone Five",445:"Latin small letter Tone Five",446:"Latin letter inversed GLOTTAL STOP with stroke",447:"Latin letter WYNN",448:"Latin letter DENTAL CLICK",449:"Latin letter LATERAL CLICK",450:"Latin letter ALVEOLAR CLICK",451:"Latin letter RETROFLEX CLICK",
26
- 452:"Latin capital letter DZ with caron",453:"Latin capital letter D with small letter Z with caron",454:"Latin small letter DZ with caron",455:"Latin capital letter LJ",456:"Latin capital letter L with small letter J",457:"Latin capital letter NJ",458:"Latin capital letter N with small letter J",459:"Latin small letter NJ",460:"Latin capital letter A wth caron",461:"Latin capital letter A with caron",462:"Latin small letter A with caron",463:"Latin capital letter I with caron",464:"Latin small letter I with caron",
27
- 465:"Latin capital letter O with caron",466:"Latin small letter O with caron",467:"Latin capital letter U with caron",468:"Latin small letter U with caron",469:"Latin capital letter U with diaeresis and macron",470:"Latin small letter U with diaeresis and macron",471:"Latin capital letter U with diaeresis and acute",472:"Latin small letter U with diaeresis and acute",473:"Latin capital letter U with diaeresis and caron",474:"Latin small letter U with diaeresis and caron",475:"Latin capital letter U with diaeresis and grave",
28
- 476:"Latin small letter U with diaeresis and grave",477:"Latin small letter turned E",478:"Latin capital letter A with diaeresis and macron",479:"Latin small letter A with diaeresis and macron",480:"Latin capital letter A with dot above and macron",481:"Latin small letter A with dot above and macron",482:"Latin capital letter AE with macron",483:"Latin small letter AE with macron",484:"Latin capital letter G with stroke",485:"Latin small letter G with stroke",486:"Latin capital letter G with caron",
29
- 487:"Latin small letter G with caron",488:"Latin capital letter K with caron",489:"Latin small letter K with caron",490:"Latin capital letter O with ogonek",491:"Latin small letter O with ogonek",492:"Latin capital letter O with ogonek and macron",493:"Latin small letter O with ogonek and macron",494:"Latin capital letter EZH with caron",495:"Latin small letter EZH with caron",496:"Latin small letter J with caron",501:"Latin small letter G with acute",502:"Latin capital letter HWAIR",503:"Latin capital letter WYNN",
30
- 505:"Latin small letter N with grave",513:"Latin small letter A with double grave",515:"Latin small letter A with inverted breve",517:"Latin small letter E with double grave",519:"Latin small letter E with inverted breve",521:"Latin small letter I with double grave",523:"Latin small letter I with inverted breve",525:"Latin small letter O with double grave",527:"Latin small letter O with inverted breve",529:"Latin small letter R with double grave",531:"Latin small letter R with inverted breve",533:"Latin small letter U with double grave",
31
- 535:"Latin small letter U with inverted breve",537:"Latin small letter S with comma below",539:"Latin small letter T with comma below",541:"Latin small letter YOGH",543:"Latin small letter H with caron",544:"Latin capital letter N with long right leg",545:"Latin small letter D with curl",547:"Latin small letter OU",549:"Latin small letter Z with hook",551:"Latin small letter A with dot above",553:"Latin small letter E with cedilla",559:"Latin small letter O with dot above",563:"Latin small letter Y with macron",
32
- 564:"Latin small letter L with curl",565:"Latin small letter N with curl",566:"Latin small letter T with curl",567:"Latin small letter dotless J",568:"Latin small letter DB digraph",569:"Latin small letter QP digraph",570:"Latin capital letter A with stroke",571:"Latin capital letter C with stroke",572:"Latin small letter C with stroke",573:"Latin capital letter L with bar",574:"Latin capital letter T with diagonal stroke",575:"Latin small letter S with swash tail",576:"Latin small letter Z with swash tail",
33
- 577:"Latin capital letter GLOTTAL STOP",578:"Latin small letter GLOTTAL STOP",579:"Latin capital letter B with stroke",580:"Latin capital letter U bar",581:"Latin capital letter turned V",582:"Latin capital letter E with stroke",583:"Latin small letter E with stroke",584:"Latin capital letter J with stroke",585:"Latin small letter J with stroke",586:"Latin capital letter small Q with hook tail",587:"Latin small letter Q with hook tail",588:"Latin capital letter R with stroke",589:"Latin small letter R with stroke",
34
- 590:"Latin capital letter Y with stroke",591:"Latin small letter Y with stroke",592:"Latin small letter turned A",593:"Latin small letter ALPHA",594:"Latin small letter turned ALPHA",595:"Latin small letter B with hook",596:"Latin small letter open O",597:"Latin small letter C with curl",598:"Latin small letter D with tail",599:"Latin small letter D with hook",600:"Latin small letter reversed E",601:"Latin small letter SCHWA",603:"Latin small letter open E",604:"Latin small letter reversed open E",
35
- 605:"Latin small letter reversed open E with hook",606:"Latin small letter closed reversed open E",607:"Latin small letter DOTLESS J with stroke",608:"Latin small letter G with hook",609:"Latin small letter script G",610:"Latin letter small capital G",611:"Latin small letter GAMMA",612:"Latin small letter RAMS horn",613:"Latin small letter turned H",614:"Latin small letter H with hook",616:"Latin small letter I with stroke",617:"Latin small letter IOTA",618:"Latin letter small capital I",619:"Latin small letter L with middle tilde",
36
- 620:"Latin small letter L with belt",621:"Latin small letter L with retroflex hook",622:"Latin small letter LEZH",623:"Latin small letter turned M",624:"Latin small letter turned M with long leg",625:"Latin small letter M with hook",626:"Latin small letter N with left hook",627:"Latin small letter N with retroflex hook",628:"Latin letter small capital N",629:"Latin small letter barred O",630:"Latin letter small capital OE",631:"Latin small letter closed OMEGA",632:"Latin small letter PHI",633:"Latin small letter turned R",
37
- 634:"Latin small letter turned R with long leg",635:"Latin small letter turned R with hook",636:"Latin small letter R with long leg",637:"Latin small letter R with tail",638:"Latin small letter R with fishhook",639:"Latin small letter reversed R with fishhook",640:"Latin letter small capital R",641:"Latin letter small capital inverted R",642:"Latin small letter S with hook",643:"Latin small letter ESH",645:"Latin small letter SQUAT reversed ESH",647:"Latin small letter turned T",648:"Latin small letter T with retroflex hook",
38
- 649:"Latin small letter U bar",650:"Latin small letter UPSILON",651:"Latin small letter V with hook",652:"Latin small letter turned V",653:"Latin small letter turned W",654:"Latin small letter turned Y",655:"Latin letter small capital Y",656:"Latin small letter Z with retroxflex hook",657:"Latin small letter Z with curl",658:"Latin small letter EZH",660:"Latin letter GLOTTAL STOP",661:"Latin letter PHARYNGEAL VOICED FRICATIVE",662:"Latin letter inverted GLOTTAL STOP",663:"Latin letter stretched C",
39
- 664:"Latin letter BULLSEYE",665:"Latin letter small capital B",666:"Latin small letter closed EPSILON",667:"Latin letter small capital G with hook",668:"Latin letter small capital H",669:"Latin small letter J with crossed-tail",670:"Latin small letter turned K",671:"Latin letter small capital L",672:"Latin small letter Q with hook",675:"Phonetic Digraphs",684:"Latin letter BILABIAL PERCUSSIVE",685:"Latin letter BIDENTAL PERCUSSIVE",686:"Latin small letter turned H with fishhook",688:"Phonetic Modifiers Derived from Latin Letters",
40
- 690:"Modifier letter small J",691:"Modifier letter small R",692:"Modifier letter small turned R",694:"Modifier letter small capital inverted R",695:"Modifier letter small W",696:"Modifier letter small Y",697:"Phonetic Modifiers",698:"Modifier letter DOUBLE PRIME",699:"Modifier letter turned COMMA",700:"Modifier letter APOSTROPHE",701:"Modifier letter reversed COMMA",703:"Modifier letter left half ring",704:"Modifier letter GLOTTAL STOP",705:"Modifier letter reversed GLOTTAL STOP",706:"Modifier letter ARROWHEADS",
41
- 710:"Modifier letter circumflex accent",711:"Mandarin chinese third tone",712:"Modifier letter vertical line",713:"Mandarin chinese first tone",714:"Mandarin chinese second tone",715:"Mandarin chinese fourth tone",716:"Modifier letter low VERTICAL LINE",717:"Modifier letter low MACRON",718:"Modifier letter low grave ACCENT",719:"Modifier letter low acute ACCENT",720:"Modifier letter TRIANGULAR COLON",721:"Modifier letter HALF TRIANGULAR COLON",723:"Modifier letter CENTRED LEFT HALF ring",724:"Modifier letter UP TACK",
42
- 726:"Modifier letter PLUS sign",727:"Modifier letter MINUS sign",728:"Breve",729:"Mandarin chinese fifth or neutral tone",730:"Ring above",731:"OGONEK",732:"Small TILDE",733:"Double acute accent",734:"Modifier letter RHOTIC hook",735:"Modifier letter CROSS accent",736:"Modifier letter small GAMMA",737:"Modifier letter small L",738:"Modifier letter small S",739:"Modifier letter small X",740:"Modifier letter small reversed GLOTTAL STOP",741:"Tone Letters",748:"Modifier letter VOICING",749:"Modifier letter UNASPIRATED",
43
- 750:"Modifier letter DOUBLE APOSTROPHE",751:"UPA Modifiers",768:"Combining grave accent",769:"Combining acute accent",770:"Combining circumflex accent",771:"Combining Tilde",772:"Combining macron",773:"Combining Overline",774:"Combining Breve",775:"Combining dot above",776:"Double dot above",777:"Combining hook above",778:"Combining ring above",779:"Combining double acute accent",780:"Combining caron",781:"Combining vertical line above",782:"Combining double vertical line above",783:"Combining double grave accent",
44
- 784:"Combining CANDRABINDU",785:"Combining inverted breve",786:"Cedilla above",787:"Combining COMMA above",788:"Combining reversed COMMA above",789:"Combining COMMA above right",790:"Combining grave accent below",791:"Combining acute accent below",792:"Combining left TACK below",793:"Combining right TACK below",794:"Combining left ANGLE above",795:"Combining horn",796:"Combining left half ring below",797:"Combining up TACK below",798:"Combining down TACK below",799:"Combining PLUS sign below",800:"Combining MINUS sign below",
45
- 801:"Combining PALATALIZED hook below",802:"Combining RETROFLEX hook below",803:"Combining DOT below",804:"Combining DIAERESIS below",805:"Combining ring below",806:"Combining COMMA below",807:"Combining CEDILLA",808:"Combining ogonek",809:"Combining vertical line below",810:"Combining BRIDGE below",811:"Combining inverted double ARCH below",812:"Combining CARON below",813:"Combining CIRCUMFLEX accent below",814:"Combining BREVE below",815:"Combining inverted BREVE below",816:"Combining TILDE below",
46
- 817:"Combining MACRON below",818:"Underscore",819:"Double underscore",820:"Combining TILDE overlay",821:"Combining short stroke overlay",822:"Combining long stroke overlay",823:"Combining short SOLIDUS overlay",824:"Combining long SOLIDUS overlay",825:"Combining right half ring below",826:"Combining inverted BRIDGE below",827:"Combining SQUARE below",828:"Combining SEAGULL below",829:"Combining X above",830:"Combining vertical TILDE",831:"Combining double OVERLINE",832:"Combining grave TONE MARK",
47
- 833:"Combining acute TONE MARK",834:"Combining Greek PERISPOMENI",835:"Combining Greek KORONIS",836:"Combining Greek DIALYTIKA TONOS",837:"Combining Greek YPOGEGRAMMENI",838:"Combining BRIDGE above",839:"Combining EQUALS sign below",840:"Combining double VERTICAL LINE below",841:"Combining left ANGLE below",842:"Combining NOT TILDE above",843:"Combining HOMOTHETIC above",844:"Combining ALMOST EQUAL TO above",845:"Combining left right ARROW below",846:"Combining UPWARDS ARROW below",847:"Combining GRAPHEME JOINER",
48
- 848:"Combining right ARROWHEAD above",849:"Combining Left half ring above",850:"Combining FERMATA",851:"Combining X below",852:"Combining left ARROWHEAD below",853:"Combining right ARROWHEAD below",855:"Combining right half ring above",856:"Combining DOT above right",857:"Combining ASTERISK below",858:"Combining double ring below",859:"Combining ZIGZAG above",860:"Combining double BREVE below",861:"Combining double BREVE",862:"Combining double MACRON",863:"Combining double MACRON below",864:"Combining double TILDE",
49
- 865:"Combining double inverted BREVE",866:"Combining double RIGHTWARDS ARROW below",867:"Combining Latin small letter A",868:"Combining Latin small letter E",869:"Combining Latin small letter I",870:"Combining Latin small letter O",871:"Combining Latin small letter U",872:"Combining Latin small letter C",873:"Combining Latin small letter D",874:"Combining Latin small letter H",875:"Combining Latin small letter M",876:"Combining Latin small letter R",877:"Combining Latin small letter T",878:"Combining Latin small letter V",
50
- 879:"Combining Latin small letter X",884:"Greek Punctuation and Signs",894:"Greek Question Mark",913:"Greek Capital Letters",915:"GAMMA function",945:"Greek Small Letters",960:"Greek small letter PI",976:"Greek BETA SYMBOL",977:"Greek THETA SYMBOL",981:"Greek PHI SYMBOL",982:"Greek PI SYMBOL",984:"Greek Archaic Letters",994:"Coptic Letters Derived from Demotic",1010:"Greek small letter lunate sigma",1013:"Greek LUNATE EPSILON SYMBOL",1014:"Greek reversed LUNATE EPSILON SYMBOL",1024:"Cyrillic Capital Letters",
51
- 1040:"Russian Alphabet",1072:"Cyrillic Small Letters",1104:"Cyrillic Extensions",1120:"Cyrillic Historic Letters",1155:"Cyrillic Combining Characters",1162:"Cyrillic Extensions",1280:"Cyrillic Supplement",1328:"Armenian Alphabet",1329:"Armenian Capital Letters",1369:"Armenian modifier letter left half ring",1370:"Armenian modifier letter right half ring",1371:"Armenian shesht",1372:"Armenian batsaganchakan nshan",1373:"Armenian bowt",1374:"Armenian hartsakan nshan",1375:"Armenian patiw",1377:"Armenian Small Letters",
52
- 1417:"Armenian vertsaket",1418:"Armenian yentamna",1424:"Hebrew",1425:"Hebrew Cantillation Marks",1456:"Hebrew Points and Punctuation",1488:"Hebrew Alphabet",1520:"Yiddish Digraphs",1536:"Arabic Subtending Marks",1547:"Afghani sign",1548:"Arabic Comma",1549:"Arabic Date Separator",1552:"Arabic Honorifics",1563:"Arabic Semicolon",1567:"Arabic Question Mark",1569:"Arabic Alphabet",1600:"Arabic kashida",1611:"Arabic Harakat",1619:"Arabic Combining Marks",1632:"Arabic-Indic Digits",1643:"Arabic Decimal Separator",
53
- 1644:"Arabic phrase separator",1645:"Arabic Five Pointed Star",1649:"Extended Arabic Letters",1728:"Arabic letter hamzah on ha",1748:"Arabic Full Stop",1750:"Arabic Koranic Annotation Signs",1776:"Eastern Arabic-Indic Digits",1792:"Syriac Punctuation and Signs",1807:"Syriac Abbreviation Mark",1808:"Syriac Letters",1840:"Syriac Points",1872:"Extended Arabic Letters",1920:"Thaana",1984:"NKo",2048:"Samaritan",2112:"Mandaic",2304:"Devanagari",2305:"Devanagari sign CANDRABINDU",2306:"Devanagari sign ANUSVARA",
54
- 2307:"Devanagari sign VISARGA",2308:"Devanagari Independent Vowels",2325:"Devanagari Consonants",2364:"Devanagari sign NUKTA",2365:"Devanagari sign AVAGRAHA",2366:"Devanagari Dependent Vowel Signs",2381:"Devanagari sign VIRAMA",2384:"Devanagari OM",2385:"Devanagari Extensions",2404:"Devanagari purna viram",2405:"Devanagari deergh viram",2406:"Devanagari Digits",2416:"Devanagari ABBREVIATION sign",2432:"Bengali",2437:"Bengali Independent Vowels",2453:"Bengali Consonants",2494:"Bengali Dependent Vowel Signs",
55
- 2509:"bengali hasant",2534:"Bengali Digits",2546:"Bengali Rupee Mark",2547:"Bengali RUPEE sign",2554:"Bengali ISSHAR",2560:"Gurmukhi",2565:"Gurmukhi Independent Vowels",2581:"Gurmukhi Consonants",2622:"Gurmukhi Dependent Vowel Signs",2662:"Gurmukhi Digits",2672:"Gurmukhi TIPPI",2673:"Gurmukhi ADDAK",2676:"Gurmukhi EK ONKAR",2688:"Gujarati",2693:"Gujarati Independent Vowels",2709:"Gujarati Consonants",2750:"Gujarati Dependent Vowel Signs",2790:"Gujarati Digits",2801:"GUJARATI RUPEE sign",2816:"Oriya",
56
- 2821:"Oriya Independent Vowels",2837:"Oriya Consonants",2878:"Oriya Dependent Vowel Signs",2918:"Oriya Digits",2928:"ORIYA ISSHAR",2944:"Tamil",2947:"Tamil aytham",2949:"Tamil Independent Vowels",2965:"Tamil Consonants",3006:"Tamil Dependent Vowel Signs",3047:"Tamil Digits",3059:"Tamil DAY sign",3060:"Tamil maatham",3061:"Tamil varudam",3062:"Tamil patru",3063:"Tamil varavu",3064:"Tamil merpadi",3065:"Tamil rupai",3066:"Tamil enn",3072:"Telugu",3074:"Telugu sunna",3077:"Telugu Independent Vowels",
57
- 3093:"Telugu Consonants",3134:"Telugu Dependent Vowel Signs",3174:"Telugu Digits",3200:"Kannada",3205:"Kannada Independent Vowels",3221:"Kannada Consonants",3262:"Kannada Dependent Vowel Signs",3302:"Kannada Digits",3313:"Vedic Signs",3328:"Malayalam",3333:"Malayalam Independent Vowels",3349:"Malayalam Consonants",3390:"Malayalam Dependent Vowel Signs",3405:"Malayalam chandrakkala",3430:"Malayalam Digits",3450:"Malayalam Chillu Letters",3456:"Sinhala",3461:"Sinhala Independent Vowels",3482:"Sinhala Consonants",
58
- 3530:"Sinhala sign AL-LAKUNA",3535:"Sinhala Dependent Vowel Signs",3584:"Thai",3585:"Thai Consonants",3632:"Thai Vowels",3647:"Thai CURRENCY SYMBOL BAHT",3656:"Thai Marks and Signs",3660:"Thai CHARACTER THANTHAKHAT",3661:"Thai CHARACTER NIKHAHIT",3662:"Thai CHARACTER YAMAKKAN",3663:"Thai CHARACTER FONGMAN",3664:"Thai Digits",3674:"Thai CHARACTER ANGKHANKHU",3675:"Thai CHARACTER KHOMUT",3712:"Lao",3713:"Lao Consonants",3759:"Lao ELLIPSIS",3760:"Lao Vowels",3784:"Lao Marks and Signs",3788:"Lao CANCELLATION MARK",
59
- 3789:"Lao NIGGAHITA",3792:"Lao Digits",3840:"Tibetan SYLLABLE OM",3841:"Tibetan Head Marks",3848:"Tibetan Marks and Signs",3851:"Tibetan MARK INTERSYLLABIC TSHEG",3852:"Tibetan MARK DELIMITER TSHEG BSTAR",3861:"Tibetan Astrological Signs",3872:"Tibetan Digits",3882:"Tibetan Digits Minus Half",3892:"Tibetan Marks and Signs",3904:"Tibetan Consonants",3953:"Tibetan Dependent Vowel Signs",3966:"tibetan anusvara",3967:"tibetan visarga",3970:"Tibetan Marks and Signs",3972:"tibetan srog med",3973:"Tibetan MARK PALUTA",
60
- 3984:"Tibetan Subjoined Consonants",4030:"Tibetan Marks and Signs",4031:"Tibetan KU RU KHA BZHI MIG CAN",4032:"Tibetan Cantillation Signs",4036:"Tibetan Symbols",4053:"Svasti Signs",4096:"Myanmar Consonants",4129:"Myanmar Independent Vowels",4140:"Myanmar Dependent Vowel Signs",4150:"Myanmar Signs",4151:"Myanmar sign DOT below",4153:"myanmar killer",4160:"Myanmar Digits",4170:"Myanmar Punctuation and Signs",4256:"Georgian Khutsuri",4304:"Georgian Mkhedruli",4337:"Georgian Extensions",4347:"Georgian PARAGRAPH SEPARATOR",
61
- 4352:"Korean Combining Alphabet",4447:"HANGUL CHOSEONG FILLER",4448:"HANGUL JUNGSEONG FILLER",4608:"Ethiopic Syllables",4957:"Ethiopic Combining Marks",4961:"Ethiopic Punctuation",4962:"Ethiopic FULL STOP",4963:"Ethiopic COMMA",4964:"Ethiopic SEMICOLON",4965:"Ethiopic COLON",4966:"Ethiopic PREFACE COLON",4967:"Ethiopic Question Mark",4968:"Ethiopic PARAGRAPH SEPARATOR",4969:"Ethiopic Digits",4992:"Ethiopic Supplement",5024:"Cherokee",5120:"Unified Canadian Aboriginal Syllabics",5741:"Canadian Syllabics Punctuation",
62
- 5742:"CANADIAN SYLLABICS FULL STOP",5760:"Ogham",5761:"Ogham Traditional Letters",5781:"Ogham Forfeda Supplement",5787:"Ogham Punctuation",5792:"Runic",5867:"Runic Punctuation",5870:"Runic Golden Numbers",5888:"Tagalog",5908:"TAGALOG sign VIRAMA",5920:"Hanunoo",5940:"HANUNOO sign PAMUDPOD",5941:"PHILIPPINE SINGLE PUNCTUATION",5942:"PHILIPPINE double PUNCTUATION",5952:"Buhid",5984:"Tagbanwa",6016:"Khmer Consonants",6053:"Khmer Independent Vowels",6070:"Khmer Dependent Vowel Signs",6086:"khmer anusvara",
63
- 6087:"khmer srak ah",6107:"KHMER CURRENCY SYMBOL RIEL",6112:"Khmer Digits",6128:"Khmer Numeric Symbols for Divination",6144:"Mongolian BIRGA",6145:"Mongolian ELLIPSIS",6146:"Mongolian COMMA",6147:"Mongolian FULL STOP",6148:"Mongolian COLON",6149:"Mongolian FOUR DOTS",6150:"Mongolian TODO SOFT HYPHEN",6151:"Mongolian SIBE SYLLABLE BOUNDARY MARKER",6152:"Mongolian MANCHU COMMA",6153:"Mongolian MANCHU FULL STOP",6154:"Mongolian NIRUGU",6155:"Mongolian FREE VARIATION SELECTOR ONE",6156:"Mongolian FREE VARIATION SELECTOR TWO",
64
- 6157:"Mongolian FREE VARIATION SELECTOR THREE",6158:"Mongolian VOWEL SEPARATOR",6160:"Mongolian Digits",6176:"Mongolian Basic Letters",6211:"Mongolian Extensions",6320:"Unified Canadian Aboriginal Syllabics Extended",6400:"Limbu",6457:"Limbu Signs",6468:"LIMBU EXCLAMATION MARK",6469:"LIMBU Question Mark",6470:"Limbu Digits",6480:"Tai Le",6528:"New Tai Lue",6608:"New Tai Lue Digits",6624:"Khmer Symbols",6656:"Buginese",6688:"Tai Tham",6912:"Balinese",6992:"Balinese Digits",7009:"Balinese Musical Symbols",
65
- 7040:"Sundanese",7104:"Batak",7168:"Lepcha",7248:"Ol Chiki",7376:"Vedic Extensions",7424:"Latin letter small capital A",7425:"Latin letter small capital AE",7426:"Latin small letter turned AE",7427:"Latin letter small capital BARRED B",7428:"Latin letter small capital C",7429:"Latin letter small capital D",7430:"Latin letter small capital ETH",7431:"Latin letter small capital E",7432:"Latin small letter turned OPEN E",7433:"Latin small letter turned I",7434:"Latin letter small capital J",7435:"Latin letter small capital K",
66
- 7436:"Latin letter small capital L with stroke",7437:"Latin letter small capital M",7438:"Latin letter small capital reversed N",7439:"Latin letter small capital O",7440:"Latin letter small capital OPEN O",7441:"Latin small letter SIDEWAYS O",7442:"Latin small letter SIDEWAYS OPEN O",7443:"Latin small letter SIDEWAYS O with stroke",7444:"Latin small letter turned OE",7445:"Latin letter small capital OU",7446:"Latin small letter TOP half O",7447:"Latin small letter BOTTOM half O",7448:"Latin letter small capital P",
67
- 7449:"Latin letter small capital reversed R",7450:"Latin letter small capital turned R",7451:"Latin letter small capital T",7452:"Latin letter small capital U",7453:"Latin small letter SIDEWAYS U",7454:"Latin small letter SIDEWAYS DIAERESIZED U",7455:"Latin small letter SIDEWAYS turned M",7456:"Latin letter small capital V",7457:"Latin letter small capital W",7458:"Latin letter small capital Z",7459:"Latin letter small capital EZH",7460:"Latin letter VOICED LARYNGEAL SPIRANT",7461:"Latin letter AIN",
68
- 7468:"Modifier letter Extensions",7522:"Latin subscript small letter I",7523:"Latin subscript small letter R",7524:"Latin subscript small letter U",7525:"Latin subscript small letter V",7627:"Contour Tone Marks",7635:"Latin Medieval Superscript Letter Diacritics",7676:"Combining double inverted BREVE below",7680:"Latin Extended Additional",7681:"Latin small letter A with ring below",7683:"Latin small letter B with dot above",7685:"Latin small letter B with DOT below",7687:"Latin small letter B with LINE below",
69
- 7691:"Latin small letter D with dot above",7693:"Latin small letter D with DOT below",7695:"Latin small letter D with LINE below",7697:"Latin small letter D with cedilla",7699:"Latin small letter D with CIRCUMFLEX below",7705:"Latin small letter E with CIRCUMFLEX below",7707:"Latin small letter E with TILDE below",7711:"Latin small letter F with dot above",7713:"Latin small letter G with macron",7715:"Latin small letter H with dot above",7717:"Latin small letter H with DOT below",7719:"Latin small letter H with diaeresis",
70
- 7721:"Latin small letter H with cedilla",7723:"Latin small letter H with BREVE below",7725:"Latin small letter I with TILDE below",7729:"Latin small letter K with acute",7731:"Latin small letter K with DOT below",7733:"Latin small letter K with LINE below",7735:"Latin small letter L with DOT below",7739:"Latin small letter L with LINE below",7741:"Latin small letter L with CIRCUMFLEX below",7743:"Latin small letter M with acute",7745:"Latin small letter M with dot above",7747:"Latin small letter M with DOT below",
71
- 7749:"Latin small letter N with dot above",7751:"Latin small letter N with DOT below",7753:"Latin small letter N with LINE below",7755:"Latin small letter N with CIRCUMFLEX below",7765:"Latin small letter P with acute",7767:"Latin small letter P with dot above",7769:"Latin small letter R with dot above",7771:"Latin small letter R with DOT below",7775:"Latin small letter R with LINE below",7777:"Latin small letter S with dot above",7779:"Latin small letter S with DOT below",7787:"Latin small letter T with dot above",
72
- 7789:"Latin small letter T with DOT below",7791:"Latin small letter T with LINE below",7793:"Latin small letter T with CIRCUMFLEX below",7795:"Latin small letter U with DIAERESIS below",7797:"Latin small letter U with TILDE below",7799:"Latin small letter U with CIRCUMFLEX below",7805:"Latin small letter V with tilde",7807:"Latin small letter V with DOT below",7809:"Latin small letter W with grave",7811:"Latin small letter W with acute",7813:"Latin small letter W with diaeresis",7815:"Latin small letter W with dot above",
73
- 7817:"Latin small letter W with DOT below",7819:"Latin small letter X with dot above",7821:"Latin small letter X with diaeresis",7823:"Latin small letter Y with dot above",7825:"Latin small letter Z with circumflex",7827:"Latin small letter Z with DOT below",7829:"Latin small letter Z with LINE below",7830:"Latin small letter H with LINE below",7831:"Latin small letter T with diaeresis",7832:"Latin small letter W with ring above",7833:"Latin small letter Y with ring above",7834:"Latin small letter A with right half ring",
74
- 7835:"Latin small letter long S with DOT above",7841:"Latin small letter A with DOT below",7843:"Latin small letter A with hook above",7865:"Latin small letter E with DOT below",7867:"Latin small letter E with hook above",7869:"Latin small letter E with tilde",7881:"Latin small letter I with hook above",7883:"Latin small letter I with DOT below",7885:"Latin small letter O with DOT below",7887:"Latin small letter O with hook above",7909:"Latin small letter U with DOT below",7911:"Latin small letter U with hook above",
75
- 7923:"Latin small letter Y with grave",7925:"Latin small letter Y with DOT below",7927:"Latin small letter Y with hook above",7929:"Latin small letter Y with tilde",7936:"Greek Extended",8192:"Symbols Area",8193:"EM QUAD",8193:"mutton quad",8193:"EM QUAD",8193:"mutton quad",8194:"EN SPACE",8194:"nut",8194:"EN SPACE",8195:"EM SPACE",8195:"mutton",8195:"EM SPACE",8196:"thick space",8196:"THREE-PER-EM SPACE",8196:"thick space",8196:"THREE-PER-EM SPACE",8197:"FOUR-PER-EM SPACE",8197:"mid space",8197:"FOUR-PER-EM SPACE",
76
- 8197:"mid space",8198:"SIX-PER-EM SPACE",8199:"FIGURE SPACE",8200:"PUNCTUATION SPACE",8201:"THIN SPACE",8202:"HAIR SPACE",8203:"ZERO WIDTH SPACE",8203:"zwsp",8204:"Format Characters",8204:"ZERO WIDTH NON-JOINER",8204:"zwnj",8205:"ZERO WIDTH JOINER",8205:"zwj",8206:"Left-TO-RIGHT MARK",8206:"lrm",8207:"RIGHT-TO-LEFT MARK",8207:"rlm",8208:"Dashes",8208:"HYPHEN",8209:"NON-BREAKING HYPHEN",8210:"FIGURE DASH",8211:"EN DASH",8212:"EM DASH",8213:"HORIZONTAL BAR",8213:"quotation dash",8213:"HORIZONTAL bar",
77
- 8213:"quotation dash",8214:"DOUBLE VERTICAL LINE",8215:"DOUBLE low LINE",8215:"spacing double underscore",8215:"DOUBLE low LINE",8215:"spacing double underscore",8216:"single turned comma quotation mark",8216:"Left SINGLE QUOTATION MARK",8216:"LEFT SINGLE QUOTATION MARK",8216:"single turned comma quotation mark",8216:"Quotation Marks",8216:"LEFT SINGLE QUOTATION MARK",8216:"single turned comma quotation mark",8217:"apostrophe",8217:"single comma quotation mark",8217:"right SINGLE QUOTATION MARK",
78
- 8217:"single comma quotation mark",8217:"RIGHT SINGLE QUOTATION MARK",8217:"single comma quotation mark",8217:"right SINGLE QUOTATION MARK",8218:"low single comma quotation mark",8218:"SINGLE LOW-9 QUOTATION MARK",8218:"low single comma quotation mark",8218:"SINGLE LOW-9 QUOTATION MARK",8218:"low single comma quotation mark",8218:"SINGLE LOW-9 QUOTATION MARK",8219:"single reversed comma quotation mark",8219:"SINGLE HIGH-reversed-9 QUOTATION MARK",8219:"single reversed comma quotation mark",8219:"SINGLE HIGH-reversed-9 QUOTATION MARK",
79
- 8219:"single reversed comma quotation mark",8220:"double turned comma quotation mark",8220:"LEFT double QUOTATION MARK",8220:"double turned comma quotation mark",8220:"Left double QUOTATION MARK",8220:"double turned comma quotation mark",8220:"LEFT double QUOTATION MARK",8220:"double turned comma quotation mark",8221:"double comma quotation mark",8221:"right double QUOTATION MARK",8221:"double comma quotation mark",8221:"right double QUOTATION MARK",8221:"RIGHT double QUOTATION MARK",8222:"low double comma quotation mark",
80
- 8222:"DOUBLE LOW-9 QUOTATION MARK",8222:"low double comma quotation mark",8222:"DOUBLE LOW-9 QUOTATION MARK",8222:"low double comma quotation mark",8223:"double reversed comma quotation mark",8223:"DOUBLE HIGH-reversed-9 QUOTATION MARK",8223:"double reversed comma quotation mark",8223:"DOUBLE HIGH-reversed-9 QUOTATION MARK",8223:"double reversed comma quotation mark",8224:"DAGGER",8225:"DOUBLE DAGGER",8226:"BULLET",8227:"TRIANGULAR BULLET",8228:"ONE DOT LEADER",8229:"TWO DOT LEADER",8230:"three dot leader",
81
- 8230:"HORIZONTAL ELLIPSIS",8230:"three dot leader",8231:"HYPHENATION POINT",8232:"LINE SEPARATOR",8233:"PARAGRAPH SEPARATOR",8234:"Bidirectional Format Characters",8234:"Bidirectional Format Controls",8234:"Directional Format Characters",8234:"LEFT-TO-RIGHT EMBEDDING",8234:"Directional Format Characters",8234:"Left-TO-RIGHT EMBEDDING",8234:"lre",8235:"right-TO-LEFT EMBEDDING",8235:"RIGHT-TO-LEFT EMBEDDING",8235:"rle",8236:"POP DIRECTIONAL FORMATTING",8236:"pdf",8236:"POP DIRECTIONAL FORMATTING",8237:"Left-TO-RIGHT OVERRIDE",
82
- 8237:"lro",8237:"LEFT-TO-RIGHT OVERRIDE",8238:"right-TO-LEFT OVERRIDE",8238:"RIGHT-TO-LEFT OVERRIDE",8238:"rlo",8239:"NARROW NO-BREAK SPACE",8239:"nnbsp",8239:"NARROW NO-BREAK SPACE",8240:"PER MILLE sign",8240:"per thousand",8241:"PER TEN THOUSAND sign",8242:"feet",8242:"minutes",8242:"PRIME",8243:"DOUBLE PRIME",8243:"inches",8243:"DOUBLE PRIME",8243:"seconds",8244:"TRIPLE PRIME",8245:"reversed PRIME",8246:"reversed double PRIME",8247:"reversed TRIPLE PRIME",8248:"CARET",8249:"SINGLE LEFT-POINTING ANGLE QUOTATION MARK",
83
- 8249:"left pointing single guillemet",8249:"SINGLE Left-POINTING ANGLE QUOTATION MARK",8249:"SINGLE LEFT-POINTING ANGLE QUOTATION MARK",8249:"left pointing single guillemet",8249:"SINGLE LEFT-POINTING ANGLE QUOTATION MARK",8250:"SINGLE right-POINTING ANGLE QUOTATION MARK",8250:"right pointing single guillemet",8250:"SINGLE right-POINTING ANGLE QUOTATION MARK",8250:"right pointing single guillemet",8250:"SINGLE RIGHT-POINTING ANGLE QUOTATION MARK",8250:"right pointing single guillemet",8250:"SINGLE right-POINTING ANGLE QUOTATION MARK",
84
- 8251:"japanese kome",8251:"urdu paragraph separator",8251:"REFERENCE MARK",8251:"urdu paragraph separator",8252:"DOUBLE EXCLAMATION MARK",8253:"INTERROBANG",8254:"OVERLINE",8254:"spacing overscore",8255:"greek enotikon",8255:"UNDERTIE",8256:"CHARACTER TIE",8256:"sequence concatenation",8256:"CHARACTER TIE",8257:"CARET INSERTION POINT",8258:"ASTERISM",8259:"HYPHEN BULLET",8260:"FRACTION SLASH",8260:"solidus",8261:"LEFT SQUARE BRACKET with QUILL",8261:"Left SQUARE BRACKET with QUILL",8261:"LEFT SQUARE BRACKET with QUILL",
85
- 8262:"right SQUARE BRACKET with QUILL",8262:"RIGHT SQUARE BRACKET with QUILL",8262:"right SQUARE BRACKET with QUILL",8263:"Double Punctuation for Vertical Text",8263:"DOUBLE Question Mark",8263:"Double Punctuation for Vertical Text",8263:"DOUBLE Question Mark",8263:"Double Punctuation for Vertical Text",8264:"QUESTION EXCLAMATION MARK",8265:"EXCLAMATION Question Mark",8266:"TIRONIAN sign ET",8267:"reversed PILCROW sign",8268:"BLACK LEFTWARDS BULLET",8268:"BLACK LeftWARDS BULLET",8269:"BLACK rightWARDS BULLET",
86
- 8269:"BLACK RIGHTWARDS BULLET",8270:"LOW ASTERISK",8271:"reversed SEMICOLON",8272:"CLOSE UP",8273:"TWO ASTERISKS ALIGNED VERTICALLY",8274:"COMMERCIAL MINUS sign",8274:"med avdrag av",8274:"COMMERCIAL MINUS sign",8274:"piska",8275:"SWUNG DASH",8276:"INVERTED UNDERTIE",8277:"phul",8277:"puspika",8278:"THREE DOT PUNCTUATION",8279:"QUADRUPLE PRIME",8280:"FOUR DOT PUNCTUATION",8281:"FIVE DOT PUNCTUATION",8281:"greek pentonkion",8282:"TWO DOT PUNCTUATION",8283:"FOUR DOT MARK",8284:"DOTTED CROSS",8285:"epidaurean acrophonic symbol three",
87
- 8285:"TRICOLON",8286:"VERTICAL FOUR DOTS",8287:"MEDIUM MATHEMATICAL SPACE",8287:"mmsp",8287:"MEDIUM MATHEMATICAL SPACE",8288:"WORD JOINER",8288:"wj",8288:"WORD JOINER",8289:"FUNCTION APPLICATION",8289:"Invisible Operators",8290:"INVISIBLE TIMES",8291:"invisible comma",8291:"INVISIBLE SEPARATOR",8292:"INVISIBLE PLUS",8304:"Superscript Digits",8304:"SUPERSCRIPT ZERO",8304:"Superscripts",8304:"SUPERSCRIPT ZERO",8305:"SUPERSCRIPT Latin small letter I",8320:"Subscript Digits",8320:"Subscripts",8341:"Latin subscript small letter H",
88
- 8342:"Latin subscript small letter K",8343:"Latin subscript small letter L",8344:"Latin subscript small letter M",8345:"Latin subscript small letter N",8346:"Latin subscript small letter P",8347:"Latin subscript small letter S",8348:"Latin subscript small letter T",8352:"Currency Symbols",8353:"COLON sign",8353:"costa rican currency",8353:"el salvadorian currency",8354:"brazilian currency",8354:"CRUZEIRO sign",8354:"brazilian currency",8355:"french currency",8355:"FRENCH FRANC sign",8356:"italian currency",
89
- 8356:"turkish currency",8356:"italian currency",8356:"LIRA sign",8356:"turkish currency",8357:"MILL sign",8358:"nigerian currency",8358:"NAIRA sign",8358:"nigerian currency",8359:"spanish currency",8359:"PESETA sign",8359:"spanish currency",8360:"indian currency",8360:"RUPEE sign",8361:"korean currency",8361:"WON sign",8362:"israeli currency",8362:"NEW SHEQEL sign",8363:"vietnamese currency",8363:"DONG sign",8363:"vietnamese currency",8364:"euro european currency",8364:"EURO sign",8365:"laotian currency",
90
- 8365:"KIP sign",8365:"laotian currency",8366:"mongolian currency",8366:"TUGRIK sign",8367:"greek currency",8367:"DRACHMA sign",8367:"greek currency",8368:"GERMAN PENNY sign",8369:"phillipine currency",8369:"PESO sign",8369:"phillipine currency",8370:"paraguayan currency",8370:"GUARANI sign",8370:"paraguayan currency",8371:"argentinian former currency",8371:"AUSTRAL sign",8371:"argentinian former currency",8372:"ukrainian currency",8372:"HRYVNIA sign",8372:"ukrainian currency",8373:"CEDI sign",8373:"ghana currency",
91
- 8374:"LIVRE TOURNOIS sign",8375:"SPESMILO sign",8376:"TENGE sign",8377:"INDIAN RUPEE sign",8400:"Combining left HARPOON above",8400:"Combining Diacritical Marks for Symbols",8400:"Combining left HARPOON above",8400:"Combining Diacritical Marks for Symbols",8400:"Combining left HARPOON above",8400:"Combining Left HARPOON above",8400:"Combining Diacritical Marks for Symbols",8400:"Diacritical Marks for Symbols",8401:"Combining right HARPOON above",8401:"Combining RIGHT HARPOON above",8401:"vector",
92
- 8402:"Combining long VERTICAL LINE OVERLAY",8403:"Combining SHORT VERTICAL LINE OVERLAY",8404:"Combining ANTICLOCKWISE ARROW above",8404:"combining counterclockwise arrow above",8404:"Combining ANTICLOCKWISE ARROW above",8404:"combining counterclockwise arrow above",8404:"Combining ANTICLOCKWISE ARROW above",8404:"combining counterclockwise arrow above",8405:"Combining CLOCKWISE ARROW above",8406:"Combining left ARROW above",8406:"Combining Left ARROW above",8407:"Combining right ARROW above",8407:"Combining RIGHT ARROW above",
93
- 8407:"vector",8408:"Combining ring OVERLAY",8409:"Combining CLOCKWISE ring OVERLAY",8410:"Combining ANTICLOCKWISE ring OVERLAY",8410:"combining counterclockwise ring overlay",8410:"Combining ANTICLOCKWISE ring OVERLAY",8410:"combining counterclockwise ring overlay",8410:"Combining ANTICLOCKWISE ring OVERLAY",8410:"combining counterclockwise ring overlay",8411:"Combining THREE DOTS above",8411:"third derivative",8411:"Combining THREE DOTS above",8411:"third derivative",8411:"Combining THREE DOTS above",
94
- 8412:"Combining FOUR DOTS above",8412:"fourth derivative",8412:"Combining FOUR DOTS above",8412:"fourth derivative",8413:"Combining enclosing CIRCLE",8413:"jis composition circle",8413:"Combining enclosing CIRCLE",8413:"jis composition circle",8413:"Enclosing Diacritics",8413:"Combining enclosing CIRCLE",8413:"Enclosing Diacritics",8413:"jis composition circle",8414:"Combining enclosing SQUARE",8415:"Combining enclosing DIAMOND",8416:"Combining enclosing CIRCLE BACKSLASH",8416:"no",8416:"prohibition",
95
- 8417:"Combining left right ARROW above",8417:"Combining Left right ARROW above",8417:"Combining left RIGHT ARROW above",8418:"Combining enclosing SCREEN",8419:"Combining enclosing KEYCAP",8420:"Combining enclosing UPWARD POINTING TRIANGLE",8421:"Combining REVERSE SOLIDUS OVERLAY",8421:"Combining Reverse SOLIDUS OVERLAY",8421:"Combining REVERSE SOLIDUS OVERLAY",8422:"Combining double VERTICAL stroke OVERLAY",8422:"finite function diacritic",8422:"Combining double VERTICAL stroke OVERLAY",8422:"finite function diacritic",
96
- 8422:"Combining double VERTICAL stroke OVERLAY",8423:"actuarial bend",8423:"Combining ANNUITY SYMBOL",8423:"actuarial bend",8423:"Combining ANNUITY SYMBOL",8424:"Combining TRIPLE UNDERDOT",8425:"Combining WIDE BRIDGE above",8425:"contraction operator",8425:"Combining WIDE BRIDGE above",8426:"Combining LEFTWARDS ARROW OVERLAY",8426:"Combining LeftWARDS ARROW OVERLAY",8426:"Combining LEFTWARDS ARROW OVERLAY",8427:"Combining long double SOLIDUS OVERLAY",8427:"long double slash overlay",8427:"Combining LONG double SOLIDUS OVERLAY",
97
- 8427:"long double slash overlay",8427:"Combining LONG double SOLIDUS OVERLAY",8427:"long double slash overlay",8427:"Combining LONG double SOLIDUS OVERLAY",8428:"Combining rightWARDS HARPOON with BARB DOWNWARDS",8428:"Combining RIGHTWARDS HARPOON with BARB DOWNWARDS",8429:"Combining LEFTWARDS HARPOON with BARB DOWNWARDS",8429:"Combining LeftWARDS HARPOON with BARB DOWNWARDS",8430:"Combining left ARROW below",8430:"Combining Left ARROW below",8431:"Combining right ARROW below",8431:"Combining RIGHT ARROW below",
98
- 8432:"Combining ASTERISK above",8448:"ACCOUNT OF",8448:"Letterlike Symbols",8449:"ADDRESSED TO THE SUBJECT",8450:"DOUBLE-STRUCK capital C",8450:"complex numbers",8450:"the set of complex numbers",8451:"DEGREE CELSIUS",8451:"degrees centigrade",8451:"DEGREE CELSIUS",8451:"degrees centigrade",8452:"CENTRE LINE SYMBOL",8452:"clone",8452:"CENTRE LINE SYMBOL",8453:"CARE OF",8454:"CADA UNA",8455:"EULER CONSTANT",8456:"SCRUPLE",8457:"DEGREE FAHRENHEIT",8458:"SCRIPT small G",8458:"real number symbol",8458:"SCRIPT small G",
99
- 8459:"SCRIPT capital H",8460:"BLACK-letter capital H",8460:"hilbert space",8461:"DOUBLE-STRUCK capital H",8462:"PLANCK CONSTANT",8463:"PLANCK CONSTANT OVER TWO PI",8464:"SCRIPT capital I",8465:"BLACK-letter capital I",8465:"imaginary part",8466:"SCRIPT capital L",8466:"laplace transform",8466:"SCRIPT capital L",8467:"SCRIPT small L",8467:"liter",8467:"SCRIPT small L",8468:"L B BAR SYMBOL",8468:"pounds",8469:"DOUBLE-STRUCK capital N",8469:"natural number",8470:"NUMERO sign",8471:"SOUND RECORDING COPYRIGHT",
100
- 8471:"phonorecord sign",8471:"published",8471:"SOUND RECORDING COPYRIGHT",8472:"weierstrass elliptic function",8472:"SCRIPT capital P",8472:"weierstrass elliptic function",8473:"DOUBLE-STRUCK capital P",8474:"rational numbers",8474:"DOUBLE-STRUCK capital Q",8474:"rational numbers",8474:"the set of rational numbers",8475:"riemann integral",8475:"SCRIPT capital R",8475:"riemann integral",8475:"SCRIPT capital R",8476:"BLACK-letter capital R",8476:"real part",8477:"real numbers",8477:"DOUBLE-STRUCK capital R",
101
- 8477:"real numbers",8477:"the set of real numbers",8478:"cross ratio",8478:"PRESCRIPTION TAKE",8478:"cross ratio",8478:"recipe",8478:"PRESCRIPTION TAKE",8479:"RESPONSE",8480:"SERVICE MARK",8481:"TELEPHONE sign",8482:"TRADE MARK sign",8483:"VERSICLE",8484:"integers",8484:"the set of integers",8484:"DOUBLE-STRUCK capital Z",8485:"OUNCE sign",8486:"OHM sign",8487:"INVERTED OHM sign",8487:"mho",8487:"INVERTED OHM sign",8488:"BLACK-letter capital Z",8489:"unique element",8489:"turned Greek small letter IOTA",
102
- 8489:"unique element",8490:"KELVIN sign",8491:"ANGSTROM sign",8492:"SCRIPT capital B",8492:"bernoulli function",8492:"SCRIPT capital B",8493:"BLACK-letter capital C",8494:"ESTIMATED SYMBOL",8495:"SCRIPT small E",8495:"error",8495:"natural exponent",8495:"SCRIPT small E",8496:"SCRIPT capital E",8496:"electromotive force",8496:"emf",8496:"SCRIPT capital E",8497:"SCRIPT capital F",8497:"fourier transform",8497:"SCRIPT capital F",8497:"fourier transform",8498:"claudian digamma inversum",8498:"turned capital F",
103
- 8499:"german mark pre-wwii",8499:"SCRIPT capital M",8499:"m-matrix",8499:"german mark pre-wwii",8499:"SCRIPT capital M",8500:"SCRIPT small O",8500:"order",8500:"SCRIPT small O",8501:"ALEF SYMBOL",8501:"first transfinite cardinal",8501:"first transfinite cardinal countable",8501:"Hebrew Letterlike Mathematical Symbols",8501:"first transfinite cardinal",8502:"BET SYMBOL",8502:"second transfinite cardinal",8502:"second transfinite cardinal continuum",8502:"second transfinite cardinal",8503:"third transfinite cardinal",
104
- 8503:"GIMEL SYMBOL",8503:"third transfinite cardinal",8504:"fourth transfinite cardinal",8504:"DALET SYMBOL",8504:"fourth transfinite cardinal",8505:"INFORMATION SOURCE",8506:"ROTATED capital Q",8507:"FACSIMILE sign",8508:"Double-struck Greek Letters",8508:"DOUBLE-STRUCK small PI",8509:"Double-struck Greek Letters",8509:"DOUBLE-STRUCK small GAMMA",8510:"DOUBLE-STRUCK capital GAMMA",8511:"DOUBLE-STRUCK capital PI",8512:"DOUBLE-STRUCK N-ARY SUMMATION",8513:"turned SANS-SERIF capital G",8513:"game",
105
- 8513:"turned SANS-SERIF capital G",8514:"turned SANS-SERIF capital L",8515:"reversed SANS-SERIF capital L",8516:"turned SANS-SERIF capital Y",8517:"DOUBLE-STRUCK ITALIC capital D",8517:"Double-struck Italic Mathematical Symbols",8518:"DOUBLE-STRUCK ITALIC small D",8519:"DOUBLE-STRUCK ITALIC small E",8520:"DOUBLE-STRUCK ITALIC small I",8521:"DOUBLE-STRUCK ITALIC small J",8522:"PROPERTY LINE",8523:"turned AMPERSAND",8524:"PER sign",8525:"AKTIESELSKAB",8526:"turned small F",8527:"SYMBOL FOR SAMARITAN SOURCE",
106
- 8528:"VULGAR FRACTION ONE SEVENTH",8528:"Number Forms",8528:"VULGAR FRACTION ONE SEVENTH",8529:"VULGAR FRACTION ONE NINTH",8530:"VULGAR FRACTION ONE TENTH",8531:"Fractions Thirds",8531:"Vulgar Fractions",8531:"Fractions Thirds",8531:"Vulgar Fractions",8533:"Fractions Fifths",8537:"Fractions Sixths",8539:"Fractions Eighths",8543:"FRACTION NUMERATOR ONE",8544:"Roman Numerals",8579:"claudian antisigma",8579:"apostrophic c",8579:"claudian antisigma",8580:"Latin small letter reversed C",8581:"Archaic Roman Numerals",
107
- 8592:"LEFTWARDS ARROW",8592:"Arrows",8592:"LeftWARDS ARROW",8593:"UPWARDS ARROW",8593:"egressive airflow",8593:"UPWARDS ARROW",8594:"rightWARDS ARROW",8594:"total function",8594:"RIGHTWARDS ARROW",8594:"total function",8595:"DOWNWARDS ARROW",8595:"ingressive airflow",8596:"relation",8606:"fast cursor left",8607:"fast cursor up",8608:"fast cursor right",8608:"total surjection",8609:"fast cursor down",8609:"form feed",8611:"total injection",8614:"maplet",8615:"depth symbol",8623:"electrolysis",8628:"line feed",
108
- 8632:"home",8633:"tab with shift tab",8636:"Harpoons",8653:"Double Arrows",8670:"page up",8671:"page down",8676:"leftward tab",8677:"rightward tab",8678:"Keyboard Symbols",8679:"shift",8682:"caps lock",8683:"level 2 lock",8684:"caps lock",8685:"numerics lock",8686:"level 3 select",8687:"level 3 lock",8688:"group lock",8689:"home",8690:"end",8691:"scrolling",8696:"partial function",8697:"partial relation",8699:"finite function",8700:"finite relation",8704:"FOR ALL",8704:"Mathematical Operators",8704:"universal quantifier",
109
- 8705:"COMPLEMENT",8706:"PARTIAL DIFFERENTIAL",8707:"existential quantifier",8707:"THERE EXISTS",8707:"existential quantifier",8707:"THERE EXISTS",8708:"THERE DOES NOT EXIST",8709:"EMPTY SET",8709:"null set",8709:"EMPTY SET",8709:"null set",8710:"forward difference",8710:"symmetric difference",8710:"forward difference",8710:"INCREMENT",8710:"laplace operator",8710:"symmetric difference",8711:"backward difference",8711:"del",8711:"backward difference",8711:"NABLA",8712:"ELEMENT OF",8712:"Set Membership Signs",
110
- 8713:"NOT AN ELEMENT OF",8714:"SMALL ELEMENT OF",8715:"CONTAINS AS MEMBER",8715:"such that",8716:"DOES NOT CONTAIN AS MEMBER",8717:"SMALL CONTAINS AS MEMBER",8717:"reversed straight epsilon",8717:"SMALL CONTAINS AS MEMBER",8718:"END OF PROOF",8718:"q.e.d.",8719:"N-ARY PRODUCT",8719:"product sign",8719:"N-ARY PRODUCT",8720:"coproduct sign",8720:"N-ARY COPRODUCT",8721:"N-ARY SUMMATION",8721:"summation sign",8721:"N-ARY SUMMATION",8722:"MINUS sign",8723:"MINUS-OR-PLUS sign",8724:"DOT PLUS",8725:"DIVISION SLASH",
111
- 8726:"SET MINUS",8727:"ASTERISK OPERATOR",8728:"apl jot",8728:"composite function",8728:"apl jot",8728:"ring OPERATOR",8729:"BULLET OPERATOR",8730:"radical sign",8730:"SQUARE ROOT",8731:"CUBE ROOT",8732:"FOURTH ROOT",8733:"PROPORTIONAL TO",8734:"INFINITY",8735:"right ANGLE",8735:"Angles",8735:"RIGHT ANGLE",8736:"ANGLE",8737:"MEASURED ANGLE",8738:"angle arc",8738:"SPHERICAL ANGLE",8738:"angle arc",8738:"SPHERICAL ANGLE",8739:"apl stile",8739:"DIVIDES",8739:"Vertical Lines",8739:"apl stile",8739:"such that",
112
- 8739:"Vertical Lines",8740:"DOES NOT DIVIDE",8741:"PARALLEL TO",8742:"NOT PARALLEL TO",8743:"LOGICAL AND",8743:"conjunction",8743:"LOGICAL AND",8743:"wedge",8744:"disjunction",8744:"LOGICAL OR",8744:"vee",8745:"cap",8745:"hat",8745:"INTERSECTION",8746:"cup",8746:"UNION",8747:"INTEGRAL",8747:"Integral Signs",8748:"DOUBLE INTEGRAL",8749:"TRIPLE INTEGRAL",8750:"CONTOUR INTEGRAL",8751:"SURFACE INTEGRAL",8752:"VOLUME INTEGRAL",8753:"CLOCKWISE INTEGRAL",8754:"CLOCKWISE CONTOUR INTEGRAL",8755:"ANTICLOCKWISE CONTOUR INTEGRAL",
113
- 8755:"counterclockwise contour integral",8755:"ANTICLOCKWISE CONTOUR INTEGRAL",8755:"counterclockwise contour integral",8756:"Dotted Mathematical Operators",8756:"THEREFORE",8757:"BECAUSE",8758:"RATIO",8759:"PROPORTION",8760:"symmetric difference",8760:"DOT MINUS",8760:"saturating subtraction",8760:"symmetric difference",8761:"EXCESS",8762:"GEOMETRIC PROPORTION",8763:"HOMOTHETIC",8763:"Tilde Mathematical Operators",8764:"apl tilde",8764:"cycle",8764:"difference between",8764:"not",8764:"proportional to",
114
- 8764:"similar to",8764:"TILDE OPERATOR",8764:"apl tilde",8764:"varies with",8765:"lazy s",8765:"reversed TILDE",8765:"lazy s",8765:"reversed TILDE",8766:"INVERTED LAZY S",8766:"most positive",8766:"INVERTED LAZY S",8767:"alternating current",8767:"SINE WAVE",8768:"WREATH PRODUCT",8769:"NOT TILDE",8770:"MINUS TILDE",8771:"ASYMPTOTICALLY EQUAL TO",8771:"Equality and Inequality Signs",8772:"NOT ASYMPTOTICALLY EQUAL TO",8773:"APPROXIMATELY EQUAL TO",8776:"ALMOST EQUAL TO",8776:"asymptotic to",8776:"ALMOST EQUAL TO",
115
- 8777:"NOT ALMOST EQUAL TO",8779:"TRIPLE TILDE",8780:"ALL EQUAL TO",8781:"EQUIVALENT TO",8782:"GEOMETRICALLY EQUIVALENT TO",8783:"DIFFERENCE BETWEEN",8784:"APPROACHES THE LIMIT",8785:"GEOMETRICALLY EQUAL TO",8786:"nearly equals",8788:"COLON EQUALS",8789:"EQUALS COLON",8790:"ring IN EQUAL TO",8791:"approximately equal to",8791:"ring EQUAL TO",8792:"CORRESPONDS TO",8793:"corresponds to",8793:"ESTIMATES",8794:"EQUIANGULAR TO",8795:"STAR EQUALS",8796:"equal to by definition",8796:"DELTA EQUAL TO",8796:"equal to by definition",
116
- 8796:"DELTA EQUAL TO",8796:"equiangular",8797:"EQUAL TO BY DEFINITION",8798:"MEASURED BY",8799:"QUESTIONED EQUAL TO",8800:"NOT EQUAL TO",8801:"IDENTICAL TO",8802:"NOT IDENTICAL TO",8803:"STRICTLY EQUIVALENT TO",8804:"LESS-THAN OR EQUAL TO",8805:"GREATER-THAN OR EQUAL TO",8810:"MUCH LESS-THAN",8811:"MUCH GREATER-THAN",8812:"BETWEEN",8812:"plaintiff",8812:"quantic",8826:"lower rank than",8826:"Order Relation Precedence Signs",8826:"PRECEDES",8827:"higher rank than",8827:"SUCCEEDS",8834:"included in set",
117
- 8834:"SUBSET OF",8834:"Superset and Subset Signs",8835:"includes in set",8835:"SUPERSET OF",8836:"NOT A SUBSET OF",8837:"NOT A SUPERSET OF",8844:"MULTISET",8845:"MULTISET MULTIPLICATION",8846:"bag addition",8846:"MULTISET UNION",8847:"SQUARE IMAGE OF",8848:"SQUARE ORIGINAL OF",8851:"SQUARE CAP",8852:"SQUARE CUP",8853:"CIRCLED PLUS",8853:"direct sum",8853:"Enclosed Mathematical Operators",8853:"CIRCLED PLUS",8853:"direct sum",8853:"vector pointing into page",8854:"CIRCLED MINUS",8854:"symmetric difference",
118
- 8854:"CIRCLED MINUS",8854:"symmetric difference",8855:"CIRCLED TIMES",8855:"tensor product",8855:"CIRCLED TIMES",8855:"vector pointing into page",8856:"CIRCLED DIVISION SLASH",8857:"CIRCLED DOT OPERATOR",8857:"direct product",8857:"CIRCLED DOT OPERATOR",8857:"direct product",8857:"vector pointing out of page",8858:"CIRCLED ring OPERATOR",8859:"CIRCLED ASTERISK OPERATOR",8860:"CIRCLED EQUALS",8861:"CIRCLED DASH",8862:"SQUARED PLUS",8863:"SQUARED MINUS",8864:"SQUARED TIMES",8865:"SQUARED DOT OPERATOR",
119
- 8866:"implies",8866:"proves",8866:"reducible",8866:"RIGHT TACK",8866:"right TACK",8866:"Tacks and Turnstiles",8866:"turnstile",8866:"Tacks and Turnstiles",8866:"yields",8867:"does not yield",8867:"Left TACK",8867:"non-theorem",8867:"does not yield",8867:"reverse turnstile",8867:"LEFT TACK",8867:"reverse turnstile",8867:"does not yield",8868:"DOWN TACK",8868:"top",8869:"base",8869:"bottom",8869:"orthogonal to",8869:"perpendicular",8869:"UP TACK",8870:"ASSERTION",8870:"reduces to",8871:"MODELS",8872:"results in",
120
- 8872:"satisfies",8872:"statement is true",8872:"tautology",8872:"TRUE",8872:"valid",8873:"FORCES",8880:"PRECEDES UNDER RELATION",8881:"SUCCEEDS UNDER RELATION",8882:"NORMAL SUBGROUP OF",8883:"CONTAINS AS NORMAL SUBGROUP",8886:"ORIGINAL OF",8887:"IMAGE OF",8888:"MULTIMAP",8889:"HERMITIAN CONJUGATE MATRIX",8890:"INTERCALATE",8891:"XOR",8892:"NAND",8893:"NOR",8894:"right ANGLE with ARC",8894:"RIGHT ANGLE with ARC",8895:"RIGHT TRIANGLE",8895:"right TRIANGLE",8896:"N-ARY LOGICAL AND",8896:"N-ary Operators",
121
- 8897:"N-ARY LOGICAL OR",8898:"generalized intersection",8898:"N-ARY INTERSECTION",8899:"generalized union",8899:"N-ARY UNION",8899:"generalized union",8899:"N-ARY UNION",8900:"DIAMOND OPERATOR",8901:"DOT OPERATOR",8902:"STAR OPERATOR",8903:"DIVISION TIMES",8904:"BOWTIE",8905:"Left NORMAL FACTOR SEMIDIRECT PRODUCT",8905:"LEFT NORMAL FACTOR SEMIDIRECT PRODUCT",8906:"right NORMAL FACTOR SEMIDIRECT PRODUCT",8906:"RIGHT NORMAL FACTOR SEMIDIRECT PRODUCT",8906:"right NORMAL FACTOR SEMIDIRECT PRODUCT",8907:"Left SEMIDIRECT PRODUCT",
122
- 8907:"LEFT SEMIDIRECT PRODUCT",8908:"right SEMIDIRECT PRODUCT",8908:"RIGHT SEMIDIRECT PRODUCT",8908:"right SEMIDIRECT PRODUCT",8909:"reversed TILDE EQUALS",8910:"CURLY LOGICAL OR",8911:"CURLY LOGICAL AND",8912:"Double Operators",8912:"DOUBLE SUBSET",8912:"Double Operators",8912:"DOUBLE SUBSET",8913:"DOUBLE SUPERSET",8914:"DOUBLE INTERSECTION",8915:"DOUBLE UNION",8916:"proper intersection",8916:"PITCHFORK",8916:"proper intersection",8917:"Equality and Inequality Signs",8920:"VERY MUCH LESS-THAN",8921:"VERY MUCH GREATER-THAN",
123
- 8926:"Order Relation Precedence Signs",8938:"Normal Subgroup Signs",8942:"VERTICAL ELLIPSIS",8943:"MIDLINE HORIZONTAL ELLIPSIS",8944:"UP right DIAGONAL ELLIPSIS",8944:"UP RIGHT DIAGONAL ELLIPSIS",8944:"UP right DIAGONAL ELLIPSIS",8945:"DOWN right DIAGONAL ELLIPSIS",8945:"DOWN RIGHT DIAGONAL ELLIPSIS",8959:"Z NOTATION BAG MEMBERSHIP",8960:"DIAMETER sign",8960:"Miscellaneous Technical",8961:"ELECTRIC ARROW",8961:"end of transmission symbol",8962:"HOUSE",8963:"UP ARROWHEAD",8964:"DOWN ARROWHEAD",8965:"PROJECTIVE",
124
- 8966:"PERSPECTIVE",8967:"WAVY LINE",8968:"apl upstile",8968:"Corner Brackets",8968:"LEFT CEILING",8968:"Corner Brackets",8968:"Left CEILING",8968:"apl upstile",8969:"right CEILING",8969:"RIGHT CEILING",8970:"apl downstile",8970:"LEFT FLOOR",8970:"Left FLOOR",8971:"right FLOOR",8971:"RIGHT FLOOR",8972:"Crops",8976:"beginning of line",8976:"reversed NOT sign",8977:"kissen",8977:"SQUARE LOZENGE",8977:"pillow",8977:"SQUARE LOZENGE",8978:"ARC",8979:"SEGMENT",8980:"SECTOR",8981:"TELEPHONE RECORDER",8982:"POSITION INDICATOR",
125
- 8983:"VIEWDATA SQUARE",8984:"command key",8984:"PLACE OF INTEREST sign",8984:"command key",8984:"PLACE OF INTEREST sign",8985:"line marker",8985:"turned NOT sign",8986:"WATCH",8987:"HOURGLASS",8988:"Quine Corners",8992:"TOP half INTEGRAL",8993:"BOTTOM half INTEGRAL",8994:"FROWN",8995:"SMILE",8996:"enter key",8996:"Keyboard Symbols",8997:"OPTION KEY",8998:"delete to the right key",8998:"ERASE TO THE right",8998:"delete to the right key",8998:"ERASE TO THE RIGHT",8999:"X IN A RECTANGLE BOX",8999:"clear key",
126
- 8999:"X IN A RECTANGLE BOX",9E3:"KEYBOARD",9001:"LEFT-POINTING ANGLE BRACKET",9001:"Left-POINTING ANGLE BRACKET",9002:"right-POINTING ANGLE BRACKET",9002:"RIGHT-POINTING ANGLE BRACKET",9003:"delete to the left key",9003:"ERASE TO THE LEFT",9003:"delete to the left key",9003:"ERASE TO THE Left",9004:"BENZENE ring",9005:"CYLINDRICITY",9005:"Drafting Symbols",9006:"ALL AROUND-PROFILE",9007:"SYMMETRY",9008:"TOTAL RUNOUT",9009:"DIMENSION ORIGIN",9010:"CONICAL TAPER",9011:"SLOPE",9012:"COUNTERBORE",9013:"COUNTERSINK",
127
- 9014:"APL Functional Symbols",9060:"hoot",9061:"holler",9064:"smirk",9083:"NOT CHECK MARK",9085:"SHOULDERED OPEN BOX",9085:"Graphics for Control Codes",9085:"keyboard symbol for no break space",9085:"SHOULDERED OPEN BOX",9085:"keyboard symbol for no break space",9086:"BELL SYMBOL",9087:"VERTICAL LINE with MIDDLE DOT",9087:"symbol for end of medium",9087:"VERTICAL LINE with MIDDLE DOT",9087:"VERTICAL LINE with middle dot",9088:"INSERTION SYMBOL",9088:"Keyboard Symbols",9089:"CONTINUOUS UNDERLINE SYMBOL",
128
- 9090:"DISCONTINUOUS UNDERLINE SYMBOL",9091:"EMPHASIS SYMBOL",9092:"COMPOSITION SYMBOL",9093:"center",9094:"ENTER SYMBOL",9095:"ALTERNATIVE KEY SYMBOL",9096:"control",9096:"HELM SYMBOL",9097:"pause",9098:"interrupt",9099:"escape",9100:"UNDO SYMBOL",9101:"Electrotechnical Symbols",9101:"MONOSTABLE SYMBOL",9101:"Electrotechnical Symbols",9102:"HYSTERESIS SYMBOL",9107:"DIRECT CURRENT SYMBOL FORM TWO",9108:"SOFTWARE-FUNCTION SYMBOL",9110:"DECIMAL SEPARATOR KEY SYMBOL",9110:"Keyboard Symbols",9110:"DECIMAL SEPARATOR KEY SYMBOL",
129
- 9110:"Keyboard Symbols",9111:"PREVIOUS PAGE",9112:"NEXT PAGE",9113:"PRINT SCREEN SYMBOL",9114:"CLEAR SCREEN SYMBOL",9115:"Bracket Pieces",9136:"Bracket Pieces",9136:"left moustache",9137:"right moustache",9138:"Summation Sign Parts",9140:"Vertical Brackets",9143:"Terminal Graphic Characters",9146:"Horizontal Scan Lines",9150:"Dentistry Notation Symbols",9165:"SQUARE FOOT",9166:"RETURN SYMBOL",9167:"eject media",9169:"Metrical Symbols",9178:"EARTH GROUND",9179:"FUSE",9180:"Bracket Variants for Vertical Text",
130
- 9186:"WHITE TRAPEZIUM",9188:"STRAIGHTNESS",9189:"FLATNESS",9190:"AC CURRENT",9191:"ELECTRICAL INTERSECTION",9192:"DECIMAL EXPONENT SYMBOL",9193:"Double Triangles",9193:"fast forward",9193:"Double Triangles",9194:"fast rewind",9200:"ALARM CLOCK",9201:"STOPWATCH",9202:"TIMER CLOCK",9203:"HOURGLASS with FLOWING SAND",9216:"Graphic Pictures for Control Codes",9216:"SYMBOL FOR NULL",9216:"Graphic Pictures for Control Codes",9217:"SYMBOL FOR START OF HEADING",9218:"SYMBOL FOR START OF TEXT",9219:"SYMBOL FOR END OF TEXT",
131
- 9220:"SYMBOL FOR END OF TRANSMISSION",9221:"SYMBOL FOR ENQUIRY",9222:"SYMBOL FOR ACKNOWLEDGE",9223:"SYMBOL FOR BELL",9224:"SYMBOL FOR BACKSPACE",9225:"SYMBOL FOR HORIZONTAL TABULATION",9226:"SYMBOL FOR LINE FEED",9227:"SYMBOL FOR VERTICAL TABULATION",9228:"SYMBOL FOR FORM FEED",9229:"SYMBOL FOR CARRIAGE RETURN",9230:"SYMBOL FOR SHIFT OUT",9231:"SYMBOL FOR SHIFT IN",9232:"SYMBOL FOR DATA LINK ESCAPE",9233:"Symbols for Device Controls",9237:"SYMBOL FOR NEGATIVE ACKNOWLEDGE",9238:"SYMBOL FOR SYNCHRONOUS IDLE",
132
- 9239:"SYMBOL FOR END OF TRANSMISSION BLOCK",9240:"SYMBOL FOR CANCEL",9241:"SYMBOL FOR END OF MEDIUM",9242:"SYMBOL FOR SUBSTITUTE",9243:"SYMBOL FOR ESCAPE",9244:"SYMBOL FOR FILE SEPARATOR",9245:"SYMBOL FOR GROUP SEPARATOR",9246:"SYMBOL FOR RECORD SEPARATOR",9247:"SYMBOL FOR UNIT SEPARATOR",9248:"SYMBOL FOR SPACE",9249:"SYMBOL FOR DELETE",9250:"BLANK SYMBOL",9251:"OPEN BOX",9251:"graphic for space",9252:"SYMBOL FOR NEWLINE",9253:"SYMBOL FOR DELETE FORM TWO",9254:"SYMBOL FOR SUBSTITUTE FORM TWO",9280:"Optical Character Recognition OCR",
133
- 9280:"OCR Optical Character Recognition",9312:"Enclosed Alphanumerics",9312:"Circled Numbers",9312:"Enclosed Alphanumerics",9312:"Circled Numbers",9332:"Parenthesized Numbers",9352:"Numbers Followed by Period",9372:"Parenthesized Latin Letters",9398:"Circled Latin Letters",9450:"CIRCLED DIGIT ZERO",9451:"White on Black Circled Numbers",9461:"Double Circled Numbers",9472:"Box Drawing",9472:"Form and Chart Components",9600:"Block Elements",9608:"FULL BLOCK",9608:"solid",9617:"Shade Characters",9622:"Terminal Graphic Characters",
134
- 9632:"Geometric Shapes",9632:"Squares",9633:"quadrature",9644:"Rectangles",9646:"histogram marker",9648:"BLACK PARALLELOGRAM",9650:"Triangles",9651:"trine",9655:"range restriction",9658:"Pointers",9659:"forward arrow indicator",9661:"hamilton operator",9665:"domain restriction",9669:"backward arrow indicator",9670:"Diamonds",9673:"tainome japanese bullet",9673:"FISHEYE",9673:"tainome japanese bullet",9674:"LOZENGE",9675:"WHITE CIRCLE",9675:"Circles",9675:"WHITE CIRCLE",9676:"DOTTED CIRCLE",9678:"BULLSEYE",
135
- 9679:"BLACK CIRCLE",9692:"Arcs",9702:"WHITE BULLET",9711:"LARGE CIRCLE",9712:"Quadrant Control Code Graphics",9723:"always",9724:"BLACK MEDIUM SQUARE",9726:"BLACK MEDIUM small SQUARE",9728:"Weather and Astrological Symbols",9728:"BLACK SUN with RAYS",9728:"clear weather",9728:"Miscellaneous Dingbats",9728:"Weather Dingbats",9728:"BLACK SUN with RAYS",9728:"Miscellaneous Symbols",9728:"Weather and Astrological Symbols",9728:"clear weather",9729:"CLOUD",9729:"cloudy weather",9730:"rainy weather",9730:"UMBRELLA",
136
- 9730:"rainy weather",9731:"SNOWMAN",9731:"snowy weather",9732:"COMET",9733:"BLACK STAR",9734:"WHITE STAR",9735:"LIGHTNING",9736:"THUNDERSTORM",9737:"SUN",9738:"ASCENDING NODE",9739:"DESCENDING NODE",9740:"CONJUNCTION",9741:"OPPOSITION",9742:"BLACK TELEPHONE",9743:"WHITE TELEPHONE",9744:"BALLOT BOX",9745:"BALLOT BOX with CHECK",9746:"BALLOT BOX with X",9747:"st. andrews cross",9747:"SALTIRE",9747:"st. andrews cross",9748:"UMBRELLA with RAIN DROPS",9748:"showery weather",9748:"UMBRELLA with RAIN DROPS",
137
- 9748:"showery weather",9749:"HOT BEVERAGE",9749:"cup of coffee",9749:"cup of tea",9749:"HOT BEVERAGE",9749:"cup of tea",9750:"Japanese Chess Symbols",9750:"WHITE SHOGI PIECE",9750:"Japanese Chess Symbols",9750:"WHITE SHOGI PIECE",9751:"BLACK SHOGI PIECE",9752:"SHAMROCK",9753:"reversed ROTATED FLORAL HEART BULLET",9754:"BLACK left POINTING INDEX",9754:"Pointing Index Finger Dingbats",9754:"Pointing Hand Symbols",9754:"Pointing Index Finger Dingbats",9754:"BLACK left POINTING INDEX",9754:"BLACK Left POINTING INDEX",
138
- 9754:"Pointing Hand Symbols",9754:"Pointing Index Finger Dingbats",9754:"BLACK left POINTING INDEX",9754:"Pointing Hand Symbols",9755:"BLACK right POINTING INDEX",9755:"BLACK RIGHT POINTING INDEX",9756:"WHITE left POINTING INDEX",9756:"WHITE Left POINTING INDEX",9756:"WHITE left POINTING INDEX",9757:"WHITE UP POINTING INDEX",9758:"fist",9758:"WHITE right POINTING INDEX",9758:"WHITE RIGHT POINTING INDEX",9758:"WHITE right POINTING INDEX",9759:"WHITE DOWN POINTING INDEX",9760:"Hazard Dingbats",9760:"Warning Dingbats",
139
- 9760:"Hazard Dingbats",9760:"jolly roger",9760:"poison",9760:"Warning Signs",9760:"SKULL and CROSSBONES",9760:"Warning Signs",9761:"CAUTION sign",9762:"RADIOACTIVE sign",9763:"BIOHAZARD sign",9764:"CADUCEUS",9765:"ANKH",9765:"Religious and Political Symbols",9766:"ORTHODOX CROSS",9766:"Religious and Political Symbols",9767:"CHI RHO",9767:"christogram",9767:"constantines cross",9768:"CROSS OF LORRAINE",9769:"CROSS OF JERUSALEM",9770:"STAR and CRESCENT",9772:"ADI SHAKTI",9772:"gurmukhi khanda",9773:"HAMMER and SICKLE",
140
- 9774:"PEACE SYMBOL",9775:"YIN YANG",9776:"I Ching / Yijing Trigram Symbols",9776:"Yijing / I Ching Trigram Symbols",9784:"WHEEL OF DHARMA",9785:"WHITE FROWNING FACE",9786:"WHITE SMILING FACE",9786:"have a nice day!",9786:"WHITE SMILING FACE",9787:"BLACK SMILING FACE",9788:"compass",9788:"WHITE SUN with RAYS",9789:"Astrological Symbols",9789:"FIRST QUARTER MOON",9789:"Astrological Symbols",9790:"LAST QUARTER MOON",9791:"MERCURY",9791:"Planet Symbols",9792:"FEMALE sign",9792:"venus",9793:"EARTH",9794:"MALE sign",
141
- 9794:"mars",9795:"JUPITER",9796:"SATURN",9797:"URANUS",9798:"NEPTUNE",9799:"PLUTO",9800:"ARIES",9800:"Zodiacal Symbols",9801:"TAURUS",9802:"GEMINI",9803:"CANCER",9804:"LEO",9805:"minim alternate glyph",9805:"VIRGO",9806:"LIBRA",9807:"drop",9807:"minim",9807:"SCORPIUS",9808:"SAGITTARIUS",9809:"CAPRICORN",9810:"AQUARIUS",9811:"PISCES",9812:"Chess Symbols",9824:"Playing Card Suits",9824:"Playing Card Symbols",9827:"shamrock",9829:"valentine",9832:"HOT SPringS",9833:"crotchet",9833:"Music Dingbats",9833:"Basic Musical Symbols",
142
- 9833:"QUARTER NOTE",9833:"Basic Musical Symbols",9834:"EIGHTH NOTE",9834:"quaver",9835:"BEAMED EIGHTH NOTES",9835:"beamed quavers",9835:"BEAMED EIGHTH NOTES",9835:"beamed quavers",9836:"beamed semiquavers",9836:"BEAMED SIXTEENTH NOTES",9836:"beamed semiquavers",9836:"BEAMED SIXTEENTH NOTES",9837:"MUSIC FLAT sign",9838:"MUSIC NATURAL sign",9839:"infix bag count",9839:"MUSIC SHARP sign",9840:"WEST SYRIAC CROSS",9841:"EAST SYRIAC CROSS",9842:"UNIVERSAL RECYCLING SYMBOL",9842:"Recycling Symbols",9842:"UNIVERSAL RECYCLING SYMBOL",
143
- 9843:"Plastics Recycling Symbols",9852:"RECYCLED PAPER SYMBOL",9853:"PARTIALLY-RECYCLED PAPER SYMBOL",9853:"PARTIALLY- RECYCLED PAPER SYMBOL",9854:"PERMANENT PAPER sign",9855:"WHEELCHAIR SYMBOL",9856:"Dice",9862:"Go Markers",9866:"Yijing / I Ching Monogram and Digram Symbols",9866:"I Ching / Yijing Monogram and Digram Symbols",9866:"Yijing / I Ching Monogram and Digram Symbols",9866:"I Ching / Yijing Monogram and Digram Symbols",9866:"Yijing / I Ching Monogram and Digram Symbols",9872:"Dictionary and Map Symbols",
144
- 9872:"WHITE FLAG",9872:"Dictionary and Map Symbols",9872:"WHITE FLAG",9873:"BLACK FLAG",9874:"HAMMER and PICK",9874:"mining symbol",9874:"working day symbol",9875:"ANCHOR",9875:"harbor symbol",9876:"battleground symbol",9876:"CROSSED SWORDS",9877:"STAFF OF AESCULAPIUS",9878:"jurisprudence symbol",9878:"SCALES",9879:"ALEMBIC",9881:"GEAR",9882:"STAFF OF HERMES",9883:"ATOM SYMBOL",9884:"FLEUR-DE-LIS",9888:"Warning Signs",9888:"WARNING sign",9889:"HIGH VOLTAGE sign",9889:"lightning",9889:"thunder",9889:"HIGH VOLTAGE sign",
145
- 9890:"Gender Symbols",9898:"MEDIUM WHITE CIRCLE",9899:"MEDIUM BLACK CIRCLE",9900:"MEDIUM small WHITE CIRCLE",9901:"Genealogical Symbols",9901:"MARRIAGE SYMBOL",9901:"Genealogical Symbols",9902:"DIVORCE SYMBOL",9903:"UNMARRIED PARTNERSHIP SYMBOL",9904:"buried symbol",9904:"COFFIN",9905:"cremated symbol",9905:"FUNERAL URN",9906:"NEUTER",9907:"Astrological Signs",9917:"SOCCER BALL",9918:"BASEBALL",9919:"SQUARED KEY",9919:"parental lock",9920:"Symbols for Draughts and Checkers",9924:"light snow",9924:"SNOWMAN WITHOUT SNOW",
146
- 9925:"partly cloudy",9925:"SUN BEHIND CLOUD",9926:"RAIN",9927:"heavy snow",9927:"BLACK SNOWMAN",9928:"thunderstorm",9929:"turned WHITE SHOGI PIECE",9930:"turned BLACK SHOGI PIECE",9932:"accident",9933:"DISABLED CAR",9934:"OPHIUCHUS",9935:"construction",9935:"PICK",9936:"CAR SLIDING",9936:"icy road",9937:"HELMET with WHITE CROSS",9938:"CIRCLED CROSSING LANES",9938:"road closed",9939:"CHAINS",9940:"do not enter",9940:"NO ENTRY",9946:"DRIVE SLOW sign",9947:"yield",9951:"black lorry",9951:"BLACK TRUCK",
147
- 9954:"uranus",9956:"PENTAGRAM",9956:"pentangle pentalpha",9960:"hospital",9960:"BLACK CROSS ON SHIELD",9961:"SHINTO SHRINE",9961:"torii",9962:"CHURCH",9963:"CASTLE",9964:"HISTORIC SITE",9965:"factory",9966:"power plant",9967:"MAP SYMBOL FOR LIGHTHOUSE",9968:"MOUNTAIN",9969:"bathing beach",9969:"UMBRELLA ON GROUND",9970:"FOUNTAIN",9970:"park",9971:"FLAG IN HOLE",9971:"golf course",9972:"boat terminal",9972:"FERRY",9972:"marina or yacht harbour",9972:"SAILBOAT",9974:"SQUARE FOUR CORNERS",9975:"SKIER",
148
- 9976:"ICE SKATE",9978:"camping site",9978:"TENT",9980:"cemetery",9980:"graveyard",9980:"HEADSTONE GRAVEYARD SYMBOL",9981:"FUEL PUMP",9981:"gas station",9981:"petrol station",9982:"CUP ON BLACK SQUARE",9982:"drive-in restaurant",9984:"Dingbats",9984:"ITC Zapf Dingbats Series 100",9984:"Zapf Dingbats",9984:"ITC Zapf Dingbats Series 100",9985:"Scissors Dingbats",9985:"UPPER BLADE SCISSORS",9986:"BLACK SCISSORS",9988:"WHITE SCISSORS",9990:"TELEPHONE LOCATION sign",9991:"TAPE DRIVE",9992:"AIRPLANE",9993:"ENVELOPE",
149
- 9994:"RAISED FIST",9994:"paper, scissors game rock in rock",9995:"RAISED HAND",9995:"paper, scissors game paper in rock",9996:"VICTORY HAND",9996:"paper, scissors game scissors in rock",9996:"VICTORY HAND",9997:"WRITING HAND",9998:"Pencil Dingbats",9998:"LOWER right PENCIL",9998:"LOWER RIGHT PENCIL",9999:"PENCIL",1E4:"UPPER right PENCIL",1E4:"UPPER RIGHT PENCIL",1E4:"UPPER right PENCIL",10001:"WHITE NIB",10002:"BLACK NIB",10003:"CHECK MARK",10004:"HEAVY CHECK MARK",10005:"MULTIPLICATION X",10006:"HEAVY MULTIPLICATION X",
150
- 10007:"BALLOT X",10008:"HEAVY BALLOT X",10009:"Cross Dingbats",10009:"Crosses",10009:"Cross Dingbats",10013:"Latin CROSS",10016:"MALTESE CROSS",10017:"STAR OF DAVID",10017:"Snowflakes",10017:"STAR OF DAVID",10017:"Stars",10018:"Asterisk Dingbats",10022:"Star Dingbats",10024:"SPARKLES",10038:"sextile",10042:"starburst",10052:"Snowflake Dingbats",10055:"SPARKLE",10056:"HEAVY SPARKLE",10057:"jack",10059:"turbofan",10060:"CROSS MARK",10061:"SHADOWED WHITE CIRCLE",10061:"Drop-shadowed Dingbats",10061:"SHADOWED WHITE CIRCLE",
151
- 10062:"NEGATIVE SQUARED NEGATIVE SQUARED CROSS MARK",10067:"BLACK Question Mark ORNAMENT",10068:"WHITE Question Mark ORNAMENT",10069:"WHITE EXCLAMATION MARK ORNAMENT",10072:"Vertical Bar Dingbats",10075:"Quotation Mark Dingbats",10075:"Punctuation Ornaments",10075:"Quotation Mark Ornaments",10075:"Punctuation Ornaments",10075:"Quotation Mark Dingbats",10075:"Quotation Mark Ornaments",10081:"CURVED STEM PARAGRAPH sign ORNAMENT",10082:"HEAVY EXCLAMATION MARK ORNAMENT",10083:"Heart Dingbats",10083:"Heart Ornaments",
152
- 10086:"aldus leaf",10087:"hedera",10087:"ivy leaf",10088:"Ornamental Brackets",10094:"Ornamental Angle Quotation Marks",10102:"Dingbat Circled Digits",10102:"Circled Inverse Numbers",10102:"Dingbat Circled Digits",10102:"Circled Inverse Numbers",10132:"Arrow Dingbats",10132:"Dingbat Arrows",10132:"Arrow Dingbats",10160:"CURLY LOOP",10175:"DOUBLE CURLY LOOP",10176:"Mathematical Symbols",10176:"Miscellaneous Mathematical Symbols-A",10176:"Mathematical Symbols",10176:"Miscellaneous Mathematical Symbols-A",
153
- 10188:"LONG DIVISION",10195:"pullback",10196:"pushout",10197:"Database Theory Operators",10200:"Modal Logic Operators",10200:"Tacks and Turnstiles",10207:"radial component",10208:"Modal Logic Operators",10214:"left bag bracket",10214:"Mathematical Brackets",10214:"left bag bracket",10214:"Mathematical Brackets",10215:"right bag bracket",10216:"MATHEMATICAL left ANGLE BRACKET",10216:"bra",10216:"left sequence bracket",10216:"MATHEMATICAL Left ANGLE BRACKET",10216:"left sequence bracket",10217:"MATHEMATICAL right ANGLE BRACKET",
154
- 10217:"right sequence bracket",10217:"ket",10217:"MATHEMATICAL RIGHT ANGLE BRACKET",10217:"right sequence bracket",10218:"MATHEMATICAL left double ANGLE BRACKET",10218:"left chevron bracket",10218:"MATHEMATICAL left double ANGLE BRACKET",10218:"left chevron bracket",10218:"MATHEMATICAL left double ANGLE BRACKET",10218:"left chevron bracket",10218:"MATHEMATICAL Left double ANGLE BRACKET",10219:"MATHEMATICAL right double ANGLE BRACKET",10219:"right chevron bracket",10219:"MATHEMATICAL right double ANGLE BRACKET",
155
- 10219:"right chevron bracket",10219:"MATHEMATICAL RIGHT double ANGLE BRACKET",10222:"lgroup",10223:"rgroup",10224:"Arrows-A Supplement",10229:"Long Arrows",10235:"maps from",10236:"maps to",10240:"Braille Patterns",10496:"Supplemental Arrows-B",10496:"partial surjection",10496:"Supplemental Arrows-B",10496:"partial surjection",10497:"finite surjection",10501:"maps to",10502:"maps from",10503:"maps to",10516:"partial injection",10517:"finite injection",10518:"bijection",10519:"surjective injection",
156
- 10520:"finite surjective injection",10570:"Miscellaneous Harpoons",10620:"Fish Tails",10624:"Mathematical Symbols",10624:"Miscellaneous Mathematical Symbols-B",10624:"Mathematical Symbols",10624:"Miscellaneous Mathematical Symbols-B",10624:"TRIPLE VERTICAL BAR DELIMITER",10625:"Z NOTATION SPOT",10626:"Z NOTATION TYPE COLON",10627:"LEFT WHITE CURLY BRACKET",10627:"Brackets",10627:"LEFT WHITE CURLY BRACKET",10627:"Left WHITE CURLY BRACKET",10627:"LEFT WHITE CURLY BRACKET",10628:"right WHITE CURLY BRACKET",
157
- 10628:"RIGHT WHITE CURLY BRACKET",10628:"right WHITE CURLY BRACKET",10629:"Left WHITE PARENTHESIS",10629:"LEFT WHITE PARENTHESIS",10630:"right WHITE PARENTHESIS",10630:"RIGHT WHITE PARENTHESIS",10630:"right WHITE PARENTHESIS",10649:"DOTTED FENCE",10649:"Fences",10651:"Angles and Measured Angles",10672:"Empty Sets",10677:"Circle Symbols",10692:"Square Symbols",10698:"Triangle Symbols",10705:"Bowtie Symbols",10710:"vertical bowtie",10710:"white framus",10710:"vertical bowtie",10710:"white framus",10711:"BLACK HOURGLASS",
158
- 10712:"Wiggly Fences",10716:"isotech entity &iinfin;",10720:"dalembertian",10722:"SHUFFLE PRODUCT",10723:"Relational Operators",10726:"tautological equivalent",10726:"GLEICH STARK",10726:"tautological equivalent",10727:"THERMODYNAMIC",10731:"BLACK LOZENGE",10734:"Error Bar Symbols",10740:"colon right arrow",10740:"RULE-DELAYED",10741:"Reverse SOLIDUS OPERATOR",10741:"REVERSE SOLIDUS OPERATOR",10744:"BIG SOLIDUS",10744:"Large Operators",10744:"BIG SOLIDUS",10745:"BIG REVERSE SOLIDUS",10745:"BIG Reverse SOLIDUS",
159
- 10745:"schema hiding",10745:"BIG REVERSE SOLIDUS",10746:"DOUBLE PLUS",10746:"Specialized Plus Sign Operators",10746:"DOUBLE PLUS",10747:"TRIPLE PLUS",10750:"TINY",10751:"MINY",10752:"N-ARY CIRCLED DOT OPERATOR",10752:"Supplemental Mathematical Operators",10752:"N-ary Operators",10752:"Mathematical Operators Supplement",10752:"N-ary Operators",10752:"Supplemental Mathematical Operators",10753:"N-ARY CIRCLED PLUS OPERATOR",10754:"N-ARY CIRCLED TIMES OPERATOR",10759:"merge",10761:"N-ARY TIMES OPERATOR",
160
- 10762:"Summations and Integrals",10769:"ANTICLOCKWISE INTEGRATION",10769:"counterclockwise integration",10769:"ANTICLOCKWISE INTEGRATION",10769:"counterclockwise integration",10774:"QUATERNION INTEGRAL OPERATOR",10779:"upper integral",10780:"lower integral",10781:"large bowtie",10781:"JOIN",10781:"large bowtie",10786:"Plus and Minus Sign Operators",10788:"positive difference or sum",10790:"sum or positive difference",10791:"nim-addition",10799:"Multiplication and Division Sign Operators",10799:"VECTOR OR CROSS PRODUCT",
161
- 10803:"SMASH PRODUCT",10808:"CIRCLED DIVISION sign",10812:"INTERIOR PRODUCT",10813:"rightHAND INTERIOR PRODUCT",10813:"RIGHTHAND INTERIOR PRODUCT",10816:"Intersections and Unions",10817:"bag subtraction",10833:"Logical Ands and Ors",10835:"DOUBLE LOGICAL AND",10836:"DOUBLE LOGICAL OR",10913:"absolute continuity",10939:"DOUBLE PRECEDES",10940:"DOUBLE SUCCEEDS",10941:"Subset and Superset Relations",10969:"Forks",10972:"not independent",10973:"independent",10974:"Tacks and Turnstiles",10978:"ordinarily satisfies",
162
- 10987:"independence",10990:"Vertical Line Operators",10993:"necessarily satisfies",10996:"interleave",11005:"DOUBLE SOLIDUS OPERATOR",11006:"WHITE VERTICAL BAR",11006:"dijkstra choice",11006:"WHITE VERTICAL BAR",11006:"WHITE VERTICAL bar",11007:"n-ary dijkstra choice",11007:"N-ARY WHITE VERTICAL bar",11007:"N-ARY WHITE VERTICAL BAR",11008:"Miscellaneous Arrows",11026:"Polygonal Symbols",11034:"Squares",11045:"Diamonds and Lozenges",11052:"Ellipses",11056:"Mathematical Arrows",11093:"Heavy Circle Signs",
163
- 11264:"Glagolitic",11360:"Latin Extended-C",11392:"Bohairic Coptic",11442:"Extended Coptic",11499:"Cryptogrammic Letters",11520:"Georgian Supplement",11568:"Tifinagh",11648:"Ethiopic Extended",11744:"Cyrillic Extended-A",11776:"New Testament Editorial Symbols",11776:"Supplemental Punctuation",11776:"New Testament Editorial Symbols",11790:"Ancient Greek Textual Symbols",11800:"gnaborretni",11800:"INVERTED INTERROBANG",11801:"PALM BRANCH",11802:"Dictionary Punctuation",11818:"Medievalist Punctuation",
164
- 11825:"WORD SEPARATOR MIDDLE DOT",11825:"WORD SEPARATOR middle dot",11904:"CJK Phonetics and Symbols Area",11904:"CJK Radicals Supplement",11904:"CJK Phonetics and Symbols Area",11904:"CJK Radicals Supplement",11904:"CJK Phonetics and Symbols Area",12032:"CJK Kangxi Radicals",12272:"CJK Ideographic Description Characters",12288:"CJK Symbols and Punctuation",12288:"IDEOGRAPHIC SPACE",12288:"CJK Symbols and Punctuation",12288:"IDEOGRAPHIC SPACE",12288:"CJK Symbols and Punctuation",12289:"IDEOGRAPHIC COMMA",
165
- 12290:"IDEOGRAPHIC FULL STOP",12291:"DITTO MARK",12292:"JAPANESE INDUSTRIAL STANDARD SYMBOL",12293:"IDEOGRAPHIC ITERATION MARK",12294:"IDEOGRAPHIC CLOSING MARK",12295:"IDEOGRAPHIC NUMBER ZERO",12296:"LEFT ANGLE BRACKET",12296:"CJK Angle Brackets",12296:"LEFT ANGLE BRACKET",12296:"CJK Angle Brackets",12296:"Left ANGLE BRACKET",12297:"right ANGLE BRACKET",12297:"RIGHT ANGLE BRACKET",12298:"LEFT double ANGLE BRACKET",12298:"Left double ANGLE BRACKET",12299:"right double ANGLE BRACKET",12299:"RIGHT double ANGLE BRACKET",
166
- 12300:"LEFT CORNER BRACKET",12300:"CJK Corner Brackets",12300:"CJK Quotation Marks",12300:"CJK Corner Brackets",12300:"Left CORNER BRACKET",12300:"CJK Quotation Marks",12301:"right CORNER BRACKET",12301:"RIGHT CORNER BRACKET",12302:"LEFT WHITE CORNER BRACKET",12302:"Left WHITE CORNER BRACKET",12302:"LEFT WHITE CORNER BRACKET",12303:"right WHITE CORNER BRACKET",12303:"RIGHT WHITE CORNER BRACKET",12303:"right WHITE CORNER BRACKET",12304:"LEFT BLACK LENTICULAR BRACKET",12304:"Left BLACK LENTICULAR BRACKET",
167
- 12304:"LEFT BLACK LENTICULAR BRACKET",12305:"right BLACK LENTICULAR BRACKET",12305:"RIGHT BLACK LENTICULAR BRACKET",12306:"POSTAL MARK",12307:"GETA MARK",12308:"LEFT TORTOISE SHELL BRACKET",12308:"Left TORTOISE SHELL BRACKET",12308:"LEFT TORTOISE SHELL BRACKET",12309:"right TORTOISE SHELL BRACKET",12309:"RIGHT TORTOISE SHELL BRACKET",12309:"right TORTOISE SHELL BRACKET",12310:"LEFT WHITE LENTICULAR BRACKET",12310:"Left WHITE LENTICULAR BRACKET",12310:"LEFT WHITE LENTICULAR BRACKET",12311:"right WHITE LENTICULAR BRACKET",
168
- 12311:"RIGHT WHITE LENTICULAR BRACKET",12311:"right WHITE LENTICULAR BRACKET",12312:"LEFT WHITE TORTOISE SHELL BRACKET",12312:"Left WHITE TORTOISE SHELL BRACKET",12312:"LEFT WHITE TORTOISE SHELL BRACKET",12313:"right WHITE TORTOISE SHELL BRACKET",12313:"RIGHT WHITE TORTOISE SHELL BRACKET",12313:"right WHITE TORTOISE SHELL BRACKET",12314:"left abstract syntax bracket",12314:"LEFT WHITE SQUARE BRACKET",12314:"left abstract syntax bracket",12314:"Left WHITE SQUARE BRACKET",12314:"LEFT WHITE SQUARE BRACKET",
169
- 12315:"right abstract syntax bracket",12315:"right WHITE SQUARE BRACKET",12315:"right abstract syntax bracket",12315:"RIGHT WHITE SQUARE BRACKET",12315:"right WHITE SQUARE BRACKET",12316:"WAVE DASH",12317:"reversed double PRIME QUOTATION MARK",12318:"DOUBLE PRIME QUOTATION MARK",12319:"LOW double PRIME QUOTATION MARK",12320:"POSTAL MARK FACE",12321:"Hangzhou Numerals",12321:"Suzhou Numerals",12330:"CJK Diacritics",12330:"Ideographic Tone Marks",12336:"WAVY DASH",12337:"Kana Repeat Marks",12342:"CIRCLED POSTAL MARK",
170
- 12347:"VERTICAL IDEOGRAPHIC ITERATION MARK",12348:"MASU MARK",12350:"IDEOGRAPHIC VARIATION INDICATOR",12351:"IDEOGRAPHIC half FILL SPACE",12352:"Hiragana",12352:"Japanese Hiragana",12437:"HIRAGANA letter small KA",12437:"Hiragana Supplement",12437:"HIRAGANA letter small KA",12438:"HIRAGANA letter small KE",12441:"combining japanese daku-on",12442:"combining japanese han-daku-on",12443:"japanese daku-on",12444:"japanese han-daku-on",12445:"HIRAGANA ITERATION MARK",12446:"HIRAGANA VOICED ITERATION MARK",
171
- 12448:"KATAKANA-HIRAGANA double HYPHEN",12448:"Japanese Katakana",12448:"Katakana",12448:"KATAKANA-HIRAGANA double HYPHEN",12539:"KATAKANA MIDDLE DOT",12539:"KATAKANA middle dot",12539:"KATAKANA MIDDLE DOT",12540:"KATAKANA-HIRAGANA PROLONGED SOUND MARK",12541:"KATAKANA ITERATION MARK",12542:"KATAKANA VOICED ITERATION MARK",12543:"KATAKANA DIGRAPH KOTO",12544:"Chinese Bopomofo",12592:"Korean Hangul Compatibility Jamo",12644:"HANGUL FILLER",12645:"Korean Hangul Archaic Letters",12688:"Japanese Kanbun Ideographic Annotation",
172
- 12704:"Chinese Bopomofo Extensions",12736:"CJK Strokes",12784:"Katakana Extensions for Ainu",12784:"Katakana Phonetic Extensions",12800:"Enclosed CJK Letters and Months",12800:"Parenthesized Korean Hangul Letters",12800:"Enclosed CJK Letters and Months",12800:"Parenthesized Korean Hangul Letters",12814:"Parenthesized Korean Hangul Syllables",12832:"Parenthesized CJK Ideographs",12881:"Circled Numbers",12896:"Circled Korean Hangul Letters",12910:"Circled Korean Hangul Syllables",12927:"KOREAN STANDARD SYMBOL",
173
- 12928:"Circled Ideographs",12977:"Circled Numbers",12992:"Ideographic Telegraph Symbols for Months",13008:"Circled Katakana",13008:"Circled Japanese Katakana",13008:"Circled Katakana",13056:"CJK Compatibility",13056:"Squared Japanese Katakana Words",13056:"Squared Katakana Words",13056:"Squared Japanese Katakana Words",13056:"Squared Katakana Words",13144:"Ideographic Telegraph Symbols for Hours",13169:"Squared Latin Abbreviations",13179:"Japanese Era Names",13183:"japanese incorporated",13183:"kabusiki-gaisya",
174
- 13184:"Squared Latin Abbreviations",13280:"Ideographic Telegraph Symbols for Days",13312:"CJK Ideographs Area",13312:"CJK Unified Ideographs Extension A",13312:"CJK Ideographs Area",13312:"CJK Unified Ideographs Extension A",19904:"Yijing / I Ching Hexagram Symbols",19904:"I Ching / Yijing Hexagram Symbols",19904:"Yijing / I Ching Hexagram Symbols",19968:"CJK Unified Ideographs",19968:"Han Ideographs",19968:"CJK Unified Ideographs",19968:"Han Ideographs",19968:"CJK Unified Ideographs",40960:"Yi Syllables",
175
- 42128:"Yi Radicals",42192:"Lisu",42240:"Vai",42560:"Cyrillic Extended-B",42656:"Bamum",42752:"Corner Tone Marks for Chinese",42752:"Modifier Tone Letters",42752:"Corner Tone Marks for Chinese",42784:"Latin Extended-D",43008:"Syloti Nagri",43014:"SYLOTI NAGRI sign HASANTA",43056:"Common Indic Number Forms",43072:"Phags-pa",43136:"Saurashtra",43232:"Devanagari Extended",43264:"Kayah Li",43312:"Rejang",43360:"Korean Hangul Jamo Extended-A",43392:"Javanese",43520:"Cham",43616:"Myanmar Extended-A",43648:"Tai Viet",
176
- 43776:"Ethiopic Extended-A",43968:"Meetei Mayek",44032:"Asian Scripts Area",44032:"Korean Hangul Syllables Area",44032:"Asian Scripts Area",44032:"Korean Hangul Syllables Area",44032:"Korean Hangul Syllables",55216:"Korean Hangul Jamo Extended-B",55296:"Surrogates Area",55296:"High Surrogates",55296:"Surrogates Area",55296:"High Surrogates",56320:"Low Surrogates",57344:"Private Use Area",63744:"Compatibility and Specials Area",63744:"CJK Compatibility Ideographs",63744:"Compatibility and Specials Area",
177
- 63744:"CJK Compatibility Ideographs",63744:"Compatibility and Specials Area",64012:"Duplicate Characters from Big 5",64048:"JIS X 0213 Compatibility Ideographs",64112:"DPRK Compatibility Ideographs",64256:"Alphabetic Presentation Forms",64256:"Latin Ligatures",64256:"Alphabetic Presentation Forms",64275:"Armenian Ligatures",64285:"Hebrew Presentation Forms",64336:"Arabic Contextual Form Glyphs",64336:"Arabic Presentation Forms-A",64336:"Arabic Contextual Form Glyphs",64336:"Arabic Presentation Forms-A",
178
- 64434:"Arabic Spacing Diacritics",64490:"Arabic Ligatures",64830:"ORNATE Left PARENTHESIS",64830:"ORNATE left PARENTHESIS",64831:"ORNATE right PARENTHESIS",64831:"ORNATE Right PARENTHESIS",65020:"iranian currency",65020:"RIAL sign",65021:"Arabic LIGATURE BISMILLAH AR-RAHMAN AR-RAHEEM",65024:"Variation Selectors",65024:"VARIATION SELECTOR-1",65024:"Variation Selectors",65024:"vs1",65040:"Glyphs for Vertical Variants",65056:"Combining Half Marks",65060:"Combining MACRON left HALF",65060:"Continuous Macrons for Coptic",
179
- 65060:"Combining MACRON left HALF",65061:"Combining MACRON right HALF",65062:"Combining CONJOINING macron",65062:"Combining CONJOINING MACRON",65072:"CJK Compatibility Forms",65072:"Vertical Form Variants",65072:"Glyphs for Vertical Variants",65093:"SESAME DOT",65093:"Sidelining Emphasis Marks",65093:"SESAME DOT",65093:"Sidelining Emphasis Marks",65094:"WHITE SESAME DOT",65097:"DASHED OVERLINE",65097:"Overscores and Underscores",65098:"CENTRELINE OVERLINE",65099:"WAVY OVERLINE",65100:"DOUBLE WAVY OVERLINE",
180
- 65101:"DASHED low LINE",65102:"CENTRELINE low LINE",65103:"WAVY low LINE",65104:"Small Form Variants",65136:"Glyphs for Spacing Forms of Arabic Points",65136:"Arabic Presentation Forms-B",65152:"Arabic Contextual Form Glyphs",65279:"bom",65279:"byte order mark",65279:"ZERO WIDTH NO-BREAK SPACE",65279:"zwnbsp",65280:"Halfwidth and Fullwidth Forms",65281:"Fullwidth ASCII Variants",65377:"Halfwidth CJK Punctuation",65377:"Halfwidth Japanese Katakana Variants",65377:"Halfwidth CJK Punctuation",65440:"Halfwidth Korean Hangul Variants",
181
- 65504:"Fullwidth Symbol Variants",65512:"Halfwidth Symbol Variants",65520:"Specials",65529:"INTERLINEAR ANNOTATION ANCHOR",65529:"Interlinear Annotation",65529:"INTERLINEAR ANNOTATION ANCHOR",65530:"INTERLINEAR ANNOTATION SEPARATOR",65531:"INTERLINEAR ANNOTATION TERMINATOR",65532:"OBJECT REPLACEMENT CHARACTER",65533:"REPLACEMENT CHARACTER"});
@@ -1,18 +0,0 @@
1
- /*
2
- Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
3
- For licensing, see LICENSE.html or http://ckeditor.com/license
4
- */
5
- CKEDITOR.dialog.add("symbol",function(j){function o(a,b,c){if(null!=a){for(var s=CKEDITOR.tools.getNextId()+"_symbol_table_label",i=[""],h=0,d=0,j=!1,f,g,k=a.split(","),l=0;l<k.length;l++){f=0;a=-1;g=!1;var e=k[l].split("-");switch(e.length){case 0:break;case 1:"*"==e[0].charAt(e[0].length-1)?(a=f=parseInt(e[0].substring(0,e[0].length-1),16),g=!0):a=f=parseInt(e[0],16);break;default:("*"==e[0].charAt(e[0].length-1)?(f=parseInt(e[0].substring(0,e[0].length-1),16),g=!0):f=parseInt(e[0],16),"*"==e[1].charAt(e[1].length-
6
- 1))?(a=parseInt(e[1].substring(0,e[1].length-1),16),g=!0):a=parseInt(e[1],16)}h+=a-f+1;if(a>=f){j||(i.push('<table role="listbox" aria-labelledby="'+s+'" style="width: 100%; height: 100%; border-collapse: separate;" align="center" cellspacing="2" cellpadding="2" border="0">'),j=!0);for(;f<=a;){0==d&&i.push("<tr>");for(var e=!0,n=d;n<c;n++,f++)if(f<=a){var o=t(f),p=q&&q[f]||o,r="cke_symbol_label_"+f+"_"+CKEDITOR.tools.getNextNumber();i.push('<td class="cke_dark_background" style="cursor: default" role="presentation"><a href="javascript: void(0);" role="option" aria-posinset="'+
7
- (f+1)+'"',' aria-setsize="'+h+'"',' aria-labelledby="'+r+'"',' style="cursor: inherit; display: block; height: 1.25em; margin-top: 0.25em; text-align: center;" title="',CKEDITOR.tools.htmlEncode(p),'" onkeydown="CKEDITOR.tools.callFunction( '+u+', event, this )" onclick="CKEDITOR.tools.callFunction('+v+', this); return false;" tabindex="-1"><span style="margin: 0 auto;cursor: inherit"'+(g?">"+m:">")+o+'</span><span class="cke_voice_label" id="'+r+'">'+p+"</span></a>");i.push("</td>")}else{d=n;e=!1;
8
- break}if(e)d=0,i.push("</tr>");else break}}}if(0!=d){for(f=d;f<c;f++)i.push("<td>&nbsp;</td>");i.push("</tr>")}j?(i[0]=255<h?'<div style="width:100%;height:300px;overflow:auto;">':"<div>",i.push("</table></div>"),c=i.join(""),b.getElement().setHtml(c)):b.getElement().setHtml("<div>No valid range(s) defined...</div>")}else b.getElement().setHtml("<div>No range defined...</div>")}function t(a){a=a.toString(16).toUpperCase();return 1>a.length?eval('"\\u0000"'):2>a.length?eval('"\\u000'+a+'"'):3>a.length?
9
- eval('"\\u00'+a+'"'):4>a.length?eval('"\\u0'+a+'"'):eval('"\\u'+a+'"')}function w(a,b){return a[0]==b[0]?0:a[0]>b[0]?1:-1}var m="&nbsp;",n=null,d,q=j.lang.symbol,k=null,p=function(a){var b,a=a.data?a.data.getTarget():new CKEDITOR.dom.element(a);if("a"==a.getName()&&(b=a.getChild(0).getHtml()))a.removeClass("cke_light_background"),b.length>m.length&&0==b.indexOf(m)&&(b=b.substring(m.length)),d.hide(),a=j.document.createElement("span"),a.setHtml(b),j.insertText(a.getText())},v=CKEDITOR.tools.addFunction(p),
10
- l,g=function(a,b){var c,b=b||a.data.getTarget();"span"==b.getName()&&(b=b.getParent());if("a"==b.getName()&&(c=b.getChild(0).getHtml())){l&&h(null,l);var g=d.getContentElement("info","unicodePreview").getElement();d.getContentElement("info","charPreview").getElement().setHtml(c);var i=0,i="&nbsp;"==c?160:c.length>m.length&&0==c.indexOf(m)?c.charCodeAt(m.length):c.charCodeAt(0);g.setHtml("Unicode (hex): "+i+" ("+i.toString(16).toUpperCase()+")");b.getParent().addClass("cke_light_background");l=b}},
11
- h=function(a,b){b=b||a.data.getTarget();"span"==b.getName()&&(b=b.getParent());"a"==b.getName()&&(d.getContentElement("info","unicodePreview").getElement().setHtml("&nbsp;"),d.getContentElement("info","charPreview").getElement().setHtml("&nbsp;"),b.getParent().removeClass("cke_light_background"),l=void 0)},u=CKEDITOR.tools.addFunction(function(a){var a=new CKEDITOR.dom.event(a),b=a.getTarget(),c;c=a.getKeystroke();var d="rtl"==j.lang.dir;switch(c){case 38:if(c=b.getParent().getParent().getPrevious())c=
12
- c.getChild([b.getParent().getIndex(),0]),c.focus(),h(null,b),g(null,c);a.preventDefault();break;case 40:if(c=b.getParent().getParent().getNext())if((c=c.getChild([b.getParent().getIndex(),0]))&&1==c.type)c.focus(),h(null,b),g(null,c);a.preventDefault();break;case 32:p({data:a});a.preventDefault();break;case d?37:39:case 9:if(c=b.getParent().getNext())c=c.getChild(0),1==c.type?(c.focus(),h(null,b),g(null,c),a.preventDefault(!0)):h(null,b);else if(c=b.getParent().getParent().getNext())(c=c.getChild([0,
13
- 0]))&&1==c.type?(c.focus(),h(null,b),g(null,c),a.preventDefault(!0)):h(null,b);break;case d?39:37:case CKEDITOR.SHIFT+9:(c=b.getParent().getPrevious())?(c=c.getChild(0),c.focus(),h(null,b),g(null,c),a.preventDefault(!0)):(c=b.getParent().getParent().getPrevious())?(c=c.getLast().getChild(0),c.focus(),h(null,b),g(null,c),a.preventDefault(!0)):h(null,b)}}),x=[CKEDITOR.dialog.cancelButton],y=j.lang.common.generalTab,z=j.lang.common.generalTab;j.config.sortSymbolRangesAlphabetically?k||(k=CKEDITOR.config.symbolRanges.slice(),
14
- k.sort(w)):k=CKEDITOR.config.symbolRanges;return{title:"Select Symbol",buttons:x,charColumns:16,onShow:function(){var a=this.getContentElement("info","symbolRange").getInputElement().$;console.log("domElement.childNodes.length="+a.childNodes.length);if(a.childNodes.length>0){var b=null;if(!n){b="Basic Latin";if(j.config.defaultSymbolRange)b=j.config.defaultSymbolRange;console.log("startRange = "+b)}for(var c=0,d=0;d<a.childNodes.length;d++){console.log(d+" domElement.childNodes[i].text = "+a.childNodes[d].text);
15
- if(a.childNodes[d].text==b||a.childNodes[d].value==n){c=d;break}}a.selectedIndex=c;console.log("selectedIndex = "+a.selectedIndex);b=this.getContentElement("info","charContainer");o(a.childNodes[c].value,b,this.definition.charColumns)}},contents:[{id:"info",label:y,title:z,padding:0,align:"top",onHide:function(){d&&d.destroy()},elements:[{type:"vbox",align:"top",width:"100%",children:[{type:"select",id:"symbolRange",width:"100%",items:k,size:1,onChange:function(a){console.log("Range changed:");console.log(a.sender.getValue());
16
- n=a.sender.getValue();var b=d.getContentElement("info","charContainer");o(a.sender.getValue(),b,d.definition.charColumns)}},{type:"html",id:"charContainer",html:"",onMouseover:g,onMouseout:h,focus:function(){var a=this.getElement().getElementsByTag("a").getItem(0);setTimeout(function(){a.focus();g(null,a)},0)},onShow:function(){var a=this.getElement().getElementsByTag("a").getItem(0);a!=null&&setTimeout(function(){a.focus();g(null,a)},0)},onLoad:function(a){d=a.sender}},{type:"hbox",align:"top",width:"100%",
17
- children:[{type:"html",html:"<div></div>"},{type:"html",id:"unicodePreview",className:"cke_dark_background",style:"border:1px solid #eeeeee;font-size:14px;height:20px;width:192px;padding-top:25px;font-family:'Microsoft Sans Serif',Arial,'Arial Unicode',Helvetica,Verdana;text-align:center;",html:"<div>&nbsp;</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,'Arial Unicode',Helvetica,Verdana;text-align:center;",
18
- html:"<div>&nbsp;</div>"}]}]}]}]}});
@@ -1 +0,0 @@
1
- CKEDITOR.plugins.setLang("symbol","en",{options:"Symbol Options",title:"Select Symbol",toolbar:"Insert Symbol"});
@@ -1,15 +0,0 @@
1
- /*
2
- Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
3
- For licensing, see LICENSE.html or http://ckeditor.com/license
4
-
5
- If you find an error please let me know (helmoe {AT} gmail {DOTCOM}
6
- */
7
- CKEDITOR.plugins.add("symbol",{availableLangs:{en:1},lang:"en",requires:"dialog",icons:"symbol",init:function(a){var c=this;CKEDITOR.dialog.add("symbol",this.path+"dialogs/symbol.js");a.addCommand("symbol",{exec:function(){if(a.config.removeSymbolRanges&&0<a.config.removeSymbolRanges.length)for(var d=a.config.removeSymbolRanges.length-1;0<=d;d--){var e=a.config.removeSymbolRanges[d];e<a.config.symbolRanges.length&&a.config.symbolRanges.splice(e,1)}var b=a.langCode,b=c.availableLangs[b]?b:c.availableLangs[b.replace(/-.*/,
8
- "")]?b.replace(/-.*/,""):"en";CKEDITOR.scriptLoader.load(CKEDITOR.getUrl(c.path+"dialogs/lang/"+b+".js"),function(){CKEDITOR.tools.extend(a.lang.symbol,c.langEntries[b]);a.openDialog("symbol")})},modes:{wysiwyg:1},canUndo:!1});a.ui.addButton&&a.ui.addButton("Symbol",{label:"Insert symbol",command:"symbol",toolbar:"insert"})}});
9
- CKEDITOR.config.symbolRanges=[["Basic Latin","0020-007E"],["Latin-1 Supplement","00A0-00B0,00B1,00B2-00FF"],["Latin Extended-A","0100-017F"],["Latin Extended-B","0180-024F"],["IPA Extensions","0250-02AF"],["Spacing Modifier Letters","02B0-02FF"],["Combining Diacritical Marks","0300-036F*"],["Greek and Coptic","0370-03FF"],["Cyrillic","0400-04FF"],["Cyrillic Supplementary","0500-052F"],["Armenian","0530-058F"],["Hebrew","0590-05FF"],["Arabic","0600-06FF"],["Syriac","0700-074F"],["Thaana","0780-07BF"],
10
- ["Devanagari","0900-097F"],["Bengali","0980-09FF"],["Gurmukhi","0A00-0A7F"],["Gujarati","0A80-0AFF"],["Oriya","0B00-0B7F"],["Tamil","0B80-0BFF"],["Telugu","0C00-0C7F"],["Kannada","0C80-0CFF"],["Malayalam","0D00-0D7F"],["Sinhala","0D80-0DFF"],["Thai","0E00-0E7F"],["Lao","0E80-0EFF"],["Tibetan","0F00-0FFF"],["Myanmar","1000-109F"],["Georgian","10A0-10FF"],["Hangul Jamo","1100-11FF"],["Ethiopic","1200-137F"],["Cherokee","13A0-13FF"],["Unified Canadian Aboriginal Syllabics","1400-167F"],["Ogham","1680-169F"],
11
- ["Runic","16A0-16FF"],["Tagalog","1700-171F"],["Hanunoo","1720-173F"],["Buhid","1740-175F"],["Tagbanwa","1760-177F"],["Khmer","1780-17FF"],["Mongolian","1800-18AF"],["Limbu","1900-194F"],["Tai Le","1950-197F"],["Khmer Symbols","19E0-19FF"],["Phonetic Extensions","1D00-1D7F"],["Latin Extended Additional","1E00-1EFF"],["Greek Extended","1F00-1FFF"],["General Punctuation","2000-206F"],["Superscripts and Subscripts","2070-209F"],["Currency Symbols","20A0-20CF"],["Combining Diacritical Marks for Symbols",
12
- "20D0-20FF"],["Letterlike Symbols","2100-214F"],["Number Forms","2150-218F"],["Arrows","2190-21FF"],["Mathematical Operators","2200-22FF"],["Miscellaneous Technical","2300-23FF"],["Control Pictures","2400-243F"],["Optical Character Recognition","2440-245F"],["Enclosed Alphanumerics","2460-24FF"],["Box Drawing","2500-257F"],["Block Elements","2580-259F"],["Geometric Shapes","25A0-25FF"],["Miscellaneous Symbols","2600-26FF"],["Dingbats","2700-27BF"],["Miscellaneous Mathematical Symbols-A","27C0-27EF"],
13
- ["Supplemental Arrows-A","27F0-27FF"],["Braille Patterns","2800-28FF"],["Supplemental Arrows-B","2900-297F"],["Miscellaneous Mathematical Symbols-B","2980-29FF"],["Supplemental Mathematical Operators","2A00-2AFF"],["Miscellaneous Symbols and Arrows","2B00-2BFF"],["CJK Radicals Supplement","2E80-2EFF"],["Kangxi Radicals","2F00-2FDF"],["Ideographic Description Characters","2FF0-2FFF"],["CJK Symbols and Punctuation","3000-303F"],["Hiragana","3040-309F"],["Katakana","30A0-30FF"],["Bopomofo","3100-312F"],
14
- ["Hangul Compatibility Jamo","3130-318F"],["Kanbun","3190-319F"],["Bopomofo Extended","31A0-31BF"],["Katakana Phonetic Extensions","31F0-31FF"],["Enclosed CJK Letters and Months","3200-32FF"],["CJK Compatibility","3300-33FF"],["CJK Unified Ideographs Extension A","3400-4DBF"],["Yijing Hexagram Symbols","4DC0-4DFF"],["CJK Unified Ideographs","4E00-9FFF"],["Yi Syllables","A000-A48F"],["Yi Radicals","A490-A4CF"],["Hangul Syllables","AC00-D7AF"],["High Surrogates","D800-DB7F"],["High Private Use Surrogates",
15
- "DB80-DBFF"],["Low Surrogates","DC00-DFFF"],["Private Use Area","E000-F8FF"],["CJK Compatibility Ideographs","F900-FAFF"],["Alphabetic Presentation Forms","FB00-FB4F"],["Arabic Presentation Forms-A","FB50-FDFF"],["Variation Selectors","FE00-FE0F"],["Combining Half Marks","FE20-FE2F"],["CJK Compatibility Forms","FE30-FE4F"],["Small Form Variants","FE50-FE6F"],["Arabic Presentation Forms-B","FE70-FEFF"],["Halfwidth and Fullwidth Forms","FF00-FFEF"],["Specials","FFF0-FFFF"]];
@@ -1,9 +0,0 @@
1
- /*
2
- Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
3
- For licensing, see LICENSE.md or http://ckeditor.com/license
4
- */
5
- CKEDITOR.dialog.add("uicolor",function(b){function f(a){/^#/.test(a)&&(a=window.YAHOO.util.Color.hex2rgb(a.substr(1)));c.setValue(a,!0);c.refresh(e)}function g(a){b.setUiColor(a);d._.contents.tab1.configBox.setValue('config.uiColor = "#'+c.get("hex")+'"')}var d,c,h=b.getUiColor(),e="cke_uicolor_picker"+CKEDITOR.tools.getNextNumber();return{title:b.lang.uicolor.title,minWidth:360,minHeight:320,onLoad:function(){d=this;this.setupContent();CKEDITOR.env.ie7Compat&&d.parts.contents.setStyle("overflow",
6
- "hidden")},contents:[{id:"tab1",label:"",title:"",expand:!0,padding:0,elements:[{id:"yuiColorPicker",type:"html",html:"<div id='"+e+"' class='cke_uicolor_picker' style='width: 360px; height: 200px; position: relative;'></div>",onLoad:function(){var a=CKEDITOR.getUrl("plugins/uicolor/yui/");this.picker=c=new window.YAHOO.widget.ColorPicker(e,{showhsvcontrols:!0,showhexcontrols:!0,images:{PICKER_THUMB:a+"assets/picker_thumb.png",HUE_THUMB:a+"assets/hue_thumb.png"}});h&&f(h);c.on("rgbChange",function(){d._.contents.tab1.predefined.setValue("");
7
- g("#"+c.get("hex"))});for(var a=new CKEDITOR.dom.nodeList(c.getElementsByTagName("input")),b=0;b<a.count();b++)a.getItem(b).addClass("cke_dialog_ui_input_text")}},{id:"tab1",type:"vbox",children:[{type:"hbox",children:[{id:"predefined",type:"select","default":"",label:b.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"],
8
- ["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 a=this.getValue();a?(f(a),g(a),CKEDITOR.document.getById("predefinedPreview").setStyle("background",a)):CKEDITOR.document.getById("predefinedPreview").setStyle("background","")},onShow:function(){var a=
9
- b.getUiColor();a&&this.setValue(a)}},{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:b.lang.uicolor.config,onShow:function(){var a=b.getUiColor();a&&this.setValue('config.uiColor = "'+a+'"')}}]}]}],buttons:[CKEDITOR.dialog.okButton]}});
@@ -1,15 +0,0 @@
1
- /*
2
- Copyright (c) 2009, Yahoo! Inc. All rights reserved.
3
- Code licensed under the BSD License:
4
- http://developer.yahoo.net/yui/license.txt
5
- version: 2.7.0
6
- */
7
- .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;}
8
-
9
- /*
10
- Copyright (c) 2009, Yahoo! Inc. All rights reserved.
11
- Code licensed under the BSD License:
12
- http://developer.yahoo.net/yui/license.txt
13
- version: 2.7.0
14
- */
15
- .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);}.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;}
@@ -1,225 +0,0 @@
1
- if("undefined"==typeof YAHOO||!YAHOO)var YAHOO={};YAHOO.namespace=function(){var c=arguments,e=null,b,d,a;for(b=0;b<c.length;b+=1){a=(""+c[b]).split(".");e=YAHOO;for(d="YAHOO"==a[0]?1:0;d<a.length;d+=1)e[a[d]]=e[a[d]]||{},e=e[a[d]]}return e};YAHOO.log=function(c,e,b){var d=YAHOO.widget.Logger;return d&&d.log?d.log(c,e,b):!1};
2
- YAHOO.register=function(c,e,b){var d=YAHOO.env.modules,a,f,g;d[c]||(d[c]={versions:[],builds:[]});d=d[c];a=b.version;b=b.build;f=YAHOO.env.listeners;d.name=c;d.version=a;d.build=b;d.versions.push(a);d.builds.push(b);d.mainClass=e;for(g=0;g<f.length;g+=1)f[g](d);e?(e.VERSION=a,e.BUILD=b):YAHOO.log("mainClass is undefined for module "+c,"warn")};YAHOO.env=YAHOO.env||{modules:[],listeners:[]};YAHOO.env.getVersion=function(c){return YAHOO.env.modules[c]||null};
3
- YAHOO.env.ua=function(){var c={ie:0,opera:0,gecko:0,webkit:0,mobile:null,air:0,caja:0},e=navigator.userAgent,b;/KHTML/.test(e)&&(c.webkit=1);if((b=e.match(/AppleWebKit\/([^\s]*)/))&&b[1]){c.webkit=parseFloat(b[1]);if(/ Mobile\//.test(e))c.mobile="Apple";else if(b=e.match(/NokiaN[^\/]*/))c.mobile=b[0];if(b=e.match(/AdobeAIR\/([^\s]*)/))c.air=b[0]}if(!c.webkit)if((b=e.match(/Opera[\s\/]([^\s]*)/))&&b[1]){if(c.opera=parseFloat(b[1]),b=e.match(/Opera Mini[^;]*/))c.mobile=b[0]}else if((b=e.match(/MSIE\s([^;]*)/))&&
4
- b[1])c.ie=parseFloat(b[1]);else if(b=e.match(/Gecko\/([^\s]*)/))if(c.gecko=1,(b=e.match(/rv:([^\s\)]*)/))&&b[1])c.gecko=parseFloat(b[1]);if((b=e.match(/Caja\/([^\s]*)/))&&b[1])c.caja=parseFloat(b[1]);return c}();(function(){YAHOO.namespace("util","widget","example");if("undefined"!==typeof YAHOO_config){var c=YAHOO_config.listener,e=YAHOO.env.listeners,b=!0,d;if(c){for(d=0;d<e.length;d+=1)if(e[d]==c){b=!1;break}b&&e.push(c)}}})();YAHOO.lang=YAHOO.lang||{};
5
- (function(){var c=YAHOO.lang,e=Object.prototype,b=["toString","valueOf"],d={isArray:function(a){return"[object Array]"===e.toString.apply(a)},isBoolean:function(a){return"boolean"===typeof a},isFunction:function(a){return"[object Function]"===e.toString.apply(a)},isNull:function(a){return null===a},isNumber:function(a){return"number"===typeof a&&isFinite(a)},isObject:function(a){return a&&("object"===typeof a||c.isFunction(a))||!1},isString:function(a){return"string"===typeof a},isUndefined:function(a){return"undefined"===
6
- typeof a},_IEEnumFix:YAHOO.env.ua.ie?function(a,d){var g,h,i;for(g=0;g<b.length;g+=1)h=b[g],i=d[h],c.isFunction(i)&&i!=e[h]&&(a[h]=i)}:function(){},extend:function(a,b,d){if(!b||!a)throw Error("extend failed, please check that all dependencies are included.");var h=function(){},i;h.prototype=b.prototype;a.prototype=new h;a.prototype.constructor=a;a.superclass=b.prototype;b.prototype.constructor==e.constructor&&(b.prototype.constructor=b);if(d){for(i in d)c.hasOwnProperty(d,i)&&(a.prototype[i]=d[i]);
7
- c._IEEnumFix(a.prototype,d)}},augmentObject:function(a,b){if(!b||!a)throw Error("Absorb failed, verify dependencies.");var d=arguments,e,i=d[2];if(i&&!0!==i)for(e=2;e<d.length;e+=1)a[d[e]]=b[d[e]];else{for(e in b)if(i||!(e in a))a[e]=b[e];c._IEEnumFix(a,b)}},augmentProto:function(a,b){if(!b||!a)throw Error("Augment failed, verify dependencies.");var d=[a.prototype,b.prototype],e;for(e=2;e<arguments.length;e+=1)d.push(arguments[e]);c.augmentObject.apply(this,d)},dump:function(a,b){var d,e,i=[];if(c.isObject(a)){if(a instanceof
8
- Date||"nodeType"in a&&"tagName"in a)return a;if(c.isFunction(a))return"f(){...}"}else return a+"";b=c.isNumber(b)?b:3;if(c.isArray(a)){i.push("[");d=0;for(e=a.length;d<e;d+=1)c.isObject(a[d])?i.push(0<b?c.dump(a[d],b-1):"{...}"):i.push(a[d]),i.push(", ");1<i.length&&i.pop();i.push("]")}else{i.push("{");for(d in a)c.hasOwnProperty(a,d)&&(i.push(d+" => "),c.isObject(a[d])?i.push(0<b?c.dump(a[d],b-1):"{...}"):i.push(a[d]),i.push(", "));1<i.length&&i.pop();i.push("}")}return i.join("")},substitute:function(a,
9
- b,d){for(var h,i,j,k,l,m=[],n;;){h=a.lastIndexOf("{");if(0>h)break;i=a.indexOf("}",h);if(h+1>=i)break;k=n=a.substring(h+1,i);l=null;j=k.indexOf(" ");-1<j&&(l=k.substring(j+1),k=k.substring(0,j));j=b[k];d&&(j=d(k,j,l));c.isObject(j)?c.isArray(j)?j=c.dump(j,parseInt(l,10)):(l=l||"",k=l.indexOf("dump"),-1<k&&(l=l.substring(4)),j=j.toString===e.toString||-1<k?c.dump(j,parseInt(l,10)):j.toString()):!c.isString(j)&&!c.isNumber(j)&&(j="~-"+m.length+"-~",m[m.length]=n);a=a.substring(0,h)+j+a.substring(i+
10
- 1)}for(h=m.length-1;0<=h;h-=1)a=a.replace(RegExp("~-"+h+"-~"),"{"+m[h]+"}","g");return a},trim:function(a){try{return a.replace(/^\s+|\s+$/g,"")}catch(b){return a}},merge:function(){var a={},b=arguments,d=b.length,e;for(e=0;e<d;e+=1)c.augmentObject(a,b[e],!0);return a},later:function(a,b,d,e,i){var a=a||0,b=b||{},j=d,k=e,l;c.isString(d)&&(j=b[d]);if(!j)throw new TypeError("method undefined");c.isArray(k)||(k=[e]);d=function(){j.apply(b,k)};l=i?setInterval(d,a):setTimeout(d,a);return{interval:i,cancel:function(){this.interval?
11
- clearInterval(l):clearTimeout(l)}}},isValue:function(a){return c.isObject(a)||c.isString(a)||c.isNumber(a)||c.isBoolean(a)}};c.hasOwnProperty=e.hasOwnProperty?function(a,b){return a&&a.hasOwnProperty(b)}:function(a,b){return!c.isUndefined(a[b])&&a.constructor.prototype[b]!==a[b]};d.augmentObject(c,d,!0);YAHOO.util.Lang=c;c.augment=c.augmentProto;YAHOO.augment=c.augmentProto;YAHOO.extend=c.extend})();YAHOO.register("yahoo",YAHOO,{version:"2.7.0",build:"1796"});
12
- (function(){YAHOO.env._id_counter=YAHOO.env._id_counter||0;var c=YAHOO.util,e=YAHOO.lang,b=YAHOO.env.ua,d=YAHOO.lang.trim,a={},f={},g=/^t(?:able|d|h)$/i,h=/color$/i,i=window.document,j=i.documentElement,k=b.opera,l=b.webkit,m=b.gecko,n=b.ie;c.Dom={CUSTOM_ATTRIBUTES:!j.hasAttribute?{"for":"htmlFor","class":"className"}:{htmlFor:"for",className:"class"},get:function(a){var b,d,f,e;if(a){if(a.nodeType||a.item)return a;if("string"===typeof a){b=a;a=i.getElementById(a);if(!(a&&a.id===b)&&a&&i.all){a=null;
13
- d=i.all[b];f=0;for(e=d.length;f<e;++f)if(d[f].id===b)return d[f]}return a}a.DOM_EVENTS&&(a=a.get("element"));if("length"in a){b=[];f=0;for(e=a.length;f<e;++f)b[b.length]=c.Dom.get(a[f]);return b}return a}return null},getComputedStyle:function(a,b){if(window.getComputedStyle)return a.ownerDocument.defaultView.getComputedStyle(a,null)[b];if(a.currentStyle)return c.Dom.IE_ComputedStyle.get(a,b)},getStyle:function(a,b){return c.Dom.batch(a,c.Dom._getStyle,b)},_getStyle:function(){if(window.getComputedStyle)return function(a,
14
- b){var b="float"===b?b="cssFloat":c.Dom._toCamel(b),d=a.style[b],f;d||(f=a.ownerDocument.defaultView.getComputedStyle(a,null))&&(d=f[b]);return d};if(j.currentStyle)return function(a,b){var d;switch(b){case "opacity":d=100;try{d=a.filters["DXImageTransform.Microsoft.Alpha"].opacity}catch(f){try{d=a.filters("alpha").opacity}catch(e){}}return d/100;case "float":b="styleFloat";default:return b=c.Dom._toCamel(b),d=a.currentStyle?a.currentStyle[b]:null,a.style[b]||d}}}(),setStyle:function(a,b,d){c.Dom.batch(a,
15
- c.Dom._setStyle,{prop:b,val:d})},_setStyle:function(){return n?function(a,b){var d=c.Dom._toCamel(b.prop),f=b.val;if(a)switch(d){case "opacity":if(e.isString(a.style.filter)&&(a.style.filter="alpha(opacity="+100*f+")",!a.currentStyle||!a.currentStyle.hasLayout))a.style.zoom=1;break;case "float":d="styleFloat";default:a.style[d]=f}}:function(a,b){var d=c.Dom._toCamel(b.prop),f=b.val;a&&("float"==d&&(d="cssFloat"),a.style[d]=f)}}(),getXY:function(a){return c.Dom.batch(a,c.Dom._getXY)},_canPosition:function(a){return"none"!==
16
- c.Dom._getStyle(a,"display")&&c.Dom._inDoc(a)},_getXY:function(){return i.documentElement.getBoundingClientRect?function(a){var d,f,e,g,j,h,m,k=Math.floor;f=!1;if(c.Dom._canPosition(a)){f=a.getBoundingClientRect();e=a.ownerDocument;a=c.Dom.getDocumentScrollLeft(e);d=c.Dom.getDocumentScrollTop(e);f=[k(f.left),k(f.top)];n&&8>b.ie&&(j=g=2,h=e.compatMode,m=o(e.documentElement,"borderLeftWidth"),e=o(e.documentElement,"borderTopWidth"),6===b.ie&&"BackCompat"!==h&&(j=g=0),"BackCompat"==h&&("medium"!==m&&
17
- (g=parseInt(m,10)),"medium"!==e&&(j=parseInt(e,10))),f[0]-=g,f[1]-=j);if(d||a)f[0]+=a,f[1]+=d;f[0]=k(f[0]);f[1]=k(f[1])}return f}:function(a){var d,f,e,g=!1,j=a;if(c.Dom._canPosition(a)){g=[a.offsetLeft,a.offsetTop];d=c.Dom.getDocumentScrollLeft(a.ownerDocument);f=c.Dom.getDocumentScrollTop(a.ownerDocument);for(e=m||519<b.webkit?!0:!1;j=j.offsetParent;)g[0]+=j.offsetLeft,g[1]+=j.offsetTop,e&&(g=c.Dom._calcBorders(j,g));if("fixed"!==c.Dom._getStyle(a,"position")){for(j=a;(j=j.parentNode)&&j.tagName;)if(a=
18
- j.scrollTop,e=j.scrollLeft,m&&"visible"!==c.Dom._getStyle(j,"overflow")&&(g=c.Dom._calcBorders(j,g)),a||e)g[0]-=e,g[1]-=a;g[0]+=d;g[1]+=f}else if(k)g[0]-=d,g[1]-=f;else if(l||m)g[0]+=d,g[1]+=f;g[0]=Math.floor(g[0]);g[1]=Math.floor(g[1])}return g}}(),getX:function(a){return c.Dom.batch(a,function(a){return c.Dom.getXY(a)[0]},c.Dom,!0)},getY:function(a){return c.Dom.batch(a,function(a){return c.Dom.getXY(a)[1]},c.Dom,!0)},setXY:function(a,b,d){c.Dom.batch(a,c.Dom._setXY,{pos:b,noRetry:d})},_setXY:function(a,
19
- b){var d=c.Dom._getStyle(a,"position"),f=c.Dom.setStyle,e=b.pos,g=b.noRetry,j=[parseInt(c.Dom.getComputedStyle(a,"left"),10),parseInt(c.Dom.getComputedStyle(a,"top"),10)],h;"static"==d&&(d="relative",f(a,"position",d));h=c.Dom._getXY(a);if(!e||!1===h)return!1;isNaN(j[0])&&(j[0]="relative"==d?0:a.offsetLeft);isNaN(j[1])&&(j[1]="relative"==d?0:a.offsetTop);null!==e[0]&&f(a,"left",e[0]-h[0]+j[0]+"px");null!==e[1]&&f(a,"top",e[1]-h[1]+j[1]+"px");g||(d=c.Dom._getXY(a),(null!==e[0]&&d[0]!=e[0]||null!==
20
- e[1]&&d[1]!=e[1])&&c.Dom._setXY(a,{pos:e,noRetry:!0}))},setX:function(a,b){c.Dom.setXY(a,[b,null])},setY:function(a,b){c.Dom.setXY(a,[null,b])},getRegion:function(a){return c.Dom.batch(a,function(a){var b=!1;c.Dom._canPosition(a)&&(b=c.Region.getRegion(a));return b},c.Dom,!0)},getClientWidth:function(){return c.Dom.getViewportWidth()},getClientHeight:function(){return c.Dom.getViewportHeight()},getElementsByClassName:function(a,b,d,f,g,j){a=e.trim(a);b=b||"*";d=d?c.Dom.get(d):i;if(!d)return[];for(var h=
21
- [],b=d.getElementsByTagName(b),d=c.Dom.hasClass,m=0,k=b.length;m<k;++m)d(b[m],a)&&(h[h.length]=b[m]);f&&c.Dom.batch(h,f,g,j);return h},hasClass:function(a,b){return c.Dom.batch(a,c.Dom._hasClass,b)},_hasClass:function(a,b){var d=!1;a&&b&&(d=c.Dom.getAttribute(a,"className")||"",d=b.exec?b.test(d):b&&-1<(" "+d+" ").indexOf(" "+b+" "));return d},addClass:function(a,b){return c.Dom.batch(a,c.Dom._addClass,b)},_addClass:function(a,b){var f=!1,e;a&&b&&(e=c.Dom.getAttribute(a,"className")||"",c.Dom._hasClass(a,
22
- b)||(c.Dom.setAttribute(a,"className",d(e+" "+b)),f=!0));return f},removeClass:function(a,b){return c.Dom.batch(a,c.Dom._removeClass,b)},_removeClass:function(a,b){var f=!1,e,g;a&&b&&(e=c.Dom.getAttribute(a,"className")||"",c.Dom.setAttribute(a,"className",e.replace(c.Dom._getClassRegex(b),"")),g=c.Dom.getAttribute(a,"className"),e!==g&&(c.Dom.setAttribute(a,"className",d(g)),f=!0,""===c.Dom.getAttribute(a,"className")&&(e=a.hasAttribute&&a.hasAttribute("class")?"class":"className",a.removeAttribute(e))));
23
- return f},replaceClass:function(a,b,d){return c.Dom.batch(a,c.Dom._replaceClass,{from:b,to:d})},_replaceClass:function(a,b){var f,e,g=!1;a&&b&&(f=b.from,(e=b.to)?f?f!==e&&(g=c.Dom.getAttribute(a,"className")||"",f=(" "+g.replace(c.Dom._getClassRegex(f)," "+e)).split(c.Dom._getClassRegex(e)),f.splice(1,0," "+e),c.Dom.setAttribute(a,"className",d(f.join(""))),g=!0):g=c.Dom._addClass(a,b.to):g=!1);return g},generateId:function(a,b){var b=b||"yui-gen",d=function(a){if(a&&a.id)return a.id;var d=b+YAHOO.env._id_counter++;
24
- if(a){if(a.ownerDocument.getElementById(d))return c.Dom.generateId(a,d+b);a.id=d}return d};return c.Dom.batch(a,d,c.Dom,!0)||d.apply(c.Dom,arguments)},isAncestor:function(a,b){var a=c.Dom.get(a),b=c.Dom.get(b),d=!1;a&&b&&(a.nodeType&&b.nodeType)&&(a.contains&&a!==b?d=a.contains(b):a.compareDocumentPosition&&(d=!!(a.compareDocumentPosition(b)&16)));return d},inDocument:function(a,b){return c.Dom._inDoc(c.Dom.get(a),b)},_inDoc:function(a,b){var d=!1;a&&a.tagName&&(b=b||a.ownerDocument,d=c.Dom.isAncestor(b.documentElement,
25
- a));return d},getElementsBy:function(a,b,d,f,e,g,j){b=b||"*";d=d?c.Dom.get(d):i;if(!d)return[];for(var h=[],b=d.getElementsByTagName(b),d=0,m=b.length;d<m;++d)if(a(b[d]))if(j){h=b[d];break}else h[h.length]=b[d];f&&c.Dom.batch(h,f,e,g);return h},getElementBy:function(a,b,d){return c.Dom.getElementsBy(a,b,d,null,null,null,!0)},batch:function(a,b,d,f){var e=[],f=f?d:window;if((a=a&&(a.tagName||a.item)?a:c.Dom.get(a))&&b){if(a.tagName||void 0===a.length)return b.call(f,a,d);for(var g=0;g<a.length;++g)e[e.length]=
26
- b.call(f,a[g],d)}else return!1;return e},getDocumentHeight:function(){return Math.max("CSS1Compat"!=i.compatMode||l?i.body.scrollHeight:j.scrollHeight,c.Dom.getViewportHeight())},getDocumentWidth:function(){return Math.max("CSS1Compat"!=i.compatMode||l?i.body.scrollWidth:j.scrollWidth,c.Dom.getViewportWidth())},getViewportHeight:function(){var a=self.innerHeight,b=i.compatMode;if((b||n)&&!k)a="CSS1Compat"==b?j.clientHeight:i.body.clientHeight;return a},getViewportWidth:function(){var a=self.innerWidth,
27
- b=i.compatMode;if(b||n)a="CSS1Compat"==b?j.clientWidth:i.body.clientWidth;return a},getAncestorBy:function(a,b){for(;a=a.parentNode;)if(c.Dom._testElement(a,b))return a;return null},getAncestorByClassName:function(a,b){a=c.Dom.get(a);return!a?null:c.Dom.getAncestorBy(a,function(a){return c.Dom.hasClass(a,b)})},getAncestorByTagName:function(a,b){a=c.Dom.get(a);return!a?null:c.Dom.getAncestorBy(a,function(a){return a.tagName&&a.tagName.toUpperCase()==b.toUpperCase()})},getPreviousSiblingBy:function(a,
28
- b){for(;a;)if(a=a.previousSibling,c.Dom._testElement(a,b))return a;return null},getPreviousSibling:function(a){a=c.Dom.get(a);return!a?null:c.Dom.getPreviousSiblingBy(a)},getNextSiblingBy:function(a,b){for(;a;)if(a=a.nextSibling,c.Dom._testElement(a,b))return a;return null},getNextSibling:function(a){a=c.Dom.get(a);return!a?null:c.Dom.getNextSiblingBy(a)},getFirstChildBy:function(a,b){return(c.Dom._testElement(a.firstChild,b)?a.firstChild:null)||c.Dom.getNextSiblingBy(a.firstChild,b)},getFirstChild:function(a){a=
29
- c.Dom.get(a);return!a?null:c.Dom.getFirstChildBy(a)},getLastChildBy:function(a,b){return!a?null:(c.Dom._testElement(a.lastChild,b)?a.lastChild:null)||c.Dom.getPreviousSiblingBy(a.lastChild,b)},getLastChild:function(a){a=c.Dom.get(a);return c.Dom.getLastChildBy(a)},getChildrenBy:function(a,b){var d=c.Dom.getFirstChildBy(a,b),f=d?[d]:[];c.Dom.getNextSiblingBy(d,function(a){if(!b||b(a))f[f.length]=a;return!1});return f},getChildren:function(a){a=c.Dom.get(a);return c.Dom.getChildrenBy(a)},getDocumentScrollLeft:function(a){a=
30
- a||i;return Math.max(a.documentElement.scrollLeft,a.body.scrollLeft)},getDocumentScrollTop:function(a){a=a||i;return Math.max(a.documentElement.scrollTop,a.body.scrollTop)},insertBefore:function(a,b){a=c.Dom.get(a);b=c.Dom.get(b);return!a||!b||!b.parentNode?null:b.parentNode.insertBefore(a,b)},insertAfter:function(a,b){a=c.Dom.get(a);b=c.Dom.get(b);return!a||!b||!b.parentNode?null:b.nextSibling?b.parentNode.insertBefore(a,b.nextSibling):b.parentNode.appendChild(a)},getClientRegion:function(){var a=
31
- c.Dom.getDocumentScrollTop(),b=c.Dom.getDocumentScrollLeft(),d=c.Dom.getViewportWidth()+b,f=c.Dom.getViewportHeight()+a;return new c.Region(a,d,f,b)},setAttribute:function(a,b,d){b=c.Dom.CUSTOM_ATTRIBUTES[b]||b;a.setAttribute(b,d)},getAttribute:function(a,b){b=c.Dom.CUSTOM_ATTRIBUTES[b]||b;return a.getAttribute(b)},_toCamel:function(b){function d(a,b){return b.toUpperCase()}return a[b]||(a[b]=-1===b.indexOf("-")?b:b.replace(/-([a-z])/gi,d))},_getClassRegex:function(a){var b;void 0!==a&&(a.exec?b=
32
- a:(b=f[a],b||(a=a.replace(c.Dom._patterns.CLASS_RE_TOKENS,"\\$1"),b=f[a]=RegExp("(?:^|\\s)"+a+"(?= |$)","g"))));return b},_patterns:{ROOT_TAG:/^body|html$/i,CLASS_RE_TOKENS:/([\.\(\)\^\$\*\+\?\|\[\]\{\}])/g},_testElement:function(a,b){return a&&1==a.nodeType&&(!b||b(a))},_calcBorders:function(a,b){var d=parseInt(c.Dom.getComputedStyle(a,"borderTopWidth"),10)||0,f=parseInt(c.Dom.getComputedStyle(a,"borderLeftWidth"),10)||0;m&&g.test(a.tagName)&&(f=d=0);b[0]+=f;b[1]+=d;return b}};var o=c.Dom.getComputedStyle;
33
- b.opera&&(c.Dom.getComputedStyle=function(a,b){var d=o(a,b);h.test(b)&&(d=c.Dom.Color.toRGB(d));return d});b.webkit&&(c.Dom.getComputedStyle=function(a,b){var d=o(a,b);"rgba(0, 0, 0, 0)"===d&&(d="transparent");return d})})();YAHOO.util.Region=function(c,e,b,d){this.y=this.top=c;this[1]=c;this.right=e;this.bottom=b;this.x=this.left=d;this[0]=d;this.width=this.right-this.left;this.height=this.bottom-this.top};
34
- YAHOO.util.Region.prototype.contains=function(c){return c.left>=this.left&&c.right<=this.right&&c.top>=this.top&&c.bottom<=this.bottom};YAHOO.util.Region.prototype.getArea=function(){return(this.bottom-this.top)*(this.right-this.left)};YAHOO.util.Region.prototype.intersect=function(c){var e=Math.max(this.top,c.top),b=Math.min(this.right,c.right),d=Math.min(this.bottom,c.bottom),c=Math.max(this.left,c.left);return d>=e&&b>=c?new YAHOO.util.Region(e,b,d,c):null};
35
- YAHOO.util.Region.prototype.union=function(c){var e=Math.min(this.top,c.top),b=Math.max(this.right,c.right),d=Math.max(this.bottom,c.bottom),c=Math.min(this.left,c.left);return new YAHOO.util.Region(e,b,d,c)};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+"}"};
36
- YAHOO.util.Region.getRegion=function(c){var e=YAHOO.util.Dom.getXY(c);return new YAHOO.util.Region(e[1],e[0]+c.offsetWidth,e[1]+c.offsetHeight,e[0])};YAHOO.util.Point=function(c,e){YAHOO.lang.isArray(c)&&(e=c[1],c=c[0]);YAHOO.util.Point.superclass.constructor.call(this,e,c,e,c)};YAHOO.extend(YAHOO.util.Point,YAHOO.util.Region);
37
- (function(){var c=YAHOO.util,e=/^width|height$/,b=/^(\d[.\d]*)+(em|ex|px|gd|rem|vw|vh|vm|ch|mm|cm|in|pt|pc|deg|rad|ms|s|hz|khz|%){1}?/i,d={get:function(a,d){var e="",e=a.currentStyle[d];return e="opacity"===d?c.Dom.getStyle(a,"opacity"):!e||e.indexOf&&-1<e.indexOf("px")?e:c.Dom.IE_COMPUTED[d]?c.Dom.IE_COMPUTED[d](a,d):b.test(e)?c.Dom.IE.ComputedStyle.getPixel(a,d):e},getOffset:function(a,b){var d=a.currentStyle[b],c=b.charAt(0).toUpperCase()+b.substr(1),j="offset"+c,k="pixel"+c,c="";"auto"==d?(c=
38
- d=a[j],e.test(b)&&(a.style[b]=d,a[j]>d&&(c=d-(a[j]-d)),a.style[b]="auto")):(!a.style[k]&&!a.style[b]&&(a.style[b]=d),c=a.style[k]);return c+"px"},getBorderWidth:function(a,b){var d=null;a.currentStyle.hasLayout||(a.style.zoom=1);switch(b){case "borderTopWidth":d=a.clientTop;break;case "borderBottomWidth":d=a.offsetHeight-a.clientHeight-a.clientTop;break;case "borderLeftWidth":d=a.clientLeft;break;case "borderRightWidth":d=a.offsetWidth-a.clientWidth-a.clientLeft}return d+"px"},getPixel:function(a,
39
- b){var d=null,c=a.currentStyle.right;a.style.right=a.currentStyle[b];d=a.style.pixelRight;a.style.right=c;return d+"px"},getMargin:function(a,b){return"auto"==a.currentStyle[b]?"0px":c.Dom.IE.ComputedStyle.getPixel(a,b)},getVisibility:function(a,b){for(var d;(d=a.currentStyle)&&"inherit"==d[b];)a=a.parentNode;return d?d[b]:"visible"},getColor:function(a,b){return c.Dom.Color.toRGB(a.currentStyle[b])||"transparent"},getBorderColor:function(a,b){var d=a.currentStyle;return c.Dom.Color.toRGB(c.Dom.Color.toHex(d[b]||
40
- d.color))}},a={};a.top=a.right=a.bottom=a.left=a.width=a.height=d.getOffset;a.color=d.getColor;a.borderTopWidth=a.borderRightWidth=a.borderBottomWidth=a.borderLeftWidth=d.getBorderWidth;a.marginTop=a.marginRight=a.marginBottom=a.marginLeft=d.getMargin;a.visibility=d.getVisibility;a.borderColor=a.borderTopColor=a.borderRightColor=a.borderBottomColor=a.borderLeftColor=d.getBorderColor;c.Dom.IE_COMPUTED=a;c.Dom.IE_ComputedStyle=d})();
41
- (function(){var c=parseInt,e=RegExp,b=YAHOO.util;b.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(d){b.Dom.Color.re_RGB.test(d)||(d=b.Dom.Color.toHex(d));b.Dom.Color.re_hex.exec(d)&&
42
- (d="rgb("+[c(e.$1,16),c(e.$2,16),c(e.$3,16)].join(", ")+")");return d},toHex:function(d){d=b.Dom.Color.KEYWORDS[d]||d;if(b.Dom.Color.re_RGB.exec(d))var d=1===e.$2.length?"0"+e.$2:Number(e.$2),a=1===e.$3.length?"0"+e.$3:Number(e.$3),d=[(1===e.$1.length?"0"+e.$1:Number(e.$1)).toString(16),d.toString(16),a.toString(16)].join("");6>d.length&&(d=d.replace(b.Dom.Color.re_hex3,"$1$1"));"transparent"!==d&&0>d.indexOf("#")&&(d="#"+d);return d.toLowerCase()}}})();
43
- YAHOO.register("dom",YAHOO.util.Dom,{version:"2.7.0",build:"1796"});YAHOO.util.CustomEvent=function(c,e,b,d){this.type=c;this.scope=e||window;this.silent=b;this.signature=d||YAHOO.util.CustomEvent.LIST;this.subscribers=[];"_YUICEOnSubscribe"!==c&&(this.subscribeEvent=new YAHOO.util.CustomEvent("_YUICEOnSubscribe",this,!0));this.lastError=null};YAHOO.util.CustomEvent.LIST=0;YAHOO.util.CustomEvent.FLAT=1;
44
- YAHOO.util.CustomEvent.prototype={subscribe:function(c,e,b){if(!c)throw Error("Invalid callback for subscriber to '"+this.type+"'");this.subscribeEvent&&this.subscribeEvent.fire(c,e,b);this.subscribers.push(new YAHOO.util.Subscriber(c,e,b))},unsubscribe:function(c,e){if(!c)return this.unsubscribeAll();for(var b=!1,d=0,a=this.subscribers.length;d<a;++d){var f=this.subscribers[d];f&&f.contains(c,e)&&(this._delete(d),b=!0)}return b},fire:function(){this.lastError=null;var c=this.subscribers.length;if(!c&&
45
- this.silent)return!0;var e=[].slice.call(arguments,0),b=!0,d,a=this.subscribers.slice(),f=YAHOO.util.Event.throwErrors;for(d=0;d<c;++d){var g=a[d];if(g){var h=g.getScope(this.scope);if(this.signature==YAHOO.util.CustomEvent.FLAT){var i=null;0<e.length&&(i=e[0]);try{b=g.fn.call(h,i,g.obj)}catch(j){if(this.lastError=j,f)throw j;}}else try{b=g.fn.call(h,this.type,e,g.obj)}catch(k){if(this.lastError=k,f)throw k;}if(!1===b)break}}return!1!==b},unsubscribeAll:function(){var c=this.subscribers.length,e;
46
- for(e=c-1;-1<e;e--)this._delete(e);this.subscribers=[];return c},_delete:function(c){var e=this.subscribers[c];e&&(delete e.fn,delete e.obj);this.subscribers.splice(c,1)},toString:function(){return"CustomEvent: '"+this.type+"', context: "+this.scope}};YAHOO.util.Subscriber=function(c,e,b){this.fn=c;this.obj=YAHOO.lang.isUndefined(e)?null:e;this.overrideContext=b};
47
- YAHOO.util.Subscriber.prototype.getScope=function(c){return this.overrideContext?!0===this.overrideContext?this.obj:this.overrideContext:c};YAHOO.util.Subscriber.prototype.contains=function(c,e){return e?this.fn==c&&this.obj==e:this.fn==c};YAHOO.util.Subscriber.prototype.toString=function(){return"Subscriber { obj: "+this.obj+", overrideContext: "+(this.overrideContext||"no")+" }"};
48
- YAHOO.util.Event||(YAHOO.util.Event=function(){var c=!1,e=[],b=[],d=[],a=[],f=0,g=[],h=[],i=0,j={63232:38,63233:40,63234:37,63235:39,63276:33,63277:34,25:9},k=YAHOO.env.ua.ie?"focusin":"focus",l=YAHOO.env.ua.ie?"focusout":"blur";return{POLL_RETRYS:2E3,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:!1,throwErrors:!1,startInterval:function(){if(!this._interval){var a=
49
- this;this._interval=setInterval(function(){a._tryPreloadAttach()},this.POLL_INTERVAL)}},onAvailable:function(a,b,d,c,e){for(var a=YAHOO.lang.isString(a)?[a]:a,j=0;j<a.length;j+=1)g.push({id:a[j],fn:b,obj:d,overrideContext:c,checkReady:e});f=this.POLL_RETRYS;this.startInterval()},onContentReady:function(a,b,d,c){this.onAvailable(a,b,d,c,!0)},onDOMReady:function(a,b,d){this.DOMReady?setTimeout(function(){var c=window;d&&(c=!0===d?b:d);a.call(c,"DOMReady",[],b)},0):this.DOMReadyEvent.subscribe(a,b,d)},
50
- _addListener:function(c,f,g,j,k,i){if(!g||!g.call)return!1;if(this._isValidCollection(c)){for(var i=!0,l=0,s=c.length;l<s;++l)i=this.on(c[l],f,g,j,k)&&i;return i}if(YAHOO.lang.isString(c))if(l=this.getEl(c))c=l;else return this.onAvailable(c,function(){YAHOO.util.Event.on(c,f,g,j,k)}),!0;if(!c)return!1;if("unload"==f&&j!==this)return b[b.length]=[c,f,g,j,k],!0;var t=c;k&&(t=!0===k?j:k);l=function(a){return g.call(t,YAHOO.util.Event.getEvent(a,c),j)};s=[c,f,g,l,t,j,k];e[e.length]=s;if(this.useLegacyEvent(c,
51
- f)){var p=this.getLegacyIndex(c,f);if(-1==p||c!=d[p][0])p=d.length,h[c.id+f]=p,d[p]=[c,f,c["on"+f]],a[p]=[],c["on"+f]=function(a){YAHOO.util.Event.fireLegacyEvent(YAHOO.util.Event.getEvent(a),p)};a[p].push(s)}else try{this._simpleAdd(c,f,l,i)}catch(u){return this.lastError=u,this.removeListener(c,f,g),!1}return!0},addListener:function(a,b,d,c,f){return this._addListener(a,b,d,c,f,!1)},addFocusListener:function(a,b,d,c){return this._addListener(a,k,b,d,c,!0)},removeFocusListener:function(a,b){return this.removeListener(a,
52
- k,b)},addBlurListener:function(a,b,d,c){return this._addListener(a,l,b,d,c,!0)},removeBlurListener:function(a,b){return this.removeListener(a,l,b)},fireLegacyEvent:function(b,c){var f=!0,e,g,j;e=a[c].slice();for(var h=0,k=e.length;h<k;++h)if((g=e[h])&&g[this.WFN])j=g[this.ADJ_SCOPE],g=g[this.WFN].call(j,b),f=f&&g;if((e=d[c])&&e[2])e[2](b);return f},getLegacyIndex:function(a,b){var d=this.generateId(a)+b;return"undefined"==typeof h[d]?-1:h[d]},useLegacyEvent:function(a,b){return this.webkit&&419>this.webkit&&
53
- ("click"==b||"dblclick"==b)},removeListener:function(d,c,f,g){var j,h,k;if("string"==typeof d)d=this.getEl(d);else if(this._isValidCollection(d)){g=!0;for(j=d.length-1;-1<j;j--)g=this.removeListener(d[j],c,f)&&g;return g}if(!f||!f.call)return this.purgeElement(d,!1,c);if("unload"==c){for(j=b.length-1;-1<j;j--)if((k=b[j])&&k[0]==d&&k[1]==c&&k[2]==f)return b.splice(j,1),!0;return!1}j=null;"undefined"===typeof g&&(g=this._getCacheIndex(d,c,f));0<=g&&(j=e[g]);if(!d||!j)return!1;if(this.useLegacyEvent(d,
54
- c)){j=this.getLegacyIndex(d,c);var i=a[j];if(i){j=0;for(h=i.length;j<h;++j)if((k=i[j])&&k[this.EL]==d&&k[this.TYPE]==c&&k[this.FN]==f){i.splice(j,1);break}}}else try{this._simpleRemove(d,c,j[this.WFN],!1)}catch(l){return this.lastError=l,!1}delete e[g][this.WFN];delete e[g][this.FN];e.splice(g,1);return!0},getTarget:function(a){return this.resolveTextNode(a.target||a.srcElement)},resolveTextNode:function(a){try{if(a&&3==a.nodeType)return a.parentNode}catch(b){}return a},getPageX:function(a){var b=
55
- a.pageX;!b&&0!==b&&(b=a.clientX||0,this.isIE&&(b+=this._getScrollLeft()));return b},getPageY:function(a){var b=a.pageY;!b&&0!==b&&(b=a.clientY||0,this.isIE&&(b+=this._getScrollTop()));return b},getXY:function(a){return[this.getPageX(a),this.getPageY(a)]},getRelatedTarget:function(a){var b=a.relatedTarget;b||("mouseout"==a.type?b=a.toElement:"mouseover"==a.type&&(b=a.fromElement));return this.resolveTextNode(b)},getTime:function(a){if(!a.time){var b=(new Date).getTime();try{a.time=b}catch(d){return this.lastError=
56
- d,b}}return a.time},stopEvent:function(a){this.stopPropagation(a);this.preventDefault(a)},stopPropagation:function(a){a.stopPropagation?a.stopPropagation():a.cancelBubble=!0},preventDefault:function(a){a.preventDefault?a.preventDefault():a.returnValue=!1},getEvent:function(a){a=a||window.event;if(!a)for(var b=this.getEvent.caller;b&&!((a=b.arguments[0])&&Event==a.constructor);)b=b.caller;return a},getCharCode:function(a){a=a.keyCode||a.charCode||0;YAHOO.env.ua.webkit&&a in j&&(a=j[a]);return a},_getCacheIndex:function(a,
57
- b,d){for(var c=0,f=e.length;c<f;c+=1){var g=e[c];if(g&&g[this.FN]==d&&g[this.EL]==a&&g[this.TYPE]==b)return c}return-1},generateId:function(a){var b=a.id;b||(b="yuievtautoid-"+i,++i,a.id=b);return b},_isValidCollection:function(a){try{return a&&"string"!==typeof a&&a.length&&!a.tagName&&!a.alert&&"undefined"!==typeof a[0]}catch(b){return!1}},elCache:{},getEl:function(a){return"string"===typeof a?document.getElementById(a):a},clearCache:function(){},DOMReadyEvent:new YAHOO.util.CustomEvent("DOMReady",
58
- this),_load:function(){if(!c){c=!0;var a=YAHOO.util.Event;a._ready();a._tryPreloadAttach()}},_ready:function(){var a=YAHOO.util.Event;a.DOMReady||(a.DOMReady=!0,a.DOMReadyEvent.fire(),a._simpleRemove(document,"DOMContentLoaded",a._ready))},_tryPreloadAttach:function(){if(0===g.length)f=0,this._interval&&(clearInterval(this._interval),this._interval=null);else if(!this.locked)if(this.isIE&&!this.DOMReady)this.startInterval();else{this.locked=!0;var a=!c;a||(a=0<f&&0<g.length);var b=[],d=function(a,
59
- b){var d=a;b.overrideContext&&(d=!0===b.overrideContext?b.obj:b.overrideContext);b.fn.call(d,b.obj)},e,j,h,k,i=[];e=0;for(j=g.length;e<j;e+=1)if(h=g[e])if(k=this.getEl(h.id))if(h.checkReady){if(c||k.nextSibling||!a)i.push(h),g[e]=null}else d(k,h),g[e]=null;else b.push(h);e=0;for(j=i.length;e<j;e+=1)h=i[e],d(this.getEl(h.id),h);f--;if(a){for(e=g.length-1;-1<e;e--)h=g[e],(!h||!h.id)&&g.splice(e,1);this.startInterval()}else this._interval&&(clearInterval(this._interval),this._interval=null);this.locked=
60
- !1}},purgeElement:function(a,b,d){var a=YAHOO.lang.isString(a)?this.getEl(a):a,c=this.getListeners(a,d),f;if(c)for(f=c.length-1;-1<f;f--){var e=c[f];this.removeListener(a,e.type,e.fn)}if(b&&a&&a.childNodes){f=0;for(c=a.childNodes.length;f<c;++f)this.purgeElement(a.childNodes[f],b,d)}},getListeners:function(a,d){var c=[],f;f=d?"unload"===d?[b]:[e]:[e,b];for(var g=YAHOO.lang.isString(a)?this.getEl(a):a,j=0;j<f.length;j+=1){var h=f[j];if(h)for(var k=0,i=h.length;k<i;++k){var l=h[k];l&&(l[this.EL]===
61
- g&&(!d||d===l[this.TYPE]))&&c.push({type:l[this.TYPE],fn:l[this.FN],obj:l[this.OBJ],adjust:l[this.OVERRIDE],scope:l[this.ADJ_SCOPE],index:k})}}return c.length?c:null},_unload:function(a){var c=YAHOO.util.Event,f,g,j,h=b.slice(),k;f=0;for(j=b.length;f<j;++f)if(g=h[f])k=window,g[c.ADJ_SCOPE]&&(k=!0===g[c.ADJ_SCOPE]?g[c.UNLOAD_OBJ]:g[c.ADJ_SCOPE]),g[c.FN].call(k,c.getEvent(a,g[c.EL]),g[c.UNLOAD_OBJ]),h[f]=null;b=null;if(e)for(a=e.length-1;-1<a;a--)(g=e[a])&&c.removeListener(g[c.EL],g[c.TYPE],g[c.FN],
62
- a);d=null;c._simpleRemove(window,"unload",c._unload)},_getScrollLeft:function(){return this._getScroll()[1]},_getScrollTop:function(){return this._getScroll()[0]},_getScroll:function(){var a=document.documentElement,b=document.body;return a&&(a.scrollTop||a.scrollLeft)?[a.scrollTop,a.scrollLeft]:b?[b.scrollTop,b.scrollLeft]:[0,0]},regCE:function(){},_simpleAdd:function(){return window.addEventListener?function(a,b,d,c){a.addEventListener(b,d,c)}:window.attachEvent?function(a,b,d){a.attachEvent("on"+
63
- b,d)}:function(){}}(),_simpleRemove:function(){return window.removeEventListener?function(a,b,d,c){a.removeEventListener(b,d,c)}:window.detachEvent?function(a,b,d){a.detachEvent("on"+b,d)}:function(){}}()}}(),function(){var c=YAHOO.util.Event;c.on=c.addListener;c.onFocus=c.addFocusListener;c.onBlur=c.addBlurListener;if(c.isIE){YAHOO.util.Event.onDOMReady(YAHOO.util.Event._tryPreloadAttach,YAHOO.util.Event,!0);var e=document.createElement("p");c._dri=setInterval(function(){try{e.doScroll("left"),clearInterval(c._dri),
64
- c._dri=null,c._ready(),e=null}catch(b){}},c.POLL_INTERVAL)}else c.webkit&&525>c.webkit?c._dri=setInterval(function(){var b=document.readyState;if("loaded"==b||"complete"==b)clearInterval(c._dri),c._dri=null,c._ready()},c.POLL_INTERVAL):c._simpleAdd(document,"DOMContentLoaded",c._ready);c._simpleAdd(window,"load",c._load);c._simpleAdd(window,"unload",c._unload);c._tryPreloadAttach()}());YAHOO.util.EventProvider=function(){};
65
- YAHOO.util.EventProvider.prototype={__yui_events:null,__yui_subscribers:null,subscribe:function(c,e,b,d){this.__yui_events=this.__yui_events||{};var a=this.__yui_events[c];if(a)a.subscribe(e,b,d);else{a=this.__yui_subscribers=this.__yui_subscribers||{};a[c]||(a[c]=[]);a[c].push({fn:e,obj:b,overrideContext:d})}},unsubscribe:function(c,e,b){var d=this.__yui_events=this.__yui_events||{};if(c){if(d=d[c])return d.unsubscribe(e,b)}else{var c=true,a;for(a in d)YAHOO.lang.hasOwnProperty(d,a)&&(c=c&&d[a].unsubscribe(e,
66
- b));return c}return false},unsubscribeAll:function(c){return this.unsubscribe(c)},createEvent:function(c,e){this.__yui_events=this.__yui_events||{};var b=e||{},d=this.__yui_events;if(!d[c]){var a=new YAHOO.util.CustomEvent(c,b.scope||this,b.silent,YAHOO.util.CustomEvent.FLAT);d[c]=a;b.onSubscribeCallback&&a.subscribeEvent.subscribe(b.onSubscribeCallback);this.__yui_subscribers=this.__yui_subscribers||{};if(b=this.__yui_subscribers[c])for(var f=0;f<b.length;++f)a.subscribe(b[f].fn,b[f].obj,b[f].overrideContext)}return d[c]},
67
- fireEvent:function(c,e,b,d){this.__yui_events=this.__yui_events||{};var a=this.__yui_events[c];if(!a)return null;for(var f=[],g=1;g<arguments.length;++g)f.push(arguments[g]);return a.fire.apply(a,f)},hasEvent:function(c){return this.__yui_events&&this.__yui_events[c]?true:false}};
68
- (function(){var c=YAHOO.util.Event,e=YAHOO.lang;YAHOO.util.KeyListener=function(b,a,f,g){function h(b){if(!a.shift)a.shift=false;if(!a.alt)a.alt=false;if(!a.ctrl)a.ctrl=false;if(b.shiftKey==a.shift&&b.altKey==a.alt&&b.ctrlKey==a.ctrl){var d,f=a.keys,e;if(YAHOO.lang.isArray(f))for(var g=0;g<f.length;g++){d=f[g];e=c.getCharCode(b);if(d==e){i.fire(e,b);break}}else{e=c.getCharCode(b);f==e&&i.fire(e,b)}}}if(!g)g=YAHOO.util.KeyListener.KEYDOWN;var i=new YAHOO.util.CustomEvent("keyPressed");this.enabledEvent=
69
- new YAHOO.util.CustomEvent("enabled");this.disabledEvent=new YAHOO.util.CustomEvent("disabled");e.isString(b)&&(b=document.getElementById(b));e.isFunction(f)?i.subscribe(f):i.subscribe(f.fn,f.scope,f.correctScope);this.enable=function(){if(!this.enabled){c.on(b,g,h);this.enabledEvent.fire(a)}this.enabled=true};this.disable=function(){if(this.enabled){c.removeListener(b,g,h);this.disabledEvent.fire(a)}this.enabled=false};this.toString=function(){return"KeyListener ["+a.keys+"] "+b.tagName+(b.id?"["+
70
- b.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"});
71
- YAHOO.util.DragDropMgr||(YAHOO.util.DragDropMgr=function(){var c=YAHOO.util.Event,e=YAHOO.util.Dom;return{useShim:false,_shimActive:false,_shimState:false,_debugShim:false,_createShim:function(){var b=document.createElement("div");b.id="yui-ddm-shim";document.body.firstChild?document.body.insertBefore(b,document.body.firstChild):document.body.appendChild(b);b.style.display="none";b.style.backgroundColor="red";b.style.position="absolute";b.style.zIndex="99999";e.setStyle(b,"opacity","0");this._shim=
72
- b;c.on(b,"mouseup",this.handleMouseUp,this,true);c.on(b,"mousemove",this.handleMouseMove,this,true);c.on(window,"scroll",this._sizeShim,this,true)},_sizeShim:function(){if(this._shimActive){var b=this._shim;b.style.height=e.getDocumentHeight()+"px";b.style.width=e.getDocumentWidth()+"px";b.style.top="0";b.style.left="0"}},_activateShim:function(){if(this.useShim){this._shim||this._createShim();this._shimActive=true;var b=this._shim,d="0";this._debugShim&&(d=".5");e.setStyle(b,"opacity",d);this._sizeShim();
73
- b.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(b,d){for(var a in this.ids)for(var c in this.ids[a]){var e=this.ids[a][c];this.isTypeOfDD(e)&&e[b].apply(e,d)}},_onLoad:function(){this.init();
74
- c.on(document,"mouseup",this.handleMouseUp,this,true);c.on(document,"mousemove",this.handleMouseMove,this,true);c.on(window,"unload",this._onUnload,this,true);c.on(window,"resize",this._onResize,this,true)},_onResize:function(){this._execOnAll("resetConstraints",[])},lock:function(){this.locked=true},unlock:function(){this.locked=false},isLocked:function(){return this.locked},locationCache:{},useCache:true,clickPixelThresh:3,clickTimeThresh:1E3,dragThreshMet:false,clickTimeout:null,startX:0,startY:0,
75
- fromTimeout:false,regDragDrop:function(b,d){this.initialized||this.init();this.ids[d]||(this.ids[d]={});this.ids[d][b.id]=b},removeDDFromGroup:function(b,d){this.ids[d]||(this.ids[d]={});var a=this.ids[d];a&&a[b.id]&&delete a[b.id]},_remove:function(b){for(var d in b.groups)if(d){var a=this.ids[d];a&&a[b.id]&&delete a[b.id]}delete this.handleIds[b.id]},regHandle:function(b,d){this.handleIds[b]||(this.handleIds[b]={});this.handleIds[b][d]=d},isDragDrop:function(b){return this.getDDById(b)?true:false},
76
- getRelated:function(b,d){var a=[],c;for(c in b.groups)for(var e in this.ids[c]){var h=this.ids[c][e];if(this.isTypeOfDD(h)&&(!d||h.isTarget))a[a.length]=h}return a},isLegalTarget:function(b,d){for(var a=this.getRelated(b,true),c=0,e=a.length;c<e;++c)if(a[c].id==d.id)return true;return false},isTypeOfDD:function(b){return b&&b.__ygDragDrop},isHandle:function(b,d){return this.handleIds[b]&&this.handleIds[b][d]},getDDById:function(b){for(var d in this.ids)if(this.ids[d][b])return this.ids[d][b];return null},
77
- handleMouseDown:function(b,d){this.currentTarget=YAHOO.util.Event.getTarget(b);this.dragCurrent=d;var a=d.getEl();this.startX=YAHOO.util.Event.getPageX(b);this.startY=YAHOO.util.Event.getPageY(b);this.deltaX=this.startX-a.offsetLeft;this.deltaY=this.startY-a.offsetTop;this.dragThreshMet=false;this.clickTimeout=setTimeout(function(){var a=YAHOO.util.DDM;a.startDrag(a.startX,a.startY);a.fromTimeout=true},this.clickTimeThresh)},startDrag:function(b,d){if(this.dragCurrent&&this.dragCurrent.useShim){this._shimState=
78
- this.useShim;this.useShim=true}this._activateShim();clearTimeout(this.clickTimeout);var a=this.dragCurrent;if(a&&a.events.b4StartDrag){a.b4StartDrag(b,d);a.fireEvent("b4StartDragEvent",{x:b,y:d})}if(a&&a.events.startDrag){a.startDrag(b,d);a.fireEvent("startDragEvent",{x:b,y:d})}this.dragThreshMet=true},handleMouseUp:function(b){if(this.dragCurrent){clearTimeout(this.clickTimeout);if(this.dragThreshMet){if(this.fromTimeout){this.fromTimeout=false;this.handleMouseMove(b)}this.fromTimeout=false;this.fireEvents(b,
79
- true)}this.stopDrag(b);this.stopEvent(b)}},stopEvent:function(b){this.stopPropagation&&YAHOO.util.Event.stopPropagation(b);this.preventDefault&&YAHOO.util.Event.preventDefault(b)},stopDrag:function(b,d){var a=this.dragCurrent;if(a&&!d){if(this.dragThreshMet){if(a.events.b4EndDrag){a.b4EndDrag(b);a.fireEvent("b4EndDragEvent",{e:b})}if(a.events.endDrag){a.endDrag(b);a.fireEvent("endDragEvent",{e:b})}}if(a.events.mouseUp){a.onMouseUp(b);a.fireEvent("mouseUpEvent",{e:b})}}if(this._shimActive){this._deactivateShim();
80
- if(this.dragCurrent&&this.dragCurrent.useShim){this.useShim=this._shimState;this._shimState=false}}this.dragCurrent=null;this.dragOvers={}},handleMouseMove:function(b){var d=this.dragCurrent;if(d){if(YAHOO.util.Event.isIE&&!b.button){this.stopEvent(b);return this.handleMouseUp(b)}if(!this.dragThreshMet){var a=Math.abs(this.startX-YAHOO.util.Event.getPageX(b)),c=Math.abs(this.startY-YAHOO.util.Event.getPageY(b));(a>this.clickPixelThresh||c>this.clickPixelThresh)&&this.startDrag(this.startX,this.startY)}if(this.dragThreshMet){if(d&&
81
- d.events.b4Drag){d.b4Drag(b);d.fireEvent("b4DragEvent",{e:b})}if(d&&d.events.drag){d.onDrag(b);d.fireEvent("dragEvent",{e:b})}d&&this.fireEvents(b,false)}this.stopEvent(b)}},fireEvents:function(b,d){var a=this.dragCurrent;if(a&&!a.isLocked()&&!a.dragOnly){var c=YAHOO.util.Event.getPageX(b),e=YAHOO.util.Event.getPageY(b),h=new YAHOO.util.Point(c,e),e=a.getTargetCoord(h.x,h.y),i=a.getDragEl(),c=["out","over","drop","enter"],j=new YAHOO.util.Region(e.y,e.x+i.offsetWidth,e.y+i.offsetHeight,e.x),k=[],
82
- l={},e=[],i={outEvts:[],overEvts:[],dropEvts:[],enterEvts:[]},m;for(m in this.dragOvers){var n=this.dragOvers[m];if(this.isTypeOfDD(n)){this.isOverTarget(h,n,this.mode,j)||i.outEvts.push(n);k[m]=true;delete this.dragOvers[m]}}for(var o in a.groups)if("string"==typeof o)for(m in this.ids[o]){n=this.ids[o][m];if(this.isTypeOfDD(n)&&n.isTarget&&(!n.isLocked()&&n!=a)&&this.isOverTarget(h,n,this.mode,j)){l[o]=true;if(d)i.dropEvts.push(n);else{k[n.id]?i.overEvts.push(n):i.enterEvts.push(n);this.dragOvers[n.id]=
83
- n}}}this.interactionInfo={out:i.outEvts,enter:i.enterEvts,over:i.overEvts,drop:i.dropEvts,point:h,draggedRegion:j,sourceRegion:this.locationCache[a.id],validDrop:d};for(var r in l)e.push(r);if(d&&!i.dropEvts.length){this.interactionInfo.validDrop=false;if(a.events.invalidDrop){a.onInvalidDrop(b);a.fireEvent("invalidDropEvent",{e:b})}}for(m=0;m<c.length;m++){o=null;i[c[m]+"Evts"]&&(o=i[c[m]+"Evts"]);if(o&&o.length){k=c[m].charAt(0).toUpperCase()+c[m].substr(1);r="onDrag"+k;h="b4Drag"+k;j="drag"+k+
84
- "Event";k="drag"+k;if(this.mode){if(a.events[h]){a[h](b,o,e);a.fireEvent(h+"Event",{event:b,info:o,group:e})}if(a.events[k]){a[r](b,o,e);a.fireEvent(j,{event:b,info:o,group:e})}}else{l=0;for(n=o.length;l<n;++l){if(a.events[h]){a[h](b,o[l].id,e[0]);a.fireEvent(h+"Event",{event:b,info:o[l].id,group:e[0]})}if(a.events[k]){a[r](b,o[l].id,e[0]);a.fireEvent(j,{event:b,info:o[l].id,group:e[0]})}}}}}}},getBestMatch:function(b){var d=null,a=b.length;if(a==1)d=b[0];else for(var c=0;c<a;++c){var e=b[c];if(this.mode==
85
- this.INTERSECT&&e.cursorIsOver){d=e;break}else if(!d||!d.overlap||e.overlap&&d.overlap.getArea()<e.overlap.getArea())d=e}return d},refreshCache:function(b){var b=b||this.ids,d;for(d in b)if("string"==typeof d)for(var a in this.ids[d]){var c=this.ids[d][a];if(this.isTypeOfDD(c)){var e=this.getLocation(c);e?this.locationCache[c.id]=e:delete this.locationCache[c.id]}}},verifyEl:function(b){try{if(b&&b.offsetParent)return true}catch(d){}return false},getLocation:function(b){if(!this.isTypeOfDD(b))return null;
86
- var d=b.getEl(),a,c,e;try{a=YAHOO.util.Dom.getXY(d)}catch(h){}if(!a)return null;c=a[0];e=c+d.offsetWidth;a=a[1];return new YAHOO.util.Region(a-b.padding[0],e+b.padding[1],a+d.offsetHeight+b.padding[2],c-b.padding[3])},isOverTarget:function(b,d,a,c){var e=this.locationCache[d.id];if(!e||!this.useCache){e=this.getLocation(d);this.locationCache[d.id]=e}if(!e)return false;d.cursorIsOver=e.contains(b);var h=this.dragCurrent;if(!h||!a&&!h.constrainX&&!h.constrainY)return d.cursorIsOver;d.overlap=null;if(!c){b=
87
- h.getTargetCoord(b.x,b.y);h=h.getDragEl();c=new YAHOO.util.Region(b.y,b.x+h.offsetWidth,b.y+h.offsetHeight,b.x)}if(e=c.intersect(e)){d.overlap=e;return a?true:d.cursorIsOver}return false},_onUnload:function(){this.unregAll()},unregAll:function(){if(this.dragCurrent){this.stopDrag();this.dragCurrent=null}this._execOnAll("unreg",[]);this.ids={}},elementCache:{},getElWrapper:function(b){var d=this.elementCache[b];if(!d||!d.el)d=this.elementCache[b]=new this.ElementWrapper(YAHOO.util.Dom.get(b));return d},
88
- getElement:function(b){return YAHOO.util.Dom.get(b)},getCss:function(b){return(b=YAHOO.util.Dom.get(b))?b.style:null},ElementWrapper:function(b){this.id=(this.el=b||null)&&b.id;this.css=this.el&&b.style},getPosX:function(b){return YAHOO.util.Dom.getX(b)},getPosY:function(b){return YAHOO.util.Dom.getY(b)},swapNode:function(b,d){if(b.swapNode)b.swapNode(d);else{var a=d.parentNode,c=d.nextSibling;if(c==b)a.insertBefore(b,d);else if(d==b.nextSibling)a.insertBefore(d,b);else{b.parentNode.replaceChild(d,
89
- b);a.insertBefore(b,c)}}},getScroll:function(){var b,d,a=document.documentElement,c=document.body;if(a&&(a.scrollTop||a.scrollLeft)){b=a.scrollTop;d=a.scrollLeft}else if(c){b=c.scrollTop;d=c.scrollLeft}return{top:b,left:d}},getStyle:function(b,d){return YAHOO.util.Dom.getStyle(b,d)},getScrollTop:function(){return this.getScroll().top},getScrollLeft:function(){return this.getScroll().left},moveToEl:function(b,d){var a=YAHOO.util.Dom.getXY(d);YAHOO.util.Dom.setXY(b,a)},getClientHeight:function(){return YAHOO.util.Dom.getViewportHeight()},
90
- getClientWidth:function(){return YAHOO.util.Dom.getViewportWidth()},numericSort:function(b,d){return b-d},_timeoutCount:0,_addListeners:function(){var b=YAHOO.util.DDM;if(YAHOO.util.Event&&document)b._onLoad();else if(!(b._timeoutCount>2E3)){setTimeout(b._addListeners,10);if(document&&document.body)b._timeoutCount=b._timeoutCount+1}},handleWasClicked:function(b,d){if(this.isHandle(d,b.id))return true;for(var a=b.parentNode;a;){if(this.isHandle(d,a.id))return true;a=a.parentNode}return false}}}(),
91
- YAHOO.util.DDM=YAHOO.util.DragDropMgr,YAHOO.util.DDM._addListeners());
92
- (function(){var c=YAHOO.util.Event,e=YAHOO.util.Dom;YAHOO.util.DragDrop=function(b,d,a){b&&this.init(b,d,a)};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,
93
- _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(){},startDrag:function(){},b4Drag:function(){},onDrag:function(){},onDragEnter:function(){},b4DragOver:function(){},onDragOver:function(){},b4DragOut:function(){},onDragOut:function(){},b4DragDrop:function(){},onDragDrop:function(){},
94
- onInvalidDrop:function(){},b4EndDrag:function(){},endDrag:function(){},b4MouseDown:function(){},onMouseDown:function(){},onMouseUp:function(){},onAvailable:function(){},getEl:function(){if(!this._domRef)this._domRef=e.get(this.id);return this._domRef},getDragEl:function(){return e.get(this.dragElId)},init:function(b,d,a){this.initTarget(b,d,a);c.on(this._domRef||this.id,"mousedown",this.handleMouseDown,this,true);for(var e in this.events)this.createEvent(e+"Event")},initTarget:function(b,d,a){this.config=
95
- a||{};this.events={};this.DDM=YAHOO.util.DDM;this.groups={};if(typeof b!=="string"){this._domRef=b;b=e.generateId(b)}this.id=b;this.addToGroup(d?d:"default");this.handleElId=b;c.onAvailable(b,this.handleOnAvailable,this,true);this.setDragElId(b);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,
96
- b4Drag:true,invalidDrop:true,b4DragOut:true,dragOut:true,dragEnter:true,b4DragOver:true,dragOver:true,b4DragDrop:true,dragDrop:true};if(this.config.events)for(var b in this.config.events)this.config.events[b]===false&&(this.events[b]=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=
97
- this.config.useShim===true?true:false},handleOnAvailable:function(){this.available=true;this.resetConstraints();this.onAvailable()},setPadding:function(b,d,a,c){this.padding=!d&&0!==d?[b,b,b,b]:!a&&0!==a?[b,d,b,d]:[b,d,a,c]},setInitPosition:function(b,d){var a=this.getEl();if(this.DDM.verifyEl(a)){var c=b||0,g=d||0,a=e.getXY(a);this.initPageX=a[0]-c;this.initPageY=a[1]-g;this.lastPageX=a[0];this.lastPageY=a[1];this.setStartPosition(a)}},setStartPosition:function(b){b=b||e.getXY(this.getEl());this.deltaSetXY=
98
- null;this.startPageX=b[0];this.startPageY=b[1]},addToGroup:function(b){this.groups[b]=true;this.DDM.regDragDrop(this,b)},removeFromGroup:function(b){this.groups[b]&&delete this.groups[b];this.DDM.removeDDFromGroup(this,b)},setDragElId:function(b){this.dragElId=b},setHandleElId:function(b){typeof b!=="string"&&(b=e.generateId(b));this.handleElId=b;this.DDM.regHandle(this.id,b)},setOuterHandleElId:function(b){typeof b!=="string"&&(b=e.generateId(b));c.on(b,"mousedown",this.handleMouseDown,this,true);
99
- this.setHandleElId(b);this.hasOuterHandles=true},unreg:function(){c.removeListener(this.id,"mousedown",this.handleMouseDown);this._domRef=null;this.DDM._remove(this)},isLocked:function(){return this.DDM.isLocked()||this.locked},handleMouseDown:function(b){var d=b.which||b.button;if(!(this.primaryButtonOnly&&d>1)&&!this.isLocked()){var d=this.b4MouseDown(b),a=true;this.events.b4MouseDown&&(a=this.fireEvent("b4MouseDownEvent",b));var e=this.onMouseDown(b),g=true;this.events.mouseDown&&(g=this.fireEvent("mouseDownEvent",
100
- b));if(!(d===false||e===false||a===false||g===false)){this.DDM.refreshCache(this.groups);d=new YAHOO.util.Point(c.getPageX(b),c.getPageY(b));if((this.hasOuterHandles||this.DDM.isOverTarget(d,this))&&this.clickValidator(b)){this.setStartPosition();this.DDM.handleMouseDown(b,this);this.DDM.stopEvent(b)}}}},clickValidator:function(b){b=YAHOO.util.Event.getTarget(b);return this.isValidHandleChild(b)&&(this.id==this.handleElId||this.DDM.handleWasClicked(b,this.id))},getTargetCoord:function(b,d){var a=
101
- b-this.deltaX,c=d-this.deltaY;if(this.constrainX){if(a<this.minX)a=this.minX;if(a>this.maxX)a=this.maxX}if(this.constrainY){if(c<this.minY)c=this.minY;if(c>this.maxY)c=this.maxY}a=this.getTick(a,this.xTicks);c=this.getTick(c,this.yTicks);return{x:a,y:c}},addInvalidHandleType:function(b){b=b.toUpperCase();this.invalidHandleTypes[b]=b},addInvalidHandleId:function(b){typeof b!=="string"&&(b=e.generateId(b));this.invalidHandleIds[b]=b},addInvalidHandleClass:function(b){this.invalidHandleClasses.push(b)},
102
- removeInvalidHandleType:function(b){delete this.invalidHandleTypes[b.toUpperCase()]},removeInvalidHandleId:function(b){typeof b!=="string"&&(b=e.generateId(b));delete this.invalidHandleIds[b]},removeInvalidHandleClass:function(b){for(var d=0,a=this.invalidHandleClasses.length;d<a;++d)this.invalidHandleClasses[d]==b&&delete this.invalidHandleClasses[d]},isValidHandleChild:function(b){var d=true,a;try{a=b.nodeName.toUpperCase()}catch(c){a=b.nodeName}d=(d=d&&!this.invalidHandleTypes[a])&&!this.invalidHandleIds[b.id];
103
- a=0;for(var g=this.invalidHandleClasses.length;d&&a<g;++a)d=!e.hasClass(b,this.invalidHandleClasses[a]);return d},setXTicks:function(b,d){this.xTicks=[];this.xTickSize=d;for(var a={},c=this.initPageX;c>=this.minX;c=c-d)if(!a[c]){this.xTicks[this.xTicks.length]=c;a[c]=true}for(c=this.initPageX;c<=this.maxX;c=c+d)if(!a[c]){this.xTicks[this.xTicks.length]=c;a[c]=true}this.xTicks.sort(this.DDM.numericSort)},setYTicks:function(b,d){this.yTicks=[];this.yTickSize=d;for(var a={},c=this.initPageY;c>=this.minY;c=
104
- c-d)if(!a[c]){this.yTicks[this.yTicks.length]=c;a[c]=true}for(c=this.initPageY;c<=this.maxY;c=c+d)if(!a[c]){this.yTicks[this.yTicks.length]=c;a[c]=true}this.yTicks.sort(this.DDM.numericSort)},setXConstraint:function(b,d,a){this.leftConstraint=parseInt(b,10);this.rightConstraint=parseInt(d,10);this.minX=this.initPageX-this.leftConstraint;this.maxX=this.initPageX+this.rightConstraint;a&&this.setXTicks(this.initPageX,a);this.constrainX=true},clearConstraints:function(){this.constrainY=this.constrainX=
105
- false;this.clearTicks()},clearTicks:function(){this.yTicks=this.xTicks=null;this.yTickSize=this.xTickSize=0},setYConstraint:function(b,d,a){this.topConstraint=parseInt(b,10);this.bottomConstraint=parseInt(d,10);this.minY=this.initPageY-this.topConstraint;this.maxY=this.initPageY+this.bottomConstraint;a&&this.setYTicks(this.initPageY,a);this.constrainY=true},resetConstraints:function(){this.initPageX||this.initPageX===0?this.setInitPosition(this.maintainOffset?this.lastPageX-this.initPageX:0,this.maintainOffset?
106
- this.lastPageY-this.initPageY:0):this.setInitPosition();this.constrainX&&this.setXConstraint(this.leftConstraint,this.rightConstraint,this.xTickSize);this.constrainY&&this.setYConstraint(this.topConstraint,this.bottomConstraint,this.yTickSize)},getTick:function(b,d){if(d){if(d[0]>=b)return d[0];for(var a=0,c=d.length;a<c;++a){var e=a+1;if(d[e]&&d[e]>=b)return d[e]-b>b-d[a]?d[a]:d[e]}return d[d.length-1]}return b},toString:function(){return"DragDrop "+this.id}};YAHOO.augment(YAHOO.util.DragDrop,YAHOO.util.EventProvider)})();
107
- YAHOO.util.DD=function(c,e,b){c&&this.init(c,e,b)};
108
- YAHOO.extend(YAHOO.util.DD,YAHOO.util.DragDrop,{scroll:!0,autoOffset:function(c,e){this.setDelta(c-this.startPageX,e-this.startPageY)},setDelta:function(c,e){this.deltaX=c;this.deltaY=e},setDragElPos:function(c,e){this.alignElWithMouse(this.getDragEl(),c,e)},alignElWithMouse:function(c,e,b){var d=this.getTargetCoord(e,b);if(this.deltaSetXY){YAHOO.util.Dom.setStyle(c,"left",d.x+this.deltaSetXY[0]+"px");YAHOO.util.Dom.setStyle(c,"top",d.y+this.deltaSetXY[1]+"px")}else{YAHOO.util.Dom.setXY(c,[d.x,d.y]);
109
- e=parseInt(YAHOO.util.Dom.getStyle(c,"left"),10);b=parseInt(YAHOO.util.Dom.getStyle(c,"top"),10);this.deltaSetXY=[e-d.x,b-d.y]}this.cachePosition(d.x,d.y);var a=this;setTimeout(function(){a.autoScroll.call(a,d.x,d.y,c.offsetHeight,c.offsetWidth)},0)},cachePosition:function(c,e){if(c){this.lastPageX=c;this.lastPageY=e}else{var b=YAHOO.util.Dom.getXY(this.getEl());this.lastPageX=b[0];this.lastPageY=b[1]}},autoScroll:function(c,e,b,d){if(this.scroll){var a=this.DDM.getClientHeight(),f=this.DDM.getClientWidth(),
110
- g=this.DDM.getScrollTop(),h=this.DDM.getScrollLeft(),d=d+c,i=a+g-e-this.deltaY,j=f+h-c-this.deltaX,k=document.all?80:30;b+e>a&&i<40&&window.scrollTo(h,g+k);e<g&&(g>0&&e-g<40)&&window.scrollTo(h,g-k);d>f&&j<40&&window.scrollTo(h+k,g);c<h&&(h>0&&c-h<40)&&window.scrollTo(h-k,g)}},applyConfig:function(){YAHOO.util.DD.superclass.applyConfig.call(this);this.scroll=this.config.scroll!==false},b4MouseDown:function(c){this.setStartPosition();this.autoOffset(YAHOO.util.Event.getPageX(c),YAHOO.util.Event.getPageY(c))},
111
- b4Drag:function(c){this.setDragElPos(YAHOO.util.Event.getPageX(c),YAHOO.util.Event.getPageY(c))},toString:function(){return"DD "+this.id}});YAHOO.util.DDProxy=function(c,e,b){if(c){this.init(c,e,b);this.initFrame()}};YAHOO.util.DDProxy.dragElId="ygddfdiv";
112
- YAHOO.extend(YAHOO.util.DDProxy,YAHOO.util.DD,{resizeFrame:!0,centerFrame:!1,createFrame:function(){var c=this,e=document.body;if(!e||!e.firstChild)setTimeout(function(){c.createFrame()},50);else{var b=this.getDragEl(),d=YAHOO.util.Dom;if(!b){b=document.createElement("div");b.id=this.dragElId;var a=b.style;a.position="absolute";a.visibility="hidden";a.cursor="move";a.border="2px solid #aaa";a.zIndex=999;a.height="25px";a.width="25px";a=document.createElement("div");d.setStyle(a,"height","100%");d.setStyle(a,
113
- "width","100%");d.setStyle(a,"background-color","#ccc");d.setStyle(a,"opacity","0");b.appendChild(a);e.insertBefore(b,e.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(c,e){this.getEl();var b=this.getDragEl(),d=b.style;this._resizeProxy();
114
- this.centerFrame&&this.setDelta(Math.round(parseInt(d.width,10)/2),Math.round(parseInt(d.height,10)/2));this.setDragElPos(c,e);YAHOO.util.Dom.setStyle(b,"visibility","visible")},_resizeProxy:function(){if(this.resizeFrame){var c=YAHOO.util.Dom,e=this.getEl(),b=this.getDragEl(),d=parseInt(c.getStyle(b,"borderTopWidth"),10),a=parseInt(c.getStyle(b,"borderRightWidth"),10),f=parseInt(c.getStyle(b,"borderBottomWidth"),10),g=parseInt(c.getStyle(b,"borderLeftWidth"),10);isNaN(d)&&(d=0);isNaN(a)&&(a=0);isNaN(f)&&
115
- (f=0);isNaN(g)&&(g=0);a=Math.max(0,e.offsetWidth-a-g);e=Math.max(0,e.offsetHeight-d-f);c.setStyle(b,"width",a+"px");c.setStyle(b,"height",e+"px")}},b4MouseDown:function(c){this.setStartPosition();var e=YAHOO.util.Event.getPageX(c),c=YAHOO.util.Event.getPageY(c);this.autoOffset(e,c)},b4StartDrag:function(c,e){this.showFrame(c,e)},b4EndDrag:function(){YAHOO.util.Dom.setStyle(this.getDragEl(),"visibility","hidden")},endDrag:function(){var c=YAHOO.util.Dom,e=this.getEl(),b=this.getDragEl();c.setStyle(b,
116
- "visibility","");c.setStyle(e,"visibility","hidden");YAHOO.util.DDM.moveToEl(e,b);c.setStyle(b,"visibility","hidden");c.setStyle(e,"visibility","")},toString:function(){return"DDProxy "+this.id}});YAHOO.util.DDTarget=function(c,e,b){c&&this.initTarget(c,e,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"});
117
- (function(){function c(a,b,d,e){c.ANIM_AVAIL=!YAHOO.lang.isUndefined(YAHOO.util.Anim);if(a){this.init(a,b,true);this.initSlider(e);this.initThumb(d)}}var e=YAHOO.util.Dom.getXY,b=YAHOO.util.Event,d=Array.prototype.slice;YAHOO.lang.augmentObject(c,{getHorizSlider:function(a,b,d,e,i){return new c(a,a,new YAHOO.widget.SliderThumb(b,a,d,e,0,0,i),"horiz")},getVertSlider:function(a,b,d,e,i){return new c(a,a,new YAHOO.widget.SliderThumb(b,a,0,0,d,e,i),"vert")},getSliderRegion:function(a,b,d,e,i,j,k){return new c(a,
118
- a,new YAHOO.widget.SliderThumb(b,a,d,e,i,j,k),"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(a){this.type=a;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=
119
- 0.2;this.SOURCE_UI_EVENT=1;this.SOURCE_SET_VALUE=2;this.valueChangeSource=0;this._silent=false;this.lastOffset=[0,0]},initThumb:function(a){var b=this;this.thumb=a;a.cacheBetweenDrags=true;if(a._isHoriz&&a.xTicks&&a.xTicks.length)this.tickPause=Math.round(360/a.xTicks.length);else if(a.yTicks&&a.yTicks.length)this.tickPause=Math.round(360/a.yTicks.length);a.onAvailable=function(){return b.setStartSliderState()};a.onMouseDown=function(){b._mouseDown=true;return b.focus()};a.startDrag=function(){b._slideStart()};
120
- a.onDrag=function(){b.fireEvents(true)};a.onMouseUp=function(){b.thumbMouseUp()}},onAvailable:function(){this._bindKeyEvents()},_bindKeyEvents:function(){b.on(this.id,"keydown",this.handleKeyDown,this,true);b.on(this.id,"keypress",this.handleKeyPress,this,true)},handleKeyPress:function(a){if(this.enableKeys)switch(b.getCharCode(a)){case 37:case 38:case 39:case 40:case 36:case 35:b.preventDefault(a)}},handleKeyDown:function(a){if(this.enableKeys){var d=b.getCharCode(a),e=this.thumb,h=this.getXValue(),
121
- i=this.getYValue(),j=true;switch(d){case 37:h=h-this.keyIncrement;break;case 38:i=i-this.keyIncrement;break;case 39:h=h+this.keyIncrement;break;case 40:i=i+this.keyIncrement;break;case 36:h=e.leftConstraint;i=e.topConstraint;break;case 35:h=e.rightConstraint;i=e.bottomConstraint;break;default:j=false}if(j){e._isRegion?this._setRegionValue(c.SOURCE_KEY_EVENT,h,i,true):this._setValue(c.SOURCE_KEY_EVENT,e._isHoriz?h:i,true);b.stopEvent(a)}}},setStartSliderState:function(){this.setThumbCenterPoint();
122
- this.baselinePos=e(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 a=this.thumb.getEl();
123
- if(a)this.thumbCenterPoint={x:parseInt(a.offsetWidth/2,10),y:parseInt(a.offsetHeight/2,10)}},lock:function(){this.thumb.lock();this.locked=true},unlock:function(){this.thumb.unlock();this.locked=false},thumbMouseUp:function(){this._mouseDown=false;!this.isLocked()&&!this.moveComplete&&this.endMove()},onMouseUp:function(){this._mouseDown=false;this.backgroundEnabled&&(!this.isLocked()&&!this.moveComplete)&&this.endMove()},getThumb:function(){return this.thumb},focus:function(){this.valueChangeSource=
124
- c.SOURCE_UI_EVENT;var a=this.getEl();if(a.focus)try{a.focus()}catch(b){}this.verifyOffset();return!this.isLocked()},onChange:function(){},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 a=d.call(arguments);a.unshift(c.SOURCE_SET_VALUE);return this._setValue.apply(this,a)},_setValue:function(a,b,d,e,i){var j=this.thumb,k;
125
- if(!j.available){this.deferredSetValue=arguments;return false}if(this.isLocked()&&!e||isNaN(b)||j._isRegion)return false;this._silent=i;this.valueChangeSource=a||c.SOURCE_SET_VALUE;j.lastOffset=[b,b];this.verifyOffset(true);this._slideStart();if(j._isHoriz){k=j.initPageX+b+this.thumbCenterPoint.x;this.moveThumb(k,j.initPageY,d)}else{k=j.initPageY+b+this.thumbCenterPoint.y;this.moveThumb(j.initPageX,k,d)}return true},setRegionValue:function(){var a=d.call(arguments);a.unshift(c.SOURCE_SET_VALUE);return this._setRegionValue.apply(this,
126
- a)},_setRegionValue:function(a,b,d,e,i,j){var k=this.thumb;if(!k.available){this.deferredSetRegionValue=arguments;return false}if(this.isLocked()&&!i||isNaN(b)||!k._isRegion)return false;this._silent=j;this.valueChangeSource=a||c.SOURCE_SET_VALUE;k.lastOffset=[b,d];this.verifyOffset(true);this._slideStart();this.moveThumb(k.initPageX+b+this.thumbCenterPoint.x,k.initPageY+d+this.thumbCenterPoint.y,e);return true},verifyOffset:function(){var a=e(this.getEl()),b=this.thumb;(!this.thumbCenterPoint||!this.thumbCenterPoint.x)&&
127
- this.setThumbCenterPoint();if(a&&(a[0]!=this.baselinePos[0]||a[1]!=this.baselinePos[1])){this.setInitPosition();this.baselinePos=a;b.initPageX=this.initPageX+b.startOffset[0];b.initPageY=this.initPageY+b.startOffset[1];b.deltaSetXY=null;this.resetThumbConstraints();return false}return true},moveThumb:function(a,b,d,h){var i=this.thumb,j=this,k,l;if(i.available){i.setDelta(this.thumbCenterPoint.x,this.thumbCenterPoint.y);l=i.getTargetCoord(a,b);k=[Math.round(l.x),Math.round(l.y)];if(this.animate&&
128
- i._graduated&&!d){this.lock();this.curCoord=e(this.thumb.getEl());this.curCoord=[Math.round(this.curCoord[0]),Math.round(this.curCoord[1])];setTimeout(function(){j.moveOneTick(k)},this.tickPause)}else if(this.animate&&c.ANIM_AVAIL&&!d){this.lock();a=new YAHOO.util.Motion(i.id,{points:{to:k}},this.animationDuration,YAHOO.util.Easing.easeOut);a.onComplete.subscribe(function(){j.unlock();j._mouseDown||j.endMove()});a.animate()}else{i.setDragElPos(a,b);!h&&!this._mouseDown&&this.endMove()}}},_slideStart:function(){if(!this._sliding){if(!this._silent){this.onSlideStart();
129
- this.fireEvent("slideStart")}this._sliding=true}},_slideEnd:function(){if(this._sliding&&this.moveComplete){var a=this._silent;this.moveComplete=this._silent=this._sliding=false;if(!a){this.onSlideEnd();this.fireEvent("slideEnd")}}},moveOneTick:function(a){var b=this.thumb,d=this,c=null,e;if(b._isRegion){c=this._getNextX(this.curCoord,a);e=c!==null?c[0]:this.curCoord[0];c=this._getNextY(this.curCoord,a);c=c!==null?c[1]:this.curCoord[1];c=e!==this.curCoord[0]||c!==this.curCoord[1]?[e,c]:null}else c=
130
- b._isHoriz?this._getNextX(this.curCoord,a):this._getNextY(this.curCoord,a);if(c){this.curCoord=c;this.thumb.alignElWithMouse(b.getEl(),c[0]+this.thumbCenterPoint.x,c[1]+this.thumbCenterPoint.y);if(c[0]==a[0]&&c[1]==a[1]){this.unlock();this._mouseDown||this.endMove()}else setTimeout(function(){d.moveOneTick(a)},this.tickPause)}else{this.unlock();this._mouseDown||this.endMove()}},_getNextX:function(a,b){var d=this.thumb,c;c=[];c=null;if(a[0]>b[0]){c=d.tickSize-this.thumbCenterPoint.x;c=d.getTargetCoord(a[0]-
131
- c,a[1]);c=[c.x,c.y]}else if(a[0]<b[0]){c=d.tickSize+this.thumbCenterPoint.x;c=d.getTargetCoord(a[0]+c,a[1]);c=[c.x,c.y]}return c},_getNextY:function(a,b){var d=this.thumb,c;c=[];c=null;if(a[1]>b[1]){c=d.tickSize-this.thumbCenterPoint.y;c=d.getTargetCoord(a[0],a[1]-c);c=[c.x,c.y]}else if(a[1]<b[1]){c=d.tickSize+this.thumbCenterPoint.y;c=d.getTargetCoord(a[0],a[1]+c);c=[c.x,c.y]}return c},b4MouseDown:function(){if(!this.backgroundEnabled)return false;this.thumb.autoOffset();this.resetThumbConstraints()},
132
- onMouseDown:function(a){if(!this.backgroundEnabled||this.isLocked())return false;this._mouseDown=true;var d=b.getPageX(a),a=b.getPageY(a);this.focus();this._slideStart();this.moveThumb(d,a)},onDrag:function(a){if(this.backgroundEnabled&&!this.isLocked()){var d=b.getPageX(a),a=b.getPageY(a);this.moveThumb(d,a,true,true);this.fireEvents()}},endMove:function(){this.unlock();this.fireEvents();this.moveComplete=true;this._slideEnd()},resetThumbConstraints:function(){var a=this.thumb;a.setXConstraint(a.leftConstraint,
133
- a.rightConstraint,a.xTickSize);a.setYConstraint(a.topConstraint,a.bottomConstraint,a.xTickSize)},fireEvents:function(a){var b=this.thumb;a||b.cachePosition();if(!this.isLocked())if(b._isRegion){a=b.getXValue();b=b.getYValue();if((a!=this.previousX||b!=this.previousY)&&!this._silent){this.onChange(a,b);this.fireEvent("change",{x:a,y:b})}this.previousX=a;this.previousY=b}else{b=b.getValue();if(b!=this.previousVal&&!this._silent){this.onChange(b);this.fireEvent("change",b)}this.previousVal=b}},toString:function(){return"Slider ("+
134
- this.type+") "+this.id}});YAHOO.lang.augmentProto(c,YAHOO.util.EventProvider);YAHOO.widget.Slider=c})();YAHOO.widget.SliderThumb=function(c,e,b,d,a,f,g){if(c){YAHOO.widget.SliderThumb.superclass.constructor.call(this,c,e);this.parentElId=e}this.isTarget=false;this.tickSize=g;this.maintainOffset=true;this.initSlider(b,d,a,f,g);this.scroll=false};
135
- YAHOO.extend(YAHOO.widget.SliderThumb,YAHOO.util.DD,{startOffset:null,dragOnly:!0,_isHoriz:!1,_prevVal:0,_graduated:!1,getOffsetFromParent0:function(c){var e=YAHOO.util.Dom.getXY(this.getEl()),c=c||YAHOO.util.Dom.getXY(this.parentElId);return[e[0]-c[0],e[1]-c[1]]},getOffsetFromParent:function(c){var e=this.getEl(),b;if(this.deltaOffset){b=parseInt(YAHOO.util.Dom.getStyle(e,"left"),10);e=parseInt(YAHOO.util.Dom.getStyle(e,"top"),10);b=[b+this.deltaOffset[0],e+this.deltaOffset[1]]}else{b=YAHOO.util.Dom.getXY(e);
136
- c=c||YAHOO.util.Dom.getXY(this.parentElId);b=[b[0]-c[0],b[1]-c[1]];c=parseInt(YAHOO.util.Dom.getStyle(e,"left"),10);e=parseInt(YAHOO.util.Dom.getStyle(e,"top"),10);c=c-b[0];e=e-b[1];if(!isNaN(c)&&!isNaN(e))this.deltaOffset=[c,e]}return b},initSlider:function(c,e,b,d,a){this.initLeft=c;this.initRight=e;this.initUp=b;this.initDown=d;this.setXConstraint(c,e,a);this.setYConstraint(b,d,a);if(a&&a>1)this._graduated=true;this._isHoriz=c||e;this._isVert=b||d;this._isRegion=this._isHoriz&&this._isVert},clearTicks:function(){YAHOO.widget.SliderThumb.superclass.clearTicks.call(this);
137
- this.tickSize=0;this._graduated=false},getValue:function(){return this._isHoriz?this.getXValue():this.getYValue()},getXValue:function(){if(!this.available)return 0;var c=this.getOffsetFromParent();if(YAHOO.lang.isNumber(c[0])){this.lastOffset=c;return c[0]-this.startOffset[0]}return this.lastOffset[0]-this.startOffset[0]},getYValue:function(){if(!this.available)return 0;var c=this.getOffsetFromParent();if(YAHOO.lang.isNumber(c[1])){this.lastOffset=c;return c[1]-this.startOffset[1]}return this.lastOffset[1]-
138
- this.startOffset[1]},toString:function(){return"SliderThumb "+this.id},onChange:function(){}});
139
- (function(){function c(b,a,c,e){var h=this,i=false,j=false,k,l;this.minSlider=b;this.maxSlider=a;this.activeSlider=b;this.isHoriz=b.thumb._isHoriz;k=this.minSlider.thumb.onMouseDown;l=this.maxSlider.thumb.onMouseDown;this.minSlider.thumb.onMouseDown=function(){h.activeSlider=h.minSlider;k.apply(this,arguments)};this.maxSlider.thumb.onMouseDown=function(){h.activeSlider=h.maxSlider;l.apply(this,arguments)};this.minSlider.thumb.onAvailable=function(){b.setStartSliderState();i=true;j&&h.fireEvent("ready",
140
- h)};this.maxSlider.thumb.onAvailable=function(){a.setStartSliderState();j=true;i&&h.fireEvent("ready",h)};b.onMouseDown=a.onMouseDown=function(a){return this.backgroundEnabled&&h._handleMouseDown(a)};b.onDrag=a.onDrag=function(a){h._handleDrag(a)};b.onMouseUp=a.onMouseUp=function(a){h._handleMouseUp(a)};b._bindKeyEvents=function(){h._bindKeyEvents(this)};a._bindKeyEvents=function(){};b.subscribe("change",this._handleMinChange,b,this);b.subscribe("slideStart",this._handleSlideStart,b,this);b.subscribe("slideEnd",
141
- this._handleSlideEnd,b,this);a.subscribe("change",this._handleMaxChange,a,this);a.subscribe("slideStart",this._handleSlideStart,a,this);a.subscribe("slideEnd",this._handleSlideEnd,a,this);this.createEvent("ready",this);this.createEvent("change",this);this.createEvent("slideStart",this);this.createEvent("slideEnd",this);e=YAHOO.lang.isArray(e)?e:[0,c];e[0]=Math.min(Math.max(parseInt(e[0],10)|0,0),c);e[1]=Math.max(Math.min(parseInt(e[1],10)|0,c),0);e[0]>e[1]&&e.splice(0,2,e[1],e[0]);this.minVal=e[0];
142
- this.maxVal=e[1];this.minSlider.setValue(this.minVal,true,true,true);this.maxSlider.setValue(this.maxVal,true,true,true)}var e=YAHOO.util.Event,b=YAHOO.widget;c.prototype={minVal:-1,maxVal:-1,minRange:0,_handleSlideStart:function(b,a){this.fireEvent("slideStart",a)},_handleSlideEnd:function(b,a){this.fireEvent("slideEnd",a)},_handleDrag:function(d){b.Slider.prototype.onDrag.call(this.activeSlider,d)},_handleMinChange:function(){this.activeSlider=this.minSlider;this.updateValue()},_handleMaxChange:function(){this.activeSlider=
143
- this.maxSlider;this.updateValue()},_bindKeyEvents:function(b){e.on(b.id,"keydown",this._handleKeyDown,this,true);e.on(b.id,"keypress",this._handleKeyPress,this,true)},_handleKeyDown:function(b){this.activeSlider.handleKeyDown.apply(this.activeSlider,arguments)},_handleKeyPress:function(b){this.activeSlider.handleKeyPress.apply(this.activeSlider,arguments)},setValues:function(b,a,c,e,h){var i=this.minSlider,j=this.maxSlider,k=i.thumb,l=j.thumb,m=this,n=false,o=false;if(k._isHoriz){k.setXConstraint(k.leftConstraint,
144
- l.rightConstraint,k.tickSize);l.setXConstraint(k.leftConstraint,l.rightConstraint,l.tickSize)}else{k.setYConstraint(k.topConstraint,l.bottomConstraint,k.tickSize);l.setYConstraint(k.topConstraint,l.bottomConstraint,l.tickSize)}this._oneTimeCallback(i,"slideEnd",function(){n=true;if(o){m.updateValue(h);setTimeout(function(){m._cleanEvent(i,"slideEnd");m._cleanEvent(j,"slideEnd")},0)}});this._oneTimeCallback(j,"slideEnd",function(){o=true;if(n){m.updateValue(h);setTimeout(function(){m._cleanEvent(i,
145
- "slideEnd");m._cleanEvent(j,"slideEnd")},0)}});i.setValue(b,c,e,false);j.setValue(a,c,e,false)},setMinValue:function(b,a,c,e){var h=this.minSlider,i=this;this.activeSlider=h;i=this;this._oneTimeCallback(h,"slideEnd",function(){i.updateValue(e);setTimeout(function(){i._cleanEvent(h,"slideEnd")},0)});h.setValue(b,a,c)},setMaxValue:function(b,a,c,e){var h=this.maxSlider,i=this;this.activeSlider=h;this._oneTimeCallback(h,"slideEnd",function(){i.updateValue(e);setTimeout(function(){i._cleanEvent(h,"slideEnd")},
146
- 0)});h.setValue(b,a,c)},updateValue:function(b){var a=this.minSlider.getValue(),c=this.maxSlider.getValue(),e=false,h,i,j,k;if(a!=this.minVal||c!=this.maxVal){e=true;h=this.minSlider.thumb;i=this.maxSlider.thumb;j=this.isHoriz?"x":"y";k=this.minSlider.thumbCenterPoint[j]+this.maxSlider.thumbCenterPoint[j];j=Math.max(c-k-this.minRange,0);k=Math.min(-a-k-this.minRange,0);if(this.isHoriz){j=Math.min(j,i.rightConstraint);h.setXConstraint(h.leftConstraint,j,h.tickSize);i.setXConstraint(k,i.rightConstraint,
147
- i.tickSize)}else{j=Math.min(j,i.bottomConstraint);h.setYConstraint(h.leftConstraint,j,h.tickSize);i.setYConstraint(k,i.bottomConstraint,i.tickSize)}}this.minVal=a;this.maxVal=c;e&&!b&&this.fireEvent("change",this)},selectActiveSlider:function(b){var a=this.minSlider,c=this.maxSlider,e=a.isLocked()||!a.backgroundEnabled,h=c.isLocked()||!a.backgroundEnabled,i=YAHOO.util.Event;if(e||h)this.activeSlider=e?c:a;else{b=this.isHoriz?i.getPageX(b)-a.thumb.initPageX-a.thumbCenterPoint.x:i.getPageY(b)-a.thumb.initPageY-
148
- a.thumbCenterPoint.y;this.activeSlider=b*2>c.getValue()+a.getValue()?c:a}},_handleMouseDown:function(d){if(d._handled)return false;d._handled=true;this.selectActiveSlider(d);return b.Slider.prototype.onMouseDown.call(this.activeSlider,d)},_handleMouseUp:function(d){b.Slider.prototype.onMouseUp.apply(this.activeSlider,arguments)},_oneTimeCallback:function(b,a,c){b.subscribe(a,function(){b.unsubscribe(a,arguments.callee);c.apply({},[].slice.apply(arguments))})},_cleanEvent:function(b,a){var c,e,h,i,
149
- j,k;if(b.__yui_events&&b.events[a]){for(e=b.__yui_events.length;e>=0;--e)if(b.__yui_events[e].type===a){c=b.__yui_events[e];break}if(c){j=c.subscribers;k=[];e=i=0;for(h=j.length;e<h;++e)j[e]&&(k[i++]=j[e]);c.subscribers=k}}}};YAHOO.lang.augmentProto(c,YAHOO.util.EventProvider);b.Slider.getHorizDualSlider=function(d,a,e,g,h,i){a=new b.SliderThumb(a,d,0,g,0,0,h);e=new b.SliderThumb(e,d,0,g,0,0,h);return new c(new b.Slider(d,d,a,"horiz"),new b.Slider(d,d,e,"horiz"),g,i)};b.Slider.getVertDualSlider=function(c,
150
- a,e,g,h,i){a=new b.SliderThumb(a,c,0,0,0,g,h);e=new b.SliderThumb(e,c,0,0,0,g,h);return new b.DualSlider(new b.Slider(c,c,a,"vert"),new b.Slider(c,c,e,"vert"),g,i)};YAHOO.widget.DualSlider=c})();YAHOO.register("slider",YAHOO.widget.Slider,{version:"2.7.0",build:"1796"});YAHOO.util.Attribute=function(c,e){if(e){this.owner=e;this.configure(c,true)}};
151
- YAHOO.util.Attribute.prototype={name:void 0,value:null,owner:null,readOnly:!1,writeOnce:!1,_initialConfig:null,_written:!1,method:null,setter:null,getter:null,validator:null,getValue:function(){var c=this.value;this.getter&&(c=this.getter.call(this.owner,this.name));return c},setValue:function(c,e){var b,d=this.owner,a=this.name,f={type:a,prevValue:this.getValue(),newValue:c};if(this.readOnly||this.writeOnce&&this._written||this.validator&&!this.validator.call(d,c))return false;if(!e){b=d.fireBeforeChangeEvent(f);
152
- if(b===false)return false}this.setter&&(c=this.setter.call(d,c,this.name));this.method&&this.method.call(d,c,this.name);this.value=c;this._written=true;f.type=a;e||this.owner.fireChangeEvent(f);return true},configure:function(c,e){c=c||{};if(e)this._written=false;this._initialConfig=this._initialConfig||{};for(var b in c)if(c.hasOwnProperty(b)){this[b]=c[b];e&&(this._initialConfig[b]=c[b])}},resetValue:function(){return this.setValue(this._initialConfig.value)},resetConfig:function(){this.configure(this._initialConfig,
153
- true)},refresh:function(c){this.setValue(this.value,c)}};
154
- (function(){var c=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];return!b||!this._configs.hasOwnProperty(c)?null:b.getValue()},set:function(c,b,d){this._configs=this._configs||{};c=this._configs[c];return!c?false:c.setValue(b,d)},getAttributeKeys:function(){this._configs=this._configs;var e=[],b;for(b in this._configs)c.hasOwnProperty(this._configs,b)&&!c.isUndefined(this._configs[b])&&
155
- (e[e.length]=b);return e},setAttributes:function(e,b){for(var d in e)c.hasOwnProperty(e,d)&&this.set(d,e[d],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,b){for(var d=this._configs=this._configs||{},e=(c.isString(e)?[e]:e)||this.getAttributeKeys(),a=0,f=e.length;a<f;++a)d.hasOwnProperty(e[a])&&this._configs[e[a]].refresh(b)},register:function(c,b){this.setAttributeConfig(c,
156
- b)},getAttributeConfig:function(e){this._configs=this._configs||{};var b=this._configs[e]||{},d={};for(e in b)c.hasOwnProperty(b,e)&&(d[e]=b[e]);return d},setAttributeConfig:function(c,b,d){this._configs=this._configs||{};b=b||{};if(this._configs[c])this._configs[c].configure(b,d);else{b.name=c;this._configs[c]=this.createAttribute(b)}},configureAttribute:function(c,b,d){this.setAttributeConfig(c,b,d)},resetAttributeConfig:function(c){this._configs=this._configs||{};this._configs[c].resetConfig()},
157
- subscribe:function(c,b){this._events=this._events||{};c in this._events||(this._events[c]=this.createEvent(c));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;b="before"+(c.type.charAt(0).toUpperCase()+c.type.substr(1)+"Change");c.type=b;return this.fireEvent(c.type,c)},fireChangeEvent:function(c){c.type=c.type+"Change";return this.fireEvent(c.type,
158
- c)},createAttribute:function(c){return new YAHOO.util.Attribute(c,this)}};YAHOO.augment(YAHOO.util.AttributeProvider,YAHOO.util.EventProvider)})();
159
- (function(){var c=YAHOO.util.Dom,e=YAHOO.util.AttributeProvider,b=function(b,a){this.init.apply(this,arguments)};b.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};b.prototype={DOM_EVENTS:null,DEFAULT_HTML_SETTER:function(b,a){var c=this.get("element");c&&(c[a]=b)},DEFAULT_HTML_GETTER:function(b){var a=this.get("element"),c;a&&(c=a[b]);return c},appendChild:function(b){b=
160
- b.get?b.get("element"):b;return this.get("element").appendChild(b)},getElementsByTagName:function(b){return this.get("element").getElementsByTagName(b)},hasChildNodes:function(){return this.get("element").hasChildNodes()},insertBefore:function(b,a){b=b.get?b.get("element"):b;a=a&&a.get?a.get("element"):a;return this.get("element").insertBefore(b,a)},removeChild:function(b){b=b.get?b.get("element"):b;return this.get("element").removeChild(b)},replaceChild:function(b,a){b=b.get?b.get("element"):b;a=
161
- a.get?a.get("element"):a;return this.get("element").replaceChild(b,a)},initAttributes:function(){},addListener:function(b,a,c,e){var h=this.get("element")||this.get("id"),e=e||this,i=this;if(!this._events[b]){h&&this.DOM_EVENTS[b]&&YAHOO.util.Event.addListener(h,b,function(a){if(a.srcElement&&!a.target)a.target=a.srcElement;i.fireEvent(b,a)},c,e);this.createEvent(b,this)}return YAHOO.util.EventProvider.prototype.subscribe.apply(this,arguments)},on:function(){return this.addListener.apply(this,arguments)},
162
- subscribe:function(){return this.addListener.apply(this,arguments)},removeListener:function(b,a){return this.unsubscribe.apply(this,arguments)},addClass:function(b){c.addClass(this.get("element"),b)},getElementsByClassName:function(b,a){return c.getElementsByClassName(b,a,this.get("element"))},hasClass:function(b){return c.hasClass(this.get("element"),b)},removeClass:function(b){return c.removeClass(this.get("element"),b)},replaceClass:function(b,a){return c.replaceClass(this.get("element"),b,a)},
163
- setStyle:function(b,a){return c.setStyle(this.get("element"),b,a)},getStyle:function(b){return c.getStyle(this.get("element"),b)},fireQueue:function(){for(var b=this._queue,a=0,c=b.length;a<c;++a)this[b[a][0]].apply(this,b[a][1])},appendTo:function(b,a){b=b.get?b.get("element"):c.get(b);this.fireEvent("beforeAppendTo",{type:"beforeAppendTo",target:b});var a=a&&a.get?a.get("element"):c.get(a),e=this.get("element");if(!e||!b)return false;e.parent!=b&&(a?b.insertBefore(e,a):b.appendChild(e));this.fireEvent("appendTo",
164
- {type:"appendTo",target:b});return e},get:function(b){var a=this._configs||{},c=a.element;c&&(!a[b]&&!YAHOO.lang.isUndefined(c.value[b]))&&this._setHTMLAttrConfig(b);return e.prototype.get.call(this,b)},setAttributes:function(b,a){for(var c={},e=this._configOrder,h=0,i=e.length;h<i;++h)if(b[e[h]]!==void 0){c[e[h]]=true;this.set(e[h],b[e[h]],a)}for(var j in b)b.hasOwnProperty(j)&&!c[j]&&this.set(j,b[j],a)},set:function(b,a,c){var g=this.get("element");if(g){!this._configs[b]&&!YAHOO.lang.isUndefined(g[b])&&
165
- this._setHTMLAttrConfig(b);return e.prototype.set.apply(this,arguments)}this._queue[this._queue.length]=["set",arguments];if(this._configs[b])this._configs[b].value=a},setAttributeConfig:function(b,a,c){this._configOrder.push(b);e.prototype.setAttributeConfig.apply(this,arguments)},createEvent:function(b,a){this._events[b]=true;return e.prototype.createEvent.apply(this,arguments)},init:function(b,a){this._initElement(b,a)},destroy:function(){var b=this.get("element");YAHOO.util.Event.purgeElement(b,
166
- true);this.unsubscribeAll();b&&b.parentNode&&b.parentNode.removeChild(b);this._queue=[];this._events={};this._configs={};this._configOrder=[]},_initElement:function(d,a){this._queue=this._queue||[];this._events=this._events||{};this._configs=this._configs||{};this._configOrder=[];a=a||{};a.element=a.element||d||null;var e=false,g=b.DOM_EVENTS;this.DOM_EVENTS=this.DOM_EVENTS||{};for(var h in g)g.hasOwnProperty(h)&&(this.DOM_EVENTS[h]=g[h]);typeof a.element==="string"&&this._setHTMLAttrConfig("id",
167
- {value:a.element});if(c.get(a.element)){e=true;this._initHTMLElement(a);this._initContent(a)}YAHOO.util.Event.onAvailable(a.element,function(){e||this._initHTMLElement(a);this.fireEvent("available",{type:"available",target:c.get(a.element)})},this,true);YAHOO.util.Event.onContentReady(a.element,function(){e||this._initContent(a);this.fireEvent("contentReady",{type:"contentReady",target:c.get(a.element)})},this,true)},_initHTMLElement:function(b){this.setAttributeConfig("element",{value:c.get(b.element),
168
- readOnly:true})},_initContent:function(b){this.initAttributes(b);this.setAttributes(b,true);this.fireQueue()},_setHTMLAttrConfig:function(b,a){var c=this.get("element"),a=a||{};a.name=b;a.setter=a.setter||this.DEFAULT_HTML_SETTER;a.getter=a.getter||this.DEFAULT_HTML_GETTER;a.value=a.value||c[b];this._configs[b]=new YAHOO.util.Attribute(a,this)}};YAHOO.augment(b,e);YAHOO.util.Element=b})();YAHOO.register("element",YAHOO.util.Element,{version:"2.7.0",build:"1796"});
169
- YAHOO.util.Color=function(){var c=YAHOO.lang.isArray,e=YAHOO.lang.isNumber;return{real2dec:function(b){return Math.min(255,Math.round(b*256))},hsv2rgb:function(b,d,a){if(c(b))return this.hsv2rgb.call(this,b[0],b[1],b[2]);var e,g,h,i=Math.floor(b/60%6),j=b/60-i,b=a*(1-d),k=a*(1-j*d),d=a*(1-(1-j)*d);switch(i){case 0:e=a;g=d;h=b;break;case 1:e=k;g=a;h=b;break;case 2:e=b;g=a;h=d;break;case 3:e=b;g=k;h=a;break;case 4:e=d;g=b;h=a;break;case 5:e=a;g=b;h=k}a=this.real2dec;return[a(e),a(g),a(h)]},rgb2hsv:function(b,
170
- d,a){if(c(b))return this.rgb2hsv.apply(this,b);var b=b/255,d=d/255,a=a/255,e,g=Math.min(Math.min(b,d),a),h=Math.max(Math.max(b,d),a),i=h-g;switch(h){case g:e=0;break;case b:e=60*(d-a)/i;d<a&&(e=e+360);break;case d:e=60*(a-b)/i+120;break;case a:e=60*(b-d)/i+240}return[Math.round(e),h===0?0:1-g/h,h]},rgb2hex:function(b,d,a){if(c(b))return this.rgb2hex.apply(this,b);var e=this.dec2hex;return e(b)+e(d)+e(a)},dec2hex:function(b){b=parseInt(b,10)|0;return("0"+(b>255||b<0?0:b).toString(16)).slice(-2).toUpperCase()},
171
- hex2dec:function(b){return parseInt(b,16)},hex2rgb:function(b){var c=this.hex2dec;return[c(b.slice(0,2)),c(b.slice(2,4)),c(b.slice(4,6))]},websafe:function(b,d,a){if(c(b))return this.websafe.apply(this,b);var f=function(a){if(e(a)){var a=Math.min(Math.max(0,a),255),b,c;for(b=0;b<256;b=b+51){c=b+51;if(a>=b&&a<=c)return a-b>25?c:b}}return a};return[f(b),f(d),f(a)]}}}();
172
- (function(){function c(a,b){e=e+1;b=b||{};if(arguments.length===1&&!YAHOO.lang.isString(a)&&!a.nodeName){b=a;a=b.element||null}!a&&!b.element&&(a=this._createHostElement(b));c.superclass.constructor.call(this,a,b);this.initPicker()}var e=0,b=YAHOO.util,d=YAHOO.lang,a=YAHOO.widget.Slider,f=b.Color,g=b.Dom,h=b.Event,i=d.substitute;YAHOO.extend(c,YAHOO.util.Element,{ID:{R:"yui-picker-r",R_HEX:"yui-picker-rhex",G:"yui-picker-g",G_HEX:"yui-picker-ghex",B:"yui-picker-b",B_HEX:"yui-picker-bhex",H:"yui-picker-h",
173
- S:"yui-picker-s",V:"yui-picker-v",PICKER_BG:"yui-picker-bg",PICKER_THUMB:"yui-picker-thumb",HUE_BG:"yui-picker-hue-bg",HUE_THUMB:"yui-picker-hue-thumb",HEX:"yui-picker-hex",SWATCH:"yui-picker-swatch",WEBSAFE_SWATCH:"yui-picker-websafe-swatch",CONTROLS:"yui-picker-controls",RGB_CONTROLS:"yui-picker-rgb-controls",HSV_CONTROLS:"yui-picker-hsv-controls",HEX_CONTROLS:"yui-picker-hex-controls",HEX_SUMMARY:"yui-picker-hex-summary",CONTROLS_LABEL:"yui-picker-controls-label"},TXT:{ILLEGAL_HEX:"Illegal hex value entered",
174
- 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:"°",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",
175
- 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 a=document.createElement("div");if(this.CSS.BASE)a.className=this.CSS.BASE;return a},_updateHueSlider:function(){var a=
176
- this.get(this.OPT.PICKER_SIZE),b=this.get(this.OPT.HUE),b=a-Math.round(b/360*a);b===a&&(b=0);this.hueSlider.setValue(b,this.skipAnim)},_updatePickerSlider:function(){var a=this.get(this.OPT.PICKER_SIZE),b=this.get(this.OPT.SATURATION),c=this.get(this.OPT.VALUE),b=Math.round(b*a/100),c=Math.round(a-c*a/100);this.pickerSlider.setRegionValue(b,c,this.skipAnim)},_updateSliders:function(){this._updateHueSlider();this._updatePickerSlider()},setValue:function(a,b){this.set(this.OPT.RGB,a,b||false);this._updateSliders()},
177
- hueSlider:null,pickerSlider:null,_getH:function(){var a=this.get(this.OPT.PICKER_SIZE),a=(a-this.hueSlider.getValue())/a,a=Math.round(a*360);return a===360?0:a},_getS:function(){return this.pickerSlider.getXValue()/this.get(this.OPT.PICKER_SIZE)},_getV:function(){var a=this.get(this.OPT.PICKER_SIZE);return(a-this.pickerSlider.getYValue())/a},_updateSwatch:function(){var a=this.get(this.OPT.RGB),b=this.get(this.OPT.WEBSAFE),c=this.getElement(this.ID.SWATCH),a=a.join(","),d=this.get(this.OPT.TXT);g.setStyle(c,
178
- "background-color","rgb("+a+")");c.title=i(d.CURRENT_COLOR,{rgb:"#"+this.get(this.OPT.HEX)});c=this.getElement(this.ID.WEBSAFE_SWATCH);a=b.join(",");g.setStyle(c,"background-color","rgb("+a+")");c.title=i(d.CLOSEST_WEBSAFE,{rgb:"#"+f.rgb2hex(b)})},_getValuesFromSliders:function(){this.set(this.OPT.RGB,f.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);
179
- 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=f.dec2hex(this.get(this.OPT.RED));this.getElement(this.ID.G).value=this.get(this.OPT.GREEN);this.getElement(this.ID.G_HEX).innerHTML=f.dec2hex(this.get(this.OPT.GREEN));this.getElement(this.ID.B).value=this.get(this.OPT.BLUE);this.getElement(this.ID.B_HEX).innerHTML=f.dec2hex(this.get(this.OPT.BLUE));this.getElement(this.ID.HEX).value=this.get(this.OPT.HEX)},
180
- _onHueSliderChange:function(){var b=this._getH(),c="rgb("+f.hsv2rgb(b,1,1).join(",")+")";this.set(this.OPT.HUE,b,true);g.setStyle(this.getElement(this.ID.PICKER_BG),"background-color",c);this.hueSlider.valueChangeSource!==a.SOURCE_SET_VALUE&&this._getValuesFromSliders();this._updateFormFields();this._updateSwatch()},_onPickerSliderChange:function(){var b=this._getS(),c=this._getV();this.set(this.OPT.SATURATION,Math.round(b*100),true);this.set(this.OPT.VALUE,Math.round(c*100),true);this.pickerSlider.valueChangeSource!==
181
- a.SOURCE_SET_VALUE&&this._getValuesFromSliders();this._updateFormFields();this._updateSwatch()},_getCommand:function(a){var b=h.getCharCode(a);return b===38?3:b===13?6:b===40?4:b>=48&&b<=57?1:b>=97&&b<=102?2:b>=65&&b<=70?2:"8, 9, 13, 27, 37, 39".indexOf(b)>-1||a.ctrlKey||a.metaKey?5:0},_useFieldValue:function(a,b,c){a=b.value;c!==this.OPT.HEX&&(a=parseInt(a,10));a!==this.get(c)&&this.set(c,a)},_rgbFieldKeypress:function(a,b,c){var d=this._getCommand(a),e=a.shiftKey?10:1;switch(d){case 6:this._useFieldValue.apply(this,
182
- arguments);break;case 3:this.set(c,Math.min(this.get(c)+e,255));this._updateFormFields();break;case 4:this.set(c,Math.max(this.get(c)-e,0));this._updateFormFields()}},_hexFieldKeypress:function(a,b,c){this._getCommand(a)===6&&this._useFieldValue.apply(this,arguments)},_hexOnly:function(a,b){switch(this._getCommand(a)){case 6:case 5:case 1:break;case 2:if(b!==true)break;default:h.stopEvent(a);return false}},_numbersOnly:function(a){return this._hexOnly(a,true)},getElement:function(a){return this.get(this.OPT.ELEMENTS)[this.get(this.OPT.IDS)[a]]},
183
- _createElements:function(){var a,b,c,e,f=this.get(this.OPT.IDS),g=this.get(this.OPT.TXT),h=this.get(this.OPT.IMAGES),i=function(a,b){var c=document.createElement(a);b&&d.augmentObject(c,b,true);return c},q=function(a,b){var c=d.merge({autocomplete:"off",value:"0",size:3,maxlength:3},b);c.name=c.id;return new i(a,c)};e=this.get("element");a=new i("div",{id:f[this.ID.PICKER_BG],className:"yui-picker-bg",tabIndex:-1,hideFocus:true});b=new i("div",{id:f[this.ID.PICKER_THUMB],className:"yui-picker-thumb"});
184
- c=new i("img",{src:h.PICKER_THUMB});b.appendChild(c);a.appendChild(b);e.appendChild(a);a=new i("div",{id:f[this.ID.HUE_BG],className:"yui-picker-hue-bg",tabIndex:-1,hideFocus:true});b=new i("div",{id:f[this.ID.HUE_THUMB],className:"yui-picker-hue-thumb"});c=new i("img",{src:h.HUE_THUMB});b.appendChild(c);a.appendChild(b);e.appendChild(a);a=new i("div",{id:f[this.ID.CONTROLS],className:"yui-picker-controls"});e.appendChild(a);e=a;a=new i("div",{className:"hd"});b=new i("a",{id:f[this.ID.CONTROLS_LABEL],
185
- href:"#"});a.appendChild(b);e.appendChild(a);a=new i("div",{className:"bd"});e.appendChild(a);e=a;a=new i("ul",{id:f[this.ID.RGB_CONTROLS],className:"yui-picker-rgb-controls"});b=new i("li");b.appendChild(document.createTextNode(g.R+" "));c=new q("input",{id:f[this.ID.R],className:"yui-picker-r"});b.appendChild(c);a.appendChild(b);b=new i("li");b.appendChild(document.createTextNode(g.G+" "));c=new q("input",{id:f[this.ID.G],className:"yui-picker-g"});b.appendChild(c);a.appendChild(b);b=new i("li");
186
- b.appendChild(document.createTextNode(g.B+" "));c=new q("input",{id:f[this.ID.B],className:"yui-picker-b"});b.appendChild(c);a.appendChild(b);e.appendChild(a);a=new i("ul",{id:f[this.ID.HSV_CONTROLS],className:"yui-picker-hsv-controls"});b=new i("li");b.appendChild(document.createTextNode(g.H+" "));c=new q("input",{id:f[this.ID.H],className:"yui-picker-h"});b.appendChild(c);b.appendChild(document.createTextNode(" "+g.DEG));a.appendChild(b);b=new i("li");b.appendChild(document.createTextNode(g.S+" "));
187
- c=new q("input",{id:f[this.ID.S],className:"yui-picker-s"});b.appendChild(c);b.appendChild(document.createTextNode(" "+g.PERCENT));a.appendChild(b);b=new i("li");b.appendChild(document.createTextNode(g.V+" "));c=new q("input",{id:f[this.ID.V],className:"yui-picker-v"});b.appendChild(c);b.appendChild(document.createTextNode(" "+g.PERCENT));a.appendChild(b);e.appendChild(a);a=new i("ul",{id:f[this.ID.HEX_SUMMARY],className:"yui-picker-hex_summary"});b=new i("li",{id:f[this.ID.R_HEX]});a.appendChild(b);
188
- b=new i("li",{id:f[this.ID.G_HEX]});a.appendChild(b);b=new i("li",{id:f[this.ID.B_HEX]});a.appendChild(b);e.appendChild(a);a=new i("div",{id:f[this.ID.HEX_CONTROLS],className:"yui-picker-hex-controls"});a.appendChild(document.createTextNode(g.HEX+" "));b=new q("input",{id:f[this.ID.HEX],className:"yui-picker-hex",size:6,maxlength:6});a.appendChild(b);e.appendChild(a);e=this.get("element");a=new i("div",{id:f[this.ID.SWATCH],className:"yui-picker-swatch"});e.appendChild(a);a=new i("div",{id:f[this.ID.WEBSAFE_SWATCH],
189
- className:"yui-picker-websafe-swatch"});e.appendChild(a)},_attachRGBHSV:function(a,b){h.on(this.getElement(a),"keydown",function(a,c){c._rgbFieldKeypress(a,this,b)},this);h.on(this.getElement(a),"keypress",this._numbersOnly,this,true);h.on(this.getElement(a),"blur",function(a,c){c._useFieldValue(a,this,b)},this)},_updateRGB:function(){this.set(this.OPT.RGB,[this.get(this.OPT.RED),this.get(this.OPT.GREEN),this.get(this.OPT.BLUE)]);this._updateSliders()},_initElements:function(){var a=this.OPT,b=this.get(a.IDS),
190
- a=this.get(a.ELEMENTS),c,e,f;for(c in this.ID)d.hasOwnProperty(this.ID,c)&&(b[this.ID[c]]=b[c]);(e=g.get(b[this.ID.PICKER_BG]))||this._createElements();for(c in b)if(d.hasOwnProperty(b,c)){e=g.get(b[c]);f=g.generateId(e);b[c]=f;b[b[c]]=f;a[f]=e}},initPicker:function(){this._initSliders();this._bindUI();this.syncUI(true)},_initSliders:function(){var b=this.ID,c=this.get(this.OPT.PICKER_SIZE);this.hueSlider=a.getVertSlider(this.getElement(b.HUE_BG),this.getElement(b.HUE_THUMB),0,c);this.pickerSlider=
191
- a.getSliderRegion(this.getElement(b.PICKER_BG),this.getElement(b.PICKER_THUMB),0,c,0,c);this.set(this.OPT.ANIMATE,this.get(this.OPT.ANIMATE))},_bindUI:function(){var a=this.ID,b=this.OPT;this.hueSlider.subscribe("change",this._onHueSliderChange,this,true);this.pickerSlider.subscribe("change",this._onPickerSliderChange,this,true);h.on(this.getElement(a.WEBSAFE_SWATCH),"click",function(){this.setValue(this.get(b.WEBSAFE))},this,true);h.on(this.getElement(a.CONTROLS_LABEL),"click",function(a){this.set(b.SHOW_CONTROLS,
192
- !this.get(b.SHOW_CONTROLS));h.preventDefault(a)},this,true);this._attachRGBHSV(a.R,b.RED);this._attachRGBHSV(a.G,b.GREEN);this._attachRGBHSV(a.B,b.BLUE);this._attachRGBHSV(a.H,b.HUE);this._attachRGBHSV(a.S,b.SATURATION);this._attachRGBHSV(a.V,b.VALUE);h.on(this.getElement(a.HEX),"keydown",function(a,c){c._hexFieldKeypress(a,this,b.HEX)},this);h.on(this.getElement(this.ID.HEX),"keypress",this._hexOnly,this,true);h.on(this.getElement(this.ID.HEX),"blur",function(a,c){c._useFieldValue(a,this,b.HEX)},
193
- this)},syncUI:function(a){this.skipAnim=a;this._updateRGB();this.skipAnim=false},_updateRGBFromHSV:function(){var a=[this.get(this.OPT.HUE),this.get(this.OPT.SATURATION)/100,this.get(this.OPT.VALUE)/100];this.set(this.OPT.RGB,f.hsv2rgb(a));this._updateSliders()},_updateHex:function(){var a=this.get(this.OPT.HEX),b=a.length,c;if(b===3){a=a.split("");for(c=0;c<b;c=c+1)a[c]=a[c]+a[c];a=a.join("")}if(a.length!==6)return false;this.setValue(f.hex2rgb(a))},_hideShowEl:function(a,b){var c=d.isString(a)?
194
- this.getElement(a):a;g.setStyle(c,"display",b?"":"none")},initAttributes:function(a){a=a||{};c.superclass.initAttributes.call(this,a);this.setAttributeConfig(this.OPT.PICKER_SIZE,{value:a.size||this.DEFAULT.PICKER_SIZE});this.setAttributeConfig(this.OPT.HUE,{value:a.hue||0,validator:d.isNumber});this.setAttributeConfig(this.OPT.SATURATION,{value:a.saturation||0,validator:d.isNumber});this.setAttributeConfig(this.OPT.VALUE,{value:d.isNumber(a.value)?a.value:100,validator:d.isNumber});this.setAttributeConfig(this.OPT.RED,
195
- {value:d.isNumber(a.red)?a.red:255,validator:d.isNumber});this.setAttributeConfig(this.OPT.GREEN,{value:d.isNumber(a.green)?a.green:255,validator:d.isNumber});this.setAttributeConfig(this.OPT.BLUE,{value:d.isNumber(a.blue)?a.blue:255,validator:d.isNumber});this.setAttributeConfig(this.OPT.HEX,{value:a.hex||"FFFFFF",validator:d.isString});this.setAttributeConfig(this.OPT.RGB,{value:a.rgb||[255,255,255],method:function(a){this.set(this.OPT.RED,a[0],true);this.set(this.OPT.GREEN,a[1],true);this.set(this.OPT.BLUE,
196
- a[2],true);var b=f.websafe(a),c=f.rgb2hex(a),a=f.rgb2hsv(a);this.set(this.OPT.WEBSAFE,b,true);this.set(this.OPT.HEX,c,true);a[1]&&this.set(this.OPT.HUE,a[0],true);this.set(this.OPT.SATURATION,Math.round(a[1]*100),true);this.set(this.OPT.VALUE,Math.round(a[2]*100),true)},readonly:true});this.setAttributeConfig(this.OPT.CONTAINER,{value:null,method:function(a){a&&a.showEvent.subscribe(function(){this.pickerSlider.focus()},this,true)}});this.setAttributeConfig(this.OPT.WEBSAFE,{value:a.websafe||[255,
197
- 255,255]});var b=a.ids||d.merge({},this.ID),h;if(!a.ids&&e>1)for(h in b)d.hasOwnProperty(b,h)&&(b[h]=b[h]+e);this.setAttributeConfig(this.OPT.IDS,{value:b,writeonce:true});this.setAttributeConfig(this.OPT.TXT,{value:a.txt||this.TXT,writeonce:true});this.setAttributeConfig(this.OPT.IMAGES,{value:a.images||this.IMAGE,writeonce:true});this.setAttributeConfig(this.OPT.ELEMENTS,{value:{},readonly:true});this.setAttributeConfig(this.OPT.SHOW_CONTROLS,{value:d.isBoolean(a.showcontrols)?a.showcontrols:true,
198
- method:function(a){this._hideShowEl(g.getElementsByClassName("bd","div",this.getElement(this.ID.CONTROLS))[0],a);this.getElement(this.ID.CONTROLS_LABEL).innerHTML=a?this.get(this.OPT.TXT).HIDE_CONTROLS:this.get(this.OPT.TXT).SHOW_CONTROLS}});this.setAttributeConfig(this.OPT.SHOW_RGB_CONTROLS,{value:d.isBoolean(a.showrgbcontrols)?a.showrgbcontrols:true,method:function(a){this._hideShowEl(this.ID.RGB_CONTROLS,a)}});this.setAttributeConfig(this.OPT.SHOW_HSV_CONTROLS,{value:d.isBoolean(a.showhsvcontrols)?
199
- a.showhsvcontrols:false,method:function(a){this._hideShowEl(this.ID.HSV_CONTROLS,a);a&&this.get(this.OPT.SHOW_HEX_SUMMARY)&&this.set(this.OPT.SHOW_HEX_SUMMARY,false)}});this.setAttributeConfig(this.OPT.SHOW_HEX_CONTROLS,{value:d.isBoolean(a.showhexcontrols)?a.showhexcontrols:false,method:function(a){this._hideShowEl(this.ID.HEX_CONTROLS,a)}});this.setAttributeConfig(this.OPT.SHOW_WEBSAFE,{value:d.isBoolean(a.showwebsafe)?a.showwebsafe:true,method:function(a){this._hideShowEl(this.ID.WEBSAFE_SWATCH,
200
- a)}});this.setAttributeConfig(this.OPT.SHOW_HEX_SUMMARY,{value:d.isBoolean(a.showhexsummary)?a.showhexsummary:true,method:function(a){this._hideShowEl(this.ID.HEX_SUMMARY,a);a&&this.get(this.OPT.SHOW_HSV_CONTROLS)&&this.set(this.OPT.SHOW_HSV_CONTROLS,false)}});this.setAttributeConfig(this.OPT.ANIMATE,{value:d.isBoolean(a.animate)?a.animate:true,method:function(a){if(this.pickerSlider){this.pickerSlider.animate=a;this.hueSlider.animate=a}}});this.on(this.OPT.HUE+"Change",this._updateRGBFromHSV,this,
201
- 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=c})();YAHOO.register("colorpicker",YAHOO.widget.ColorPicker,{version:"2.7.0",build:"1796"});
202
- (function(){var c=YAHOO.util,e=function(b,c,a,e){this.init(b,c,a,e)};e.NAME="Anim";e.prototype={toString:function(){var b=this.getEl()||{};return this.constructor.NAME+": "+(b.id||b.tagName)},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(b,c,a){return this.method(this.currentFrame,c,a-c,this.totalFrames)},setAttribute:function(b,
203
- d,a){var e=this.getEl();this.patterns.noNegatives.test(b)&&(d=d>0?d:0);"style"in e?c.Dom.setStyle(e,b,d+a):b in e&&(e[b]=d)},getAttribute:function(b){var d=this.getEl(),a=c.Dom.getStyle(d,b);if(a!=="auto"&&!this.patterns.offsetUnit.test(a))return parseFloat(a);var e=this.patterns.offsetAttribute.exec(b)||[],g=!!e[3],h=!!e[2];"style"in d?a=h||c.Dom.getStyle(d,"position")=="absolute"&&g?d["offset"+e[0].charAt(0).toUpperCase()+e[0].substr(1)]:0:b in d&&(a=d[b]);return a},getDefaultUnit:function(b){return this.patterns.defaultUnit.test(b)?
204
- "px":""},setRuntimeAttribute:function(b){var c,a,e=this.attributes;this.runtimeAttributes[b]={};var g=function(a){return typeof a!=="undefined"};if(!g(e[b].to)&&!g(e[b].by))return false;c=g(e[b].from)?e[b].from:this.getAttribute(b);if(g(e[b].to))a=e[b].to;else if(g(e[b].by))if(c.constructor==Array){a=[];for(var h=0,i=c.length;h<i;++h)a[h]=c[h]+e[b].by[h]*1}else a=c+e[b].by*1;this.runtimeAttributes[b].start=c;this.runtimeAttributes[b].end=a;this.runtimeAttributes[b].unit=g(e[b].unit)?e[b].unit:this.getDefaultUnit(b);
205
- return true},init:function(b,d,a,e){var g=false,h=null,i=0,b=c.Dom.get(b);this.attributes=d||{};this.duration=!YAHOO.lang.isUndefined(a)?a:1;this.method=e||c.Easing.easeNone;this.useSeconds=true;this.currentFrame=0;this.totalFrames=c.AnimMgr.fps;this.setEl=function(a){b=c.Dom.get(a)};this.getEl=function(){return b};this.isAnimated=function(){return g};this.getStartTime=function(){return h};this.runtimeAttributes={};this.animate=function(){if(this.isAnimated())return false;this.currentFrame=0;this.totalFrames=
206
- this.useSeconds?Math.ceil(c.AnimMgr.fps*this.duration):this.duration;if(this.duration===0&&this.useSeconds)this.totalFrames=1;c.AnimMgr.registerElement(this);return true};this.stop=function(a){if(!this.isAnimated())return false;if(a){this.currentFrame=this.totalFrames;this._onTween.fire()}c.AnimMgr.stop(this)};this._onStart=new c.CustomEvent("_start",this,true);this.onStart=new c.CustomEvent("start",this);this.onTween=new c.CustomEvent("tween",this);this._onTween=new c.CustomEvent("_tween",this,true);
207
- this.onComplete=new c.CustomEvent("complete",this);this._onComplete=new c.CustomEvent("_complete",this,true);this._onStart.subscribe(function(){this.onStart.fire();this.runtimeAttributes={};for(var a in this.attributes)this.setRuntimeAttribute(a);g=true;i=0;h=new Date});this._onTween.subscribe(function(){var a={duration:new Date-this.getStartTime(),currentFrame:this.currentFrame,toString:function(){return"duration: "+a.duration+", currentFrame: "+a.currentFrame}};this.onTween.fire(a);var b=this.runtimeAttributes,
208
- c;for(c in b)this.setAttribute(c,this.doMethod(c,b[c].start,b[c].end),b[c].unit);i=i+1});this._onComplete.subscribe(function(){var a=(new Date-h)/1E3,b={duration:a,frames:i,fps:i/a,toString:function(){return"duration: "+b.duration+", frames: "+b.frames+", fps: "+b.fps}};g=false;i=0;this.onComplete.fire(b)})}};c.Anim=e})();
209
- YAHOO.util.AnimMgr=new function(){var c=null,e=[],b=0;this.fps=1E3;this.delay=1;this.registerElement=function(c){e[e.length]=c;b=b+1;c._onStart.fire();this.start()};this.unRegister=function(c,a){var f;if(!(f=a))a:{f=0;for(var g=e.length;f<g;++f)if(e[f]==c)break a;f=-1}a=f;if(!c.isAnimated()||a==-1)return false;c._onComplete.fire();e.splice(a,1);b=b-1;b<=0&&this.stop();return true};this.start=function(){c===null&&(c=setInterval(this.run,this.delay))};this.stop=function(d){if(d)this.unRegister(d);else{clearInterval(c);
210
- for(var d=0,a=e.length;d<a;++d)this.unRegister(e[0],0);e=[];c=null;b=0}};this.run=function(){for(var b=0,a=e.length;b<a;++b){var c=e[b];if(c&&c.isAnimated())if(c.currentFrame<c.totalFrames||c.totalFrames===null){c.currentFrame=c.currentFrame+1;if(c.useSeconds){var g=c,h=g.totalFrames,i=g.currentFrame,j=g.currentFrame*g.duration*1E3/g.totalFrames,k=new Date-g.getStartTime(),l=0,l=k<g.duration*1E3?Math.round((k/j-1)*g.currentFrame):h-(i+1);if(l>0&&isFinite(l)){g.currentFrame+l>=h&&(l=h-(i+1));g.currentFrame=
211
- g.currentFrame+l}}c._onTween.fire()}else YAHOO.util.AnimMgr.stop(c,b)}}};YAHOO.util.Bezier=new function(){this.getPosition=function(c,e){for(var b=c.length,d=[],a=0;a<b;++a)d[a]=[c[a][0],c[a][1]];for(var f=1;f<b;++f)for(a=0;a<b-f;++a){d[a][0]=(1-e)*d[a][0]+e*d[parseInt(a+1,10)][0];d[a][1]=(1-e)*d[a][1]+e*d[parseInt(a+1,10)][1]}return[d[0][0],d[0][1]]}};
212
- (function(){var c=function(a,b,d,e){c.superclass.constructor.call(this,a,b,d,e)};c.NAME="ColorAnim";c.DEFAULT_BGCOLOR="#fff";var e=YAHOO.util;YAHOO.extend(c,e.Anim);var b=c.superclass,d=c.prototype;d.patterns.color=/color$/i;d.patterns.rgb=/^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;d.patterns.hex=/^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;d.patterns.hex3=/^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;d.patterns.transparent=/^transparent|rgba\(0, 0, 0, 0\)$/;d.parseColor=function(a){if(a.length==
213
- 3)return a;var b=this.patterns.hex.exec(a);if(b&&b.length==4)return[parseInt(b[1],16),parseInt(b[2],16),parseInt(b[3],16)];if((b=this.patterns.rgb.exec(a))&&b.length==4)return[parseInt(b[1],10),parseInt(b[2],10),parseInt(b[3],10)];return(b=this.patterns.hex3.exec(a))&&b.length==4?[parseInt(b[1]+b[1],16),parseInt(b[2]+b[2],16),parseInt(b[3]+b[3],16)]:null};d.getAttribute=function(a){var d=this.getEl();if(this.patterns.color.test(a)){var g=YAHOO.util.Dom.getStyle(d,a),h=this;if(this.patterns.transparent.test(g))g=
214
- (d=YAHOO.util.Dom.getAncestorBy(d,function(){return!h.patterns.transparent.test(g)}))?e.Dom.getStyle(d,a):c.DEFAULT_BGCOLOR}else g=b.getAttribute.call(this,a);return g};d.doMethod=function(a,c,d){var e;if(this.patterns.color.test(a)){e=[];for(var i=0,j=c.length;i<j;++i)e[i]=b.doMethod.call(this,a,c[i],d[i]);e="rgb("+Math.floor(e[0])+","+Math.floor(e[1])+","+Math.floor(e[2])+")"}else e=b.doMethod.call(this,a,c,d);return e};d.setRuntimeAttribute=function(a){b.setRuntimeAttribute.call(this,a);if(this.patterns.color.test(a)){var c=
215
- this.attributes,d=this.parseColor(this.runtimeAttributes[a].start),e=this.parseColor(this.runtimeAttributes[a].end);if(typeof c[a].to==="undefined"&&typeof c[a].by!=="undefined")for(var e=this.parseColor(c[a].by),c=0,i=d.length;c<i;++c)e[c]=d[c]+e[c];this.runtimeAttributes[a].start=d;this.runtimeAttributes[a].end=e}};e.ColorAnim=c})();
216
- YAHOO.util.Easing={easeNone:function(c,e,b,d){return b*c/d+e},easeIn:function(c,e,b,d){return b*(c=c/d)*c+e},easeOut:function(c,e,b,d){return-b*(c=c/d)*(c-2)+e},easeBoth:function(c,e,b,d){return(c=c/(d/2))<1?b/2*c*c+e:-b/2*(--c*(c-2)-1)+e},easeInStrong:function(c,e,b,d){return b*(c=c/d)*c*c*c+e},easeOutStrong:function(c,e,b,d){return-b*((c=c/d-1)*c*c*c-1)+e},easeBothStrong:function(c,e,b,d){return(c=c/(d/2))<1?b/2*c*c*c*c+e:-b/2*((c=c-2)*c*c*c-2)+e},elasticIn:function(c,e,b,d,a,f){if(c==0)return e;
217
- if((c=c/d)==1)return e+b;f||(f=d*0.3);if(!a||a<Math.abs(b)){a=b;b=f/4}else b=f/(2*Math.PI)*Math.asin(b/a);return-(a*Math.pow(2,10*(c=c-1))*Math.sin((c*d-b)*2*Math.PI/f))+e},elasticOut:function(c,e,b,d,a,f){if(c==0)return e;if((c=c/d)==1)return e+b;f||(f=d*0.3);if(!a||a<Math.abs(b))var a=b,g=f/4;else g=f/(2*Math.PI)*Math.asin(b/a);return a*Math.pow(2,-10*c)*Math.sin((c*d-g)*2*Math.PI/f)+b+e},elasticBoth:function(c,e,b,d,a,f){if(c==0)return e;if((c=c/(d/2))==2)return e+b;f||(f=d*0.3*1.5);if(!a||a<Math.abs(b))var a=
218
- b,g=f/4;else g=f/(2*Math.PI)*Math.asin(b/a);return c<1?-0.5*a*Math.pow(2,10*(c=c-1))*Math.sin((c*d-g)*2*Math.PI/f)+e:a*Math.pow(2,-10*(c=c-1))*Math.sin((c*d-g)*2*Math.PI/f)*0.5+b+e},backIn:function(c,e,b,d,a){typeof a=="undefined"&&(a=1.70158);return b*(c=c/d)*c*((a+1)*c-a)+e},backOut:function(c,e,b,d,a){typeof a=="undefined"&&(a=1.70158);return b*((c=c/d-1)*c*((a+1)*c+a)+1)+e},backBoth:function(c,e,b,d,a){typeof a=="undefined"&&(a=1.70158);return(c=c/(d/2))<1?b/2*c*c*(((a=a*1.525)+1)*c-a)+e:b/2*
219
- ((c=c-2)*c*(((a=a*1.525)+1)*c+a)+2)+e},bounceIn:function(c,e,b,d){return b-YAHOO.util.Easing.bounceOut(d-c,0,b,d)+e},bounceOut:function(c,e,b,d){return(c=c/d)<1/2.75?b*7.5625*c*c+e:c<2/2.75?b*(7.5625*(c=c-1.5/2.75)*c+0.75)+e:c<2.5/2.75?b*(7.5625*(c=c-2.25/2.75)*c+0.9375)+e:b*(7.5625*(c=c-2.625/2.75)*c+0.984375)+e},bounceBoth:function(c,e,b,d){return c<d/2?YAHOO.util.Easing.bounceIn(c*2,0,b,d)*0.5+e:YAHOO.util.Easing.bounceOut(c*2-d,0,b,d)*0.5+b*0.5+e}};
220
- (function(){var c=function(a,b,d,e){a&&c.superclass.constructor.call(this,a,b,d,e)};c.NAME="Motion";var e=YAHOO.util;YAHOO.extend(c,e.ColorAnim);var b=c.superclass,d=c.prototype;d.patterns.points=/^points$/i;d.setAttribute=function(a,c,d){if(this.patterns.points.test(a)){d=d||"px";b.setAttribute.call(this,"left",c[0],d);b.setAttribute.call(this,"top",c[1],d)}else b.setAttribute.call(this,a,c,d)};d.getAttribute=function(a){return this.patterns.points.test(a)?[b.getAttribute.call(this,"left"),b.getAttribute.call(this,
221
- "top")]:b.getAttribute.call(this,a)};d.doMethod=function(a,c,d){var f=null;if(this.patterns.points.test(a)){c=this.method(this.currentFrame,0,100,this.totalFrames)/100;f=e.Bezier.getPosition(this.runtimeAttributes[a],c)}else f=b.doMethod.call(this,a,c,d);return f};d.setRuntimeAttribute=function(c){if(this.patterns.points.test(c)){var d=this.getEl(),i=this.attributes,j=i.points.control||[],k,l,m;if(j.length>0&&!(j[0]instanceof Array))j=[j];else{var n=[];l=0;for(m=j.length;l<m;++l)n[l]=j[l];j=n}e.Dom.getStyle(d,
222
- "position")=="static"&&e.Dom.setStyle(d,"position","relative");f(i.points.from)?e.Dom.setXY(d,i.points.from):e.Dom.setXY(d,e.Dom.getXY(d));d=this.getAttribute("points");if(f(i.points.to)){k=a.call(this,i.points.to,d);e.Dom.getXY(this.getEl());l=0;for(m=j.length;l<m;++l)j[l]=a.call(this,j[l],d)}else if(f(i.points.by)){k=[d[0]+i.points.by[0],d[1]+i.points.by[1]];l=0;for(m=j.length;l<m;++l)j[l]=[d[0]+j[l][0],d[1]+j[l][1]]}this.runtimeAttributes[c]=[d];j.length>0&&(this.runtimeAttributes[c]=this.runtimeAttributes[c].concat(j));
223
- this.runtimeAttributes[c][this.runtimeAttributes[c].length]=k}else b.setRuntimeAttribute.call(this,c)};var a=function(a,b){var c=e.Dom.getXY(this.getEl());return a=[a[0]-c[0]+b[0],a[1]-c[1]+b[1]]},f=function(a){return typeof a!=="undefined"};e.Motion=c})();
224
- (function(){var c=function(a,b,d,e){a&&c.superclass.constructor.call(this,a,b,d,e)};c.NAME="Scroll";var e=YAHOO.util;YAHOO.extend(c,e.ColorAnim);var b=c.superclass,d=c.prototype;d.doMethod=function(a,c,d){var e=null;return e=a=="scroll"?[this.method(this.currentFrame,c[0],d[0]-c[0],this.totalFrames),this.method(this.currentFrame,c[1],d[1]-c[1],this.totalFrames)]:b.doMethod.call(this,a,c,d)};d.getAttribute=function(a){var c=null,c=this.getEl();return c=a=="scroll"?[c.scrollLeft,c.scrollTop]:b.getAttribute.call(this,
225
- a)};d.setAttribute=function(a,c,d){var e=this.getEl();if(a=="scroll"){e.scrollLeft=c[0];e.scrollTop=c[1]}else b.setAttribute.call(this,a,c,d)};e.Scroll=c})();YAHOO.register("animation",YAHOO.util.Anim,{version:"2.7.0",build:"1799"});