locomotive_cms 0.0.2.5 → 0.0.2.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (304) hide show
  1. data/app/controllers/admin/asset_collections_controller.rb +1 -1
  2. data/app/controllers/admin/contents_controller.rb +1 -1
  3. data/app/controllers/admin/current_sites_controller.rb +2 -3
  4. data/app/controllers/admin/custom_fields_controller.rb +11 -5
  5. data/app/controllers/admin/layouts_controller.rb +2 -1
  6. data/app/controllers/admin/sites_controller.rb +0 -11
  7. data/app/controllers/admin/snippets_controller.rb +1 -1
  8. data/app/controllers/application_controller.rb +1 -1
  9. data/app/helpers/admin/custom_fields_helper.rb +14 -2
  10. data/app/helpers/admin/pages_helper.rb +10 -0
  11. data/app/models/asset_collection.rb +1 -1
  12. data/app/models/content_instance.rb +8 -0
  13. data/app/models/content_type.rb +25 -0
  14. data/app/models/page.rb +6 -2
  15. data/app/models/site.rb +3 -1
  16. data/app/views/admin/asset_collections/edit.html.haml +1 -1
  17. data/app/views/admin/assets/_form.html.haml +5 -6
  18. data/app/views/admin/content_types/_form.html.haml +6 -2
  19. data/app/views/admin/content_types/edit.html.haml +2 -2
  20. data/app/views/admin/contents/_form.html.haml +2 -17
  21. data/app/views/admin/contents/_list.html.haml +16 -0
  22. data/app/views/admin/contents/index.html.haml +6 -14
  23. data/app/views/admin/current_sites/_form.html.haml +6 -1
  24. data/app/views/admin/custom_fields/_custom_form.html.haml +18 -0
  25. data/app/views/admin/custom_fields/_edit_field.html.haml +3 -2
  26. data/app/views/admin/custom_fields/_index.html.haml +10 -6
  27. data/app/views/admin/custom_fields/edit_category.html.haml +1 -1
  28. data/app/views/admin/layouts/_form.html.haml +1 -1
  29. data/app/views/admin/pages/_form.html.haml +1 -4
  30. data/app/views/admin/shared/menu/_contents.html.haml +1 -1
  31. data/app/views/admin/sites/_form.html.haml +1 -1
  32. data/config/locales/admin_ui_en.yml +27 -5
  33. data/config/routes.rb +4 -4
  34. data/lib/locomotive.rb +2 -3
  35. data/lib/locomotive/liquid/drops/base.rb +2 -0
  36. data/lib/locomotive/liquid/drops/content.rb +1 -3
  37. data/lib/locomotive/liquid/drops/contents.rb +6 -1
  38. data/lib/locomotive/liquid/drops/page.rb +19 -0
  39. data/lib/locomotive/patches.rb +1 -2
  40. data/lib/locomotive/render.rb +9 -7
  41. data/lib/locomotive/routing/default_constraint.rb +3 -9
  42. data/lib/locomotive/routing/site_dispatcher.rb +8 -14
  43. data/public/javascripts/admin/application.js +13 -2
  44. data/public/javascripts/admin/asset_collections.js +1 -0
  45. data/public/javascripts/admin/assets.js +5 -0
  46. data/public/javascripts/admin/contents.js +7 -15
  47. data/public/javascripts/admin/custom_fields.js +18 -4
  48. data/public/javascripts/admin/custom_fields/category.js +13 -0
  49. data/public/javascripts/admin/plugins/tiny_mce/langs/en.js +170 -0
  50. data/public/javascripts/admin/plugins/tiny_mce/license.txt +504 -0
  51. data/public/javascripts/admin/plugins/tiny_mce/plugins/advhr/css/advhr.css +5 -0
  52. data/public/javascripts/admin/plugins/tiny_mce/plugins/advhr/editor_plugin.js +1 -0
  53. data/public/javascripts/admin/plugins/tiny_mce/plugins/advhr/editor_plugin_src.js +57 -0
  54. data/public/javascripts/admin/plugins/tiny_mce/plugins/advhr/js/rule.js +43 -0
  55. data/public/javascripts/admin/plugins/tiny_mce/plugins/advhr/langs/en_dlg.js +5 -0
  56. data/public/javascripts/admin/plugins/tiny_mce/plugins/advhr/rule.htm +57 -0
  57. data/public/javascripts/admin/plugins/tiny_mce/plugins/advimage/css/advimage.css +13 -0
  58. data/public/javascripts/admin/plugins/tiny_mce/plugins/advimage/editor_plugin.js +1 -0
  59. data/public/javascripts/admin/plugins/tiny_mce/plugins/advimage/editor_plugin_src.js +50 -0
  60. data/public/javascripts/admin/plugins/tiny_mce/plugins/advimage/image.htm +232 -0
  61. data/public/javascripts/admin/plugins/tiny_mce/plugins/advimage/img/sample.gif +0 -0
  62. data/public/javascripts/admin/plugins/tiny_mce/plugins/advimage/js/image.js +443 -0
  63. data/public/javascripts/admin/plugins/tiny_mce/plugins/advimage/langs/en_dlg.js +43 -0
  64. data/public/javascripts/admin/plugins/tiny_mce/plugins/advlink/css/advlink.css +8 -0
  65. data/public/javascripts/admin/plugins/tiny_mce/plugins/advlink/editor_plugin.js +1 -0
  66. data/public/javascripts/admin/plugins/tiny_mce/plugins/advlink/editor_plugin_src.js +61 -0
  67. data/public/javascripts/admin/plugins/tiny_mce/plugins/advlink/js/advlink.js +528 -0
  68. data/public/javascripts/admin/plugins/tiny_mce/plugins/advlink/langs/en_dlg.js +52 -0
  69. data/public/javascripts/admin/plugins/tiny_mce/plugins/advlink/link.htm +333 -0
  70. data/public/javascripts/admin/plugins/tiny_mce/plugins/advlist/editor_plugin.js +1 -0
  71. data/public/javascripts/admin/plugins/tiny_mce/plugins/advlist/editor_plugin_src.js +154 -0
  72. data/public/javascripts/admin/plugins/tiny_mce/plugins/autoresize/editor_plugin.js +1 -0
  73. data/public/javascripts/admin/plugins/tiny_mce/plugins/autoresize/editor_plugin_src.js +119 -0
  74. data/public/javascripts/admin/plugins/tiny_mce/plugins/autosave/editor_plugin.js +1 -0
  75. data/public/javascripts/admin/plugins/tiny_mce/plugins/autosave/editor_plugin_src.js +422 -0
  76. data/public/javascripts/admin/plugins/tiny_mce/plugins/autosave/langs/en.js +4 -0
  77. data/public/javascripts/admin/plugins/tiny_mce/plugins/bbcode/editor_plugin.js +1 -0
  78. data/public/javascripts/admin/plugins/tiny_mce/plugins/bbcode/editor_plugin_src.js +120 -0
  79. data/public/javascripts/admin/plugins/tiny_mce/plugins/contextmenu/editor_plugin.js +1 -0
  80. data/public/javascripts/admin/plugins/tiny_mce/plugins/contextmenu/editor_plugin_src.js +147 -0
  81. data/public/javascripts/admin/plugins/tiny_mce/plugins/directionality/editor_plugin.js +1 -0
  82. data/public/javascripts/admin/plugins/tiny_mce/plugins/directionality/editor_plugin_src.js +82 -0
  83. data/public/javascripts/admin/plugins/tiny_mce/plugins/emotions/editor_plugin.js +1 -0
  84. data/public/javascripts/admin/plugins/tiny_mce/plugins/emotions/editor_plugin_src.js +43 -0
  85. data/public/javascripts/admin/plugins/tiny_mce/plugins/emotions/emotions.htm +40 -0
  86. data/public/javascripts/admin/plugins/tiny_mce/plugins/emotions/img/smiley-cool.gif +0 -0
  87. data/public/javascripts/admin/plugins/tiny_mce/plugins/emotions/img/smiley-cry.gif +0 -0
  88. data/public/javascripts/admin/plugins/tiny_mce/plugins/emotions/img/smiley-embarassed.gif +0 -0
  89. data/public/javascripts/admin/plugins/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif +0 -0
  90. data/public/javascripts/admin/plugins/tiny_mce/plugins/emotions/img/smiley-frown.gif +0 -0
  91. data/public/javascripts/admin/plugins/tiny_mce/plugins/emotions/img/smiley-innocent.gif +0 -0
  92. data/public/javascripts/admin/plugins/tiny_mce/plugins/emotions/img/smiley-kiss.gif +0 -0
  93. data/public/javascripts/admin/plugins/tiny_mce/plugins/emotions/img/smiley-laughing.gif +0 -0
  94. data/public/javascripts/admin/plugins/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif +0 -0
  95. data/public/javascripts/admin/plugins/tiny_mce/plugins/emotions/img/smiley-sealed.gif +0 -0
  96. data/public/javascripts/admin/plugins/tiny_mce/plugins/emotions/img/smiley-smile.gif +0 -0
  97. data/public/javascripts/admin/plugins/tiny_mce/plugins/emotions/img/smiley-surprised.gif +0 -0
  98. data/public/javascripts/admin/plugins/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif +0 -0
  99. data/public/javascripts/admin/plugins/tiny_mce/plugins/emotions/img/smiley-undecided.gif +0 -0
  100. data/public/javascripts/admin/plugins/tiny_mce/plugins/emotions/img/smiley-wink.gif +0 -0
  101. data/public/javascripts/admin/plugins/tiny_mce/plugins/emotions/img/smiley-yell.gif +0 -0
  102. data/public/javascripts/admin/plugins/tiny_mce/plugins/emotions/js/emotions.js +22 -0
  103. data/public/javascripts/admin/plugins/tiny_mce/plugins/emotions/langs/en_dlg.js +20 -0
  104. data/public/javascripts/admin/plugins/tiny_mce/plugins/example/dialog.htm +22 -0
  105. data/public/javascripts/admin/plugins/tiny_mce/plugins/example/editor_plugin.js +1 -0
  106. data/public/javascripts/admin/plugins/tiny_mce/plugins/example/editor_plugin_src.js +84 -0
  107. data/public/javascripts/admin/plugins/tiny_mce/plugins/example/img/example.gif +0 -0
  108. data/public/javascripts/admin/plugins/tiny_mce/plugins/example/js/dialog.js +19 -0
  109. data/public/javascripts/admin/plugins/tiny_mce/plugins/example/langs/en.js +3 -0
  110. data/public/javascripts/admin/plugins/tiny_mce/plugins/example/langs/en_dlg.js +3 -0
  111. data/public/javascripts/admin/plugins/tiny_mce/plugins/fullpage/css/fullpage.css +182 -0
  112. data/public/javascripts/admin/plugins/tiny_mce/plugins/fullpage/editor_plugin.js +1 -0
  113. data/public/javascripts/admin/plugins/tiny_mce/plugins/fullpage/editor_plugin_src.js +153 -0
  114. data/public/javascripts/admin/plugins/tiny_mce/plugins/fullpage/fullpage.htm +571 -0
  115. data/public/javascripts/admin/plugins/tiny_mce/plugins/fullpage/js/fullpage.js +471 -0
  116. data/public/javascripts/admin/plugins/tiny_mce/plugins/fullpage/langs/en_dlg.js +85 -0
  117. data/public/javascripts/admin/plugins/tiny_mce/plugins/fullscreen/editor_plugin.js +1 -0
  118. data/public/javascripts/admin/plugins/tiny_mce/plugins/fullscreen/editor_plugin_src.js +151 -0
  119. data/public/javascripts/admin/plugins/tiny_mce/plugins/fullscreen/fullscreen.htm +109 -0
  120. data/public/javascripts/admin/plugins/tiny_mce/plugins/iespell/editor_plugin.js +1 -0
  121. data/public/javascripts/admin/plugins/tiny_mce/plugins/iespell/editor_plugin_src.js +54 -0
  122. data/public/javascripts/admin/plugins/tiny_mce/plugins/inlinepopups/editor_plugin.js +1 -0
  123. data/public/javascripts/admin/plugins/tiny_mce/plugins/inlinepopups/editor_plugin_src.js +635 -0
  124. data/public/javascripts/admin/plugins/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif +0 -0
  125. data/public/javascripts/admin/plugins/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif +0 -0
  126. data/public/javascripts/admin/plugins/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif +0 -0
  127. data/public/javascripts/admin/plugins/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif +0 -0
  128. data/public/javascripts/admin/plugins/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif +0 -0
  129. data/public/javascripts/admin/plugins/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif +0 -0
  130. data/public/javascripts/admin/plugins/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif +0 -0
  131. data/public/javascripts/admin/plugins/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css +90 -0
  132. data/public/javascripts/admin/plugins/tiny_mce/plugins/inlinepopups/template.htm +387 -0
  133. data/public/javascripts/admin/plugins/tiny_mce/plugins/insertdatetime/editor_plugin.js +1 -0
  134. data/public/javascripts/admin/plugins/tiny_mce/plugins/insertdatetime/editor_plugin_src.js +83 -0
  135. data/public/javascripts/admin/plugins/tiny_mce/plugins/layer/editor_plugin.js +1 -0
  136. data/public/javascripts/admin/plugins/tiny_mce/plugins/layer/editor_plugin_src.js +212 -0
  137. data/public/javascripts/admin/plugins/tiny_mce/plugins/legacyoutput/editor_plugin.js +1 -0
  138. data/public/javascripts/admin/plugins/tiny_mce/plugins/legacyoutput/editor_plugin_src.js +136 -0
  139. data/public/javascripts/admin/plugins/tiny_mce/plugins/media/css/content.css +6 -0
  140. data/public/javascripts/admin/plugins/tiny_mce/plugins/media/css/media.css +16 -0
  141. data/public/javascripts/admin/plugins/tiny_mce/plugins/media/editor_plugin.js +1 -0
  142. data/public/javascripts/admin/plugins/tiny_mce/plugins/media/editor_plugin_src.js +414 -0
  143. data/public/javascripts/admin/plugins/tiny_mce/plugins/media/img/flash.gif +0 -0
  144. data/public/javascripts/admin/plugins/tiny_mce/plugins/media/img/flv_player.swf +0 -0
  145. data/public/javascripts/admin/plugins/tiny_mce/plugins/media/img/quicktime.gif +0 -0
  146. data/public/javascripts/admin/plugins/tiny_mce/plugins/media/img/realmedia.gif +0 -0
  147. data/public/javascripts/admin/plugins/tiny_mce/plugins/media/img/shockwave.gif +0 -0
  148. data/public/javascripts/admin/plugins/tiny_mce/plugins/media/img/trans.gif +0 -0
  149. data/public/javascripts/admin/plugins/tiny_mce/plugins/media/img/windowsmedia.gif +0 -0
  150. data/public/javascripts/admin/plugins/tiny_mce/plugins/media/js/embed.js +73 -0
  151. data/public/javascripts/admin/plugins/tiny_mce/plugins/media/js/media.js +630 -0
  152. data/public/javascripts/admin/plugins/tiny_mce/plugins/media/langs/en_dlg.js +103 -0
  153. data/public/javascripts/admin/plugins/tiny_mce/plugins/media/media.htm +817 -0
  154. data/public/javascripts/admin/plugins/tiny_mce/plugins/nonbreaking/editor_plugin.js +1 -0
  155. data/public/javascripts/admin/plugins/tiny_mce/plugins/nonbreaking/editor_plugin_src.js +53 -0
  156. data/public/javascripts/admin/plugins/tiny_mce/plugins/noneditable/editor_plugin.js +1 -0
  157. data/public/javascripts/admin/plugins/tiny_mce/plugins/noneditable/editor_plugin_src.js +90 -0
  158. data/public/javascripts/admin/plugins/tiny_mce/plugins/pagebreak/css/content.css +1 -0
  159. data/public/javascripts/admin/plugins/tiny_mce/plugins/pagebreak/editor_plugin.js +1 -0
  160. data/public/javascripts/admin/plugins/tiny_mce/plugins/pagebreak/editor_plugin_src.js +77 -0
  161. data/public/javascripts/admin/plugins/tiny_mce/plugins/pagebreak/img/pagebreak.gif +0 -0
  162. data/public/javascripts/admin/plugins/tiny_mce/plugins/pagebreak/img/trans.gif +0 -0
  163. data/public/javascripts/admin/plugins/tiny_mce/plugins/paste/editor_plugin.js +1 -0
  164. data/public/javascripts/admin/plugins/tiny_mce/plugins/paste/editor_plugin_src.js +940 -0
  165. data/public/javascripts/admin/plugins/tiny_mce/plugins/paste/js/pastetext.js +36 -0
  166. data/public/javascripts/admin/plugins/tiny_mce/plugins/paste/js/pasteword.js +51 -0
  167. data/public/javascripts/admin/plugins/tiny_mce/plugins/paste/langs/en_dlg.js +5 -0
  168. data/public/javascripts/admin/plugins/tiny_mce/plugins/paste/pastetext.htm +27 -0
  169. data/public/javascripts/admin/plugins/tiny_mce/plugins/paste/pasteword.htm +21 -0
  170. data/public/javascripts/admin/plugins/tiny_mce/plugins/preview/editor_plugin.js +1 -0
  171. data/public/javascripts/admin/plugins/tiny_mce/plugins/preview/editor_plugin_src.js +53 -0
  172. data/public/javascripts/admin/plugins/tiny_mce/plugins/preview/example.html +28 -0
  173. data/public/javascripts/admin/plugins/tiny_mce/plugins/preview/jscripts/embed.js +73 -0
  174. data/public/javascripts/admin/plugins/tiny_mce/plugins/preview/preview.html +17 -0
  175. data/public/javascripts/admin/plugins/tiny_mce/plugins/print/editor_plugin.js +1 -0
  176. data/public/javascripts/admin/plugins/tiny_mce/plugins/print/editor_plugin_src.js +34 -0
  177. data/public/javascripts/admin/plugins/tiny_mce/plugins/save/editor_plugin.js +1 -0
  178. data/public/javascripts/admin/plugins/tiny_mce/plugins/save/editor_plugin_src.js +101 -0
  179. data/public/javascripts/admin/plugins/tiny_mce/plugins/searchreplace/css/searchreplace.css +6 -0
  180. data/public/javascripts/admin/plugins/tiny_mce/plugins/searchreplace/editor_plugin.js +1 -0
  181. data/public/javascripts/admin/plugins/tiny_mce/plugins/searchreplace/editor_plugin_src.js +57 -0
  182. data/public/javascripts/admin/plugins/tiny_mce/plugins/searchreplace/js/searchreplace.js +130 -0
  183. data/public/javascripts/admin/plugins/tiny_mce/plugins/searchreplace/langs/en_dlg.js +16 -0
  184. data/public/javascripts/admin/plugins/tiny_mce/plugins/searchreplace/searchreplace.htm +99 -0
  185. data/public/javascripts/admin/plugins/tiny_mce/plugins/spellchecker/css/content.css +1 -0
  186. data/public/javascripts/admin/plugins/tiny_mce/plugins/spellchecker/editor_plugin.js +1 -0
  187. data/public/javascripts/admin/plugins/tiny_mce/plugins/spellchecker/editor_plugin_src.js +417 -0
  188. data/public/javascripts/admin/plugins/tiny_mce/plugins/spellchecker/img/wline.gif +0 -0
  189. data/public/javascripts/admin/plugins/tiny_mce/plugins/style/css/props.css +13 -0
  190. data/public/javascripts/admin/plugins/tiny_mce/plugins/style/editor_plugin.js +1 -0
  191. data/public/javascripts/admin/plugins/tiny_mce/plugins/style/editor_plugin_src.js +55 -0
  192. data/public/javascripts/admin/plugins/tiny_mce/plugins/style/js/props.js +641 -0
  193. data/public/javascripts/admin/plugins/tiny_mce/plugins/style/langs/en_dlg.js +63 -0
  194. data/public/javascripts/admin/plugins/tiny_mce/plugins/style/props.htm +723 -0
  195. data/public/javascripts/admin/plugins/tiny_mce/plugins/tabfocus/editor_plugin.js +1 -0
  196. data/public/javascripts/admin/plugins/tiny_mce/plugins/tabfocus/editor_plugin_src.js +112 -0
  197. data/public/javascripts/admin/plugins/tiny_mce/plugins/table/cell.htm +178 -0
  198. data/public/javascripts/admin/plugins/tiny_mce/plugins/table/css/cell.css +17 -0
  199. data/public/javascripts/admin/plugins/tiny_mce/plugins/table/css/row.css +25 -0
  200. data/public/javascripts/admin/plugins/tiny_mce/plugins/table/css/table.css +13 -0
  201. data/public/javascripts/admin/plugins/tiny_mce/plugins/table/editor_plugin.js +1 -0
  202. data/public/javascripts/admin/plugins/tiny_mce/plugins/table/editor_plugin_src.js +1125 -0
  203. data/public/javascripts/admin/plugins/tiny_mce/plugins/table/js/cell.js +286 -0
  204. data/public/javascripts/admin/plugins/tiny_mce/plugins/table/js/merge_cells.js +27 -0
  205. data/public/javascripts/admin/plugins/tiny_mce/plugins/table/js/row.js +237 -0
  206. data/public/javascripts/admin/plugins/tiny_mce/plugins/table/js/table.js +449 -0
  207. data/public/javascripts/admin/plugins/tiny_mce/plugins/table/langs/en_dlg.js +74 -0
  208. data/public/javascripts/admin/plugins/tiny_mce/plugins/table/merge_cells.htm +32 -0
  209. data/public/javascripts/admin/plugins/tiny_mce/plugins/table/row.htm +155 -0
  210. data/public/javascripts/admin/plugins/tiny_mce/plugins/table/table.htm +187 -0
  211. data/public/javascripts/admin/plugins/tiny_mce/plugins/template/blank.htm +12 -0
  212. data/public/javascripts/admin/plugins/tiny_mce/plugins/template/css/template.css +23 -0
  213. data/public/javascripts/admin/plugins/tiny_mce/plugins/template/editor_plugin.js +1 -0
  214. data/public/javascripts/admin/plugins/tiny_mce/plugins/template/editor_plugin_src.js +159 -0
  215. data/public/javascripts/admin/plugins/tiny_mce/plugins/template/js/template.js +106 -0
  216. data/public/javascripts/admin/plugins/tiny_mce/plugins/template/langs/en_dlg.js +15 -0
  217. data/public/javascripts/admin/plugins/tiny_mce/plugins/template/template.htm +31 -0
  218. data/public/javascripts/admin/plugins/tiny_mce/plugins/visualchars/editor_plugin.js +1 -0
  219. data/public/javascripts/admin/plugins/tiny_mce/plugins/visualchars/editor_plugin_src.js +76 -0
  220. data/public/javascripts/admin/plugins/tiny_mce/plugins/wordcount/editor_plugin.js +1 -0
  221. data/public/javascripts/admin/plugins/tiny_mce/plugins/wordcount/editor_plugin_src.js +98 -0
  222. data/public/javascripts/admin/plugins/tiny_mce/plugins/xhtmlxtras/abbr.htm +141 -0
  223. data/public/javascripts/admin/plugins/tiny_mce/plugins/xhtmlxtras/acronym.htm +141 -0
  224. data/public/javascripts/admin/plugins/tiny_mce/plugins/xhtmlxtras/attributes.htm +148 -0
  225. data/public/javascripts/admin/plugins/tiny_mce/plugins/xhtmlxtras/cite.htm +141 -0
  226. data/public/javascripts/admin/plugins/tiny_mce/plugins/xhtmlxtras/css/attributes.css +11 -0
  227. data/public/javascripts/admin/plugins/tiny_mce/plugins/xhtmlxtras/css/popup.css +9 -0
  228. data/public/javascripts/admin/plugins/tiny_mce/plugins/xhtmlxtras/del.htm +161 -0
  229. data/public/javascripts/admin/plugins/tiny_mce/plugins/xhtmlxtras/editor_plugin.js +1 -0
  230. data/public/javascripts/admin/plugins/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js +144 -0
  231. data/public/javascripts/admin/plugins/tiny_mce/plugins/xhtmlxtras/ins.htm +161 -0
  232. data/public/javascripts/admin/plugins/tiny_mce/plugins/xhtmlxtras/js/abbr.js +28 -0
  233. data/public/javascripts/admin/plugins/tiny_mce/plugins/xhtmlxtras/js/acronym.js +28 -0
  234. data/public/javascripts/admin/plugins/tiny_mce/plugins/xhtmlxtras/js/attributes.js +126 -0
  235. data/public/javascripts/admin/plugins/tiny_mce/plugins/xhtmlxtras/js/cite.js +28 -0
  236. data/public/javascripts/admin/plugins/tiny_mce/plugins/xhtmlxtras/js/del.js +63 -0
  237. data/public/javascripts/admin/plugins/tiny_mce/plugins/xhtmlxtras/js/element_common.js +231 -0
  238. data/public/javascripts/admin/plugins/tiny_mce/plugins/xhtmlxtras/js/ins.js +62 -0
  239. data/public/javascripts/admin/plugins/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js +32 -0
  240. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/about.htm +54 -0
  241. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/anchor.htm +26 -0
  242. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/charmap.htm +52 -0
  243. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/color_picker.htm +73 -0
  244. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/editor_template.js +1 -0
  245. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/editor_template_src.js +1194 -0
  246. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/image.htm +80 -0
  247. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/img/colorpicker.jpg +0 -0
  248. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/img/icons.gif +0 -0
  249. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/js/about.js +72 -0
  250. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/js/anchor.js +37 -0
  251. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/js/charmap.js +335 -0
  252. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/js/color_picker.js +253 -0
  253. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/js/image.js +245 -0
  254. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/js/link.js +156 -0
  255. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/js/source_editor.js +62 -0
  256. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/langs/en.js +62 -0
  257. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/langs/en_dlg.js +51 -0
  258. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/link.htm +58 -0
  259. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/skins/locomotive/content.css +35 -0
  260. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/skins/locomotive/dialog.css +117 -0
  261. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/skins/locomotive/img/buttons.png +0 -0
  262. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/skins/locomotive/img/items.gif +0 -0
  263. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/skins/locomotive/img/menu_arrow.gif +0 -0
  264. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/skins/locomotive/img/menu_check.gif +0 -0
  265. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/skins/locomotive/img/progress.gif +0 -0
  266. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/skins/locomotive/img/tabs.gif +0 -0
  267. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/skins/locomotive/ui.css +213 -0
  268. data/public/javascripts/admin/plugins/tiny_mce/themes/advanced/source_editor.htm +25 -0
  269. data/public/javascripts/admin/plugins/tiny_mce/themes/simple/editor_template.js +1 -0
  270. data/public/javascripts/admin/plugins/tiny_mce/themes/simple/editor_template_src.js +85 -0
  271. data/public/javascripts/admin/plugins/tiny_mce/themes/simple/img/icons.gif +0 -0
  272. data/public/javascripts/admin/plugins/tiny_mce/themes/simple/langs/en.js +11 -0
  273. data/public/javascripts/admin/plugins/tiny_mce/themes/simple/skins/default/content.css +25 -0
  274. data/public/javascripts/admin/plugins/tiny_mce/themes/simple/skins/default/ui.css +32 -0
  275. data/public/javascripts/admin/plugins/tiny_mce/themes/simple/skins/o2k7/content.css +17 -0
  276. data/public/javascripts/admin/plugins/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png +0 -0
  277. data/public/javascripts/admin/plugins/tiny_mce/themes/simple/skins/o2k7/ui.css +35 -0
  278. data/public/javascripts/admin/plugins/tiny_mce/tiny_mce.js +1 -0
  279. data/public/javascripts/admin/plugins/tiny_mce/tiny_mce_popup.js +5 -0
  280. data/public/javascripts/admin/plugins/tiny_mce/tiny_mce_src.js +13374 -0
  281. data/public/javascripts/admin/plugins/tiny_mce/tinymce.js +1 -0
  282. data/public/javascripts/admin/plugins/tiny_mce/utils/editable_selects.js +70 -0
  283. data/public/javascripts/admin/plugins/tiny_mce/utils/form_utils.js +200 -0
  284. data/public/javascripts/admin/plugins/tiny_mce/utils/mctabs.js +77 -0
  285. data/public/javascripts/admin/plugins/tiny_mce/utils/validate.js +220 -0
  286. data/public/stylesheets/admin/box.css +8 -0
  287. data/public/stylesheets/admin/formtastic_changes.css +15 -0
  288. data/public/stylesheets/admin/plugins/tiny_mce.css +105 -0
  289. data/spec/lib/locomotive/liquid/drops/contents_spec.rb +33 -0
  290. data/spec/lib/locomotive/liquid/drops/page_spec.rb +48 -0
  291. data/spec/lib/locomotive/render_spec.rb +12 -3
  292. data/vendor/plugins/custom_fields/Gemfile +1 -1
  293. data/vendor/plugins/custom_fields/lib/custom_fields.rb +3 -0
  294. data/vendor/plugins/custom_fields/lib/custom_fields/field.rb +9 -15
  295. data/vendor/plugins/custom_fields/lib/custom_fields/types/boolean.rb +29 -0
  296. data/vendor/plugins/custom_fields/lib/custom_fields/types/category.rb +15 -3
  297. data/vendor/plugins/custom_fields/lib/custom_fields/types/default.rb +21 -2
  298. data/vendor/plugins/custom_fields/lib/custom_fields/types/string.rb +13 -0
  299. data/vendor/plugins/custom_fields/lib/custom_fields/types/text.rb +15 -0
  300. data/vendor/plugins/custom_fields/spec/models/project.rb +2 -0
  301. data/vendor/plugins/custom_fields/spec/unit/types/boolean_spec.rb +81 -0
  302. data/vendor/plugins/custom_fields/spec/unit/types/category_spec.rb +15 -0
  303. metadata +251 -4
  304. data/lib/locomotive/devise/sessions_controller.rb +0 -2
