contentment 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (260) hide show
  1. data/README.rdoc +15 -0
  2. data/config/routes.rb +18 -0
  3. data/lib/contentment.rb +8 -0
  4. data/lib/contentment/engine.rb +16 -0
  5. data/lib/extensions/action_controller/base.rb +5 -0
  6. data/lib/generators/contentment/contentment_views_templates/contents/_preview.html.erb +9 -0
  7. data/lib/generators/contentment/contentment_views_templates/contents/edit.html.erb +56 -0
  8. data/lib/generators/contentment/contentment_views_templates/contents/index.html.erb +28 -0
  9. data/lib/generators/contentment/contentment_views_templates/contents/new.html.erb +37 -0
  10. data/lib/generators/contentment/contentment_views_templates/contents/show.html.erb +22 -0
  11. data/lib/generators/contentment/templates/content.rb +48 -0
  12. data/lib/generators/contentment/templates/contents_controller.rb +58 -0
  13. data/lib/generators/contentment/templates/migration.rb +24 -0
  14. data/lib/generators/contentment_generator.rb +46 -0
  15. data/lib/generators/contentment_views_generator.rb +15 -0
  16. data/public/javascripts/tiny_mce/langs/en.js +169 -0
  17. data/public/javascripts/tiny_mce/license.txt +504 -0
  18. data/public/javascripts/tiny_mce/plugins/advhr/css/advhr.css +5 -0
  19. data/public/javascripts/tiny_mce/plugins/advhr/editor_plugin.js +1 -0
  20. data/public/javascripts/tiny_mce/plugins/advhr/editor_plugin_src.js +57 -0
  21. data/public/javascripts/tiny_mce/plugins/advhr/js/rule.js +43 -0
  22. data/public/javascripts/tiny_mce/plugins/advhr/langs/en_dlg.js +5 -0
  23. data/public/javascripts/tiny_mce/plugins/advhr/rule.htm +62 -0
  24. data/public/javascripts/tiny_mce/plugins/advimage/css/advimage.css +13 -0
  25. data/public/javascripts/tiny_mce/plugins/advimage/editor_plugin.js +1 -0
  26. data/public/javascripts/tiny_mce/plugins/advimage/editor_plugin_src.js +50 -0
  27. data/public/javascripts/tiny_mce/plugins/advimage/image.htm +237 -0
  28. data/public/javascripts/tiny_mce/plugins/advimage/img/sample.gif +0 -0
  29. data/public/javascripts/tiny_mce/plugins/advimage/js/image.js +443 -0
  30. data/public/javascripts/tiny_mce/plugins/advimage/langs/en_dlg.js +43 -0
  31. data/public/javascripts/tiny_mce/plugins/advlink/css/advlink.css +8 -0
  32. data/public/javascripts/tiny_mce/plugins/advlink/editor_plugin.js +1 -0
  33. data/public/javascripts/tiny_mce/plugins/advlink/editor_plugin_src.js +61 -0
  34. data/public/javascripts/tiny_mce/plugins/advlink/js/advlink.js +528 -0
  35. data/public/javascripts/tiny_mce/plugins/advlink/langs/en_dlg.js +52 -0
  36. data/public/javascripts/tiny_mce/plugins/advlink/link.htm +338 -0
  37. data/public/javascripts/tiny_mce/plugins/advlist/editor_plugin.js +1 -0
  38. data/public/javascripts/tiny_mce/plugins/advlist/editor_plugin_src.js +154 -0
  39. data/public/javascripts/tiny_mce/plugins/autoresize/editor_plugin.js +1 -0
  40. data/public/javascripts/tiny_mce/plugins/autoresize/editor_plugin_src.js +117 -0
  41. data/public/javascripts/tiny_mce/plugins/autosave/editor_plugin.js +1 -0
  42. data/public/javascripts/tiny_mce/plugins/autosave/editor_plugin_src.js +422 -0
  43. data/public/javascripts/tiny_mce/plugins/autosave/langs/en.js +4 -0
  44. data/public/javascripts/tiny_mce/plugins/bbcode/editor_plugin.js +1 -0
  45. data/public/javascripts/tiny_mce/plugins/bbcode/editor_plugin_src.js +120 -0
  46. data/public/javascripts/tiny_mce/plugins/contextmenu/editor_plugin.js +1 -0
  47. data/public/javascripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js +127 -0
  48. data/public/javascripts/tiny_mce/plugins/directionality/editor_plugin.js +1 -0
  49. data/public/javascripts/tiny_mce/plugins/directionality/editor_plugin_src.js +82 -0
  50. data/public/javascripts/tiny_mce/plugins/emotions/editor_plugin.js +1 -0
  51. data/public/javascripts/tiny_mce/plugins/emotions/editor_plugin_src.js +43 -0
  52. data/public/javascripts/tiny_mce/plugins/emotions/emotions.htm +40 -0
  53. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-cool.gif +0 -0
  54. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-cry.gif +0 -0
  55. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif +0 -0
  56. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif +0 -0
  57. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-frown.gif +0 -0
  58. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif +0 -0
  59. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif +0 -0
  60. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif +0 -0
  61. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif +0 -0
  62. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif +0 -0
  63. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-smile.gif +0 -0
  64. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif +0 -0
  65. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif +0 -0
  66. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif +0 -0
  67. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-wink.gif +0 -0
  68. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-yell.gif +0 -0
  69. data/public/javascripts/tiny_mce/plugins/emotions/js/emotions.js +22 -0
  70. data/public/javascripts/tiny_mce/plugins/emotions/langs/en_dlg.js +20 -0
  71. data/public/javascripts/tiny_mce/plugins/example/dialog.htm +27 -0
  72. data/public/javascripts/tiny_mce/plugins/example/editor_plugin.js +1 -0
  73. data/public/javascripts/tiny_mce/plugins/example/editor_plugin_src.js +84 -0
  74. data/public/javascripts/tiny_mce/plugins/example/img/example.gif +0 -0
  75. data/public/javascripts/tiny_mce/plugins/example/js/dialog.js +19 -0
  76. data/public/javascripts/tiny_mce/plugins/example/langs/en.js +3 -0
  77. data/public/javascripts/tiny_mce/plugins/example/langs/en_dlg.js +3 -0
  78. data/public/javascripts/tiny_mce/plugins/fullpage/css/fullpage.css +182 -0
  79. data/public/javascripts/tiny_mce/plugins/fullpage/editor_plugin.js +1 -0
  80. data/public/javascripts/tiny_mce/plugins/fullpage/editor_plugin_src.js +149 -0
  81. data/public/javascripts/tiny_mce/plugins/fullpage/fullpage.htm +576 -0
  82. data/public/javascripts/tiny_mce/plugins/fullpage/js/fullpage.js +471 -0
  83. data/public/javascripts/tiny_mce/plugins/fullpage/langs/en_dlg.js +85 -0
  84. data/public/javascripts/tiny_mce/plugins/fullscreen/editor_plugin.js +1 -0
  85. data/public/javascripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js +148 -0
  86. data/public/javascripts/tiny_mce/plugins/fullscreen/fullscreen.htm +110 -0
  87. data/public/javascripts/tiny_mce/plugins/iespell/editor_plugin.js +1 -0
  88. data/public/javascripts/tiny_mce/plugins/iespell/editor_plugin_src.js +54 -0
  89. data/public/javascripts/tiny_mce/plugins/inlinepopups/editor_plugin.js +1 -0
  90. data/public/javascripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js +635 -0
  91. data/public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif +0 -0
  92. data/public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif +0 -0
  93. data/public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif +0 -0
  94. data/public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif +0 -0
  95. data/public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif +0 -0
  96. data/public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif +0 -0
  97. data/public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif +0 -0
  98. data/public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css +90 -0
  99. data/public/javascripts/tiny_mce/plugins/inlinepopups/template.htm +387 -0
  100. data/public/javascripts/tiny_mce/plugins/insertdatetime/editor_plugin.js +1 -0
  101. data/public/javascripts/tiny_mce/plugins/insertdatetime/editor_plugin_src.js +83 -0
  102. data/public/javascripts/tiny_mce/plugins/layer/editor_plugin.js +1 -0
  103. data/public/javascripts/tiny_mce/plugins/layer/editor_plugin_src.js +212 -0
  104. data/public/javascripts/tiny_mce/plugins/legacyoutput/editor_plugin.js +1 -0
  105. data/public/javascripts/tiny_mce/plugins/legacyoutput/editor_plugin_src.js +133 -0
  106. data/public/javascripts/tiny_mce/plugins/media/css/content.css +6 -0
  107. data/public/javascripts/tiny_mce/plugins/media/css/media.css +16 -0
  108. data/public/javascripts/tiny_mce/plugins/media/editor_plugin.js +1 -0
  109. data/public/javascripts/tiny_mce/plugins/media/editor_plugin_src.js +414 -0
  110. data/public/javascripts/tiny_mce/plugins/media/img/flash.gif +0 -0
  111. data/public/javascripts/tiny_mce/plugins/media/img/flv_player.swf +0 -0
  112. data/public/javascripts/tiny_mce/plugins/media/img/quicktime.gif +0 -0
  113. data/public/javascripts/tiny_mce/plugins/media/img/realmedia.gif +0 -0
  114. data/public/javascripts/tiny_mce/plugins/media/img/shockwave.gif +0 -0
  115. data/public/javascripts/tiny_mce/plugins/media/img/trans.gif +0 -0
  116. data/public/javascripts/tiny_mce/plugins/media/img/windowsmedia.gif +0 -0
  117. data/public/javascripts/tiny_mce/plugins/media/js/embed.js +73 -0
  118. data/public/javascripts/tiny_mce/plugins/media/js/media.js +630 -0
  119. data/public/javascripts/tiny_mce/plugins/media/langs/en_dlg.js +103 -0
  120. data/public/javascripts/tiny_mce/plugins/media/media.htm +822 -0
  121. data/public/javascripts/tiny_mce/plugins/nonbreaking/editor_plugin.js +1 -0
  122. data/public/javascripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js +53 -0
  123. data/public/javascripts/tiny_mce/plugins/noneditable/editor_plugin.js +1 -0
  124. data/public/javascripts/tiny_mce/plugins/noneditable/editor_plugin_src.js +90 -0
  125. data/public/javascripts/tiny_mce/plugins/pagebreak/css/content.css +1 -0
  126. data/public/javascripts/tiny_mce/plugins/pagebreak/editor_plugin.js +1 -0
  127. data/public/javascripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js +77 -0
  128. data/public/javascripts/tiny_mce/plugins/pagebreak/img/pagebreak.gif +0 -0
  129. data/public/javascripts/tiny_mce/plugins/pagebreak/img/trans.gif +0 -0
  130. data/public/javascripts/tiny_mce/plugins/paste/editor_plugin.js +1 -0
  131. data/public/javascripts/tiny_mce/plugins/paste/editor_plugin_src.js +929 -0
  132. data/public/javascripts/tiny_mce/plugins/paste/js/pastetext.js +36 -0
  133. data/public/javascripts/tiny_mce/plugins/paste/js/pasteword.js +51 -0
  134. data/public/javascripts/tiny_mce/plugins/paste/langs/en_dlg.js +5 -0
  135. data/public/javascripts/tiny_mce/plugins/paste/pastetext.htm +33 -0
  136. data/public/javascripts/tiny_mce/plugins/paste/pasteword.htm +27 -0
  137. data/public/javascripts/tiny_mce/plugins/preview/editor_plugin.js +1 -0
  138. data/public/javascripts/tiny_mce/plugins/preview/editor_plugin_src.js +53 -0
  139. data/public/javascripts/tiny_mce/plugins/preview/example.html +28 -0
  140. data/public/javascripts/tiny_mce/plugins/preview/jscripts/embed.js +73 -0
  141. data/public/javascripts/tiny_mce/plugins/preview/preview.html +17 -0
  142. data/public/javascripts/tiny_mce/plugins/print/editor_plugin.js +1 -0
  143. data/public/javascripts/tiny_mce/plugins/print/editor_plugin_src.js +34 -0
  144. data/public/javascripts/tiny_mce/plugins/save/editor_plugin.js +1 -0
  145. data/public/javascripts/tiny_mce/plugins/save/editor_plugin_src.js +101 -0
  146. data/public/javascripts/tiny_mce/plugins/searchreplace/css/searchreplace.css +6 -0
  147. data/public/javascripts/tiny_mce/plugins/searchreplace/editor_plugin.js +1 -0
  148. data/public/javascripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js +57 -0
  149. data/public/javascripts/tiny_mce/plugins/searchreplace/js/searchreplace.js +126 -0
  150. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/en_dlg.js +16 -0
  151. data/public/javascripts/tiny_mce/plugins/searchreplace/searchreplace.htm +104 -0
  152. data/public/javascripts/tiny_mce/plugins/spellchecker/css/content.css +1 -0
  153. data/public/javascripts/tiny_mce/plugins/spellchecker/editor_plugin.js +1 -0
  154. data/public/javascripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js +341 -0
  155. data/public/javascripts/tiny_mce/plugins/spellchecker/img/wline.gif +0 -0
  156. data/public/javascripts/tiny_mce/plugins/style/css/props.css +13 -0
  157. data/public/javascripts/tiny_mce/plugins/style/editor_plugin.js +1 -0
  158. data/public/javascripts/tiny_mce/plugins/style/editor_plugin_src.js +55 -0
  159. data/public/javascripts/tiny_mce/plugins/style/js/props.js +641 -0
  160. data/public/javascripts/tiny_mce/plugins/style/langs/en_dlg.js +63 -0
  161. data/public/javascripts/tiny_mce/plugins/style/props.htm +730 -0
  162. data/public/javascripts/tiny_mce/plugins/tabfocus/editor_plugin.js +1 -0
  163. data/public/javascripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js +112 -0
  164. data/public/javascripts/tiny_mce/plugins/table/cell.htm +183 -0
  165. data/public/javascripts/tiny_mce/plugins/table/css/cell.css +17 -0
  166. data/public/javascripts/tiny_mce/plugins/table/css/row.css +25 -0
  167. data/public/javascripts/tiny_mce/plugins/table/css/table.css +13 -0
  168. data/public/javascripts/tiny_mce/plugins/table/editor_plugin.js +1 -0
  169. data/public/javascripts/tiny_mce/plugins/table/editor_plugin_src.js +1118 -0
  170. data/public/javascripts/tiny_mce/plugins/table/js/cell.js +269 -0
  171. data/public/javascripts/tiny_mce/plugins/table/js/merge_cells.js +27 -0
  172. data/public/javascripts/tiny_mce/plugins/table/js/row.js +212 -0
  173. data/public/javascripts/tiny_mce/plugins/table/js/table.js +449 -0
  174. data/public/javascripts/tiny_mce/plugins/table/langs/en_dlg.js +74 -0
  175. data/public/javascripts/tiny_mce/plugins/table/merge_cells.htm +37 -0
  176. data/public/javascripts/tiny_mce/plugins/table/row.htm +160 -0
  177. data/public/javascripts/tiny_mce/plugins/table/table.htm +192 -0
  178. data/public/javascripts/tiny_mce/plugins/template/blank.htm +12 -0
  179. data/public/javascripts/tiny_mce/plugins/template/css/template.css +23 -0
  180. data/public/javascripts/tiny_mce/plugins/template/editor_plugin.js +1 -0
  181. data/public/javascripts/tiny_mce/plugins/template/editor_plugin_src.js +159 -0
  182. data/public/javascripts/tiny_mce/plugins/template/js/template.js +106 -0
  183. data/public/javascripts/tiny_mce/plugins/template/langs/en_dlg.js +15 -0
  184. data/public/javascripts/tiny_mce/plugins/template/template.htm +38 -0
  185. data/public/javascripts/tiny_mce/plugins/visualchars/editor_plugin.js +1 -0
  186. data/public/javascripts/tiny_mce/plugins/visualchars/editor_plugin_src.js +76 -0
  187. data/public/javascripts/tiny_mce/plugins/wordcount/editor_plugin.js +1 -0
  188. data/public/javascripts/tiny_mce/plugins/wordcount/editor_plugin_src.js +98 -0
  189. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/abbr.htm +148 -0
  190. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/acronym.htm +148 -0
  191. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/attributes.htm +153 -0
  192. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/cite.htm +148 -0
  193. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/css/attributes.css +11 -0
  194. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/css/popup.css +9 -0
  195. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/del.htm +169 -0
  196. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/editor_plugin.js +1 -0
  197. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js +139 -0
  198. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/ins.htm +169 -0
  199. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/js/abbr.js +28 -0
  200. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js +28 -0
  201. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js +126 -0
  202. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/js/cite.js +28 -0
  203. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/js/del.js +63 -0
  204. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js +234 -0
  205. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/js/ins.js +62 -0
  206. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js +32 -0
  207. data/public/javascripts/tiny_mce/themes/advanced/about.htm +56 -0
  208. data/public/javascripts/tiny_mce/themes/advanced/anchor.htm +31 -0
  209. data/public/javascripts/tiny_mce/themes/advanced/charmap.htm +53 -0
  210. data/public/javascripts/tiny_mce/themes/advanced/color_picker.htm +75 -0
  211. data/public/javascripts/tiny_mce/themes/advanced/editor_template.js +1 -0
  212. data/public/javascripts/tiny_mce/themes/advanced/editor_template_src.js +1209 -0
  213. data/public/javascripts/tiny_mce/themes/advanced/image.htm +85 -0
  214. data/public/javascripts/tiny_mce/themes/advanced/img/colorpicker.jpg +0 -0
  215. data/public/javascripts/tiny_mce/themes/advanced/img/icons.gif +0 -0
  216. data/public/javascripts/tiny_mce/themes/advanced/js/about.js +72 -0
  217. data/public/javascripts/tiny_mce/themes/advanced/js/anchor.js +37 -0
  218. data/public/javascripts/tiny_mce/themes/advanced/js/charmap.js +335 -0
  219. data/public/javascripts/tiny_mce/themes/advanced/js/color_picker.js +253 -0
  220. data/public/javascripts/tiny_mce/themes/advanced/js/image.js +245 -0
  221. data/public/javascripts/tiny_mce/themes/advanced/js/link.js +156 -0
  222. data/public/javascripts/tiny_mce/themes/advanced/js/source_editor.js +62 -0
  223. data/public/javascripts/tiny_mce/themes/advanced/langs/en.js +62 -0
  224. data/public/javascripts/tiny_mce/themes/advanced/langs/en_dlg.js +51 -0
  225. data/public/javascripts/tiny_mce/themes/advanced/link.htm +63 -0
  226. data/public/javascripts/tiny_mce/themes/advanced/skins/default/content.css +36 -0
  227. data/public/javascripts/tiny_mce/themes/advanced/skins/default/dialog.css +116 -0
  228. data/public/javascripts/tiny_mce/themes/advanced/skins/default/img/buttons.png +0 -0
  229. data/public/javascripts/tiny_mce/themes/advanced/skins/default/img/items.gif +0 -0
  230. data/public/javascripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif +0 -0
  231. data/public/javascripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif +0 -0
  232. data/public/javascripts/tiny_mce/themes/advanced/skins/default/img/progress.gif +0 -0
  233. data/public/javascripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif +0 -0
  234. data/public/javascripts/tiny_mce/themes/advanced/skins/default/ui.css +215 -0
  235. data/public/javascripts/tiny_mce/themes/advanced/skins/o2k7/content.css +35 -0
  236. data/public/javascripts/tiny_mce/themes/advanced/skins/o2k7/dialog.css +115 -0
  237. data/public/javascripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png +0 -0
  238. data/public/javascripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png +0 -0
  239. data/public/javascripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png +0 -0
  240. data/public/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui.css +216 -0
  241. data/public/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui_black.css +8 -0
  242. data/public/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css +5 -0
  243. data/public/javascripts/tiny_mce/themes/advanced/source_editor.htm +31 -0
  244. data/public/javascripts/tiny_mce/themes/simple/editor_template.js +1 -0
  245. data/public/javascripts/tiny_mce/themes/simple/editor_template_src.js +85 -0
  246. data/public/javascripts/tiny_mce/themes/simple/img/icons.gif +0 -0
  247. data/public/javascripts/tiny_mce/themes/simple/langs/en.js +11 -0
  248. data/public/javascripts/tiny_mce/themes/simple/skins/default/content.css +25 -0
  249. data/public/javascripts/tiny_mce/themes/simple/skins/default/ui.css +32 -0
  250. data/public/javascripts/tiny_mce/themes/simple/skins/o2k7/content.css +17 -0
  251. data/public/javascripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png +0 -0
  252. data/public/javascripts/tiny_mce/themes/simple/skins/o2k7/ui.css +35 -0
  253. data/public/javascripts/tiny_mce/tiny_mce.js +1 -0
  254. data/public/javascripts/tiny_mce/tiny_mce_popup.js +5 -0
  255. data/public/javascripts/tiny_mce/tiny_mce_src.js +13771 -0
  256. data/public/javascripts/tiny_mce/utils/editable_selects.js +70 -0
  257. data/public/javascripts/tiny_mce/utils/form_utils.js +200 -0
  258. data/public/javascripts/tiny_mce/utils/mctabs.js +77 -0
  259. data/public/javascripts/tiny_mce/utils/validate.js +220 -0
  260. metadata +322 -0
