yodel_admin 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +6 -0
- data/Gemfile +4 -0
- data/Rakefile +1 -0
- data/lib/layouts/admin_list_record.html +94 -0
- data/lib/layouts/admin_login.html +131 -0
- data/lib/layouts/admin_page/admin_list_page.html +55 -0
- data/lib/layouts/admin_page/admin_settings_page.html +34 -0
- data/lib/layouts/admin_page/admin_tree_page.html +51 -0
- data/lib/layouts/admin_page.html +56 -0
- data/lib/layouts/admin_record_form.html +74 -0
- data/lib/migrations/01_admin_pages.rb +99 -0
- data/lib/migrations/02_admin_default_pages.rb +98 -0
- data/lib/models/admin_editor_page.rb +27 -0
- data/lib/models/admin_list_page.rb +121 -0
- data/lib/models/admin_root_page.rb +9 -0
- data/lib/models/admin_settings_page.rb +20 -0
- data/lib/models/admin_sync_page.rb +82 -0
- data/lib/models/admin_tree_page.rb +141 -0
- data/lib/public/admin/chosen/chosen-sprite.png +0 -0
- data/lib/public/admin/chosen/chosen.css +340 -0
- data/lib/public/admin/chosen/chosen.jquery.min.js +10 -0
- data/lib/public/admin/css/admin.css +1086 -0
- data/lib/public/admin/css/reset.css +48 -0
- data/lib/public/admin/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/lib/public/admin/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/lib/public/admin/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/lib/public/admin/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/lib/public/admin/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/lib/public/admin/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/lib/public/admin/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/lib/public/admin/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/lib/public/admin/css/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/lib/public/admin/css/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/lib/public/admin/css/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/lib/public/admin/css/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/lib/public/admin/css/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/lib/public/admin/css/smoothness/jquery-ui-1.8.16.custom.css +380 -0
- data/lib/public/admin/images/add.png +0 -0
- data/lib/public/admin/images/clock.png +0 -0
- data/lib/public/admin/images/close.png +0 -0
- data/lib/public/admin/images/cross.png +0 -0
- data/lib/public/admin/images/default_icon.png +0 -0
- data/lib/public/admin/images/delete.png +0 -0
- data/lib/public/admin/images/deploy_spinner.gif +0 -0
- data/lib/public/admin/images/drag.png +0 -0
- data/lib/public/admin/images/group_icon.png +0 -0
- data/lib/public/admin/images/left_arrow.png +0 -0
- data/lib/public/admin/images/load_spinner.gif +0 -0
- data/lib/public/admin/images/load_spinner_selected.gif +0 -0
- data/lib/public/admin/images/missing_image.png +0 -0
- data/lib/public/admin/images/new.png +0 -0
- data/lib/public/admin/images/open.png +0 -0
- data/lib/public/admin/images/right_arrow.png +0 -0
- data/lib/public/admin/images/save_spinner.gif +0 -0
- data/lib/public/admin/images/search.png +0 -0
- data/lib/public/admin/images/tick.png +0 -0
- data/lib/public/admin/images/user_icon.png +0 -0
- data/lib/public/admin/images/yodel.png +0 -0
- data/lib/public/admin/js/admin.js +1030 -0
- data/lib/public/admin/js/jquery-ui-1.8.16.custom.min.js +227 -0
- data/lib/public/admin/js/jquery.min.js +18 -0
- data/lib/public/admin/js/jquery.tablesorter.min.js +4 -0
- data/lib/public/admin/js/json2.js +480 -0
- data/lib/public/admin/js/yodel_jquery.js +241 -0
- data/lib/public/admin/tiny_mce/jquery.tinymce.js +338 -0
- data/lib/public/admin/tiny_mce/langs/en.js +223 -0
- data/lib/public/admin/tiny_mce/license.txt +504 -0
- data/lib/public/admin/tiny_mce/plugins/advhr/css/advhr.css +5 -0
- data/lib/public/admin/tiny_mce/plugins/advhr/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/advhr/editor_plugin_src.js +57 -0
- data/lib/public/admin/tiny_mce/plugins/advhr/js/rule.js +43 -0
- data/lib/public/admin/tiny_mce/plugins/advhr/langs/en_dlg.js +7 -0
- data/lib/public/admin/tiny_mce/plugins/advhr/rule.htm +58 -0
- data/lib/public/admin/tiny_mce/plugins/advimage/css/advimage.css +13 -0
- data/lib/public/admin/tiny_mce/plugins/advimage/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/advimage/editor_plugin_src.js +50 -0
- data/lib/public/admin/tiny_mce/plugins/advimage/image.htm +235 -0
- data/lib/public/admin/tiny_mce/plugins/advimage/img/sample.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/advimage/js/image.js +458 -0
- data/lib/public/admin/tiny_mce/plugins/advimage/langs/en_dlg.js +45 -0
- data/lib/public/admin/tiny_mce/plugins/advlink/css/advlink.css +8 -0
- data/lib/public/admin/tiny_mce/plugins/advlink/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/advlink/editor_plugin_src.js +61 -0
- data/lib/public/admin/tiny_mce/plugins/advlink/js/advlink.js +532 -0
- data/lib/public/admin/tiny_mce/plugins/advlink/langs/en_dlg.js +54 -0
- data/lib/public/admin/tiny_mce/plugins/advlink/link.htm +338 -0
- data/lib/public/admin/tiny_mce/plugins/advlist/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/advlist/editor_plugin_src.js +176 -0
- data/lib/public/admin/tiny_mce/plugins/autolink/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/autolink/editor_plugin_src.js +172 -0
- data/lib/public/admin/tiny_mce/plugins/autoresize/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/autoresize/editor_plugin_src.js +137 -0
- data/lib/public/admin/tiny_mce/plugins/autosave/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/autosave/editor_plugin_src.js +431 -0
- data/lib/public/admin/tiny_mce/plugins/autosave/langs/en.js +4 -0
- data/lib/public/admin/tiny_mce/plugins/bbcode/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/bbcode/editor_plugin_src.js +120 -0
- data/lib/public/admin/tiny_mce/plugins/contextmenu/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/contextmenu/editor_plugin_src.js +160 -0
- data/lib/public/admin/tiny_mce/plugins/directionality/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/directionality/editor_plugin_src.js +82 -0
- data/lib/public/admin/tiny_mce/plugins/emotions/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/emotions/editor_plugin_src.js +43 -0
- data/lib/public/admin/tiny_mce/plugins/emotions/emotions.htm +41 -0
- data/lib/public/admin/tiny_mce/plugins/emotions/img/smiley-cool.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/emotions/img/smiley-cry.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/emotions/img/smiley-embarassed.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/emotions/img/smiley-frown.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/emotions/img/smiley-innocent.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/emotions/img/smiley-kiss.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/emotions/img/smiley-laughing.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/emotions/img/smiley-sealed.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/emotions/img/smiley-smile.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/emotions/img/smiley-surprised.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/emotions/img/smiley-undecided.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/emotions/img/smiley-wink.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/emotions/img/smiley-yell.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/emotions/js/emotions.js +22 -0
- data/lib/public/admin/tiny_mce/plugins/emotions/langs/en_dlg.js +20 -0
- data/lib/public/admin/tiny_mce/plugins/example/dialog.htm +22 -0
- data/lib/public/admin/tiny_mce/plugins/example/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/example/editor_plugin_src.js +84 -0
- data/lib/public/admin/tiny_mce/plugins/example/img/example.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/example/js/dialog.js +19 -0
- data/lib/public/admin/tiny_mce/plugins/example/langs/en.js +3 -0
- data/lib/public/admin/tiny_mce/plugins/example/langs/en_dlg.js +3 -0
- data/lib/public/admin/tiny_mce/plugins/example_dependency/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/example_dependency/editor_plugin_src.js +50 -0
- data/lib/public/admin/tiny_mce/plugins/fullpage/css/fullpage.css +143 -0
- data/lib/public/admin/tiny_mce/plugins/fullpage/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/fullpage/editor_plugin_src.js +399 -0
- data/lib/public/admin/tiny_mce/plugins/fullpage/fullpage.htm +259 -0
- data/lib/public/admin/tiny_mce/plugins/fullpage/js/fullpage.js +232 -0
- data/lib/public/admin/tiny_mce/plugins/fullpage/langs/en_dlg.js +85 -0
- data/lib/public/admin/tiny_mce/plugins/fullscreen/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/fullscreen/editor_plugin_src.js +159 -0
- data/lib/public/admin/tiny_mce/plugins/fullscreen/fullscreen.htm +109 -0
- data/lib/public/admin/tiny_mce/plugins/iespell/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/iespell/editor_plugin_src.js +54 -0
- data/lib/public/admin/tiny_mce/plugins/inlinepopups/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/inlinepopups/editor_plugin_src.js +699 -0
- data/lib/public/admin/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css +90 -0
- data/lib/public/admin/tiny_mce/plugins/inlinepopups/template.htm +387 -0
- data/lib/public/admin/tiny_mce/plugins/insertdatetime/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/insertdatetime/editor_plugin_src.js +83 -0
- data/lib/public/admin/tiny_mce/plugins/layer/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/layer/editor_plugin_src.js +214 -0
- data/lib/public/admin/tiny_mce/plugins/legacyoutput/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/legacyoutput/editor_plugin_src.js +139 -0
- data/lib/public/admin/tiny_mce/plugins/lists/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/lists/editor_plugin_src.js +769 -0
- data/lib/public/admin/tiny_mce/plugins/media/css/media.css +17 -0
- data/lib/public/admin/tiny_mce/plugins/media/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/media/editor_plugin_src.js +822 -0
- data/lib/public/admin/tiny_mce/plugins/media/js/embed.js +73 -0
- data/lib/public/admin/tiny_mce/plugins/media/js/media.js +389 -0
- data/lib/public/admin/tiny_mce/plugins/media/langs/en_dlg.js +112 -0
- data/lib/public/admin/tiny_mce/plugins/media/media.htm +897 -0
- data/lib/public/admin/tiny_mce/plugins/media/moxieplayer.swf +0 -0
- data/lib/public/admin/tiny_mce/plugins/nonbreaking/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/nonbreaking/editor_plugin_src.js +53 -0
- data/lib/public/admin/tiny_mce/plugins/noneditable/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/noneditable/editor_plugin_src.js +95 -0
- data/lib/public/admin/tiny_mce/plugins/pagebreak/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/pagebreak/editor_plugin_src.js +74 -0
- data/lib/public/admin/tiny_mce/plugins/paste/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/paste/editor_plugin_src.js +942 -0
- data/lib/public/admin/tiny_mce/plugins/paste/js/pastetext.js +36 -0
- data/lib/public/admin/tiny_mce/plugins/paste/js/pasteword.js +51 -0
- data/lib/public/admin/tiny_mce/plugins/paste/langs/en_dlg.js +5 -0
- data/lib/public/admin/tiny_mce/plugins/paste/pastetext.htm +27 -0
- data/lib/public/admin/tiny_mce/plugins/paste/pasteword.htm +21 -0
- data/lib/public/admin/tiny_mce/plugins/preview/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/preview/editor_plugin_src.js +53 -0
- data/lib/public/admin/tiny_mce/plugins/preview/example.html +28 -0
- data/lib/public/admin/tiny_mce/plugins/preview/jscripts/embed.js +73 -0
- data/lib/public/admin/tiny_mce/plugins/preview/preview.html +17 -0
- data/lib/public/admin/tiny_mce/plugins/print/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/print/editor_plugin_src.js +34 -0
- data/lib/public/admin/tiny_mce/plugins/save/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/save/editor_plugin_src.js +101 -0
- data/lib/public/admin/tiny_mce/plugins/searchreplace/css/searchreplace.css +6 -0
- data/lib/public/admin/tiny_mce/plugins/searchreplace/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/searchreplace/editor_plugin_src.js +61 -0
- data/lib/public/admin/tiny_mce/plugins/searchreplace/js/searchreplace.js +142 -0
- data/lib/public/admin/tiny_mce/plugins/searchreplace/langs/en_dlg.js +16 -0
- data/lib/public/admin/tiny_mce/plugins/searchreplace/searchreplace.htm +100 -0
- data/lib/public/admin/tiny_mce/plugins/spellchecker/css/content.css +1 -0
- data/lib/public/admin/tiny_mce/plugins/spellchecker/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/spellchecker/editor_plugin_src.js +434 -0
- data/lib/public/admin/tiny_mce/plugins/spellchecker/img/wline.gif +0 -0
- data/lib/public/admin/tiny_mce/plugins/style/css/props.css +13 -0
- data/lib/public/admin/tiny_mce/plugins/style/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/style/editor_plugin_src.js +55 -0
- data/lib/public/admin/tiny_mce/plugins/style/js/props.js +635 -0
- data/lib/public/admin/tiny_mce/plugins/style/langs/en_dlg.js +70 -0
- data/lib/public/admin/tiny_mce/plugins/style/props.htm +840 -0
- data/lib/public/admin/tiny_mce/plugins/tabfocus/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/tabfocus/editor_plugin_src.js +122 -0
- data/lib/public/admin/tiny_mce/plugins/table/cell.htm +180 -0
- data/lib/public/admin/tiny_mce/plugins/table/css/cell.css +17 -0
- data/lib/public/admin/tiny_mce/plugins/table/css/row.css +25 -0
- data/lib/public/admin/tiny_mce/plugins/table/css/table.css +13 -0
- data/lib/public/admin/tiny_mce/plugins/table/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/table/editor_plugin_src.js +1363 -0
- data/lib/public/admin/tiny_mce/plugins/table/js/cell.js +319 -0
- data/lib/public/admin/tiny_mce/plugins/table/js/merge_cells.js +27 -0
- data/lib/public/admin/tiny_mce/plugins/table/js/row.js +237 -0
- data/lib/public/admin/tiny_mce/plugins/table/js/table.js +450 -0
- data/lib/public/admin/tiny_mce/plugins/table/langs/en_dlg.js +75 -0
- data/lib/public/admin/tiny_mce/plugins/table/merge_cells.htm +32 -0
- data/lib/public/admin/tiny_mce/plugins/table/row.htm +158 -0
- data/lib/public/admin/tiny_mce/plugins/table/table.htm +188 -0
- data/lib/public/admin/tiny_mce/plugins/template/blank.htm +12 -0
- data/lib/public/admin/tiny_mce/plugins/template/css/template.css +23 -0
- data/lib/public/admin/tiny_mce/plugins/template/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/template/editor_plugin_src.js +159 -0
- data/lib/public/admin/tiny_mce/plugins/template/js/template.js +106 -0
- data/lib/public/admin/tiny_mce/plugins/template/langs/en_dlg.js +15 -0
- data/lib/public/admin/tiny_mce/plugins/template/template.htm +31 -0
- data/lib/public/admin/tiny_mce/plugins/visualchars/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/visualchars/editor_plugin_src.js +83 -0
- data/lib/public/admin/tiny_mce/plugins/wordcount/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/wordcount/editor_plugin_src.js +114 -0
- data/lib/public/admin/tiny_mce/plugins/xhtmlxtras/abbr.htm +142 -0
- data/lib/public/admin/tiny_mce/plugins/xhtmlxtras/acronym.htm +142 -0
- data/lib/public/admin/tiny_mce/plugins/xhtmlxtras/attributes.htm +149 -0
- data/lib/public/admin/tiny_mce/plugins/xhtmlxtras/cite.htm +142 -0
- data/lib/public/admin/tiny_mce/plugins/xhtmlxtras/css/attributes.css +11 -0
- data/lib/public/admin/tiny_mce/plugins/xhtmlxtras/css/popup.css +9 -0
- data/lib/public/admin/tiny_mce/plugins/xhtmlxtras/del.htm +162 -0
- data/lib/public/admin/tiny_mce/plugins/xhtmlxtras/editor_plugin.js +1 -0
- data/lib/public/admin/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js +132 -0
- data/lib/public/admin/tiny_mce/plugins/xhtmlxtras/ins.htm +162 -0
- data/lib/public/admin/tiny_mce/plugins/xhtmlxtras/js/abbr.js +28 -0
- data/lib/public/admin/tiny_mce/plugins/xhtmlxtras/js/acronym.js +28 -0
- data/lib/public/admin/tiny_mce/plugins/xhtmlxtras/js/attributes.js +111 -0
- data/lib/public/admin/tiny_mce/plugins/xhtmlxtras/js/cite.js +28 -0
- data/lib/public/admin/tiny_mce/plugins/xhtmlxtras/js/del.js +53 -0
- data/lib/public/admin/tiny_mce/plugins/xhtmlxtras/js/element_common.js +229 -0
- data/lib/public/admin/tiny_mce/plugins/xhtmlxtras/js/ins.js +53 -0
- data/lib/public/admin/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js +32 -0
- data/lib/public/admin/tiny_mce/themes/advanced/about.htm +52 -0
- data/lib/public/admin/tiny_mce/themes/advanced/anchor.htm +26 -0
- data/lib/public/admin/tiny_mce/themes/advanced/charmap.htm +51 -0
- data/lib/public/admin/tiny_mce/themes/advanced/color_picker.htm +74 -0
- data/lib/public/admin/tiny_mce/themes/advanced/editor_template.js +1 -0
- data/lib/public/admin/tiny_mce/themes/advanced/editor_template_src.js +1358 -0
- data/lib/public/admin/tiny_mce/themes/advanced/image.htm +80 -0
- data/lib/public/admin/tiny_mce/themes/advanced/img/colorpicker.jpg +0 -0
- data/lib/public/admin/tiny_mce/themes/advanced/img/flash.gif +0 -0
- data/lib/public/admin/tiny_mce/themes/advanced/img/icons.gif +0 -0
- data/lib/public/admin/tiny_mce/themes/advanced/img/iframe.gif +0 -0
- data/lib/public/admin/tiny_mce/themes/advanced/img/pagebreak.gif +0 -0
- data/lib/public/admin/tiny_mce/themes/advanced/img/quicktime.gif +0 -0
- data/lib/public/admin/tiny_mce/themes/advanced/img/realmedia.gif +0 -0
- data/lib/public/admin/tiny_mce/themes/advanced/img/shockwave.gif +0 -0
- data/lib/public/admin/tiny_mce/themes/advanced/img/trans.gif +0 -0
- data/lib/public/admin/tiny_mce/themes/advanced/img/video.gif +0 -0
- data/lib/public/admin/tiny_mce/themes/advanced/img/windowsmedia.gif +0 -0
- data/lib/public/admin/tiny_mce/themes/advanced/js/about.js +73 -0
- data/lib/public/admin/tiny_mce/themes/advanced/js/anchor.js +42 -0
- data/lib/public/admin/tiny_mce/themes/advanced/js/charmap.js +355 -0
- data/lib/public/admin/tiny_mce/themes/advanced/js/color_picker.js +329 -0
- data/lib/public/admin/tiny_mce/themes/advanced/js/image.js +247 -0
- data/lib/public/admin/tiny_mce/themes/advanced/js/link.js +153 -0
- data/lib/public/admin/tiny_mce/themes/advanced/js/source_editor.js +56 -0
- data/lib/public/admin/tiny_mce/themes/advanced/langs/en.js +68 -0
- data/lib/public/admin/tiny_mce/themes/advanced/langs/en_dlg.js +54 -0
- data/lib/public/admin/tiny_mce/themes/advanced/link.htm +57 -0
- data/lib/public/admin/tiny_mce/themes/advanced/shortcuts.htm +47 -0
- data/lib/public/admin/tiny_mce/themes/advanced/skins/default/content.css +48 -0
- data/lib/public/admin/tiny_mce/themes/advanced/skins/default/dialog.css +117 -0
- data/lib/public/admin/tiny_mce/themes/advanced/skins/default/img/buttons.png +0 -0
- data/lib/public/admin/tiny_mce/themes/advanced/skins/default/img/items.gif +0 -0
- data/lib/public/admin/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif +0 -0
- data/lib/public/admin/tiny_mce/themes/advanced/skins/default/img/menu_check.gif +0 -0
- data/lib/public/admin/tiny_mce/themes/advanced/skins/default/img/progress.gif +0 -0
- data/lib/public/admin/tiny_mce/themes/advanced/skins/default/img/tabs.gif +0 -0
- data/lib/public/admin/tiny_mce/themes/advanced/skins/default/ui.css +214 -0
- data/lib/public/admin/tiny_mce/themes/advanced/skins/highcontrast/content.css +23 -0
- data/lib/public/admin/tiny_mce/themes/advanced/skins/highcontrast/dialog.css +105 -0
- data/lib/public/admin/tiny_mce/themes/advanced/skins/highcontrast/ui.css +102 -0
- data/lib/public/admin/tiny_mce/themes/advanced/skins/o2k7/content.css +47 -0
- data/lib/public/admin/tiny_mce/themes/advanced/skins/o2k7/dialog.css +117 -0
- data/lib/public/admin/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png +0 -0
- data/lib/public/admin/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png +0 -0
- data/lib/public/admin/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png +0 -0
- data/lib/public/admin/tiny_mce/themes/advanced/skins/o2k7/ui.css +217 -0
- data/lib/public/admin/tiny_mce/themes/advanced/skins/o2k7/ui_black.css +8 -0
- data/lib/public/admin/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css +5 -0
- data/lib/public/admin/tiny_mce/themes/advanced/source_editor.htm +25 -0
- data/lib/public/admin/tiny_mce/themes/simple/editor_template.js +1 -0
- data/lib/public/admin/tiny_mce/themes/simple/editor_template_src.js +84 -0
- data/lib/public/admin/tiny_mce/themes/simple/img/icons.gif +0 -0
- data/lib/public/admin/tiny_mce/themes/simple/langs/en.js +11 -0
- data/lib/public/admin/tiny_mce/themes/simple/skins/default/content.css +25 -0
- data/lib/public/admin/tiny_mce/themes/simple/skins/default/ui.css +32 -0
- data/lib/public/admin/tiny_mce/themes/simple/skins/o2k7/content.css +17 -0
- data/lib/public/admin/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png +0 -0
- data/lib/public/admin/tiny_mce/themes/simple/skins/o2k7/ui.css +35 -0
- data/lib/public/admin/tiny_mce/tiny_mce.js +1 -0
- data/lib/public/admin/tiny_mce/tiny_mce_popup.js +5 -0
- data/lib/public/admin/tiny_mce/tiny_mce_src.js +15519 -0
- data/lib/public/admin/tiny_mce/utils/editable_selects.js +70 -0
- data/lib/public/admin/tiny_mce/utils/form_utils.js +210 -0
- data/lib/public/admin/tiny_mce/utils/mctabs.js +162 -0
- data/lib/public/admin/tiny_mce/utils/validate.js +252 -0
- data/lib/yodel_admin.rb +3 -0
- data/yodel_admin.gemspec +22 -0
- metadata +365 -0
@@ -0,0 +1,769 @@
|
|
1
|
+
/**
|
2
|
+
* editor_plugin_src.js
|
3
|
+
*
|
4
|
+
* Copyright 2011, 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() {
|
12
|
+
var each = tinymce.each, Event = tinymce.dom.Event, bookmark;
|
13
|
+
|
14
|
+
// Skips text nodes that only contain whitespace since they aren't semantically important.
|
15
|
+
function skipWhitespaceNodes(e, next) {
|
16
|
+
while (e && (e.nodeType === 8 || (e.nodeType === 3 && /^[ \t\n\r]*$/.test(e.nodeValue)))) {
|
17
|
+
e = next(e);
|
18
|
+
}
|
19
|
+
return e;
|
20
|
+
}
|
21
|
+
|
22
|
+
function skipWhitespaceNodesBackwards(e) {
|
23
|
+
return skipWhitespaceNodes(e, function(e) {
|
24
|
+
return e.previousSibling;
|
25
|
+
});
|
26
|
+
}
|
27
|
+
|
28
|
+
function skipWhitespaceNodesForwards(e) {
|
29
|
+
return skipWhitespaceNodes(e, function(e) {
|
30
|
+
return e.nextSibling;
|
31
|
+
});
|
32
|
+
}
|
33
|
+
|
34
|
+
function hasParentInList(ed, e, list) {
|
35
|
+
return ed.dom.getParent(e, function(p) {
|
36
|
+
return tinymce.inArray(list, p) !== -1;
|
37
|
+
});
|
38
|
+
}
|
39
|
+
|
40
|
+
function isList(e) {
|
41
|
+
return e && (e.tagName === 'OL' || e.tagName === 'UL');
|
42
|
+
}
|
43
|
+
|
44
|
+
function splitNestedLists(element, dom) {
|
45
|
+
var tmp, nested, wrapItem;
|
46
|
+
tmp = skipWhitespaceNodesBackwards(element.lastChild);
|
47
|
+
while (isList(tmp)) {
|
48
|
+
nested = tmp;
|
49
|
+
tmp = skipWhitespaceNodesBackwards(nested.previousSibling);
|
50
|
+
}
|
51
|
+
if (nested) {
|
52
|
+
wrapItem = dom.create('li', { style: 'list-style-type: none;'});
|
53
|
+
dom.split(element, nested);
|
54
|
+
dom.insertAfter(wrapItem, nested);
|
55
|
+
wrapItem.appendChild(nested);
|
56
|
+
wrapItem.appendChild(nested);
|
57
|
+
element = wrapItem.previousSibling;
|
58
|
+
}
|
59
|
+
return element;
|
60
|
+
}
|
61
|
+
|
62
|
+
function attemptMergeWithAdjacent(e, allowDifferentListStyles, mergeParagraphs) {
|
63
|
+
e = attemptMergeWithPrevious(e, allowDifferentListStyles, mergeParagraphs);
|
64
|
+
return attemptMergeWithNext(e, allowDifferentListStyles, mergeParagraphs);
|
65
|
+
}
|
66
|
+
|
67
|
+
function attemptMergeWithPrevious(e, allowDifferentListStyles, mergeParagraphs) {
|
68
|
+
var prev = skipWhitespaceNodesBackwards(e.previousSibling);
|
69
|
+
if (prev) {
|
70
|
+
return attemptMerge(prev, e, allowDifferentListStyles ? prev : false, mergeParagraphs);
|
71
|
+
} else {
|
72
|
+
return e;
|
73
|
+
}
|
74
|
+
}
|
75
|
+
|
76
|
+
function attemptMergeWithNext(e, allowDifferentListStyles, mergeParagraphs) {
|
77
|
+
var next = skipWhitespaceNodesForwards(e.nextSibling);
|
78
|
+
if (next) {
|
79
|
+
return attemptMerge(e, next, allowDifferentListStyles ? next : false, mergeParagraphs);
|
80
|
+
} else {
|
81
|
+
return e;
|
82
|
+
}
|
83
|
+
}
|
84
|
+
|
85
|
+
function attemptMerge(e1, e2, differentStylesMasterElement, mergeParagraphs) {
|
86
|
+
if (canMerge(e1, e2, !!differentStylesMasterElement, mergeParagraphs)) {
|
87
|
+
return merge(e1, e2, differentStylesMasterElement);
|
88
|
+
} else if (e1 && e1.tagName === 'LI' && isList(e2)) {
|
89
|
+
// Fix invalidly nested lists.
|
90
|
+
e1.appendChild(e2);
|
91
|
+
}
|
92
|
+
return e2;
|
93
|
+
}
|
94
|
+
|
95
|
+
function canMerge(e1, e2, allowDifferentListStyles, mergeParagraphs) {
|
96
|
+
if (!e1 || !e2) {
|
97
|
+
return false;
|
98
|
+
} else if (e1.tagName === 'LI' && e2.tagName === 'LI') {
|
99
|
+
return e2.style.listStyleType === 'none' || containsOnlyAList(e2);
|
100
|
+
} else if (isList(e1)) {
|
101
|
+
return (e1.tagName === e2.tagName && (allowDifferentListStyles || e1.style.listStyleType === e2.style.listStyleType)) || isListForIndent(e2);
|
102
|
+
} else if (mergeParagraphs && e1.tagName === 'P' && e2.tagName === 'P') {
|
103
|
+
return true;
|
104
|
+
} else {
|
105
|
+
return false;
|
106
|
+
}
|
107
|
+
}
|
108
|
+
|
109
|
+
function isListForIndent(e) {
|
110
|
+
var firstLI = skipWhitespaceNodesForwards(e.firstChild), lastLI = skipWhitespaceNodesBackwards(e.lastChild);
|
111
|
+
return firstLI && lastLI && isList(e) && firstLI === lastLI && (isList(firstLI) || firstLI.style.listStyleType === 'none' || containsOnlyAList(firstLI));
|
112
|
+
}
|
113
|
+
|
114
|
+
function containsOnlyAList(e) {
|
115
|
+
var firstChild = skipWhitespaceNodesForwards(e.firstChild), lastChild = skipWhitespaceNodesBackwards(e.lastChild);
|
116
|
+
return firstChild && lastChild && firstChild === lastChild && isList(firstChild);
|
117
|
+
}
|
118
|
+
|
119
|
+
function merge(e1, e2, masterElement) {
|
120
|
+
var lastOriginal = skipWhitespaceNodesBackwards(e1.lastChild), firstNew = skipWhitespaceNodesForwards(e2.firstChild);
|
121
|
+
if (e1.tagName === 'P') {
|
122
|
+
e1.appendChild(e1.ownerDocument.createElement('br'));
|
123
|
+
}
|
124
|
+
while (e2.firstChild) {
|
125
|
+
e1.appendChild(e2.firstChild);
|
126
|
+
}
|
127
|
+
if (masterElement) {
|
128
|
+
e1.style.listStyleType = masterElement.style.listStyleType;
|
129
|
+
}
|
130
|
+
e2.parentNode.removeChild(e2);
|
131
|
+
attemptMerge(lastOriginal, firstNew, false);
|
132
|
+
return e1;
|
133
|
+
}
|
134
|
+
|
135
|
+
function findItemToOperateOn(e, dom) {
|
136
|
+
var item;
|
137
|
+
if (!dom.is(e, 'li,ol,ul')) {
|
138
|
+
item = dom.getParent(e, 'li');
|
139
|
+
if (item) {
|
140
|
+
e = item;
|
141
|
+
}
|
142
|
+
}
|
143
|
+
return e;
|
144
|
+
}
|
145
|
+
|
146
|
+
tinymce.create('tinymce.plugins.Lists', {
|
147
|
+
init: function(ed, url) {
|
148
|
+
var LIST_TABBING = 0;
|
149
|
+
var LIST_EMPTY_ITEM = 1;
|
150
|
+
var LIST_ESCAPE = 2;
|
151
|
+
var LIST_UNKNOWN = 3;
|
152
|
+
var state = LIST_UNKNOWN;
|
153
|
+
|
154
|
+
function isTabInList(e) {
|
155
|
+
return e.keyCode === 9 && (ed.queryCommandState('InsertUnorderedList') || ed.queryCommandState('InsertOrderedList'));
|
156
|
+
}
|
157
|
+
|
158
|
+
function isOnLastListItem() {
|
159
|
+
var li = getLi();
|
160
|
+
var grandParent = li.parentNode.parentNode;
|
161
|
+
var isLastItem = li.parentNode.lastChild === li;
|
162
|
+
return isLastItem && !isNestedList(grandParent) && isEmptyListItem(li);
|
163
|
+
}
|
164
|
+
|
165
|
+
function isNestedList(grandParent) {
|
166
|
+
if (isList(grandParent)) {
|
167
|
+
return grandParent.parentNode && grandParent.parentNode.tagName === 'LI';
|
168
|
+
} else {
|
169
|
+
return grandParent.tagName === 'LI';
|
170
|
+
}
|
171
|
+
}
|
172
|
+
|
173
|
+
function isInEmptyListItem() {
|
174
|
+
return ed.selection.isCollapsed() && isEmptyListItem(getLi());
|
175
|
+
}
|
176
|
+
|
177
|
+
function getLi() {
|
178
|
+
var n = ed.selection.getStart();
|
179
|
+
// Get start will return BR if the LI only contains a BR or an empty element as we use these to fix caret position
|
180
|
+
return ((n.tagName == 'BR' || n.tagName == '') && n.parentNode.tagName == 'LI') ? n.parentNode : n;
|
181
|
+
}
|
182
|
+
|
183
|
+
function isEmptyListItem(li) {
|
184
|
+
var numChildren = li.childNodes.length;
|
185
|
+
if (li.tagName === 'LI') {
|
186
|
+
return numChildren == 0 ? true : numChildren == 1 && (li.firstChild.tagName == '' || isEmptyWebKitLi(li) || isEmptyIE9Li(li));
|
187
|
+
}
|
188
|
+
return false;
|
189
|
+
}
|
190
|
+
|
191
|
+
function isEmptyWebKitLi(li) {
|
192
|
+
// Check for empty LI or a LI with just a child that is a BR since Gecko and WebKit uses BR elements to place the caret
|
193
|
+
return tinymce.isWebKit && li.firstChild.nodeName == 'BR';
|
194
|
+
}
|
195
|
+
|
196
|
+
function isEmptyIE9Li(li) {
|
197
|
+
// only consider this to be last item if there is no list item content or that content is nbsp or space since IE9 creates these
|
198
|
+
var lis = tinymce.grep(li.parentNode.childNodes, function(n) {return n.nodeName == 'LI'});
|
199
|
+
var isLastLi = li == lis[lis.length - 1];
|
200
|
+
var child = li.firstChild;
|
201
|
+
return tinymce.isIE9 && isLastLi && (child.nodeValue == String.fromCharCode(160) || child.nodeValue == String.fromCharCode(32));
|
202
|
+
}
|
203
|
+
|
204
|
+
function isEnter(e) {
|
205
|
+
return e.keyCode === 13;
|
206
|
+
}
|
207
|
+
|
208
|
+
function getListKeyState(e) {
|
209
|
+
if (isTabInList(e)) {
|
210
|
+
return LIST_TABBING;
|
211
|
+
} else if (isEnter(e) && isOnLastListItem()) {
|
212
|
+
return LIST_ESCAPE;
|
213
|
+
} else if (isEnter(e) && isInEmptyListItem()) {
|
214
|
+
return LIST_EMPTY_ITEM;
|
215
|
+
} else {
|
216
|
+
return LIST_UNKNOWN;
|
217
|
+
}
|
218
|
+
}
|
219
|
+
|
220
|
+
function cancelEnterAndTab(_, e) {
|
221
|
+
if (state == LIST_TABBING || state == LIST_EMPTY_ITEM) {
|
222
|
+
return Event.cancel(e);
|
223
|
+
}
|
224
|
+
}
|
225
|
+
|
226
|
+
function imageJoiningListItem(ed, e) {
|
227
|
+
var prevSibling;
|
228
|
+
|
229
|
+
if (!tinymce.isGecko)
|
230
|
+
return;
|
231
|
+
|
232
|
+
var n = ed.selection.getStart();
|
233
|
+
if (e.keyCode != 8 || n.tagName !== 'IMG')
|
234
|
+
return;
|
235
|
+
|
236
|
+
function lastLI(node) {
|
237
|
+
var child = node.firstChild;
|
238
|
+
var li = null;
|
239
|
+
do {
|
240
|
+
if (!child)
|
241
|
+
break;
|
242
|
+
|
243
|
+
if (child.tagName === 'LI')
|
244
|
+
li = child;
|
245
|
+
} while (child = child.nextSibling);
|
246
|
+
|
247
|
+
return li;
|
248
|
+
}
|
249
|
+
|
250
|
+
function addChildren(parentNode, destination) {
|
251
|
+
while (parentNode.childNodes.length > 0)
|
252
|
+
destination.appendChild(parentNode.childNodes[0]);
|
253
|
+
}
|
254
|
+
|
255
|
+
// Check if there is a previous sibling
|
256
|
+
prevSibling = n.parentNode.previousSibling;
|
257
|
+
if (!prevSibling)
|
258
|
+
return;
|
259
|
+
|
260
|
+
var ul;
|
261
|
+
if (prevSibling.tagName === 'UL' || prevSibling.tagName === 'OL')
|
262
|
+
ul = prevSibling;
|
263
|
+
else if (prevSibling.previousSibling && (prevSibling.previousSibling.tagName === 'UL' || prevSibling.previousSibling.tagName === 'OL'))
|
264
|
+
ul = prevSibling.previousSibling;
|
265
|
+
else
|
266
|
+
return;
|
267
|
+
|
268
|
+
var li = lastLI(ul);
|
269
|
+
|
270
|
+
// move the caret to the end of the list item
|
271
|
+
var rng = ed.dom.createRng();
|
272
|
+
rng.setStart(li, 1);
|
273
|
+
rng.setEnd(li, 1);
|
274
|
+
ed.selection.setRng(rng);
|
275
|
+
ed.selection.collapse(true);
|
276
|
+
|
277
|
+
// save a bookmark at the end of the list item
|
278
|
+
var bookmark = ed.selection.getBookmark();
|
279
|
+
|
280
|
+
// copy the image an its text to the list item
|
281
|
+
var clone = n.parentNode.cloneNode(true);
|
282
|
+
if (clone.tagName === 'P' || clone.tagName === 'DIV')
|
283
|
+
addChildren(clone, li);
|
284
|
+
else
|
285
|
+
li.appendChild(clone);
|
286
|
+
|
287
|
+
// remove the old copy of the image
|
288
|
+
n.parentNode.parentNode.removeChild(n.parentNode);
|
289
|
+
|
290
|
+
// move the caret where we saved the bookmark
|
291
|
+
ed.selection.moveToBookmark(bookmark);
|
292
|
+
}
|
293
|
+
|
294
|
+
// fix the cursor position to ensure it is correct in IE
|
295
|
+
function setCursorPositionToOriginalLi(li) {
|
296
|
+
var list = ed.dom.getParent(li, 'ol,ul');
|
297
|
+
if (list != null) {
|
298
|
+
var lastLi = list.lastChild;
|
299
|
+
lastLi.appendChild(ed.getDoc().createElement(''));
|
300
|
+
ed.selection.setCursorLocation(lastLi, 0);
|
301
|
+
}
|
302
|
+
}
|
303
|
+
|
304
|
+
this.ed = ed;
|
305
|
+
ed.addCommand('Indent', this.indent, this);
|
306
|
+
ed.addCommand('Outdent', this.outdent, this);
|
307
|
+
ed.addCommand('InsertUnorderedList', function() {
|
308
|
+
this.applyList('UL', 'OL');
|
309
|
+
}, this);
|
310
|
+
ed.addCommand('InsertOrderedList', function() {
|
311
|
+
this.applyList('OL', 'UL');
|
312
|
+
}, this);
|
313
|
+
|
314
|
+
ed.onInit.add(function() {
|
315
|
+
ed.editorCommands.addCommands({
|
316
|
+
'outdent': function() {
|
317
|
+
var sel = ed.selection, dom = ed.dom;
|
318
|
+
|
319
|
+
function hasStyleIndent(n) {
|
320
|
+
n = dom.getParent(n, dom.isBlock);
|
321
|
+
return n && (parseInt(ed.dom.getStyle(n, 'margin-left') || 0, 10) + parseInt(ed.dom.getStyle(n, 'padding-left') || 0, 10)) > 0;
|
322
|
+
}
|
323
|
+
|
324
|
+
return hasStyleIndent(sel.getStart()) || hasStyleIndent(sel.getEnd()) || ed.queryCommandState('InsertOrderedList') || ed.queryCommandState('InsertUnorderedList');
|
325
|
+
}
|
326
|
+
}, 'state');
|
327
|
+
});
|
328
|
+
|
329
|
+
ed.onKeyUp.add(function(ed, e) {
|
330
|
+
if (state == LIST_TABBING) {
|
331
|
+
ed.execCommand(e.shiftKey ? 'Outdent' : 'Indent', true, null);
|
332
|
+
return Event.cancel(e);
|
333
|
+
} else if (state == LIST_EMPTY_ITEM) {
|
334
|
+
var li = getLi();
|
335
|
+
var shouldOutdent = ed.settings.list_outdent_on_enter === true || e.shiftKey;
|
336
|
+
ed.execCommand(shouldOutdent ? 'Outdent' : 'Indent', true, null);
|
337
|
+
if (tinymce.isIE) {
|
338
|
+
setCursorPositionToOriginalLi(li);
|
339
|
+
}
|
340
|
+
return Event.cancel(e);
|
341
|
+
} else if (state == LIST_ESCAPE) {
|
342
|
+
if (tinymce.isIE8) {
|
343
|
+
// append a zero sized nbsp so that caret is positioned correctly in IE8 after escaping and applying formatting.
|
344
|
+
// if there is no text then applying formatting for e.g a H1 to the P tag immediately following list after
|
345
|
+
// escaping from it will cause the caret to be positioned on the last li instead of staying the in P tag.
|
346
|
+
var n = ed.getDoc().createTextNode('\uFEFF');
|
347
|
+
ed.selection.getNode().appendChild(n);
|
348
|
+
} else if (tinymce.isIE9) {
|
349
|
+
// IE9 does not escape the list so we use outdent to do this and cancel the default behaviour
|
350
|
+
ed.execCommand('Outdent');
|
351
|
+
return Event.cancel(e);
|
352
|
+
}
|
353
|
+
}
|
354
|
+
});
|
355
|
+
ed.onKeyDown.add(function(_, e) { state = getListKeyState(e); });
|
356
|
+
ed.onKeyDown.add(cancelEnterAndTab);
|
357
|
+
ed.onKeyDown.add(imageJoiningListItem);
|
358
|
+
ed.onKeyPress.add(cancelEnterAndTab);
|
359
|
+
},
|
360
|
+
|
361
|
+
applyList: function(targetListType, oppositeListType) {
|
362
|
+
var t = this, ed = t.ed, dom = ed.dom, applied = [], hasSameType = false, hasOppositeType = false, hasNonList = false, actions,
|
363
|
+
selectedBlocks = ed.selection.getSelectedBlocks();
|
364
|
+
|
365
|
+
function cleanupBr(e) {
|
366
|
+
if (e && e.tagName === 'BR') {
|
367
|
+
dom.remove(e);
|
368
|
+
}
|
369
|
+
}
|
370
|
+
|
371
|
+
function makeList(element) {
|
372
|
+
var list = dom.create(targetListType), li;
|
373
|
+
|
374
|
+
function adjustIndentForNewList(element) {
|
375
|
+
// If there's a margin-left, outdent one level to account for the extra list margin.
|
376
|
+
if (element.style.marginLeft || element.style.paddingLeft) {
|
377
|
+
t.adjustPaddingFunction(false)(element);
|
378
|
+
}
|
379
|
+
}
|
380
|
+
|
381
|
+
if (element.tagName === 'LI') {
|
382
|
+
// No change required.
|
383
|
+
} else if (element.tagName === 'P' || element.tagName === 'DIV' || element.tagName === 'BODY') {
|
384
|
+
processBrs(element, function(startSection, br, previousBR) {
|
385
|
+
doWrapList(startSection, br, element.tagName === 'BODY' ? null : startSection.parentNode);
|
386
|
+
li = startSection.parentNode;
|
387
|
+
adjustIndentForNewList(li);
|
388
|
+
cleanupBr(br);
|
389
|
+
});
|
390
|
+
if (element.tagName === 'P' || selectedBlocks.length > 1) {
|
391
|
+
dom.split(li.parentNode.parentNode, li.parentNode);
|
392
|
+
}
|
393
|
+
attemptMergeWithAdjacent(li.parentNode, true);
|
394
|
+
return;
|
395
|
+
} else {
|
396
|
+
// Put the list around the element.
|
397
|
+
li = dom.create('li');
|
398
|
+
dom.insertAfter(li, element);
|
399
|
+
li.appendChild(element);
|
400
|
+
adjustIndentForNewList(element);
|
401
|
+
element = li;
|
402
|
+
}
|
403
|
+
dom.insertAfter(list, element);
|
404
|
+
list.appendChild(element);
|
405
|
+
attemptMergeWithAdjacent(list, true);
|
406
|
+
applied.push(element);
|
407
|
+
}
|
408
|
+
|
409
|
+
function doWrapList(start, end, template) {
|
410
|
+
var li, n = start, tmp, i;
|
411
|
+
while (!dom.isBlock(start.parentNode) && start.parentNode !== dom.getRoot()) {
|
412
|
+
start = dom.split(start.parentNode, start.previousSibling);
|
413
|
+
start = start.nextSibling;
|
414
|
+
n = start;
|
415
|
+
}
|
416
|
+
if (template) {
|
417
|
+
li = template.cloneNode(true);
|
418
|
+
start.parentNode.insertBefore(li, start);
|
419
|
+
while (li.firstChild) dom.remove(li.firstChild);
|
420
|
+
li = dom.rename(li, 'li');
|
421
|
+
} else {
|
422
|
+
li = dom.create('li');
|
423
|
+
start.parentNode.insertBefore(li, start);
|
424
|
+
}
|
425
|
+
while (n && n != end) {
|
426
|
+
tmp = n.nextSibling;
|
427
|
+
li.appendChild(n);
|
428
|
+
n = tmp;
|
429
|
+
}
|
430
|
+
if (li.childNodes.length === 0) {
|
431
|
+
li.innerHTML = '<br _mce_bogus="1" />';
|
432
|
+
}
|
433
|
+
makeList(li);
|
434
|
+
}
|
435
|
+
|
436
|
+
function processBrs(element, callback) {
|
437
|
+
var startSection, previousBR, END_TO_START = 3, START_TO_END = 1,
|
438
|
+
breakElements = 'br,ul,ol,p,div,h1,h2,h3,h4,h5,h6,table,blockquote,address,pre,form,center,dl';
|
439
|
+
|
440
|
+
function isAnyPartSelected(start, end) {
|
441
|
+
var r = dom.createRng(), sel;
|
442
|
+
bookmark.keep = true;
|
443
|
+
ed.selection.moveToBookmark(bookmark);
|
444
|
+
bookmark.keep = false;
|
445
|
+
sel = ed.selection.getRng(true);
|
446
|
+
if (!end) {
|
447
|
+
end = start.parentNode.lastChild;
|
448
|
+
}
|
449
|
+
r.setStartBefore(start);
|
450
|
+
r.setEndAfter(end);
|
451
|
+
return !(r.compareBoundaryPoints(END_TO_START, sel) > 0 || r.compareBoundaryPoints(START_TO_END, sel) <= 0);
|
452
|
+
}
|
453
|
+
|
454
|
+
function nextLeaf(br) {
|
455
|
+
if (br.nextSibling)
|
456
|
+
return br.nextSibling;
|
457
|
+
if (!dom.isBlock(br.parentNode) && br.parentNode !== dom.getRoot())
|
458
|
+
return nextLeaf(br.parentNode);
|
459
|
+
}
|
460
|
+
|
461
|
+
// Split on BRs within the range and process those.
|
462
|
+
startSection = element.firstChild;
|
463
|
+
// First mark the BRs that have any part of the previous section selected.
|
464
|
+
var trailingContentSelected = false;
|
465
|
+
each(dom.select(breakElements, element), function(br) {
|
466
|
+
var b;
|
467
|
+
if (br.hasAttribute && br.hasAttribute('_mce_bogus')) {
|
468
|
+
return true; // Skip the bogus Brs that are put in to appease Firefox and Safari.
|
469
|
+
}
|
470
|
+
if (isAnyPartSelected(startSection, br)) {
|
471
|
+
dom.addClass(br, '_mce_tagged_br');
|
472
|
+
startSection = nextLeaf(br);
|
473
|
+
}
|
474
|
+
});
|
475
|
+
trailingContentSelected = (startSection && isAnyPartSelected(startSection, undefined));
|
476
|
+
startSection = element.firstChild;
|
477
|
+
each(dom.select(breakElements, element), function(br) {
|
478
|
+
// Got a section from start to br.
|
479
|
+
var tmp = nextLeaf(br);
|
480
|
+
if (br.hasAttribute && br.hasAttribute('_mce_bogus')) {
|
481
|
+
return true; // Skip the bogus Brs that are put in to appease Firefox and Safari.
|
482
|
+
}
|
483
|
+
if (dom.hasClass(br, '_mce_tagged_br')) {
|
484
|
+
callback(startSection, br, previousBR);
|
485
|
+
previousBR = null;
|
486
|
+
} else {
|
487
|
+
previousBR = br;
|
488
|
+
}
|
489
|
+
startSection = tmp;
|
490
|
+
});
|
491
|
+
if (trailingContentSelected) {
|
492
|
+
callback(startSection, undefined, previousBR);
|
493
|
+
}
|
494
|
+
}
|
495
|
+
|
496
|
+
function wrapList(element) {
|
497
|
+
processBrs(element, function(startSection, br, previousBR) {
|
498
|
+
// Need to indent this part
|
499
|
+
doWrapList(startSection, br);
|
500
|
+
cleanupBr(br);
|
501
|
+
cleanupBr(previousBR);
|
502
|
+
});
|
503
|
+
}
|
504
|
+
|
505
|
+
function changeList(element) {
|
506
|
+
if (tinymce.inArray(applied, element) !== -1) {
|
507
|
+
return;
|
508
|
+
}
|
509
|
+
if (element.parentNode.tagName === oppositeListType) {
|
510
|
+
dom.split(element.parentNode, element);
|
511
|
+
makeList(element);
|
512
|
+
attemptMergeWithNext(element.parentNode, false);
|
513
|
+
}
|
514
|
+
applied.push(element);
|
515
|
+
}
|
516
|
+
|
517
|
+
function convertListItemToParagraph(element) {
|
518
|
+
var child, nextChild, mergedElement, splitLast;
|
519
|
+
if (tinymce.inArray(applied, element) !== -1) {
|
520
|
+
return;
|
521
|
+
}
|
522
|
+
element = splitNestedLists(element, dom);
|
523
|
+
while (dom.is(element.parentNode, 'ol,ul,li')) {
|
524
|
+
dom.split(element.parentNode, element);
|
525
|
+
}
|
526
|
+
// Push the original element we have from the selection, not the renamed one.
|
527
|
+
applied.push(element);
|
528
|
+
element = dom.rename(element, 'p');
|
529
|
+
mergedElement = attemptMergeWithAdjacent(element, false, ed.settings.force_br_newlines);
|
530
|
+
if (mergedElement === element) {
|
531
|
+
// Now split out any block elements that can't be contained within a P.
|
532
|
+
// Manually iterate to ensure we handle modifications correctly (doesn't work with tinymce.each)
|
533
|
+
child = element.firstChild;
|
534
|
+
while (child) {
|
535
|
+
if (dom.isBlock(child)) {
|
536
|
+
child = dom.split(child.parentNode, child);
|
537
|
+
splitLast = true;
|
538
|
+
nextChild = child.nextSibling && child.nextSibling.firstChild;
|
539
|
+
} else {
|
540
|
+
nextChild = child.nextSibling;
|
541
|
+
if (splitLast && child.tagName === 'BR') {
|
542
|
+
dom.remove(child);
|
543
|
+
}
|
544
|
+
splitLast = false;
|
545
|
+
}
|
546
|
+
child = nextChild;
|
547
|
+
}
|
548
|
+
}
|
549
|
+
}
|
550
|
+
|
551
|
+
each(selectedBlocks, function(e) {
|
552
|
+
e = findItemToOperateOn(e, dom);
|
553
|
+
if (e.tagName === oppositeListType || (e.tagName === 'LI' && e.parentNode.tagName === oppositeListType)) {
|
554
|
+
hasOppositeType = true;
|
555
|
+
} else if (e.tagName === targetListType || (e.tagName === 'LI' && e.parentNode.tagName === targetListType)) {
|
556
|
+
hasSameType = true;
|
557
|
+
} else {
|
558
|
+
hasNonList = true;
|
559
|
+
}
|
560
|
+
});
|
561
|
+
|
562
|
+
if (hasNonList || hasOppositeType || selectedBlocks.length === 0) {
|
563
|
+
actions = {
|
564
|
+
'LI': changeList,
|
565
|
+
'H1': makeList,
|
566
|
+
'H2': makeList,
|
567
|
+
'H3': makeList,
|
568
|
+
'H4': makeList,
|
569
|
+
'H5': makeList,
|
570
|
+
'H6': makeList,
|
571
|
+
'P': makeList,
|
572
|
+
'BODY': makeList,
|
573
|
+
'DIV': selectedBlocks.length > 1 ? makeList : wrapList,
|
574
|
+
defaultAction: wrapList
|
575
|
+
};
|
576
|
+
} else {
|
577
|
+
actions = {
|
578
|
+
defaultAction: convertListItemToParagraph
|
579
|
+
};
|
580
|
+
}
|
581
|
+
this.process(actions);
|
582
|
+
},
|
583
|
+
|
584
|
+
indent: function() {
|
585
|
+
var ed = this.ed, dom = ed.dom, indented = [];
|
586
|
+
|
587
|
+
function createWrapItem(element) {
|
588
|
+
var wrapItem = dom.create('li', { style: 'list-style-type: none;'});
|
589
|
+
dom.insertAfter(wrapItem, element);
|
590
|
+
return wrapItem;
|
591
|
+
}
|
592
|
+
|
593
|
+
function createWrapList(element) {
|
594
|
+
var wrapItem = createWrapItem(element),
|
595
|
+
list = dom.getParent(element, 'ol,ul'),
|
596
|
+
listType = list.tagName,
|
597
|
+
listStyle = dom.getStyle(list, 'list-style-type'),
|
598
|
+
attrs = {},
|
599
|
+
wrapList;
|
600
|
+
if (listStyle !== '') {
|
601
|
+
attrs.style = 'list-style-type: ' + listStyle + ';';
|
602
|
+
}
|
603
|
+
wrapList = dom.create(listType, attrs);
|
604
|
+
wrapItem.appendChild(wrapList);
|
605
|
+
return wrapList;
|
606
|
+
}
|
607
|
+
|
608
|
+
function indentLI(element) {
|
609
|
+
if (!hasParentInList(ed, element, indented)) {
|
610
|
+
element = splitNestedLists(element, dom);
|
611
|
+
var wrapList = createWrapList(element);
|
612
|
+
wrapList.appendChild(element);
|
613
|
+
attemptMergeWithAdjacent(wrapList.parentNode, false);
|
614
|
+
attemptMergeWithAdjacent(wrapList, false);
|
615
|
+
indented.push(element);
|
616
|
+
}
|
617
|
+
}
|
618
|
+
|
619
|
+
this.process({
|
620
|
+
'LI': indentLI,
|
621
|
+
defaultAction: this.adjustPaddingFunction(true)
|
622
|
+
});
|
623
|
+
|
624
|
+
},
|
625
|
+
|
626
|
+
outdent: function() {
|
627
|
+
var t = this, ed = t.ed, dom = ed.dom, outdented = [];
|
628
|
+
|
629
|
+
function outdentLI(element) {
|
630
|
+
var listElement, targetParent, align;
|
631
|
+
if (!hasParentInList(ed, element, outdented)) {
|
632
|
+
if (dom.getStyle(element, 'margin-left') !== '' || dom.getStyle(element, 'padding-left') !== '') {
|
633
|
+
return t.adjustPaddingFunction(false)(element);
|
634
|
+
}
|
635
|
+
align = dom.getStyle(element, 'text-align', true);
|
636
|
+
if (align === 'center' || align === 'right') {
|
637
|
+
dom.setStyle(element, 'text-align', 'left');
|
638
|
+
return;
|
639
|
+
}
|
640
|
+
element = splitNestedLists(element, dom);
|
641
|
+
listElement = element.parentNode;
|
642
|
+
targetParent = element.parentNode.parentNode;
|
643
|
+
if (targetParent.tagName === 'P') {
|
644
|
+
dom.split(targetParent, element.parentNode);
|
645
|
+
} else {
|
646
|
+
dom.split(listElement, element);
|
647
|
+
if (targetParent.tagName === 'LI') {
|
648
|
+
// Nested list, need to split the LI and go back out to the OL/UL element.
|
649
|
+
dom.split(targetParent, element);
|
650
|
+
} else if (!dom.is(targetParent, 'ol,ul')) {
|
651
|
+
dom.rename(element, 'p');
|
652
|
+
}
|
653
|
+
}
|
654
|
+
outdented.push(element);
|
655
|
+
}
|
656
|
+
}
|
657
|
+
|
658
|
+
this.process({
|
659
|
+
'LI': outdentLI,
|
660
|
+
defaultAction: this.adjustPaddingFunction(false)
|
661
|
+
});
|
662
|
+
|
663
|
+
each(outdented, attemptMergeWithAdjacent);
|
664
|
+
},
|
665
|
+
|
666
|
+
process: function(actions) {
|
667
|
+
var t = this, sel = t.ed.selection, dom = t.ed.dom, selectedBlocks, r;
|
668
|
+
|
669
|
+
function processElement(element) {
|
670
|
+
dom.removeClass(element, '_mce_act_on');
|
671
|
+
if (!element || element.nodeType !== 1) {
|
672
|
+
return;
|
673
|
+
}
|
674
|
+
element = findItemToOperateOn(element, dom);
|
675
|
+
var action = actions[element.tagName];
|
676
|
+
if (!action) {
|
677
|
+
action = actions.defaultAction;
|
678
|
+
}
|
679
|
+
action(element);
|
680
|
+
}
|
681
|
+
|
682
|
+
function recurse(element) {
|
683
|
+
t.splitSafeEach(element.childNodes, processElement);
|
684
|
+
}
|
685
|
+
|
686
|
+
function brAtEdgeOfSelection(container, offset) {
|
687
|
+
return offset >= 0 && container.hasChildNodes() && offset < container.childNodes.length &&
|
688
|
+
container.childNodes[offset].tagName === 'BR';
|
689
|
+
}
|
690
|
+
|
691
|
+
selectedBlocks = sel.getSelectedBlocks();
|
692
|
+
if (selectedBlocks.length === 0) {
|
693
|
+
selectedBlocks = [ dom.getRoot() ];
|
694
|
+
}
|
695
|
+
|
696
|
+
r = sel.getRng(true);
|
697
|
+
if (!r.collapsed) {
|
698
|
+
if (brAtEdgeOfSelection(r.endContainer, r.endOffset - 1)) {
|
699
|
+
r.setEnd(r.endContainer, r.endOffset - 1);
|
700
|
+
sel.setRng(r);
|
701
|
+
}
|
702
|
+
if (brAtEdgeOfSelection(r.startContainer, r.startOffset)) {
|
703
|
+
r.setStart(r.startContainer, r.startOffset + 1);
|
704
|
+
sel.setRng(r);
|
705
|
+
}
|
706
|
+
}
|
707
|
+
bookmark = sel.getBookmark();
|
708
|
+
actions.OL = actions.UL = recurse;
|
709
|
+
t.splitSafeEach(selectedBlocks, processElement);
|
710
|
+
sel.moveToBookmark(bookmark);
|
711
|
+
bookmark = null;
|
712
|
+
// Avoids table or image handles being left behind in Firefox.
|
713
|
+
t.ed.execCommand('mceRepaint');
|
714
|
+
},
|
715
|
+
|
716
|
+
splitSafeEach: function(elements, f) {
|
717
|
+
if (tinymce.isGecko && (/Firefox\/[12]\.[0-9]/.test(navigator.userAgent) ||
|
718
|
+
/Firefox\/3\.[0-4]/.test(navigator.userAgent))) {
|
719
|
+
this.classBasedEach(elements, f);
|
720
|
+
} else {
|
721
|
+
each(elements, f);
|
722
|
+
}
|
723
|
+
},
|
724
|
+
|
725
|
+
classBasedEach: function(elements, f) {
|
726
|
+
var dom = this.ed.dom, nodes, element;
|
727
|
+
// Mark nodes
|
728
|
+
each(elements, function(element) {
|
729
|
+
dom.addClass(element, '_mce_act_on');
|
730
|
+
});
|
731
|
+
nodes = dom.select('._mce_act_on');
|
732
|
+
while (nodes.length > 0) {
|
733
|
+
element = nodes.shift();
|
734
|
+
dom.removeClass(element, '_mce_act_on');
|
735
|
+
f(element);
|
736
|
+
nodes = dom.select('._mce_act_on');
|
737
|
+
}
|
738
|
+
},
|
739
|
+
|
740
|
+
adjustPaddingFunction: function(isIndent) {
|
741
|
+
var indentAmount, indentUnits, ed = this.ed;
|
742
|
+
indentAmount = ed.settings.indentation;
|
743
|
+
indentUnits = /[a-z%]+/i.exec(indentAmount);
|
744
|
+
indentAmount = parseInt(indentAmount, 10);
|
745
|
+
return function(element) {
|
746
|
+
var currentIndent, newIndentAmount;
|
747
|
+
currentIndent = parseInt(ed.dom.getStyle(element, 'margin-left') || 0, 10) + parseInt(ed.dom.getStyle(element, 'padding-left') || 0, 10);
|
748
|
+
if (isIndent) {
|
749
|
+
newIndentAmount = currentIndent + indentAmount;
|
750
|
+
} else {
|
751
|
+
newIndentAmount = currentIndent - indentAmount;
|
752
|
+
}
|
753
|
+
ed.dom.setStyle(element, 'padding-left', '');
|
754
|
+
ed.dom.setStyle(element, 'margin-left', newIndentAmount > 0 ? newIndentAmount + indentUnits : '');
|
755
|
+
};
|
756
|
+
},
|
757
|
+
|
758
|
+
getInfo: function() {
|
759
|
+
return {
|
760
|
+
longname : 'Lists',
|
761
|
+
author : 'Moxiecode Systems AB',
|
762
|
+
authorurl : 'http://tinymce.moxiecode.com',
|
763
|
+
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/lists',
|
764
|
+
version : tinymce.majorVersion + "." + tinymce.minorVersion
|
765
|
+
};
|
766
|
+
}
|
767
|
+
});
|
768
|
+
tinymce.PluginManager.add("lists", tinymce.plugins.Lists);
|
769
|
+
}());
|