@@ -0,0 +1,62 @@
1
+ /**
2
+ * ins.js
3
+ *
4
+ * Copyright 2009, Moxiecode Systems AB
5
+ * Released under LGPL License.
6
+ *
7
+ * License: http://tinymce.moxiecode.com/license
8
+ * Contributing: http://tinymce.moxiecode.com/contributing
9
+ */
10
+
11
+ function init() {
12
+ SXE.initElementDialog('ins');
13
+ if (SXE.currentAction == "update") {
14
+ setFormValue('datetime', tinyMCEPopup.editor.dom.getAttrib(SXE.updateElement, 'datetime'));
15
+ setFormValue('cite', tinyMCEPopup.editor.dom.getAttrib(SXE.updateElement, 'cite'));
16
+ SXE.showRemoveButton();
17
+ }
18
+ }
19
+
20
+ function setElementAttribs(elm) {
21
+ setAllCommonAttribs(elm);
22
+ setAttrib(elm, 'datetime');
23
+ setAttrib(elm, 'cite');
24
+ }
25
+
26
+ function insertIns() {
27
+ var elm = tinyMCEPopup.editor.dom.getParent(SXE.focusElement, 'INS');
28
+ tinyMCEPopup.execCommand('mceBeginUndoLevel');
29
+ if (elm == null) {
30
+ var s = SXE.inst.selection.getContent();
31
+ if(s.length > 0) {
32
+ insertInlineElement('INS');
33
+ var elementArray = tinymce.grep(SXE.inst.dom.select('ins'), function(n) {return n.id == '#sxe_temp_ins#';});
34
+ for (var i=0; i<elementArray.length; i++) {
35
+ var elm = elementArray[i];
36
+ setElementAttribs(elm);
37
+ }
38
+ }
39
+ } else {
40
+ setElementAttribs(elm);
41
+ }
42
+ tinyMCEPopup.editor.nodeChanged();
43
+ tinyMCEPopup.execCommand('mceEndUndoLevel');
44
+ tinyMCEPopup.close();
45
+ }
46
+
47
+ function removeIns() {
48
+ SXE.removeElement('ins');
49
+ tinyMCEPopup.close();
50
+ }
51
+
52
+ function insertInlineElement(en) {
53
+ var ed = tinyMCEPopup.editor, dom = ed.dom;
54
+
55
+ ed.getDoc().execCommand('FontName', false, 'mceinline');
56
+ tinymce.each(dom.select(tinymce.isWebKit ? 'span' : 'font'), function(n) {
57
+ if (n.style.fontFamily == 'mceinline' || n.face == 'mceinline')
58
+ dom.replace(dom.create(en), n, 1);
59
+ });
60
+ }
61
+
62
+ tinyMCEPopup.onInit.add(init);
@@ -0,0 +1,32 @@
1
+ tinyMCE.addI18n('en.xhtmlxtras_dlg',{
2
+ attribute_label_title:"Title",
3
+ attribute_label_id:"ID",
4
+ attribute_label_class:"Class",
5
+ attribute_label_style:"Style",
6
+ attribute_label_cite:"Cite",
7
+ attribute_label_datetime:"Date/Time",
8
+ attribute_label_langdir:"Text Direction",
9
+ attribute_option_ltr:"Left to right",
10
+ attribute_option_rtl:"Right to left",
11
+ attribute_label_langcode:"Language",
12
+ attribute_label_tabindex:"TabIndex",
13
+ attribute_label_accesskey:"AccessKey",
14
+ attribute_events_tab:"Events",
15
+ attribute_attrib_tab:"Attributes",
16
+ general_tab:"General",
17
+ attrib_tab:"Attributes",
18
+ events_tab:"Events",
19
+ fieldset_general_tab:"General Settings",
20
+ fieldset_attrib_tab:"Element Attributes",
21
+ fieldset_events_tab:"Element Events",
22
+ title_ins_element:"Insertion Element",
23
+ title_del_element:"Deletion Element",
24
+ title_acronym_element:"Acronym Element",
25
+ title_abbr_element:"Abbreviation Element",
26
+ title_cite_element:"Citation Element",
27
+ remove:"Remove",
28
+ insert_date:"Insert current date/time",
29
+ option_ltr:"Left to right",
30
+ option_rtl:"Right to left",
31
+ attribs_title:"Insert/Edit Attributes"
32
+ });
@@ -0,0 +1,54 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml">
3
+ <head>
4
+ <title>{#advanced_dlg.about_title}</title>
5
+ <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
6
+ <script type="text/javascript" src="../../utils/mctabs.js"></script>
7
+ <script type="text/javascript" src="js/about.js"></script>
8
+ </head>
9
+ <body id="about" style="display: none">
10
+ <div class="tabs">
11
+ <ul>
12
+ <li id="general_tab" class="current"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#advanced_dlg.about_general}</a></span></li>
13
+ <li id="help_tab" style="display:none"><span><a href="javascript:mcTabs.displayTab('help_tab','help_panel');" onmousedown="return false;">{#advanced_dlg.about_help}</a></span></li>
14
+ <li id="plugins_tab"><span><a href="javascript:mcTabs.displayTab('plugins_tab','plugins_panel');" onmousedown="return false;">{#advanced_dlg.about_plugins}</a></span></li>
15
+ </ul>
16
+ </div>
17
+
18
+ <div class="panel_wrapper">
19
+ <div id="general_panel" class="panel current">
20
+ <h3>{#advanced_dlg.about_title}</h3>
21
+ <p>Version: <span id="version"></span> (<span id="date"></span>)</p>
22
+ <p>TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor control released as Open Source under <a href="../../license.txt" target="_blank">LGPL</a>
23
+ by Moxiecode Systems AB. It has the ability to convert HTML TEXTAREA fields or other HTML elements to editor instances.</p>
24
+ <p>Copyright &copy; 2003-2008, <a href="http://www.moxiecode.com" target="_blank">Moxiecode Systems AB</a>, All rights reserved.</p>
25
+ <p>For more information about this software visit the <a href="http://tinymce.moxiecode.com" target="_blank">TinyMCE website</a>.</p>
26
+
27
+ <div id="buttoncontainer">
28
+ <a href="http://www.moxiecode.com" target="_blank"><img src="http://tinymce.moxiecode.com/images/gotmoxie.png" alt="Got Moxie?" border="0" /></a>
29
+ <a href="http://sourceforge.net/projects/tinymce/" target="_blank"><img src="http://sourceforge.net/sflogo.php?group_id=103281" alt="Hosted By Sourceforge" border="0" /></a>
30
+ <a href="http://www.freshmeat.net/projects/tinymce" target="_blank"><img src="http://tinymce.moxiecode.com/images/fm.gif" alt="Also on freshmeat" border="0" /></a>
31
+ </div>
32
+ </div>
33
+
34
+ <div id="plugins_panel" class="panel">
35
+ <div id="pluginscontainer">
36
+ <h3>{#advanced_dlg.about_loaded}</h3>
37
+
38
+ <div id="plugintablecontainer">
39
+ </div>
40
+
41
+ <p>&nbsp;</p>
42
+ </div>
43
+ </div>
44
+
45
+ <div id="help_panel" class="panel noscroll" style="overflow: visible;">
46
+ <div id="iframecontainer"></div>
47
+ </div>
48
+ </div>
49
+
50
+ <div class="mceActionPanel">
51
+ <input type="button" id="cancel" name="cancel" value="{#close}" onclick="tinyMCEPopup.close();" />
52
+ </div>
53
+ </body>
54
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml">
3
+ <head>
4
+ <title>{#advanced_dlg.anchor_title}</title>
5
+ <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
6
+ <script type="text/javascript" src="js/anchor.js"></script>
7
+ </head>
8
+ <body style="display: none">
9
+ <form onsubmit="AnchorDialog.update();return false;" action="#">
10
+ <table border="0" cellpadding="4" cellspacing="0">
11
+ <tr>
12
+ <td colspan="2" class="title">{#advanced_dlg.anchor_title}</td>
13
+ </tr>
14
+ <tr>
15
+ <td class="nowrap">{#advanced_dlg.anchor_name}:</td>
16
+ <td><input name="anchorName" type="text" class="mceFocus" id="anchorName" value="" style="width: 200px" /></td>
17
+ </tr>
18
+ </table>
19
+
20
+ <div class="mceActionPanel">
21
+ <input type="submit" id="insert" name="insert" value="{#update}" />
22
+ <input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
23
+ </div>
24
+ </form>
25
+ </body>
26
+ </html>
@@ -0,0 +1,52 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml">
3
+ <head>
4
+ <title>{#advanced_dlg.charmap_title}</title>
5
+ <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
6
+ <script type="text/javascript" src="js/charmap.js"></script>
7
+ </head>
8
+ <body id="charmap" style="display:none">
9
+ <table align="center" border="0" cellspacing="0" cellpadding="2">
10
+ <tr>
11
+ <td colspan="2" class="title">{#advanced_dlg.charmap_title}</td>
12
+ </tr>
13
+ <tr>
14
+ <td id="charmapView" rowspan="2" align="left" valign="top">
15
+ <!-- Chars will be rendered here -->
16
+ </td>
17
+ <td width="100" align="center" valign="top">
18
+ <table border="0" cellpadding="0" cellspacing="0" width="100" style="height:100px">
19
+ <tr>
20
+ <td id="codeV">&nbsp;</td>
21
+ </tr>
22
+ <tr>
23
+ <td id="codeN">&nbsp;</td>
24
+ </tr>
25
+ </table>
26
+ </td>
27
+ </tr>
28
+ <tr>
29
+ <td valign="bottom" style="padding-bottom: 3px;">
30
+ <table width="100" align="center" border="0" cellpadding="2" cellspacing="0">
31
+ <tr>
32
+ <td align="center" style="border-left: 1px solid #666699; border-top: 1px solid #666699; border-right: 1px solid #666699;">HTML-Code</td>
33
+ </tr>
34
+ <tr>
35
+ <td style="font-size: 16px; font-weight: bold; border-left: 1px solid #666699; border-bottom: 1px solid #666699; border-right: 1px solid #666699;" id="codeA" align="center">&nbsp;</td>
36
+ </tr>
37
+ <tr>
38
+ <td style="font-size: 1px;">&nbsp;</td>
39
+ </tr>
40
+ <tr>
41
+ <td align="center" style="border-left: 1px solid #666699; border-top: 1px solid #666699; border-right: 1px solid #666699;">NUM-Code</td>
42
+ </tr>
43
+ <tr>
44
+ <td style="font-size: 16px; font-weight: bold; border-left: 1px solid #666699; border-bottom: 1px solid #666699; border-right: 1px solid #666699;" id="codeB" align="center">&nbsp;</td>
45
+ </tr>
46
+ </table>
47
+ </td>
48
+ </tr>
49
+ </table>
50
+
51
+ </body>
52
+ </html>
@@ -0,0 +1,73 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml">
3
+ <head>
4
+ <title>{#advanced_dlg.colorpicker_title}</title>
5
+ <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
6
+ <script type="text/javascript" src="../../utils/mctabs.js"></script>
7
+ <script type="text/javascript" src="js/color_picker.js"></script>
8
+ </head>
9
+ <body id="colorpicker" style="display: none">
10
+ <form onsubmit="insertAction();return false" action="#">
11
+ <div class="tabs">
12
+ <ul>
13
+ <li id="picker_tab" class="current"><span><a href="javascript:mcTabs.displayTab('picker_tab','picker_panel');" onmousedown="return false;">{#advanced_dlg.colorpicker_picker_tab}</a></span></li>
14
+ <li id="rgb_tab"><span><a href="javascript:;" onclick="generateWebColors();mcTabs.displayTab('rgb_tab','rgb_panel');" onmousedown="return false;">{#advanced_dlg.colorpicker_palette_tab}</a></span></li>
15
+ <li id="named_tab"><span><a href="javascript:;" onclick="generateNamedColors();javascript:mcTabs.displayTab('named_tab','named_panel');" onmousedown="return false;">{#advanced_dlg.colorpicker_named_tab}</a></span></li>
16
+ </ul>
17
+ </div>
18
+
19
+ <div class="panel_wrapper">
20
+ <div id="picker_panel" class="panel current">
21
+ <fieldset>
22
+ <legend>{#advanced_dlg.colorpicker_picker_title}</legend>
23
+ <div id="picker">
24
+ <img id="colors" src="img/colorpicker.jpg" onclick="computeColor(event)" onmousedown="isMouseDown = true;return false;" onmouseup="isMouseDown = false;" onmousemove="if (isMouseDown && isMouseOver) computeColor(event); return false;" onmouseover="isMouseOver=true;" onmouseout="isMouseOver=false;" alt="" />
25
+
26
+ <div id="light">
27
+ <!-- Will be filled with divs -->
28
+ </div>
29
+
30
+ <br style="clear: both" />
31
+ </div>
32
+ </fieldset>
33
+ </div>
34
+
35
+ <div id="rgb_panel" class="panel">
36
+ <fieldset>
37
+ <legend>{#advanced_dlg.colorpicker_palette_title}</legend>
38
+ <div id="webcolors">
39
+ <!-- Gets filled with web safe colors-->
40
+ </div>
41
+
42
+ <br style="clear: both" />
43
+ </fieldset>
44
+ </div>
45
+
46
+ <div id="named_panel" class="panel">
47
+ <fieldset>
48
+ <legend>{#advanced_dlg.colorpicker_named_title}</legend>
49
+ <div id="namedcolors">
50
+ <!-- Gets filled with named colors-->
51
+ </div>
52
+
53
+ <br style="clear: both" />
54
+
55
+ <div id="colornamecontainer">
56
+ {#advanced_dlg.colorpicker_name} <span id="colorname"></span>
57
+ </div>
58
+ </fieldset>
59
+ </div>
60
+ </div>
61
+
62
+ <div class="mceActionPanel">
63
+ <input type="submit" id="insert" name="insert" value="{#apply}" />
64
+
65
+ <div id="preview"></div>
66
+
67
+ <div id="previewblock">
68
+ <label for="color">{#advanced_dlg.colorpicker_color}</label> <input id="color" type="text" size="8" maxlength="8" class="text mceFocus" />
69
+ </div>
70
+ </div>
71
+ </form>
72
+ </body>
73
+ </html>
@@ -0,0 +1 @@
1
+ (function(e){var d=e.DOM,b=e.dom.Event,h=e.extend,f=e.each,a=e.util.Cookie,g,c=e.explode;e.ThemeManager.requireLangPack("advanced");e.create("tinymce.themes.AdvancedTheme",{sizes:[8,10,12,14,18,24,36],controls:{bold:["bold_desc","Bold"],italic:["italic_desc","Italic"],underline:["underline_desc","Underline"],strikethrough:["striketrough_desc","Strikethrough"],justifyleft:["justifyleft_desc","JustifyLeft"],justifycenter:["justifycenter_desc","JustifyCenter"],justifyright:["justifyright_desc","JustifyRight"],justifyfull:["justifyfull_desc","JustifyFull"],bullist:["bullist_desc","InsertUnorderedList"],numlist:["numlist_desc","InsertOrderedList"],outdent:["outdent_desc","Outdent"],indent:["indent_desc","Indent"],cut:["cut_desc","Cut"],copy:["copy_desc","Copy"],paste:["paste_desc","Paste"],undo:["undo_desc","Undo"],redo:["redo_desc","Redo"],link:["link_desc","mceLink"],unlink:["unlink_desc","unlink"],image:["image_desc","mceImage"],cleanup:["cleanup_desc","mceCleanup"],help:["help_desc","mceHelp"],code:["code_desc","mceCodeEditor"],hr:["hr_desc","InsertHorizontalRule"],removeformat:["removeformat_desc","RemoveFormat"],sub:["sub_desc","subscript"],sup:["sup_desc","superscript"],forecolor:["forecolor_desc","ForeColor"],forecolorpicker:["forecolor_desc","mceForeColor"],backcolor:["backcolor_desc","HiliteColor"],backcolorpicker:["backcolor_desc","mceBackColor"],charmap:["charmap_desc","mceCharMap"],visualaid:["visualaid_desc","mceToggleVisualAid"],anchor:["anchor_desc","mceInsertAnchor"],newdocument:["newdocument_desc","mceNewDocument"],blockquote:["blockquote_desc","mceBlockQuote"]},stateControls:["bold","italic","underline","strikethrough","bullist","numlist","justifyleft","justifycenter","justifyright","justifyfull","sub","sup","blockquote"],init:function(j,k){var l=this,m,i,n;l.editor=j;l.url=k;l.onResolveName=new e.util.Dispatcher(this);l.settings=m=h({theme_advanced_path:true,theme_advanced_toolbar_location:"bottom",theme_advanced_buttons1:"bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect",theme_advanced_buttons2:"bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code",theme_advanced_buttons3:"hr,removeformat,visualaid,|,sub,sup,|,charmap",theme_advanced_blockformats:"p,address,pre,h1,h2,h3,h4,h5,h6",theme_advanced_toolbar_align:"center",theme_advanced_fonts:"Andale Mono=andale mono,times;Arial=arial,helvetica,sans-serif;Arial Black=arial black,avant garde;Book Antiqua=book antiqua,palatino;Comic Sans MS=comic sans ms,sans-serif;Courier New=courier new,courier;Georgia=georgia,palatino;Helvetica=helvetica;Impact=impact,chicago;Symbol=symbol;Tahoma=tahoma,arial,helvetica,sans-serif;Terminal=terminal,monaco;Times New Roman=times new roman,times;Trebuchet MS=trebuchet ms,geneva;Verdana=verdana,geneva;Webdings=webdings;Wingdings=wingdings,zapf dingbats",theme_advanced_more_colors:1,theme_advanced_row_height:23,theme_advanced_resize_horizontal:1,theme_advanced_resizing_use_cookie:1,theme_advanced_font_sizes:"1,2,3,4,5,6,7",readonly:j.settings.readonly},j.settings);if(!m.font_size_style_values){m.font_size_style_values="8pt,10pt,12pt,14pt,18pt,24pt,36pt"}if(e.is(m.theme_advanced_font_sizes,"string")){m.font_size_style_values=e.explode(m.font_size_style_values);m.font_size_classes=e.explode(m.font_size_classes||"");n={};j.settings.theme_advanced_font_sizes=m.theme_advanced_font_sizes;f(j.getParam("theme_advanced_font_sizes","","hash"),function(q,p){var o;if(p==q&&q>=1&&q<=7){p=q+" ("+l.sizes[q-1]+"pt)";o=m.font_size_classes[q-1];q=m.font_size_style_values[q-1]||(l.sizes[q-1]+"pt")}if(/^\s*\./.test(q)){o=q.replace(/\./g,"")}n[p]=o?{"class":o}:{fontSize:q}});m.theme_advanced_font_sizes=n}if((i=m.theme_advanced_path_location)&&i!="none"){m.theme_advanced_statusbar_location=m.theme_advanced_path_location}if(m.theme_advanced_statusbar_location=="none"){m.theme_advanced_statusbar_location=0}j.onInit.add(function(){if(!j.settings.readonly){j.onNodeChange.add(l._nodeChanged,l)}if(j.settings.content_css!==false){j.dom.loadCSS(j.baseURI.toAbsolute("themes/advanced/skins/"+j.settings.skin+"/content.css"))}});j.onSetProgressState.add(function(q,o,r){var s,t=q.id,p;if(o){l.progressTimer=setTimeout(function(){s=q.getContainer();s=s.insertBefore(d.create("DIV",{style:"position:relative"}),s.firstChild);p=d.get(q.id+"_tbl");d.add(s,"div",{id:t+"_blocker","class":"mceBlocker",style:{width:p.clientWidth+2,height:p.clientHeight+2}});d.add(s,"div",{id:t+"_progress","class":"mceProgress",style:{left:p.clientWidth/2,top:p.clientHeight/2}})},r||0)}else{d.remove(t+"_blocker");d.remove(t+"_progress");clearTimeout(l.progressTimer)}});d.loadCSS(m.editor_css?j.documentBaseURI.toAbsolute(m.editor_css):k+"/skins/"+j.settings.skin+"/ui.css");if(m.skin_variant){d.loadCSS(k+"/skins/"+j.settings.skin+"/ui_"+m.skin_variant+".css")}},createControl:function(l,i){var j,k;if(k=i.createControl(l)){return k}switch(l){case"styleselect":return this._createStyleSelect();case"formatselect":return this._createBlockFormats();case"fontselect":return this._createFontSelect();case"fontsizeselect":return this._createFontSizeSelect();case"forecolor":return this._createForeColorMenu();case"backcolor":return this._createBackColorMenu()}if((j=this.controls[l])){return i.createButton(l,{title:"advanced."+j[0],cmd:j[1],ui:j[2],value:j[3]})}},execCommand:function(k,j,l){var i=this["_"+k];if(i){i.call(this,j,l);return true}return false},_importClasses:function(k){var i=this.editor,j=i.controlManager.get("styleselect");if(j.getLength()==0){f(i.dom.getClasses(),function(n,l){var m="style_"+l;i.formatter.register(m,{inline:"span",attributes:{"class":n["class"]},selector:"*"});j.add(n["class"],m)})}},_createStyleSelect:function(m){var k=this,i=k.editor,j=i.controlManager,l;l=j.createListBox("styleselect",{title:"advanced.style_select",onselect:function(o){var p,n=[];f(l.items,function(q){n.push(q.value)});i.focus();i.undoManager.add();p=i.formatter.matchAll(n);if(p[0]==o){i.formatter.remove(o)}else{i.formatter.apply(o)}i.undoManager.add();i.nodeChanged();return false}});i.onInit.add(function(){var o=0,n=i.getParam("style_formats");if(n){f(n,function(p){var q,r=0;f(p,function(){r++});if(r>1){q=p.name=p.name||"style_"+(o++);i.formatter.register(q,p);l.add(p.title,q)}else{l.add(p.title)}})}else{f(i.getParam("theme_advanced_styles","","hash"),function(r,q){var p;if(r){p="style_"+(o++);i.formatter.register(p,{inline:"span",classes:r,selector:"*"});l.add(k.editor.translate(q),p)}})}});if(l.getLength()==0){l.onPostRender.add(function(o,p){if(!l.NativeListBox){b.add(p.id+"_text","focus",k._importClasses,k);b.add(p.id+"_text","mousedown",k._importClasses,k);b.add(p.id+"_open","focus",k._importClasses,k);b.add(p.id+"_open","mousedown",k._importClasses,k)}else{b.add(p.id,"focus",k._importClasses,k)}})}return l},_createFontSelect:function(){var k,j=this,i=j.editor;k=i.controlManager.createListBox("fontselect",{title:"advanced.fontdefault",onselect:function(l){i.execCommand("FontName",false,l);k.select(function(m){return l==m});return false}});if(k){f(i.getParam("theme_advanced_fonts",j.settings.theme_advanced_fonts,"hash"),function(m,l){k.add(i.translate(l),m,{style:m.indexOf("dings")==-1?"font-family:"+m:""})})}return k},_createFontSizeSelect:function(){var m=this,k=m.editor,n,l=0,j=[];n=k.controlManager.createListBox("fontsizeselect",{title:"advanced.font_size",onselect:function(i){if(i["class"]){k.focus();k.undoManager.add();k.formatter.toggle("fontsize_class",{value:i["class"]});k.undoManager.add();k.nodeChanged()}else{k.execCommand("FontSize",false,i.fontSize)}n.select(function(o){return i==o});return false}});if(n){f(m.settings.theme_advanced_font_sizes,function(o,i){var p=o.fontSize;if(p>=1&&p<=7){p=m.sizes[parseInt(p)-1]+"pt"}n.add(i,o,{style:"font-size:"+p,"class":"mceFontSize"+(l++)+(" "+(o["class"]||""))})})}return n},_createBlockFormats:function(){var k,i={p:"advanced.paragraph",address:"advanced.address",pre:"advanced.pre",h1:"advanced.h1",h2:"advanced.h2",h3:"advanced.h3",h4:"advanced.h4",h5:"advanced.h5",h6:"advanced.h6",div:"advanced.div",blockquote:"advanced.blockquote",code:"advanced.code",dt:"advanced.dt",dd:"advanced.dd",samp:"advanced.samp"},j=this;k=j.editor.controlManager.createListBox("formatselect",{title:"advanced.block",cmd:"FormatBlock"});if(k){f(j.editor.getParam("theme_advanced_blockformats",j.settings.theme_advanced_blockformats,"hash"),function(m,l){k.add(j.editor.translate(l!=m?l:i[m]),m,{"class":"mce_formatPreview mce_"+m})})}return k},_createForeColorMenu:function(){var m,j=this,k=j.settings,l={},i;if(k.theme_advanced_more_colors){l.more_colors_func=function(){j._mceColorPicker(0,{color:m.value,func:function(n){m.setColor(n)}})}}if(i=k.theme_advanced_text_colors){l.colors=i}if(k.theme_advanced_default_foreground_color){l.default_color=k.theme_advanced_default_foreground_color}l.title="advanced.forecolor_desc";l.cmd="ForeColor";l.scope=this;m=j.editor.controlManager.createColorSplitButton("forecolor",l);return m},_createBackColorMenu:function(){var m,j=this,k=j.settings,l={},i;if(k.theme_advanced_more_colors){l.more_colors_func=function(){j._mceColorPicker(0,{color:m.value,func:function(n){m.setColor(n)}})}}if(i=k.theme_advanced_background_colors){l.colors=i}if(k.theme_advanced_default_background_color){l.default_color=k.theme_advanced_default_background_color}l.title="advanced.backcolor_desc";l.cmd="HiliteColor";l.scope=this;m=j.editor.controlManager.createColorSplitButton("backcolor",l);return m},renderUI:function(k){var m,l,q,v=this,r=v.editor,w=v.settings,u,j,i;m=j=d.create("span",{id:r.id+"_parent","class":"mceEditor "+r.settings.skin+"Skin"+(w.skin_variant?" "+r.settings.skin+"Skin"+v._ufirst(w.skin_variant):"")});if(!d.boxModel){m=d.add(m,"div",{"class":"mceOldBoxModel"})}m=u=d.add(m,"table",{id:r.id+"_tbl","class":"mceLayout",cellSpacing:0,cellPadding:0});m=q=d.add(m,"tbody");switch((w.theme_advanced_layout_manager||"").toLowerCase()){case"rowlayout":l=v._rowLayout(w,q,k);break;case"customlayout":l=r.execCallback("theme_advanced_custom_layout",w,q,k,j);break;default:l=v._simpleLayout(w,q,k,j)}m=k.targetNode;i=d.stdMode?u.getElementsByTagName("tr"):u.rows;d.addClass(i[0],"mceFirst");d.addClass(i[i.length-1],"mceLast");f(d.select("tr",q),function(o){d.addClass(o.firstChild,"mceFirst");d.addClass(o.childNodes[o.childNodes.length-1],"mceLast")});if(d.get(w.theme_advanced_toolbar_container)){d.get(w.theme_advanced_toolbar_container).appendChild(j)}else{d.insertAfter(j,m)}b.add(r.id+"_path_row","click",function(n){n=n.target;if(n.nodeName=="A"){v._sel(n.className.replace(/^.*mcePath_([0-9]+).*$/,"$1"));return b.cancel(n)}});if(!r.getParam("accessibility_focus")){b.add(d.add(j,"a",{href:"#"},"<!-- IE -->"),"focus",function(){tinyMCE.get(r.id).focus()})}if(w.theme_advanced_toolbar_location=="external"){k.deltaHeight=0}v.deltaHeight=k.deltaHeight;k.targetNode=null;return{iframeContainer:l,editorContainer:r.id+"_parent",sizeContainer:u,deltaHeight:k.deltaHeight}},getInfo:function(){return{longname:"Advanced theme",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",version:e.majorVersion+"."+e.minorVersion}},resizeBy:function(i,j){var k=d.get(this.editor.id+"_tbl");this.resizeTo(k.clientWidth+i,k.clientHeight+j)},resizeTo:function(i,l){var j=this.editor,k=this.settings,m=d.get(j.id+"_tbl"),n=d.get(j.id+"_ifr");i=Math.max(k.theme_advanced_resizing_min_width||100,i);l=Math.max(k.theme_advanced_resizing_min_height||100,l);i=Math.min(k.theme_advanced_resizing_max_width||65535,i);l=Math.min(k.theme_advanced_resizing_max_height||65535,l);d.setStyle(m,"height","");d.setStyle(n,"height",l);if(k.theme_advanced_resize_horizontal){d.setStyle(m,"width","");d.setStyle(n,"width",i);if(i<m.clientWidth){d.setStyle(n,"width",m.clientWidth)}}},destroy:function(){var i=this.editor.id;b.clear(i+"_resize");b.clear(i+"_path_row");b.clear(i+"_external_close")},_simpleLayout:function(y,r,k,i){var x=this,u=x.editor,v=y.theme_advanced_toolbar_location,m=y.theme_advanced_statusbar_location,l,j,q,w;if(y.readonly){l=d.add(r,"tr");l=j=d.add(l,"td",{"class":"mceIframeContainer"});return j}if(v=="top"){x._addToolbars(r,k)}if(v=="external"){l=w=d.create("div",{style:"position:relative"});l=d.add(l,"div",{id:u.id+"_external","class":"mceExternalToolbar"});d.add(l,"a",{id:u.id+"_external_close",href:"javascript:;","class":"mceExternalClose"});l=d.add(l,"table",{id:u.id+"_tblext",cellSpacing:0,cellPadding:0});q=d.add(l,"tbody");if(i.firstChild.className=="mceOldBoxModel"){i.firstChild.appendChild(w)}else{i.insertBefore(w,i.firstChild)}x._addToolbars(q,k);u.onMouseUp.add(function(){var o=d.get(u.id+"_external");d.show(o);d.hide(g);var n=b.add(u.id+"_external_close","click",function(){d.hide(u.id+"_external");b.remove(u.id+"_external_close","click",n)});d.show(o);d.setStyle(o,"top",0-d.getRect(u.id+"_tblext").h-1);d.hide(o);d.show(o);o.style.filter="";g=u.id+"_external";o=null})}if(m=="top"){x._addStatusBar(r,k)}if(!y.theme_advanced_toolbar_container){l=d.add(r,"tr");l=j=d.add(l,"td",{"class":"mceIframeContainer"})}if(v=="bottom"){x._addToolbars(r,k)}if(m=="bottom"){x._addStatusBar(r,k)}return j},_rowLayout:function(w,m,k){var v=this,p=v.editor,u,x,i=p.controlManager,l,j,r,q;u=w.theme_advanced_containers_default_class||"";x=w.theme_advanced_containers_default_align||"center";f(c(w.theme_advanced_containers||""),function(s,o){var n=w["theme_advanced_container_"+s]||"";switch(n.toLowerCase()){case"mceeditor":l=d.add(m,"tr");l=j=d.add(l,"td",{"class":"mceIframeContainer"});break;case"mceelementpath":v._addStatusBar(m,k);break;default:q=(w["theme_advanced_container_"+s+"_align"]||x).toLowerCase();q="mce"+v._ufirst(q);l=d.add(d.add(m,"tr"),"td",{"class":"mceToolbar "+(w["theme_advanced_container_"+s+"_class"]||u)+" "+q||x});r=i.createToolbar("toolbar"+o);v._addControls(n,r);d.setHTML(l,r.renderHTML());k.deltaHeight-=w.theme_advanced_row_height}});return j},_addControls:function(j,i){var k=this,l=k.settings,m,n=k.editor.controlManager;if(l.theme_advanced_disable&&!k._disabled){m={};f(c(l.theme_advanced_disable),function(o){m[o]=1});k._disabled=m}else{m=k._disabled}f(c(j),function(p){var o;if(m&&m[p]){return}if(p=="tablecontrols"){f(["table","|","row_props","cell_props","|","row_before","row_after","delete_row","|","col_before","col_after","delete_col","|","split_cells","merge_cells"],function(q){q=k.createControl(q,n);if(q){i.add(q)}});return}o=k.createControl(p,n);if(o){i.add(o)}})},_addToolbars:function(w,k){var z=this,p,m,r=z.editor,A=z.settings,y,j=r.controlManager,u,l,q=[],x;x=A.theme_advanced_toolbar_align.toLowerCase();x="mce"+z._ufirst(x);l=d.add(d.add(w,"tr"),"td",{"class":"mceToolbar "+x});if(!r.getParam("accessibility_focus")){q.push(d.createHTML("a",{href:"#",onfocus:"tinyMCE.get('"+r.id+"').focus();"},"<!-- IE -->"))}q.push(d.createHTML("a",{href:"#",accesskey:"q",title:r.getLang("advanced.toolbar_focus")},"<!-- IE -->"));for(p=1;(y=A["theme_advanced_buttons"+p]);p++){m=j.createToolbar("toolbar"+p,{"class":"mceToolbarRow"+p});if(A["theme_advanced_buttons"+p+"_add"]){y+=","+A["theme_advanced_buttons"+p+"_add"]}if(A["theme_advanced_buttons"+p+"_add_before"]){y=A["theme_advanced_buttons"+p+"_add_before"]+","+y}z._addControls(y,m);q.push(m.renderHTML());k.deltaHeight-=A.theme_advanced_row_height}q.push(d.createHTML("a",{href:"#",accesskey:"z",title:r.getLang("advanced.toolbar_focus"),onfocus:"tinyMCE.getInstanceById('"+r.id+"').focus();"},"<!-- IE -->"));d.setHTML(l,q.join(""))},_addStatusBar:function(m,j){var k,v=this,p=v.editor,w=v.settings,i,q,u,l;k=d.add(m,"tr");k=l=d.add(k,"td",{"class":"mceStatusbar"});k=d.add(k,"div",{id:p.id+"_path_row"},w.theme_advanced_path?p.translate("advanced.path")+": ":"&#160;");d.add(k,"a",{href:"#",accesskey:"x"});if(w.theme_advanced_resizing){d.add(l,"a",{id:p.id+"_resize",href:"javascript:;",onclick:"return false;","class":"mceResize"});if(w.theme_advanced_resizing_use_cookie){p.onPostRender.add(function(){var n=a.getHash("TinyMCE_"+p.id+"_size"),r=d.get(p.id+"_tbl");if(!n){return}v.resizeTo(n.cw,n.ch)})}p.onPostRender.add(function(){b.add(p.id+"_resize","mousedown",function(D){var t,r,s,o,C,z,A,F,n,E,x;function y(G){n=A+(G.screenX-C);E=F+(G.screenY-z);v.resizeTo(n,E)}function B(G){b.remove(d.doc,"mousemove",t);b.remove(p.getDoc(),"mousemove",r);b.remove(d.doc,"mouseup",s);b.remove(p.getDoc(),"mouseup",o);if(w.theme_advanced_resizing_use_cookie){a.setHash("TinyMCE_"+p.id+"_size",{cw:n,ch:E})}}D.preventDefault();C=D.screenX;z=D.screenY;x=d.get(v.editor.id+"_ifr");A=n=x.clientWidth;F=E=x.clientHeight;t=b.add(d.doc,"mousemove",y);r=b.add(p.getDoc(),"mousemove",y);s=b.add(d.doc,"mouseup",B);o=b.add(p.getDoc(),"mouseup",B)})})}j.deltaHeight-=21;k=m=null},_nodeChanged:function(r,z,l,x,j){var C=this,i,y=0,B,u,D=C.settings,A,k,w,m,q;e.each(C.stateControls,function(n){z.setActive(n,r.queryCommandState(C.controls[n][1]))});function o(p){var s,n=j.parents,t=p;if(typeof(p)=="string"){t=function(v){return v.nodeName==p}}for(s=0;s<n.length;s++){if(t(n[s])){return n[s]}}}z.setActive("visualaid",r.hasVisual);z.setDisabled("undo",!r.undoManager.hasUndo()&&!r.typing);z.setDisabled("redo",!r.undoManager.hasRedo());z.setDisabled("outdent",!r.queryCommandState("Outdent"));i=o("A");if(u=z.get("link")){if(!i||!i.name){u.setDisabled(!i&&x);u.setActive(!!i)}}if(u=z.get("unlink")){u.setDisabled(!i&&x);u.setActive(!!i&&!i.name)}if(u=z.get("anchor")){u.setActive(!!i&&i.name)}i=o("IMG");if(u=z.get("image")){u.setActive(!!i&&l.className.indexOf("mceItem")==-1)}if(u=z.get("styleselect")){C._importClasses();m=[];f(u.items,function(n){m.push(n.value)});q=r.formatter.matchAll(m);u.select(q[0])}if(u=z.get("formatselect")){i=o(d.isBlock);if(i){u.select(i.nodeName.toLowerCase())}}o(function(p){if(p.nodeName==="SPAN"){if(!A&&p.className){A=p.className}if(!k&&p.style.fontSize){k=p.style.fontSize}if(!w&&p.style.fontFamily){w=p.style.fontFamily.replace(/[\"\']+/g,"").replace(/^([^,]+).*/,"$1").toLowerCase()}}return false});if(u=z.get("fontselect")){u.select(function(n){return n.replace(/^([^,]+).*/,"$1").toLowerCase()==w})}if(u=z.get("fontsizeselect")){if(D.theme_advanced_runtime_fontsize&&!k&&!A){k=r.dom.getStyle(l,"fontSize",true)}u.select(function(n){if(n.fontSize&&n.fontSize===k){return true}if(n["class"]&&n["class"]===A){return true}})}if(D.theme_advanced_path&&D.theme_advanced_statusbar_location){i=d.get(r.id+"_path")||d.add(r.id+"_path_row","span",{id:r.id+"_path"});d.setHTML(i,"");o(function(E){var p=E.nodeName.toLowerCase(),s,v,t="";if(E.nodeType!=1||E.nodeName==="BR"||(d.hasClass(E,"mceItemHidden")||d.hasClass(E,"mceItemRemoved"))){return}if(B=d.getAttrib(E,"mce_name")){p=B}if(e.isIE&&E.scopeName!=="HTML"){p=E.scopeName+":"+p}p=p.replace(/mce\:/g,"");switch(p){case"b":p="strong";break;case"i":p="em";break;case"img":if(B=d.getAttrib(E,"src")){t+="src: "+B+" "}break;case"a":if(B=d.getAttrib(E,"name")){t+="name: "+B+" ";p+="#"+B}if(B=d.getAttrib(E,"href")){t+="href: "+B+" "}break;case"font":if(B=d.getAttrib(E,"face")){t+="font: "+B+" "}if(B=d.getAttrib(E,"size")){t+="size: "+B+" "}if(B=d.getAttrib(E,"color")){t+="color: "+B+" "}break;case"span":if(B=d.getAttrib(E,"style")){t+="style: "+B+" "}break}if(B=d.getAttrib(E,"id")){t+="id: "+B+" "}if(B=E.className){B=B.replace(/\b\s*(webkit|mce|Apple-)\w+\s*\b/g,"");if(B){t+="class: "+B+" ";if(d.isBlock(E)||p=="img"||p=="span"){p+="."+B}}}p=p.replace(/(html:)/g,"");p={name:p,node:E,title:t};C.onResolveName.dispatch(C,p);t=p.title;p=p.name;v=d.create("a",{href:"javascript:;",onmousedown:"return false;",title:t,"class":"mcePath_"+(y++)},p);if(i.hasChildNodes()){i.insertBefore(d.doc.createTextNode(" \u00bb "),i.firstChild);i.insertBefore(v,i.firstChild)}else{i.appendChild(v)}},r.getBody())}},_sel:function(i){this.editor.execCommand("mceSelectNodeDepth",false,i)},_mceInsertAnchor:function(k,j){var i=this.editor;i.windowManager.open({url:e.baseURL+"/themes/advanced/anchor.htm",width:320+parseInt(i.getLang("advanced.anchor_delta_width",0)),height:90+parseInt(i.getLang("advanced.anchor_delta_height",0)),inline:true},{theme_url:this.url})},_mceCharMap:function(){var i=this.editor;i.windowManager.open({url:e.baseURL+"/themes/advanced/charmap.htm",width:550+parseInt(i.getLang("advanced.charmap_delta_width",0)),height:250+parseInt(i.getLang("advanced.charmap_delta_height",0)),inline:true},{theme_url:this.url})},_mceHelp:function(){var i=this.editor;i.windowManager.open({url:e.baseURL+"/themes/advanced/about.htm",width:480,height:380,inline:true},{theme_url:this.url})},_mceColorPicker:function(k,j){var i=this.editor;j=j||{};i.windowManager.open({url:e.baseURL+"/themes/advanced/color_picker.htm",width:375+parseInt(i.getLang("advanced.colorpicker_delta_width",0)),height:250+parseInt(i.getLang("advanced.colorpicker_delta_height",0)),close_previous:false,inline:true},{input_color:j.color,func:j.func,theme_url:this.url})},_mceCodeEditor:function(j,k){var i=this.editor;i.windowManager.open({url:e.baseURL+"/themes/advanced/source_editor.htm",width:parseInt(i.getParam("theme_advanced_source_editor_width",720)),height:parseInt(i.getParam("theme_advanced_source_editor_height",580)),inline:true,resizable:true,maximizable:true},{theme_url:this.url})},_mceImage:function(j,k){var i=this.editor;if(i.dom.getAttrib(i.selection.getNode(),"class").indexOf("mceItem")!=-1){return}i.windowManager.open({url:e.baseURL+"/themes/advanced/image.htm",width:355+parseInt(i.getLang("advanced.image_delta_width",0)),height:275+parseInt(i.getLang("advanced.image_delta_height",0)),inline:true},{theme_url:this.url})},_mceLink:function(j,k){var i=this.editor;i.windowManager.open({url:e.baseURL+"/themes/advanced/link.htm",width:310+parseInt(i.getLang("advanced.link_delta_width",0)),height:200+parseInt(i.getLang("advanced.link_delta_height",0)),inline:true},{theme_url:this.url})},_mceNewDocument:function(){var i=this.editor;i.windowManager.confirm("advanced.newdocument",function(j){if(j){i.execCommand("mceSetContent",false,"")}})},_mceForeColor:function(){var i=this;this._mceColorPicker(0,{color:i.fgColor,func:function(j){i.fgColor=j;i.editor.execCommand("ForeColor",false,j)}})},_mceBackColor:function(){var i=this;this._mceColorPicker(0,{color:i.bgColor,func:function(j){i.bgColor=j;i.editor.execCommand("HiliteColor",false,j)}})},_ufirst:function(i){return i.substring(0,1).toUpperCase()+i.substring(1)}});e.ThemeManager.add("advanced",e.themes.AdvancedTheme)}(tinymce));
@@ -0,0 +1,1194 @@
1
+ /**
2
+ * editor_template_src.js
3
+ *
4
+ * Copyright 2009, Moxiecode Systems AB
5
+ * Released under LGPL License.
6
+ *
7
+ * License: http://tinymce.moxiecode.com/license
8
+ * Contributing: http://tinymce.moxiecode.com/contributing
9
+ */
10
+
11
+ (function(tinymce) {
12
+ var DOM = tinymce.DOM, Event = tinymce.dom.Event, extend = tinymce.extend, each = tinymce.each, Cookie = tinymce.util.Cookie, lastExtID, explode = tinymce.explode;
13
+
14
+ // Tell it to load theme specific language pack(s)
15
+ tinymce.ThemeManager.requireLangPack('advanced');
16
+
17
+ tinymce.create('tinymce.themes.AdvancedTheme', {
18
+ sizes : [8, 10, 12, 14, 18, 24, 36],
19
+
20
+ // Control name lookup, format: title, command
21
+ controls : {
22
+ bold : ['bold_desc', 'Bold'],
23
+ italic : ['italic_desc', 'Italic'],
24
+ underline : ['underline_desc', 'Underline'],
25
+ strikethrough : ['striketrough_desc', 'Strikethrough'],
26
+ justifyleft : ['justifyleft_desc', 'JustifyLeft'],
27
+ justifycenter : ['justifycenter_desc', 'JustifyCenter'],
28
+ justifyright : ['justifyright_desc', 'JustifyRight'],
29
+ justifyfull : ['justifyfull_desc', 'JustifyFull'],
30
+ bullist : ['bullist_desc', 'InsertUnorderedList'],
31
+ numlist : ['numlist_desc', 'InsertOrderedList'],
32
+ outdent : ['outdent_desc', 'Outdent'],
33
+ indent : ['indent_desc', 'Indent'],
34
+ cut : ['cut_desc', 'Cut'],
35
+ copy : ['copy_desc', 'Copy'],
36
+ paste : ['paste_desc', 'Paste'],
37
+ undo : ['undo_desc', 'Undo'],
38
+ redo : ['redo_desc', 'Redo'],
39
+ link : ['link_desc', 'mceLink'],
40
+ unlink : ['unlink_desc', 'unlink'],
41
+ image : ['image_desc', 'mceImage'],
42
+ cleanup : ['cleanup_desc', 'mceCleanup'],
43
+ help : ['help_desc', 'mceHelp'],
44
+ code : ['code_desc', 'mceCodeEditor'],
45
+ hr : ['hr_desc', 'InsertHorizontalRule'],
46
+ removeformat : ['removeformat_desc', 'RemoveFormat'],
47
+ sub : ['sub_desc', 'subscript'],
48
+ sup : ['sup_desc', 'superscript'],
49
+ forecolor : ['forecolor_desc', 'ForeColor'],
50
+ forecolorpicker : ['forecolor_desc', 'mceForeColor'],
51
+ backcolor : ['backcolor_desc', 'HiliteColor'],
52
+ backcolorpicker : ['backcolor_desc', 'mceBackColor'],
53
+ charmap : ['charmap_desc', 'mceCharMap'],
54
+ visualaid : ['visualaid_desc', 'mceToggleVisualAid'],
55
+ anchor : ['anchor_desc', 'mceInsertAnchor'],
56
+ newdocument : ['newdocument_desc', 'mceNewDocument'],
57
+ blockquote : ['blockquote_desc', 'mceBlockQuote']
58
+ },
59
+
60
+ stateControls : ['bold', 'italic', 'underline', 'strikethrough', 'bullist', 'numlist', 'justifyleft', 'justifycenter', 'justifyright', 'justifyfull', 'sub', 'sup', 'blockquote'],
61
+
62
+ init : function(ed, url) {
63
+ var t = this, s, v, o;
64
+
65
+ t.editor = ed;
66
+ t.url = url;
67
+ t.onResolveName = new tinymce.util.Dispatcher(this);
68
+
69
+ // Default settings
70
+ t.settings = s = extend({
71
+ theme_advanced_path : true,
72
+ theme_advanced_toolbar_location : 'bottom',
73
+ theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect",
74
+ theme_advanced_buttons2 : "bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code",
75
+ theme_advanced_buttons3 : "hr,removeformat,visualaid,|,sub,sup,|,charmap",
76
+ theme_advanced_blockformats : "p,address,pre,h1,h2,h3,h4,h5,h6",
77
+ theme_advanced_toolbar_align : "center",
78
+ theme_advanced_fonts : "Andale Mono=andale mono,times;Arial=arial,helvetica,sans-serif;Arial Black=arial black,avant garde;Book Antiqua=book antiqua,palatino;Comic Sans MS=comic sans ms,sans-serif;Courier New=courier new,courier;Georgia=georgia,palatino;Helvetica=helvetica;Impact=impact,chicago;Symbol=symbol;Tahoma=tahoma,arial,helvetica,sans-serif;Terminal=terminal,monaco;Times New Roman=times new roman,times;Trebuchet MS=trebuchet ms,geneva;Verdana=verdana,geneva;Webdings=webdings;Wingdings=wingdings,zapf dingbats",
79
+ theme_advanced_more_colors : 1,
80
+ theme_advanced_row_height : 23,
81
+ theme_advanced_resize_horizontal : 1,
82
+ theme_advanced_resizing_use_cookie : 1,
83
+ theme_advanced_font_sizes : "1,2,3,4,5,6,7",
84
+ readonly : ed.settings.readonly
85
+ }, ed.settings);
86
+
87
+ // Setup default font_size_style_values
88
+ if (!s.font_size_style_values)
89
+ s.font_size_style_values = "8pt,10pt,12pt,14pt,18pt,24pt,36pt";
90
+
91
+ if (tinymce.is(s.theme_advanced_font_sizes, 'string')) {
92
+ s.font_size_style_values = tinymce.explode(s.font_size_style_values);
93
+ s.font_size_classes = tinymce.explode(s.font_size_classes || '');
94
+
95
+ // Parse string value
96
+ o = {};
97
+ ed.settings.theme_advanced_font_sizes = s.theme_advanced_font_sizes;
98
+ each(ed.getParam('theme_advanced_font_sizes', '', 'hash'), function(v, k) {
99
+ var cl;
100
+
101
+ if (k == v && v >= 1 && v <= 7) {
102
+ k = v + ' (' + t.sizes[v - 1] + 'pt)';
103
+ cl = s.font_size_classes[v - 1];
104
+ v = s.font_size_style_values[v - 1] || (t.sizes[v - 1] + 'pt');
105
+ }
106
+
107
+ if (/^\s*\./.test(v))
108
+ cl = v.replace(/\./g, '');
109
+
110
+ o[k] = cl ? {'class' : cl} : {fontSize : v};
111
+ });
112
+
113
+ s.theme_advanced_font_sizes = o;
114
+ }
115
+
116
+ if ((v = s.theme_advanced_path_location) && v != 'none')
117
+ s.theme_advanced_statusbar_location = s.theme_advanced_path_location;
118
+
119
+ if (s.theme_advanced_statusbar_location == 'none')
120
+ s.theme_advanced_statusbar_location = 0;
121
+
122
+ // Init editor
123
+ ed.onInit.add(function() {
124
+ if (!ed.settings.readonly)
125
+ ed.onNodeChange.add(t._nodeChanged, t);
126
+
127
+ if (ed.settings.content_css !== false)
128
+ ed.dom.loadCSS(ed.baseURI.toAbsolute("themes/advanced/skins/" + ed.settings.skin + "/content.css"));
129
+ });
130
+
131
+ ed.onSetProgressState.add(function(ed, b, ti) {
132
+ var co, id = ed.id, tb;
133
+
134
+ if (b) {
135
+ t.progressTimer = setTimeout(function() {
136
+ co = ed.getContainer();
137
+ co = co.insertBefore(DOM.create('DIV', {style : 'position:relative'}), co.firstChild);
138
+ tb = DOM.get(ed.id + '_tbl');
139
+
140
+ DOM.add(co, 'div', {id : id + '_blocker', 'class' : 'mceBlocker', style : {width : tb.clientWidth + 2, height : tb.clientHeight + 2}});
141
+ DOM.add(co, 'div', {id : id + '_progress', 'class' : 'mceProgress', style : {left : tb.clientWidth / 2, top : tb.clientHeight / 2}});
142
+ }, ti || 0);
143
+ } else {
144
+ DOM.remove(id + '_blocker');
145
+ DOM.remove(id + '_progress');
146
+ clearTimeout(t.progressTimer);
147
+ }
148
+ });
149
+
150
+ DOM.loadCSS(s.editor_css ? ed.documentBaseURI.toAbsolute(s.editor_css) : url + "/skins/" + ed.settings.skin + "/ui.css");
151
+
152
+ if (s.skin_variant)
153
+ DOM.loadCSS(url + "/skins/" + ed.settings.skin + "/ui_" + s.skin_variant + ".css");
154
+ },
155
+
156
+ createControl : function(n, cf) {
157
+ var cd, c;
158
+
159
+ if (c = cf.createControl(n))
160
+ return c;
161
+
162
+ switch (n) {
163
+ case "styleselect":
164
+ return this._createStyleSelect();
165
+
166
+ case "formatselect":
167
+ return this._createBlockFormats();
168
+
169
+ case "fontselect":
170
+ return this._createFontSelect();
171
+
172
+ case "fontsizeselect":
173
+ return this._createFontSizeSelect();
174
+
175
+ case "forecolor":
176
+ return this._createForeColorMenu();
177
+
178
+ case "backcolor":
179
+ return this._createBackColorMenu();
180
+ }
181
+
182
+ if ((cd = this.controls[n]))
183
+ return cf.createButton(n, {title : "advanced." + cd[0], cmd : cd[1], ui : cd[2], value : cd[3]});
184
+ },
185
+
186
+ execCommand : function(cmd, ui, val) {
187
+ var f = this['_' + cmd];
188
+
189
+ if (f) {
190
+ f.call(this, ui, val);
191
+ return true;
192
+ }
193
+
194
+ return false;
195
+ },
196
+
197
+ _importClasses : function(e) {
198
+ var ed = this.editor, ctrl = ed.controlManager.get('styleselect');
199
+
200
+ if (ctrl.getLength() == 0) {
201
+ each(ed.dom.getClasses(), function(o, idx) {
202
+ var name = 'style_' + idx;
203
+
204
+ ed.formatter.register(name, {
205
+ inline : 'span',
206
+ attributes : {'class' : o['class']},
207
+ selector : '*'
208
+ });
209
+
210
+ ctrl.add(o['class'], name);
211
+ });
212
+ }
213
+ },
214
+
215
+ _createStyleSelect : function(n) {
216
+ var t = this, ed = t.editor, ctrlMan = ed.controlManager, ctrl;
217
+
218
+ // Setup style select box
219
+ ctrl = ctrlMan.createListBox('styleselect', {
220
+ title : 'advanced.style_select',
221
+ onselect : function(name) {
222
+ var matches, formatNames = [];
223
+
224
+ each(ctrl.items, function(item) {
225
+ formatNames.push(item.value);
226
+ });
227
+
228
+ ed.focus();
229
+ ed.undoManager.add();
230
+
231
+ // Toggle off the current format
232
+ matches = ed.formatter.matchAll(formatNames);
233
+ if (matches[0] == name)
234
+ ed.formatter.remove(name);
235
+ else
236
+ ed.formatter.apply(name);
237
+
238
+ ed.undoManager.add();
239
+ ed.nodeChanged();
240
+
241
+ return false; // No auto select
242
+ }
243
+ });
244
+
245
+ // Handle specified format
246
+ ed.onInit.add(function() {
247
+ var counter = 0, formats = ed.getParam('style_formats');
248
+
249
+ if (formats) {
250
+ each(formats, function(fmt) {
251
+ var name, keys = 0;
252
+
253
+ each(fmt, function() {keys++;});
254
+
255
+ if (keys > 1) {
256
+ name = fmt.name = fmt.name || 'style_' + (counter++);
257
+ ed.formatter.register(name, fmt);
258
+ ctrl.add(fmt.title, name);
259
+ } else
260
+ ctrl.add(fmt.title);
261
+ });
262
+ } else {
263
+ each(ed.getParam('theme_advanced_styles', '', 'hash'), function(val, key) {
264
+ var name;
265
+
266
+ if (val) {
267
+ name = 'style_' + (counter++);
268
+
269
+ ed.formatter.register(name, {
270
+ inline : 'span',
271
+ classes : val,
272
+ selector : '*'
273
+ });
274
+
275
+ ctrl.add(t.editor.translate(key), name);
276
+ }
277
+ });
278
+ }
279
+ });
280
+
281
+ // Auto import classes if the ctrl box is empty
282
+ if (ctrl.getLength() == 0) {
283
+ ctrl.onPostRender.add(function(ed, n) {
284
+ if (!ctrl.NativeListBox) {
285
+ Event.add(n.id + '_text', 'focus', t._importClasses, t);
286
+ Event.add(n.id + '_text', 'mousedown', t._importClasses, t);
287
+ Event.add(n.id + '_open', 'focus', t._importClasses, t);
288
+ Event.add(n.id + '_open', 'mousedown', t._importClasses, t);
289
+ } else
290
+ Event.add(n.id, 'focus', t._importClasses, t);
291
+ });
292
+ }
293
+
294
+ return ctrl;
295
+ },
296
+
297
+ _createFontSelect : function() {
298
+ var c, t = this, ed = t.editor;
299
+
300
+ c = ed.controlManager.createListBox('fontselect', {
301
+ title : 'advanced.fontdefault',
302
+ onselect : function(v) {
303
+ ed.execCommand('FontName', false, v);
304
+
305
+ // Fake selection, execCommand will fire a nodeChange and update the selection
306
+ c.select(function(sv) {
307
+ return v == sv;
308
+ });
309
+
310
+ return false; // No auto select
311
+ }
312
+ });
313
+
314
+ if (c) {
315
+ each(ed.getParam('theme_advanced_fonts', t.settings.theme_advanced_fonts, 'hash'), function(v, k) {
316
+ c.add(ed.translate(k), v, {style : v.indexOf('dings') == -1 ? 'font-family:' + v : ''});
317
+ });
318
+ }
319
+
320
+ return c;
321
+ },
322
+
323
+ _createFontSizeSelect : function() {
324
+ var t = this, ed = t.editor, c, i = 0, cl = [];
325
+
326
+ c = ed.controlManager.createListBox('fontsizeselect', {title : 'advanced.font_size', onselect : function(v) {
327
+ if (v['class']) {
328
+ ed.focus();
329
+ ed.undoManager.add();
330
+ ed.formatter.toggle('fontsize_class', {value : v['class']});
331
+ ed.undoManager.add();
332
+ ed.nodeChanged();
333
+ } else
334
+ ed.execCommand('FontSize', false, v.fontSize);
335
+
336
+ // Fake selection, execCommand will fire a nodeChange and update the selection
337
+ c.select(function(sv) {
338
+ return v == sv;
339
+ });
340
+
341
+ return false; // No auto select
342
+ }});
343
+
344
+ if (c) {
345
+ each(t.settings.theme_advanced_font_sizes, function(v, k) {
346
+ var fz = v.fontSize;
347
+
348
+ if (fz >= 1 && fz <= 7)
349
+ fz = t.sizes[parseInt(fz) - 1] + 'pt';
350
+
351
+ c.add(k, v, {'style' : 'font-size:' + fz, 'class' : 'mceFontSize' + (i++) + (' ' + (v['class'] || ''))});
352
+ });
353
+ }
354
+
355
+ return c;
356
+ },
357
+
358
+ _createBlockFormats : function() {
359
+ var c, fmts = {
360
+ p : 'advanced.paragraph',
361
+ address : 'advanced.address',
362
+ pre : 'advanced.pre',
363
+ h1 : 'advanced.h1',
364
+ h2 : 'advanced.h2',
365
+ h3 : 'advanced.h3',
366
+ h4 : 'advanced.h4',
367
+ h5 : 'advanced.h5',
368
+ h6 : 'advanced.h6',
369
+ div : 'advanced.div',
370
+ blockquote : 'advanced.blockquote',
371
+ code : 'advanced.code',
372
+ dt : 'advanced.dt',
373
+ dd : 'advanced.dd',
374
+ samp : 'advanced.samp'
375
+ }, t = this;
376
+
377
+ c = t.editor.controlManager.createListBox('formatselect', {title : 'advanced.block', cmd : 'FormatBlock'});
378
+ if (c) {
379
+ each(t.editor.getParam('theme_advanced_blockformats', t.settings.theme_advanced_blockformats, 'hash'), function(v, k) {
380
+ c.add(t.editor.translate(k != v ? k : fmts[v]), v, {'class' : 'mce_formatPreview mce_' + v});
381
+ });
382
+ }
383
+
384
+ return c;
385
+ },
386
+
387
+ _createForeColorMenu : function() {
388
+ var c, t = this, s = t.settings, o = {}, v;
389
+
390
+ if (s.theme_advanced_more_colors) {
391
+ o.more_colors_func = function() {
392
+ t._mceColorPicker(0, {
393
+ color : c.value,
394
+ func : function(co) {
395
+ c.setColor(co);
396
+ }
397
+ });
398
+ };
399
+ }
400
+
401
+ if (v = s.theme_advanced_text_colors)
402
+ o.colors = v;
403
+
404
+ if (s.theme_advanced_default_foreground_color)
405
+ o.default_color = s.theme_advanced_default_foreground_color;
406
+
407
+ o.title = 'advanced.forecolor_desc';
408
+ o.cmd = 'ForeColor';
409
+ o.scope = this;
410
+
411
+ c = t.editor.controlManager.createColorSplitButton('forecolor', o);
412
+
413
+ return c;
414
+ },
415
+
416
+ _createBackColorMenu : function() {
417
+ var c, t = this, s = t.settings, o = {}, v;
418
+
419
+ if (s.theme_advanced_more_colors) {
420
+ o.more_colors_func = function() {
421
+ t._mceColorPicker(0, {
422
+ color : c.value,
423
+ func : function(co) {
424
+ c.setColor(co);
425
+ }
426
+ });
427
+ };
428
+ }
429
+
430
+ if (v = s.theme_advanced_background_colors)
431
+ o.colors = v;
432
+
433
+ if (s.theme_advanced_default_background_color)
434
+ o.default_color = s.theme_advanced_default_background_color;
435
+
436
+ o.title = 'advanced.backcolor_desc';
437
+ o.cmd = 'HiliteColor';
438
+ o.scope = this;
439
+
440
+ c = t.editor.controlManager.createColorSplitButton('backcolor', o);
441
+
442
+ return c;
443
+ },
444
+
445
+ renderUI : function(o) {
446
+ var n, ic, tb, t = this, ed = t.editor, s = t.settings, sc, p, nl;
447
+
448
+ n = p = DOM.create('span', {id : ed.id + '_parent', 'class' : 'mceEditor ' + ed.settings.skin + 'Skin' + (s.skin_variant ? ' ' + ed.settings.skin + 'Skin' + t._ufirst(s.skin_variant) : '')});
449
+
450
+ if (!DOM.boxModel)
451
+ n = DOM.add(n, 'div', {'class' : 'mceOldBoxModel'});
452
+
453
+ n = sc = DOM.add(n, 'table', {id : ed.id + '_tbl', 'class' : 'mceLayout', cellSpacing : 0, cellPadding : 0});
454
+ n = tb = DOM.add(n, 'tbody');
455
+
456
+ switch ((s.theme_advanced_layout_manager || '').toLowerCase()) {
457
+ case "rowlayout":
458
+ ic = t._rowLayout(s, tb, o);
459
+ break;
460
+
461
+ case "customlayout":
462
+ ic = ed.execCallback("theme_advanced_custom_layout", s, tb, o, p);
463
+ break;
464
+
465
+ default:
466
+ ic = t._simpleLayout(s, tb, o, p);
467
+ }
468
+
469
+ n = o.targetNode;
470
+
471
+ // Add classes to first and last TRs
472
+ nl = DOM.stdMode ? sc.getElementsByTagName('tr') : sc.rows; // Quick fix for IE 8
473
+ DOM.addClass(nl[0], 'mceFirst');
474
+ DOM.addClass(nl[nl.length - 1], 'mceLast');
475
+
476
+ // Add classes to first and last TDs
477
+ each(DOM.select('tr', tb), function(n) {
478
+ DOM.addClass(n.firstChild, 'mceFirst');
479
+ DOM.addClass(n.childNodes[n.childNodes.length - 1], 'mceLast');
480
+ });
481
+
482
+ if (DOM.get(s.theme_advanced_toolbar_container))
483
+ DOM.get(s.theme_advanced_toolbar_container).appendChild(p);
484
+ else
485
+ DOM.insertAfter(p, n);
486
+
487
+ Event.add(ed.id + '_path_row', 'click', function(e) {
488
+ e = e.target;
489
+
490
+ if (e.nodeName == 'A') {
491
+ t._sel(e.className.replace(/^.*mcePath_([0-9]+).*$/, '$1'));
492
+
493
+ return Event.cancel(e);
494
+ }
495
+ });
496
+ /*
497
+ if (DOM.get(ed.id + '_path_row')) {
498
+ Event.add(ed.id + '_tbl', 'mouseover', function(e) {
499
+ var re;
500
+
501
+ e = e.target;
502
+
503
+ if (e.nodeName == 'SPAN' && DOM.hasClass(e.parentNode, 'mceButton')) {
504
+ re = DOM.get(ed.id + '_path_row');
505
+ t.lastPath = re.innerHTML;
506
+ DOM.setHTML(re, e.parentNode.title);
507
+ }
508
+ });
509
+
510
+ Event.add(ed.id + '_tbl', 'mouseout', function(e) {
511
+ if (t.lastPath) {
512
+ DOM.setHTML(ed.id + '_path_row', t.lastPath);
513
+ t.lastPath = 0;
514
+ }
515
+ });
516
+ }
517
+ */
518
+
519
+ if (!ed.getParam('accessibility_focus'))
520
+ Event.add(DOM.add(p, 'a', {href : '#'}, '<!-- IE -->'), 'focus', function() {tinyMCE.get(ed.id).focus();});
521
+
522
+ if (s.theme_advanced_toolbar_location == 'external')
523
+ o.deltaHeight = 0;
524
+
525
+ t.deltaHeight = o.deltaHeight;
526
+ o.targetNode = null;
527
+
528
+ return {
529
+ iframeContainer : ic,
530
+ editorContainer : ed.id + '_parent',
531
+ sizeContainer : sc,
532
+ deltaHeight : o.deltaHeight
533
+ };
534
+ },
535
+
536
+ getInfo : function() {
537
+ return {
538
+ longname : 'Advanced theme',
539
+ author : 'Moxiecode Systems AB',
540
+ authorurl : 'http://tinymce.moxiecode.com',
541
+ version : tinymce.majorVersion + "." + tinymce.minorVersion
542
+ }
543
+ },
544
+
545
+ resizeBy : function(dw, dh) {
546
+ var e = DOM.get(this.editor.id + '_tbl');
547
+
548
+ this.resizeTo(e.clientWidth + dw, e.clientHeight + dh);
549
+ },
550
+
551
+ resizeTo : function(w, h) {
552
+ var ed = this.editor, s = this.settings, e = DOM.get(ed.id + '_tbl'), ifr = DOM.get(ed.id + '_ifr');
553
+
554
+ // Boundery fix box
555
+ w = Math.max(s.theme_advanced_resizing_min_width || 100, w);
556
+ h = Math.max(s.theme_advanced_resizing_min_height || 100, h);
557
+ w = Math.min(s.theme_advanced_resizing_max_width || 0xFFFF, w);
558
+ h = Math.min(s.theme_advanced_resizing_max_height || 0xFFFF, h);
559
+
560
+ // Resize iframe and container
561
+ DOM.setStyle(e, 'height', '');
562
+ DOM.setStyle(ifr, 'height', h);
563
+
564
+ if (s.theme_advanced_resize_horizontal) {
565
+ DOM.setStyle(e, 'width', '');
566
+ DOM.setStyle(ifr, 'width', w);
567
+
568
+ // Make sure that the size is never smaller than the over all ui
569
+ if (w < e.clientWidth)
570
+ DOM.setStyle(ifr, 'width', e.clientWidth);
571
+ }
572
+ },
573
+
574
+ destroy : function() {
575
+ var id = this.editor.id;
576
+
577
+ Event.clear(id + '_resize');
578
+ Event.clear(id + '_path_row');
579
+ Event.clear(id + '_external_close');
580
+ },
581
+
582
+ // Internal functions
583
+
584
+ _simpleLayout : function(s, tb, o, p) {
585
+ var t = this, ed = t.editor, lo = s.theme_advanced_toolbar_location, sl = s.theme_advanced_statusbar_location, n, ic, etb, c;
586
+
587
+ if (s.readonly) {
588
+ n = DOM.add(tb, 'tr');
589
+ n = ic = DOM.add(n, 'td', {'class' : 'mceIframeContainer'});
590
+ return ic;
591
+ }
592
+
593
+ // Create toolbar container at top
594
+ if (lo == 'top')
595
+ t._addToolbars(tb, o);
596
+
597
+ // Create external toolbar
598
+ if (lo == 'external') {
599
+ n = c = DOM.create('div', {style : 'position:relative'});
600
+ n = DOM.add(n, 'div', {id : ed.id + '_external', 'class' : 'mceExternalToolbar'});
601
+ DOM.add(n, 'a', {id : ed.id + '_external_close', href : 'javascript:;', 'class' : 'mceExternalClose'});
602
+ n = DOM.add(n, 'table', {id : ed.id + '_tblext', cellSpacing : 0, cellPadding : 0});
603
+ etb = DOM.add(n, 'tbody');
604
+
605
+ if (p.firstChild.className == 'mceOldBoxModel')
606
+ p.firstChild.appendChild(c);
607
+ else
608
+ p.insertBefore(c, p.firstChild);
609
+
610
+ t._addToolbars(etb, o);
611
+
612
+ ed.onMouseUp.add(function() {
613
+ var e = DOM.get(ed.id + '_external');
614
+ DOM.show(e);
615
+
616
+ DOM.hide(lastExtID);
617
+
618
+ var f = Event.add(ed.id + '_external_close', 'click', function() {
619
+ DOM.hide(ed.id + '_external');
620
+ Event.remove(ed.id + '_external_close', 'click', f);
621
+ });
622
+
623
+ DOM.show(e);
624
+ DOM.setStyle(e, 'top', 0 - DOM.getRect(ed.id + '_tblext').h - 1);
625
+
626
+ // Fixes IE rendering bug
627
+ DOM.hide(e);
628
+ DOM.show(e);
629
+ e.style.filter = '';
630
+
631
+ lastExtID = ed.id + '_external';
632
+
633
+ e = null;
634
+ });
635
+ }
636
+
637
+ if (sl == 'top')
638
+ t._addStatusBar(tb, o);
639
+
640
+ // Create iframe container
641
+ if (!s.theme_advanced_toolbar_container) {
642
+ n = DOM.add(tb, 'tr');
643
+ n = ic = DOM.add(n, 'td', {'class' : 'mceIframeContainer'});
644
+ }
645
+
646
+ // Create toolbar container at bottom
647
+ if (lo == 'bottom')
648
+ t._addToolbars(tb, o);
649
+
650
+ if (sl == 'bottom')
651
+ t._addStatusBar(tb, o);
652
+
653
+ return ic;
654
+ },
655
+
656
+ _rowLayout : function(s, tb, o) {
657
+ var t = this, ed = t.editor, dc, da, cf = ed.controlManager, n, ic, to, a;
658
+
659
+ dc = s.theme_advanced_containers_default_class || '';
660
+ da = s.theme_advanced_containers_default_align || 'center';
661
+
662
+ each(explode(s.theme_advanced_containers || ''), function(c, i) {
663
+ var v = s['theme_advanced_container_' + c] || '';
664
+
665
+ switch (v.toLowerCase()) {
666
+ case 'mceeditor':
667
+ n = DOM.add(tb, 'tr');
668
+ n = ic = DOM.add(n, 'td', {'class' : 'mceIframeContainer'});
669
+ break;
670
+
671
+ case 'mceelementpath':
672
+ t._addStatusBar(tb, o);
673
+ break;
674
+
675
+ default:
676
+ a = (s['theme_advanced_container_' + c + '_align'] || da).toLowerCase();
677
+ a = 'mce' + t._ufirst(a);
678
+
679
+ n = DOM.add(DOM.add(tb, 'tr'), 'td', {
680
+ 'class' : 'mceToolbar ' + (s['theme_advanced_container_' + c + '_class'] || dc) + ' ' + a || da
681
+ });
682
+
683
+ to = cf.createToolbar("toolbar" + i);
684
+ t._addControls(v, to);
685
+ DOM.setHTML(n, to.renderHTML());
686
+ o.deltaHeight -= s.theme_advanced_row_height;
687
+ }
688
+ });
689
+
690
+ return ic;
691
+ },
692
+
693
+ _addControls : function(v, tb) {
694
+ var t = this, s = t.settings, di, cf = t.editor.controlManager;
695
+
696
+ if (s.theme_advanced_disable && !t._disabled) {
697
+ di = {};
698
+
699
+ each(explode(s.theme_advanced_disable), function(v) {
700
+ di[v] = 1;
701
+ });
702
+
703
+ t._disabled = di;
704
+ } else
705
+ di = t._disabled;
706
+
707
+ each(explode(v), function(n) {
708
+ var c;
709
+
710
+ if (di && di[n])
711
+ return;
712
+
713
+ // Compatiblity with 2.x
714
+ if (n == 'tablecontrols') {
715
+ each(["table","|","row_props","cell_props","|","row_before","row_after","delete_row","|","col_before","col_after","delete_col","|","split_cells","merge_cells"], function(n) {
716
+ n = t.createControl(n, cf);
717
+
718
+ if (n)
719
+ tb.add(n);
720
+ });
721
+
722
+ return;
723
+ }
724
+
725
+ c = t.createControl(n, cf);
726
+
727
+ if (c)
728
+ tb.add(c);
729
+ });
730
+ },
731
+
732
+ _addToolbars : function(c, o) {
733
+ var t = this, i, tb, ed = t.editor, s = t.settings, v, cf = ed.controlManager, di, n, h = [], a;
734
+
735
+ a = s.theme_advanced_toolbar_align.toLowerCase();
736
+ a = 'mce' + t._ufirst(a);
737
+
738
+ n = DOM.add(DOM.add(c, 'tr'), 'td', {'class' : 'mceToolbar ' + a});
739
+
740
+ if (!ed.getParam('accessibility_focus'))
741
+ h.push(DOM.createHTML('a', {href : '#', onfocus : 'tinyMCE.get(\'' + ed.id + '\').focus();'}, '<!-- IE -->'));
742
+
743
+ h.push(DOM.createHTML('a', {href : '#', accesskey : 'q', title : ed.getLang("advanced.toolbar_focus")}, '<!-- IE -->'));
744
+
745
+ // Create toolbar and add the controls
746
+ for (i=1; (v = s['theme_advanced_buttons' + i]); i++) {
747
+ tb = cf.createToolbar("toolbar" + i, {'class' : 'mceToolbarRow' + i});
748
+
749
+ if (s['theme_advanced_buttons' + i + '_add'])
750
+ v += ',' + s['theme_advanced_buttons' + i + '_add'];
751
+
752
+ if (s['theme_advanced_buttons' + i + '_add_before'])
753
+ v = s['theme_advanced_buttons' + i + '_add_before'] + ',' + v;
754
+
755
+ t._addControls(v, tb);
756
+
757
+ //n.appendChild(n = tb.render());
758
+ h.push(tb.renderHTML());
759
+
760
+ o.deltaHeight -= s.theme_advanced_row_height;
761
+ }
762
+
763
+ h.push(DOM.createHTML('a', {href : '#', accesskey : 'z', title : ed.getLang("advanced.toolbar_focus"), onfocus : 'tinyMCE.getInstanceById(\'' + ed.id + '\').focus();'}, '<!-- IE -->'));
764
+ DOM.setHTML(n, h.join(''));
765
+ },
766
+
767
+ _addStatusBar : function(tb, o) {
768
+ var n, t = this, ed = t.editor, s = t.settings, r, mf, me, td;
769
+
770
+ n = DOM.add(tb, 'tr');
771
+ n = td = DOM.add(n, 'td', {'class' : 'mceStatusbar'});
772
+ n = DOM.add(n, 'div', {id : ed.id + '_path_row'}, s.theme_advanced_path ? ed.translate('advanced.path') + ': ' : '&#160;');
773
+ DOM.add(n, 'a', {href : '#', accesskey : 'x'});
774
+
775
+ if (s.theme_advanced_resizing) {
776
+ DOM.add(td, 'a', {id : ed.id + '_resize', href : 'javascript:;', onclick : "return false;", 'class' : 'mceResize'});
777
+
778
+ if (s.theme_advanced_resizing_use_cookie) {
779
+ ed.onPostRender.add(function() {
780
+ var o = Cookie.getHash("TinyMCE_" + ed.id + "_size"), c = DOM.get(ed.id + '_tbl');
781
+
782
+ if (!o)
783
+ return;
784
+
785
+ t.resizeTo(o.cw, o.ch);
786
+ });
787
+ }
788
+
789
+ ed.onPostRender.add(function() {
790
+ Event.add(ed.id + '_resize', 'mousedown', function(e) {
791
+ var mouseMoveHandler1, mouseMoveHandler2,
792
+ mouseUpHandler1, mouseUpHandler2,
793
+ startX, startY, startWidth, startHeight, width, height, ifrElm;
794
+
795
+ function resizeOnMove(e) {
796
+ width = startWidth + (e.screenX - startX);
797
+ height = startHeight + (e.screenY - startY);
798
+
799
+ t.resizeTo(width, height);
800
+ };
801
+
802
+ function endResize(e) {
803
+ // Stop listening
804
+ Event.remove(DOM.doc, 'mousemove', mouseMoveHandler1);
805
+ Event.remove(ed.getDoc(), 'mousemove', mouseMoveHandler2);
806
+ Event.remove(DOM.doc, 'mouseup', mouseUpHandler1);
807
+ Event.remove(ed.getDoc(), 'mouseup', mouseUpHandler2);
808
+
809
+ // Store away the size
810
+ if (s.theme_advanced_resizing_use_cookie) {
811
+ Cookie.setHash("TinyMCE_" + ed.id + "_size", {
812
+ cw : width,
813
+ ch : height
814
+ });
815
+ }
816
+ };
817
+
818
+ e.preventDefault();
819
+
820
+ // Get the current rect size
821
+ startX = e.screenX;
822
+ startY = e.screenY;
823
+ ifrElm = DOM.get(t.editor.id + '_ifr');
824
+ startWidth = width = ifrElm.clientWidth;
825
+ startHeight = height = ifrElm.clientHeight;
826
+
827
+ // Register envent handlers
828
+ mouseMoveHandler1 = Event.add(DOM.doc, 'mousemove', resizeOnMove);
829
+ mouseMoveHandler2 = Event.add(ed.getDoc(), 'mousemove', resizeOnMove);
830
+ mouseUpHandler1 = Event.add(DOM.doc, 'mouseup', endResize);
831
+ mouseUpHandler2 = Event.add(ed.getDoc(), 'mouseup', endResize);
832
+ });
833
+ });
834
+ }
835
+
836
+ o.deltaHeight -= 21;
837
+ n = tb = null;
838
+ },
839
+
840
+ _nodeChanged : function(ed, cm, n, co, ob) {
841
+ var t = this, p, de = 0, v, c, s = t.settings, cl, fz, fn, formatNames, matches;
842
+
843
+ tinymce.each(t.stateControls, function(c) {
844
+ cm.setActive(c, ed.queryCommandState(t.controls[c][1]));
845
+ });
846
+
847
+ function getParent(name) {
848
+ var i, parents = ob.parents, func = name;
849
+
850
+ if (typeof(name) == 'string') {
851
+ func = function(node) {
852
+ return node.nodeName == name;
853
+ };
854
+ }
855
+
856
+ for (i = 0; i < parents.length; i++) {
857
+ if (func(parents[i]))
858
+ return parents[i];
859
+ }
860
+ };
861
+
862
+ cm.setActive('visualaid', ed.hasVisual);
863
+ cm.setDisabled('undo', !ed.undoManager.hasUndo() && !ed.typing);
864
+ cm.setDisabled('redo', !ed.undoManager.hasRedo());
865
+ cm.setDisabled('outdent', !ed.queryCommandState('Outdent'));
866
+
867
+ p = getParent('A');
868
+ if (c = cm.get('link')) {
869
+ if (!p || !p.name) {
870
+ c.setDisabled(!p && co);
871
+ c.setActive(!!p);
872
+ }
873
+ }
874
+
875
+ if (c = cm.get('unlink')) {
876
+ c.setDisabled(!p && co);
877
+ c.setActive(!!p && !p.name);
878
+ }
879
+
880
+ if (c = cm.get('anchor')) {
881
+ c.setActive(!!p && p.name);
882
+ }
883
+
884
+ p = getParent('IMG');
885
+ if (c = cm.get('image'))
886
+ c.setActive(!!p && n.className.indexOf('mceItem') == -1);
887
+
888
+ if (c = cm.get('styleselect')) {
889
+ t._importClasses();
890
+
891
+ formatNames = [];
892
+ each(c.items, function(item) {
893
+ formatNames.push(item.value);
894
+ });
895
+
896
+ matches = ed.formatter.matchAll(formatNames);
897
+ c.select(matches[0]);
898
+ }
899
+
900
+ if (c = cm.get('formatselect')) {
901
+ p = getParent(DOM.isBlock);
902
+
903
+ if (p)
904
+ c.select(p.nodeName.toLowerCase());
905
+ }
906
+
907
+ // Find out current fontSize, fontFamily and fontClass
908
+ getParent(function(n) {
909
+ if (n.nodeName === 'SPAN') {
910
+ if (!cl && n.className)
911
+ cl = n.className;
912
+
913
+ if (!fz && n.style.fontSize)
914
+ fz = n.style.fontSize;
915
+
916
+ if (!fn && n.style.fontFamily)
917
+ fn = n.style.fontFamily.replace(/[\"\']+/g, '').replace(/^([^,]+).*/, '$1').toLowerCase();
918
+ }
919
+
920
+ return false;
921
+ });
922
+
923
+ if (c = cm.get('fontselect')) {
924
+ c.select(function(v) {
925
+ return v.replace(/^([^,]+).*/, '$1').toLowerCase() == fn;
926
+ });
927
+ }
928
+
929
+ // Select font size
930
+ if (c = cm.get('fontsizeselect')) {
931
+ // Use computed style
932
+ if (s.theme_advanced_runtime_fontsize && !fz && !cl)
933
+ fz = ed.dom.getStyle(n, 'fontSize', true);
934
+
935
+ c.select(function(v) {
936
+ if (v.fontSize && v.fontSize === fz)
937
+ return true;
938
+
939
+ if (v['class'] && v['class'] === cl)
940
+ return true;
941
+ });
942
+ }
943
+
944
+ if (s.theme_advanced_path && s.theme_advanced_statusbar_location) {
945
+ p = DOM.get(ed.id + '_path') || DOM.add(ed.id + '_path_row', 'span', {id : ed.id + '_path'});
946
+ DOM.setHTML(p, '');
947
+
948
+ getParent(function(n) {
949
+ var na = n.nodeName.toLowerCase(), u, pi, ti = '';
950
+
951
+ /*if (n.getAttribute('_mce_bogus'))
952
+ return;
953
+ */
954
+ // Ignore non element and hidden elements
955
+ if (n.nodeType != 1 || n.nodeName === 'BR' || (DOM.hasClass(n, 'mceItemHidden') || DOM.hasClass(n, 'mceItemRemoved')))
956
+ return;
957
+
958
+ // Fake name
959
+ if (v = DOM.getAttrib(n, 'mce_name'))
960
+ na = v;
961
+
962
+ // Handle prefix
963
+ if (tinymce.isIE && n.scopeName !== 'HTML')
964
+ na = n.scopeName + ':' + na;
965
+
966
+ // Remove internal prefix
967
+ na = na.replace(/mce\:/g, '');
968
+
969
+ // Handle node name
970
+ switch (na) {
971
+ case 'b':
972
+ na = 'strong';
973
+ break;
974
+
975
+ case 'i':
976
+ na = 'em';
977
+ break;
978
+
979
+ case 'img':
980
+ if (v = DOM.getAttrib(n, 'src'))
981
+ ti += 'src: ' + v + ' ';
982
+
983
+ break;
984
+
985
+ case 'a':
986
+ if (v = DOM.getAttrib(n, 'name')) {
987
+ ti += 'name: ' + v + ' ';
988
+ na += '#' + v;
989
+ }
990
+
991
+ if (v = DOM.getAttrib(n, 'href'))
992
+ ti += 'href: ' + v + ' ';
993
+
994
+ break;
995
+
996
+ case 'font':
997
+ if (v = DOM.getAttrib(n, 'face'))
998
+ ti += 'font: ' + v + ' ';
999
+
1000
+ if (v = DOM.getAttrib(n, 'size'))
1001
+ ti += 'size: ' + v + ' ';
1002
+
1003
+ if (v = DOM.getAttrib(n, 'color'))
1004
+ ti += 'color: ' + v + ' ';
1005
+
1006
+ break;
1007
+
1008
+ case 'span':
1009
+ if (v = DOM.getAttrib(n, 'style'))
1010
+ ti += 'style: ' + v + ' ';
1011
+
1012
+ break;
1013
+ }
1014
+
1015
+ if (v = DOM.getAttrib(n, 'id'))
1016
+ ti += 'id: ' + v + ' ';
1017
+
1018
+ if (v = n.className) {
1019
+ v = v.replace(/\b\s*(webkit|mce|Apple-)\w+\s*\b/g, '')
1020
+
1021
+ if (v) {
1022
+ ti += 'class: ' + v + ' ';
1023
+
1024
+ if (DOM.isBlock(n) || na == 'img' || na == 'span')
1025
+ na += '.' + v;
1026
+ }
1027
+ }
1028
+
1029
+ na = na.replace(/(html:)/g, '');
1030
+ na = {name : na, node : n, title : ti};
1031
+ t.onResolveName.dispatch(t, na);
1032
+ ti = na.title;
1033
+ na = na.name;
1034
+
1035
+ //u = "javascript:tinymce.EditorManager.get('" + ed.id + "').theme._sel('" + (de++) + "');";
1036
+ pi = DOM.create('a', {'href' : "javascript:;", onmousedown : "return false;", title : ti, 'class' : 'mcePath_' + (de++)}, na);
1037
+
1038
+ if (p.hasChildNodes()) {
1039
+ p.insertBefore(DOM.doc.createTextNode(' \u00bb '), p.firstChild);
1040
+ p.insertBefore(pi, p.firstChild);
1041
+ } else
1042
+ p.appendChild(pi);
1043
+ }, ed.getBody());
1044
+ }
1045
+ },
1046
+
1047
+ // Commands gets called by execCommand
1048
+
1049
+ _sel : function(v) {
1050
+ this.editor.execCommand('mceSelectNodeDepth', false, v);
1051
+ },
1052
+
1053
+ _mceInsertAnchor : function(ui, v) {
1054
+ var ed = this.editor;
1055
+
1056
+ ed.windowManager.open({
1057
+ url : tinymce.baseURL + '/themes/advanced/anchor.htm',
1058
+ width : 320 + parseInt(ed.getLang('advanced.anchor_delta_width', 0)),
1059
+ height : 90 + parseInt(ed.getLang('advanced.anchor_delta_height', 0)),
1060
+ inline : true
1061
+ }, {
1062
+ theme_url : this.url
1063
+ });
1064
+ },
1065
+
1066
+ _mceCharMap : function() {
1067
+ var ed = this.editor;
1068
+
1069
+ ed.windowManager.open({
1070
+ url : tinymce.baseURL + '/themes/advanced/charmap.htm',
1071
+ width : 550 + parseInt(ed.getLang('advanced.charmap_delta_width', 0)),
1072
+ height : 250 + parseInt(ed.getLang('advanced.charmap_delta_height', 0)),
1073
+ inline : true
1074
+ }, {
1075
+ theme_url : this.url
1076
+ });
1077
+ },
1078
+
1079
+ _mceHelp : function() {
1080
+ var ed = this.editor;
1081
+
1082
+ ed.windowManager.open({
1083
+ url : tinymce.baseURL + '/themes/advanced/about.htm',
1084
+ width : 480,
1085
+ height : 380,
1086
+ inline : true
1087
+ }, {
1088
+ theme_url : this.url
1089
+ });
1090
+ },
1091
+
1092
+ _mceColorPicker : function(u, v) {
1093
+ var ed = this.editor;
1094
+
1095
+ v = v || {};
1096
+
1097
+ ed.windowManager.open({
1098
+ url : tinymce.baseURL + '/themes/advanced/color_picker.htm',
1099
+ width : 375 + parseInt(ed.getLang('advanced.colorpicker_delta_width', 0)),
1100
+ height : 250 + parseInt(ed.getLang('advanced.colorpicker_delta_height', 0)),
1101
+ close_previous : false,
1102
+ inline : true
1103
+ }, {
1104
+ input_color : v.color,
1105
+ func : v.func,
1106
+ theme_url : this.url
1107
+ });
1108
+ },
1109
+
1110
+ _mceCodeEditor : function(ui, val) {
1111
+ var ed = this.editor;
1112
+
1113
+ ed.windowManager.open({
1114
+ url : tinymce.baseURL + '/themes/advanced/source_editor.htm',
1115
+ width : parseInt(ed.getParam("theme_advanced_source_editor_width", 720)),
1116
+ height : parseInt(ed.getParam("theme_advanced_source_editor_height", 580)),
1117
+ inline : true,
1118
+ resizable : true,
1119
+ maximizable : true
1120
+ }, {
1121
+ theme_url : this.url
1122
+ });
1123
+ },
1124
+
1125
+ _mceImage : function(ui, val) {
1126
+ var ed = this.editor;
1127
+
1128
+ // Internal image object like a flash placeholder
1129
+ if (ed.dom.getAttrib(ed.selection.getNode(), 'class').indexOf('mceItem') != -1)
1130
+ return;
1131
+
1132
+ ed.windowManager.open({
1133
+ url : tinymce.baseURL + '/themes/advanced/image.htm',
1134
+ width : 355 + parseInt(ed.getLang('advanced.image_delta_width', 0)),
1135
+ height : 275 + parseInt(ed.getLang('advanced.image_delta_height', 0)),
1136
+ inline : true
1137
+ }, {
1138
+ theme_url : this.url
1139
+ });
1140
+ },
1141
+
1142
+ _mceLink : function(ui, val) {
1143
+ var ed = this.editor;
1144
+
1145
+ ed.windowManager.open({
1146
+ url : tinymce.baseURL + '/themes/advanced/link.htm',
1147
+ width : 310 + parseInt(ed.getLang('advanced.link_delta_width', 0)),
1148
+ height : 200 + parseInt(ed.getLang('advanced.link_delta_height', 0)),
1149
+ inline : true
1150
+ }, {
1151
+ theme_url : this.url
1152
+ });
1153
+ },
1154
+
1155
+ _mceNewDocument : function() {
1156
+ var ed = this.editor;
1157
+
1158
+ ed.windowManager.confirm('advanced.newdocument', function(s) {
1159
+ if (s)
1160
+ ed.execCommand('mceSetContent', false, '');
1161
+ });
1162
+ },
1163
+
1164
+ _mceForeColor : function() {
1165
+ var t = this;
1166
+
1167
+ this._mceColorPicker(0, {
1168
+ color: t.fgColor,
1169
+ func : function(co) {
1170
+ t.fgColor = co;
1171
+ t.editor.execCommand('ForeColor', false, co);
1172
+ }
1173
+ });
1174
+ },
1175
+
1176
+ _mceBackColor : function() {
1177
+ var t = this;
1178
+
1179
+ this._mceColorPicker(0, {
1180
+ color: t.bgColor,
1181
+ func : function(co) {
1182
+ t.bgColor = co;
1183
+ t.editor.execCommand('HiliteColor', false, co);
1184
+ }
1185
+ });
1186
+ },
1187
+
1188
+ _ufirst : function(s) {
1189
+ return s.substring(0, 1).toUpperCase() + s.substring(1);
1190
+ }
1191
+ });
1192
+
1193
+ tinymce.ThemeManager.add('advanced', tinymce.themes.AdvancedTheme);
1194
+ }(tinymce));