spiderfw 0.6.38 → 0.6.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +13 -5
- data/CHANGELOG +23 -0
- data/VERSION +1 -1
- data/apps/core/admin/views/admin.layout.shtml +6 -0
- data/apps/core/auth/controllers/login_controller.rb +1 -1
- data/apps/core/components/assets.rb +55 -6
- data/apps/core/components/public/bootstrap/scss/_variables.scss +5 -2
- data/apps/core/components/public/bootstrap/scss/bootstrap.css +942 -236
- data/apps/core/components/public/bootstrap/scss/responsive.css +187 -30
- data/apps/core/components/public/css/tinymce/skins/lightgray/AbsoluteLayout.less +17 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Animations.less +10 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Button.less +172 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/ButtonGroup.less +71 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Checkbox.less +49 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/ColorBox.less +6 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/ColorButton.less +72 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/ColorPicker.less +80 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/ComboBox.less +39 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Container.less +9 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Content.Inline.less +4 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Content.Objects.less +166 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Content.less +27 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/CropRect.less +54 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/FieldSet.less +15 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/FitLayout.less +9 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/FloatPanel.less +69 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/FlowLayout.less +36 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Icons.Ie7.less +136 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Icons.less +180 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Iframe.less +6 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/ImagePanel.less +20 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/InfoBox.less +71 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Label.less +38 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/ListBox.less +26 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Menu.less +34 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/MenuBar.less +32 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/MenuButton.less +34 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/MenuItem.less +142 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Mixins.less +54 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Notification.less +144 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Panel.less +7 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Path.less +45 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Progress.less +34 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Radio.less +1 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Reset.less +32 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/ResizeHandle.less +18 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Scrollable.less +44 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/SelectBox.less +6 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Slider.less +29 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Spacer.less +5 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/SplitButton.less +49 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/StackLayout.less +5 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/TabPanel.less +44 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/TextBox.less +41 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Throbber.less +19 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/TinyMCE.less +159 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/ToolTip.less +129 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Variables.less +214 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/Window.less +127 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/content.inline.min.css +1 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/content.min.css +1 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/fonts/readme.md +1 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/fonts/tinymce-small.eot +0 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/fonts/tinymce-small.json +1277 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/fonts/tinymce-small.svg +63 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/fonts/tinymce-small.ttf +0 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/fonts/tinymce-small.woff +0 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/fonts/tinymce.eot +0 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/fonts/tinymce.json +3381 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/fonts/tinymce.svg +129 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/fonts/tinymce.ttf +0 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/fonts/tinymce.woff +0 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/img/anchor.gif +0 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/img/loader.gif +0 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/img/object.gif +0 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/img/trans.gif +0 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/skin.dev.less +46 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/skin.ie7.dev.less +46 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/skin.ie7.less +2542 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/skin.ie7.min.css +1 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/skin.less +2586 -0
- data/apps/core/components/public/css/tinymce/skins/lightgray/skin.min.css +1 -0
- data/apps/core/components/public/js/bootbox_2/bootbox.js +551 -0
- data/apps/core/components/public/js/jquery/jquery-ui-1.9.2/ui/i18n/jquery.ui.datepicker-it-min.js +4 -0
- data/apps/core/components/public/js/spider.js +7 -3
- data/apps/core/components/public/js/tinymce/classes/AddOnManager.js +265 -0
- data/apps/core/components/public/js/tinymce/classes/Compat.js +90 -0
- data/apps/core/components/public/js/tinymce/classes/DragDropOverrides.js +224 -0
- data/apps/core/components/public/js/tinymce/classes/Editor.js +2221 -0
- data/apps/core/components/public/js/tinymce/classes/EditorCommands.js +1028 -0
- data/apps/core/components/public/js/tinymce/classes/EditorManager.js +715 -0
- data/apps/core/components/public/js/tinymce/classes/EditorObservable.js +204 -0
- data/apps/core/components/public/js/tinymce/classes/EditorUpload.js +191 -0
- data/apps/core/components/public/js/tinymce/classes/EnterKey.js +676 -0
- data/apps/core/components/public/js/tinymce/classes/Env.js +177 -0
- data/apps/core/components/public/js/tinymce/classes/FocusManager.js +266 -0
- data/apps/core/components/public/js/tinymce/classes/ForceBlocks.js +138 -0
- data/apps/core/components/public/js/tinymce/classes/Formatter.js +2378 -0
- data/apps/core/components/public/js/tinymce/classes/LegacyInput.js +82 -0
- data/apps/core/components/public/js/tinymce/classes/Mode.js +54 -0
- data/apps/core/components/public/js/tinymce/classes/NodeChange.js +154 -0
- data/apps/core/components/public/js/tinymce/classes/NotificationManager.js +156 -0
- data/apps/core/components/public/js/tinymce/classes/Register.js +34 -0
- data/apps/core/components/public/js/tinymce/classes/SelectionOverrides.js +810 -0
- data/apps/core/components/public/js/tinymce/classes/Shortcuts.js +172 -0
- data/apps/core/components/public/js/tinymce/classes/UndoManager.js +346 -0
- data/apps/core/components/public/js/tinymce/classes/WindowManager.js +278 -0
- data/apps/core/components/public/js/tinymce/classes/caret/CaretBookmark.js +263 -0
- data/apps/core/components/public/js/tinymce/classes/caret/CaretCandidate.js +86 -0
- data/apps/core/components/public/js/tinymce/classes/caret/CaretContainer.js +151 -0
- data/apps/core/components/public/js/tinymce/classes/caret/CaretPosition.js +371 -0
- data/apps/core/components/public/js/tinymce/classes/caret/CaretUtils.js +302 -0
- data/apps/core/components/public/js/tinymce/classes/caret/CaretWalker.js +215 -0
- data/apps/core/components/public/js/tinymce/classes/caret/FakeCaret.js +192 -0
- data/apps/core/components/public/js/tinymce/classes/caret/LineUtils.js +135 -0
- data/apps/core/components/public/js/tinymce/classes/caret/LineWalker.js +166 -0
- data/apps/core/components/public/js/tinymce/classes/data/Binding.js +79 -0
- data/apps/core/components/public/js/tinymce/classes/data/ObservableArray.js +196 -0
- data/apps/core/components/public/js/tinymce/classes/data/ObservableObject.js +194 -0
- data/apps/core/components/public/js/tinymce/classes/dom/BookmarkManager.js +456 -0
- data/apps/core/components/public/js/tinymce/classes/dom/ControlSelection.js +634 -0
- data/apps/core/components/public/js/tinymce/classes/dom/DOMUtils.js +1853 -0
- data/apps/core/components/public/js/tinymce/classes/dom/Dimensions.js +64 -0
- data/apps/core/components/public/js/tinymce/classes/dom/DomQuery.js +1578 -0
- data/apps/core/components/public/js/tinymce/classes/dom/ElementUtils.js +118 -0
- data/apps/core/components/public/js/tinymce/classes/dom/EventUtils.js +583 -0
- data/apps/core/components/public/js/tinymce/classes/dom/NodePath.js +50 -0
- data/apps/core/components/public/js/tinymce/classes/dom/NodeType.js +110 -0
- data/apps/core/components/public/js/tinymce/classes/dom/Range.js +785 -0
- data/apps/core/components/public/js/tinymce/classes/dom/RangeUtils.js +628 -0
- data/apps/core/components/public/js/tinymce/classes/dom/ScriptLoader.js +254 -0
- data/apps/core/components/public/js/tinymce/classes/dom/Selection.js +1008 -0
- data/apps/core/components/public/js/tinymce/classes/dom/Serializer.js +506 -0
- data/apps/core/components/public/js/tinymce/classes/dom/Sizzle.jQuery.js +23 -0
- data/apps/core/components/public/js/tinymce/classes/dom/Sizzle.js +2039 -0
- data/apps/core/components/public/js/tinymce/classes/dom/StyleSheetLoader.js +190 -0
- data/apps/core/components/public/js/tinymce/classes/dom/TreeWalker.js +127 -0
- data/apps/core/components/public/js/tinymce/classes/dom/TridentSelection.js +508 -0
- data/apps/core/components/public/js/tinymce/classes/file/BlobCache.js +72 -0
- data/apps/core/components/public/js/tinymce/classes/file/Conversions.js +106 -0
- data/apps/core/components/public/js/tinymce/classes/file/ImageScanner.js +145 -0
- data/apps/core/components/public/js/tinymce/classes/file/Uploader.js +193 -0
- data/apps/core/components/public/js/tinymce/classes/fmt/Hooks.js +66 -0
- data/apps/core/components/public/js/tinymce/classes/fmt/Preview.js +151 -0
- data/apps/core/components/public/js/tinymce/classes/geom/ClientRect.js +136 -0
- data/apps/core/components/public/js/tinymce/classes/geom/Rect.js +214 -0
- data/apps/core/components/public/js/tinymce/classes/html/DomParser.js +822 -0
- data/apps/core/components/public/js/tinymce/classes/html/Entities.js +268 -0
- data/apps/core/components/public/js/tinymce/classes/html/Node.js +496 -0
- data/apps/core/components/public/js/tinymce/classes/html/SaxParser.js +474 -0
- data/apps/core/components/public/js/tinymce/classes/html/Schema.js +1004 -0
- data/apps/core/components/public/js/tinymce/classes/html/Serializer.js +158 -0
- data/apps/core/components/public/js/tinymce/classes/html/Styles.js +363 -0
- data/apps/core/components/public/js/tinymce/classes/html/Writer.js +199 -0
- data/apps/core/components/public/js/tinymce/classes/jquery.tinymce.js +377 -0
- data/apps/core/components/public/js/tinymce/classes/text/ExtendingChar.js +53 -0
- data/apps/core/components/public/js/tinymce/classes/text/Zwsp.js +36 -0
- data/apps/core/components/public/js/tinymce/classes/ui/AbsoluteLayout.js +63 -0
- data/apps/core/components/public/js/tinymce/classes/ui/BoxUtils.js +98 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Button.js +199 -0
- data/apps/core/components/public/js/tinymce/classes/ui/ButtonGroup.js +62 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Checkbox.js +162 -0
- data/apps/core/components/public/js/tinymce/classes/ui/ClassList.js +149 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Collection.js +438 -0
- data/apps/core/components/public/js/tinymce/classes/ui/ColorBox.js +72 -0
- data/apps/core/components/public/js/tinymce/classes/ui/ColorButton.js +124 -0
- data/apps/core/components/public/js/tinymce/classes/ui/ColorPicker.js +206 -0
- data/apps/core/components/public/js/tinymce/classes/ui/ComboBox.js +306 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Container.js +506 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Control.js +1301 -0
- data/apps/core/components/public/js/tinymce/classes/ui/DomUtils.js +107 -0
- data/apps/core/components/public/js/tinymce/classes/ui/DragHelper.js +144 -0
- data/apps/core/components/public/js/tinymce/classes/ui/ElementPath.js +79 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Factory.js +105 -0
- data/apps/core/components/public/js/tinymce/classes/ui/FieldSet.js +59 -0
- data/apps/core/components/public/js/tinymce/classes/ui/FilePicker.js +85 -0
- data/apps/core/components/public/js/tinymce/classes/ui/FitLayout.js +48 -0
- data/apps/core/components/public/js/tinymce/classes/ui/FlexLayout.js +246 -0
- data/apps/core/components/public/js/tinymce/classes/ui/FloatPanel.js +409 -0
- data/apps/core/components/public/js/tinymce/classes/ui/FlowLayout.js +46 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Form.js +157 -0
- data/apps/core/components/public/js/tinymce/classes/ui/FormItem.js +56 -0
- data/apps/core/components/public/js/tinymce/classes/ui/FormatControls.js +535 -0
- data/apps/core/components/public/js/tinymce/classes/ui/GridLayout.js +233 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Iframe.js +85 -0
- data/apps/core/components/public/js/tinymce/classes/ui/InfoBox.js +93 -0
- data/apps/core/components/public/js/tinymce/classes/ui/KeyboardNavigation.js +406 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Label.js +144 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Layout.js +120 -0
- data/apps/core/components/public/js/tinymce/classes/ui/ListBox.js +152 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Menu.js +195 -0
- data/apps/core/components/public/js/tinymce/classes/ui/MenuBar.js +33 -0
- data/apps/core/components/public/js/tinymce/classes/ui/MenuButton.js +268 -0
- data/apps/core/components/public/js/tinymce/classes/ui/MenuItem.js +336 -0
- data/apps/core/components/public/js/tinymce/classes/ui/MessageBox.js +202 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Movable.js +200 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Notification.js +154 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Panel.js +67 -0
- data/apps/core/components/public/js/tinymce/classes/ui/PanelButton.js +114 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Path.js +127 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Progress.js +81 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Radio.js +29 -0
- data/apps/core/components/public/js/tinymce/classes/ui/ReflowQueue.js +79 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Resizable.js +68 -0
- data/apps/core/components/public/js/tinymce/classes/ui/ResizeHandle.js +86 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Scrollable.js +141 -0
- data/apps/core/components/public/js/tinymce/classes/ui/SelectBox.js +106 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Selector.js +369 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Slider.js +161 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Spacer.js +39 -0
- data/apps/core/components/public/js/tinymce/classes/ui/SplitButton.js +146 -0
- data/apps/core/components/public/js/tinymce/classes/ui/StackLayout.js +34 -0
- data/apps/core/components/public/js/tinymce/classes/ui/TabPanel.js +178 -0
- data/apps/core/components/public/js/tinymce/classes/ui/TextBox.js +208 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Throbber.js +88 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Toolbar.js +56 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Tooltip.js +73 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Widget.js +151 -0
- data/apps/core/components/public/js/tinymce/classes/ui/Window.js +474 -0
- data/apps/core/components/public/js/tinymce/classes/util/Arr.js +153 -0
- data/apps/core/components/public/js/tinymce/classes/util/Class.js +167 -0
- data/apps/core/components/public/js/tinymce/classes/util/Color.js +235 -0
- data/apps/core/components/public/js/tinymce/classes/util/Delay.js +191 -0
- data/apps/core/components/public/js/tinymce/classes/util/EventDispatcher.js +294 -0
- data/apps/core/components/public/js/tinymce/classes/util/Fun.js +87 -0
- data/apps/core/components/public/js/tinymce/classes/util/I18n.js +116 -0
- data/apps/core/components/public/js/tinymce/classes/util/JSON.js +109 -0
- data/apps/core/components/public/js/tinymce/classes/util/JSONP.js +38 -0
- data/apps/core/components/public/js/tinymce/classes/util/JSONRequest.js +110 -0
- data/apps/core/components/public/js/tinymce/classes/util/LocalStorage.js +213 -0
- data/apps/core/components/public/js/tinymce/classes/util/Observable.js +129 -0
- data/apps/core/components/public/js/tinymce/classes/util/Promise.js +200 -0
- data/apps/core/components/public/js/tinymce/classes/util/Quirks.js +1701 -0
- data/apps/core/components/public/js/tinymce/classes/util/Tools.js +442 -0
- data/apps/core/components/public/js/tinymce/classes/util/URI.js +411 -0
- data/apps/core/components/public/js/tinymce/classes/util/VK.js +37 -0
- data/apps/core/components/public/js/tinymce/classes/util/XHR.js +110 -0
- data/apps/core/components/public/js/tinymce/jquery.tinymce.min.js +1 -0
- data/apps/core/components/public/js/tinymce/langs/it.js +219 -0
- data/apps/core/components/public/js/tinymce/langs/readme.md +3 -0
- data/apps/core/components/public/js/tinymce/license.txt +504 -0
- data/apps/core/components/public/js/tinymce/plugins/advlist/plugin.js +97 -0
- data/apps/core/components/public/js/tinymce/plugins/advlist/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/anchor/plugin.js +55 -0
- data/apps/core/components/public/js/tinymce/plugins/anchor/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/autolink/plugin.js +204 -0
- data/apps/core/components/public/js/tinymce/plugins/autolink/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/autoresize/plugin.js +162 -0
- data/apps/core/components/public/js/tinymce/plugins/autoresize/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/autosave/plugin.js +165 -0
- data/apps/core/components/public/js/tinymce/plugins/autosave/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/bbcode/plugin.js +123 -0
- data/apps/core/components/public/js/tinymce/plugins/bbcode/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/charmap/plugin.js +450 -0
- data/apps/core/components/public/js/tinymce/plugins/charmap/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/code/plugin.js +60 -0
- data/apps/core/components/public/js/tinymce/plugins/code/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/codesample/classes/Dialog.js +121 -0
- data/apps/core/components/public/js/tinymce/plugins/codesample/classes/Plugin.js +95 -0
- data/apps/core/components/public/js/tinymce/plugins/codesample/classes/Prism.js +937 -0
- data/apps/core/components/public/js/tinymce/plugins/codesample/classes/Utils.js +33 -0
- data/apps/core/components/public/js/tinymce/plugins/codesample/css/prism.css +138 -0
- data/apps/core/components/public/js/tinymce/plugins/codesample/plugin.dev.js +141 -0
- data/apps/core/components/public/js/tinymce/plugins/codesample/plugin.js +1299 -0
- data/apps/core/components/public/js/tinymce/plugins/codesample/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/colorpicker/plugin.js +112 -0
- data/apps/core/components/public/js/tinymce/plugins/colorpicker/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/compat3x/css/dialog.css +118 -0
- data/apps/core/components/public/js/tinymce/plugins/compat3x/img/buttons.png +0 -0
- data/apps/core/components/public/js/tinymce/plugins/compat3x/img/icons.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/compat3x/img/items.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/compat3x/img/menu_arrow.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/compat3x/img/menu_check.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/compat3x/img/progress.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/compat3x/img/tabs.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/compat3x/plugin.js +297 -0
- data/apps/core/components/public/js/tinymce/plugins/compat3x/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/compat3x/tiny_mce_popup.js +542 -0
- data/apps/core/components/public/js/tinymce/plugins/compat3x/utils/editable_selects.js +70 -0
- data/apps/core/components/public/js/tinymce/plugins/compat3x/utils/form_utils.js +210 -0
- data/apps/core/components/public/js/tinymce/plugins/compat3x/utils/mctabs.js +164 -0
- data/apps/core/components/public/js/tinymce/plugins/compat3x/utils/validate.js +252 -0
- data/apps/core/components/public/js/tinymce/plugins/contextmenu/plugin.js +88 -0
- data/apps/core/components/public/js/tinymce/plugins/contextmenu/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/directionality/plugin.js +64 -0
- data/apps/core/components/public/js/tinymce/plugins/directionality/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/emoticons/img/smiley-cool.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/emoticons/img/smiley-cry.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/emoticons/img/smiley-embarassed.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/emoticons/img/smiley-foot-in-mouth.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/emoticons/img/smiley-frown.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/emoticons/img/smiley-innocent.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/emoticons/img/smiley-kiss.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/emoticons/img/smiley-laughing.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/emoticons/img/smiley-money-mouth.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/emoticons/img/smiley-sealed.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/emoticons/img/smiley-smile.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/emoticons/img/smiley-surprised.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/emoticons/img/smiley-tongue-out.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/emoticons/img/smiley-undecided.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/emoticons/img/smiley-wink.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/emoticons/img/smiley-yell.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/emoticons/plugin.js +65 -0
- data/apps/core/components/public/js/tinymce/plugins/emoticons/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/example/dialog.html +8 -0
- data/apps/core/components/public/js/tinymce/plugins/example/plugin.js +68 -0
- data/apps/core/components/public/js/tinymce/plugins/example/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/example_dependency/plugin.js +22 -0
- data/apps/core/components/public/js/tinymce/plugins/example_dependency/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/fullpage/plugin.js +490 -0
- data/apps/core/components/public/js/tinymce/plugins/fullpage/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/fullscreen/plugin.js +154 -0
- data/apps/core/components/public/js/tinymce/plugins/fullscreen/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/hr/plugin.js +30 -0
- data/apps/core/components/public/js/tinymce/plugins/hr/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/image/plugin.js +630 -0
- data/apps/core/components/public/js/tinymce/plugins/image/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/imagetools/config/bolt/atomic.js +6 -0
- data/apps/core/components/public/js/tinymce/plugins/imagetools/config/bolt/browser.js +6 -0
- data/apps/core/components/public/js/tinymce/plugins/imagetools/config/bolt/demo.js +8 -0
- data/apps/core/components/public/js/tinymce/plugins/imagetools/config/bolt/prod.js +6 -0
- data/apps/core/components/public/js/tinymce/plugins/imagetools/plugin.js +2668 -0
- data/apps/core/components/public/js/tinymce/plugins/imagetools/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/imagetools/src/demo/html/demo.html +16 -0
- data/apps/core/components/public/js/tinymce/plugins/imagetools/src/demo/js/Demo.js +92 -0
- data/apps/core/components/public/js/tinymce/plugins/imagetools/src/main/js/CropRect.js +214 -0
- data/apps/core/components/public/js/tinymce/plugins/imagetools/src/main/js/Dialog.js +485 -0
- data/apps/core/components/public/js/tinymce/plugins/imagetools/src/main/js/ImagePanel.js +218 -0
- data/apps/core/components/public/js/tinymce/plugins/imagetools/src/main/js/Plugin.js +411 -0
- data/apps/core/components/public/js/tinymce/plugins/imagetools/src/main/js/UndoStack.js +57 -0
- data/apps/core/components/public/js/tinymce/plugins/importcss/plugin.js +227 -0
- data/apps/core/components/public/js/tinymce/plugins/importcss/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/insertdatetime/plugin.js +121 -0
- data/apps/core/components/public/js/tinymce/plugins/insertdatetime/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/layer/plugin.js +225 -0
- data/apps/core/components/public/js/tinymce/plugins/layer/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/legacyoutput/plugin.js +211 -0
- data/apps/core/components/public/js/tinymce/plugins/legacyoutput/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/link/plugin.js +403 -0
- data/apps/core/components/public/js/tinymce/plugins/link/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/lists/plugin.js +885 -0
- data/apps/core/components/public/js/tinymce/plugins/lists/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/media/moxieplayer.swf +0 -0
- data/apps/core/components/public/js/tinymce/plugins/media/plugin.js +878 -0
- data/apps/core/components/public/js/tinymce/plugins/media/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/nonbreaking/plugin.js +53 -0
- data/apps/core/components/public/js/tinymce/plugins/nonbreaking/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/noneditable/plugin.js +101 -0
- data/apps/core/components/public/js/tinymce/plugins/noneditable/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/pagebreak/plugin.js +88 -0
- data/apps/core/components/public/js/tinymce/plugins/pagebreak/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/paste/classes/Clipboard.js +672 -0
- data/apps/core/components/public/js/tinymce/plugins/paste/classes/Plugin.js +121 -0
- data/apps/core/components/public/js/tinymce/plugins/paste/classes/Quirks.js +159 -0
- data/apps/core/components/public/js/tinymce/plugins/paste/classes/Utils.js +140 -0
- data/apps/core/components/public/js/tinymce/plugins/paste/classes/WordFilter.js +500 -0
- data/apps/core/components/public/js/tinymce/plugins/paste/plugin.dev.js +142 -0
- data/apps/core/components/public/js/tinymce/plugins/paste/plugin.js +1708 -0
- data/apps/core/components/public/js/tinymce/plugins/paste/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/preview/plugin.js +88 -0
- data/apps/core/components/public/js/tinymce/plugins/preview/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/print/plugin.js +32 -0
- data/apps/core/components/public/js/tinymce/plugins/print/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/save/plugin.js +98 -0
- data/apps/core/components/public/js/tinymce/plugins/save/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/searchreplace/plugin.js +609 -0
- data/apps/core/components/public/js/tinymce/plugins/searchreplace/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/spellchecker/classes/DomTextMatcher.js +480 -0
- data/apps/core/components/public/js/tinymce/plugins/spellchecker/classes/Plugin.js +439 -0
- data/apps/core/components/public/js/tinymce/plugins/spellchecker/plugin.dev.js +139 -0
- data/apps/core/components/public/js/tinymce/plugins/spellchecker/plugin.js +1026 -0
- data/apps/core/components/public/js/tinymce/plugins/spellchecker/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/tabfocus/plugin.js +120 -0
- data/apps/core/components/public/js/tinymce/plugins/tabfocus/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/table/classes/CellSelection.js +202 -0
- data/apps/core/components/public/js/tinymce/plugins/table/classes/Dialogs.js +824 -0
- data/apps/core/components/public/js/tinymce/plugins/table/classes/Plugin.js +599 -0
- data/apps/core/components/public/js/tinymce/plugins/table/classes/Quirks.js +400 -0
- data/apps/core/components/public/js/tinymce/plugins/table/classes/ResizeBars.js +984 -0
- data/apps/core/components/public/js/tinymce/plugins/table/classes/TableGrid.js +941 -0
- data/apps/core/components/public/js/tinymce/plugins/table/classes/Utils.js +36 -0
- data/apps/core/components/public/js/tinymce/plugins/table/plugin.dev.js +142 -0
- data/apps/core/components/public/js/tinymce/plugins/table/plugin.js +4106 -0
- data/apps/core/components/public/js/tinymce/plugins/table/plugin.min.js +2 -0
- data/apps/core/components/public/js/tinymce/plugins/template/plugin.js +270 -0
- data/apps/core/components/public/js/tinymce/plugins/template/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/textcolor/plugin.js +282 -0
- data/apps/core/components/public/js/tinymce/plugins/textcolor/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/textpattern/plugin.js +268 -0
- data/apps/core/components/public/js/tinymce/plugins/textpattern/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/visualblocks/css/visualblocks.css +135 -0
- data/apps/core/components/public/js/tinymce/plugins/visualblocks/img/address.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/visualblocks/img/article.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/visualblocks/img/aside.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/visualblocks/img/blockquote.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/visualblocks/img/div.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/visualblocks/img/dl.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/visualblocks/img/figure.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/visualblocks/img/h1.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/visualblocks/img/h2.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/visualblocks/img/h3.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/visualblocks/img/h4.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/visualblocks/img/h5.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/visualblocks/img/h6.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/visualblocks/img/hgroup.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/visualblocks/img/ol.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/visualblocks/img/p.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/visualblocks/img/pre.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/visualblocks/img/section.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/visualblocks/img/ul.gif +0 -0
- data/apps/core/components/public/js/tinymce/plugins/visualblocks/plugin.js +86 -0
- data/apps/core/components/public/js/tinymce/plugins/visualblocks/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/visualchars/plugin.js +123 -0
- data/apps/core/components/public/js/tinymce/plugins/visualchars/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/plugins/wordcount/plugin.js +69 -0
- data/apps/core/components/public/js/tinymce/plugins/wordcount/plugin.min.js +1 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/AbsoluteLayout.less +17 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Animations.less +10 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Button.less +172 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/ButtonGroup.less +71 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Checkbox.less +49 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/ColorBox.less +6 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/ColorButton.less +72 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/ColorPicker.less +80 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/ComboBox.less +39 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Container.less +9 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Content.Inline.less +4 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Content.Objects.less +166 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Content.less +27 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/CropRect.less +54 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/FieldSet.less +15 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/FitLayout.less +9 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/FloatPanel.less +69 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/FlowLayout.less +36 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Icons.Ie7.less +136 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Icons.less +180 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Iframe.less +6 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/ImagePanel.less +20 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/InfoBox.less +71 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Label.less +38 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/ListBox.less +26 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Menu.less +34 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/MenuBar.less +32 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/MenuButton.less +34 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/MenuItem.less +142 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Mixins.less +54 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Notification.less +144 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Panel.less +7 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Path.less +45 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Progress.less +34 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Radio.less +1 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Reset.less +32 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/ResizeHandle.less +18 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Scrollable.less +44 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/SelectBox.less +6 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Slider.less +29 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Spacer.less +5 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/SplitButton.less +49 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/StackLayout.less +5 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/TabPanel.less +44 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/TextBox.less +41 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Throbber.less +19 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/TinyMCE.less +159 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/ToolTip.less +129 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Variables.less +214 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/Window.less +127 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/content.inline.min.css +1 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/content.min.css +1 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/fonts/readme.md +1 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/fonts/tinymce-small.eot +0 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/fonts/tinymce-small.json +1277 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/fonts/tinymce-small.svg +63 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf +0 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/fonts/tinymce-small.woff +0 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/fonts/tinymce.eot +0 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/fonts/tinymce.json +3381 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/fonts/tinymce.svg +129 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/fonts/tinymce.ttf +0 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/fonts/tinymce.woff +0 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/img/anchor.gif +0 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/img/loader.gif +0 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/img/object.gif +0 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/img/trans.gif +0 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/skin.dev.less +46 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/skin.ie7.dev.less +46 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/skin.ie7.less +2542 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/skin.ie7.min.css +1 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/skin.less +2586 -0
- data/apps/core/components/public/js/tinymce/skins/lightgray/skin.min.css +1 -0
- data/apps/core/components/public/js/tinymce/themes/modern/theme.js +878 -0
- data/apps/core/components/public/js/tinymce/themes/modern/theme.min.js +1 -0
- data/apps/core/components/public/js/tinymce/tinymce.dev.js +286 -0
- data/apps/core/components/public/js/tinymce/tinymce.js +45811 -0
- data/apps/core/components/public/js/tinymce/tinymce.min.js +13 -0
- data/apps/core/forms/widgets/form/form.rb +3 -1
- data/apps/core/forms/widgets/form/form.shtml +1 -0
- data/apps/core/forms/widgets/inputs/search_select/search_select.rb +1 -1
- data/apps/core/forms/widgets/inputs/select/select.rb +1 -1
- data/apps/core/forms/widgets/inputs/select/select.shtml +0 -1
- data/apps/messenger/backends/sms/skebby.rb +1 -1
- data/apps/messenger/controllers/mixins/messenger_helper.rb +23 -5
- data/lib/spiderfw/config/options/spider.rb +1 -1
- data/lib/spiderfw/controller/mixins/visual.rb +2 -0
- data/lib/spiderfw/http/adapters/rack.rb +10 -5
- data/lib/spiderfw/http/http.rb +4 -2
- data/lib/spiderfw/model/base_model.rb +4 -4
- data/lib/spiderfw/model/mappers/db_mapper.rb +4 -2
- data/lib/spiderfw/model/storage/db/adapters/mysql.rb +2 -1
- data/lib/spiderfw/model/storage/db/db_storage.rb +4 -0
- data/lib/spiderfw/spider.rb +6 -0
- data/lib/spiderfw/templates/layout.rb +1 -1
- data/lib/spiderfw/utils/monkey/object.rb +3 -0
- data/spider.gemspec +6 -2
- metadata +539 -42
- data/blueprints/.DS_Store +0 -0
@@ -0,0 +1,88 @@
|
|
1
|
+
/**
|
2
|
+
* plugin.js
|
3
|
+
*
|
4
|
+
* Released under LGPL License.
|
5
|
+
* Copyright (c) 1999-2015 Ephox Corp. All rights reserved
|
6
|
+
*
|
7
|
+
* License: http://www.tinymce.com/license
|
8
|
+
* Contributing: http://www.tinymce.com/contributing
|
9
|
+
*/
|
10
|
+
|
11
|
+
/*global tinymce:true */
|
12
|
+
|
13
|
+
tinymce.PluginManager.add('contextmenu', function(editor) {
|
14
|
+
var menu, contextmenuNeverUseNative = editor.settings.contextmenu_never_use_native;
|
15
|
+
|
16
|
+
editor.on('contextmenu', function(e) {
|
17
|
+
var contextmenu, doc = editor.getDoc();
|
18
|
+
|
19
|
+
// Block TinyMCE menu on ctrlKey
|
20
|
+
if (e.ctrlKey && !contextmenuNeverUseNative) {
|
21
|
+
return;
|
22
|
+
}
|
23
|
+
|
24
|
+
e.preventDefault();
|
25
|
+
|
26
|
+
/**
|
27
|
+
* WebKit/Blink on Mac has the odd behavior of selecting the target word or line this causes
|
28
|
+
* issues when for example inserting images see: #7022
|
29
|
+
*/
|
30
|
+
if (tinymce.Env.mac && tinymce.Env.webkit) {
|
31
|
+
if (e.button == 2 && doc.caretRangeFromPoint) {
|
32
|
+
editor.selection.setRng(doc.caretRangeFromPoint(e.x, e.y));
|
33
|
+
}
|
34
|
+
}
|
35
|
+
|
36
|
+
contextmenu = editor.settings.contextmenu || 'link image inserttable | cell row column deletetable';
|
37
|
+
|
38
|
+
// Render menu
|
39
|
+
if (!menu) {
|
40
|
+
var items = [];
|
41
|
+
|
42
|
+
tinymce.each(contextmenu.split(/[ ,]/), function(name) {
|
43
|
+
var item = editor.menuItems[name];
|
44
|
+
|
45
|
+
if (name == '|') {
|
46
|
+
item = {text: name};
|
47
|
+
}
|
48
|
+
|
49
|
+
if (item) {
|
50
|
+
item.shortcut = ''; // Hide shortcuts
|
51
|
+
items.push(item);
|
52
|
+
}
|
53
|
+
});
|
54
|
+
|
55
|
+
for (var i = 0; i < items.length; i++) {
|
56
|
+
if (items[i].text == '|') {
|
57
|
+
if (i === 0 || i == items.length - 1) {
|
58
|
+
items.splice(i, 1);
|
59
|
+
}
|
60
|
+
}
|
61
|
+
}
|
62
|
+
|
63
|
+
menu = new tinymce.ui.Menu({
|
64
|
+
items: items,
|
65
|
+
context: 'contextmenu',
|
66
|
+
classes: 'contextmenu'
|
67
|
+
}).renderTo();
|
68
|
+
|
69
|
+
editor.on('remove', function() {
|
70
|
+
menu.remove();
|
71
|
+
menu = null;
|
72
|
+
});
|
73
|
+
} else {
|
74
|
+
menu.show();
|
75
|
+
}
|
76
|
+
|
77
|
+
// Position menu
|
78
|
+
var pos = {x: e.pageX, y: e.pageY};
|
79
|
+
|
80
|
+
if (!editor.inline) {
|
81
|
+
pos = tinymce.DOM.getPos(editor.getContentAreaContainer());
|
82
|
+
pos.x += e.clientX;
|
83
|
+
pos.y += e.clientY;
|
84
|
+
}
|
85
|
+
|
86
|
+
menu.moveTo(pos.x, pos.y);
|
87
|
+
});
|
88
|
+
});
|
@@ -0,0 +1 @@
|
|
1
|
+
tinymce.PluginManager.add("contextmenu",function(a){var b,c=a.settings.contextmenu_never_use_native;a.on("contextmenu",function(d){var e,f=a.getDoc();if(!d.ctrlKey||c){if(d.preventDefault(),tinymce.Env.mac&&tinymce.Env.webkit&&2==d.button&&f.caretRangeFromPoint&&a.selection.setRng(f.caretRangeFromPoint(d.x,d.y)),e=a.settings.contextmenu||"link image inserttable | cell row column deletetable",b)b.show();else{var g=[];tinymce.each(e.split(/[ ,]/),function(b){var c=a.menuItems[b];"|"==b&&(c={text:b}),c&&(c.shortcut="",g.push(c))});for(var h=0;h<g.length;h++)"|"==g[h].text&&(0!==h&&h!=g.length-1||g.splice(h,1));b=new tinymce.ui.Menu({items:g,context:"contextmenu",classes:"contextmenu"}).renderTo(),a.on("remove",function(){b.remove(),b=null})}var i={x:d.pageX,y:d.pageY};a.inline||(i=tinymce.DOM.getPos(a.getContentAreaContainer()),i.x+=d.clientX,i.y+=d.clientY),b.moveTo(i.x,i.y)}})});
|
@@ -0,0 +1,64 @@
|
|
1
|
+
/**
|
2
|
+
* plugin.js
|
3
|
+
*
|
4
|
+
* Released under LGPL License.
|
5
|
+
* Copyright (c) 1999-2015 Ephox Corp. All rights reserved
|
6
|
+
*
|
7
|
+
* License: http://www.tinymce.com/license
|
8
|
+
* Contributing: http://www.tinymce.com/contributing
|
9
|
+
*/
|
10
|
+
|
11
|
+
/*global tinymce:true */
|
12
|
+
|
13
|
+
tinymce.PluginManager.add('directionality', function(editor) {
|
14
|
+
function setDir(dir) {
|
15
|
+
var dom = editor.dom, curDir, blocks = editor.selection.getSelectedBlocks();
|
16
|
+
|
17
|
+
if (blocks.length) {
|
18
|
+
curDir = dom.getAttrib(blocks[0], "dir");
|
19
|
+
|
20
|
+
tinymce.each(blocks, function(block) {
|
21
|
+
// Add dir to block if the parent block doesn't already have that dir
|
22
|
+
if (!dom.getParent(block.parentNode, "*[dir='" + dir + "']", dom.getRoot())) {
|
23
|
+
if (curDir != dir) {
|
24
|
+
dom.setAttrib(block, "dir", dir);
|
25
|
+
} else {
|
26
|
+
dom.setAttrib(block, "dir", null);
|
27
|
+
}
|
28
|
+
}
|
29
|
+
});
|
30
|
+
|
31
|
+
editor.nodeChanged();
|
32
|
+
}
|
33
|
+
}
|
34
|
+
|
35
|
+
function generateSelector(dir) {
|
36
|
+
var selector = [];
|
37
|
+
|
38
|
+
tinymce.each('h1 h2 h3 h4 h5 h6 div p'.split(' '), function(name) {
|
39
|
+
selector.push(name + '[dir=' + dir + ']');
|
40
|
+
});
|
41
|
+
|
42
|
+
return selector.join(',');
|
43
|
+
}
|
44
|
+
|
45
|
+
editor.addCommand('mceDirectionLTR', function() {
|
46
|
+
setDir("ltr");
|
47
|
+
});
|
48
|
+
|
49
|
+
editor.addCommand('mceDirectionRTL', function() {
|
50
|
+
setDir("rtl");
|
51
|
+
});
|
52
|
+
|
53
|
+
editor.addButton('ltr', {
|
54
|
+
title: 'Left to right',
|
55
|
+
cmd: 'mceDirectionLTR',
|
56
|
+
stateSelector: generateSelector('ltr')
|
57
|
+
});
|
58
|
+
|
59
|
+
editor.addButton('rtl', {
|
60
|
+
title: 'Right to left',
|
61
|
+
cmd: 'mceDirectionRTL',
|
62
|
+
stateSelector: generateSelector('rtl')
|
63
|
+
});
|
64
|
+
});
|
@@ -0,0 +1 @@
|
|
1
|
+
tinymce.PluginManager.add("directionality",function(a){function b(b){var c,d=a.dom,e=a.selection.getSelectedBlocks();e.length&&(c=d.getAttrib(e[0],"dir"),tinymce.each(e,function(a){d.getParent(a.parentNode,"*[dir='"+b+"']",d.getRoot())||(c!=b?d.setAttrib(a,"dir",b):d.setAttrib(a,"dir",null))}),a.nodeChanged())}function c(a){var b=[];return tinymce.each("h1 h2 h3 h4 h5 h6 div p".split(" "),function(c){b.push(c+"[dir="+a+"]")}),b.join(",")}a.addCommand("mceDirectionLTR",function(){b("ltr")}),a.addCommand("mceDirectionRTL",function(){b("rtl")}),a.addButton("ltr",{title:"Left to right",cmd:"mceDirectionLTR",stateSelector:c("ltr")}),a.addButton("rtl",{title:"Right to left",cmd:"mceDirectionRTL",stateSelector:c("rtl")})});
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,65 @@
|
|
1
|
+
/**
|
2
|
+
* plugin.js
|
3
|
+
*
|
4
|
+
* Released under LGPL License.
|
5
|
+
* Copyright (c) 1999-2015 Ephox Corp. All rights reserved
|
6
|
+
*
|
7
|
+
* License: http://www.tinymce.com/license
|
8
|
+
* Contributing: http://www.tinymce.com/contributing
|
9
|
+
*/
|
10
|
+
|
11
|
+
/*global tinymce:true */
|
12
|
+
|
13
|
+
tinymce.PluginManager.add('emoticons', function(editor, url) {
|
14
|
+
var emoticons = [
|
15
|
+
["cool", "cry", "embarassed", "foot-in-mouth"],
|
16
|
+
["frown", "innocent", "kiss", "laughing"],
|
17
|
+
["money-mouth", "sealed", "smile", "surprised"],
|
18
|
+
["tongue-out", "undecided", "wink", "yell"]
|
19
|
+
];
|
20
|
+
|
21
|
+
function getHtml() {
|
22
|
+
var emoticonsHtml;
|
23
|
+
|
24
|
+
emoticonsHtml = '<table role="list" class="mce-grid">';
|
25
|
+
|
26
|
+
tinymce.each(emoticons, function(row) {
|
27
|
+
emoticonsHtml += '<tr>';
|
28
|
+
|
29
|
+
tinymce.each(row, function(icon) {
|
30
|
+
var emoticonUrl = url + '/img/smiley-' + icon + '.gif';
|
31
|
+
|
32
|
+
emoticonsHtml += '<td><a href="#" data-mce-url="' + emoticonUrl + '" data-mce-alt="' + icon + '" tabindex="-1" ' +
|
33
|
+
'role="option" aria-label="' + icon + '"><img src="' +
|
34
|
+
emoticonUrl + '" style="width: 18px; height: 18px" role="presentation" /></a></td>';
|
35
|
+
});
|
36
|
+
|
37
|
+
emoticonsHtml += '</tr>';
|
38
|
+
});
|
39
|
+
|
40
|
+
emoticonsHtml += '</table>';
|
41
|
+
|
42
|
+
return emoticonsHtml;
|
43
|
+
}
|
44
|
+
|
45
|
+
editor.addButton('emoticons', {
|
46
|
+
type: 'panelbutton',
|
47
|
+
panel: {
|
48
|
+
role: 'application',
|
49
|
+
autohide: true,
|
50
|
+
html: getHtml,
|
51
|
+
onclick: function(e) {
|
52
|
+
var linkElm = editor.dom.getParent(e.target, 'a');
|
53
|
+
|
54
|
+
if (linkElm) {
|
55
|
+
editor.insertContent(
|
56
|
+
'<img src="' + linkElm.getAttribute('data-mce-url') + '" alt="' + linkElm.getAttribute('data-mce-alt') + '" />'
|
57
|
+
);
|
58
|
+
|
59
|
+
this.hide();
|
60
|
+
}
|
61
|
+
}
|
62
|
+
},
|
63
|
+
tooltip: 'Emoticons'
|
64
|
+
});
|
65
|
+
});
|
@@ -0,0 +1 @@
|
|
1
|
+
tinymce.PluginManager.add("emoticons",function(a,b){function c(){var a;return a='<table role="list" class="mce-grid">',tinymce.each(d,function(c){a+="<tr>",tinymce.each(c,function(c){var d=b+"/img/smiley-"+c+".gif";a+='<td><a href="#" data-mce-url="'+d+'" data-mce-alt="'+c+'" tabindex="-1" role="option" aria-label="'+c+'"><img src="'+d+'" style="width: 18px; height: 18px" role="presentation" /></a></td>'}),a+="</tr>"}),a+="</table>"}var d=[["cool","cry","embarassed","foot-in-mouth"],["frown","innocent","kiss","laughing"],["money-mouth","sealed","smile","surprised"],["tongue-out","undecided","wink","yell"]];a.addButton("emoticons",{type:"panelbutton",panel:{role:"application",autohide:!0,html:c,onclick:function(b){var c=a.dom.getParent(b.target,"a");c&&(a.insertContent('<img src="'+c.getAttribute("data-mce-url")+'" alt="'+c.getAttribute("data-mce-alt")+'" />'),this.hide())}},tooltip:"Emoticons"})});
|
@@ -0,0 +1,68 @@
|
|
1
|
+
/**
|
2
|
+
* plugin.js
|
3
|
+
*
|
4
|
+
* Released under LGPL License.
|
5
|
+
* Copyright (c) 1999-2015 Ephox Corp. All rights reserved
|
6
|
+
*
|
7
|
+
* License: http://www.tinymce.com/license
|
8
|
+
* Contributing: http://www.tinymce.com/contributing
|
9
|
+
*/
|
10
|
+
|
11
|
+
/*jshint unused:false */
|
12
|
+
/*global tinymce:true */
|
13
|
+
|
14
|
+
/**
|
15
|
+
* Example plugin that adds a toolbar button and menu item.
|
16
|
+
*/
|
17
|
+
tinymce.PluginManager.add('example', function(editor, url) {
|
18
|
+
// Add a button that opens a window
|
19
|
+
editor.addButton('example', {
|
20
|
+
text: 'My button',
|
21
|
+
icon: false,
|
22
|
+
onclick: function() {
|
23
|
+
// Open window
|
24
|
+
editor.windowManager.open({
|
25
|
+
title: 'Example plugin',
|
26
|
+
body: [
|
27
|
+
{type: 'textbox', name: 'title', label: 'Title'}
|
28
|
+
],
|
29
|
+
onsubmit: function(e) {
|
30
|
+
// Insert content when the window form is submitted
|
31
|
+
editor.insertContent('Title: ' + e.data.title);
|
32
|
+
}
|
33
|
+
});
|
34
|
+
}
|
35
|
+
});
|
36
|
+
|
37
|
+
// Adds a menu item to the tools menu
|
38
|
+
editor.addMenuItem('example', {
|
39
|
+
text: 'Example plugin',
|
40
|
+
context: 'tools',
|
41
|
+
onclick: function() {
|
42
|
+
// Open window with a specific url
|
43
|
+
editor.windowManager.open({
|
44
|
+
title: 'TinyMCE site',
|
45
|
+
url: url + '/dialog.html',
|
46
|
+
width: 600,
|
47
|
+
height: 400,
|
48
|
+
buttons: [
|
49
|
+
{
|
50
|
+
text: 'Insert',
|
51
|
+
onclick: function() {
|
52
|
+
// Top most window object
|
53
|
+
var win = editor.windowManager.getWindows()[0];
|
54
|
+
|
55
|
+
// Insert the contents of the dialog.html textarea into the editor
|
56
|
+
editor.insertContent(win.getContentWindow().document.getElementById('content').value);
|
57
|
+
|
58
|
+
// Close the window
|
59
|
+
win.close();
|
60
|
+
}
|
61
|
+
},
|
62
|
+
|
63
|
+
{text: 'Close', onclick: 'close'}
|
64
|
+
]
|
65
|
+
});
|
66
|
+
}
|
67
|
+
});
|
68
|
+
});
|
@@ -0,0 +1 @@
|
|
1
|
+
tinymce.PluginManager.add("example",function(a,b){a.addButton("example",{text:"My button",icon:!1,onclick:function(){a.windowManager.open({title:"Example plugin",body:[{type:"textbox",name:"title",label:"Title"}],onsubmit:function(b){a.insertContent("Title: "+b.data.title)}})}}),a.addMenuItem("example",{text:"Example plugin",context:"tools",onclick:function(){a.windowManager.open({title:"TinyMCE site",url:b+"/dialog.html",width:600,height:400,buttons:[{text:"Insert",onclick:function(){var b=a.windowManager.getWindows()[0];a.insertContent(b.getContentWindow().document.getElementById("content").value),b.close()}},{text:"Close",onclick:"close"}]})}})});
|
@@ -0,0 +1,22 @@
|
|
1
|
+
/**
|
2
|
+
* plugin.js
|
3
|
+
*
|
4
|
+
* Released under LGPL License.
|
5
|
+
* Copyright (c) 1999-2015 Ephox Corp. All rights reserved
|
6
|
+
*
|
7
|
+
* License: http://www.tinymce.com/license
|
8
|
+
* Contributing: http://www.tinymce.com/contributing
|
9
|
+
*/
|
10
|
+
|
11
|
+
/*jshint unused:false */
|
12
|
+
/*global tinymce:true */
|
13
|
+
|
14
|
+
/**
|
15
|
+
* Register the plugin, specifying the list of the plugins that this plugin depends on. They are specified in a list,
|
16
|
+
* with the list loaded in order. plugins in this list will be initialised when this plugin is initialized. (before the
|
17
|
+
* init method is called). plugins in a depends list should typically be specified using the short name). If necessary
|
18
|
+
* this can be done with an object which has the url to the plugin and the shortname.
|
19
|
+
*/
|
20
|
+
tinymce.PluginManager.add('example_dependency', function() {
|
21
|
+
// Example logic here
|
22
|
+
}, ['example']);
|
@@ -0,0 +1 @@
|
|
1
|
+
tinymce.PluginManager.add("example_dependency",function(){},["example"]);
|
@@ -0,0 +1,490 @@
|
|
1
|
+
/**
|
2
|
+
* plugin.js
|
3
|
+
*
|
4
|
+
* Released under LGPL License.
|
5
|
+
* Copyright (c) 1999-2015 Ephox Corp. All rights reserved
|
6
|
+
*
|
7
|
+
* License: http://www.tinymce.com/license
|
8
|
+
* Contributing: http://www.tinymce.com/contributing
|
9
|
+
*/
|
10
|
+
|
11
|
+
/*global tinymce:true */
|
12
|
+
|
13
|
+
tinymce.PluginManager.add('fullpage', function(editor) {
|
14
|
+
var each = tinymce.each, Node = tinymce.html.Node;
|
15
|
+
var head, foot;
|
16
|
+
|
17
|
+
function showDialog() {
|
18
|
+
var data = htmlToData();
|
19
|
+
|
20
|
+
editor.windowManager.open({
|
21
|
+
title: 'Document properties',
|
22
|
+
data: data,
|
23
|
+
defaults: {type: 'textbox', size: 40},
|
24
|
+
body: [
|
25
|
+
{name: 'title', label: 'Title'},
|
26
|
+
{name: 'keywords', label: 'Keywords'},
|
27
|
+
{name: 'description', label: 'Description'},
|
28
|
+
{name: 'robots', label: 'Robots'},
|
29
|
+
{name: 'author', label: 'Author'},
|
30
|
+
{name: 'docencoding', label: 'Encoding'}
|
31
|
+
],
|
32
|
+
onSubmit: function(e) {
|
33
|
+
dataToHtml(tinymce.extend(data, e.data));
|
34
|
+
}
|
35
|
+
});
|
36
|
+
}
|
37
|
+
|
38
|
+
function htmlToData() {
|
39
|
+
var headerFragment = parseHeader(), data = {}, elm, matches;
|
40
|
+
|
41
|
+
function getAttr(elm, name) {
|
42
|
+
var value = elm.attr(name);
|
43
|
+
|
44
|
+
return value || '';
|
45
|
+
}
|
46
|
+
|
47
|
+
// Default some values
|
48
|
+
data.fontface = editor.getParam("fullpage_default_fontface", "");
|
49
|
+
data.fontsize = editor.getParam("fullpage_default_fontsize", "");
|
50
|
+
|
51
|
+
// Parse XML PI
|
52
|
+
elm = headerFragment.firstChild;
|
53
|
+
if (elm.type == 7) {
|
54
|
+
data.xml_pi = true;
|
55
|
+
matches = /encoding="([^"]+)"/.exec(elm.value);
|
56
|
+
if (matches) {
|
57
|
+
data.docencoding = matches[1];
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
// Parse doctype
|
62
|
+
elm = headerFragment.getAll('#doctype')[0];
|
63
|
+
if (elm) {
|
64
|
+
data.doctype = '<!DOCTYPE' + elm.value + ">";
|
65
|
+
}
|
66
|
+
|
67
|
+
// Parse title element
|
68
|
+
elm = headerFragment.getAll('title')[0];
|
69
|
+
if (elm && elm.firstChild) {
|
70
|
+
data.title = elm.firstChild.value;
|
71
|
+
}
|
72
|
+
|
73
|
+
// Parse meta elements
|
74
|
+
each(headerFragment.getAll('meta'), function(meta) {
|
75
|
+
var name = meta.attr('name'), httpEquiv = meta.attr('http-equiv'), matches;
|
76
|
+
|
77
|
+
if (name) {
|
78
|
+
data[name.toLowerCase()] = meta.attr('content');
|
79
|
+
} else if (httpEquiv == "Content-Type") {
|
80
|
+
matches = /charset\s*=\s*(.*)\s*/gi.exec(meta.attr('content'));
|
81
|
+
|
82
|
+
if (matches) {
|
83
|
+
data.docencoding = matches[1];
|
84
|
+
}
|
85
|
+
}
|
86
|
+
});
|
87
|
+
|
88
|
+
// Parse html attribs
|
89
|
+
elm = headerFragment.getAll('html')[0];
|
90
|
+
if (elm) {
|
91
|
+
data.langcode = getAttr(elm, 'lang') || getAttr(elm, 'xml:lang');
|
92
|
+
}
|
93
|
+
|
94
|
+
// Parse stylesheets
|
95
|
+
data.stylesheets = [];
|
96
|
+
tinymce.each(headerFragment.getAll('link'), function(link) {
|
97
|
+
if (link.attr('rel') == 'stylesheet') {
|
98
|
+
data.stylesheets.push(link.attr('href'));
|
99
|
+
}
|
100
|
+
});
|
101
|
+
|
102
|
+
// Parse body parts
|
103
|
+
elm = headerFragment.getAll('body')[0];
|
104
|
+
if (elm) {
|
105
|
+
data.langdir = getAttr(elm, 'dir');
|
106
|
+
data.style = getAttr(elm, 'style');
|
107
|
+
data.visited_color = getAttr(elm, 'vlink');
|
108
|
+
data.link_color = getAttr(elm, 'link');
|
109
|
+
data.active_color = getAttr(elm, 'alink');
|
110
|
+
}
|
111
|
+
|
112
|
+
return data;
|
113
|
+
}
|
114
|
+
|
115
|
+
function dataToHtml(data) {
|
116
|
+
var headerFragment, headElement, html, elm, value, dom = editor.dom;
|
117
|
+
|
118
|
+
function setAttr(elm, name, value) {
|
119
|
+
elm.attr(name, value ? value : undefined);
|
120
|
+
}
|
121
|
+
|
122
|
+
function addHeadNode(node) {
|
123
|
+
if (headElement.firstChild) {
|
124
|
+
headElement.insert(node, headElement.firstChild);
|
125
|
+
} else {
|
126
|
+
headElement.append(node);
|
127
|
+
}
|
128
|
+
}
|
129
|
+
|
130
|
+
headerFragment = parseHeader();
|
131
|
+
headElement = headerFragment.getAll('head')[0];
|
132
|
+
if (!headElement) {
|
133
|
+
elm = headerFragment.getAll('html')[0];
|
134
|
+
headElement = new Node('head', 1);
|
135
|
+
|
136
|
+
if (elm.firstChild) {
|
137
|
+
elm.insert(headElement, elm.firstChild, true);
|
138
|
+
} else {
|
139
|
+
elm.append(headElement);
|
140
|
+
}
|
141
|
+
}
|
142
|
+
|
143
|
+
// Add/update/remove XML-PI
|
144
|
+
elm = headerFragment.firstChild;
|
145
|
+
if (data.xml_pi) {
|
146
|
+
value = 'version="1.0"';
|
147
|
+
|
148
|
+
if (data.docencoding) {
|
149
|
+
value += ' encoding="' + data.docencoding + '"';
|
150
|
+
}
|
151
|
+
|
152
|
+
if (elm.type != 7) {
|
153
|
+
elm = new Node('xml', 7);
|
154
|
+
headerFragment.insert(elm, headerFragment.firstChild, true);
|
155
|
+
}
|
156
|
+
|
157
|
+
elm.value = value;
|
158
|
+
} else if (elm && elm.type == 7) {
|
159
|
+
elm.remove();
|
160
|
+
}
|
161
|
+
|
162
|
+
// Add/update/remove doctype
|
163
|
+
elm = headerFragment.getAll('#doctype')[0];
|
164
|
+
if (data.doctype) {
|
165
|
+
if (!elm) {
|
166
|
+
elm = new Node('#doctype', 10);
|
167
|
+
|
168
|
+
if (data.xml_pi) {
|
169
|
+
headerFragment.insert(elm, headerFragment.firstChild);
|
170
|
+
} else {
|
171
|
+
addHeadNode(elm);
|
172
|
+
}
|
173
|
+
}
|
174
|
+
|
175
|
+
elm.value = data.doctype.substring(9, data.doctype.length - 1);
|
176
|
+
} else if (elm) {
|
177
|
+
elm.remove();
|
178
|
+
}
|
179
|
+
|
180
|
+
// Add meta encoding
|
181
|
+
elm = null;
|
182
|
+
each(headerFragment.getAll('meta'), function(meta) {
|
183
|
+
if (meta.attr('http-equiv') == 'Content-Type') {
|
184
|
+
elm = meta;
|
185
|
+
}
|
186
|
+
});
|
187
|
+
|
188
|
+
if (data.docencoding) {
|
189
|
+
if (!elm) {
|
190
|
+
elm = new Node('meta', 1);
|
191
|
+
elm.attr('http-equiv', 'Content-Type');
|
192
|
+
elm.shortEnded = true;
|
193
|
+
addHeadNode(elm);
|
194
|
+
}
|
195
|
+
|
196
|
+
elm.attr('content', 'text/html; charset=' + data.docencoding);
|
197
|
+
} else if (elm) {
|
198
|
+
elm.remove();
|
199
|
+
}
|
200
|
+
|
201
|
+
// Add/update/remove title
|
202
|
+
elm = headerFragment.getAll('title')[0];
|
203
|
+
if (data.title) {
|
204
|
+
if (!elm) {
|
205
|
+
elm = new Node('title', 1);
|
206
|
+
addHeadNode(elm);
|
207
|
+
} else {
|
208
|
+
elm.empty();
|
209
|
+
}
|
210
|
+
|
211
|
+
elm.append(new Node('#text', 3)).value = data.title;
|
212
|
+
} else if (elm) {
|
213
|
+
elm.remove();
|
214
|
+
}
|
215
|
+
|
216
|
+
// Add/update/remove meta
|
217
|
+
each('keywords,description,author,copyright,robots'.split(','), function(name) {
|
218
|
+
var nodes = headerFragment.getAll('meta'), i, meta, value = data[name];
|
219
|
+
|
220
|
+
for (i = 0; i < nodes.length; i++) {
|
221
|
+
meta = nodes[i];
|
222
|
+
|
223
|
+
if (meta.attr('name') == name) {
|
224
|
+
if (value) {
|
225
|
+
meta.attr('content', value);
|
226
|
+
} else {
|
227
|
+
meta.remove();
|
228
|
+
}
|
229
|
+
|
230
|
+
return;
|
231
|
+
}
|
232
|
+
}
|
233
|
+
|
234
|
+
if (value) {
|
235
|
+
elm = new Node('meta', 1);
|
236
|
+
elm.attr('name', name);
|
237
|
+
elm.attr('content', value);
|
238
|
+
elm.shortEnded = true;
|
239
|
+
|
240
|
+
addHeadNode(elm);
|
241
|
+
}
|
242
|
+
});
|
243
|
+
|
244
|
+
var currentStyleSheetsMap = {};
|
245
|
+
tinymce.each(headerFragment.getAll('link'), function(stylesheet) {
|
246
|
+
if (stylesheet.attr('rel') == 'stylesheet') {
|
247
|
+
currentStyleSheetsMap[stylesheet.attr('href')] = stylesheet;
|
248
|
+
}
|
249
|
+
});
|
250
|
+
|
251
|
+
// Add new
|
252
|
+
tinymce.each(data.stylesheets, function(stylesheet) {
|
253
|
+
if (!currentStyleSheetsMap[stylesheet]) {
|
254
|
+
elm = new Node('link', 1);
|
255
|
+
elm.attr({
|
256
|
+
rel: 'stylesheet',
|
257
|
+
text: 'text/css',
|
258
|
+
href: stylesheet
|
259
|
+
});
|
260
|
+
elm.shortEnded = true;
|
261
|
+
addHeadNode(elm);
|
262
|
+
}
|
263
|
+
|
264
|
+
delete currentStyleSheetsMap[stylesheet];
|
265
|
+
});
|
266
|
+
|
267
|
+
// Delete old
|
268
|
+
tinymce.each(currentStyleSheetsMap, function(stylesheet) {
|
269
|
+
stylesheet.remove();
|
270
|
+
});
|
271
|
+
|
272
|
+
// Update body attributes
|
273
|
+
elm = headerFragment.getAll('body')[0];
|
274
|
+
if (elm) {
|
275
|
+
setAttr(elm, 'dir', data.langdir);
|
276
|
+
setAttr(elm, 'style', data.style);
|
277
|
+
setAttr(elm, 'vlink', data.visited_color);
|
278
|
+
setAttr(elm, 'link', data.link_color);
|
279
|
+
setAttr(elm, 'alink', data.active_color);
|
280
|
+
|
281
|
+
// Update iframe body as well
|
282
|
+
dom.setAttribs(editor.getBody(), {
|
283
|
+
style: data.style,
|
284
|
+
dir: data.dir,
|
285
|
+
vLink: data.visited_color,
|
286
|
+
link: data.link_color,
|
287
|
+
aLink: data.active_color
|
288
|
+
});
|
289
|
+
}
|
290
|
+
|
291
|
+
// Set html attributes
|
292
|
+
elm = headerFragment.getAll('html')[0];
|
293
|
+
if (elm) {
|
294
|
+
setAttr(elm, 'lang', data.langcode);
|
295
|
+
setAttr(elm, 'xml:lang', data.langcode);
|
296
|
+
}
|
297
|
+
|
298
|
+
// No need for a head element
|
299
|
+
if (!headElement.firstChild) {
|
300
|
+
headElement.remove();
|
301
|
+
}
|
302
|
+
|
303
|
+
// Serialize header fragment and crop away body part
|
304
|
+
html = new tinymce.html.Serializer({
|
305
|
+
validate: false,
|
306
|
+
indent: true,
|
307
|
+
apply_source_formatting: true,
|
308
|
+
indent_before: 'head,html,body,meta,title,script,link,style',
|
309
|
+
indent_after: 'head,html,body,meta,title,script,link,style'
|
310
|
+
}).serialize(headerFragment);
|
311
|
+
|
312
|
+
head = html.substring(0, html.indexOf('</body>'));
|
313
|
+
}
|
314
|
+
|
315
|
+
function parseHeader() {
|
316
|
+
// Parse the contents with a DOM parser
|
317
|
+
return new tinymce.html.DomParser({
|
318
|
+
validate: false,
|
319
|
+
root_name: '#document'
|
320
|
+
}).parse(head);
|
321
|
+
}
|
322
|
+
|
323
|
+
function setContent(evt) {
|
324
|
+
var startPos, endPos, content = evt.content, headerFragment, styles = '', dom = editor.dom, elm;
|
325
|
+
|
326
|
+
if (evt.selection) {
|
327
|
+
return;
|
328
|
+
}
|
329
|
+
|
330
|
+
function low(s) {
|
331
|
+
return s.replace(/<\/?[A-Z]+/g, function(a) {
|
332
|
+
return a.toLowerCase();
|
333
|
+
});
|
334
|
+
}
|
335
|
+
|
336
|
+
// Ignore raw updated if we already have a head, this will fix issues with undo/redo keeping the head/foot separate
|
337
|
+
if (evt.format == 'raw' && head) {
|
338
|
+
return;
|
339
|
+
}
|
340
|
+
|
341
|
+
if (evt.source_view && editor.getParam('fullpage_hide_in_source_view')) {
|
342
|
+
return;
|
343
|
+
}
|
344
|
+
|
345
|
+
// Fixed so new document/setContent('') doesn't remove existing header/footer except when it's in source code view
|
346
|
+
if (content.length === 0 && !evt.source_view) {
|
347
|
+
content = tinymce.trim(head) + '\n' + tinymce.trim(content) + '\n' + tinymce.trim(foot);
|
348
|
+
}
|
349
|
+
|
350
|
+
// Parse out head, body and footer
|
351
|
+
content = content.replace(/<(\/?)BODY/gi, '<$1body');
|
352
|
+
startPos = content.indexOf('<body');
|
353
|
+
|
354
|
+
if (startPos != -1) {
|
355
|
+
startPos = content.indexOf('>', startPos);
|
356
|
+
head = low(content.substring(0, startPos + 1));
|
357
|
+
|
358
|
+
endPos = content.indexOf('</body', startPos);
|
359
|
+
if (endPos == -1) {
|
360
|
+
endPos = content.length;
|
361
|
+
}
|
362
|
+
|
363
|
+
evt.content = content.substring(startPos + 1, endPos);
|
364
|
+
foot = low(content.substring(endPos));
|
365
|
+
} else {
|
366
|
+
head = getDefaultHeader();
|
367
|
+
foot = '\n</body>\n</html>';
|
368
|
+
}
|
369
|
+
|
370
|
+
// Parse header and update iframe
|
371
|
+
headerFragment = parseHeader();
|
372
|
+
each(headerFragment.getAll('style'), function(node) {
|
373
|
+
if (node.firstChild) {
|
374
|
+
styles += node.firstChild.value;
|
375
|
+
}
|
376
|
+
});
|
377
|
+
|
378
|
+
elm = headerFragment.getAll('body')[0];
|
379
|
+
if (elm) {
|
380
|
+
dom.setAttribs(editor.getBody(), {
|
381
|
+
style: elm.attr('style') || '',
|
382
|
+
dir: elm.attr('dir') || '',
|
383
|
+
vLink: elm.attr('vlink') || '',
|
384
|
+
link: elm.attr('link') || '',
|
385
|
+
aLink: elm.attr('alink') || ''
|
386
|
+
});
|
387
|
+
}
|
388
|
+
|
389
|
+
dom.remove('fullpage_styles');
|
390
|
+
|
391
|
+
var headElm = editor.getDoc().getElementsByTagName('head')[0];
|
392
|
+
|
393
|
+
if (styles) {
|
394
|
+
dom.add(headElm, 'style', {
|
395
|
+
id: 'fullpage_styles'
|
396
|
+
}, styles);
|
397
|
+
|
398
|
+
// Needed for IE 6/7
|
399
|
+
elm = dom.get('fullpage_styles');
|
400
|
+
if (elm.styleSheet) {
|
401
|
+
elm.styleSheet.cssText = styles;
|
402
|
+
}
|
403
|
+
}
|
404
|
+
|
405
|
+
var currentStyleSheetsMap = {};
|
406
|
+
tinymce.each(headElm.getElementsByTagName('link'), function(stylesheet) {
|
407
|
+
if (stylesheet.rel == 'stylesheet' && stylesheet.getAttribute('data-mce-fullpage')) {
|
408
|
+
currentStyleSheetsMap[stylesheet.href] = stylesheet;
|
409
|
+
}
|
410
|
+
});
|
411
|
+
|
412
|
+
// Add new
|
413
|
+
tinymce.each(headerFragment.getAll('link'), function(stylesheet) {
|
414
|
+
var href = stylesheet.attr('href');
|
415
|
+
|
416
|
+
if (!currentStyleSheetsMap[href] && stylesheet.attr('rel') == 'stylesheet') {
|
417
|
+
dom.add(headElm, 'link', {
|
418
|
+
rel: 'stylesheet',
|
419
|
+
text: 'text/css',
|
420
|
+
href: href,
|
421
|
+
'data-mce-fullpage': '1'
|
422
|
+
});
|
423
|
+
}
|
424
|
+
|
425
|
+
delete currentStyleSheetsMap[href];
|
426
|
+
});
|
427
|
+
|
428
|
+
// Delete old
|
429
|
+
tinymce.each(currentStyleSheetsMap, function(stylesheet) {
|
430
|
+
stylesheet.parentNode.removeChild(stylesheet);
|
431
|
+
});
|
432
|
+
}
|
433
|
+
|
434
|
+
function getDefaultHeader() {
|
435
|
+
var header = '', value, styles = '';
|
436
|
+
|
437
|
+
if (editor.getParam('fullpage_default_xml_pi')) {
|
438
|
+
header += '<?xml version="1.0" encoding="' + editor.getParam('fullpage_default_encoding', 'ISO-8859-1') + '" ?>\n';
|
439
|
+
}
|
440
|
+
|
441
|
+
header += editor.getParam('fullpage_default_doctype', '<!DOCTYPE html>');
|
442
|
+
header += '\n<html>\n<head>\n';
|
443
|
+
|
444
|
+
if ((value = editor.getParam('fullpage_default_title'))) {
|
445
|
+
header += '<title>' + value + '</title>\n';
|
446
|
+
}
|
447
|
+
|
448
|
+
if ((value = editor.getParam('fullpage_default_encoding'))) {
|
449
|
+
header += '<meta http-equiv="Content-Type" content="text/html; charset=' + value + '" />\n';
|
450
|
+
}
|
451
|
+
|
452
|
+
if ((value = editor.getParam('fullpage_default_font_family'))) {
|
453
|
+
styles += 'font-family: ' + value + ';';
|
454
|
+
}
|
455
|
+
|
456
|
+
if ((value = editor.getParam('fullpage_default_font_size'))) {
|
457
|
+
styles += 'font-size: ' + value + ';';
|
458
|
+
}
|
459
|
+
|
460
|
+
if ((value = editor.getParam('fullpage_default_text_color'))) {
|
461
|
+
styles += 'color: ' + value + ';';
|
462
|
+
}
|
463
|
+
|
464
|
+
header += '</head>\n<body' + (styles ? ' style="' + styles + '"' : '') + '>\n';
|
465
|
+
|
466
|
+
return header;
|
467
|
+
}
|
468
|
+
|
469
|
+
function getContent(evt) {
|
470
|
+
if (!evt.selection && (!evt.source_view || !editor.getParam('fullpage_hide_in_source_view'))) {
|
471
|
+
evt.content = tinymce.trim(head) + '\n' + tinymce.trim(evt.content) + '\n' + tinymce.trim(foot);
|
472
|
+
}
|
473
|
+
}
|
474
|
+
|
475
|
+
editor.addCommand('mceFullPageProperties', showDialog);
|
476
|
+
|
477
|
+
editor.addButton('fullpage', {
|
478
|
+
title: 'Document properties',
|
479
|
+
cmd: 'mceFullPageProperties'
|
480
|
+
});
|
481
|
+
|
482
|
+
editor.addMenuItem('fullpage', {
|
483
|
+
text: 'Document properties',
|
484
|
+
cmd: 'mceFullPageProperties',
|
485
|
+
context: 'file'
|
486
|
+
});
|
487
|
+
|
488
|
+
editor.on('BeforeSetContent', setContent);
|
489
|
+
editor.on('GetContent', getContent);
|
490
|
+
});
|