ckeditor_rails 4.5.1 → 4.5.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (30) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -2
  3. data/lib/ckeditor-rails/version.rb +2 -2
  4. data/vendor/assets/images/ckeditor/plugins/forms/images/hiddenfield.gif +0 -0
  5. data/vendor/assets/images/ckeditor/plugins/icons.png +0 -0
  6. data/vendor/assets/images/ckeditor/plugins/image/images/noimage.png +0 -0
  7. data/vendor/assets/images/ckeditor/plugins/pagebreak/images/pagebreak.gif +0 -0
  8. data/vendor/assets/images/ckeditor/skins/moono/icons.png +0 -0
  9. data/vendor/assets/javascripts/ckeditor/CHANGES.md +63 -0
  10. data/vendor/assets/javascripts/ckeditor/LICENSE.md +4 -0
  11. data/vendor/assets/javascripts/ckeditor/ckeditor.js +307 -306
  12. data/vendor/assets/javascripts/ckeditor/lang/da.js +1 -1
  13. data/vendor/assets/javascripts/ckeditor/lang/eo.js +1 -1
  14. data/vendor/assets/javascripts/ckeditor/lang/fo.js +1 -1
  15. data/vendor/assets/javascripts/ckeditor/lang/hu.js +1 -1
  16. data/vendor/assets/javascripts/ckeditor/lang/ja.js +1 -1
  17. data/vendor/assets/javascripts/ckeditor/lang/ku.js +1 -1
  18. data/vendor/assets/javascripts/ckeditor/lang/nb.js +1 -1
  19. data/vendor/assets/javascripts/ckeditor/lang/pt-br.js +1 -1
  20. data/vendor/assets/javascripts/ckeditor/lang/ru.js +1 -1
  21. data/vendor/assets/javascripts/ckeditor/lang/sv.js +1 -1
  22. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/da.js +7 -7
  23. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js +4 -5
  24. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js +4 -3
  25. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js +7 -6
  26. data/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js +5 -5
  27. data/vendor/assets/javascripts/ckeditor/plugins/clipboard/dialogs/paste.js +4 -4
  28. data/vendor/assets/javascripts/ckeditor/plugins/pastefromword/filter/default.js +23 -23
  29. data/vendor/assets/javascripts/ckeditor/plugins/wsc/dialogs/wsc.js +65 -64
  30. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 486efa98df7e7e4e5a1433c336ccbe12420f1671
4
- data.tar.gz: e760f0cba7efc9c24ca628009cc02cc819206598
3
+ metadata.gz: f59aa4bda7e61f08f20d658e68f5f1d5881f42dc
4
+ data.tar.gz: 6379324bd9e1d9809ba3e202598299ed0b7e477f
5
5
  SHA512:
6
- metadata.gz: 5e4d5bf279a5f183352b4da7f297299603f9e1cfc9e779a0acc1490dffb5f5308aa2b54fa1e534e088638279596f538f76a561552a475e0a1a9cb78ca241f3e6
7
- data.tar.gz: 2da78d7f6932b68b83076240e399c36a40de29919a2170b856b69a9061b936c81ee310c011ea63f0118d154afeca2c9d0726cc2fdc14072b760a3e1233b9aebd
6
+ metadata.gz: fd642bff5370c3a833c7ebf8057e5f97cd08010a7102c57909498e3c4005c5d49d944018f41111c29fa71150174ba8d05f1ed6dff10dfb290edae10925be458c
7
+ data.tar.gz: e6a3986f43a0d23c118e8f290f5622a6b0075a9cebd510e71b6c93d1182e019a76962681e53d27ae3f9ef7510494e4ff0f62e4d054b8c995c66ef472c17a1438
data/README.md CHANGED
@@ -110,7 +110,7 @@ Ckeditor::Rails.configure do |config|
110
110
  # or set as black list: config.default_plugins - %w[about a11yhelp]
111
111
  config.assets_plugins = nil
112
112
 
113
- # default is nil for all skins, or set as %w[moon]
113
+ # default is nil for all skins, or set as %w[moono]
114
114
  config.assets_skins = nil
115
115
  end
