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 @@
|
|
1
|
+
tinymce.PluginManager.add("media",function(a,b){function c(a){return a=a.toLowerCase(),-1!=a.indexOf(".mp3")?"audio/mpeg":-1!=a.indexOf(".wav")?"audio/wav":-1!=a.indexOf(".mp4")?"video/mp4":-1!=a.indexOf(".webm")?"video/webm":-1!=a.indexOf(".ogg")?"video/ogg":-1!=a.indexOf(".swf")?"application/x-shockwave-flash":""}function d(b){var c=a.settings.media_scripts;if(c)for(var d=0;d<c.length;d++)if(-1!==b.indexOf(c[d].filter))return c[d]}function e(){function b(a){var b,c,f,g;b=d.find("#width")[0],c=d.find("#height")[0],f=b.value(),g=c.value(),d.find("#constrain")[0].checked()&&e&&j&&f&&g&&(a.control==b?(g=Math.round(f/e*g),isNaN(g)||c.value(g)):(f=Math.round(g/j*f),isNaN(f)||b.value(f))),e=f,j=g}function c(){k=h(this.value()),this.parent().parent().fromJSON(k)}var d,e,j,k,l=[{name:"source1",type:"filepicker",filetype:"media",size:40,autofocus:!0,label:"Source",onchange:function(a){tinymce.each(a.meta,function(a,b){d.find("#"+b).value(a)})}}];a.settings.media_alt_source!==!1&&l.push({name:"source2",type:"filepicker",filetype:"media",size:40,label:"Alternative source"}),a.settings.media_poster!==!1&&l.push({name:"poster",type:"filepicker",filetype:"image",size:40,label:"Poster"}),a.settings.media_dimensions!==!1&&l.push({type:"container",label:"Dimensions",layout:"flex",align:"center",spacing:5,items:[{name:"width",type:"textbox",maxLength:5,size:3,onchange:b,ariaLabel:"Width"},{type:"label",text:"x"},{name:"height",type:"textbox",maxLength:5,size:3,onchange:b,ariaLabel:"Height"},{name:"constrain",type:"checkbox",checked:!0,text:"Constrain proportions"}]}),k=i(a.selection.getNode()),e=k.width,j=k.height;var m={id:"mcemediasource",type:"textbox",flex:1,name:"embed",value:f(),multiline:!0,label:"Source"};m[p]=c,d=a.windowManager.open({title:"Insert/edit video",data:k,bodyType:"tabpanel",body:[{title:"General",type:"form",onShowTab:function(){k=h(this.next().find("#embed").value()),this.fromJSON(k)},items:l},{title:"Embed",type:"container",layout:"flex",direction:"column",align:"stretch",padding:10,spacing:10,onShowTab:function(){this.find("#embed").value(g(this.parent().toJSON()))},items:[{type:"label",text:"Paste your embed code below:",forId:"mcemediasource"},m]}],onSubmit:function(){var b,c,d,e;for(b=a.dom.select("img[data-mce-object]"),a.insertContent(g(this.toJSON())),c=a.dom.select("img[data-mce-object]"),d=0;d<b.length;d++)for(e=c.length-1;e>=0;e--)b[d]==c[e]&&c.splice(e,1);a.selection.select(c[0]),a.nodeChanged()}})}function f(){var b=a.selection.getNode();return b.getAttribute("data-mce-object")?a.selection.getContent():void 0}function g(e){var f="";if(!e.source1&&(tinymce.extend(e,h(e.embed)),!e.source1))return"";if(e.source2||(e.source2=""),e.poster||(e.poster=""),e.source1=a.convertURL(e.source1,"source"),e.source2=a.convertURL(e.source2,"source"),e.source1mime=c(e.source1),e.source2mime=c(e.source2),e.poster=a.convertURL(e.poster,"poster"),e.flashPlayerUrl=a.convertURL(b+"/moxieplayer.swf","movie"),tinymce.each(o,function(a){var b,c,d;if(b=a.regex.exec(e.source1)){for(d=a.url,c=0;b[c];c++)d=d.replace("$"+c,function(){return b[c]});e.source1=d,e.type=a.type,e.allowFullscreen=a.allowFullscreen,e.width=e.width||a.w,e.height=e.height||a.h}}),e.embed)f=k(e.embed,e,!0);else{var g=d(e.source1);if(g&&(e.type="script",e.width=g.width,e.height=g.height),e.width=e.width||300,e.height=e.height||150,tinymce.each(e,function(b,c){e[c]=a.dom.encode(b)}),"iframe"==e.type){var i=e.allowFullscreen?' allowFullscreen="1"':"";f+='<iframe src="'+e.source1+'" width="'+e.width+'" height="'+e.height+'"'+i+"></iframe>"}else"application/x-shockwave-flash"==e.source1mime?(f+='<object data="'+e.source1+'" width="'+e.width+'" height="'+e.height+'" type="application/x-shockwave-flash">',e.poster&&(f+='<img src="'+e.poster+'" width="'+e.width+'" height="'+e.height+'" />'),f+="</object>"):-1!=e.source1mime.indexOf("audio")?a.settings.audio_template_callback?f=a.settings.audio_template_callback(e):f+='<audio controls="controls" src="'+e.source1+'">'+(e.source2?'\n<source src="'+e.source2+'"'+(e.source2mime?' type="'+e.source2mime+'"':"")+" />\n":"")+"</audio>":"script"==e.type?f+='<script src="'+e.source1+'"></script>':f=a.settings.video_template_callback?a.settings.video_template_callback(e):'<video width="'+e.width+'" height="'+e.height+'"'+(e.poster?' poster="'+e.poster+'"':"")+' controls="controls">\n<source src="'+e.source1+'"'+(e.source1mime?' type="'+e.source1mime+'"':"")+" />\n"+(e.source2?'<source src="'+e.source2+'"'+(e.source2mime?' type="'+e.source2mime+'"':"")+" />\n":"")+"</video>"}return f}function h(a){var b={};return new tinymce.html.SaxParser({validate:!1,allow_conditional_comments:!0,special:"script,noscript",start:function(a,c){if(b.source1||"param"!=a||(b.source1=c.map.movie),"iframe"!=a&&"object"!=a&&"embed"!=a&&"video"!=a&&"audio"!=a||(b.type||(b.type=a),b=tinymce.extend(c.map,b)),"script"==a){var e=d(c.map.src);if(!e)return;b={type:"script",source1:c.map.src,width:e.width,height:e.height}}"source"==a&&(b.source1?b.source2||(b.source2=c.map.src):b.source1=c.map.src),"img"!=a||b.poster||(b.poster=c.map.src)}}).parse(a),b.source1=b.source1||b.src||b.data,b.source2=b.source2||"",b.poster=b.poster||"",b}function i(b){return b.getAttribute("data-mce-object")?h(a.serializer.serialize(b,{selection:!0})):{}}function j(b){if(a.settings.media_filter_html===!1)return b;var c,d=new tinymce.html.Writer;return new tinymce.html.SaxParser({validate:!1,allow_conditional_comments:!1,special:"script,noscript",comment:function(a){d.comment(a)},cdata:function(a){d.cdata(a)},text:function(a,b){d.text(a,b)},start:function(b,e,f){if(c=!0,"script"!=b&&"noscript"!=b){for(var g=0;g<e.length;g++){if(0===e[g].name.indexOf("on"))return;"style"==e[g].name&&(e[g].value=a.dom.serializeStyle(a.dom.parseStyle(e[g].value),b))}d.start(b,e,f),c=!1}},end:function(a){c||d.end(a)}},new tinymce.html.Schema({})).parse(b),d.getContent()}function k(a,b,c){function d(a,b){var c,d,e,f;for(c in b)if(e=""+b[c],a.map[c])for(d=a.length;d--;)f=a[d],f.name==c&&(e?(a.map[c]=e,f.value=e):(delete a.map[c],a.splice(d,1)));else e&&(a.push({name:c,value:e}),a.map[c]=e)}var e,f=new tinymce.html.Writer,g=0;return new tinymce.html.SaxParser({validate:!1,allow_conditional_comments:!0,special:"script,noscript",comment:function(a){f.comment(a)},cdata:function(a){f.cdata(a)},text:function(a,b){f.text(a,b)},start:function(a,h,i){switch(a){case"video":case"object":case"embed":case"img":case"iframe":d(h,{width:b.width,height:b.height})}if(c)switch(a){case"video":d(h,{poster:b.poster,src:""}),b.source2&&d(h,{src:""});break;case"iframe":d(h,{src:b.source1});break;case"source":if(g++,2>=g&&(d(h,{src:b["source"+g],type:b["source"+g+"mime"]}),!b["source"+g]))return;break;case"img":if(!b.poster)return;e=!0}f.start(a,h,i)},end:function(a){if("video"==a&&c)for(var h=1;2>=h;h++)if(b["source"+h]){var i=[];i.map={},h>g&&(d(i,{src:b["source"+h],type:b["source"+h+"mime"]}),f.start("source",i,!0))}if(b.poster&&"object"==a&&c&&!e){var j=[];j.map={},d(j,{src:b.poster,width:b.width,height:b.height}),f.start("img",j,!0)}f.end(a)}},new tinymce.html.Schema({})).parse(a),f.getContent()}function l(b,c){var d,e,f,g,h;for(f=b.attributes,g=f.length;g--;)d=f[g].name,e=f[g].value,"width"!==d&&"height"!==d&&"style"!==d&&("data"!=d&&"src"!=d||(e=a.convertURL(e,d)),c.attr("data-mce-p-"+d,e));h=b.firstChild&&b.firstChild.value,h&&(c.attr("data-mce-html",escape(h)),c.firstChild=null)}function m(a){var b,c=a.name;return b=new tinymce.html.Node("img",1),b.shortEnded=!0,l(a,b),b.attr({width:a.attr("width")||"300",height:a.attr("height")||("audio"==c?"30":"150"),style:a.attr("style"),src:tinymce.Env.transparentSrc,"data-mce-object":c,"class":"mce-object mce-object-"+c}),b}function n(a){var b,c,d,e=a.name;return b=new tinymce.html.Node("span",1),b.attr({contentEditable:"false",style:a.attr("style"),"data-mce-object":e,"class":"mce-preview-object mce-object-"+e}),l(a,b),c=new tinymce.html.Node(e,1),c.attr({src:a.attr("src"),allowfullscreen:a.attr("allowfullscreen"),width:a.attr("width")||"300",height:a.attr("height")||("audio"==e?"30":"150"),frameborder:"0"}),d=new tinymce.html.Node("span",1),d.attr("class","mce-shim"),b.append(c),b.append(d),b}var o=[{regex:/youtu\.be\/([\w\-.]+)/,type:"iframe",w:560,h:314,url:"//www.youtube.com/embed/$1",allowFullscreen:!0},{regex:/youtube\.com(.+)v=([^&]+)/,type:"iframe",w:560,h:314,url:"//www.youtube.com/embed/$2",allowFullscreen:!0},{regex:/youtube.com\/embed\/([a-z0-9\-_]+)/i,type:"iframe",w:560,h:314,url:"//www.youtube.com/embed/$1",allowFullscreen:!0},{regex:/vimeo\.com\/([0-9]+)/,type:"iframe",w:425,h:350,url:"//player.vimeo.com/video/$1?title=0&byline=0&portrait=0&color=8dc7dc",allowfullscreen:!0},{regex:/vimeo\.com\/(.*)\/([0-9]+)/,type:"iframe",w:425,h:350,url:"//player.vimeo.com/video/$2?title=0&byline=0",allowfullscreen:!0},{regex:/maps\.google\.([a-z]{2,3})\/maps\/(.+)msid=(.+)/,type:"iframe",w:425,h:350,url:'//maps.google.com/maps/ms?msid=$2&output=embed"',allowFullscreen:!1}],p=tinymce.Env.ie&&tinymce.Env.ie<=8?"onChange":"onInput";a.on("ResolveName",function(a){var b;1==a.target.nodeType&&(b=a.target.getAttribute("data-mce-object"))&&(a.name=b)}),a.on("preInit",function(){var b=a.schema.getSpecialElements();tinymce.each("video audio iframe object".split(" "),function(a){b[a]=new RegExp("</"+a+"[^>]*>","gi")});var c=a.schema.getBoolAttrs();tinymce.each("webkitallowfullscreen mozallowfullscreen allowfullscreen".split(" "),function(a){c[a]={}}),a.parser.addNodeFilter("iframe,video,audio,object,embed,script",function(b){for(var c,e,f,g=b.length;g--;)c=b[g],c.parent&&(c.parent.attr("data-mce-object")||("script"!=c.name||(f=d(c.attr("src"))))&&(f&&(f.width&&c.attr("width",f.width.toString()),f.height&&c.attr("height",f.height.toString())),e="iframe"==c.name&&a.settings.media_live_embeds!==!1&&tinymce.Env.ceFalse?n(c):m(c),c.replace(e)))}),a.serializer.addAttributeFilter("data-mce-object",function(a,b){for(var c,d,e,f,g,h,i,k,l=a.length;l--;)if(c=a[l],c.parent){for(i=c.attr(b),d=new tinymce.html.Node(i,1),"audio"!=i&&"script"!=i&&(k=c.attr("class"),k&&-1!==k.indexOf("mce-preview-object")?d.attr({width:c.firstChild.attr("width"),height:c.firstChild.attr("height")}):d.attr({width:c.attr("width"),height:c.attr("height")})),d.attr({style:c.attr("style")}),f=c.attributes,e=f.length;e--;){var m=f[e].name;0===m.indexOf("data-mce-p-")&&d.attr(m.substr(11),f[e].value)}"script"==i&&d.attr("type","text/javascript"),g=c.attr("data-mce-html"),g&&(h=new tinymce.html.Node("#text",3),h.raw=!0,h.value=j(unescape(g)),d.append(h)),c.replace(d)}})}),a.on("click keyup",function(){var b=a.selection.getNode();b&&a.dom.hasClass(b,"mce-preview-object")&&a.dom.getAttrib(b,"data-mce-selected")&&b.setAttribute("data-mce-selected","2")}),a.on("ObjectSelected",function(a){var b=a.target.getAttribute("data-mce-object");"audio"!=b&&"script"!=b||a.preventDefault()}),a.on("objectResized",function(a){var b,c=a.target;c.getAttribute("data-mce-object")&&(b=c.getAttribute("data-mce-html"),b&&(b=unescape(b),c.setAttribute("data-mce-html",escape(k(b,{width:a.width,height:a.height})))))}),a.addButton("media",{tooltip:"Insert/edit video",onclick:e,stateSelector:["img[data-mce-object]","span[data-mce-object]"]}),a.addMenuItem("media",{icon:"media",text:"Insert/edit video",onclick:e,context:"insert",prependToContext:!0}),a.on("setContent",function(){a.$("span.mce-preview-object").each(function(b,c){var d=a.$(c);0===d.find("span.mce-shim",c).length&&d.append('<span class="mce-shim"></span>')})}),a.addCommand("mceMedia",e),this.showDialog=e});
|
@@ -0,0 +1,53 @@
|
|
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('nonbreaking', function(editor) {
|
14
|
+
var setting = editor.getParam('nonbreaking_force_tab');
|
15
|
+
|
16
|
+
editor.addCommand('mceNonBreaking', function() {
|
17
|
+
editor.insertContent(
|
18
|
+
(editor.plugins.visualchars && editor.plugins.visualchars.state) ?
|
19
|
+
'<span class="mce-nbsp"> </span>' : ' '
|
20
|
+
);
|
21
|
+
|
22
|
+
editor.dom.setAttrib(editor.dom.select('span.mce-nbsp'), 'data-mce-bogus', '1');
|
23
|
+
});
|
24
|
+
|
25
|
+
editor.addButton('nonbreaking', {
|
26
|
+
title: 'Nonbreaking space',
|
27
|
+
cmd: 'mceNonBreaking'
|
28
|
+
});
|
29
|
+
|
30
|
+
editor.addMenuItem('nonbreaking', {
|
31
|
+
text: 'Nonbreaking space',
|
32
|
+
cmd: 'mceNonBreaking',
|
33
|
+
context: 'insert'
|
34
|
+
});
|
35
|
+
|
36
|
+
if (setting) {
|
37
|
+
var spaces = +setting > 1 ? +setting : 3; // defaults to 3 spaces if setting is true (or 1)
|
38
|
+
|
39
|
+
editor.on('keydown', function(e) {
|
40
|
+
if (e.keyCode == 9) {
|
41
|
+
|
42
|
+
if (e.shiftKey) {
|
43
|
+
return;
|
44
|
+
}
|
45
|
+
|
46
|
+
e.preventDefault();
|
47
|
+
for (var i = 0; i < spaces; i++) {
|
48
|
+
editor.execCommand('mceNonBreaking');
|
49
|
+
}
|
50
|
+
}
|
51
|
+
});
|
52
|
+
}
|
53
|
+
});
|
@@ -0,0 +1 @@
|
|
1
|
+
tinymce.PluginManager.add("nonbreaking",function(a){var b=a.getParam("nonbreaking_force_tab");if(a.addCommand("mceNonBreaking",function(){a.insertContent(a.plugins.visualchars&&a.plugins.visualchars.state?'<span class="mce-nbsp"> </span>':" "),a.dom.setAttrib(a.dom.select("span.mce-nbsp"),"data-mce-bogus","1")}),a.addButton("nonbreaking",{title:"Nonbreaking space",cmd:"mceNonBreaking"}),a.addMenuItem("nonbreaking",{text:"Nonbreaking space",cmd:"mceNonBreaking",context:"insert"}),b){var c=+b>1?+b:3;a.on("keydown",function(b){if(9==b.keyCode){if(b.shiftKey)return;b.preventDefault();for(var d=0;c>d;d++)a.execCommand("mceNonBreaking")}})}});
|
@@ -0,0 +1,101 @@
|
|
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('noneditable', function(editor) {
|
14
|
+
var editClass, nonEditClass, nonEditableRegExps, contentEditableAttrName = 'contenteditable';
|
15
|
+
|
16
|
+
function hasClass(checkClassName) {
|
17
|
+
return function(node) {
|
18
|
+
return (" " + node.attr("class") + " ").indexOf(checkClassName) !== -1;
|
19
|
+
};
|
20
|
+
}
|
21
|
+
|
22
|
+
function convertRegExpsToNonEditable(e) {
|
23
|
+
var i = nonEditableRegExps.length, content = e.content, cls = tinymce.trim(nonEditClass);
|
24
|
+
|
25
|
+
function replaceMatchWithSpan(match) {
|
26
|
+
var args = arguments, index = args[args.length - 2];
|
27
|
+
|
28
|
+
// Is value inside an attribute then don't replace
|
29
|
+
if (index > 0 && content.charAt(index - 1) == '"') {
|
30
|
+
return match;
|
31
|
+
}
|
32
|
+
|
33
|
+
return (
|
34
|
+
'<span class="' + cls + '" data-mce-content="' + editor.dom.encode(args[0]) + '">' +
|
35
|
+
editor.dom.encode(typeof args[1] === "string" ? args[1] : args[0]) + '</span>'
|
36
|
+
);
|
37
|
+
}
|
38
|
+
|
39
|
+
// Don't replace the variables when raw is used for example on undo/redo
|
40
|
+
if (e.format == "raw") {
|
41
|
+
return;
|
42
|
+
}
|
43
|
+
|
44
|
+
while (i--) {
|
45
|
+
content = content.replace(nonEditableRegExps[i], replaceMatchWithSpan);
|
46
|
+
}
|
47
|
+
|
48
|
+
e.content = content;
|
49
|
+
}
|
50
|
+
|
51
|
+
editClass = " " + tinymce.trim(editor.getParam("noneditable_editable_class", "mceEditable")) + " ";
|
52
|
+
nonEditClass = " " + tinymce.trim(editor.getParam("noneditable_noneditable_class", "mceNonEditable")) + " ";
|
53
|
+
|
54
|
+
var hasEditClass = hasClass(editClass);
|
55
|
+
var hasNonEditClass = hasClass(nonEditClass);
|
56
|
+
|
57
|
+
nonEditableRegExps = editor.getParam("noneditable_regexp");
|
58
|
+
if (nonEditableRegExps && !nonEditableRegExps.length) {
|
59
|
+
nonEditableRegExps = [nonEditableRegExps];
|
60
|
+
}
|
61
|
+
|
62
|
+
editor.on('PreInit', function() {
|
63
|
+
if (nonEditableRegExps) {
|
64
|
+
editor.on('BeforeSetContent', convertRegExpsToNonEditable);
|
65
|
+
}
|
66
|
+
|
67
|
+
editor.parser.addAttributeFilter('class', function(nodes) {
|
68
|
+
var i = nodes.length, node;
|
69
|
+
|
70
|
+
while (i--) {
|
71
|
+
node = nodes[i];
|
72
|
+
|
73
|
+
if (hasEditClass(node)) {
|
74
|
+
node.attr(contentEditableAttrName, "true");
|
75
|
+
} else if (hasNonEditClass(node)) {
|
76
|
+
node.attr(contentEditableAttrName, "false");
|
77
|
+
}
|
78
|
+
}
|
79
|
+
});
|
80
|
+
|
81
|
+
editor.serializer.addAttributeFilter(contentEditableAttrName, function(nodes) {
|
82
|
+
var i = nodes.length, node;
|
83
|
+
|
84
|
+
while (i--) {
|
85
|
+
node = nodes[i];
|
86
|
+
if (!hasEditClass(node) && !hasNonEditClass(node)) {
|
87
|
+
continue;
|
88
|
+
}
|
89
|
+
|
90
|
+
if (nonEditableRegExps && node.attr('data-mce-content')) {
|
91
|
+
node.name = "#text";
|
92
|
+
node.type = 3;
|
93
|
+
node.raw = true;
|
94
|
+
node.value = node.attr('data-mce-content');
|
95
|
+
} else {
|
96
|
+
node.attr(contentEditableAttrName, null);
|
97
|
+
}
|
98
|
+
}
|
99
|
+
});
|
100
|
+
});
|
101
|
+
});
|
@@ -0,0 +1 @@
|
|
1
|
+
tinymce.PluginManager.add("noneditable",function(a){function b(a){return function(b){return-1!==(" "+b.attr("class")+" ").indexOf(a)}}function c(b){function c(b){var c=arguments,d=c[c.length-2];return d>0&&'"'==g.charAt(d-1)?b:'<span class="'+h+'" data-mce-content="'+a.dom.encode(c[0])+'">'+a.dom.encode("string"==typeof c[1]?c[1]:c[0])+"</span>"}var d=f.length,g=b.content,h=tinymce.trim(e);if("raw"!=b.format){for(;d--;)g=g.replace(f[d],c);b.content=g}}var d,e,f,g="contenteditable";d=" "+tinymce.trim(a.getParam("noneditable_editable_class","mceEditable"))+" ",e=" "+tinymce.trim(a.getParam("noneditable_noneditable_class","mceNonEditable"))+" ";var h=b(d),i=b(e);f=a.getParam("noneditable_regexp"),f&&!f.length&&(f=[f]),a.on("PreInit",function(){f&&a.on("BeforeSetContent",c),a.parser.addAttributeFilter("class",function(a){for(var b,c=a.length;c--;)b=a[c],h(b)?b.attr(g,"true"):i(b)&&b.attr(g,"false")}),a.serializer.addAttributeFilter(g,function(a){for(var b,c=a.length;c--;)b=a[c],(h(b)||i(b))&&(f&&b.attr("data-mce-content")?(b.name="#text",b.type=3,b.raw=!0,b.value=b.attr("data-mce-content")):b.attr(g,null))})})});
|
@@ -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('pagebreak', function(editor) {
|
14
|
+
var pageBreakClass = 'mce-pagebreak', separatorHtml = editor.getParam('pagebreak_separator', '<!-- pagebreak -->');
|
15
|
+
|
16
|
+
var pageBreakSeparatorRegExp = new RegExp(separatorHtml.replace(/[\?\.\*\[\]\(\)\{\}\+\^\$\:]/g, function(a) {
|
17
|
+
return '\\' + a;
|
18
|
+
}), 'gi');
|
19
|
+
|
20
|
+
var pageBreakPlaceHolderHtml = '<img src="' + tinymce.Env.transparentSrc + '" class="' +
|
21
|
+
pageBreakClass + '" data-mce-resize="false" data-mce-placeholder />';
|
22
|
+
|
23
|
+
// Register commands
|
24
|
+
editor.addCommand('mcePageBreak', function() {
|
25
|
+
if (editor.settings.pagebreak_split_block) {
|
26
|
+
editor.insertContent('<p>' + pageBreakPlaceHolderHtml + '</p>');
|
27
|
+
} else {
|
28
|
+
editor.insertContent(pageBreakPlaceHolderHtml);
|
29
|
+
}
|
30
|
+
});
|
31
|
+
|
32
|
+
// Register buttons
|
33
|
+
editor.addButton('pagebreak', {
|
34
|
+
title: 'Page break',
|
35
|
+
cmd: 'mcePageBreak'
|
36
|
+
});
|
37
|
+
|
38
|
+
editor.addMenuItem('pagebreak', {
|
39
|
+
text: 'Page break',
|
40
|
+
icon: 'pagebreak',
|
41
|
+
cmd: 'mcePageBreak',
|
42
|
+
context: 'insert'
|
43
|
+
});
|
44
|
+
|
45
|
+
editor.on('ResolveName', function(e) {
|
46
|
+
if (e.target.nodeName == 'IMG' && editor.dom.hasClass(e.target, pageBreakClass)) {
|
47
|
+
e.name = 'pagebreak';
|
48
|
+
}
|
49
|
+
});
|
50
|
+
|
51
|
+
editor.on('click', function(e) {
|
52
|
+
e = e.target;
|
53
|
+
|
54
|
+
if (e.nodeName === 'IMG' && editor.dom.hasClass(e, pageBreakClass)) {
|
55
|
+
editor.selection.select(e);
|
56
|
+
}
|
57
|
+
});
|
58
|
+
|
59
|
+
editor.on('BeforeSetContent', function(e) {
|
60
|
+
e.content = e.content.replace(pageBreakSeparatorRegExp, pageBreakPlaceHolderHtml);
|
61
|
+
});
|
62
|
+
|
63
|
+
editor.on('PreInit', function() {
|
64
|
+
editor.serializer.addNodeFilter('img', function(nodes) {
|
65
|
+
var i = nodes.length, node, className;
|
66
|
+
|
67
|
+
while (i--) {
|
68
|
+
node = nodes[i];
|
69
|
+
className = node.attr('class');
|
70
|
+
if (className && className.indexOf('mce-pagebreak') !== -1) {
|
71
|
+
// Replace parent block node if pagebreak_split_block is enabled
|
72
|
+
var parentNode = node.parent;
|
73
|
+
if (editor.schema.getBlockElements()[parentNode.name] && editor.settings.pagebreak_split_block) {
|
74
|
+
parentNode.type = 3;
|
75
|
+
parentNode.value = separatorHtml;
|
76
|
+
parentNode.raw = true;
|
77
|
+
node.remove();
|
78
|
+
continue;
|
79
|
+
}
|
80
|
+
|
81
|
+
node.type = 3;
|
82
|
+
node.value = separatorHtml;
|
83
|
+
node.raw = true;
|
84
|
+
}
|
85
|
+
}
|
86
|
+
});
|
87
|
+
});
|
88
|
+
});
|
@@ -0,0 +1 @@
|
|
1
|
+
tinymce.PluginManager.add("pagebreak",function(a){var b="mce-pagebreak",c=a.getParam("pagebreak_separator","<!-- pagebreak -->"),d=new RegExp(c.replace(/[\?\.\*\[\]\(\)\{\}\+\^\$\:]/g,function(a){return"\\"+a}),"gi"),e='<img src="'+tinymce.Env.transparentSrc+'" class="'+b+'" data-mce-resize="false" data-mce-placeholder />';a.addCommand("mcePageBreak",function(){a.settings.pagebreak_split_block?a.insertContent("<p>"+e+"</p>"):a.insertContent(e)}),a.addButton("pagebreak",{title:"Page break",cmd:"mcePageBreak"}),a.addMenuItem("pagebreak",{text:"Page break",icon:"pagebreak",cmd:"mcePageBreak",context:"insert"}),a.on("ResolveName",function(c){"IMG"==c.target.nodeName&&a.dom.hasClass(c.target,b)&&(c.name="pagebreak")}),a.on("click",function(c){c=c.target,"IMG"===c.nodeName&&a.dom.hasClass(c,b)&&a.selection.select(c)}),a.on("BeforeSetContent",function(a){a.content=a.content.replace(d,e)}),a.on("PreInit",function(){a.serializer.addNodeFilter("img",function(b){for(var d,e,f=b.length;f--;)if(d=b[f],e=d.attr("class"),e&&-1!==e.indexOf("mce-pagebreak")){var g=d.parent;if(a.schema.getBlockElements()[g.name]&&a.settings.pagebreak_split_block){g.type=3,g.value=c,g.raw=!0,d.remove();continue}d.type=3,d.value=c,d.raw=!0}})})});
|
@@ -0,0 +1,672 @@
|
|
1
|
+
/**
|
2
|
+
* Clipboard.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
|
+
/**
|
12
|
+
* This class contains logic for getting HTML contents out of the clipboard.
|
13
|
+
*
|
14
|
+
* We need to make a lot of ugly hacks to get the contents out of the clipboard since
|
15
|
+
* the W3C Clipboard API is broken in all browsers that have it: Gecko/WebKit/Blink.
|
16
|
+
* We might rewrite this the way those API:s stabilize. Browsers doesn't handle pasting
|
17
|
+
* from applications like Word the same way as it does when pasting into a contentEditable area
|
18
|
+
* so we need to do lots of extra work to try to get to this clipboard data.
|
19
|
+
*
|
20
|
+
* Current implementation steps:
|
21
|
+
* 1. On keydown with paste keys Ctrl+V or Shift+Insert create
|
22
|
+
* a paste bin element and move focus to that element.
|
23
|
+
* 2. Wait for the browser to fire a "paste" event and get the contents out of the paste bin.
|
24
|
+
* 3. Check if the paste was successful if true, process the HTML.
|
25
|
+
* (4). If the paste was unsuccessful use IE execCommand, Clipboard API, document.dataTransfer old WebKit API etc.
|
26
|
+
*
|
27
|
+
* @class tinymce.pasteplugin.Clipboard
|
28
|
+
* @private
|
29
|
+
*/
|
30
|
+
define("tinymce/pasteplugin/Clipboard", [
|
31
|
+
"tinymce/Env",
|
32
|
+
"tinymce/dom/RangeUtils",
|
33
|
+
"tinymce/util/VK",
|
34
|
+
"tinymce/pasteplugin/Utils",
|
35
|
+
"tinymce/util/Delay"
|
36
|
+
], function(Env, RangeUtils, VK, Utils, Delay) {
|
37
|
+
return function(editor) {
|
38
|
+
var self = this, pasteBinElm, lastRng, keyboardPasteTimeStamp = 0, draggingInternally = false;
|
39
|
+
var pasteBinDefaultContent = '%MCEPASTEBIN%', keyboardPastePlainTextState;
|
40
|
+
var mceInternalUrlPrefix = 'data:text/mce-internal,';
|
41
|
+
var uniqueId = Utils.createIdGenerator("mceclip");
|
42
|
+
|
43
|
+
/**
|
44
|
+
* Pastes the specified HTML. This means that the HTML is filtered and then
|
45
|
+
* inserted at the current selection in the editor. It will also fire paste events
|
46
|
+
* for custom user filtering.
|
47
|
+
*
|
48
|
+
* @param {String} html HTML code to paste into the current selection.
|
49
|
+
*/
|
50
|
+
function pasteHtml(html) {
|
51
|
+
var args, dom = editor.dom;
|
52
|
+
|
53
|
+
args = editor.fire('BeforePastePreProcess', {content: html}); // Internal event used by Quirks
|
54
|
+
args = editor.fire('PastePreProcess', args);
|
55
|
+
html = args.content;
|
56
|
+
|
57
|
+
if (!args.isDefaultPrevented()) {
|
58
|
+
// User has bound PastePostProcess events then we need to pass it through a DOM node
|
59
|
+
// This is not ideal but we don't want to let the browser mess up the HTML for example
|
60
|
+
// some browsers add to P tags etc
|
61
|
+
if (editor.hasEventListeners('PastePostProcess') && !args.isDefaultPrevented()) {
|
62
|
+
// We need to attach the element to the DOM so Sizzle selectors work on the contents
|
63
|
+
var tempBody = dom.add(editor.getBody(), 'div', {style: 'display:none'}, html);
|
64
|
+
args = editor.fire('PastePostProcess', {node: tempBody});
|
65
|
+
dom.remove(tempBody);
|
66
|
+
html = args.node.innerHTML;
|
67
|
+
}
|
68
|
+
|
69
|
+
if (!args.isDefaultPrevented()) {
|
70
|
+
editor.insertContent(html, {merge: editor.settings.paste_merge_formats !== false, data: {paste: true}});
|
71
|
+
}
|
72
|
+
}
|
73
|
+
}
|
74
|
+
|
75
|
+
/**
|
76
|
+
* Pastes the specified text. This means that the plain text is processed
|
77
|
+
* and converted into BR and P elements. It will fire paste events for custom filtering.
|
78
|
+
*
|
79
|
+
* @param {String} text Text to paste as the current selection location.
|
80
|
+
*/
|
81
|
+
function pasteText(text) {
|
82
|
+
text = editor.dom.encode(text).replace(/\r\n/g, '\n');
|
83
|
+
|
84
|
+
var startBlock = editor.dom.getParent(editor.selection.getStart(), editor.dom.isBlock);
|
85
|
+
|
86
|
+
// Create start block html for example <p attr="value">
|
87
|
+
var forcedRootBlockName = editor.settings.forced_root_block;
|
88
|
+
var forcedRootBlockStartHtml;
|
89
|
+
if (forcedRootBlockName) {
|
90
|
+
forcedRootBlockStartHtml = editor.dom.createHTML(forcedRootBlockName, editor.settings.forced_root_block_attrs);
|
91
|
+
forcedRootBlockStartHtml = forcedRootBlockStartHtml.substr(0, forcedRootBlockStartHtml.length - 3) + '>';
|
92
|
+
}
|
93
|
+
|
94
|
+
if ((startBlock && /^(PRE|DIV)$/.test(startBlock.nodeName)) || !forcedRootBlockName) {
|
95
|
+
text = Utils.filter(text, [
|
96
|
+
[/\n/g, "<br>"]
|
97
|
+
]);
|
98
|
+
} else {
|
99
|
+
text = Utils.filter(text, [
|
100
|
+
[/\n\n/g, "</p>" + forcedRootBlockStartHtml],
|
101
|
+
[/^(.*<\/p>)(<p>)$/, forcedRootBlockStartHtml + '$1'],
|
102
|
+
[/\n/g, "<br />"]
|
103
|
+
]);
|
104
|
+
|
105
|
+
if (text.indexOf('<p>') != -1) {
|
106
|
+
text = forcedRootBlockStartHtml + text;
|
107
|
+
}
|
108
|
+
}
|
109
|
+
|
110
|
+
pasteHtml(text);
|
111
|
+
}
|
112
|
+
|
113
|
+
/**
|
114
|
+
* Creates a paste bin element as close as possible to the current caret location and places the focus inside that element
|
115
|
+
* so that when the real paste event occurs the contents gets inserted into this element
|
116
|
+
* instead of the current editor selection element.
|
117
|
+
*/
|
118
|
+
function createPasteBin() {
|
119
|
+
var dom = editor.dom, body = editor.getBody();
|
120
|
+
var viewport = editor.dom.getViewPort(editor.getWin()), scrollTop = viewport.y, top = 20;
|
121
|
+
var scrollContainer;
|
122
|
+
|
123
|
+
lastRng = editor.selection.getRng();
|
124
|
+
|
125
|
+
if (editor.inline) {
|
126
|
+
scrollContainer = editor.selection.getScrollContainer();
|
127
|
+
|
128
|
+
// Can't always rely on scrollTop returning a useful value.
|
129
|
+
// It returns 0 if the browser doesn't support scrollTop for the element or is non-scrollable
|
130
|
+
if (scrollContainer && scrollContainer.scrollTop > 0) {
|
131
|
+
scrollTop = scrollContainer.scrollTop;
|
132
|
+
}
|
133
|
+
}
|
134
|
+
|
135
|
+
/**
|
136
|
+
* Returns the rect of the current caret if the caret is in an empty block before a
|
137
|
+
* BR we insert a temporary invisible character that we get the rect this way we always get a proper rect.
|
138
|
+
*
|
139
|
+
* TODO: This might be useful in core.
|
140
|
+
*/
|
141
|
+
function getCaretRect(rng) {
|
142
|
+
var rects, textNode, node, container = rng.startContainer;
|
143
|
+
|
144
|
+
rects = rng.getClientRects();
|
145
|
+
if (rects.length) {
|
146
|
+
return rects[0];
|
147
|
+
}
|
148
|
+
|
149
|
+
if (!rng.collapsed || container.nodeType != 1) {
|
150
|
+
return;
|
151
|
+
}
|
152
|
+
|
153
|
+
node = container.childNodes[lastRng.startOffset];
|
154
|
+
|
155
|
+
// Skip empty whitespace nodes
|
156
|
+
while (node && node.nodeType == 3 && !node.data.length) {
|
157
|
+
node = node.nextSibling;
|
158
|
+
}
|
159
|
+
|
160
|
+
if (!node) {
|
161
|
+
return;
|
162
|
+
}
|
163
|
+
|
164
|
+
// Check if the location is |<br>
|
165
|
+
// TODO: Might need to expand this to say |<table>
|
166
|
+
if (node.tagName == 'BR') {
|
167
|
+
textNode = dom.doc.createTextNode('\uFEFF');
|
168
|
+
node.parentNode.insertBefore(textNode, node);
|
169
|
+
|
170
|
+
rng = dom.createRng();
|
171
|
+
rng.setStartBefore(textNode);
|
172
|
+
rng.setEndAfter(textNode);
|
173
|
+
|
174
|
+
rects = rng.getClientRects();
|
175
|
+
dom.remove(textNode);
|
176
|
+
}
|
177
|
+
|
178
|
+
if (rects.length) {
|
179
|
+
return rects[0];
|
180
|
+
}
|
181
|
+
}
|
182
|
+
|
183
|
+
// Calculate top cordinate this is needed to avoid scrolling to top of document
|
184
|
+
// We want the paste bin to be as close to the caret as possible to avoid scrolling
|
185
|
+
if (lastRng.getClientRects) {
|
186
|
+
var rect = getCaretRect(lastRng);
|
187
|
+
|
188
|
+
if (rect) {
|
189
|
+
// Client rects gets us closes to the actual
|
190
|
+
// caret location in for example a wrapped paragraph block
|
191
|
+
top = scrollTop + (rect.top - dom.getPos(body).y);
|
192
|
+
} else {
|
193
|
+
top = scrollTop;
|
194
|
+
|
195
|
+
// Check if we can find a closer location by checking the range element
|
196
|
+
var container = lastRng.startContainer;
|
197
|
+
if (container) {
|
198
|
+
if (container.nodeType == 3 && container.parentNode != body) {
|
199
|
+
container = container.parentNode;
|
200
|
+
}
|
201
|
+
|
202
|
+
if (container.nodeType == 1) {
|
203
|
+
top = dom.getPos(container, scrollContainer || body).y;
|
204
|
+
}
|
205
|
+
}
|
206
|
+
}
|
207
|
+
}
|
208
|
+
|
209
|
+
// Create a pastebin
|
210
|
+
pasteBinElm = dom.add(editor.getBody(), 'div', {
|
211
|
+
id: "mcepastebin",
|
212
|
+
contentEditable: true,
|
213
|
+
"data-mce-bogus": "all",
|
214
|
+
style: 'position: absolute; top: ' + top + 'px;' +
|
215
|
+
'width: 10px; height: 10px; overflow: hidden; opacity: 0'
|
216
|
+
}, pasteBinDefaultContent);
|
217
|
+
|
218
|
+
// Move paste bin out of sight since the controlSelection rect gets displayed otherwise on IE and Gecko
|
219
|
+
if (Env.ie || Env.gecko) {
|
220
|
+
dom.setStyle(pasteBinElm, 'left', dom.getStyle(body, 'direction', true) == 'rtl' ? 0xFFFF : -0xFFFF);
|
221
|
+
}
|
222
|
+
|
223
|
+
// Prevent focus events from bubbeling fixed FocusManager issues
|
224
|
+
dom.bind(pasteBinElm, 'beforedeactivate focusin focusout', function(e) {
|
225
|
+
e.stopPropagation();
|
226
|
+
});
|
227
|
+
|
228
|
+
pasteBinElm.focus();
|
229
|
+
editor.selection.select(pasteBinElm, true);
|
230
|
+
}
|
231
|
+
|
232
|
+
/**
|
233
|
+
* Removes the paste bin if it exists.
|
234
|
+
*/
|
235
|
+
function removePasteBin() {
|
236
|
+
if (pasteBinElm) {
|
237
|
+
var pasteBinClone;
|
238
|
+
|
239
|
+
// WebKit/Blink might clone the div so
|
240
|
+
// lets make sure we remove all clones
|
241
|
+
// TODO: Man o man is this ugly. WebKit is the new IE! Remove this if they ever fix it!
|
242
|
+
while ((pasteBinClone = editor.dom.get('mcepastebin'))) {
|
243
|
+
editor.dom.remove(pasteBinClone);
|
244
|
+
editor.dom.unbind(pasteBinClone);
|
245
|
+
}
|
246
|
+
|
247
|
+
if (lastRng) {
|
248
|
+
editor.selection.setRng(lastRng);
|
249
|
+
}
|
250
|
+
}
|
251
|
+
|
252
|
+
pasteBinElm = lastRng = null;
|
253
|
+
}
|
254
|
+
|
255
|
+
/**
|
256
|
+
* Returns the contents of the paste bin as a HTML string.
|
257
|
+
*
|
258
|
+
* @return {String} Get the contents of the paste bin.
|
259
|
+
*/
|
260
|
+
function getPasteBinHtml() {
|
261
|
+
var html = '', pasteBinClones, i, clone, cloneHtml;
|
262
|
+
|
263
|
+
// Since WebKit/Chrome might clone the paste bin when pasting
|
264
|
+
// for example: <img style="float: right"> we need to check if any of them contains some useful html.
|
265
|
+
// TODO: Man o man is this ugly. WebKit is the new IE! Remove this if they ever fix it!
|
266
|
+
pasteBinClones = editor.dom.select('div[id=mcepastebin]');
|
267
|
+
for (i = 0; i < pasteBinClones.length; i++) {
|
268
|
+
clone = pasteBinClones[i];
|
269
|
+
|
270
|
+
// Pasting plain text produces pastebins in pastebinds makes sence right!?
|
271
|
+
if (clone.firstChild && clone.firstChild.id == 'mcepastebin') {
|
272
|
+
clone = clone.firstChild;
|
273
|
+
}
|
274
|
+
|
275
|
+
cloneHtml = clone.innerHTML;
|
276
|
+
if (html != pasteBinDefaultContent) {
|
277
|
+
html += cloneHtml;
|
278
|
+
}
|
279
|
+
}
|
280
|
+
|
281
|
+
return html;
|
282
|
+
}
|
283
|
+
|
284
|
+
/**
|
285
|
+
* Gets various content types out of a datatransfer object.
|
286
|
+
*
|
287
|
+
* @param {DataTransfer} dataTransfer Event fired on paste.
|
288
|
+
* @return {Object} Object with mime types and data for those mime types.
|
289
|
+
*/
|
290
|
+
function getDataTransferItems(dataTransfer) {
|
291
|
+
var items = {};
|
292
|
+
|
293
|
+
if (dataTransfer) {
|
294
|
+
// Use old WebKit/IE API
|
295
|
+
if (dataTransfer.getData) {
|
296
|
+
var legacyText = dataTransfer.getData('Text');
|
297
|
+
if (legacyText && legacyText.length > 0) {
|
298
|
+
if (legacyText.indexOf(mceInternalUrlPrefix) == -1) {
|
299
|
+
items['text/plain'] = legacyText;
|
300
|
+
}
|
301
|
+
}
|
302
|
+
}
|
303
|
+
|
304
|
+
if (dataTransfer.types) {
|
305
|
+
for (var i = 0; i < dataTransfer.types.length; i++) {
|
306
|
+
var contentType = dataTransfer.types[i];
|
307
|
+
items[contentType] = dataTransfer.getData(contentType);
|
308
|
+
}
|
309
|
+
}
|
310
|
+
}
|
311
|
+
|
312
|
+
return items;
|
313
|
+
}
|
314
|
+
|
315
|
+
/**
|
316
|
+
* Gets various content types out of the Clipboard API. It will also get the
|
317
|
+
* plain text using older IE and WebKit API:s.
|
318
|
+
*
|
319
|
+
* @param {ClipboardEvent} clipboardEvent Event fired on paste.
|
320
|
+
* @return {Object} Object with mime types and data for those mime types.
|
321
|
+
*/
|
322
|
+
function getClipboardContent(clipboardEvent) {
|
323
|
+
return getDataTransferItems(clipboardEvent.clipboardData || editor.getDoc().dataTransfer);
|
324
|
+
}
|
325
|
+
|
326
|
+
function hasHtmlOrText(content) {
|
327
|
+
return hasContentType(content, 'text/html') || hasContentType(content, 'text/plain');
|
328
|
+
}
|
329
|
+
|
330
|
+
/**
|
331
|
+
* Checks if the clipboard contains image data if it does it will take that data
|
332
|
+
* and convert it into a data url image and paste that image at the caret location.
|
333
|
+
*
|
334
|
+
* @param {ClipboardEvent} e Paste/drop event object.
|
335
|
+
* @param {DOMRange} rng Rng object to move selection to.
|
336
|
+
* @return {Boolean} true/false if the image data was found or not.
|
337
|
+
*/
|
338
|
+
function pasteImageData(e, rng) {
|
339
|
+
var dataTransfer = e.clipboardData || e.dataTransfer;
|
340
|
+
|
341
|
+
function getBase64FromUri(uri) {
|
342
|
+
var idx;
|
343
|
+
|
344
|
+
idx = uri.indexOf(',');
|
345
|
+
if (idx !== -1) {
|
346
|
+
return uri.substr(idx + 1);
|
347
|
+
}
|
348
|
+
|
349
|
+
return null;
|
350
|
+
}
|
351
|
+
|
352
|
+
function processItems(items) {
|
353
|
+
var i, item, reader, hadImage = false;
|
354
|
+
|
355
|
+
function pasteImage(reader, blob) {
|
356
|
+
if (rng) {
|
357
|
+
editor.selection.setRng(rng);
|
358
|
+
rng = null;
|
359
|
+
}
|
360
|
+
|
361
|
+
var blobCache = editor.editorUpload.blobCache;
|
362
|
+
var blobInfo = blobCache.create(uniqueId(), blob, getBase64FromUri(reader.result));
|
363
|
+
blobCache.add(blobInfo);
|
364
|
+
|
365
|
+
pasteHtml('<img src="' + blobInfo.blobUri() + '">');
|
366
|
+
}
|
367
|
+
|
368
|
+
if (items) {
|
369
|
+
for (i = 0; i < items.length; i++) {
|
370
|
+
item = items[i];
|
371
|
+
|
372
|
+
if (/^image\/(jpeg|png|gif|bmp)$/.test(item.type)) {
|
373
|
+
var blob = item.getAsFile ? item.getAsFile() : item;
|
374
|
+
|
375
|
+
reader = new FileReader();
|
376
|
+
reader.onload = pasteImage.bind(null, reader, blob);
|
377
|
+
reader.readAsDataURL(blob);
|
378
|
+
|
379
|
+
e.preventDefault();
|
380
|
+
hadImage = true;
|
381
|
+
}
|
382
|
+
}
|
383
|
+
}
|
384
|
+
|
385
|
+
return hadImage;
|
386
|
+
}
|
387
|
+
|
388
|
+
if (editor.settings.paste_data_images && dataTransfer) {
|
389
|
+
return processItems(dataTransfer.items) || processItems(dataTransfer.files);
|
390
|
+
}
|
391
|
+
}
|
392
|
+
|
393
|
+
/**
|
394
|
+
* Chrome on Android doesn't support proper clipboard access so we have no choice but to allow the browser default behavior.
|
395
|
+
*
|
396
|
+
* @param {Event} e Paste event object to check if it contains any data.
|
397
|
+
* @return {Boolean} true/false if the clipboard is empty or not.
|
398
|
+
*/
|
399
|
+
function isBrokenAndroidClipboardEvent(e) {
|
400
|
+
var clipboardData = e.clipboardData;
|
401
|
+
|
402
|
+
return navigator.userAgent.indexOf('Android') != -1 && clipboardData && clipboardData.items && clipboardData.items.length === 0;
|
403
|
+
}
|
404
|
+
|
405
|
+
function getCaretRangeFromEvent(e) {
|
406
|
+
return RangeUtils.getCaretRangeFromPoint(e.clientX, e.clientY, editor.getDoc());
|
407
|
+
}
|
408
|
+
|
409
|
+
function hasContentType(clipboardContent, mimeType) {
|
410
|
+
return mimeType in clipboardContent && clipboardContent[mimeType].length > 0;
|
411
|
+
}
|
412
|
+
|
413
|
+
function isKeyboardPasteEvent(e) {
|
414
|
+
return (VK.metaKeyPressed(e) && e.keyCode == 86) || (e.shiftKey && e.keyCode == 45);
|
415
|
+
}
|
416
|
+
|
417
|
+
function registerEventHandlers() {
|
418
|
+
editor.on('keydown', function(e) {
|
419
|
+
function removePasteBinOnKeyUp(e) {
|
420
|
+
// Ctrl+V or Shift+Insert
|
421
|
+
if (isKeyboardPasteEvent(e) && !e.isDefaultPrevented()) {
|
422
|
+
removePasteBin();
|
423
|
+
}
|
424
|
+
}
|
425
|
+
|
426
|
+
// Ctrl+V or Shift+Insert
|
427
|
+
if (isKeyboardPasteEvent(e) && !e.isDefaultPrevented()) {
|
428
|
+
keyboardPastePlainTextState = e.shiftKey && e.keyCode == 86;
|
429
|
+
|
430
|
+
// Edge case on Safari on Mac where it doesn't handle Cmd+Shift+V correctly
|
431
|
+
// it fires the keydown but no paste or keyup so we are left with a paste bin
|
432
|
+
if (keyboardPastePlainTextState && Env.webkit && navigator.userAgent.indexOf('Version/') != -1) {
|
433
|
+
return;
|
434
|
+
}
|
435
|
+
|
436
|
+
// Prevent undoManager keydown handler from making an undo level with the pastebin in it
|
437
|
+
e.stopImmediatePropagation();
|
438
|
+
|
439
|
+
keyboardPasteTimeStamp = new Date().getTime();
|
440
|
+
|
441
|
+
// IE doesn't support Ctrl+Shift+V and it doesn't even produce a paste event
|
442
|
+
// so lets fake a paste event and let IE use the execCommand/dataTransfer methods
|
443
|
+
if (Env.ie && keyboardPastePlainTextState) {
|
444
|
+
e.preventDefault();
|
445
|
+
editor.fire('paste', {ieFake: true});
|
446
|
+
return;
|
447
|
+
}
|
448
|
+
|
449
|
+
removePasteBin();
|
450
|
+
createPasteBin();
|
451
|
+
|
452
|
+
// Remove pastebin if we get a keyup and no paste event
|
453
|
+
// For example pasting a file in IE 11 will not produce a paste event
|
454
|
+
editor.once('keyup', removePasteBinOnKeyUp);
|
455
|
+
editor.once('paste', function() {
|
456
|
+
editor.off('keyup', removePasteBinOnKeyUp);
|
457
|
+
});
|
458
|
+
}
|
459
|
+
});
|
460
|
+
|
461
|
+
function insertClipboardContent(clipboardContent, isKeyBoardPaste, plainTextMode) {
|
462
|
+
var content;
|
463
|
+
|
464
|
+
// Grab HTML from Clipboard API or paste bin as a fallback
|
465
|
+
if (hasContentType(clipboardContent, 'text/html')) {
|
466
|
+
content = clipboardContent['text/html'];
|
467
|
+
} else {
|
468
|
+
content = getPasteBinHtml();
|
469
|
+
|
470
|
+
// If paste bin is empty try using plain text mode
|
471
|
+
// since that is better than nothing right
|
472
|
+
if (content == pasteBinDefaultContent) {
|
473
|
+
plainTextMode = true;
|
474
|
+
}
|
475
|
+
}
|
476
|
+
|
477
|
+
content = Utils.trimHtml(content);
|
478
|
+
|
479
|
+
// WebKit has a nice bug where it clones the paste bin if you paste from for example notepad
|
480
|
+
// so we need to force plain text mode in this case
|
481
|
+
if (pasteBinElm && pasteBinElm.firstChild && pasteBinElm.firstChild.id === 'mcepastebin') {
|
482
|
+
plainTextMode = true;
|
483
|
+
}
|
484
|
+
|
485
|
+
removePasteBin();
|
486
|
+
|
487
|
+
// If we got nothing from clipboard API and pastebin then we could try the last resort: plain/text
|
488
|
+
if (!content.length) {
|
489
|
+
plainTextMode = true;
|
490
|
+
}
|
491
|
+
|
492
|
+
// Grab plain text from Clipboard API or convert existing HTML to plain text
|
493
|
+
if (plainTextMode) {
|
494
|
+
// Use plain text contents from Clipboard API unless the HTML contains paragraphs then
|
495
|
+
// we should convert the HTML to plain text since works better when pasting HTML/Word contents as plain text
|
496
|
+
if (hasContentType(clipboardContent, 'text/plain') && content.indexOf('</p>') == -1) {
|
497
|
+
content = clipboardContent['text/plain'];
|
498
|
+
} else {
|
499
|
+
content = Utils.innerText(content);
|
500
|
+
}
|
501
|
+
}
|
502
|
+
|
503
|
+
// If the content is the paste bin default HTML then it was
|
504
|
+
// impossible to get the cliboard data out.
|
505
|
+
if (content == pasteBinDefaultContent) {
|
506
|
+
if (!isKeyBoardPaste) {
|
507
|
+
editor.windowManager.alert('Please use Ctrl+V/Cmd+V keyboard shortcuts to paste contents.');
|
508
|
+
}
|
509
|
+
|
510
|
+
return;
|
511
|
+
}
|
512
|
+
|
513
|
+
if (plainTextMode) {
|
514
|
+
pasteText(content);
|
515
|
+
} else {
|
516
|
+
pasteHtml(content);
|
517
|
+
}
|
518
|
+
}
|
519
|
+
|
520
|
+
var getLastRng = function() {
|
521
|
+
return lastRng || editor.selection.getRng();
|
522
|
+
};
|
523
|
+
|
524
|
+
editor.on('paste', function(e) {
|
525
|
+
// Getting content from the Clipboard can take some time
|
526
|
+
var clipboardTimer = new Date().getTime();
|
527
|
+
var clipboardContent = getClipboardContent(e);
|
528
|
+
var clipboardDelay = new Date().getTime() - clipboardTimer;
|
529
|
+
|
530
|
+
var isKeyBoardPaste = (new Date().getTime() - keyboardPasteTimeStamp - clipboardDelay) < 1000;
|
531
|
+
var plainTextMode = self.pasteFormat == "text" || keyboardPastePlainTextState;
|
532
|
+
|
533
|
+
keyboardPastePlainTextState = false;
|
534
|
+
|
535
|
+
if (e.isDefaultPrevented() || isBrokenAndroidClipboardEvent(e)) {
|
536
|
+
removePasteBin();
|
537
|
+
return;
|
538
|
+
}
|
539
|
+
|
540
|
+
if (!hasHtmlOrText(clipboardContent) && pasteImageData(e, getLastRng())) {
|
541
|
+
removePasteBin();
|
542
|
+
return;
|
543
|
+
}
|
544
|
+
|
545
|
+
// Not a keyboard paste prevent default paste and try to grab the clipboard contents using different APIs
|
546
|
+
if (!isKeyBoardPaste) {
|
547
|
+
e.preventDefault();
|
548
|
+
}
|
549
|
+
|
550
|
+
// Try IE only method if paste isn't a keyboard paste
|
551
|
+
if (Env.ie && (!isKeyBoardPaste || e.ieFake)) {
|
552
|
+
createPasteBin();
|
553
|
+
|
554
|
+
editor.dom.bind(pasteBinElm, 'paste', function(e) {
|
555
|
+
e.stopPropagation();
|
556
|
+
});
|
557
|
+
|
558
|
+
editor.getDoc().execCommand('Paste', false, null);
|
559
|
+
clipboardContent["text/html"] = getPasteBinHtml();
|
560
|
+
}
|
561
|
+
|
562
|
+
// If clipboard API has HTML then use that directly
|
563
|
+
if (hasContentType(clipboardContent, 'text/html')) {
|
564
|
+
e.preventDefault();
|
565
|
+
insertClipboardContent(clipboardContent, isKeyBoardPaste, plainTextMode);
|
566
|
+
} else {
|
567
|
+
Delay.setEditorTimeout(editor, function() {
|
568
|
+
insertClipboardContent(clipboardContent, isKeyBoardPaste, plainTextMode);
|
569
|
+
}, 0);
|
570
|
+
}
|
571
|
+
});
|
572
|
+
|
573
|
+
editor.on('dragstart dragend', function(e) {
|
574
|
+
draggingInternally = e.type == 'dragstart';
|
575
|
+
});
|
576
|
+
|
577
|
+
editor.on('drop', function(e) {
|
578
|
+
var dropContent, rng;
|
579
|
+
|
580
|
+
rng = getCaretRangeFromEvent(e);
|
581
|
+
|
582
|
+
if (e.isDefaultPrevented() || draggingInternally) {
|
583
|
+
return;
|
584
|
+
}
|
585
|
+
|
586
|
+
dropContent = getDataTransferItems(e.dataTransfer);
|
587
|
+
|
588
|
+
if (!hasHtmlOrText(dropContent) && pasteImageData(e, rng)) {
|
589
|
+
return;
|
590
|
+
}
|
591
|
+
|
592
|
+
if (rng && editor.settings.paste_filter_drop !== false) {
|
593
|
+
var content = dropContent['mce-internal'] || dropContent['text/html'] || dropContent['text/plain'];
|
594
|
+
|
595
|
+
if (content) {
|
596
|
+
e.preventDefault();
|
597
|
+
|
598
|
+
editor.undoManager.transact(function() {
|
599
|
+
if (dropContent['mce-internal']) {
|
600
|
+
editor.execCommand('Delete');
|
601
|
+
}
|
602
|
+
|
603
|
+
editor.selection.setRng(rng);
|
604
|
+
|
605
|
+
content = Utils.trimHtml(content);
|
606
|
+
|
607
|
+
if (!dropContent['text/html']) {
|
608
|
+
pasteText(content);
|
609
|
+
} else {
|
610
|
+
pasteHtml(content);
|
611
|
+
}
|
612
|
+
});
|
613
|
+
}
|
614
|
+
}
|
615
|
+
});
|
616
|
+
|
617
|
+
editor.on('dragover dragend', function(e) {
|
618
|
+
if (editor.settings.paste_data_images) {
|
619
|
+
e.preventDefault();
|
620
|
+
}
|
621
|
+
});
|
622
|
+
}
|
623
|
+
|
624
|
+
self.pasteHtml = pasteHtml;
|
625
|
+
self.pasteText = pasteText;
|
626
|
+
|
627
|
+
editor.on('preInit', function() {
|
628
|
+
registerEventHandlers();
|
629
|
+
|
630
|
+
// Remove all data images from paste for example from Gecko
|
631
|
+
// except internal images like video elements
|
632
|
+
editor.parser.addNodeFilter('img', function(nodes, name, args) {
|
633
|
+
function isPasteInsert(args) {
|
634
|
+
return args.data && args.data.paste === true;
|
635
|
+
}
|
636
|
+
|
637
|
+
function remove(node) {
|
638
|
+
if (!node.attr('data-mce-object') && src !== Env.transparentSrc) {
|
639
|
+
node.remove();
|
640
|
+
}
|
641
|
+
}
|
642
|
+
|
643
|
+
function isWebKitFakeUrl(src) {
|
644
|
+
return src.indexOf("webkit-fake-url") === 0;
|
645
|
+
}
|
646
|
+
|
647
|
+
function isDataUri(src) {
|
648
|
+
return src.indexOf("data:") === 0;
|
649
|
+
}
|
650
|
+
|
651
|
+
if (!editor.settings.paste_data_images && isPasteInsert(args)) {
|
652
|
+
var i = nodes.length;
|
653
|
+
|
654
|
+
while (i--) {
|
655
|
+
var src = nodes[i].attributes.map.src;
|
656
|
+
|
657
|
+
if (!src) {
|
658
|
+
continue;
|
659
|
+
}
|
660
|
+
|
661
|
+
// Safari on Mac produces webkit-fake-url see: https://bugs.webkit.org/show_bug.cgi?id=49141
|
662
|
+
if (isWebKitFakeUrl(src)) {
|
663
|
+
remove(nodes[i]);
|
664
|
+
} else if (!editor.settings.allow_html_data_urls && isDataUri(src)) {
|
665
|
+
remove(nodes[i]);
|
666
|
+
}
|
667
|
+
}
|
668
|
+
}
|
669
|
+
});
|
670
|
+
});
|
671
|
+
};
|
672
|
+
});
|