@@ -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,56 @@
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
+ <div style="float: right">
52
+ <input type="button" id="cancel" name="cancel" value="{#close}" onclick="tinyMCEPopup.close();" />
53
+ </div>
54
+ </div>
55
+ </body>
56
+ </html>
@@ -0,0 +1,31 @@
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
+ <div style="float: left">
22
+ <input type="submit" id="insert" name="insert" value="{#update}" />
23
+ </div>
24
+
25
+ <div style="float: right">
26
+ <input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
27
+ </div>
28
+ </div>
29
+ </form>
30
+ </body>
31
+ </html>
@@ -0,0 +1,53 @@
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
+ <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
6
+ <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
7
+ <script type="text/javascript" src="js/charmap.js"></script>
8
+ </head>
9
+ <body id="charmap" style="display:none">
10
+ <table align="center" border="0" cellspacing="0" cellpadding="2">
11
+ <tr>
12
+ <td colspan="2" class="title">{#advanced_dlg.charmap_title}</td>
13
+ </tr>
14
+ <tr>
15
+ <td id="charmapView" rowspan="2" align="left" valign="top">
16
+ <!-- Chars will be rendered here -->
17
+ </td>
18
+ <td width="100" align="center" valign="top">
19
+ <table border="0" cellpadding="0" cellspacing="0" width="100" style="height:100px">
20
+ <tr>
21
+ <td id="codeV">&nbsp;</td>
22
+ </tr>
23
+ <tr>
24
+ <td id="codeN">&nbsp;</td>
25
+ </tr>
26
+ </table>
27
+ </td>
28
+ </tr>
29
+ <tr>
30
+ <td valign="bottom" style="padding-bottom: 3px;">
31
+ <table width="100" align="center" border="0" cellpadding="2" cellspacing="0">
32
+ <tr>
33
+ <td align="center" style="border-left: 1px solid #666699; border-top: 1px solid #666699; border-right: 1px solid #666699;">HTML-Code</td>
34
+ </tr>
35
+ <tr>
36
+ <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>
37
+ </tr>
38
+ <tr>
39
+ <td style="font-size: 1px;">&nbsp;</td>
40
+ </tr>
41
+ <tr>
42
+ <td align="center" style="border-left: 1px solid #666699; border-top: 1px solid #666699; border-right: 1px solid #666699;">NUM-Code</td>
43
+ </tr>
44
+ <tr>
45
+ <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>
46
+ </tr>
47
+ </table>
48
+ </td>
49
+ </tr>
50
+ </table>
51
+
52
+ </body>
53
+ </html>
@@ -0,0 +1,75 @@
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
+ <div style="float: left">
64
+ <input type="submit" id="insert" name="insert" value="{#apply}" />
65
+ </div>
66
+
67
+ <div id="preview"></div>
68
+
69
+ <div id="previewblock">
70
+ <label for="color">{#advanced_dlg.colorpicker_color}</label> <input id="color" type="text" size="8" maxlength="8" class="text mceFocus" />
71
+ </div>
72
+ </div>
73
+ </form>
74
+ </body>
75
+ </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",classes:n["class"]});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(n){i.focus();i.formatter.toggle(n);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});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);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.fontSize){k.execCommand("FontSize",false,i.fontSize)}else{f(m.settings.theme_advanced_font_sizes,function(p,o){if(p["class"]){j.push(p["class"])}});k.editorCommands._applyInlineStyle("span",{"class":i["class"]},{check_classes:j})}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=j.settings,n=d.get(j.id+"_tbl"),o=d.get(j.id+"_ifr"),m;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);m=n.clientHeight-o.clientHeight;d.setStyle(o,"height",l-m);d.setStyles(n,{width:i,height:l})},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}if(w.theme_advanced_resize_horizontal){r.style.width=Math.max(10,n.cw)+"px"}r.style.height=Math.max(10,n.ch)+"px";d.get(p.id+"_ifr").style.height=Math.max(10,parseInt(n.ch)+v.deltaHeight)+"px"})}p.onPostRender.add(function(){b.add(p.id+"_resize","mousedown",function(x){var z,t,o,s,y,r;z=d.get(p.id+"_tbl");o=z.clientWidth;s=z.clientHeight;miw=w.theme_advanced_resizing_min_width||100;mih=w.theme_advanced_resizing_min_height||100;maw=w.theme_advanced_resizing_max_width||65535;mah=w.theme_advanced_resizing_max_height||65535;t=d.add(d.get(p.id+"_parent"),"div",{"class":"mcePlaceHolder"});d.setStyles(t,{width:o,height:s});d.hide(z);d.show(t);i={x:x.screenX,y:x.screenY,w:o,h:s,dx:null,dy:null};q=b.add(d.doc,"mousemove",function(B){var n,A;i.dx=B.screenX-i.x;i.dy=B.screenY-i.y;n=Math.max(miw,i.w+i.dx);A=Math.max(mih,i.h+i.dy);n=Math.min(maw,n);A=Math.min(mah,A);if(w.theme_advanced_resize_horizontal){t.style.width=n+"px"}t.style.height=A+"px";return b.cancel(B)});u=b.add(d.doc,"mouseup",function(n){var A;b.remove(d.doc,"mousemove",q);b.remove(d.doc,"mouseup",u);z.style.display="";d.remove(t);if(i.dx===null){return}A=d.get(p.id+"_ifr");if(w.theme_advanced_resize_horizontal){z.style.width=Math.max(10,i.w+i.dx)+"px"}z.style.height=Math.max(10,i.h+i.dy)+"px";A.style.height=Math.max(10,A.clientHeight+i.dy)+"px";if(w.theme_advanced_resizing_use_cookie){a.setHash("TinyMCE_"+p.id+"_size",{cw:i.w+i.dx,ch:i.h+i.dy})}});return b.cancel(x)})})}j.deltaHeight-=21;k=m=null},_nodeChanged:function(o,x,l,u,j){var A=this,i,w=0,z,q,B=A.settings,y,k,r;e.each(A.stateControls,function(n){x.setActive(n,o.queryCommandState(A.controls[n][1]))});function m(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]}}}x.setActive("visualaid",o.hasVisual);x.setDisabled("undo",!o.undoManager.hasUndo()&&!o.typing);x.setDisabled("redo",!o.undoManager.hasRedo());x.setDisabled("outdent",!o.queryCommandState("Outdent"));i=m("A");if(q=x.get("link")){if(!i||!i.name){q.setDisabled(!i&&u);q.setActive(!!i)}}if(q=x.get("unlink")){q.setDisabled(!i&&u);q.setActive(!!i&&!i.name)}if(q=x.get("anchor")){q.setActive(!!i&&i.name);if(e.isWebKit){i=m("IMG");q.setActive(!!i&&d.getAttrib(i,"mce_name")=="a")}}i=m("IMG");if(q=x.get("image")){q.setActive(!!i&&l.className.indexOf("mceItem")==-1)}if(q=x.get("styleselect")){A._importClasses();q.select(function(n){return !!o.formatter.match(n)})}if(q=x.get("formatselect")){i=m(d.isBlock);if(i){q.select(i.nodeName.toLowerCase())}}m(function(p){if(p.nodeName==="SPAN"){if(!y&&p.className){y=p.className}if(!k&&p.style.fontSize){k=p.style.fontSize}if(!r&&p.style.fontFamily){r=p.style.fontFamily.replace(/[\"\']+/g,"").replace(/^([^,]+).*/,"$1").toLowerCase()}}return false});if(q=x.get("fontselect")){q.select(function(n){return n.replace(/^([^,]+).*/,"$1").toLowerCase()==r})}if(q=x.get("fontsizeselect")){if(B.theme_advanced_runtime_fontsize&&!k&&!y){k=o.dom.getStyle(l,"fontSize",true)}q.select(function(n){if(n.fontSize&&n.fontSize===k){return true}if(n["class"]&&n["class"]===y){return true}})}if(B.theme_advanced_path&&B.theme_advanced_statusbar_location){i=d.get(o.id+"_path")||d.add(o.id+"_path_row","span",{id:o.id+"_path"});d.setHTML(i,"");m(function(C){var p=C.nodeName.toLowerCase(),s,v,t="";if(C.nodeType!=1||C.nodeName==="BR"||(d.hasClass(C,"mceItemHidden")||d.hasClass(C,"mceItemRemoved"))){return}if(z=d.getAttrib(C,"mce_name")){p=z}if(e.isIE&&C.scopeName!=="HTML"){p=C.scopeName+":"+p}p=p.replace(/mce\:/g,"");switch(p){case"b":p="strong";break;case"i":p="em";break;case"img":if(z=d.getAttrib(C,"src")){t+="src: "+z+" "}break;case"a":if(z=d.getAttrib(C,"name")){t+="name: "+z+" ";p+="#"+z}if(z=d.getAttrib(C,"href")){t+="href: "+z+" "}break;case"font":if(z=d.getAttrib(C,"face")){t+="font: "+z+" "}if(z=d.getAttrib(C,"size")){t+="size: "+z+" "}if(z=d.getAttrib(C,"color")){t+="color: "+z+" "}break;case"span":if(z=d.getAttrib(C,"style")){t+="style: "+z+" "}break}if(z=d.getAttrib(C,"id")){t+="id: "+z+" "}if(z=C.className){z=z.replace(/\b\s*(webkit|mce|Apple-)\w+\s*\b/g,"");if(z){t+="class: "+z+" ";if(d.isBlock(C)||p=="img"||p=="span"){p+="."+z}}}p=p.replace(/(html:)/g,"");p={name:p,node:C,title:t};A.onResolveName.dispatch(A,p);t=p.title;p=p.name;v=d.create("a",{href:"javascript:;",onmousedown:"return false;",title:t,"class":"mcePath_"+(w++)},p);if(i.hasChildNodes()){i.insertBefore(d.doc.createTextNode(" \u00bb "),i.firstChild);i.insertBefore(v,i.firstChild)}else{i.appendChild(v)}},o.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,1209 @@
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
+ classes : o['class']
207
+ });
208
+
209
+ ctrl.add(o['class'], name);
210
+ });
211
+ }
212
+ },
213
+
214
+ _createStyleSelect : function(n) {
215
+ var t = this, ed = t.editor, ctrlMan = ed.controlManager, ctrl;
216
+
217
+ // Setup style select box
218
+ ctrl = ctrlMan.createListBox('styleselect', {
219
+ title : 'advanced.style_select',
220
+ onselect : function(name) {
221
+ ed.focus();
222
+ ed.formatter.toggle(name);
223
+
224
+ return false; // No auto select
225
+ }
226
+ });
227
+
228
+ // Handle specified format
229
+ ed.onInit.add(function() {
230
+ var counter = 0, formats = ed.getParam('style_formats');
231
+
232
+ if (formats) {
233
+ each(formats, function(fmt) {
234
+ var name, keys = 0;
235
+
236
+ each(fmt, function() {keys++;});
237
+
238
+ if (keys > 1) {
239
+ name = fmt.name = fmt.name || 'style_' + (counter++);
240
+ ed.formatter.register(name, fmt);
241
+ ctrl.add(fmt.title, name);
242
+ } else
243
+ ctrl.add(fmt.title);
244
+ });
245
+ } else {
246
+ each(ed.getParam('theme_advanced_styles', '', 'hash'), function(val, key) {
247
+ var name;
248
+
249
+ if (val) {
250
+ name = 'style_' + (counter++);
251
+
252
+ ed.formatter.register(name, {
253
+ inline : 'span',
254
+ classes : val
255
+ });
256
+
257
+ ctrl.add(t.editor.translate(key), name);
258
+ }
259
+ });
260
+ }
261
+ });
262
+
263
+ // Auto import classes if the ctrl box is empty
264
+ if (ctrl.getLength() == 0) {
265
+ ctrl.onPostRender.add(function(ed, n) {
266
+ if (!ctrl.NativeListBox) {
267
+ Event.add(n.id + '_text', 'focus', t._importClasses, t);
268
+ Event.add(n.id + '_text', 'mousedown', t._importClasses, t);
269
+ Event.add(n.id + '_open', 'focus', t._importClasses, t);
270
+ Event.add(n.id + '_open', 'mousedown', t._importClasses, t);
271
+ } else
272
+ Event.add(n.id, 'focus', t._importClasses, t);
273
+ });
274
+ }
275
+
276
+ return ctrl;
277
+ },
278
+
279
+ _createFontSelect : function() {
280
+ var c, t = this, ed = t.editor;
281
+
282
+ c = ed.controlManager.createListBox('fontselect', {
283
+ title : 'advanced.fontdefault',
284
+ onselect : function(v) {
285
+ ed.execCommand('FontName', false, v);
286
+ return false; // No auto select
287
+ }
288
+ });
289
+
290
+ if (c) {
291
+ each(ed.getParam('theme_advanced_fonts', t.settings.theme_advanced_fonts, 'hash'), function(v, k) {
292
+ c.add(ed.translate(k), v, {style : v.indexOf('dings') == -1 ? 'font-family:' + v : ''});
293
+ });
294
+ }
295
+
296
+ return c;
297
+ },
298
+
299
+ _createFontSizeSelect : function() {
300
+ var t = this, ed = t.editor, c, i = 0, cl = [];
301
+
302
+ c = ed.controlManager.createListBox('fontsizeselect', {title : 'advanced.font_size', onselect : function(v) {
303
+ if (v.fontSize)
304
+ ed.execCommand('FontSize', false, v.fontSize);
305
+ else {
306
+ each(t.settings.theme_advanced_font_sizes, function(v, k) {
307
+ if (v['class'])
308
+ cl.push(v['class']);
309
+ });
310
+
311
+ ed.editorCommands._applyInlineStyle('span', {'class' : v['class']}, {check_classes : cl});
312
+ }
313
+
314
+ return false; // No auto select
315
+ }});
316
+
317
+ if (c) {
318
+ each(t.settings.theme_advanced_font_sizes, function(v, k) {
319
+ var fz = v.fontSize;
320
+
321
+ if (fz >= 1 && fz <= 7)
322
+ fz = t.sizes[parseInt(fz) - 1] + 'pt';
323
+
324
+ c.add(k, v, {'style' : 'font-size:' + fz, 'class' : 'mceFontSize' + (i++) + (' ' + (v['class'] || ''))});
325
+ });
326
+ }
327
+
328
+ return c;
329
+ },
330
+
331
+ _createBlockFormats : function() {
332
+ var c, fmts = {
333
+ p : 'advanced.paragraph',
334
+ address : 'advanced.address',
335
+ pre : 'advanced.pre',
336
+ h1 : 'advanced.h1',
337
+ h2 : 'advanced.h2',
338
+ h3 : 'advanced.h3',
339
+ h4 : 'advanced.h4',
340
+ h5 : 'advanced.h5',
341
+ h6 : 'advanced.h6',
342
+ div : 'advanced.div',
343
+ blockquote : 'advanced.blockquote',
344
+ code : 'advanced.code',
345
+ dt : 'advanced.dt',
346
+ dd : 'advanced.dd',
347
+ samp : 'advanced.samp'
348
+ }, t = this;
349
+
350
+ c = t.editor.controlManager.createListBox('formatselect', {title : 'advanced.block', cmd : 'FormatBlock'});
351
+ if (c) {
352
+ each(t.editor.getParam('theme_advanced_blockformats', t.settings.theme_advanced_blockformats, 'hash'), function(v, k) {
353
+ c.add(t.editor.translate(k != v ? k : fmts[v]), v, {'class' : 'mce_formatPreview mce_' + v});
354
+ });
355
+ }
356
+
357
+ return c;
358
+ },
359
+
360
+ _createForeColorMenu : function() {
361
+ var c, t = this, s = t.settings, o = {}, v;
362
+
363
+ if (s.theme_advanced_more_colors) {
364
+ o.more_colors_func = function() {
365
+ t._mceColorPicker(0, {
366
+ color : c.value,
367
+ func : function(co) {
368
+ c.setColor(co);
369
+ }
370
+ });
371
+ };
372
+ }
373
+
374
+ if (v = s.theme_advanced_text_colors)
375
+ o.colors = v;
376
+
377
+ if (s.theme_advanced_default_foreground_color)
378
+ o.default_color = s.theme_advanced_default_foreground_color;
379
+
380
+ o.title = 'advanced.forecolor_desc';
381
+ o.cmd = 'ForeColor';
382
+ o.scope = this;
383
+
384
+ c = t.editor.controlManager.createColorSplitButton('forecolor', o);
385
+
386
+ return c;
387
+ },
388
+
389
+ _createBackColorMenu : function() {
390
+ var c, t = this, s = t.settings, o = {}, v;
391
+
392
+ if (s.theme_advanced_more_colors) {
393
+ o.more_colors_func = function() {
394
+ t._mceColorPicker(0, {
395
+ color : c.value,
396
+ func : function(co) {
397
+ c.setColor(co);
398
+ }
399
+ });
400
+ };
401
+ }
402
+
403
+ if (v = s.theme_advanced_background_colors)
404
+ o.colors = v;
405
+
406
+ if (s.theme_advanced_default_background_color)
407
+ o.default_color = s.theme_advanced_default_background_color;
408
+
409
+ o.title = 'advanced.backcolor_desc';
410
+ o.cmd = 'HiliteColor';
411
+ o.scope = this;
412
+
413
+ c = t.editor.controlManager.createColorSplitButton('backcolor', o);
414
+
415
+ return c;
416
+ },
417
+
418
+ renderUI : function(o) {
419
+ var n, ic, tb, t = this, ed = t.editor, s = t.settings, sc, p, nl;
420
+
421
+ 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) : '')});
422
+
423
+ if (!DOM.boxModel)
424
+ n = DOM.add(n, 'div', {'class' : 'mceOldBoxModel'});
425
+
426
+ n = sc = DOM.add(n, 'table', {id : ed.id + '_tbl', 'class' : 'mceLayout', cellSpacing : 0, cellPadding : 0});
427
+ n = tb = DOM.add(n, 'tbody');
428
+
429
+ switch ((s.theme_advanced_layout_manager || '').toLowerCase()) {
430
+ case "rowlayout":
431
+ ic = t._rowLayout(s, tb, o);
432
+ break;
433
+
434
+ case "customlayout":
435
+ ic = ed.execCallback("theme_advanced_custom_layout", s, tb, o, p);
436
+ break;
437
+
438
+ default:
439
+ ic = t._simpleLayout(s, tb, o, p);
440
+ }
441
+
442
+ n = o.targetNode;
443
+
444
+ // Add classes to first and last TRs
445
+ nl = DOM.stdMode ? sc.getElementsByTagName('tr') : sc.rows; // Quick fix for IE 8
446
+ DOM.addClass(nl[0], 'mceFirst');
447
+ DOM.addClass(nl[nl.length - 1], 'mceLast');
448
+
449
+ // Add classes to first and last TDs
450
+ each(DOM.select('tr', tb), function(n) {
451
+ DOM.addClass(n.firstChild, 'mceFirst');
452
+ DOM.addClass(n.childNodes[n.childNodes.length - 1], 'mceLast');
453
+ });
454
+
455
+ if (DOM.get(s.theme_advanced_toolbar_container))
456
+ DOM.get(s.theme_advanced_toolbar_container).appendChild(p);
457
+ else
458
+ DOM.insertAfter(p, n);
459
+
460
+ Event.add(ed.id + '_path_row', 'click', function(e) {
461
+ e = e.target;
462
+
463
+ if (e.nodeName == 'A') {
464
+ t._sel(e.className.replace(/^.*mcePath_([0-9]+).*$/, '$1'));
465
+
466
+ return Event.cancel(e);
467
+ }
468
+ });
469
+ /*
470
+ if (DOM.get(ed.id + '_path_row')) {
471
+ Event.add(ed.id + '_tbl', 'mouseover', function(e) {
472
+ var re;
473
+
474
+ e = e.target;
475
+
476
+ if (e.nodeName == 'SPAN' && DOM.hasClass(e.parentNode, 'mceButton')) {
477
+ re = DOM.get(ed.id + '_path_row');
478
+ t.lastPath = re.innerHTML;
479
+ DOM.setHTML(re, e.parentNode.title);
480
+ }
481
+ });
482
+
483
+ Event.add(ed.id + '_tbl', 'mouseout', function(e) {
484
+ if (t.lastPath) {
485
+ DOM.setHTML(ed.id + '_path_row', t.lastPath);
486
+ t.lastPath = 0;
487
+ }
488
+ });
489
+ }
490
+ */
491
+
492
+ if (!ed.getParam('accessibility_focus'))
493
+ Event.add(DOM.add(p, 'a', {href : '#'}, '<!-- IE -->'), 'focus', function() {tinyMCE.get(ed.id).focus();});
494
+
495
+ if (s.theme_advanced_toolbar_location == 'external')
496
+ o.deltaHeight = 0;
497
+
498
+ t.deltaHeight = o.deltaHeight;
499
+ o.targetNode = null;
500
+
501
+ return {
502
+ iframeContainer : ic,
503
+ editorContainer : ed.id + '_parent',
504
+ sizeContainer : sc,
505
+ deltaHeight : o.deltaHeight
506
+ };
507
+ },
508
+
509
+ getInfo : function() {
510
+ return {
511
+ longname : 'Advanced theme',
512
+ author : 'Moxiecode Systems AB',
513
+ authorurl : 'http://tinymce.moxiecode.com',
514
+ version : tinymce.majorVersion + "." + tinymce.minorVersion
515
+ }
516
+ },
517
+
518
+ resizeBy : function(dw, dh) {
519
+ var e = DOM.get(this.editor.id + '_tbl');
520
+
521
+ this.resizeTo(e.clientWidth + dw, e.clientHeight + dh);
522
+ },
523
+
524
+ resizeTo : function(w, h) {
525
+ var ed = this.editor, s = ed.settings, e = DOM.get(ed.id + '_tbl'), ifr = DOM.get(ed.id + '_ifr'), dh;
526
+
527
+ // Boundery fix box
528
+ w = Math.max(s.theme_advanced_resizing_min_width || 100, w);
529
+ h = Math.max(s.theme_advanced_resizing_min_height || 100, h);
530
+ w = Math.min(s.theme_advanced_resizing_max_width || 0xFFFF, w);
531
+ h = Math.min(s.theme_advanced_resizing_max_height || 0xFFFF, h);
532
+
533
+ // Calc difference between iframe and container
534
+ dh = e.clientHeight - ifr.clientHeight;
535
+
536
+ // Resize iframe and container
537
+ DOM.setStyle(ifr, 'height', h - dh);
538
+ DOM.setStyles(e, {width : w, height : h});
539
+ },
540
+
541
+ destroy : function() {
542
+ var id = this.editor.id;
543
+
544
+ Event.clear(id + '_resize');
545
+ Event.clear(id + '_path_row');
546
+ Event.clear(id + '_external_close');
547
+ },
548
+
549
+ // Internal functions
550
+
551
+ _simpleLayout : function(s, tb, o, p) {
552
+ var t = this, ed = t.editor, lo = s.theme_advanced_toolbar_location, sl = s.theme_advanced_statusbar_location, n, ic, etb, c;
553
+
554
+ if (s.readonly) {
555
+ n = DOM.add(tb, 'tr');
556
+ n = ic = DOM.add(n, 'td', {'class' : 'mceIframeContainer'});
557
+ return ic;
558
+ }
559
+
560
+ // Create toolbar container at top
561
+ if (lo == 'top')
562
+ t._addToolbars(tb, o);
563
+
564
+ // Create external toolbar
565
+ if (lo == 'external') {
566
+ n = c = DOM.create('div', {style : 'position:relative'});
567
+ n = DOM.add(n, 'div', {id : ed.id + '_external', 'class' : 'mceExternalToolbar'});
568
+ DOM.add(n, 'a', {id : ed.id + '_external_close', href : 'javascript:;', 'class' : 'mceExternalClose'});
569
+ n = DOM.add(n, 'table', {id : ed.id + '_tblext', cellSpacing : 0, cellPadding : 0});
570
+ etb = DOM.add(n, 'tbody');
571
+
572
+ if (p.firstChild.className == 'mceOldBoxModel')
573
+ p.firstChild.appendChild(c);
574
+ else
575
+ p.insertBefore(c, p.firstChild);
576
+
577
+ t._addToolbars(etb, o);
578
+
579
+ ed.onMouseUp.add(function() {
580
+ var e = DOM.get(ed.id + '_external');
581
+ DOM.show(e);
582
+
583
+ DOM.hide(lastExtID);
584
+
585
+ var f = Event.add(ed.id + '_external_close', 'click', function() {
586
+ DOM.hide(ed.id + '_external');
587
+ Event.remove(ed.id + '_external_close', 'click', f);
588
+ });
589
+
590
+ DOM.show(e);
591
+ DOM.setStyle(e, 'top', 0 - DOM.getRect(ed.id + '_tblext').h - 1);
592
+
593
+ // Fixes IE rendering bug
594
+ DOM.hide(e);
595
+ DOM.show(e);
596
+ e.style.filter = '';
597
+
598
+ lastExtID = ed.id + '_external';
599
+
600
+ e = null;
601
+ });
602
+ }
603
+
604
+ if (sl == 'top')
605
+ t._addStatusBar(tb, o);
606
+
607
+ // Create iframe container
608
+ if (!s.theme_advanced_toolbar_container) {
609
+ n = DOM.add(tb, 'tr');
610
+ n = ic = DOM.add(n, 'td', {'class' : 'mceIframeContainer'});
611
+ }
612
+
613
+ // Create toolbar container at bottom
614
+ if (lo == 'bottom')
615
+ t._addToolbars(tb, o);
616
+
617
+ if (sl == 'bottom')
618
+ t._addStatusBar(tb, o);
619
+
620
+ return ic;
621
+ },
622
+
623
+ _rowLayout : function(s, tb, o) {
624
+ var t = this, ed = t.editor, dc, da, cf = ed.controlManager, n, ic, to, a;
625
+
626
+ dc = s.theme_advanced_containers_default_class || '';
627
+ da = s.theme_advanced_containers_default_align || 'center';
628
+
629
+ each(explode(s.theme_advanced_containers || ''), function(c, i) {
630
+ var v = s['theme_advanced_container_' + c] || '';
631
+
632
+ switch (v.toLowerCase()) {
633
+ case 'mceeditor':
634
+ n = DOM.add(tb, 'tr');
635
+ n = ic = DOM.add(n, 'td', {'class' : 'mceIframeContainer'});
636
+ break;
637
+
638
+ case 'mceelementpath':
639
+ t._addStatusBar(tb, o);
640
+ break;
641
+
642
+ default:
643
+ a = (s['theme_advanced_container_' + c + '_align'] || da).toLowerCase();
644
+ a = 'mce' + t._ufirst(a);
645
+
646
+ n = DOM.add(DOM.add(tb, 'tr'), 'td', {
647
+ 'class' : 'mceToolbar ' + (s['theme_advanced_container_' + c + '_class'] || dc) + ' ' + a || da
648
+ });
649
+
650
+ to = cf.createToolbar("toolbar" + i);
651
+ t._addControls(v, to);
652
+ DOM.setHTML(n, to.renderHTML());
653
+ o.deltaHeight -= s.theme_advanced_row_height;
654
+ }
655
+ });
656
+
657
+ return ic;
658
+ },
659
+
660
+ _addControls : function(v, tb) {
661
+ var t = this, s = t.settings, di, cf = t.editor.controlManager;
662
+
663
+ if (s.theme_advanced_disable && !t._disabled) {
664
+ di = {};
665
+
666
+ each(explode(s.theme_advanced_disable), function(v) {
667
+ di[v] = 1;
668
+ });
669
+
670
+ t._disabled = di;
671
+ } else
672
+ di = t._disabled;
673
+
674
+ each(explode(v), function(n) {
675
+ var c;
676
+
677
+ if (di && di[n])
678
+ return;
679
+
680
+ // Compatiblity with 2.x
681
+ if (n == 'tablecontrols') {
682
+ each(["table","|","row_props","cell_props","|","row_before","row_after","delete_row","|","col_before","col_after","delete_col","|","split_cells","merge_cells"], function(n) {
683
+ n = t.createControl(n, cf);
684
+
685
+ if (n)
686
+ tb.add(n);
687
+ });
688
+
689
+ return;
690
+ }
691
+
692
+ c = t.createControl(n, cf);
693
+
694
+ if (c)
695
+ tb.add(c);
696
+ });
697
+ },
698
+
699
+ _addToolbars : function(c, o) {
700
+ var t = this, i, tb, ed = t.editor, s = t.settings, v, cf = ed.controlManager, di, n, h = [], a;
701
+
702
+ a = s.theme_advanced_toolbar_align.toLowerCase();
703
+ a = 'mce' + t._ufirst(a);
704
+
705
+ n = DOM.add(DOM.add(c, 'tr'), 'td', {'class' : 'mceToolbar ' + a});
706
+
707
+ if (!ed.getParam('accessibility_focus'))
708
+ h.push(DOM.createHTML('a', {href : '#', onfocus : 'tinyMCE.get(\'' + ed.id + '\').focus();'}, '<!-- IE -->'));
709
+
710
+ h.push(DOM.createHTML('a', {href : '#', accesskey : 'q', title : ed.getLang("advanced.toolbar_focus")}, '<!-- IE -->'));
711
+
712
+ // Create toolbar and add the controls
713
+ for (i=1; (v = s['theme_advanced_buttons' + i]); i++) {
714
+ tb = cf.createToolbar("toolbar" + i, {'class' : 'mceToolbarRow' + i});
715
+
716
+ if (s['theme_advanced_buttons' + i + '_add'])
717
+ v += ',' + s['theme_advanced_buttons' + i + '_add'];
718
+
719
+ if (s['theme_advanced_buttons' + i + '_add_before'])
720
+ v = s['theme_advanced_buttons' + i + '_add_before'] + ',' + v;
721
+
722
+ t._addControls(v, tb);
723
+
724
+ //n.appendChild(n = tb.render());
725
+ h.push(tb.renderHTML());
726
+
727
+ o.deltaHeight -= s.theme_advanced_row_height;
728
+ }
729
+
730
+ h.push(DOM.createHTML('a', {href : '#', accesskey : 'z', title : ed.getLang("advanced.toolbar_focus"), onfocus : 'tinyMCE.getInstanceById(\'' + ed.id + '\').focus();'}, '<!-- IE -->'));
731
+ DOM.setHTML(n, h.join(''));
732
+ },
733
+
734
+ _addStatusBar : function(tb, o) {
735
+ var n, t = this, ed = t.editor, s = t.settings, r, mf, me, td;
736
+
737
+ n = DOM.add(tb, 'tr');
738
+ n = td = DOM.add(n, 'td', {'class' : 'mceStatusbar'});
739
+ n = DOM.add(n, 'div', {id : ed.id + '_path_row'}, s.theme_advanced_path ? ed.translate('advanced.path') + ': ' : '&#160;');
740
+ DOM.add(n, 'a', {href : '#', accesskey : 'x'});
741
+
742
+ if (s.theme_advanced_resizing) {
743
+ DOM.add(td, 'a', {id : ed.id + '_resize', href : 'javascript:;', onclick : "return false;", 'class' : 'mceResize'});
744
+
745
+ if (s.theme_advanced_resizing_use_cookie) {
746
+ ed.onPostRender.add(function() {
747
+ var o = Cookie.getHash("TinyMCE_" + ed.id + "_size"), c = DOM.get(ed.id + '_tbl');
748
+
749
+ if (!o)
750
+ return;
751
+
752
+ if (s.theme_advanced_resize_horizontal)
753
+ c.style.width = Math.max(10, o.cw) + 'px';
754
+
755
+ c.style.height = Math.max(10, o.ch) + 'px';
756
+ DOM.get(ed.id + '_ifr').style.height = Math.max(10, parseInt(o.ch) + t.deltaHeight) + 'px';
757
+ });
758
+ }
759
+
760
+ ed.onPostRender.add(function() {
761
+ Event.add(ed.id + '_resize', 'mousedown', function(e) {
762
+ var c, p, w, h, n, pa;
763
+
764
+ // Measure container
765
+ c = DOM.get(ed.id + '_tbl');
766
+ w = c.clientWidth;
767
+ h = c.clientHeight;
768
+
769
+ miw = s.theme_advanced_resizing_min_width || 100;
770
+ mih = s.theme_advanced_resizing_min_height || 100;
771
+ maw = s.theme_advanced_resizing_max_width || 0xFFFF;
772
+ mah = s.theme_advanced_resizing_max_height || 0xFFFF;
773
+
774
+ // Setup placeholder
775
+ p = DOM.add(DOM.get(ed.id + '_parent'), 'div', {'class' : 'mcePlaceHolder'});
776
+ DOM.setStyles(p, {width : w, height : h});
777
+
778
+ // Replace with placeholder
779
+ DOM.hide(c);
780
+ DOM.show(p);
781
+
782
+ // Create internal resize obj
783
+ r = {
784
+ x : e.screenX,
785
+ y : e.screenY,
786
+ w : w,
787
+ h : h,
788
+ dx : null,
789
+ dy : null
790
+ };
791
+
792
+ // Start listening
793
+ mf = Event.add(DOM.doc, 'mousemove', function(e) {
794
+ var w, h;
795
+
796
+ // Calc delta values
797
+ r.dx = e.screenX - r.x;
798
+ r.dy = e.screenY - r.y;
799
+
800
+ // Boundery fix box
801
+ w = Math.max(miw, r.w + r.dx);
802
+ h = Math.max(mih, r.h + r.dy);
803
+ w = Math.min(maw, w);
804
+ h = Math.min(mah, h);
805
+
806
+ // Resize placeholder
807
+ if (s.theme_advanced_resize_horizontal)
808
+ p.style.width = w + 'px';
809
+
810
+ p.style.height = h + 'px';
811
+
812
+ return Event.cancel(e);
813
+ });
814
+
815
+ me = Event.add(DOM.doc, 'mouseup', function(e) {
816
+ var ifr;
817
+
818
+ // Stop listening
819
+ Event.remove(DOM.doc, 'mousemove', mf);
820
+ Event.remove(DOM.doc, 'mouseup', me);
821
+
822
+ c.style.display = '';
823
+ DOM.remove(p);
824
+
825
+ if (r.dx === null)
826
+ return;
827
+
828
+ ifr = DOM.get(ed.id + '_ifr');
829
+
830
+ if (s.theme_advanced_resize_horizontal)
831
+ c.style.width = Math.max(10, r.w + r.dx) + 'px';
832
+
833
+ c.style.height = Math.max(10, r.h + r.dy) + 'px';
834
+ ifr.style.height = Math.max(10, ifr.clientHeight + r.dy) + 'px';
835
+
836
+ if (s.theme_advanced_resizing_use_cookie) {
837
+ Cookie.setHash("TinyMCE_" + ed.id + "_size", {
838
+ cw : r.w + r.dx,
839
+ ch : r.h + r.dy
840
+ });
841
+ }
842
+ });
843
+
844
+ return Event.cancel(e);
845
+ });
846
+ });
847
+ }
848
+
849
+ o.deltaHeight -= 21;
850
+ n = tb = null;
851
+ },
852
+
853
+ _nodeChanged : function(ed, cm, n, co, ob) {
854
+ var t = this, p, de = 0, v, c, s = t.settings, cl, fz, fn;
855
+
856
+ tinymce.each(t.stateControls, function(c) {
857
+ cm.setActive(c, ed.queryCommandState(t.controls[c][1]));
858
+ });
859
+
860
+ function getParent(name) {
861
+ var i, parents = ob.parents, func = name;
862
+
863
+ if (typeof(name) == 'string') {
864
+ func = function(node) {
865
+ return node.nodeName == name;
866
+ };
867
+ }
868
+
869
+ for (i = 0; i < parents.length; i++) {
870
+ if (func(parents[i]))
871
+ return parents[i];
872
+ }
873
+ };
874
+
875
+ cm.setActive('visualaid', ed.hasVisual);
876
+ cm.setDisabled('undo', !ed.undoManager.hasUndo() && !ed.typing);
877
+ cm.setDisabled('redo', !ed.undoManager.hasRedo());
878
+ cm.setDisabled('outdent', !ed.queryCommandState('Outdent'));
879
+
880
+ p = getParent('A');
881
+ if (c = cm.get('link')) {
882
+ if (!p || !p.name) {
883
+ c.setDisabled(!p && co);
884
+ c.setActive(!!p);
885
+ }
886
+ }
887
+
888
+ if (c = cm.get('unlink')) {
889
+ c.setDisabled(!p && co);
890
+ c.setActive(!!p && !p.name);
891
+ }
892
+
893
+ if (c = cm.get('anchor')) {
894
+ c.setActive(!!p && p.name);
895
+
896
+ if (tinymce.isWebKit) {
897
+ p = getParent('IMG');
898
+ c.setActive(!!p && DOM.getAttrib(p, 'mce_name') == 'a');
899
+ }
900
+ }
901
+
902
+ p = getParent('IMG');
903
+ if (c = cm.get('image'))
904
+ c.setActive(!!p && n.className.indexOf('mceItem') == -1);
905
+
906
+ if (c = cm.get('styleselect')) {
907
+ t._importClasses();
908
+
909
+ // Check each format and update
910
+ c.select(function(fmt) {
911
+ return !!ed.formatter.match(fmt);
912
+ });
913
+ }
914
+
915
+ if (c = cm.get('formatselect')) {
916
+ p = getParent(DOM.isBlock);
917
+
918
+ if (p)
919
+ c.select(p.nodeName.toLowerCase());
920
+ }
921
+
922
+ // Find out current fontSize, fontFamily and fontClass
923
+ getParent(function(n) {
924
+ if (n.nodeName === 'SPAN') {
925
+ if (!cl && n.className)
926
+ cl = n.className;
927
+
928
+ if (!fz && n.style.fontSize)
929
+ fz = n.style.fontSize;
930
+
931
+ if (!fn && n.style.fontFamily)
932
+ fn = n.style.fontFamily.replace(/[\"\']+/g, '').replace(/^([^,]+).*/, '$1').toLowerCase();
933
+ }
934
+
935
+ return false;
936
+ });
937
+
938
+ if (c = cm.get('fontselect')) {
939
+ c.select(function(v) {
940
+ return v.replace(/^([^,]+).*/, '$1').toLowerCase() == fn;
941
+ });
942
+ }
943
+
944
+ // Select font size
945
+ if (c = cm.get('fontsizeselect')) {
946
+ // Use computed style
947
+ if (s.theme_advanced_runtime_fontsize && !fz && !cl)
948
+ fz = ed.dom.getStyle(n, 'fontSize', true);
949
+
950
+ c.select(function(v) {
951
+ if (v.fontSize && v.fontSize === fz)
952
+ return true;
953
+
954
+ if (v['class'] && v['class'] === cl)
955
+ return true;
956
+ });
957
+ }
958
+
959
+ if (s.theme_advanced_path && s.theme_advanced_statusbar_location) {
960
+ p = DOM.get(ed.id + '_path') || DOM.add(ed.id + '_path_row', 'span', {id : ed.id + '_path'});
961
+ DOM.setHTML(p, '');
962
+
963
+ getParent(function(n) {
964
+ var na = n.nodeName.toLowerCase(), u, pi, ti = '';
965
+
966
+ /*if (n.getAttribute('_mce_bogus'))
967
+ return;
968
+ */
969
+ // Ignore non element and hidden elements
970
+ if (n.nodeType != 1 || n.nodeName === 'BR' || (DOM.hasClass(n, 'mceItemHidden') || DOM.hasClass(n, 'mceItemRemoved')))
971
+ return;
972
+
973
+ // Fake name
974
+ if (v = DOM.getAttrib(n, 'mce_name'))
975
+ na = v;
976
+
977
+ // Handle prefix
978
+ if (tinymce.isIE && n.scopeName !== 'HTML')
979
+ na = n.scopeName + ':' + na;
980
+
981
+ // Remove internal prefix
982
+ na = na.replace(/mce\:/g, '');
983
+
984
+ // Handle node name
985
+ switch (na) {
986
+ case 'b':
987
+ na = 'strong';
988
+ break;
989
+
990
+ case 'i':
991
+ na = 'em';
992
+ break;
993
+
994
+ case 'img':
995
+ if (v = DOM.getAttrib(n, 'src'))
996
+ ti += 'src: ' + v + ' ';
997
+
998
+ break;
999
+
1000
+ case 'a':
1001
+ if (v = DOM.getAttrib(n, 'name')) {
1002
+ ti += 'name: ' + v + ' ';
1003
+ na += '#' + v;
1004
+ }
1005
+
1006
+ if (v = DOM.getAttrib(n, 'href'))
1007
+ ti += 'href: ' + v + ' ';
1008
+
1009
+ break;
1010
+
1011
+ case 'font':
1012
+ if (v = DOM.getAttrib(n, 'face'))
1013
+ ti += 'font: ' + v + ' ';
1014
+
1015
+ if (v = DOM.getAttrib(n, 'size'))
1016
+ ti += 'size: ' + v + ' ';
1017
+
1018
+ if (v = DOM.getAttrib(n, 'color'))
1019
+ ti += 'color: ' + v + ' ';
1020
+
1021
+ break;
1022
+
1023
+ case 'span':
1024
+ if (v = DOM.getAttrib(n, 'style'))
1025
+ ti += 'style: ' + v + ' ';
1026
+
1027
+ break;
1028
+ }
1029
+
1030
+ if (v = DOM.getAttrib(n, 'id'))
1031
+ ti += 'id: ' + v + ' ';
1032
+
1033
+ if (v = n.className) {
1034
+ v = v.replace(/\b\s*(webkit|mce|Apple-)\w+\s*\b/g, '')
1035
+
1036
+ if (v) {
1037
+ ti += 'class: ' + v + ' ';
1038
+
1039
+ if (DOM.isBlock(n) || na == 'img' || na == 'span')
1040
+ na += '.' + v;
1041
+ }
1042
+ }
1043
+
1044
+ na = na.replace(/(html:)/g, '');
1045
+ na = {name : na, node : n, title : ti};
1046
+ t.onResolveName.dispatch(t, na);
1047
+ ti = na.title;
1048
+ na = na.name;
1049
+
1050
+ //u = "javascript:tinymce.EditorManager.get('" + ed.id + "').theme._sel('" + (de++) + "');";
1051
+ pi = DOM.create('a', {'href' : "javascript:;", onmousedown : "return false;", title : ti, 'class' : 'mcePath_' + (de++)}, na);
1052
+
1053
+ if (p.hasChildNodes()) {
1054
+ p.insertBefore(DOM.doc.createTextNode(' \u00bb '), p.firstChild);
1055
+ p.insertBefore(pi, p.firstChild);
1056
+ } else
1057
+ p.appendChild(pi);
1058
+ }, ed.getBody());
1059
+ }
1060
+ },
1061
+
1062
+ // Commands gets called by execCommand
1063
+
1064
+ _sel : function(v) {
1065
+ this.editor.execCommand('mceSelectNodeDepth', false, v);
1066
+ },
1067
+
1068
+ _mceInsertAnchor : function(ui, v) {
1069
+ var ed = this.editor;
1070
+
1071
+ ed.windowManager.open({
1072
+ url : tinymce.baseURL + '/themes/advanced/anchor.htm',
1073
+ width : 320 + parseInt(ed.getLang('advanced.anchor_delta_width', 0)),
1074
+ height : 90 + parseInt(ed.getLang('advanced.anchor_delta_height', 0)),
1075
+ inline : true
1076
+ }, {
1077
+ theme_url : this.url
1078
+ });
1079
+ },
1080
+
1081
+ _mceCharMap : function() {
1082
+ var ed = this.editor;
1083
+
1084
+ ed.windowManager.open({
1085
+ url : tinymce.baseURL + '/themes/advanced/charmap.htm',
1086
+ width : 550 + parseInt(ed.getLang('advanced.charmap_delta_width', 0)),
1087
+ height : 250 + parseInt(ed.getLang('advanced.charmap_delta_height', 0)),
1088
+ inline : true
1089
+ }, {
1090
+ theme_url : this.url
1091
+ });
1092
+ },
1093
+
1094
+ _mceHelp : function() {
1095
+ var ed = this.editor;
1096
+
1097
+ ed.windowManager.open({
1098
+ url : tinymce.baseURL + '/themes/advanced/about.htm',
1099
+ width : 480,
1100
+ height : 380,
1101
+ inline : true
1102
+ }, {
1103
+ theme_url : this.url
1104
+ });
1105
+ },
1106
+
1107
+ _mceColorPicker : function(u, v) {
1108
+ var ed = this.editor;
1109
+
1110
+ v = v || {};
1111
+
1112
+ ed.windowManager.open({
1113
+ url : tinymce.baseURL + '/themes/advanced/color_picker.htm',
1114
+ width : 375 + parseInt(ed.getLang('advanced.colorpicker_delta_width', 0)),
1115
+ height : 250 + parseInt(ed.getLang('advanced.colorpicker_delta_height', 0)),
1116
+ close_previous : false,
1117
+ inline : true
1118
+ }, {
1119
+ input_color : v.color,
1120
+ func : v.func,
1121
+ theme_url : this.url
1122
+ });
1123
+ },
1124
+
1125
+ _mceCodeEditor : function(ui, val) {
1126
+ var ed = this.editor;
1127
+
1128
+ ed.windowManager.open({
1129
+ url : tinymce.baseURL + '/themes/advanced/source_editor.htm',
1130
+ width : parseInt(ed.getParam("theme_advanced_source_editor_width", 720)),
1131
+ height : parseInt(ed.getParam("theme_advanced_source_editor_height", 580)),
1132
+ inline : true,
1133
+ resizable : true,
1134
+ maximizable : true
1135
+ }, {
1136
+ theme_url : this.url
1137
+ });
1138
+ },
1139
+
1140
+ _mceImage : function(ui, val) {
1141
+ var ed = this.editor;
1142
+
1143
+ // Internal image object like a flash placeholder
1144
+ if (ed.dom.getAttrib(ed.selection.getNode(), 'class').indexOf('mceItem') != -1)
1145
+ return;
1146
+
1147
+ ed.windowManager.open({
1148
+ url : tinymce.baseURL + '/themes/advanced/image.htm',
1149
+ width : 355 + parseInt(ed.getLang('advanced.image_delta_width', 0)),
1150
+ height : 275 + parseInt(ed.getLang('advanced.image_delta_height', 0)),
1151
+ inline : true
1152
+ }, {
1153
+ theme_url : this.url
1154
+ });
1155
+ },
1156
+
1157
+ _mceLink : function(ui, val) {
1158
+ var ed = this.editor;
1159
+
1160
+ ed.windowManager.open({
1161
+ url : tinymce.baseURL + '/themes/advanced/link.htm',
1162
+ width : 310 + parseInt(ed.getLang('advanced.link_delta_width', 0)),
1163
+ height : 200 + parseInt(ed.getLang('advanced.link_delta_height', 0)),
1164
+ inline : true
1165
+ }, {
1166
+ theme_url : this.url
1167
+ });
1168
+ },
1169
+
1170
+ _mceNewDocument : function() {
1171
+ var ed = this.editor;
1172
+
1173
+ ed.windowManager.confirm('advanced.newdocument', function(s) {
1174
+ if (s)
1175
+ ed.execCommand('mceSetContent', false, '');
1176
+ });
1177
+ },
1178
+
1179
+ _mceForeColor : function() {
1180
+ var t = this;
1181
+
1182
+ this._mceColorPicker(0, {
1183
+ color: t.fgColor,
1184
+ func : function(co) {
1185
+ t.fgColor = co;
1186
+ t.editor.execCommand('ForeColor', false, co);
1187
+ }
1188
+ });
1189
+ },
1190
+
1191
+ _mceBackColor : function() {
1192
+ var t = this;
1193
+
1194
+ this._mceColorPicker(0, {
1195
+ color: t.bgColor,
1196
+ func : function(co) {
1197
+ t.bgColor = co;
1198
+ t.editor.execCommand('HiliteColor', false, co);
1199
+ }
1200
+ });
1201
+ },
1202
+
1203
+ _ufirst : function(s) {
1204
+ return s.substring(0, 1).toUpperCase() + s.substring(1);
1205
+ }
1206
+ });
1207
+
1208
+ tinymce.ThemeManager.add('advanced', tinymce.themes.AdvancedTheme);
1209
+ }(tinymce));