116
116
  ```
@@ -121,7 +121,7 @@ Maintain `ckeditor_rails` gem with `Rake` commands.
121
121
 
122
122
  Update origin CKEditor source files.
123
123
 
124
- rake update_ckeditor VERSION=4.5.1
124
+ rake update_ckeditor VERSION=4.5.2
125
125
 
126
126
  Publish gem.
127
127
 
@@ -144,6 +144,14 @@ https://github.com/rails/turbolinks/#opting-out-of-turbolinks
144
144
  ...
145
145
  </div>
146
146
 
147
+ #### Asset Compilation Process Does Not Produce JS and/or CSS Files
148
+
149
+ If you observe an issue (especially in Heroku environment) where asset compilation process skips JS and or CSS files, try adding the following line to `app/environments/production.rb` (or config file for the environment where you observe the issue):
150
+
151
+ ``` ruby
152
+ config.assets.precompile += ['ckeditor/*']
153
+ ```
154
+
147
155
  ## License
148
156
 
149
157
  CKEditor use [CKEditor license](http://ckeditor.com/license).
@@ -1,6 +1,6 @@
1
1
  module Ckeditor
2
2
  module Rails
3
- VERSION = '4.5.1'
4
- EDITOR_VERSION = '4.5.1'
3
+ VERSION = '4.5.3'
4
+ EDITOR_VERSION = '4.5.3'
5
5
  end
6
6
  end
@@ -1,6 +1,69 @@
1
1
  CKEditor 4 Changelog
2
2
  ====================
3
3
 
4
+ ## CKEditor 4.5.3
5
+
6
+ New Features:
7
+
8
+ * [#13501](http://dev.ckeditor.com/ticket/13501): Added the [`config.fileTools_defaultFileName`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-fileTools_defaultFileName) option to allow setting a default filen ame for paste uploads.
9
+ * [#13603](http://dev.ckeditor.com/ticket/13603): Added support for uploading dropped BMP images.
10
+
11
+ Fixed Issues:
12
+
13
+ * [#13590](http://dev.ckeditor.com/ticket/13590): Fixed: Various issues related to the [Paste from Word](http://ckeditor.com/addon/pastefromword) feature. Fixes also:
14
+ * [#11215](http://dev.ckeditor.com/ticket/11215),
15
+ * [#8780](http://dev.ckeditor.com/ticket/8780),
16
+ * [#12762](http://dev.ckeditor.com/ticket/12762).
17
+ * [#13386](http://dev.ckeditor.com/ticket/13386): [Edge] Fixed: Issues with selecting and editing images.
18
+ * [#13568](http://dev.ckeditor.com/ticket/13568): Fixed: The [`editor.getSelectedHtml()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-getSelectedHtml) method returns invalid results for entire content selection.
19
+ * [#13453](http://dev.ckeditor.com/ticket/13453): Fixed: Drag&drop of entire editor content throws an error.
20
+ * [#13465](http://dev.ckeditor.com/ticket/13465): Fixed: Error is thrown and the widget is lost on drag&drop if it is the only content of the editor.
21
+ * [#13414](http://dev.ckeditor.com/ticket/13414): Fixed: Content auto paragraphing in a nested editable despite editor configuration.
22
+ * [#13429](http://dev.ckeditor.com/ticket/13429): Fixed: Incorrect selection after content insertion by the [Auto Embed](http://ckeditor.com/addon/autoembed) plugin.
23
+ * [#13388](http://dev.ckeditor.com/ticket/13388): Fixed: [Table Resize](http://ckeditor.com/addon/tableresize) integration with [Undo](http://ckeditor.com/addon/undo) is broken.
24
+
25
+ Other Changes:
26
+
27
+ * [#13637](https://dev.ckeditor.com/ticket/13637): Several icons were refactored.
28
+ * Updated [Bender.js](https://github.com/benderjs/benderjs) to 0.3.0 and introduced the ability to run tests via HTTPs ([#13265](https://dev.ckeditor.com/ticket/13265)).
29
+
30
+ ## CKEditor 4.5.2
31
+
32
+ Fixed Issues:
33
+
34
+ * [#13609](http://dev.ckeditor.com/ticket/13609): [Edge] Fixed: The browser crashes when switching to the source mode. Thanks to [Andrew Williams and Mark Smeed](http://webxsolution.com/)!
35
+ * [PR#201](https://github.com/ckeditor/ckeditor-dev/pull/201): Fixed: Buttons in the toolbar configurator cause form submission. Thanks to [colemanw](https://github.com/colemanw)!
36
+ * [#13422](http://dev.ckeditor.com/ticket/13422): Fixed: A monospaced font should be used in the `<textarea>` element storing editor configuration in the toolbar configurator.
37
+ * [#13494](http://dev.ckeditor.com/ticket/13494): Fixed: Error thrown in the toolbar configurator if plugin requirements are not met.
38
+ * [#13409](http://dev.ckeditor.com/ticket/13409): Fixed: List elements incorrectly merged when pressing *Backspace* or *Delete*.
39
+ * [#13434](http://dev.ckeditor.com/ticket/13434): Fixed: Dialog state indicator broken in Right–To–Left environments.
40
+ * [#13460](http://dev.ckeditor.com/ticket/13460): [IE8] Fixed: Copying inline widgets is broken when [Advanced Content Filter](http://docs.ckeditor.com/#!/guide/dev_acf) is disabled.
41
+ * [#13495](http://dev.ckeditor.com/ticket/13495): [Firefox, IE] Fixed: Text is not word-wrapped in the Paste dialog window.
42
+ * [#13528](http://dev.ckeditor.com/ticket/13528): [Firefox@Windows] Fixed: Content copied from Microsoft Word and other external applications is pasted as a plain text. Removed the `CKEDITOR.plugins.clipboard.isHtmlInExternalDataTransfer` property as the check must be dynamic.
43
+ * [#13583](http://dev.ckeditor.com/ticket/13583): Fixed: [`DataTransfer.getData()`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.clipboard.dataTransfer-method-getData) should work consistently in all browsers and should not strip valuable content. Fixed pasting tables from Microsoft Excel on Chrome.
44
+ * [#13468](http://dev.ckeditor.com/ticket/13468): [IE] Fixed: Binding drag&drop `dataTransfer` does not work if `text` data was set in the meantime.
45
+ * [#13451](http://dev.ckeditor.com/ticket/13451): [IE8-9] Fixed: One drag&drop operation may affect following ones.
46
+ * [#13184](http://dev.ckeditor.com/ticket/13184): Fixed: Web page reloaded after a drop on editor UI.
47
+ * [#13129](http://dev.ckeditor.com/ticket/13129) Fixed: Block widget blurred after a drop followed by an undo.
48
+ * [#13397](http://dev.ckeditor.com/ticket/13397): Fixed: Drag&drop of a widget inside its nested widget crashes the editor.
49
+ * [#13385](http://dev.ckeditor.com/ticket/13385): Fixed: [`editor.getSnapshot()`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-getSnapshot) may return a non-string value.
50
+ * [#13419](http://dev.ckeditor.com/ticket/13419): Fixed: The [Auto Link](http://ckeditor.com/addon/autolink) plugin does not encode double quotes in URLs.
51
+ * [#13420](http://dev.ckeditor.com/ticket/13420): Fixed: The [Auto Embed](http://ckeditor.com/addon/autoembed) plugin ignores encoded characters in URL parameters.
52
+ * [#13410](http://dev.ckeditor.com/ticket/13410): Fixed: Error thrown in the [Auto Embed](http://ckeditor.com/addon/autoembed) plugin when undoing right after pasting a link.
53
+ * [#13566](http://dev.ckeditor.com/ticket/13566): Fixed: Suppressed notifications in the [Media Embed Base](http://ckeditor.com/addon/embedbase) plugin.
54
+ * [#11616](http://dev.ckeditor.com/ticket/11616): [Chrome] Fixed: Resizing the editor while it is not displayed breaks the editable. Fixes also [#9160](http://dev.ckeditor.com/ticket/9160) and [#9715](http://dev.ckeditor.com/ticket/9715).
55
+ * [#11376](http://dev.ckeditor.com/ticket/11376): [IE11] Fixed: Loss of text when pasting bulleted lists from Microsoft Word.
56
+ * [#13143](http://dev.ckeditor.com/ticket/13143): [Edge] Fixed: Focus lost when opening the panel.
57
+ * [#13387](http://dev.ckeditor.com/ticket/13387): [Edge] Fixed: "Permission denied" error thrown when loading the editor with developer tools open.
58
+ * [#13574](http://dev.ckeditor.com/ticket/13574): [Edge] Fixed: "Permission denied" error thrown when opening editor dialog windows.
59
+ * [#13441](http://dev.ckeditor.com/ticket/13441): [Edge] Fixed: The [Clipboard](http://ckeditor.com/addon/clipboard) plugin breaks the state of [Undo](http://ckeditor.com/addon/undo) commands after a paste.
60
+ * [#13554](http://dev.ckeditor.com/ticket/13554): [Edge] Fixed: Paste dialog's iframe does not receive focus on show.
61
+ * [#13440](http://dev.ckeditor.com/ticket/13440): [Edge] Fixed: Unable to paste a widget.
62
+
63
+ Other Changes:
64
+
65
+ * [#13421](http://dev.ckeditor.com/ticket/13421): UX improvements to notifications in the [Auto Embed](http://ckeditor.com/addon/autoembed) plugin.
66
+
4
67
  ## CKEditor 4.5.1
5
68
 
6
69
  Fixed Issues:
@@ -41,6 +41,10 @@ The following libraries are included in CKEditor under the MIT license (see Appe
41
41
  * PicoModal (included in `samples/js/sf.js`) - Copyright (c) 2012 James Frasca.
42
42
  * CodeMirror (included in the samples) - Copyright (C) 2014 by Marijn Haverbeke <marijnh@gmail.com> and others.
43
43
 
44
+ Parts of code taken from the following libraries are included in CKEditor under the MIT license (see Appendix D):
45
+
46
+ * jQuery (inspired the domReady function, ckeditor_base.js) - Copyright (c) 2011 John Resig, http://jquery.com/
47
+
44
48
  The following libraries are included in CKEditor under the SIL Open Font License, Version 1.1 (see Appendix E):
45
49
 
46
50
  * Font Awesome (included in the toolbar configurator) - Copyright (C) 2012 by Dave Gandy.