Commit 18aeacba86d38748a4e834a3c9f2c83ec5aafd46

Authored by Braulio Bhavamitra
1 parent f323c51d

Update to tinymce 4

Showing 553 changed files with 6533 additions and 48406 deletions   Show diff stats

Too many changes.

To preserve performance only 100 of 553 files displayed.

app/helpers/tinymce_helper.rb 0 → 100644
... ... @@ -0,0 +1,63 @@
  1 +module TinymceHelper
  2 + include MacrosHelper
  3 +
  4 + def tinymce_js
  5 + output = ''
  6 + output += javascript_include_tag 'tinymce/js/tinymce/tinymce.min.js'
  7 + output += javascript_include_tag 'tinymce/js/tinymce/jquery.tinymce.min.js'
  8 + output += javascript_include_tag 'tinymce.js'
  9 + output += include_macro_js_files.to_s
  10 + output
  11 + end
  12 +
  13 + def tinymce_init_js options = {}
  14 + options.merge! :document_base_url => environment.top_url,
  15 + :content_css => "/stylesheets/tinymce.css,#{macro_css_files}",
  16 + :plugins => %w[compat3x advlist autolink lists link image charmap print preview hr anchor pagebreak
  17 + searchreplace wordcount visualblocks visualchars code fullscreen
  18 + insertdatetime media nonbreaking save table contextmenu directionality
  19 + emoticons template paste textcolor colorpicker textpattern],
  20 + :language => tinymce_language
  21 +
  22 + options[:toolbar1] = "insertfile undo redo | copy paste | bold italic underline | styleselect fontsizeselect | forecolor backcolor | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image"
  23 + if options[:mode] == 'simple'
  24 + options[:menubar] = false
  25 + else
  26 + options[:menubar] = 'edit insert view tools'
  27 + options[:toolbar2] = 'print preview code media | table'
  28 +
  29 + options[:toolbar2] += ' | macros'
  30 + macros_with_buttons.each do |macro|
  31 + options[:toolbar2] += " #{macro.identifier}"
  32 + end
  33 + end
  34 +
  35 + options[:macros_setup] = macros_with_buttons.map do |macro|
  36 + <<-EOS
  37 + ed.addButton('#{macro.identifier}', {
  38 + title: #{macro_title(macro).to_json},
  39 + onclick: #{generate_macro_config_dialog macro},
  40 + image : '#{macro.configuration[:icon_path]}'
  41 + });
  42 + EOS
  43 + end
  44 +
  45 + apply_etherpadlite_options options
  46 +
  47 + #cleanup non tinymce options
  48 + options = options.except :mode
  49 +
  50 + "noosfero.tinymce.init(#{options.to_json})"
  51 + end
  52 +
  53 + def apply_etherpadlite_options options
  54 + return if options[:mode] == 'simple'
  55 + return unless environment.tinymce_plugin_etherpadlite_padServerUrl.present?
  56 + options.merge! :plugin_etherpadlite_padServerUrl => environment.tinymce_plugin_etherpadlite_padServerUrl,
  57 + :plugin_etherpadlite_padNamesPrefix => environment.default_hostname,
  58 + :plugin_etherpadlite_padWidth => environment.tinymce_plugin_etherpadlite_padWidth,
  59 + :plugin_etherpadlite_padHeight => environment.tinymce_plugin_etherpadlite_padHeight
  60 + options[:plugins] << "etherpadlite"
  61 + options[:toolbar2] += " | etherpadlite"
  62 + end
  63 +end
... ...
app/views/manage_products/_edit_description.html.erb
1 1 <%= render :file => 'shared/tiny_mce', :locals => {:mode => 'simple'} %>
2 2 <%= remote_form_for(@product,
3 3 :loading => "small_loading('product-description-form')",
4   - :before => ("tinyMCE.triggerSave()" unless Rails.env == 'test'),
5 4 :update => 'product-description',
6 5 :url => {:controller => 'manage_products', :action => 'edit', :id => @product, :field => 'description'},
7 6 :html => {:id => 'product-description-form', :method => 'post'}) do |f| %>
... ...
app/views/shared/tiny_mce.html.erb
1   -<% extend MacrosHelper %>
2   -<%= javascript_include_tag 'tinymce/jscripts/tiny_mce/tiny_mce.js' %>
3   -<%= include_macro_js_files %>
4   -<script type="text/javascript">
5   - var myplugins = "searchreplace,print,table,contextmenu,-macrosPlugin";
6   - var first_line, second_line;
7   - var mode = '<%= mode ||= false %>'
8   - <% if mode %>
9   - first_line = "fontsizeselect,bold,italic,underline,bullist,numlist,justifyleft,justifycenter,justifyright,link,unlink"
10   - second_line = ""
11   - <% else %>
12   - first_line = "print,separator,copy,paste,separator,undo,redo,separator,search,replace,separator,forecolor,fontsizeselect,formatselect"
13   - second_line = "bold,italic,underline,strikethrough,separator,bullist,numlist,separator,justifyleft,justifycenter,justifyright,justifyfull,separator,link,unlink,image,table,separator,cleanup,code,macros"
14   - <% macros_with_buttons.each do |macro| %>
15   - second_line += ',<%=macro.identifier %>'
16   - <% end %>
17   - <% end %>
18   -
19   - if (tinymce.isIE) {
20   - // the paste plugin is only useful in Internet Explorer
21   - myplugins = "paste," + myplugins;
22   - }
  1 +<%
  2 +extend TinymceHelper
  3 +mode ||= false
  4 +%>
23 5  
  6 +<%= tinymce_js %>
  7 +<script type="text/javascript">
24 8 tinymce.create('tinymce.plugins.MacrosPlugin', {
25 9 createControl: function(n, cm) {
26 10 switch (n) {
... ... @@ -49,56 +33,21 @@ tinymce.create(&#39;tinymce.plugins.MacrosPlugin&#39;, {
49 33 }
50 34 });
51 35  
  36 +function tinymce_macros_setup(editor) {
  37 + <% macros_with_buttons.each do |macro| %>
  38 + editor.addButton('<%= macro.identifier %>', {
  39 + title: <%= macro_title(macro).to_json %>,
  40 + onclick: <%= generate_macro_config_dialog(macro) %>,
  41 + image : '<%= macro.configuration[:icon_path]%>'
  42 + });
  43 + <% end %>
  44 +}
  45 +
52 46 // Register plugin with a short name
53 47 tinymce.PluginManager.add('macrosPlugin', tinymce.plugins.MacrosPlugin);
54 48  
55   -tinyMCE.init({
56   - mode : "textareas",
57   - editor_selector : "mceEditor",
58   - theme : "advanced",
59   - relative_urls : false,
60   - remove_script_host : false,
61   - document_base_url : <%= environment.top_url.to_json %>,
62   - plugins: myplugins,
63   - theme_advanced_toolbar_location : "top",
64   - theme_advanced_layout_manager: 'SimpleLayout',
65   - theme_advanced_buttons1 : first_line,
66   - theme_advanced_buttons2 : second_line,
67   - theme_advanced_buttons3 : "",
68   - theme_advanced_blockformats :"p,address,pre,h2,h3,h4,h5,h6",
69   - paste_auto_cleanup_on_paste : true,
70   - paste_insert_word_content_callback : "convertWord",
71   - paste_use_dialog: false,
72   - apply_source_formatting : true,
73   - extended_valid_elements : "applet[style|archive|codebase|code|height|width],comment,iframe[src|style|allowtransparency|frameborder|width|height|scrolling],embed[title|src|type|height|width],audio[controls|autoplay],video[controls|autoplay],source[src|type]",
74   - content_css: '/stylesheets/tinymce.css,<%= macro_css_files %>',
75   - language: <%= tinymce_language.inspect %>,
76   - entity_encoding: 'raw',
77   - setup : function(ed) {
78   - <% macros_with_buttons.each do |macro| %>
79   - ed.addButton('<%= macro.identifier %>', {
80   - title: <%= macro_title(macro).to_json %>,
81   - onclick: <%= generate_macro_config_dialog(macro) %>,
82   - image : '<%= macro.configuration[:icon_path]%>'
83   - });
84   - <% end %>
85   - }
  49 +jQuery(document).ready(function () {
  50 + <%= tinymce_init_js :mode => mode %>
86 51 });
87   -
88   -function convertWord(type, content) {
89   - switch (type) {
90   - // Gets executed before the built in logic performes it's cleanups
91   - case "before":
92   - //content = content.toLowerCase(); // Some dummy logic
93   - break;
94   -
95   - // Gets executed after the built in logic performes it's cleanups
96   - case "after":
97   - content = content.replace(/<!--\s*-->/, '');
98   - break;
99   - }
100   -
101   - return content;
102   -}
103   -
104 52 </script>
  53 +
... ...
public/javascripts/application.js
1 1 // Place your application-specific JavaScript functions and classes here
2 2 // This file is automatically included by javascript_include_tag :defaults
3 3  
  4 +// scope for noosfero stuff
  5 +noosfero = {
  6 +};
  7 +
4 8 function noosfero_init() {
5 9 // focus_first_field(); it is moving the page view when de form is down.
6 10 }
... ...
public/javascripts/tinymce.js 0 → 100644
... ... @@ -0,0 +1,22 @@
  1 +
  2 +noosfero.tinymce = {
  3 +
  4 + defaultOptions: {
  5 + theme: "modern",
  6 + relative_urls: false,
  7 + remove_script_host: false,
  8 + extended_valid_elements: "applet[style|archive|codebase|code|height|width],comment,iframe[src|style|allowtransparency|frameborder|width|height|scrolling],embed[title|src|type|height|width],audio[controls|autoplay],video[controls|autoplay],source[src|type]",
  9 + entity_encoding: 'raw',
  10 + setup: function(editor) {
  11 + tinymce_macros_setup(editor)
  12 + },
  13 + },
  14 +
  15 + init: function(_options) {
  16 + var options = jQuery.extend({}, this.defaultOptions, _options)
  17 + // just init. initing this is necessary to add some buttons to the toolbar
  18 + tinymce.init(options)
  19 + // apply to selector
  20 + jQuery('.mceEditor').tinymce(options);
  21 + },
  22 +};
... ...
public/javascripts/tinymce/LICENSE.TXT 0 → 100644
... ... @@ -0,0 +1,504 @@
  1 + GNU LESSER GENERAL PUBLIC LICENSE
  2 + Version 2.1, February 1999
  3 +
  4 + Copyright (C) 1991, 1999 Free Software Foundation, Inc.
  5 + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  6 + Everyone is permitted to copy and distribute verbatim copies
  7 + of this license document, but changing it is not allowed.
  8 +
  9 +[This is the first released version of the Lesser GPL. It also counts
  10 + as the successor of the GNU Library Public License, version 2, hence
  11 + the version number 2.1.]
  12 +
  13 + Preamble
  14 +
  15 + The licenses for most software are designed to take away your
  16 +freedom to share and change it. By contrast, the GNU General Public
  17 +Licenses are intended to guarantee your freedom to share and change
  18 +free software--to make sure the software is free for all its users.
  19 +
  20 + This license, the Lesser General Public License, applies to some
  21 +specially designated software packages--typically libraries--of the
  22 +Free Software Foundation and other authors who decide to use it. You
  23 +can use it too, but we suggest you first think carefully about whether
  24 +this license or the ordinary General Public License is the better
  25 +strategy to use in any particular case, based on the explanations below.
  26 +
  27 + When we speak of free software, we are referring to freedom of use,
  28 +not price. Our General Public Licenses are designed to make sure that
  29 +you have the freedom to distribute copies of free software (and charge
  30 +for this service if you wish); that you receive source code or can get
  31 +it if you want it; that you can change the software and use pieces of
  32 +it in new free programs; and that you are informed that you can do
  33 +these things.
  34 +
  35 + To protect your rights, we need to make restrictions that forbid
  36 +distributors to deny you these rights or to ask you to surrender these
  37 +rights. These restrictions translate to certain responsibilities for
  38 +you if you distribute copies of the library or if you modify it.
  39 +
  40 + For example, if you distribute copies of the library, whether gratis
  41 +or for a fee, you must give the recipients all the rights that we gave
  42 +you. You must make sure that they, too, receive or can get the source
  43 +code. If you link other code with the library, you must provide
  44 +complete object files to the recipients, so that they can relink them
  45 +with the library after making changes to the library and recompiling
  46 +it. And you must show them these terms so they know their rights.
  47 +
  48 + We protect your rights with a two-step method: (1) we copyright the
  49 +library, and (2) we offer you this license, which gives you legal
  50 +permission to copy, distribute and/or modify the library.
  51 +
  52 + To protect each distributor, we want to make it very clear that
  53 +there is no warranty for the free library. Also, if the library is
  54 +modified by someone else and passed on, the recipients should know
  55 +that what they have is not the original version, so that the original
  56 +author's reputation will not be affected by problems that might be
  57 +introduced by others.
  58 +
  59 + Finally, software patents pose a constant threat to the existence of
  60 +any free program. We wish to make sure that a company cannot
  61 +effectively restrict the users of a free program by obtaining a
  62 +restrictive license from a patent holder. Therefore, we insist that
  63 +any patent license obtained for a version of the library must be
  64 +consistent with the full freedom of use specified in this license.
  65 +
  66 + Most GNU software, including some libraries, is covered by the
  67 +ordinary GNU General Public License. This license, the GNU Lesser
  68 +General Public License, applies to certain designated libraries, and
  69 +is quite different from the ordinary General Public License. We use
  70 +this license for certain libraries in order to permit linking those
  71 +libraries into non-free programs.
  72 +
  73 + When a program is linked with a library, whether statically or using
  74 +a shared library, the combination of the two is legally speaking a
  75 +combined work, a derivative of the original library. The ordinary
  76 +General Public License therefore permits such linking only if the
  77 +entire combination fits its criteria of freedom. The Lesser General
  78 +Public License permits more lax criteria for linking other code with
  79 +the library.
  80 +
  81 + We call this license the "Lesser" General Public License because it
  82 +does Less to protect the user's freedom than the ordinary General
  83 +Public License. It also provides other free software developers Less
  84 +of an advantage over competing non-free programs. These disadvantages
  85 +are the reason we use the ordinary General Public License for many
  86 +libraries. However, the Lesser license provides advantages in certain
  87 +special circumstances.
  88 +
  89 + For example, on rare occasions, there may be a special need to
  90 +encourage the widest possible use of a certain library, so that it becomes
  91 +a de-facto standard. To achieve this, non-free programs must be
  92 +allowed to use the library. A more frequent case is that a free
  93 +library does the same job as widely used non-free libraries. In this
  94 +case, there is little to gain by limiting the free library to free
  95 +software only, so we use the Lesser General Public License.
  96 +
  97 + In other cases, permission to use a particular library in non-free
  98 +programs enables a greater number of people to use a large body of
  99 +free software. For example, permission to use the GNU C Library in
  100 +non-free programs enables many more people to use the whole GNU
  101 +operating system, as well as its variant, the GNU/Linux operating
  102 +system.
  103 +
  104 + Although the Lesser General Public License is Less protective of the
  105 +users' freedom, it does ensure that the user of a program that is
  106 +linked with the Library has the freedom and the wherewithal to run
  107 +that program using a modified version of the Library.
  108 +
  109 + The precise terms and conditions for copying, distribution and
  110 +modification follow. Pay close attention to the difference between a
  111 +"work based on the library" and a "work that uses the library". The
  112 +former contains code derived from the library, whereas the latter must
  113 +be combined with the library in order to run.
  114 +
  115 + GNU LESSER GENERAL PUBLIC LICENSE
  116 + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  117 +
  118 + 0. This License Agreement applies to any software library or other
  119 +program which contains a notice placed by the copyright holder or
  120 +other authorized party saying it may be distributed under the terms of
  121 +this Lesser General Public License (also called "this License").
  122 +Each licensee is addressed as "you".
  123 +
  124 + A "library" means a collection of software functions and/or data
  125 +prepared so as to be conveniently linked with application programs
  126 +(which use some of those functions and data) to form executables.
  127 +
  128 + The "Library", below, refers to any such software library or work
  129 +which has been distributed under these terms. A "work based on the
  130 +Library" means either the Library or any derivative work under
  131 +copyright law: that is to say, a work containing the Library or a
  132 +portion of it, either verbatim or with modifications and/or translated
  133 +straightforwardly into another language. (Hereinafter, translation is
  134 +included without limitation in the term "modification".)
  135 +
  136 + "Source code" for a work means the preferred form of the work for
  137 +making modifications to it. For a library, complete source code means
  138 +all the source code for all modules it contains, plus any associated
  139 +interface definition files, plus the scripts used to control compilation
  140 +and installation of the library.
  141 +
  142 + Activities other than copying, distribution and modification are not
  143 +covered by this License; they are outside its scope. The act of
  144 +running a program using the Library is not restricted, and output from
  145 +such a program is covered only if its contents constitute a work based
  146 +on the Library (independent of the use of the Library in a tool for
  147 +writing it). Whether that is true depends on what the Library does
  148 +and what the program that uses the Library does.
  149 +
  150 + 1. You may copy and distribute verbatim copies of the Library's
  151 +complete source code as you receive it, in any medium, provided that
  152 +you conspicuously and appropriately publish on each copy an
  153 +appropriate copyright notice and disclaimer of warranty; keep intact
  154 +all the notices that refer to this License and to the absence of any
  155 +warranty; and distribute a copy of this License along with the
  156 +Library.
  157 +
  158 + You may charge a fee for the physical act of transferring a copy,
  159 +and you may at your option offer warranty protection in exchange for a
  160 +fee.
  161 +
  162 + 2. You may modify your copy or copies of the Library or any portion
  163 +of it, thus forming a work based on the Library, and copy and
  164 +distribute such modifications or work under the terms of Section 1
  165 +above, provided that you also meet all of these conditions:
  166 +
  167 + a) The modified work must itself be a software library.
  168 +
  169 + b) You must cause the files modified to carry prominent notices
  170 + stating that you changed the files and the date of any change.
  171 +
  172 + c) You must cause the whole of the work to be licensed at no
  173 + charge to all third parties under the terms of this License.
  174 +
  175 + d) If a facility in the modified Library refers to a function or a
  176 + table of data to be supplied by an application program that uses
  177 + the facility, other than as an argument passed when the facility
  178 + is invoked, then you must make a good faith effort to ensure that,
  179 + in the event an application does not supply such function or
  180 + table, the facility still operates, and performs whatever part of
  181 + its purpose remains meaningful.
  182 +
  183 + (For example, a function in a library to compute square roots has
  184 + a purpose that is entirely well-defined independent of the
  185 + application. Therefore, Subsection 2d requires that any
  186 + application-supplied function or table used by this function must
  187 + be optional: if the application does not supply it, the square
  188 + root function must still compute square roots.)
  189 +
  190 +These requirements apply to the modified work as a whole. If
  191 +identifiable sections of that work are not derived from the Library,
  192 +and can be reasonably considered independent and separate works in
  193 +themselves, then this License, and its terms, do not apply to those
  194 +sections when you distribute them as separate works. But when you
  195 +distribute the same sections as part of a whole which is a work based
  196 +on the Library, the distribution of the whole must be on the terms of
  197 +this License, whose permissions for other licensees extend to the
  198 +entire whole, and thus to each and every part regardless of who wrote
  199 +it.
  200 +
  201 +Thus, it is not the intent of this section to claim rights or contest
  202 +your rights to work written entirely by you; rather, the intent is to
  203 +exercise the right to control the distribution of derivative or
  204 +collective works based on the Library.
  205 +
  206 +In addition, mere aggregation of another work not based on the Library
  207 +with the Library (or with a work based on the Library) on a volume of
  208 +a storage or distribution medium does not bring the other work under
  209 +the scope of this License.
  210 +
  211 + 3. You may opt to apply the terms of the ordinary GNU General Public
  212 +License instead of this License to a given copy of the Library. To do
  213 +this, you must alter all the notices that refer to this License, so
  214 +that they refer to the ordinary GNU General Public License, version 2,
  215 +instead of to this License. (If a newer version than version 2 of the
  216 +ordinary GNU General Public License has appeared, then you can specify
  217 +that version instead if you wish.) Do not make any other change in
  218 +these notices.
  219 +
  220 + Once this change is made in a given copy, it is irreversible for
  221 +that copy, so the ordinary GNU General Public License applies to all
  222 +subsequent copies and derivative works made from that copy.
  223 +
  224 + This option is useful when you wish to copy part of the code of
  225 +the Library into a program that is not a library.
  226 +
  227 + 4. You may copy and distribute the Library (or a portion or
  228 +derivative of it, under Section 2) in object code or executable form
  229 +under the terms of Sections 1 and 2 above provided that you accompany
  230 +it with the complete corresponding machine-readable source code, which
  231 +must be distributed under the terms of Sections 1 and 2 above on a
  232 +medium customarily used for software interchange.
  233 +
  234 + If distribution of object code is made by offering access to copy
  235 +from a designated place, then offering equivalent access to copy the
  236 +source code from the same place satisfies the requirement to
  237 +distribute the source code, even though third parties are not
  238 +compelled to copy the source along with the object code.
  239 +
  240 + 5. A program that contains no derivative of any portion of the
  241 +Library, but is designed to work with the Library by being compiled or
  242 +linked with it, is called a "work that uses the Library". Such a
  243 +work, in isolation, is not a derivative work of the Library, and
  244 +therefore falls outside the scope of this License.
  245 +
  246 + However, linking a "work that uses the Library" with the Library
  247 +creates an executable that is a derivative of the Library (because it
  248 +contains portions of the Library), rather than a "work that uses the
  249 +library". The executable is therefore covered by this License.
  250 +Section 6 states terms for distribution of such executables.
  251 +
  252 + When a "work that uses the Library" uses material from a header file
  253 +that is part of the Library, the object code for the work may be a
  254 +derivative work of the Library even though the source code is not.
  255 +Whether this is true is especially significant if the work can be
  256 +linked without the Library, or if the work is itself a library. The
  257 +threshold for this to be true is not precisely defined by law.
  258 +
  259 + If such an object file uses only numerical parameters, data
  260 +structure layouts and accessors, and small macros and small inline
  261 +functions (ten lines or less in length), then the use of the object
  262 +file is unrestricted, regardless of whether it is legally a derivative
  263 +work. (Executables containing this object code plus portions of the
  264 +Library will still fall under Section 6.)
  265 +
  266 + Otherwise, if the work is a derivative of the Library, you may
  267 +distribute the object code for the work under the terms of Section 6.
  268 +Any executables containing that work also fall under Section 6,
  269 +whether or not they are linked directly with the Library itself.
  270 +
  271 + 6. As an exception to the Sections above, you may also combine or
  272 +link a "work that uses the Library" with the Library to produce a
  273 +work containing portions of the Library, and distribute that work
  274 +under terms of your choice, provided that the terms permit
  275 +modification of the work for the customer's own use and reverse
  276 +engineering for debugging such modifications.
  277 +
  278 + You must give prominent notice with each copy of the work that the
  279 +Library is used in it and that the Library and its use are covered by
  280 +this License. You must supply a copy of this License. If the work
  281 +during execution displays copyright notices, you must include the
  282 +copyright notice for the Library among them, as well as a reference
  283 +directing the user to the copy of this License. Also, you must do one
  284 +of these things:
  285 +
  286 + a) Accompany the work with the complete corresponding
  287 + machine-readable source code for the Library including whatever
  288 + changes were used in the work (which must be distributed under
  289 + Sections 1 and 2 above); and, if the work is an executable linked
  290 + with the Library, with the complete machine-readable "work that
  291 + uses the Library", as object code and/or source code, so that the
  292 + user can modify the Library and then relink to produce a modified
  293 + executable containing the modified Library. (It is understood
  294 + that the user who changes the contents of definitions files in the
  295 + Library will not necessarily be able to recompile the application
  296 + to use the modified definitions.)
  297 +
  298 + b) Use a suitable shared library mechanism for linking with the
  299 + Library. A suitable mechanism is one that (1) uses at run time a
  300 + copy of the library already present on the user's computer system,
  301 + rather than copying library functions into the executable, and (2)
  302 + will operate properly with a modified version of the library, if
  303 + the user installs one, as long as the modified version is
  304 + interface-compatible with the version that the work was made with.
  305 +
  306 + c) Accompany the work with a written offer, valid for at
  307 + least three years, to give the same user the materials
  308 + specified in Subsection 6a, above, for a charge no more
  309 + than the cost of performing this distribution.
  310 +
  311 + d) If distribution of the work is made by offering access to copy
  312 + from a designated place, offer equivalent access to copy the above
  313 + specified materials from the same place.
  314 +
  315 + e) Verify that the user has already received a copy of these
  316 + materials or that you have already sent this user a copy.
  317 +
  318 + For an executable, the required form of the "work that uses the
  319 +Library" must include any data and utility programs needed for
  320 +reproducing the executable from it. However, as a special exception,
  321 +the materials to be distributed need not include anything that is
  322 +normally distributed (in either source or binary form) with the major
  323 +components (compiler, kernel, and so on) of the operating system on
  324 +which the executable runs, unless that component itself accompanies
  325 +the executable.
  326 +
  327 + It may happen that this requirement contradicts the license
  328 +restrictions of other proprietary libraries that do not normally
  329 +accompany the operating system. Such a contradiction means you cannot
  330 +use both them and the Library together in an executable that you
  331 +distribute.
  332 +
  333 + 7. You may place library facilities that are a work based on the
  334 +Library side-by-side in a single library together with other library
  335 +facilities not covered by this License, and distribute such a combined
  336 +library, provided that the separate distribution of the work based on
  337 +the Library and of the other library facilities is otherwise
  338 +permitted, and provided that you do these two things:
  339 +
  340 + a) Accompany the combined library with a copy of the same work
  341 + based on the Library, uncombined with any other library
  342 + facilities. This must be distributed under the terms of the
  343 + Sections above.
  344 +
  345 + b) Give prominent notice with the combined library of the fact
  346 + that part of it is a work based on the Library, and explaining
  347 + where to find the accompanying uncombined form of the same work.
  348 +
  349 + 8. You may not copy, modify, sublicense, link with, or distribute
  350 +the Library except as expressly provided under this License. Any
  351 +attempt otherwise to copy, modify, sublicense, link with, or
  352 +distribute the Library is void, and will automatically terminate your
  353 +rights under this License. However, parties who have received copies,
  354 +or rights, from you under this License will not have their licenses
  355 +terminated so long as such parties remain in full compliance.
  356 +
  357 + 9. You are not required to accept this License, since you have not
  358 +signed it. However, nothing else grants you permission to modify or
  359 +distribute the Library or its derivative works. These actions are
  360 +prohibited by law if you do not accept this License. Therefore, by
  361 +modifying or distributing the Library (or any work based on the
  362 +Library), you indicate your acceptance of this License to do so, and
  363 +all its terms and conditions for copying, distributing or modifying
  364 +the Library or works based on it.
  365 +
  366 + 10. Each time you redistribute the Library (or any work based on the
  367 +Library), the recipient automatically receives a license from the
  368 +original licensor to copy, distribute, link with or modify the Library
  369 +subject to these terms and conditions. You may not impose any further
  370 +restrictions on the recipients' exercise of the rights granted herein.
  371 +You are not responsible for enforcing compliance by third parties with
  372 +this License.
  373 +
  374 + 11. If, as a consequence of a court judgment or allegation of patent
  375 +infringement or for any other reason (not limited to patent issues),
  376 +conditions are imposed on you (whether by court order, agreement or
  377 +otherwise) that contradict the conditions of this License, they do not
  378 +excuse you from the conditions of this License. If you cannot
  379 +distribute so as to satisfy simultaneously your obligations under this
  380 +License and any other pertinent obligations, then as a consequence you
  381 +may not distribute the Library at all. For example, if a patent
  382 +license would not permit royalty-free redistribution of the Library by
  383 +all those who receive copies directly or indirectly through you, then
  384 +the only way you could satisfy both it and this License would be to
  385 +refrain entirely from distribution of the Library.
  386 +
  387 +If any portion of this section is held invalid or unenforceable under any
  388 +particular circumstance, the balance of the section is intended to apply,
  389 +and the section as a whole is intended to apply in other circumstances.
  390 +
  391 +It is not the purpose of this section to induce you to infringe any
  392 +patents or other property right claims or to contest validity of any
  393 +such claims; this section has the sole purpose of protecting the
  394 +integrity of the free software distribution system which is
  395 +implemented by public license practices. Many people have made
  396 +generous contributions to the wide range of software distributed
  397 +through that system in reliance on consistent application of that
  398 +system; it is up to the author/donor to decide if he or she is willing
  399 +to distribute software through any other system and a licensee cannot
  400 +impose that choice.
  401 +
  402 +This section is intended to make thoroughly clear what is believed to
  403 +be a consequence of the rest of this License.
  404 +
  405 + 12. If the distribution and/or use of the Library is restricted in
  406 +certain countries either by patents or by copyrighted interfaces, the
  407 +original copyright holder who places the Library under this License may add
  408 +an explicit geographical distribution limitation excluding those countries,
  409 +so that distribution is permitted only in or among countries not thus
  410 +excluded. In such case, this License incorporates the limitation as if
  411 +written in the body of this License.
  412 +
  413 + 13. The Free Software Foundation may publish revised and/or new
  414 +versions of the Lesser General Public License from time to time.
  415 +Such new versions will be similar in spirit to the present version,
  416 +but may differ in detail to address new problems or concerns.
  417 +
  418 +Each version is given a distinguishing version number. If the Library
  419 +specifies a version number of this License which applies to it and
  420 +"any later version", you have the option of following the terms and
  421 +conditions either of that version or of any later version published by
  422 +the Free Software Foundation. If the Library does not specify a
  423 +license version number, you may choose any version ever published by
  424 +the Free Software Foundation.
  425 +
  426 + 14. If you wish to incorporate parts of the Library into other free
  427 +programs whose distribution conditions are incompatible with these,
  428 +write to the author to ask for permission. For software which is
  429 +copyrighted by the Free Software Foundation, write to the Free
  430 +Software Foundation; we sometimes make exceptions for this. Our
  431 +decision will be guided by the two goals of preserving the free status
  432 +of all derivatives of our free software and of promoting the sharing
  433 +and reuse of software generally.
  434 +
  435 + NO WARRANTY
  436 +
  437 + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
  438 +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
  439 +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
  440 +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
  441 +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
  442 +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  443 +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
  444 +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
  445 +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  446 +
  447 + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  448 +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
  449 +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
  450 +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
  451 +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
  452 +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
  453 +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
  454 +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
  455 +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  456 +DAMAGES.
  457 +
  458 + END OF TERMS AND CONDITIONS
  459 +
  460 + How to Apply These Terms to Your New Libraries
  461 +
  462 + If you develop a new library, and you want it to be of the greatest
  463 +possible use to the public, we recommend making it free software that
  464 +everyone can redistribute and change. You can do so by permitting
  465 +redistribution under these terms (or, alternatively, under the terms of the
  466 +ordinary General Public License).
  467 +
  468 + To apply these terms, attach the following notices to the library. It is
  469 +safest to attach them to the start of each source file to most effectively
  470 +convey the exclusion of warranty; and each file should have at least the
  471 +"copyright" line and a pointer to where the full notice is found.
  472 +
  473 + <one line to give the library's name and a brief idea of what it does.>
  474 + Copyright (C) <year> <name of author>
  475 +
  476 + This library is free software; you can redistribute it and/or
  477 + modify it under the terms of the GNU Lesser General Public
  478 + License as published by the Free Software Foundation; either
  479 + version 2.1 of the License, or (at your option) any later version.
  480 +
  481 + This library is distributed in the hope that it will be useful,
  482 + but WITHOUT ANY WARRANTY; without even the implied warranty of
  483 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  484 + Lesser General Public License for more details.
  485 +
  486 + You should have received a copy of the GNU Lesser General Public
  487 + License along with this library; if not, write to the Free Software
  488 + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  489 +
  490 +Also add information on how to contact you by electronic and paper mail.
  491 +
  492 +You should also get your employer (if you work as a programmer) or your
  493 +school, if any, to sign a "copyright disclaimer" for the library, if
  494 +necessary. Here is a sample; alter the names:
  495 +
  496 + Yoyodyne, Inc., hereby disclaims all copyright interest in the
  497 + library `Frob' (a library for tweaking knobs) written by James Random Hacker.
  498 +
  499 + <signature of Ty Coon>, 1 April 1990
  500 + Ty Coon, President of Vice
  501 +
  502 +That's all there is to it!
  503 +
  504 +
... ...
public/javascripts/tinymce/changelog.txt
1   -Version 3.4.2 (2011-04-07)
2   - Added new 'paste_text_sticky_default' option to paste plugin, enables you to set the default state for paste as plain text.
3   - Added new autoresize_bottom_margin option to autoresize plugin that enables you to add an extra margin at the bottom. Patch contributed by Andrew Ozz.
4   - Rewritten the fullpage plugin to handle style contents better and have a more normalized behavior across browsers.
5   - Fixed bug where contents inserted with mceInsertContent wasn't parsed using the default dom parser.
6   - Fixed bug where blocks containing a single anchor element would be treated as empty.
7   - Fixed bug where merging of table cells on IE 6, 7 wouldn't look correctly until the contents was refreshed.
8   - Fixed bug where context menu wouldn't work properly on Safari since it was passing out the ctrl key as pressed.
9   - Fixed bug where image border color/style values were overwritten by advimage plugin.
10   - Fixed bug where setting border in advimage plugin would throw error in IE.
11   - Fixed bug where empty anchors list in link settings wasn't hidden.
12   - Fixed bug where xhtmlextras popups were missing localized popup-size parameters.
13   - Fixed bug where the context menu wouldn't select images on WebKit browsers.
14   - Fixed bug where paste plugin wouldn't properly extract the contents on WebKit due to recent changes in browser behavior.
15   - Fixed bug where focus of the editor would get on control contents on IE lost due to a bug in the ColorSplitButton control.
16   - Fixed bug where contextmenu wasn't disabled on noneditable elements.
17   - Fixed bug where getStyle function would trigger error when called on element without style property.
18   - Fixed bug where editor fail to load if Javascript Compressor was used.
19   - Fixed bug where list-style-type=lower-greek would produce errors in IE<8.
20   - Fixed bug where spellchecker plugin would produce errors on IE6-7.
21   - Fixed bug where theme_advanced_containers configuration option causes error.
22   - Fixed bug where the mceReplaceContent command would produce an error since it didn't correctly handle a return value.
23   - Fixed bug where you couldn't enter float point values for em in dialog input fields since it wouldn't be considered a valid size.
24   - Fixed bug in xhtmlxtras plugin where it wasn't possible to remove some attributes in the attributes dialog.
25   -Version 3.4.1 (2011-03-24)
26   - Added significantly improved list handling via the new 'lists' plugin.
27   - Added 'autolink' plugin to enable automatically linking URLs. Similar to the behavior IE has by default.
28   - Added 'theme_advanced_show_current_color' setting to enable the forecolor and backcolor buttons to continuously show the current text color.
29   - Added 'contextmenu_never_use_native' setting to disable the ctrl-right-click showing the native browser context menu behaviour.
30   - Added 'paste_enable_default_filters' setting to enable the default paste filters to be disabled.
31   - Fixed bug where selection locations on undo/redo didn't work correctly on specific contents.
32   - Fixed bug where an exception would be trown on IE when loading TinyMCE inside an iframe.
33   - Fixed bug where some ascii numeric entities wasn't properly decoded.
34   - Fixed bug where some non western language codes wasn't properly decoded/encoded.
35   - Fixed bug where undo levels wasn't created when deleting contents on IE.
36   - Fixed bug where the initial undo levels bookmark wasn't updated correctly.
37   - Fixed bug where search/replace wouldn't be scoped to editor instances on IE8.
38   - Fixed bug where IE9 would produce two br elements after block elements when pasting.
39   - Fixed bug where IE would place the caret at an incorrect position after a paste operation.
40   - Fixed bug where a paste operation using the keyboard would add an extra undo level.
41   - Fixed bug where some attributes/elements wasn't correctly filtered when invalid contents was inserted.
42   - Fixed bug where the table plugin couldn't correctly handle invalid table structures.
43   - Fixed bug where charset and title of the page were handled incorrectly by the fullpage plugin.
44   - Fixed bug where toggle states on some of the list boxes didn't update correctly.
45   - Fixed bug where sub/sub wouldn't work correctly when done as a caret action in Chrome 10.
46   - Fixed bug where the constrain proportions checkbox wouldn't work in the media plugin.
47   - Fixed bug where block elements containing trailing br elements wouldn't treated properly if they where invalid.
48   - Fixed bug where the color picker dialog wouldn't be rendered correctly when using the o2k7 theme.
49   - Fixed bug where setting border=0 using advimage plugin invalid style attribute content was created in Chrome.
50   - Fixed bug with references to non-existing images in css of fullpage plugin.
51   - Fixed bug where item could be unselected in spellchecker's language selector.
52   - Fixed bug where some mispelled words could be not highlighted using spellchecker plugin.
53   - Fixed bug where spellchecking would merge some words on IE.
54   - Fixed bug where spellchecker context menu was not always positioned correctly.
55   - Fixed bug with empty anchors list in advlink popup when Invisible Elements feature was disabled.
56   - Fixed bug where older IE versions wouldn't properly handle some elements if they where placed at the top of editor contents.
57   - Fixed bug where selecting the whole table would enable table tools for cells and rows.
58   - Fixed bug where it wasn't possible to replace selected contents on IE when pasting using the paste plugin.
59   - Fixed bug where setting text color in fullpage plugin doesn't work.
60   - Fixed bug where the state of checkboxes in media plugin wouldn't be set correctly.
61   - Fixed bug where black spade suit character was not included in special character selector.
62   - Fixed bug where setting invalid values for table cell size would throw an error in IE.
63   - Fixed bug where spellchecking would remove whitespace characters from PRE block in IE.
64   - Fixed bug where HR was inserted inside P elements instead of splitting them.
65   - Fixed bug where extra, empty span tags were added when using a format with both selector and inline modes.
66   - Fixed bug where bullet lists weren't always detected correctly.
67   - Fixed bug where deleting some paragraphs on IE would cause an exception.
68   - Fixed bug where the json encoder logic wouldn't properly encode \ characters.
69   - Fixed bug where the onChange event would be fired when the editor was first initialized.
70   - Fixed bug where mceSelected wouldn't be removed properly from output even if it's an internal class.
71   - Fixed issue with table background colors not being transparent. This improves compliance with users browser color preferences.
72   - Fixed issue where styles were not included when using the full page plugin.
73   - Fixed issue where drag/drop operations wasn't properly added to the undo levels.
74   - Fixed issue where colors wasn't correctly applied to elements with underline decoration.
75   - Fixed issue where deleting some paragraphs on IE would cause an exception.
76   -Version 3.4 (2011-03-10)
77   - Added accessibility example with various accessibility options contributed by Ephox.
78   - Fixed bug where attributes wasn't properly handled in the xhtmlxtras plugin.
79   - Fixed bug where the image.htm had some strange td artifacts probably due to auto merging.
80   - Fixed bug where the ToolbarGroup had an missing reference to this in it's destroy method.
81   - Fixed bug with the resizeBy function in the advanced theme where it was scaled by the wrong parent.
82   - Fixed bug where an exception would be thrown by the element if the page was served in xhtml mode.
83   - Fixed bug where mceInsertContent would throw an exception when page was served in xhtml mode.
84   - Fixed bug where you couldn't select a forground/background color when page was served in xhtml mode.
85   - Fixed bug where the editor would scroll to the toolbar when clicked due to a call to focus in ListBox.
86   - Fixed bug where pages with rtl dir wouldn't render split buttons correctly when using the o2k7 theme.
87   - Fixed bug where anchor elements with names wasn't properly collapsed as they where in 3.3.x.
88   - Fixed bug where WebKit wouldn't properly handle image selection if it was done left to right.
89   - Fixed bug where the formatter would align images when the selection range was collapsed.
90   - Fixed bug where the image button would be active when the selection range was collapsed.
91   - Fixed bug where the element_format option wasn't used by the new (X)HTML serializer logic.
92   - Fixed bug where the table cell/row dialogs would produce empty attributes.
93   - Fixed bug where the tfoot wouldn't be added to the top of the table.
94   - Fixed bug where the formatter would merge siblings with white space between them.
95   - Fixed bug where pasting headers and paragraphs would produce an extra paragraph.
96   - Fixed bug where the ColorSplitButton would throw an exception if you clicked out side a color.
97   - Fixed bug where IE9 wouldn't properly produce new paragraphs on enter if the current paragraph had formatting.
98   - Fixed bug where multiple BR elements at end of block elements where removed.
99   - Fixed bug where fullscreen plugin wouldn't correctly display the edit area on IE6 for long pages.
100   - Fixed bug where paste plugin wouldn't properly encode raw entities when pasting in plain text mode.
101   - Fixed bug where the search/replace plugin wouldn't work correctly on IE 9.
102   - Fixed so the drop menus doesn't get an outline border visible when focused, patch contributed by Ephox.
103   - Fixed so the values entered in the color picker are forced to hex values.
104   - Removed dialog workaround for IE 9 beta since the RC is now out and people should upgrade.
105   - Removed obsolete calls in various plugins to the mceBeginUndoLevel command.
106   -Version 3.4b3 (2011-02-10)
107   - Added WAI-ARIA support for the main UI and dialogs this feature was contributed by Ephox.
108   - Added iframe support to media plugin in order to handle the new YouTube HTML5 video formats.
109   - Fixed bug where anchors would wrap the text contents after it due to a bug in the DomParser logic.
110   - Fixed bug where the selected state wouldn't be removed on ListBox controls when a menu item was selected.
111   - Fixed bug where IE could throw an unspecified error exception when the getBookmark logic was executed.
112   - Fixed bug where IE would throw an invalid argument error when focus was applied to an empty editor instance.
113   - Fixed bug where applying inline format wouldn't work if the start cell in the selection was empty.
114   - Fixed bug where auto detection logic for YouTube and Google Video wouldn't work in the new media plugin.
115   - Fixed bug where td elements would get a colspan/rowspan of 1 when created by the table plugin.
116   - Fixed bug where removal/padding of empty elements wasn't handled correctly.
117   - Fixed bug where internal elements would show up in element path.
118   - Fixed bug where internal elements would get serialized as valid output.
119   - Fixed bug where color wasn't correctly applied to anchor elements.
120   - Fixed bug where float option in the style plugin dialog wouldn't be handled correctly on WebKit.
121   - Fixed bug where the tinymce.dom.TreeWalker prev function wouldn't walk the DOM correctly.
122   - Fixed bug where mceInsertContent command could produce empty block elements after the inserted content.
123   - Fixed bug where mceInsertContent command wouldn't apply visual aids on tables and similar elements.
124   - Fixed bug where empty block elements would get double br bogus elements in them.
125   - Fixed bug where the color menu wouldn't apply the color correctly on IE when the viewport was to small.
126   - Fixed bug where right clicking out side the body element of the editor iframe would prevent paste from working on IE.
127   - Fixed bug where the onContextMenu event wouldn't fire correctly on IE if you clicked out side the body element.
128   - Fixed bug where the onContextMenu event wouldn't fire correctly on modern Opera versions that now support it by default.
129   - Fixed bug where legacy content wasn't converted correctly when inserted using mceInsertContent or through the source dialog.
130   - Fixed bug where resizing images or tables wouldn't update the style attribute correctly or leave data-mce prefixed attributes.
131   - Fixed bug where adding links wouldn't work correctly when using TinyMCE jQuery version with jQuery 1.5.
132   - Fixed bug where single quotes inside param elements wasn't treated correctly by the media plugin.
133   - Fixed bug where pasting plain text in WebKit wouldn't work correctly. It will now auto detect the WebKit bug and use plain text mode.
134   - Fixed bug where the DomParser would fail to move out invalid elements within invalid elements on complex contents.
135   - Fixed bug where paste as plain text would not decode html entities properly.
136   - Fixed bug where large paragraphs would cause incorrect scrolling behavior if you would split them using enter.
137   - Fixed bug where the SaxParser wouldn't properly parse some specific short ended elements.
138   - Fixed so mceReplaceContent supports caret position and makes sure that the contents inserted gets validated.
139   - Fixed so unnecessary traling br elements in blocks gets removed on Gecko/WebKit when using mceInsertContent command.
140   - Moved some plugin css contents into the skin content css files to reduce the number of http requests.
141   - Moved some plugin specific images into the theme img directory since they can then be shared.
142   -Version 3.4b2 (2011-01-13)
143   - Added new custom flash player, this player supports mp4 and flv and has skin support.
144   - Fixed so mceInsertContent handles context correctly to enforce valid nesting of elements.
145   - Fixed bug where scrolling would become jerky on IE on some contents.
146   - Fixed bug where paste as plain text would throw exception of missing entities setting.
147   - Fixed bug where anchor nodes where removed by the new serializer engine.
148   - Fixed bug where IE would crash if when backspace where used on some specific contents.
149   - Fixed bug where pasting of plain text in WebKit would result in merging of text lines.
150   - Fixed bug where it wasn't possible to delete images or tables using backspace on IE9.
151   - Fixed bug where urls in styles would generate a JS error due to incorrect scope.
152   - Fixed bug where copy paste from Java applications would produce extra contents in FF on Mac.
153   - Fixed bug where the verify_html option wouldn't allow all elements and attributes.
154   -Version 3.4b1 (2010-12-20)
155   - Added new serialization engine that increases performance and enforces valid output according to the specified schema settings.
156   - Added new HTML parser logic used by the serialization engine and can handle malformed html contents.
157   - Added new valid_children config option, enables more fine grain control of elements can be inside other elements.
158   - Added new entities encoding logic boost performance and will only encode entities based on context i.e. attributes/text nodes.
159   - Added new protect setting that enables users to protect template items from being removed by the serializer logic.
160   - Added new {$caret} marker for the mceInsertContent command. Makes it possible to move the caret to a specific position when inserting contents.
161   - Added new validation of anchor names. Only valid W3C names will be accepted.
162   - Replaced the internal _mce_ prefixed attributes to the more standard HTML5 data-mce- prefix. This will also resolve future browser santiaztion issues.
163   - Fixed bug where the paste plugin wouldn't convert Word lists with more than 9 items to real ol lists. Patch contributed by Mike (yogaboy).
164   - Fixed bug where clicking on a format title would produce errors if the current selection didn't have any formats.
165   - Fixed bug where paste of simple texts wouldn't work correctly in Gecko using the paste plugin since it keeps block formatting.
166   - Fixed bug where confirm dialogs didn't display correctly due to resent IE9 fixes.
167   - Fixed bug where spaces in URLs wouldn't be properly encoded to %20 if the user entered them in the link dialogs. Patch contributed by Ephox.
168   - Fixed bug where the image alignment buttons wouldn't reposition the resize handles on FF due to a browser issue. Patch contributed by Ephox.
169   - Fixed bug where the compareBoundaryPoints method of the IE Range class didn't work correctly. Patch contributed by Ephox.
170   - Fixed bug where selection of elements using double click wouldn't select the clicked element but rather the parent node on FF. Patch contributed by Ephox.
171   - Fixed bug where IE would scroll the user to the current selection causing parent document to scroll as well. Patch contributed by Ephox.
172   - Fixed bug where style compression would incorrectly compress items with different values. It now only compresses if the values are the same. Patch contributed by Ephox.
173   - Fixed bug where FF would add non breaking spaces outside TD elements if formatting was applied to table cells. Patch contributed by Ephox.
174   - Fixed bug where the caret position would be lost on WebKit browsers if you pasted images multiple times. Patch contributed by Ephox.
175   - Fixed bug where non word contents like * would be counted as words in the wordcount pluging. Patch contributed by David Balatero.
176   - Fixed bug where the toggle absolute button in the layer plugin wouldn't remove the existing internal style attribute first.
177   - Fixed bug where the autosave plugin would generate an exception on IE if the user had disabled userdata persistence.
178   - Fixed bug where the paste plugin would remove dashed classes on IE since the regexps didn't include that character.
179   - Fixed bug where applying text color would not add spans inside link elements. This is needed due to CSS style inheritance.
180   - Fixed bug where applying block formats to empty elements wouldn't render correctly on IE.
181   - Fixed bug where the searchreplace plugin would add a f or r character when shortcuts where used on IE while using default dialogs.
182   - Fixed bug where Opera wouldn't load scripts correctly since the onreadystate would fire even though the script wasn't loaded.
183   - Fixed issue where &nbsp; wouldn't be handled correctly in the bbcode plugin if entity_encoding was set to raw.
184   - Fixed issue where contents would flicker since the content css files where asynchronously loaded.
185   - Fixed bug where WebKit wouldn't create links on images with a float style.
186   -Version 3.3.9.3 (2010-12-20)
187   - Fixed issue where WebKit wouldn't correctly apply ins/del in xhtmlxtras plugin.
188   - Fixed bug where paste as plaintext on WebKit wouldn't produce br and p elements correctly.
189   - Fixed bug where the confirm dialog texts would be incorrectly placed due to recent IE 9 workarounds in the window.css.
190   - Fixed bug where applying text color would not add spans inside link elements. This is needed due to CSS style inheritance.
191   -Version 3.3.9.2 (2010-09-29)
192   - Fixed bug where placing the caret in IE 9 beta 1 would not work correctly if you clicked out side the document body element.
193   - Fixed bug where IE 9 beta 1 wouldn't resize the editor correctly since the events didn't fire as previous versions did.
194   - Fixed bug where FF would produce an error message when being rendered inside a hidden div element.
195   - Fixed bug where resize logic could produce a cookie with a width/height less than the size of the container.
196   - Fixed bug where content_css wouldn't populate the styles dropdown correctly.
197   -Version 3.3.9.1 (2010-09-23)
198   - Fixed bug where WebKit browsers wouldn't activate the image button when images where selected.
199   - Fixed bug where Opera Presto 10.60 deletes elements when restoring bookmarks.
200   - Fixed bug where IE9 beta1 doesn't handle regexp replacement values correctly.
201   - Fixed bug where IE9 beta1 didn't render the inline dialogs correctly due to a bug with CSS clip.
202   - Fixed bug where IE9 beta1 would produce error messages on load since they removed the document.recalc method.
203   - Fixed bug where IE9 beta1 would produce <html xmlns=""> since they haven't implemented document.implementation.createDocument correctly.
204   - Fixed bug where IE9 beta1 would searchreplace doesn't work since their native DOM Range doesn't have a find method.
205   - Fixed bug where IE9 beta1 would render the source view incorrectly due to incorrect viewport size measurements.
206   - Fixed bug where IE9 beta1 would crash when running the basic functionality unit tests.
207   - Fixed bug where IE9 beta1 would wrap elements in blocks correctly due to changes to the selection object.
208   - Fixed bug where IE9 beta1 would fail to insert contents since they havn't implemented the createContextualFragment method in their DOM Range.
209   - Fixed bug where IE9 beta1 would fail to handle image selection since they currently doesn't support control selections in their DOM Range.
210   - Fixed bug where IE9 beta1 would fail to load scripts since they fire the onload event before the scripts are parsed and executed.
211   -Version 3.3.9 (2010-09-08)
212   - Fixed bug where inserting table rows into a table with subtable would produce an incorrect column count.
213   - Fixed bug where the selection of cells in a table with subtables could produce invalid selections.
214   - Fixed bug where the table plugin would produce a script error if you tried to move the caret before a first child table.
215   - Fixed bug where the keep_styles feature on IE would move the caret to an incorrect location at the end of list blocks.
216   - Fixed so attributes from legacy elements such as font gets retained when they get converted to spans.
217   - Fixed minor issue where the select boxes wouldn't be set the not set by default in the table dialog.
218   -Version 3.3.8 (2010-06-30)
219   - On IE8+ and FireFox 3.5+, dragging an image now correctly adds an undo
220   - event.
221   - Fixed bug where WebKit would not move the caret to a correct position after a paste operation.
222   - Fixed bug where WebKit would produce a div wrapper element when pasting some contents.
223   - Fixed bug where the visual chars and nonbreaking plugin wouldn't show nbsp elements correctly.
224   - Fixed bug where the format states would be enabled even after the format was removed.
225   - Fixed bug where the delete key would move the caret to an incorrect position.
226   - Fixed bug where it wasn't possible to toggle of the current font size/family/style by clicking the title item.
227   - Fixed bug where the abbr element wouldn't get serialized correctly on IE6.
228   - Fixed so that the examples checks if they are executed from the local file system since that might not work properly.
229   -Version 3.3.7 (2010-06-10)
230   - Fixed bug where context menu would produce an error on IE if you right clicked twice and left clicked once.
231   - Fixed bug where resizing of the window on WebKit browsers in fullscreen mode wouldn't position the statusbar correctly.
232   - Fixed bug where IE would produce an error if the editor was empty and you where undoing to that initial level.
233   - Fixed bug where setting the table background on gecko would produce \" entities inside the url style property.
234   - Fixed bug where the button states wouldn't be updated correctly on IE if you placed the caret inside the new element.
235   - Fixed bug where undo levels wasn't properly added after applying styles or font sizes.
236   - Fixed bug where IE would throw an error if you used "select all" on empty elements and applied formatting to that.
237   - Fixed bug where IE could select one extra character when you did a bookmark call on a caret location.
238   - Fixed bug where IE could produce a script error on delete since it would sometimes produce an invalid DOM.
239   - Fixed bug where IE would return the wrong start element if the whole element was selected.
240   - Fixed bug where formatting states wasn't updated on IE if you pressed enter at the end of a block with formatting.
241   - Fixed bug where submenus for the context menu wasn't removed correctly when the editor was destroyed.
242   - Fixed bug where Gecko could select the wrong element after applying format to multiple elements.
243   - Fixed bug where Gecko would delete parts of the previous element if the selection range was a element selection.
244   - Fixed bug where Gecko would not merge paragraph elements correctly if they contained br elements.
245   - Fixed bug where the cleanup button could produce span artifacts if you pressed it twice in a row.
246   - Fixed bug where the fullpage plugin header/footer would be have it's header reseted to it's initial state on undo.
247   - Fixed bug where an empty paragraph would be collapsed if you performed a cleanup while having the caret inside it.
248   - Fixed a few memory leaks on IE especially with drop menus in listboxes and the spellchecker.
249   - Fixed so formats applied to the current caret gets merged to reduce the number of output elements.
250   - Added the latest version of Sizzle for the CSS selector logic to fix a compatibility issue with prototype.
251   -Version 3.3.6 (2010-05-20)
252   - Fixed bug where a editor.focus call could produce errors on IE in very specific scenarios.
253   - Fixed bug where Gecko would produce an error if you unformatted text inside an empty element.
254   - Fixed bug where IE would produce an error if the caret was placed before a table and you used the align buttons.
255   - Fixed bug where the font size drop down didn't display the a preview correctly.
256   - Fixed bug where the paste plugin wouldn't include all contents some times on WebKit browsers.
257   - Fixed bug where the plain text mode toggle wouldn't work properly on WebKit.
258   - Fixed bug where the editors statusbar would become invisible when you resized the window in fullscreen mode.
259   -Version 3.3.5.1 (2010-05-07)
260   - Fixed a critical bug with the fullscreen plugin. Produced error messages when the state was toggled on/off.
261   -Version 3.3.5 (2010-05-06)
262   - Added new merge_with_parents option to formats, enables the control of removal of elements with similar parents.
263   - Fixed so the default behavior for applying classes isn't a toggle state but the old behavior from before the 3.3 release.
264   - Fixed bug where selecting contents using double click on Gecko would produce errors when using removing format.
265   - Fixed bug where the IE DOM could get messed up when non valid contents was pasted into the editor.
266   - Fixed bug where merging selected table cells using the context menu didn't work as expected.
267   - Fixed bug where some nestled formatting would be applied incorrectly.
268   - Fixed bug with enter in list items when using the force_br_newlines mode on WebKit patch contributed by Ryan Koopmans.
269   - Fixed bug where undo/redo could produce js errors on some specific operations.
270   - Fixed bug where the theme_advanced_font_sizes didn't work as before 3.3 when complex settings where used.
271   - Fixed bug where the table plugin would copy cell/row id attributes when making new rows/cells.
272   -Version 3.3.4 (2010-04-27)
273   - Fixed bug where fullscreen plugin would add two editor instances to EditorManager collection.
274   - Fixed bug where it was difficult to enter text on non western languages such as Japanese on IE.
275   - Fixed bug where removing contents from nodes could result in an exception when using undo/redo.
276   - Fixed bug with selection of images inside layers or other resizable containers on IE.
277   - Fixed so editors isn't initialized on iPhone/iPad devices since they don't have caret support.
278   -Version 3.3.3 (2010-04-19)
279   - Added new script_loaded callback function setting for the jQuery plugin.
280   - Added various fixes and new rpc methods for the spellchecker plugin. Patch contributed by Michael Peters.
281   - Removed some unnecessary inline style information from some of the dialogs.
282   - Fixed some issues with the chaining for the TinyMCE jQuery plugin.
283   - Fixed so any extra arguments passed to patched jQuery functions gets passed through. Patch contributed by Lee Henson.
284   - Fixed so spellchecking/contextmenu can be toggled on/off if the browser has native spellchecker support.
285   - Fixed bug where some texts in the new paste plugin wasn't placed in language pack.
286   - Fixed bug where IE would produce an incorrect information message when cutting.
287   - Fixed bug where removing items using the xhtmlxtras plugin wouldn't work correctly.
288   - Fixed bug where setting table background images would add extra quotes on Gecko.
289   - Fixed bug where shortcut for bold/italic/underline wouldn't work properly on WebKit.
290   - Fixed bug where IE would produce an error message if only contents was an image tag and bold was used.
291   - Fixed bug where the caret would move if alignment was applied to empty block elements.
292   - Fixed bug where some shortcut key commands wouldn't apply formatting correctly.
293   -Version 3.3.2 (2010-03-25)
294   - Fixed bug where it was possible to scale the editor iframe smaller than the editor UI.
295   - Fixed bug where some of the resizing option didn't work with the new live resize.
296   - Fixed bug where the format listbox didn't show nestled formats correctly.
297   - Fixed bug where the native listboxes didn't work correctly.
298   - Fixed bug where font size selection in using the legacyoutput plugin would produce errors.
299   - Fixed so block and blockquote formats remove their matching element regardless of it's attributes.
300   -Version 3.3.1 (2010-03-18)
301   - Added new live resize feature, the editor contents is now visible while resizing.
302   - Fixed bug where some valid_element patterns would produce an unknown property error.
303   - Fixed bug where it wasn't possible to toggle off blockquotes.
304   - Fixed bug where an undo level wasn't produced when applying formatting using the styles dropdown.
305   - Fixed bug where IE 6/7 wouldn't perform caret formatting due to a focus/event bug in IE.
306   - Fixed bug where undo/redo wasn't restoring the previous selection correctly.
307   - Fixed bug where the caret would become invisible if you resized the editor in latest Gecko.
308   - Fixed bug where the class attribute wasn't completely removed in IE 6/7 when the removeClass function was used.
309   - Fixed so the matchNode method of the Formatter class returns the matched format rule.
310   - Fixed so it's possible to apply formatting to both blocks and as inline elements.
311   -Version 3.3 (2010-03-10)
312   - Fixed bug where backspace on a table on IE would produce an empty tbody and some JS exceptions.
313   - Fixed bug where some redundant children wasn't removed properly when applying inline styles to them.
314   - Fixed bug where Chrome would produce incorect dialog sizes if the inlinepopups plugin wasn't used.
315   - Fixed bug where spans with different classes would get merged if they where siblings to each other.
316   - Fixed bug where IE 8 would crash if you used the spellchecker.
317   - Fixed bug where Input Method for non western languages didn't work correctly.
318   - Fixed bug where the UI would render incorrectly in FF 3.6 on Mac due to a bug n their rendering engine.
319   - Fixed bug where WebKit wouldn't scroll down correctly if Shift+Enter was used. Patch contributed by Thomas Andersen.
320   -Version 3.3rc1 (2010-02-23)
321   - Fixed bug with new legacyoutput plugin not working correctly on it's own.
322   - Fixed bug some performance issues with removing text formats.
323   - Fixed bug where TinyMCE specific attributes wasn't removed properly by remove format.
324   - Fixed bug where it wasn't possible to align images within inline elements.
325   - Fixed bug where Ctrl+Delete/Backspace would produce an invalid argument exception on IE.
326   - Fixed bug where the search/replace logic could produce an infinite loop on IE for reverse searches.
327   - Fixed bug where cloning formats in cells didn't work properly on IE.
328   - Fixed bug where IE6 would produce a horizontal scroll bar.
329   - Fixed so remove jQuery method removes the TinyMCE instance as well as the specified textarea.
330   - Fixed so selected rows and cells gets updated using the row/cell properties dialogs.
331   -Version 3.3b2 (2010-02-04)
332   - Fixed bug where sometimes img elements would be removed by split method in DOMUtils.
333   - Fixed bug where merging of span elements could occur on bookmark nodes.
334   - Fixed bug where classes wasn't properly removed when removeformat was used on IE 6.
335   - Fixed bug where multiple calls to an tinyMCE.init with mode set to exact could produce the same unique ID.
336   - Fixed bug with the IE selection implementation when it was feeded an document range.
337   - Fixed bug where block elements formatting wasn't properly removed by removeformat on all browsers.
338   - Fixed bug where selection location was lost if you performed a manual cleanup.
339   - Fixed bug where removeformat wouldn't remove span elements within styled block elements.
340   - Fixed bug where an error would be thrown if you clicked on the separator lines in menus.
341   - Fixed bug with the jQuery plugin adding always adding a querystring value to other resources.
342   - Fixed bug where IE would produce an error message if you had an empty editor instance.
343   - Fixed bug where Shift+Enter didn't produce br elements on WebKit browsers.
344   - Fixed bug where a temporary marker element wasn't removed by the paste plugin.
345   - Fixed bug where inserting a table would produce two undo levels instead of one.
346   -Version 3.3b1 (2010-01-25)
347   - Added new text formatting engine. Fixes a lot of browser quirks and adds new possibilities.
348   - Added new advlist plugin that enables you to set the formats of list elements.
349   - Added new paste plugin logic that enables you to retain style information from Office.
350   - Added new autosave plugin logic that automatically saves contents in local storage.
351   - Added new valid_styles option. Adds the possibility to restrict styles and their order.
352   - Added new theme_advanced_runtime_fontsize option to display the runtime font size in font size select box.
353   - Added new jquery plugin version that handles the gzip compressor amongst other things. Contributed by Speednet.
354   - Added new $ function to tinymce namespace and editor instances for the jQuery build.
355   - Added the possibility to get editors by index as well as name in the tinyMCE.editors collection.
356   - Fixed so the contents inside the editor renders in standards mode by default.
357   - Fixed bug where it wasn't possible to move the caret on short documents running in standards mode on IE.
358   - Fixed bug where the decode method of the DOMUtils class could end up in an endless loop.
359   - Fixed bug where it was possible to bypass the paste cleanup on non IE browsers if you clicked while pasting.
360   - Fixed bug where some attributes wasn't serialized correctly on IE if wildcard attribute patters where used.
361   - Fixed bug where entity decoding was performed on strings that didn't have any valid entities in them.
362   - Fixed bugs with the insertNode method of the IE DOMRange implementation. Patch contributed by Scott McNaught.
363   - Rewrote the getBookmark/moveToBookmark selection logic to boost performance on larger documents.
364   - Rewrote the table plugin to include new cell selection logic and fixed various bugs and issues.
365   - Merged the tinyMCE, tinymce and tinymce.EditorManager into the same instance makes more sense.
366   - Removed browser setting since the browser support for TinyMCE is not far better than it was when that setting was introduced.
367   - Changed the mce_ attribute prefix to the more standard _mce_ prefix. This is similar to browser vendors prefixes.
368   - Optimized performance with named entities on Gecko. Regexp replace was executing very slowly probably due to a Gecko bug.
369   - Optimized performance of the IE specific selection/range implementation.
370   - Removed the safari plugin since we now replaced all text formatting logic to custom code.
371   -Version 3.2.7 (2009-09-22)
372   - Fixed bug where uppercase paragraphs could still produce an invalid DOM tree on IE.
373   - Fixed bug where split command didn't work on WebKit since the node serializer needs a real document to work with.
374   - Fixed bug where it was impossible in Gecko to place the caret before a table if it was the first one.
375   - Fixed bug where linking to urls like ../../ would produce an extra traling slash ../..//.
376   - Fixed bug where the template cdate functionality was using an old 2.x API call. Patch contributed by vectorjohn.
377   - Fixed bug where urls to the same site but different protocol would be converted when relative_urls where set to false. Patch contributed by Ted Rust.
378   - Fixed bug where the paste plugin would remove mceItem prefixed classes.
379   - Fixed bug where the paste plugin would sometimes add items in a reverse order on WebKit.
380   - Fixed bug where the paste buttons would present an error message on Gecko even if you changed user.js. Patch contributed by Todd (teeaykay).
381   - Fixed bug where Opera would crash if you had tables incorrectly placed inside paragraphs.
382   - Fixed bug where styles elements wasn't properly processed if you had bad input HTML.
383   - Fixed bug where style attributes wasn't properly forced into a specific format.
384   - Fixed bug and issues with boolean attributes like checked, nowrap etc.
385   - Fixed bug where input elements could override attributes on form elements.
386   - Fixed bug where script or style elements could get modified by the DOMUtils processHTML method.
387   - Fixed bug where the selected attribute could get lost when force root blocks logic got executed on IE. Patch contributed by Attila Mezei-Horvati.
388   - Fixed bug where getAttribs method didn't handle boolean attributes correctly on IE.
389   - Fixed so the paste from word dialog is presented if you paste content on an IE with to restrictive security settings.
390   - Fixed so the paste_strip_class_attributes option is set to none by default in the paste plugin.
391   - Removed default border=0 on tables for the default value of valid_elements.
392   -Version 3.2.6 (2009-08-19)
393   - Added new wordcount plugin, this will display the number of typed words as you write. Contributed by Andrew Ozz.
394   - Added new getNext and getPrev methods to DOM utils. These will return the first matching sibling.
395   - Fixed bug where it was impossible to place the caret after a table on Gecko. It will now add a paragraph after tables.
396   - Fixed bug where inline dialogs would fail if used in a window opened using a showModalDialog. Patch contributed by Derek Britt.
397   - Fixed bug where IE could sometimes render a unknown runtime error on invalid input HTML.
398   - Fixed bug where some incorrectly placed tables wouldn't be moved outside the paragraphs on IE.
399   - Fixed bug where uppercase script/style element wouldn't be handled correctly and converted to valid lowercase.
400   - Fixed bug where some WebKit versions on Mac OS X would produce issues with hidden select fields.
401   - Fixed bug where the media plugin would fail on WebKit since the node wasn't properly imported to the right document.
402   - Fixed bug where absolute URLs for the TinyMCE script using a base href element would cause loading problems in IE 6/7.
403   - Fixed bug where pasting using the paste plugin wasn't possible on IE with to restrictive security settings.
404   - Fixed bug where pasting of whitespace was impossible using the new custom paste method.
405   - Fixed bug where pasting on some WebKit browsers would not work if you pasted specific contents due to a WebKit bug.
406   - Fixed bug where doctypes with multiple lines would not be parsed correctly by the fullpage plugin. Patch contributed by Colin.
407   - Fixed bug where the autoresize plugin would break the fullscreen functionality.
408   - Fixed bug where tables would be chopped up running on IE using invalid contents and pasting paragraphs into a cell.
409   - Fixed bug where the each method of jQuery build didn't iterate styleSheets. We now use the TinyMCE API one instead.
410   - Fixed bug where auto switching to paragraphs after headers some times failed in Gecko.
411   - Fixed so all editor options gets passed to the Serializer class. Patch contributed by Jasper Mattsson.
412   - Fixed so script/style blocks isn't wrapped in paragraphs as other inline elements.
413   - Fixed so the XHR requests sends the X-Requested-With HTTP header.
414   - Fixed so the data url scheme is handled in the tinymce.util.URI class.
415   - Changed inline documentation to use moxiedoc style comments.
416   - Removed the compat2x plugin people should have upgraded to the 3.x API by now. 3.0 was released more then a year ago.
417   - Re-added Gecko specific message for users who doesn't understand the security concept regarding paste.
418   -Version 3.2.5 (2009-06-29)
419   - Added new jQuery plugin for the jQuery specific package. This enables you to more easily load and use TinyMCE.
420   - Added new autoresize plugin contributed by Peter Dekkers. This plugin will auto resize the editor to the size of the contents.
421   - Fixed so all packages have the same directory structure. Previous releases had a different structure for the production package.
422   - Fixed so the paste from word dialog forces the contents to be processed as word contents even if it's not.
423   - Fixed so the jQuery build adapter build works. It's currently only excluding Sizzle.
424   - Fixed so noscript element contents is retained during the editing process.
425   - Fixed bug where the getBookmark method would need a "simple" string input when the documented way is a boolean.
426   - Fixed bug where invalid contents could break the fix_table_elements logic.
427   - Fixed bug where Sizzle specific attributes would be serialized if the valid_elements was set to *[*].
428   - Fixed bug where IE would produce an error if you specified a relative content_css and opened the paste dialog.
429   - Fixed bug where pasting images on IE would produce broken images if they came from an external site.
430   - Fixed bug where memory was leaked if you add/remove controls dynamically. Some event handlers wasn't removed properly.
431   - Fixed bug where domain relaxing wasn't treated correctly if you added it after the TinyMCE script element.
432   - Fixed bug where the activeEditor wasn't set to null if the last editor instance was removed.
433   - Fixed bug where IE was leaking memory on the onbeforeunload event due to some recently introduced logic. Patch contributed by Options.
434   - Fixed bug where inserting tables in Safari 4 didn't work due to a new WebKit bug where some element names are reserved.
435   - Fixed bug where URLs having a :// value in the query string would make it absolute regardless of URL settings.
436   - Fixed the WebKit specific bug where DOM Ranges would fail if the node wasn't attached to something in a different way.
437   - Removed the auto_resize option and the resizeToContent method from the tinymce.Editor class. Use the new autoresize plugin instead.
438   -Version 3.2.4.1 (2009-05-25)
439   - Fixed bug where Gecko browsers would produce an extra space after for example strong when loaded from sub domains.
440   - Fixed bug where script elements would be removed if they where placed inside a paragraph element.
441   - Fixed bug where IE 8 would produce 1 item remaining when loading CSS files dynamically with an empty cache.
442   - Fixed bug where bound events would be removed from other editor instances if a specific one was removed.
443   - Fixed various bugs and issues with script and style elements inside the editor.
444   - Fixed so all script contents gets wrapped in CDATA sections so that they can be parsed using a XML parser.
445   - Fixed so it's impossible for elements marked as closed to have child nodes rendered in output.
446   -Version 3.2.4 (2009-05-21)
447   - Added new paste_remove_styles/paste_remove_styles_if_webkit option to paste plugin concept contributed by Hadrien Gardeur.
448   - Added new functionality to paste plugin contributed by Scott Eade aka monkeybrain.
449   - Added new paste_block_drop option to the paste plugin this is disabled by default and will block any drag/drop event.
450   - Added new bind/unbind methods to DOMUtils these works like Event.add/Event.remove but is easier to access.
451   - Added new paste_dialog_width/paste_dialog_height options to paste pluign. Enables you to change the dialog sizes.
452   - Fixed bug on IE 8 where it would sometimes produce a "1 item remaining" status message that would never finish.
453   - Fixed bug on Safari 4 beta that would produce DOM Range exceptions on the DOMUtils split method since the browser has a bug.
454   - Fixed bug where the paste plugin could accidentally think that some word sentences was supposed to be list elements.
455   - Fixed bug where paste plugin would produce one extra empty undo level on some browsers.
456   - Fixed bug where spans wasn't produced correctly on new line when the keep_styles option was enabled.
457   - Fixed bug where the caret would be placed at the beginning of contents in IE 8 if you selected colors from the color pickers.
458   - Fixed so the Event class is a normal class instead of a static one. The tinymce.dom.Event is now a global instance of that class.
459   - Fixed so internal events for instances gets removed when the DOMUtils instance is removed.
460   - Fixed so preventDefault and stopPropagation methods can be used on the event object in all browsers.
461   -Version 3.2.3.1 (2009-05-05)
462   - Fixed bug where paragraphs containing form elements such as input or textarea would be removed.
463   - Fixed bug where some IE versions would produce a wrapper function for events attributes.
464   - Fixed bug where table cell contents could be removed if you pressed return/enter at the end of the cell contents.
465   - Fixed bug where the paste plugin would remove a extra character if the selection range was collapsed.
466   - Fixed bug where creating tables with % width wouldn't be handled correctly on WebKit browsers.
467   -Version 3.2.3 (2009-04-23)
468   - Added new paste plugin logic. This new version will autodetect Word contents and clean it up.
469   - Added a optional root element argument to getPos so you can tell it where to stop the calculation.
470   - Added new DOM ready logic to remove the usage of document.write. We now use basically the same method as jQuery.
471   - Fixed bug where WebKit browsers would fail when selecting all contents in the area using Ctrl+A.
472   - Fixed bug where IE would produce paragraphs with empty inline style elements.
473   - Fixed bug where WebKit browsers would fail when inserting tables with a non pixel width.
474   - Fixed bug where block elements could get a redundant br element at the end of the element.
475   - Fixed bug where the tabfocus plugin only worked with a single editor instance on page.
476   - Fixed bug where IE 8 was loosing caret position if the selection was collapsed and a menu was clicked.
477   - Fixed bug with application/xhtml+xml mode where menus wasn't working properly.
478   - Fixed bug where the onstop workaround fix for IE would produce errors in an ASP update panel.
479   - Fixed bug where the submit function override could produce errors if executed in the wrong scope.
480   - Fixed bug where the area element wasn't closed by a short ending.
481   - Fixed various number issues in the style plugins properties dialog. Contributed by datpaulchen.
482   - Fixed issues with size suffix values in the style plugin dialog.
483   - Fixed issue where hasDuplicate variable would leak out to the global space due to a bug in the Sizzle engine.
484   - Fixed issue where the paste event would fire a dialog warning on IE since we extracted the text contents.
485   - Updated Sizzle engine to the latest version, this version fixes a few bugs that was reported.
486   -Version 3.2.2.3 (2009-03-26)
487   - Fixed regression bug with the getPos method, it would return invalid if the view port was to small.
488   -Version 3.2.2.2 (2009-03-25)
489   - Fixed so the DOMUtils getPos method can be used cross documents if needed.
490   - Fixed bug where undo/redo wasn't working correctly in Gecko browsers.
491   -Version 3.2.2.1 (2009-03-19)
492   - Added support for tel: URL prefixes. Even though this doesn't match any official RFC.
493   - Fixed so the select method of the Selection class selects the first best suitable contents.
494   - Fixed bug where the regexps for www. prefixes for link and advlink dialogs would match wwwX.
495   - Fixed bug where the preview dialog would fail to open if the content_css wasn't defined. Patch contributed by David Bildström (ChronoZ).
496   - Fixed bug where editors wasn't converted in application/xhtml+xml mode due to an issue with Sizzle.
497   - Fixed bug where alignment would fail if multiple lines where selected.
498   - Updated Sizzle engine to the latest version, this version fixes a few bugs that was reported.
499   -Version 3.2.2 (2009-03-05)
500   - Added new CSS selector engine. Sizzle the same one that jQuery and other libraries are using.
501   - Added new is and getParents methods to the DOMUtils class. These use the new Sizzle engine to select elements.
502   - Added new removeformat_selector option, enables you to specify a CSS selector pattern of elements to remove when using removeformat.
503   - Fixed so the getParent method can take CSS expressions when selecting it's parents.
504   - Added new ant based build process, includes a new javabased preprocessor and a yuicompressor ant task.
505   - Moved the tab_focus logic into a plugin called tabfocus, so the old tab_focus option has been removed from the core.
506   - Replaced the TinyMCE custom unit testing framework with Qunit and rewrote all tests to match the new logic.
507   - Moved the examples/testcases to a root directory called tests since it now includes slickspeed.
508   - Fixed bug where nbsp wasn't replaced correctly in ForceBlocks.js. Patch contributed by thorn.
509   - Fixed bug where an dom exception would be thrown in Gecko when the theme_advanced_path path was set to false under xml application mode.
510   - Fixed bug where it was impossible to get out of a link at the end of a block element in Gecko.
511   - Fixed bug where the latest WebKit nightly would fail when changing font size and font family.
512   - Fixed bug where the latest WebKit nightly would fail when opening dialogs due to changes to the arguments object.
513   - Fixed bug where paragraphs wasn't added to elements positioned absolute using classes.
514   - Fixed bug where font size values with dot's like 1.4em would produce a class instead of the style value.
515   - Fixed bug where IE 8 would return an incorrect position for elements.
516   - Fixed bug where IE 8 would render colorpicker/filepicker icons incorrectly.
517   - Fixed bug where trailing slashes for directories in URLs would be removed.
518   - Fixed bug where autostart and other boolean values in the media dialog wouldn't be stored/parsed correctly.
519   - Fixed bug where the repaint call for the media plugin wouldn't be executed due to a typo in the source.
520   - Fixed bug where id attribute of object elements wasn't kept intact by the media plugin.
521   - Fixed bug where preview of embeded elements when the media_use_script option was used would fail.
522   - Fixed bug where inlinepopups could be rendered at an incorrect location on IE 6 while dragging.
523   - Fixed bug where the blocker shim could be placed at an incorrect location on IE 6.
524   - Fixed bug where the multiple and size attributes of select elements would produce incorrect values while running in IE.
525   - Fixed bug where IE would loose the caret position is you selected a color from the color drop down.
526   - Fixed bug where remove format wouldn't work on IE since it couldn't remove span elements that had style information.
527   - Fixed bug where Opera was removing links when removing formatting from selected contents.
528   - Fixed bug where paragraphs could be produced inside non positional elements styled with the CSS position value of static.
529   - Fixed bug where removeformat wouldn't work if you selected part of a span in IE.
530   - Fixed bug where media plugin didn't retain the style attribute on embed/object elements.
531   - Fixed bug where auto focus on empty editor instances could produce strange results if you inserted an image into it.
532   - Fixed bug where &nbsp; characters would be removed in FF when inserted with the mceInsertContent or selection.setContent methods.
533   - Fixed bug where warning message of missing paste support wasn't displayed on WebKit browsers.
534   - Fixed bug where anchor links could include other links. The selected range is now unlinked before adding news links to it.
535   - Fixed memory leak when TinyMCE was used with prototype. Patch contributed by James Ots.
536   - Fixed so the non documented fullpage_hide_in_source_view option for the fullpage plugin works again in the 3.x branch.
537   - Fixed so tables doesn't get inserted into paragraphs by default since it's not W3C valid. Can be disabled by using the fix_table_elements option.
538   - Fixed so the source view dialog sets a source_view state to the event object. Enables plugins to intercept the source view mode.
539   - Fixed various validation issues with the html dialogs and pages.
540   - Removed ask mode option since there is way better ways of doing this now. Use the add/remove control methods instead.
541   - Removed logic for compatibility with Safari 2.x, this browser is no longer supported since no one is using it.
542   - Removed the auto domain relaxing feature. If loading scripts cross sub domains it's better to specify the document.domain by hand.
543   -Version 3.2.1.1 (2008-11-27)
544   - Added new theme_advanced_default_background_color/theme_advanced_default_foreground_color options. Patch contributed by David Bildström (ChronoZ).
545   - Fixed font style formatting compatibility issue with Adobe Air.
546   - Fixed so legacy font elements get converted into spans even if cleanup_on_startup isn't enabled.
547   - Fixed bug where pre elements could be incorrectly modified by an IE bug workaround. Patch contributed by hu vime.
548   - Fixed bug where input elements inside inlinepopups wasn't editable in Firefox 2.
549   - Fixed bug where the xhtmlxtras plugin wasn't replacing attribute values correctly.
550   - Fixed bug where menu buttons in skin variants would look strange due to IE 8 fixes.
551   - Fixed bug where WebKit browsers would on backspace take you back to the previous page if the editor was empty.
552   - Fixed bug where DOMUtils decode method wouldn't handle strings larger than 4096kb due to node chunking.
553   - Fixed bug where meta key wasn't handled as ctrl key on Mac OS X for custom keyboard short cuts.
554   - Fixed bug where init event would get fired twice on WebKit on Mac OS X.
555   -Version 3.2.1 (2008-11-04)
556   - Added support for custom icon image for drop menus. Use icon_src to set a custom image directly.
557   - Added new media_strict option to media plugin. Enables you to control if the flash embed is strict or not. Enabled by default.
558   - Fixed so the editors script files gets dynamically loaded without using XHR or eval.
559   - Fixed so the media plugin outputs valid XHTML object elements for Flash movies. Can be disabled with the media_strict option.
560   - Fixed so dynamic loading doesn't require eval calls on non IE browsers for better Air support.
561   - Fixed bug where the editor wasn't treated as empty if the remaining paragraph had attributes.
562   - Fixed bug where id's of elements was removed ones they got wrapped in paragraphs. Patch contributed by ChronoZ.
563   - Fixed bug where WebKit browsers where placing list elements inside paragraph elements.
564   - Fixed bug where inserting images or links would produce absolute urls on WebKit browsers.
565   - Fixed bug where values for checked, readonly, disabled and selected attributes was incorrect on IE.
566   - Fixed bug where positive values for checked, readonly, disabled and selected attributes wasn't forced to valid values.
567   - Fixed bug where selecting the first option in a native select box would produce an undefined error.
568   - Fixed bug where tabindex 32768 could be outputted on IE if element attributes where cloned.
569   - Fixed bug where the media dialogs preview window would display incorrect contents due to duplicate clsid prefixes.
570   - Fixed bug where non pixel or percent heights for textarea elements would produce errors on IE.
571   - Fixed bug where cdata sections in script elements wasn't handled correctly.
572   - Fixed bug where nowrap of table cells would produce a 65535 value output.
573   - Fixed bug where media plugin would produce an error if you selected the first item in the items list.
574   - Fixed bug where media plugin would modify links with the item _value in them.
575   - Fixed so table width/height is better forced if inline_styles is enabled. Patch contributed by daKmoR.
576   - Fixed css for IE 8 such as opacity and other rendering quirks.
577   -Version 3.2.0.2 (2008-10-02)
578   - Fixed bug where the SelectBox and NativeSelectBox wasn't updated correctly if undefined was passed to them.
579   - Fixed bug where the style dropdown wasn't correctly changed back to it's original state when element had no class.
580   - Fixed bug where multiple pending font styles wasn't handled correctly.
581   - Fixed so you can disable all auto css loading for dialogs by setting the popups_css option to false.
582   -Version 3.2.0.1 (2008-09-17)
583   - Fixed bug where font sizes and faces wouldn't be changed correctly when there was a parent with a different style.
584   - Fixed bug where adding fonts to the same selection would produce redundant spans.
585   -Version 3.2 (2008-09-11)
586   - Added new text style support, it will now use span elements internally instead of font elements.
587   - Added new improved support for the theme_advanced_font_sizes option, check the Wiki for details.
588   - Added new keep_style setting that maintains the text style on return/enter on non IE browsers, enabled by default.
589   - Added new onBeforeSetContent/onBeforeGetContent/onSetContent/onGetContent events to the Selection class.
590   - Added new selectByIndex method to ListBox class. This enables you to select list items by an index instead of a value.
591   - Added new possibility to the select method of the ListBox class. This can now have a selector function as it's value argument.
592   - Added new possibility to skip the loading of popups css by setting the feature popup_css to the value false.
593   - Added new possibility to skip translation of popups by setting the translate_i18n feature to false.
594   - Added new element_format option enables you to produce HTML element endings instead of XHTML. But we are still in the XHTML is better camp.
595   - Added missing allowfullscreen and quality options for flash elements, this will now get correctly stored.
596   - Fixed bug where table cell dialog didn't close properly unless the accessibility_warnings option was set to false.
597   - Fixed bug where the modal dialog blocker element for inlinepopups wasn't placed at a correct location if the page had scroll.
598   - Fixed bug where non inline dialogs didn't close correctly if the inlinepopups plugin was used.
599   - Fixed bug where non inline dialogs could make the modal dialog blocker to work incorrectly.
600   - Fixed bug where style select wasn't populated correctly if you pressed the arrow. Patch by Hari Karam Singh.
601   - Fixed bug where toggling the fullscreen mode didn't restore scrollbars on IE when the editor was inside a frame. Patch by Jacob Barrett.
602   - Fixed bug where inserting flash contents using the template plugin didn't work correctly.
603   - Fixed bug where inserting flash contents using the selection.setContent or mceInsertContent command didn't work correctly.
604   - Fixed bug where IE would produce an exception if a comment started with -.
605   - Fixed bug where the blockquote button would wrap lists incorrectly on non IE browsers.
606   - Fixed bug where Opera would display BR elements in the element path.
607   - Fixed bug where xhtmlxtras didn't insert elements correctly on IE.
608   - Fixed bug where the buttons wasn't activated correctly in the xhtmlxtras plugin.
609   - Fixed bug where adding an object as the style attribute for the dom setAttribs method wouldn't work.
610   - Fixed bug where the background color would bleed out to parent container element in Gecko.
611   - Fixed bug where the insert column actions for tables would fail if you did it in a thead or tfoot. Patch contributed by T Andersen (tan73).
612   - Fixed bug where event blocker element wasn't positioned correctly for the inlinepopups plugin.
613   - Fixed bug where pasting from Office 2007 would produce an odd comment in the contents.
614   - Fixed bug where the paste as plain text could remove an extra character. Patch contributed by Speednet.
615   - Fixed bug where some characters where missing for the paste_replace_list option. Patch contributed by Speednet.
616   - Fixed bug where removing non existing editor instances by the mceRemoveControl command would produce an error.
617   - Fixed bug where meta elements with the name description would produce errors in IE.
618   - Fixed bug where color and background colors wouldn't be updated properly.
619   - Fixed bug where the createMenuButton of tinymce.ControlManager didn't implement the last class argument.
620   - Fixed bug where the editor_css option was relative from the TinyMCE installation directory not the current page.
621   - Fixed bug where elements wouldn't be padded if the element contained bogus br elements. For example TD elements.
622   - Fixed bug where parsing of <body > in fullpage plugin would produce an error.
623   - Fixed bug where relative urls with just ./ would become an empty string.
624   - Fixed bug where outdent button would be disabled if inline_styles where set to false.
625   - Fixed bug where replace with an empty search string would produce an error on IE.
626   - Fixed bug where restoring the overflow state of the body in fullscreen plugin running on IE would produce vertical scrollbars.
627   - Fixed bug where pressing return/enter in list items would sometimes move the caret the to top of the content area in FF.
628   - Fixed bug where the style listbox wouldn't be updated correctly if you used the use_native_selects option.
629   - Fixed bug where WebKit browsers would produce a div element when ending list elements using return.
630   - Fixed so translation of popup contents only occurs if it's needed.
631   - Optimized the URI object in regards or converting absolute URIs to relative URIs.
632   -Version 3.1.1 (2008-08-18)
633   - Added new getSize method to DOMUtils it will return the dimensions only of an element.
634   - Added new alert/confirm methods to the tinyMCEPopup class to prevent focus problems and also to shorten method calls.
635   - Added new plugin_preview_inline option to preview plugin to enable/disable native/inline dialogs.
636   - Added new readonly option. If this is set the editor will only display the contents for the user.
637   - Added missing tabindex and accesskey to input elements in the default valid_elements setup.
638   - Updated firebug lite to 1.2, to enable it use the tiny_mce_dev.js?debug=1 on the development package.
639   - Fixed so the preview dialog in the preview plugin uses inline dialogs/popups.
640   - Fixed so CDATA sections remains intact through the serialization process of the DOM tree.
641   - Fixed various issues with the getAttrib command. It will now return more correct values.
642   - Fixed bug where the embed element wasn't properly parsed in the media plugin it now supports 3 formats.
643   - Fixed bug where the noshade attribute was serialized incorrectly on IE.
644   - Fixed bug where editing an existing link element didn't force it relative.
645   - Fixed bug where image link creation fails on Safari if the image is aligned.
646   - Fixed bug where it was possible to scroll the fullscreen mode in Opera 9.50.
647   - Fixed bug where removal of center image alignment would fail. Patch contributed by Andrew Ozz.
648   - Fixed bug where inlinedialogs didn't work properly if the doctype was incorrect in IE.
649   - Fixed bug where cross domain loading didn't work correctly in Opera 9.50.
650   - Fixed bug where breaking huge text blocks with return/enter key would scroll to end of block.
651   - Fixed bug where replace button kept inserting the replacement text even if there is no more matches.
652   - Fixed bug with fullpage plugin where value wasn't set correctly. Patch contributed by Pascal Chantelois.
653   - Fixed bug where the dom utils setAttrib method call could produce an exception if the input was null/false.
654   - Fixed bug where pressing backspace would sometimes remove one extra character in Gecko browsers.
655   - Fixed bug where the native confirm/alert boxes would move focus to parent document if fired in dialogs.
656   - Fixed bug where Opera 9.50 was telling you that the selection is collapsed even when it isn't.
657   - Fixed bug where mceInsertContent would break up existing elements in Opera and Gecko.
658   - Fixed bug where TinyMCE fails to detect some keyboard combos on Mac, contributed by MattyRob.
659   - Fixed bug where replace all didn't move the caret to beginning of text before searching.
660   - Fixed bug where the oninit callback wasn't executed correctly when the strict_loading_mode option was used, thanks goes to Nicholas Oxhoej.
661   - Fixed bug where a access denied exception was thrown if some other script specified document.domain before loading TinyMCE.
662   - Fixed so setting language to empty string will skip language loading if translations are made by some backend.
663   - Fixed so dialog_type is automatically modal if you use the inlinepopups plugin use dialog_type : "window" to re-enable the old behavior.
664   -Version 3.1.0.1 (2008-06-18)
665   - Fixed bug where the Opera line break fix didn't work correctly on Mac OS X and Unix.
666   - Fixed bug where IE was producing the default value the maxlength attribute of input elements.
667   -Version 3.1.0 (2008-06-17)
668   - Fixed bug where the paste as text didn't work correctly it encoded produced paragraphs and br elements.
669   - Fixed bug where embed element in XHTML style didn't work correctly in the media plugin.
670   - Fixed bug where style elements was forced empty in IE. The will now be wrapped in a comment just like script elements.
671   - Fixed bug where some script elements wrapped in CDATA could fail to be serialized correctly.
672   - Fixed bug where FF 3 produced -moz- internal styles in some style attributes.
673   - Fixed bug where query strings and external URLs didn't work correctly in style attributes.
674   - Fixed bug where shape attribute of area elements got serialized as rect regardless of it's initial value in IE 6.
675   - Fixed bug where selection of elements inside layers would fail in IE since focus was moved to the document body.
676   - Fixed bug where pressing enter/return in an editable select box would produce an __mce_add_custom__ class value.
677   - Fixed bug where changing font size of text placed inside a colored text chunk would remove the parent node.
678   - Fixed bug where Opera 9.5 final produced a strange line break behavior due to a workaround for previous Opera versions.
679   - Fixed bug where text/background color would produce a strange focus problem when you tried to click on the body in IE.
680   - Fixed issue where selecting the title of an listbox equals the old 2.x behavior of changing the value to an empty string.
681   - Fixed issue where it was common for the media plugin to break if the _value attribute wasn't added for the param element.
682   - Fixed issue where the wrong parent editor instance might be updated if you use fullscreen mode in an incorrect way.
683   - Fixed issue where Safari was producing a warning about the base element not being closed correctly.
684   - Removed redundant form element name matching from regexp in the DOMUtils class.
685   -Version 3.0.9 (2008-06-02)
686   - Added new contextmenu_offset_x/contextmenu_offset_y options for the contextmenu plugin.
687   - Added cite attribute to the default rule for the blockquote element.
688   - Added support for using arrow keys for selection of items in listboxes.
689   - Added support for using arrow keys for selection of items in dropmenus.
690   - Fixed bug where blockformat change on elements with BR inside them didn't change correctly on Firefox.
691   - Fixed bug where removing table rows inside thead or tfoot would remove the whole table if it was the last one.
692   - Fixed bug where XHR synchronous mode didn't execute the callback handlers synchronously.
693   - Fixed bug where setting border to 0 didn't add border: 0 to the style attribute when using the advimage dialog.
694   - Fixed bug where the selection of images and table cells didn't work correctly when the editor is placed in a frame and running on IE.
695   - Fixed bug where the store/restore of a selection didn't work correctly in non IE browsers.
696   - Fixed bug where only the first element would be invalid for the invalid_elements option.
697   - Fixed bug where paste as plain text didn't encode the characters correctly when they where inserted.
698   - Fixed bug where HTML source window couldn't be maximized on Gecko when the maximizable feature was enabled.
699   - Fixed bug where color selection using the color picker could produce exception in IE.
700   - Fixed bug where font size changes could produce produce extra redundant elements.
701   - Fixed bug where IE could produce unknown runtime error if you replaced a image with another image from a separate frame.
702   - Fixed bug where the domLoaded state for the Event class wasn't set correctly if the editor was loaded dynamically using the gzip compressor.
703   - Fixed bug where handling of the base element for a page would produce incorrect urls. Based on a patch contributed by John LeSueur.
704   - Fixed bug where table constraint alert boxes was presented with an empty value and wasn't the skinned inline ones.
705   - Fixed bug where the onChange event wasn't fired when the form was submitted. It's now also triggered when the save method is called.
706   - Fixed bug where encoding set to xml didn't work as expected. It now encodes the contents into XML entities.
707   - Fixed bug where numrows didn't work correctly for the merge cells dialog of the table plugin.
708   - Fixed bug where the onGetContent event was fired even when the no_events flag was set.
709   - Fixed bug where the preview panels for the advimage and the media plugin could overflow on Safari and FF 3.
710   - Fixed bug where the editing and removal of abbr elements using the xhtmlxtras plugin working correctly on IE.
711   - Fixed bug where save button in the save plugin didn't work correctly on IE.
712   - Fixed bug where dragging layers didn't work as expected since it would snap back to it's original location if you saved.
713   - Fixed bug where the description of the template plugin dialog wasn't updated correctly.
714   - Fixed bug where the values for frame and rules in the table dialogs where swapped.
715   - Fixed bug where the elements like ins, del, cite, acronym and abbr didn't have the default editing style as the old 2.x branch.
716   - Fixed bug where ask mode would lock the focused textarea if you pressed cancel in the confirm dialog on FF 3.
717   - Fixed bug where ask mode would produce contents for empty textareas if you reloaded the page.
718   - Fixed so the onGetContent event gets the full pass through object just like the other events.
719   - Fixed so attributes for block elements remains the same when you change format of a element.
720   -Version 3.0.8 (2008-04-30)
721   - Fixed bug where IE would produce an error if textareas without names where converted.
722   - Fixed bug where editor wasn't forced empty when there was only a single br or empty paragraph left.
723   - Fixed bug where IE would produce an warning message if object elements where produced in the media plugins preview running on https.
724   - Fixed bug where new addVer function didn't handle hash items correctly. Patch contributed by Mirek Burkon.
725   - Fixed bug where font_size_style_values option wasn't applied correctly to fonts inside the editor.
726   - Fixed bug where image selection could be lost if a image was edited using context menu on IE.
727   - Fixed bug where style values wasn't updated properly due to an invalid regexp.
728   - Fixed bug where IE 6 where displaying warning message about insecure items when inserting an image while using https. Patch contributed by Norifumi Sunaoka.
729   - Fixed bug where IE was producing an auto save message if you selected a color from the color split button.
730   - Fixed bug where backspace sometimes would move the caret to the end of the previous block in Gecko.
731   - Fixed bug where the rowlayout manager didn't work as described in the documentation.
732   - Fixed bug where the default options for the fullpage plugin wasn't applied correctly.
733   - Fixed bug where selection would jump one character if you applied a styles to a words in non IE browsers.
734   - Fixed bug where undo levels wasn't added correctly if you went back in undo history and added a new event.
735   - Fixed bug where font size dropdown didn't mark the selected size in IE.
736   - Fixed bug where the size of the editor was determined using clientWidth instead of offsetWidth.
737   - Fixed so the onchange event doesn't fire on the initial undo level, it will also fire when the editor is blurred.
738   - Fixed so the advhr plugin produces XHTML valid output instead of non standard attributes.
739   - Fixed so blockquote gets converted into [quote] in when the bbcode plugin is enabled.
740   - Fixed so theme_advanced_font_sizes can be named for example Font 1=1, Font 2=2 etc.
741   - Fixed so editor_selector/editor_deselector can be regexps. By default only strings are allowed not part regexps like before.
742   - Fixed so that the version suffix is optional. It still requires the build process so you need to export it manually.
743   - Fixed so it's possible to tab to table cells in non Gecko browsers and also produce new rows if you tab at the end of a table. Contributed by Josh Peek.
744   -Version 3.0.7 (2008-04-14)
745   - Added new version suffix to all internal GET requests to make sure that the users cache gets cleared correctly.
746   - Fixed issue with isDirty returning true event if it wasn't dirty on IE due to changes in tables during initialization.
747   - Fixed memory leak in IE where if a page was unloaded before all images on the page was loaded it would leak.
748   - Fixed bug in IE where underline and strikethrough could produce an exception error message.
749   - Fixed bug where inserting paragraphs in totally empty table cells would produce odd effects.
750   - Fixed bug where layer style data wasn't updated correctly due to some performance enhancements with the DOM serializer.
751   - Fixed bug where it would convert the wrong element if there was two elements with the same name and id on the page.
752   - Fixed bug where it was possible to add style information to the body element using the style plugin.
753   - Fixed bug where Gecko would add an extra undo level some times due to the blur event.
754   - Fixed bug where the underline icon would get active if the caret was inside a link element.
755   - Fixed bug where merging th cells not working correctly. Patch contributed by André R.
756   - Fixed bug where forecolorpicker and backcolorpicker buttons where rendered incorrectly when the o2k7 skin was used.
757   - Fixed bug where comment couldn't contain -- since it's invalid markup. It will now at least not break on those invalid comments.
758   - Fixed bug where apos wasn't handled correctly in IE. It will now convert apos to &#39; on IE since that browser doesn't support that entity.
759   - Fixed bug where entities wasn't encoded correctly inside pre elements since they where protected from whitespace removal.
760   - Fixed bug where color split buttons where rendered incorrectly on IE6 when using the non default theme.
761   - Fixed so caret is placed after links ones they are created, to improve usability of the editor.
762   - Fixed so you can select tables by clicking on it's borders in non IE browsers to normalize the behavior.
763   - Fixed so the menus can be toggled by clicking once more on the icon in listboxes, menubuttons and splitbuttons based on code contributed by Josh Peek.
764   - Fixed so buttons can be labeled, currently only works with the default skin, so it's kind of experimental. Patch contributed by Daniel Insley.
765   - Fixed so forecolorpicker and backcolorpicker remembers the last selected color. Patch contributed by Shane Tomlinson.
766   - Fixed so that you can only execute the mceAddEditor command once for the same instance name.
767   - Fixed so command functions added with addCommand can pass though the call to default handles if it returns true.
768   -Version 3.0.6.2 (2008-04-07)
769   - Fixed bug where empty tables couldn't be edited correctly on non IE browsers if they where loaded into the editor.
770   - Fixed bug where it was impossible to resize layers correctly in IE since it thought it was an image.
771   - Fixed bug where an editor instance was stealing focus in IE resulting in a scroll to the editor on page reloads.
772   - Fixed bug where Safari was crashing on Mac OS X if you closed dialogs using the Esc key.
773   -Version 3.0.6.1 (2008-04-04)
774   - Added support for the missing mceAddFrameControl command. The input for this command has changed so consult the Wiki.
775   - Fixed bug where sub menus for the drop menus would leave an empty element behind.
776   - Fixed memory leak in IE if the editor was placed in a frame or iframe.
777   -Version 3.0.6 (2008-04-03)
778   - Added elements to the default value of valid_elements option. It now contains all XHTML strict elements and a few transitional.
779   - Added more accessibility fixes, it's now possible to navigate and close list boxes and split button menus with the keyboard.
780   - Added missing getInfo method to the contextmenu and safari plugin, this caused problems for the Drupal module.
781   - Added new inlinepopups_zindex option to the inlinepopups plugin so that you can configure the default start z-index.
782   - Added new setControlType method to the tinymce.ControlManager class. This method enables you to override the default classes.
783   - Added ability to specific an optional control class to use instead of the default one for the ControlManager methods. Based on concept by Josh Peek.
784   - Fixed bug where attribute rules for the DOM Serializer couldn't contain - or _ characters in their names.
785   - Fixed bug where inlinepopups event blocker and modal dialog blocker elements produced vertical scrollbars.
786   - Fixed bug where there was a rendering issue with quirks mode in Safari moving the resize handle to an incorrect position.
787   - Fixed bug with forecolor/backcolor controls on IE. Sometimes elements positioned relative will generate display errors.
788   - Fixed bug where a p2 was leaking out in the global name space when you selected a color from the forecolor/backcolor controls.
789   - Fixed bug where empty paragraphs didn't work as expected in browsers other than IE.
790   - Fixed bug where the load method of the tinymce.dom.ScriptLoader didn't check if the file was already loaded.
791   - Fixed bug where the load method for the PluginManager and ThemeManager didn't check if a plugin/theme by a specific name was all ready loaded.
792   - Fixed bug where the theme_advanced_link_targets option didn't work correctly with the advanced themes link dialog. Patch contributed by Arnold B.
793   - Fixed bug where the style command would merge classes into empty span elements.
794   - Fixed bug where the style command would remove empty span elements outside the current selection.
795   - Fixed bug where the fix for the Safari backspace bug removed all editor contents if it was filled with empty paragraphs.
796   - Fixed bug where alert and confirm boxes opened by the inlinepopups plugin would produce an exception if domain relaxing was used.
797   - Fixed bug where Safari was adding style attributes to all elements when you paste them into the editor.
798   - Fixed bug where the spellchecker menus was visually incorrect since the space for the non existing icon was still there.
799   - Fixed bug where remove_linebreaks option didn't remove line breaks inside the text contents of a element.
800   - Fixed bug where Safari 3.1 was introducing _mc_tmp into paragraphs due to the new querySelectorAll and a TinyMCE specific workaround.
801   - Fixed bug where getParam method in the Editor class was returning incorrect objects and would mess up the font drop down. Patch contributed by speednet.
802   - Fixed bug where the table dialog would produce an exception in IE when you edited tables since it tried to place focus in a disabled field.
803   - Fixed bug where class attribute on some span elements was removed on cleanup.
804   - Fixed bug where resizing the editor in IE could produce an exception if the editor width/height got to be a negative value.
805   - Fixed bug where wmv files wouldn't play since the src param was used instead of the url param.
806   - Fixed bug where br elements would be added here and there in Gecko. Geckos internal _moz_dirty br elements where serialized as well.
807   - Fixed bug where editing named anchors would produce two anchors instead of one updated one.
808   - Fixed bug where arrow and function keys didn't work when an noneditable element was focused within the editor.
809   - Fixed bug where the dispatcher could produce an exception if the listener list was altered inside an event callback.
810   - Fixed bug where it was impossible to totally empty the editor contents on Safari due to an mistreatment of nbsp as whitespace. Patch contributed by Andrew Ozz.
811   - Fixed bug where TinyMCE would not convert textareas with the same name attribute value. It will now generate an unique id for those textareas.
812   - Fixed bug where backspace/delete key was deleting td elements inside tables while running on Gecko.
813   - Fixed bug where Firefox 3.0b4 and Opera 9.26 where scrolling to the top of document when pressing return/enter.
814   - Fixed bug where the template plugin wasn't just inserting the mceTmpl tagged element.
815   - Fixed bug where the alert method of the default WindowManager implementation didn't translate input language strings like the inlinepopups dialog does.
816   - Fixed bugs with the backspace behavior in Gecko. The caret was placed on incorrect locations in the DOM sometimes.
817   - Fixed so advimage dialog and table dialogs has support for editable select boxes for the class value.
818   - Fixed so the media, pagebreak and spellchecker doesn't load it's default content.css file if the content_css option is set to false.
819   - Fixed so the paste_use_dialog option works again it's enabled by default but can be disabled on IE. Patch contributed by Speednet.
820   - Fixed so that the fullscreen editor is focused when switching fullscreen editing on.
821   - Fixed so it's possible to edit images and links inside tables using the context menu.
822   - Fixed so table dialogs and the advanced image dialog doesn't loose selection in IE if the dialogs where navigated/submitted with the keyboard.
823   - Fixed so the theme_advanced_blockformats options can have named items for example title 1=h1;title 2=h2.
824   - Fixed so it's possible to add a custom editor_css for the simple theme.
825   - Fixed quirks with directionality rtl, patch contributed by Andrew Ozz.
826   - Fixed so the inlinepopups default start zIndex is 300000.
827   - Fixed typo in media plugin Shockware is now replaced with Shockwave.
828   - Fixed psuedo memory leak in IE with the replaceChild method inside the DOMUtils.replace method.
829   - Fixed so memory is released when an editor instance is removed from page.
830   - Optimized the color split button menus so that they use less event handlers.
831   - Removed the util/mclayer.js file since it's no longer used by any of the TinyMCE dialogs and is considered deprecated.
832   -Version 3.0.5 (2008-03-12)
833   - Added new black skin variant to the o2k7 skin contributed by Stefan Moonen.
834   - Added new explode method to the tinymce core class. This does a split but removed whitespace it also defaults to a , delimiter.
835   - Added new detection logic for IE 8 standards mode into the DOMUtils class strMode can now be checked to see if that mode is on/off.
836   - Added new noscale option value for the scale select box for Flash in the media plugin.
837   - Fixed bug where the menu for the ColorSplitButton wasn't removed when the editor was removed.
838   - Fixed bug where font colors couldn't be edited correctly since the style of the element didn't get updated correctly.
839   - Fixed bug where class of elements would get lost when TinyMCE was fixing incorrect HTML markup.
840   - Fixed bug where table editing would produce double height values.
841   - Fixed bug where width style value wouldn't be removed if you switched width unit from cm/em to pixels or percent.
842   - Fixed bug where the search/replace input box wasn't auto focused like the other dialogs.
843   - Fixed bug where the old mceAddControl command would use the fullscreen settings next time it created an instance.
844   - Fixed bug where multiple lines where added to the target cell if you merged multiple empty cells.
845   - Fixed bug where drop down menus would be incorrectly positioned inside scrollable divs.
846   - Fixed bug where the separators of the silver skin variant didn't display correctly in IE 6.
847   - Fixed bug where createStyleSheet seems to load scripts at opposite order in some IE versions.
848   - Fixed bug where directionality could produce odd results for the UI and the dialogs.
849   - Fixed bug where the DOM serializer wouldn't serialize custom namespaced attributes in IE 6 using the *[*] valid elements rule.
850   - Fixed bug where table caption would be inserted after the thead element if you swapped a tr to be inside the thead.
851   - Fixed bug where the youtube detection logic for the media plugin was to generic.
852   - Fixed so the deprecated and undocumented theme_advanced_path_location set to none won't hide the whole statusbar.
853   - Fixed so most input lists can have whitespace in them they are now split using the new tinymce.explode method.
854   - Fixed so the popup_css and popup_css_add URLs are relative to where the current document is located.
855   - Fixed various bugs and quirks with the store/restore selection logic.
856   - Fixed so the editor starts in IE 8 standards mode but still that browser is very very buggy.
857   - Fixed so dialog_type set to modal will block the background and other inline windows and only give access to the front most window.
858   -Version 3.0.4.1 (2008-03-08)
859   - Fixed critical bug where it was impossible to edit images when inlinepopups where used due to lost selection in IE.
860   -Version 3.0.4 (2008-03-07)
861   - Added new option constrain_menus, this enables you to force view port constraints on all menus. Contributed by Shane Tomlinson.
862   - Fixed bug where table background wasn't visible inside the editor due to a default CSS rule overriding the style attribute.
863   - Fixed bug where links would get a null class added if no styles was used in IE.
864   - Fixed bug where spellchecker was auto focusing the editor in IE.
865   - Fixed bug where document.domain would produce invalid argument if the editor was loaded in IE6 over a network UNC path.
866   - Fixed bug where table height attribute was used, this is deprecated in XHTML so it now adds it as an style.
867   - Fixed bug where textareas with style values would produce error in IE.
868   - Fixed so the first element in each dialog is focused by default to enhance keyboard usage.
869   - Fixed so you can add a mceFocus class to elements to make it auto focused.
870   - Fixed so you can close dialogs using the esc key.
871   - Fixed so you can press return/enter to submit the action of each dialog.
872   - Fixed so tabbing inside an inline popups wont focus the resize anchor elements.
873   - Fixed so you can press ok in inline alert messages using the return/enter key.
874   - Fixed so textareas can be set to non px or % sizes for example em, cm, pt etc.
875   - Fixed so non pixel values can be used in width/height properties for tables.
876   - Fixed so the custom context menu can be disabled by holding down ctrl key while clicking.
877   - Fixed so the layout for the o2k7 skin looks better if you don't have separators before and after list boxes.
878   - Fixed so the sub classes get a copy of the super class constructor function to ease up type checking.
879   - Fixed so font sizes for the format block previews are normalized according to http://www.w3.org/TR/CSS21/sample.html (it can be overridden).
880   - Fixed so font sizes for h1-h6 in the default content.css is normalized according to http://www.w3.org/TR/CSS21/sample.html (it can be overridden).
881   -Version 3.0.3 (2008-03-03)
882   - Fixed bug where an error about document.domain would be thrown if TinyMCE was loaded using a different port.
883   - Fixed bug where mode exact would convert textareas without id or name if the elements option was omitted.
884   - Fixed bug where the caret could be placed at an incorrect location when backspace was used in Gecko.
885   - Fixed bug where local file:// URLs where converted into absolute domain URLs.
886   - Fixed bug where an error was produced if a editor was removed inside an editor command.
887   - Fixed bug where force_p_newlines didn't effect the paste plugin correctly.
888   - Fixed bug where the paste plugin was producing an exception on IE if you pasted contents with middots.
889   - Fixed bug where delete key could produce exceptions in Gecko sometimes due to the fix for the table cell bug.
890   - Fixed bug where the layer plugin would produce an visual add class called mceVisualAid this one is now renamed to mceItemVisualAid to mark it internal.
891   - Fixed bug where TinyMCE wouldn't initialize properly if ActiveX controls was disabled in IE.
892   - Fixed bug where tables and other elements that had visual aids on them would produce an extra space after any custom class names.
893   - Fixed bug where search with an empty string would produce some odd "invalid pointer" error in IE.
894   - Fixed bug where elements like menus where placed at incorrect positions in Opera 9.26.
895   - Fixed bug where IE was loosing focus of the editor when you clicked some dropmenu and if it was placed in a frame or iframe.
896   - Fixed bug where focus of images could be lost in IE if you focused the accessibility confirm dialog in the advimage plugin.
897   - Fixed bug where nestled font elements would produce odd output like missing font elements.
898   - Fixed bug where text colors and styles got removed if invalid_elements included the font element.
899   - Fixed bug where text-decoration set to underline or line-through would remove other styles from span elements.
900   - Fixed bug where editor contents like \n\n would be incorrectly handled and processed as real line feeds.
901   - Fixed bug where incorrectly encoded urls with ampersands in them would be decoded incorrectly.
902   - Optimized the DOMUtils decode method to be a lot faster if the string doesn't have any entities to decode.
903   -Version 3.0.2.1 (2008-02-26)
904   - Fixed alert/confirm dialogs so they display correctly.
905   -Version 3.0.2 (2008-02-26)
906   - Added new body_id option that enables you to specify the id of the body inside the editor iframe based on ideas by David Bildström (ChronoZ).
907   - Added new body_class option that enables you to set the class for the body of the editor iframe based on ideas by David Bildström (ChronoZ).
908   - Added new CSS class to the default content.css files mceForceColors that forces white background and black text can be used with the body_class option.
909   - Added new type parameter to the Editor.getParam function to reduce redundant logic for parsing hash tables.
910   - Added new isDone method to the ScriptLoaded class, this enables you to check if a script has been loaded or not.
911   - Added new resizeTo and resizeBy methods for the advanced theme. Can be called using tinyMCE.activeEditor.theme.resizeTo(w, h);
912   - Added new skin_variant option this can be used to extend existing skins with slight modifications like color.
913   - Added new variant of the o2k7 skin called "silver" based on a contribution made by Stefan Moonen.
914   - Fixed bug where the template plugin might produce errors if the template_mdate_classes wasn't configured.
915   - Fixed bug where the media plugin didn't convert the URLs for movies once they where inserted.
916   - Fixed bug where the style field for the advlink dialog didn't work correctly if you edited an existing link.
917   - Fixed bug where alignment of toolbars would fail in editor was uses in a quirks mode on IE, fix contributed by Peter Wood & Art Lawry.
918   - Fixed bug where initialization of multiple editors at the same time using the mceAddControl method would produce errors.
919   - Fixed bug where initialization of editors using mceAddControl command or new tinymce.Editor calls would fail during page load.
920   - Fixed bug where the check for domain relaxing could fail if the document.domain property was changed by another script.
921   - Fixed bug where textareas couldn't be named description or any other name that matches the meta elements in IE and Opera.
922   - Fixed bug where the element path would fail sometimes in IE due to "unknown runtime error" on innerHTML.
923   - Fixed bug where Safari would crash if you was hiding the editor before serializing the contents.
924   - Fixed bug where the editor wasn't scaled propertly in fullscreen mode using the old fullscreen_new_window option.
925   - Fixed bug where render method didn't load language packs in IE and Opera if you rendered an editor during page load.
926   - Fixed bug where resizing the browser window in fullscreen didn't resize the editor.
927   - Fixed bug where the blockquote command didn't move the caret inside the new empty blockquote if you used it on an empty document.
928   - Fixed bug where auto in a style width/height for the textarea would produce an editor with the size value of 100. Fix contributed by Shane Tomlinson.
929   - Fixed bug where restoration of selection at the beginning of an element could fail in Gecko.
930   - Fixed bug where caret restoration after a cleanup could place the it at an incorrect location.
931   - Fixed bug where delete key inside td elements would delete the cell in Gecko.
932   - Fixed so the blockquote button toggles individual lines. This behavior is a bit more like the old indentation behavior in the 2.x branch.
933   - Fixed so the dialog language packs only gets loaded the first time you open a dialog.
934   - Fixed so all classes in the whole UI is prefixed with "mce" to avoid collisions, use the skin converter to update your existing skins.
935   - Fixed so all classes in the inlinepopups logic is prefixed with "mce" to avoid collisions, use the skin converter to update your existing skins.
936   - Fixed so that the window in fullscreen mode can be resized when fullscreen_new_window option is enabled.
937   - Fixed so blockquote elements are formatted in the source output with an linefeed before and after it.
938   - Optimized the editor initialization by reducing the number of calls to getBookmark/moveToBookmark.
939   -Version 3.0.1 (2008-02-21)
940   - Added spellchecker plugin into the main package, but without any backend can be specified with the spellchecker_rpc_url option.
941   - Added src attribute for script elements to the default valid_elements option value.
942   - Added extra parameter to the class_filter callback it can now also filter out classes based on the whole CSS rule.
943   - Added support for domain relaxing, TinyMCE can now be loaded from an remote domain as long as they are on the same root domain.
944   - Added support for custom elements the new custom_elements option enables you to add non HTML elements to the editor.
945   - Added support for the W3C Selectors API that was added to latest nightly build of WebKit.
946   - Fixed bug where some object param element wasn't stored correctly using the media plugin.
947   - Fixed bug where Opera was scrolling to top of page is drop menus on list boxes where displayed.
948   - Fixed bug where IE6 was crashing if a format block was used on a container with anchor elements.
949   - Fixed bug where spans with font sizes wasn't handled correctly when editor was loading contents.
950   - Fixed bug where mode exact couldn't convert editors with name only. Id is no longer required but recommended.
951   - Fixed bug where the mceInsertRawHTML command produced an extra undo level.
952   - Fixed bug where the specific_textareas mode didn't work correctly this is the same thing as textareas now.
953   - Fixed bug where the values of input elements in the HTML page of dialogs pages where changed in IE.
954   - Fixed bug where fullscreen and fullpage plugins didn't work well together.
955   - Fixed bug where embed elements wasn't handled properly in the media plugin.
956   - Fixed bug where style information on span elements gets munged when fonts are converted to spans.
957   - Fixed bug where some entities in element attributes where encoded incorrectly in the latest WebKit build.
958   - Fixed bug where initialization would fail in IE if there where two input elements with the name submit in the form.
959   - Fixed bug where fullscreen mode didn't work correctly in IE when the fullscreen_new_window option was used.
960   - Fixed bug where invalid contents like an ul inside a p element would produce odd results in IE.
961   - Fixed bug where Opera 9.2x was placing the drop menus at incorrect locations if the editor was placed in a table.
962   - Fixed bug where Opera was producing odd results if enter/return was pressed while having forced_root_blocks disabled.
963   - Fixed bug where layer plugin was stealing focus in IE on initialization.
964   - Fixed bug where body attributes wasn't set properly in the fullpage plugin, fix contributed by Hiroaki Kawai.
965   - Fixed bug where insert image and insert link dialogs where producing an extra level in the undo history.
966   - Fixed bug where Gecko would produce an error if empty elements like <div></div> where inserted using mceInsertContent.
967   - Fixed bug where center alignment of images produced odd results inside table cells.
968   - Fixed bug where center alignment of images couldn't be toggled correctly.
969   - Fixed bug where alignment of images inside tables would produce double float style items in IE if the fix_table_elements option was enabled.
970   - Fixed bug where a variable called 'v' was polluting the global namespace. Objects tinymce and tinyMCE are the only ones allowed to be global.
971   - Fixed bug where insert table from context menu couldn't insert new tables inside existing tables.
972   - Fixed bug where Safari wouldn't produce br elements on enter when the force_br_newlines option was enabled.
973   - Fixed bug where switching cell type in table cell dialog would produce odd attributes in IE.
974   - Fixed bug where Gecko was outputting internal attributes if valid_elements where set to "*[*]".
975   - Fixed bug where the style plugin would produce non hex colors inside the dialog when running on Gecko.
976   - Fixed bug where an empty src value for insert image would remove the currently selected image if it wasn't and image element.
977   - Fixed bug where hidden input elements would break the logic for the tab_focus option.
978   - Fixed bug where save button wasn't working correctly in fullscreen mode.
979   - Fixed bug where the editor was forced to be placed in a form element if the save_onsavecallback option was used.
980   - Fixed bug where upper case param attributes wasn't parsed correctly in the media plugin.
981   - Fixed bug where render method of tinymce.Editor class would produce an exception if the strict_loading_mode option was omitted.
982   - Fixed bug where nodeChanged event could be fired while the editor was loading and there for produce an exception in FF.
983   - Fixed bug where no undo levels where added if the user created new table rows using the tab key on Gecko.
984   - Fixed bug where tables would be broken if you selected a different block format for contents withing an table cell.
985   - Fixed bug where the render method of the tinymce.Editor class didn't setup the tinymce.EditorManager.settings object correctly.
986   - Fixed bug where the advanced image dialog would go to the first tab if the alternative image was changed using the file browser link.
987   - Fixed bug where the forced_root_block option would produce BR elements inside empty blocks if the block wasn't a paragraph.
988   - Fixed bug where the forced_root_block doesn't work correctly on IE if the specified element was something else than paragraphs.
989   - Fixed bug where selection of images would get lost if user selected something from the context menu in IE.
990   - Fixed bug where the context menu plugin would pollute the global namespace with two variables p1 and p2.
991   - Fixed compatibility issue with Mootools, it is destroying document.getElementById on unload in IE. (Mantra: You don't own the internal objects).
992   - Fixed bugs where dialogs/tabs and other UI elements where rendered incorrectly in Firefox 3.
993   - Fixed so the auto CSS class importer is compatible with 2.x.
994   - Fixed so the editor UI and inlinedialogs works correctly with the YUI CSS reset package.
995   - Fixed so header and footer elements are forced to lower case when the fullpage plugin is used.
996   - Fixed so load prefixes "-" for plugins and themes isn't required if the plugin/theme was loaded by the ThemeManager/PluginManager.
997   - Fixed so the JSONRequest uses application/json content type to make Ruby on rails happy.
998   - Fixed so the CSS rule is more exact for the body in the default content.css files. Body is now defined as "body.mceContentBody" instead of just "body".
999   - Fixed so the tiny_mce_dev.js uses XHR instead of document.write to load scripts to resolve an issue with Opera 9.50.
1000   - Fixed so language pack loading can be disabled by setting the language option to false. Can be useful for systems with their own language pack management.
1001   -Version 3.0 (2008-01-30)
1002   - Added map and area elements to the default valid_elements list and also some indentation rules.
1003   - Fixed bug where empty paragraphs wasn't padded when loading contents.
1004   - Fixed bug where the RowLayout manager didn't work at all.
1005   - Fixed bug where style attribute data would get messed up in advimage dialog.
1006   - Fixed bug where the table dialogs class select wasn't updated correctly.
1007   - Fixed bug where elements would get extra whitespace around on insert when body was present in valid_elements.
1008   - Fixed bug where coords attribute of the area element wasn't handled properly in IE.
1009   - Fixed bug where Safari didn't produce BR elements on shift+return.
1010   - Fixed bug where force blocks would cast odd invalid attribute exception in IE.
1011   - Fixed bug where media plugin would produce extra whitespace before and after objects.
1012   - Fixed bug where cleanup_callback could break the contents of the editor. But use the new event system instead of this option.
1013   - Fixed bug where the tab_focus option didn't work between editor instanced. You can now tab between editors.
1014   - Fixed bug where the load function of the ScriptLoader class didn't load single files without the load que as it was supposed to.
1015   - Fixed bug where the execcommand_callback parameter order was incorrect. Recommendation use the new addCommand method.
1016   - Fixed bug where range.select calls sometimes failed on some IE versions.
1017   - Fixed bug where Safari was scrolling to top of document when enter/returned was pressed.
1018   - Fixed bug where fullscreen_new_window option didn't work correctly.
1019   - Fixed bug where the nonbreaking plugin inserted an space instead of an non breaking space the first time.
1020   - Fixed bug where the visualization of non breaking spaces where visual in element path.
1021   - Fixed so the focus is restored to the editor after inserting an custom character.
1022   - Fixed so the isNotDirty state is set to false if a new undo level is added.
1023   - Fixed so pointless style information for borders gets removed in IE.
1024   - Fixed so the resize button has a se-resize cursor css value.
1025   -Version 3.0rc2 (2008-01-18)
1026   - Added new fix_nesting option to fix bug #1867292, this is disabled by default.
1027   - Added new indentation option enables you to specify how much each indent/outdent call will add/remove.
1028   - Added easier support for enabling/disabling icon columns on drop menues.
1029   - Added new menu button control class. This control is very similar to the splitbutton but without any onclick action.
1030   - Added support for previous tab focus (shift+tab). The tab_focus setting now takes two items next and previous element.
1031   - Fixed bug where iframes inside the editor got removed in Firefox on initial load.
1032   - Fixed bug where the CSS for abbr elements wasn't applied correctly in IE.
1033   - Fixed bug where mceAddControl on element inside a hidden container produced errors.
1034   - Fixed bug where closed anchors like <a /> produced strange results.
1035   - Fixed bug where caret would jump to the top of the editor if enter was pressed a the end of a list.
1036   - Fixed bug where remove editor failed if the editor wasn't properly initialized.
1037   - Fixed bug where render call on for a non existing element produced exception.
1038   - Fixed bug where parent window was hidden when the color picker was used in a non inlinepopups setup.
1039   - Fixed bug where onchange event wasn't fired correctly on IE when color picker was used in dialogs.
1040   - Fixed bug where save plugin could not save contents if the converted element wasn't an textarea.
1041   - Fixed bug where events might be fired even after an editor instance was removed such as blur events.
1042   - Fixed bug where an exception about undefined undo levels could be throwed sometimes.
1043   - Fixed bug where the plugin_preview_pageurl option didn't work.
1044   - Fixed bug where adding/removing an editor instance very fast could produce problems.
1045   - Fixed bug where the link button was highlighted when an anchor element was selected.
1046   - Fixed bug where the selected contents where removed if a new anchor element was added.
1047   - Fixed bug where splitbuttons where rendered one pixel down in the default theme.
1048   - Fixed bug where some buttons where placed at incorrect positions in the o2k7 theme.
1049   - Fixed bug that made it impossible to visually disable a custom button that used an image instead of CSS sprites.
1050   - Fixed bug where it wasn't possible to press delete/backspace if the editor was added+removed and re-added due to a FF bug.
1051   - Fixed bug where an entities option with only 38,amp,60,lt,62,gt would fail in IE.
1052   - Fixed bug where innerHTML sometimes generated unknown runtime error on IE.
1053   - Fixed bug where content_css files wasn't loaded in the template preview iframe.
1054   - Fixed bug where scroll position was incorrect when toggling fullscreen mode.
1055   - Fixed bug where restoration of overflow didn't work correctly when disabling fullscreen mode in Opera.
1056   - Fixed bug where drop menus where places at incorrect locations if the editor was placed in a scrollable container element.
1057   - Fixed bug where hideMenu didn't hide sub menus correctly. It will now hide all menus recursively.
1058   - Fixed so theme_advanced_path_location can be used in init options for compatibility reasons.
1059   - Fixed so the drop menu colors matches the rest of o2k7 theme.
1060   - Fixed so the preview example.html file is updated to the new 3.x API.
1061   - Fixed so the margins are the same by default inside the editable area between IE and other browsers.
1062   - Fixed so editor contents gets stored before it the onSubmit event is fired.
1063   -Version 3.0rc1 (2008-01-08)
1064   - Added new classes for toolbar rows in advanced theme mceToolbarRow1..n enabled you to change appearance of individual rows.
1065   - Added auto detection for the strict_loading_mode option when running in application/xhtml+xml mode on Gecko.
1066   - Optimized the HTML serializer by bundling some post process methods together.
1067   - Fixed so that the toolbars have unique IDs, enables you to alter the toolbars using the ControlManager and the DOM.
1068   - Fixed bug where delta values for dialog sizes in language packs didn't work correctly due to missing string to number casting.
1069   - Fixed bug where paragraph generation logic didn't handle hr or table elements correctly if they where the only element.
1070   - Fixed bug where some elements got extra linebreaks added after or before it in HTML output.
1071   - Fixed bug where it was hard to modify existing style data on table rows and table cells.
1072   - Fixed bug where the dom.getRect method didn't handle non pixel values correctly.
1073   - Fixed bug where strikethrough and underline couldn't be toggled on existing span elements.
1074   - Fixed bug where the postprocessor searched for nsbp instead of nbsp entities.
1075   - Fixed bug where it was impossible to edit links that had child elements within them.
1076   - Fixed bug where it was possible to click on the parent item of a submenu.
1077   - Fixed bug where mouseover/mouseout images couldn't be removed in advimage dialog.
1078   - Fixed bug where drop menus didn't work when running in application/xhtml+xml mode.
1079   - Fixed bug where Opera added doctype to output in application/xhtml+xml mode.
1080   - Fixed bug where some DOM methods didn't work correctly in the application/xhtml+xml mode.
1081   - Fixed bug where the inlinepopups didn't work correctly in the application/xhtml+xml mode.
1082   - Fixed bug where the ColorSplitButton didn't display correctly in the application/xhtml+xml mode.
1083   - Fixed bug where the UI layout was incorrect on Gecko browsers when running in application/xhtml+xml mode.
1084   - Fixed bug where the word paste plugin produced exception while running in application/xhtml+xml mode.
1085   - Fixed bug where there wasn't any hidden input element generated for divs while running in application/xhtml+xml mode.
1086   - Fixed bug where indentation of script/style/pre elements where incorrect.
1087   - Fixed bug where script element contents was removed in IE.
1088   - Fixed bug where script element contents got entity encoded.
1089   - Fixed bug where you couldn't edit existing element styles using the styles plugin.
1090   - Fixed bug where styles wasn't updated properly sometimes due to an performance enhancement.
1091   - Fixed bug where font sizes couldn't be changed using the style plugin.
1092   - Fixed bug where an error was produced in Gecko browsers when switching back from fullscreen mode.
1093   - Fixed bug where Opera was producing br elements after elements like h3.
1094   - Fixed bug where TinyMCE couldn't be loaded on a page using - characters in it's URL.
1095   - Fixed bug where the editor container element was forced to have a specific name.
1096   - Fixed bug with force_br_newlines option on Firefox, even though it should never be used (Read FAQ).
1097   - Fixed bug where onclick event had an return true; prefix added when creating an popup.
1098   - Fixed bug where the theme_advanced_statusbar_location option couldn't handle the value "none".
1099   - Fixed issue with URLs with multiple at characters for example an Zope URI.
1100   - Fixed so simple and advanced themes doesn't collide.
1101   - Fixed so a elements gets removed when the href field is left empty, the href attribute is required in a link after all.
1102   - Fixed so img elements gets removed when the src field is left empty, the src attribute is required for all images after all.
1103   - Removed the indent and encode methods from the tinymce.dom.Serializer class due to performance enhancement and reduction of the API size.
1104   -Version 3.0b3 (2007-12-14)
1105   - Added new getElement method to Editor class, returns the element that was replaced with the editor instance.
1106   - Added new unavailable prefix for disabled controls for accessibility reasons.
1107   - Fixed bug where regexp patterns couldn't be used for the editor_selector/editor_deselector options.
1108   - Fixed bug where the DOM wasn't properly initialized before the onInit event was executed in popups.
1109   - Fixed bug where font sizes where reduced by font size actions on previous spans in Safari.
1110   - Fixed bug where HR elements got places at the wrong location in IE.
1111   - Fixed bug where align/justify didn't work correctly on multiple paragraphs.
1112   - Fixed bug with missing translation for cell scope settings.
1113   - Fixed bug where selection/caret position was lost on some table actions.
1114   - Fixed bug where editor instances couldn't be added to hidden div elements.
1115   - Fixed bug where list elements in Safari would get an odd ID attribute.
1116   - Fixed bug where IE would return <html/> when the editor was completely empty.
1117   - Fixed bug where accessibility title attribute for access keys wasn't setup properly.
1118   - Fixed bug where forecolorpicker and backcolorpicker control names wasn't working.
1119   - Fixed bug where inserting template content didn't work in Safari due to selection exception.
1120   - Fixed bug where absolute URLs to remote hosts couldn't be used for background images.
1121   - Fixed bug where mysterious span elements where produced in Safari when injecting HTML contents.
1122   - Fixed bug where the media plugin didn't work correctly on the latest Opera 9.24.
1123   - Fixed bug where indentation of HTML output wasn't applied to all block elements.
1124   - Fixed bug where Safari was production DOM exception if you pressed enter in an empty editor.
1125   - Fixed bug where media plugin didn't parse script tags correctly patch contributed by Mathieu Campagna.
1126   - Fixed bug where the drop menus of list boxes like blockformat could produce scrolling of the page.
1127   - Fixed bug where the drop menus where placed at an incorrect location if TinyMCE was placed in a scrollable div.
1128   - Fixed bug where submit buttons couldn't be named submit, it's not recommended to name submit buttons submit anyway.
1129   - Fixed bug where the stylelistbox produced an exception if there was only one class in the list box.
1130   - Fixed bug where the stylelistbox wasn't updated correctly when the current class was removed.
1131   - Fixed bug where the formatblock command sometimes removed the body element.
1132   - Fixed bug where fullscreen switching in IE sometimes produced an exception when the spellchecker plugin was enabled.
1133   - Fixed issue where FF produced an empty paragraph when the editor was completely empty.
1134   - Fixed issue with size of image dialog in the advanced theme.
1135   - Fixed issues with the bbcode plugin it now also handles spans and the [font] rule.
1136   - Fixed so the style compression feature is a bit smarter to resolve issues with Opera.
1137   - Reintroduced the remove_linebreaks option, this is enabled by default.
1138   -Version 3.0b2 (2007-11-29)
1139   - Added type and compact attributes to the default valid_elements list for the ul and ol elements.
1140   - Added missing accessibility support to native list boxes in both the toolbar and dialogs.
1141   - Added missing access key for the element path for accessibility reasons.
1142   - Fixed support for loading themes from external URLs.
1143   - Fixed bug where setOuterHTML didn't work correctly when multiple elements where passed to it.
1144   - Fixed bug with visualchars plugin was moving elements around in the DOM.
1145   - Fixed bug with DIV elements that got converted into editors on IE.
1146   - Fixed bug with paste plugin using the old event API.
1147   - Fixed bug where the spellchecker was removing the word when it was ignored.
1148   - Fixed bug where fullscreen wasn't working properly.
1149   - Fixed bug where the base href element and attribute was ignored.
1150   - Fixed bug where redo function didn't work in IE.
1151   - Fixed bug where content_css didn't work as previous 2.x branch.
1152   - Fixed bug where preview dialog was throwing errors if the content_css wasn't defined.
1153   - Fixed bug where the theme_advanced_path option didn't work like the 2.x branch.
1154   - Fixed bug where the theme_advanced_statusbar_location was called theme_advanced_status_location.
1155   - Fixed bug where the strict_loading_mode option didn't work if you created editors dynamically without using the EditorManager.
1156   - Fixed bug where some language values wasn't translated such as insert and update in dialogs.
1157   - Fixed bug where some image attributes wasn't stored correctly when inserting an image.
1158   - Fixed bug where fullscreen mode didn't restore scrollbars when disabled.
1159   - Fixed bug where there was no visual representation for tab focus in toolbars on IE.
1160   - Fixed bug where HR elements wasn't treated as block elements so forced_root_block would fail on these.
1161   - Fixed bug where autosave presented warning message even when the form was submitted normally.
1162   - Fixed typo of openBrower it's now openBrowser in form_utils.js.
1163   - Fixed various HTML problems like missing TD elements and duplicated doctypes.
1164   - Fixed default values for theme_advanced_resize_horizontal, theme_advanced_resizing_use_cookie to be 2.x compatible.
1165   - Moved spellchecker JS files into the development package.
1166   - Removed support for theme_advanced_path_location since the theme_advanced_statusbar_location is the correct option name.
1167   -Version 3.0b1 (2007-11-21)
1168   - Added new tab_focus option, that enables you to specify a element id or that the next element to be focused on tab key down.
1169   - Added new addQueryValueHandler method to the tinymce.Editor class.
1170   - Added new class_filter option, this enables you to specify a function that can filter out CSS classes for the styles list box.
1171   - Added support form [url=url]title[/url] to the bbcode plugin.
1172   - Renamed the addCommandQueryState method in the tinymce.Editor class to addQueryStateHandler.
1173   - Renamed loadQue to loadQueue, to correct spelling.
1174   - Removed the createDOM method from the window manager and replace it with a createInstance method.
1175   - Removed the add to beginning of class attribute parameter of the DOMUtils.addClass method.
1176   - Fixed bug with the forced_root_block option, didn't work correctly with multiple inline elements.
1177   - Fixed bug where image dialogs replaced the current image element with a new one even when it was updated.
1178   - Fixed bug where the submit trigger wasn't executed when divs where converted into editor instances.
1179   - Fixed bug where div elements that got converted into editors didn't get a hidden input element generated for them.
1180   - Fixed bug where the the media_use_script option for the media plugin wasn't working correctly.
1181   - Fixed bug where the font size and font family listboxes wasn't updated correctly on Safari.
1182   - Fixed bug where the height of the fieldset in default image dialog for the advanced theme was to small.
1183   - Fixed bug where the font sizes behaved incorrectly after a cleanup on Safari.
1184   - Fixed bug where formatblock didn't work correctly in Safari on some elements.
1185   - Fixed bug where template plugin didn't insert content correctly unless some options where specified.
1186   - Fixed bug where charmap on Safari produced scrollbars.
1187   - Fixed bug where there was white artifacts in some dialogs due to missing background color.
1188   - Fixed bug where port was added to all external URLs if the editor was loaded from a custom port.
1189   - Fixed bug where the context menus got duplicated on Safari 3.0.4 on Mac OS X.
1190   - Fixed bug where dialogs like paste from word was huge on Firefox.
1191   - Fixed bug with media plugin not working with windows media objects.
1192   - Fixed bug where a forever loop was created if multiple instances where submitted using form.submit.
1193   - Fixed bug with editing a table produce error in IE when inlinepopups where used.
1194   - Fixed bug where the style plugin generated ugly looking style information in IE.
1195   - Fixed bug where the inline dialogs that got opened while in fullscreen mode wasn't visible.
1196   - Fixed bug where it was difficult to place the caret inside the word paste dialog.
1197   - Fixed bug where Opera produced strange border in the word paste dialog.
1198   - Fixed bug where viewport constraints could move a inlinepopup to a negative x, y position if the viewport was to small.
1199   - Fixed bug where template plugin was producing an error due to a deprecated API call.
1200   - Fixed bug where drag drop of images failed in Gecko if a document_base_url was specified.
1201   - Fixed bug where Firefox 3 failed to apply block formats like H1-H6 it still breaks on DIVs this has been reported to bugzilla.
1202   - Fixed bug where IE was producing a warning dialog about non secure items when running TinyMCE over HTTPS.
1203   - Fixed bug where the onbeforeunload event was triggered when menus or dialogs where opened.
1204   - Fixed bug where the fullscreen mode of the HTML view source box threw an error.
1205   - Fixed bug where the mceFocus command didn't work correctly.
1206   - Fixed bug where the selection could get lost in IE using inlinepopups.
1207   - Fixed so the body of the editor area has the mceContentBody class just like the 2.x branch.
1208   - Fixed so the media icon gets active when a media element is selected.
1209   -Version 3.0a3 (2007-11-13)
1210   - Added new experimental jQuery and Prototype framework adapters to the development package.
1211   - Added new translation.html file for the development package. Helps with the internationalization of TinyMCE.
1212   - Added new setup callback option, use this callback to add events to TinyMCE. This method is recommended over the old callbacks.
1213   - Added new API documetation to all classes, functions, events, properties to the Wiki with examples etc.
1214   - Added new init method to all plugins and themes, since it's shorter to write and it mimics interface capable languages better.
1215   - Fixed various CSS issues in the default skin such as alignment of split buttons and separators.
1216   - Fixed issues with mod_security. It didn't like that a content type of text/javascript was forced in a XHR.
1217   - Fixed all events so that they now pass the sender object as it's first argument.
1218   - Fixed some DOM methods so they now can take an array as input.
1219   - Fixed so addButton and the methods of the ControlManager uses less arguments and it now uses a settings object instead.
1220   - Fixed various issues with the tinymce.util.URI class.
1221   - Fixed bug in IE and Safari and the on demand gzip loading feature.
1222   - Fixed bug with moving inline windows sometimes failed in IE6.
1223   - Fixed bug where save_callback function wasn't executed at all.
1224   - Fixed bug where inlinepopups produces scrollbars if windows where moved to the corners of the browser.
1225   - Fixed bug where view HTML source failed when inserting a embedded media object.
1226   - Fixed bug where the listbox menus didn't display correctly on IE6.
1227   - Fixed bug where undo level wasn't added when editor was blurred.
1228   - Fixed bug where spellchecker wasn't disabled when fullscreen mode was enabled.
1229   - Fixed bug where Firefox could crash some times when the user switched to fullscreen mode.
1230   - Fixed bug where tinymce.ui.DropMenu didn't remove all item data when an item was removed from the menu.
1231   - Fixed bug where anchor list in advlink dialog wasn't populated correctly in Safari.
1232   - Fixed bug where it wasn't possible to edit tables in IE when inlinepopups was enabled.
1233   - Fixed bug where it wasn't possible to change the table width of an existing table.
1234   - Fixed bug where xhtmlxtras like abbr didn't work correctly on IE.
1235   - Fixed bug where IE6 had some graphics rendering issues with the inlinepopups.
1236   - Fixed bug where inlinepopup windows where moved incorrectly when they were boundary checked for min width.
1237   - Fixed bug where textareas without id or name couldn't be converted into editor instances.
1238   - Fixed bug where TinyMCE was stealing element focus on IE.
1239   - Fixed bug where the getParam method didn't handle false values correctly.
1240   - Fixed bug where inlinepopups was clipped by other TinyMCE instances or relative elements in IE.
1241   - Fixed bug where the contextmenu was clipped by other TinyMCE instances or relative elements in IE.
1242   - Fixed bug where listbox menus was clipped by other TinyMCE instances or relative elements in IE.
1243   - Fixed bug where listboxes wasn't updated correctly when the a value wasn't found by select.
1244   - Fixed various CSS issues that produced odd rendering bugs in IE.
1245   - Fixed issues with tinymce.ui.DropMenu class, it required some optional settings to be specified.
1246   - Fixed so multiple blockquotes can be removed with a easier method than before.
1247   - Optimized some of the core API to boost performance.
1248   - Removed some functions from the core API that wasn't needed.
1249   -Version 3.0a2 (2007-11-02)
1250   - Fixed critical bug where IE generaded an error on a hasAttribute call in the serialization engine.
1251   - Fixed critical bug where some dialogs didn't open in the non dev package.
1252   - Fixed bug when using the theme_advanced_styles option. Error was thrown in some dialogs.
1253   - Fixed bug where the close buttons produced an error when native windows where used.
1254   - Fixed bug in default skin so that split buttons gets activated correctly.
1255   - Fixed so plugins can be loaded from external urls outsite the plugins directory.
1256   -Version 3.0a1 (2007-11-01)
1257   - Rewrote the core and most of the plugins and themes from scratch.
1258   - Added new and improved serialization engine, faster and more powerful.
1259   - Added new internal event system, things like editor.onClick.add(func).
1260   - Added new inlinepopups plugin, the dialogs are now skinnable and uses clearlooks2 as default.
1261   - Added new contextmenu plugin, context menus can now have submenus and plugins can add items on the fly.
1262   - Added new skin support for the simple and advanced themes you can alter the whole UI using CSS.
1263   - Added new o2k7 skin for the simple and advanced themes.
1264   - Added new custom list boxes for font size/format/style etc with preview support.
1265   - Added new UI management, enabled plugins to create controls like splitbuttons or menus easier.
1266   - Added new JSON parser/serializer and JSON-RPC class to the core API.
1267   - Added new cookie utility class to the core API.
1268   - Added new Unit testing class to the core API only available in dev mode.
1269   - Added new firebug lite integration when loading the dev version of TinyMCE.
1270   - Added new Safari plugin, fixes lots compatibility of issues with Safari 3.x.
1271   - Added new URI/URL parsing it now handles the hole RFC and even some exceptions.
1272   - Added new pagebreak plugin, enables you to insert pagebreak comments like <!-- pagebreak -->
1273   - Added new on demand loading of plugins and themes. Enables you to load and init TinyMCE at any time.
1274   - Added new throbber/progress visualization a plugin can show/hide this when it's needed.
1275   - Added new blockquote button. Enables you to wrap paragraphs in blockquotes.
1276   - Added new compat2x plugin. Will provide a TinyMCE 2.x API for older plugins.
1277   - Added new theme_advanced_resizing_min_width, theme_advanced_resizing_min_height options.
1278   - Added new theme_advanced_resizing_max_height, theme_advanced_resizing_max_height options.
1279   - Added new use_native_selects option. Enables you to toggle native listboxes on and off.
1280   - Added new docs_url option enables you to specify where the TinyMCE user documentation is located.
1281   - Added new frame and rules options for the table dialog.
1282   - Added new global rule for valid_elements/extended_valid_elements enables you to specify global attributes for all elements.
1283   - Added new deny attribute rule characher so it's possible to deny global attribute rules on specific elements.
1284   - Added new unit tests in the dev package of TinyMCE. Runs tests on the core API, commands and settings of the editor.
1285   - Readded the inline_styles option and enabled it by default so deprecated attributes are no longer used.
1286   - Removed all button images and replaced them with CSS sprite images. Reduces the number of requests needed.
1287   - Removed lots of language files and merged them into the base language files. Reduces the number of requests needed.
1288   - Removed lots of unnecessary files and merged many of them together to reduce requests and improve loading speed.
1289   - Reduced the over all script size by 33% and the number of files/requests by 75% so it loads a lot faster.
1290   - Fixed so convert_fonts_to_spans are enabled by default. So no more font tags.
1291   - Fixed so underline and strikethrough uses spans instread of deprecated U and STRIKE elements.
1292   - Fixed so indent/outdent adds/removed margin-left instead of blockquotes.
1293   - Fixed so alignment of paragraphs results in a text-align style value instead of the deprecated align attribute.
1294   - Fixed so alignment of images uses float or vertical-align style values instead of the deprecated align attribute.
1295   - Fixed so all classes from @import stylesheets gets imported into the editor.
1296   - Fixed so the directionality can toggle the dir attribute on and off.
1297   - Fixed so the fullscreen_settings can be used for all types of fullscreen modes.
1298   - Fixed so the advanced HR dialog gets displayed when inserting a HR not only on edit.
1299   - Fixed bug where word wrap didn't work in the source editor on Safari.
1300   - Fixed so non HTML elements can be used within the editor such as <myns:tag>
1301   - Fixed various memory leaks in IE and reduced the unload cleanups needed.
1302   - Fixed so the preformatted option adds an invisible container pre tag inside the editor.
1303   - Renamed the _template plugin to example and updated it to use the new 3.x API.
  1 +Version 4.1.5 (2014-09-09)
  2 + Fixed bug where sometimes the resize rectangles wouldn't properly render on images on WebKit/Blink.
  3 + Fixed bug in list plugin where delete/backspace would merge empty LI elements in lists incorrectly.
  4 + Fixed bug where empty list elements would result in empty LI elements without it's parent container.
  5 + Fixed bug where backspace in empty caret formated element could produce an type error exception of Gecko.
  6 + Fixed bug where lists pasted from word with a custom start index above 9 wouldn't be properly handled.
  7 + Fixed bug where tabfocus plugin would tab out of the editor instance even if the default action was prevented.
  8 + Fixed bug where tabfocus wouldn't tab properly to other adjacent editor instances.
  9 + Fixed bug where the DOMUtils setStyles wouldn't properly removed or update the data-mce-style attribute.
  10 + Fixed bug where dialog select boxes would be placed incorrectly if document.body wasn't statically positioned.
  11 + Fixed bug where pasting would sometimes scroll to the top of page if the user was using the autoresize plugin.
  12 + Fixed bug where caret wouldn't be properly rendered by Chrome when clicking on the iframes documentElement.
  13 + Fixed so custom images for menubutton/splitbutton can be provided. Patch contributed by Naim Hammadi.
  14 + Fixed so the default action of windows closing can be prevented by blocking the default action of the close event.
  15 + Fixed so nodeChange and focus of the editor isn't automatically performed when opening sub dialogs.
  16 +Version 4.1.4 (2014-08-21)
  17 + Added new media_filter_html option to media plugin that blocks any conditional comments, scripts etc within a video element.
  18 + Added new content_security_policy option allows you to set custom policy for iframe contents. Patch contributed by Francois Chagnon.
  19 + Fixed bug where activate/deactivate events wasn't firing properly when switching between editors.
  20 + Fixed bug where placing the caret on iOS was difficult due to a WebKit bug with touch events.
  21 + Fixed bug where the resize helper wouldn't render properly on older IE versions.
  22 + Fixed bug where resizing images inside tables on older IE versions would sometimes fail depending mouse position.
  23 + Fixed bug where editor.insertContent would produce an exception when inserting select/option elements.
  24 + Fixed bug where extra empty paragraphs would be produced if block elements where inserted inside span elements.
  25 + Fixed bug where the spellchecker menu item wouldn't be properly checked if spell checking was started before it was rendered.
  26 + Fixed bug where the DomQuery filter function wouldn't remove non elements from collection.
  27 + Fixed bug where document with custom document.domain wouldn't properly render the editor.
  28 + Fixed bug where IE 8 would throw exception when trying to enter invalid color values into colorboxes.
  29 + Fixed bug where undo manager could incorrectly add an extra undo level when custom resize handles was removed.
  30 + Fixed bug where it wouldn't be possible to alter cell properties properly on table cells on IE 8.
  31 + Fixed so the color picker button in table dialog isn't shown unless you include the colorpicker plugin or add your own custom color picker.
  32 + Fixed so activate/deactivate events fire when windowManager opens a window since.
  33 + Fixed so the table advtab options isn't separated by an underscore to normalize naming with image_advtab option.
  34 + Fixed so the table cell dialog has proper padding when the advanced tab in disabled.
  35 +Version 4.1.3 (2014-07-29)
  36 + Added event binding logic to tinymce.util.XHR making it possible to override headers and settings before any request is made.
  37 + Fixed bug where drag events wasn't fireing properly on older IE versions since the event handlers where bound to document.
  38 + Fixed bug where drag/dropping contents within the editor on IE would force the contents into plain text mode even if it was internal content.
  39 + Fixed bug where IE 7 wouldn't open menus properly due to a resize bug in the browser auto closing them immediately.
  40 + Fixed bug where the DOMUtils getPos logic wouldn't produce a valid coordinate inside the body if the body was positioned non static.
  41 + Fixed bug where the element path and format state wasn't properly updated if you had the wordcount plugin enabled.
  42 + Fixed bug where a comment at the beginning of source would produce an exception in the formatter logic.
  43 + Fixed bug where setAttrib/getAttrib on null would throw exception together with any hooked attributes like style.
  44 + Fixed bug where table sizes wasn't properly retained when copy/pasting on WebKit/Blink.
  45 + Fixed bug where WebKit/Blink would produce colors in RGB format instead of the forced HEX format when deleting contents.
  46 + Fixed bug where the width attribute wasn't updated on tables if you changed the size inside the table dialog.
  47 + Fixed bug where control selection wasn't properly handled when the caret was placed directly after an image.
  48 + Fixed bug where selecting the contents of table cells using the selection.select method wouldn't place the caret properly.
  49 + Fixed bug where the selection state for images wasn't removed when placing the caret right after an image on WebKit/Blink.
  50 + Fixed bug where all events wasn't properly unbound when and editor instance was removed or destroyed by some external innerHTML call.
  51 + Fixed bug where it wasn't possible or very hard to select images on iOS when the onscreen keyboard was visible.
  52 + Fixed so auto_focus can take a boolean argument this will auto focus the last initialized editor might be useful for single inits.
  53 + Fixed so word auto detect lists logic works better for faked lists that doesn't have specific markup.
  54 + Fixed so nodeChange gets fired on mouseup as it used to before 4.1.1 we optimized that event to fire less often.
  55 + Removed the finish menu item from spellchecker menu since it's redundant you can stop spellchecking by toggling menu item or button.
  56 +Version 4.1.2 (2014-07-15)
  57 + Added offset/grep to DomQuery class works basically the same as it's jQuery equivalent.
  58 + Fixed bug where backspace/delete or setContent with an empty string would remove header data when using the fullpage plugin.
  59 + Fixed bug where tinymce.remove with a selector not matching any editors would remove all editors.
  60 + Fixed bug where resizing of the editor didn't work since the theme was calling setStyles instead of setStyle.
  61 + Fixed bug where IE 7 would fail to append html fragments to iframe document when using DomQuery.
  62 + Fixed bug where the getStyle DOMUtils method would produce an exception if it was called with null as it's element.
  63 + Fixed bug where the paste plugin would remove the element if the none of the paste_webkit_styles rules matched the current style.
  64 + Fixed bug where contextmenu table items wouldn't work properly on IE since it would some times fire an incorrect selection change.
  65 + Fixed bug where the padding/border values wasn't used in the size calculation for the body size when using autoresize. Patch contributed by Matt Whelan.
  66 + Fixed bug where conditional word comments wouldn't be properly removed when pasting plain text.
  67 + Fixed bug where resizing would sometime fail on IE 11 when the mouseup occurred inside the resizable element.
  68 + Fixed so the iframe gets initialized without any inline event handlers for better CSP support. Patch contributed by Matt Whelan.
  69 + Fixed so the tinymce.dom.Sizzle is the latest version of sizzle this resolves the document context bug.
  70 +Version 4.1.1 (2014-07-08)
  71 + Fixed bug where pasting plain text on some WebKit versions would result in an empty line.
  72 + Fixed bug where resizing images inside tables on IE 11 wouldn't work properly.
  73 + Fixed bug where IE 11 would sometimes throw "Invalid argument" exception when editor contents was set to an empty string.
  74 + Fixed bug where document.activeElement would throw exceptions on IE 9 when that element was hidden or removed from dom.
  75 + Fixed bug where WebKit/Blink sometimes produced br elements with the Apple-interchange-newline class.
  76 + Fixed bug where table cell selection wasn't properly removed when copy/pasting table cells.
  77 + Fixed bug where pasting nested list items from Word wouldn't produce proper semantic nested lists.
  78 + Fixed bug where right clicking using the contextmenu plugin on WebKit/Blink on Mac OS X would select the target current word or line.
  79 + Fixed bug where it wasn't possible to alter table cell properties on IE 8 using the context menu.
  80 + Fixed bug where the resize helper wouldn't be correctly positioned on older IE versions.
  81 + Fixed bug where fullpage plugin would produce an error if you didn't specify a doctype encoding.
  82 + Fixed bug where anchor plugin would get the name/id of the current element even if it wasn't anchor element.
  83 + Fixed bug where visual aids for tables wouldn't be properly disabled when changing the border size.
  84 + Fixed bug where some control selection events wasn't properly fired on older IE versions.
  85 + Fixed bug where table cell selection on older IE versions would prevent resizing of images.
  86 + Fixed bug with paste_data_images paste option not working properly on modern IE versions.
  87 + Fixed bug where custom elements with underscores in the name wasn't properly parsed/serialized.
  88 + Fixed bug where applying inline formats to nested list elements would produce an incorrect formatting result.
  89 + Fixed so it's possible to hide items from elements path by using preventDefault/stopPropagation.
  90 + Fixed so inline mode toolbar gets rendered right aligned if the editable element positioned to the documents right edge.
  91 + Fixed so empty inline elements inside empty block elements doesn't get removed if configured to be kept intact.
  92 + Fixed so DomQuery parentsUntil/prevUntil/nextUntil supports selectors/elements/filters etc.
  93 + Fixed so legacyoutput plugin overrides fontselect and fontsizeselect controls and handles font elements properly.
  94 +Version 4.1.0 (2014-06-18)
  95 + Added new file_picker_callback option to replace the old file_browser_callback the latter will still work though.
  96 + Added new custom colors to textcolor plugin will be displayed if a color picker is provided also shows the latest colors.
  97 + Added new color_picker_callback option to enable you to add custom color pickers to the editor.
  98 + Added new advanced tabs to table/cell/row dialogs to enable you to select colors for border/background.
  99 + Added new colorpicker plugin that lets you select colors from a hsv color picker.
  100 + Added new tinymce.util.Color class to handle color parsing and converting.
  101 + Added new colorpicker UI widget element lets you add a hsv color picker to any form/window.
  102 + Added new textpattern plugin that allows you to use markdown like text patterns to format contents.
  103 + Added new resize helper element that shows the current width & height while resizing.
  104 + Added new "once" method to Editor and EventDispatcher enables since callback execution events.
  105 + Added new jQuery like class under tinymce.dom.DomQuery it's exposed on editor instances (editor.$) and globally under (tinymce.$).
  106 + Fixed so the default resize method for images are proportional shift/ctrl can be used to make an unproportional size.
  107 + Fixed bug where the image_dimensions option of the image plugin would cause exceptions when it tried to update the size.
  108 + Fixed bug where table cell dialog class field wasn't properly updated when editing an a table cell with an existing class.
  109 + Fixed bug where Safari on Mac would produce webkit-fake-url for pasted images so these are now removed.
  110 + Fixed bug where the nodeChange event would get fired before the selection was changed when clicking inside the current selection range.
  111 + Fixed bug where valid_classes option would cause exception when it removed internal prefixed classes like mce-item-.
  112 + Fixed bug where backspace would cause navigation in IE 8 on an inline element and after a caret formatting was applied.
  113 + Fixed so placeholder images produced by the media plugin gets selected when inserted/edited.
  114 + Fixed so it's possible to drag in images when the paste_data_images option is enabled. Might be useful for mail clients.
  115 + Fixed so images doesn't get a width/height applied if the image_dimensions option is set to false useful for responsive contents.
  116 + Fixed so it's possible to pass in an optional arguments object for the nodeChanged function to be passed to all nodechange event listeners.
  117 + Fixed bug where media plugin embed code didn't update correctly.
  118 +Version 4.0.28 (2014-05-27)
  119 + Fixed critical issue with empty urls producing an exception when converted into absolute urls due to resent bug fix in tinymce.util.URI.
  120 +Version 4.0.27 (2014-05-27)
  121 + Added support for definition lists to lists plugin and enter key logic. This can now created by the format menu.
  122 + Added cmd option for the style_formats menu enables you to toggle commands on/off using the formats menu for example lists.
  123 + Added definition lists to visualblocks plugin so these are properly visualized like other list elements.
  124 + Added new paste_merge_formats option that reduces the number of nested text format elements produced on paste. Enabled by default.
  125 + Added better support for nested link_list/image_list menu items each item can now have a "menu" item with subitems.
  126 + Added "Add to Dictionary" support to spellchecker plugin when the backend tells that this feature is available.
  127 + Added new table_default_attributes/table_default_styles options patch contributed by Dan Villiom Podlaski Christiansen.
  128 + Added new table_class_list/table_cell_class_list/table_row_class_list options to table plugin.
  129 + Added new invalid_styles/valid_classes options to better control what gets returned for the style/class attribute.
  130 + Added new file_browser_callback_types option that allows you to specify where to display the picker based on dialog type.
  131 + Fixed so the selected state is properly handled on nested menu items in listboxes patch contributed by Jelle Kralt.
  132 + Fixed so the invisiblity css value for TinyMCE gets set to inherit instead of visible to better support dialog scripts like reveal.
  133 + Fixed bug where Gecko would remove anchors when pasting since the their default built in logic removes empty nodes.
  134 + Fixed bug where it wasn't possible to paste on Chrome Andoid since it doesn't properly support the Clipboard API yet.
  135 + Fixed bug where user defined type attribute value of text/javascript didn't get properly serialized.
  136 + Fixed bug where space in span elements would removed when the element was considered empty.
  137 + Fixed bug where the undo/redo button states didn't change if you removed all undo levels using undoManager.clear.
  138 + Fixed bug where unencoded links inside query strings or hash values would get processed by the relative urls logic.
  139 + Fixed bug where contextmenu would automatically close in inline editing mode on Firefox running on Mac.
  140 + Fixed bug where Gecko/IE would produce multiple BR elements when forced_root_block was set to false and a table was the last child of body.
  141 + Fixed bug where custom queryCommandState handlers didn't properly handle boolean states.
  142 + Fixed bug where auto closing float panels link menus wasn't automatically closed when the window was resized.
  143 + Fixed bug where the image plugin wouldn't update image dimensions when the current image was changed using the image_list select box.
  144 + Fixed bug with paste plugin not properly removing paste bin on Safari Mac when using the cmd+shift+v keyboard command.
  145 + Fixed bug where the paste plugin wouln't properly strip trailing br elements under very specific scenarios.
  146 + Fixed bug where enter key wouldn't properly place the caret on Gecko when pressing enter in a text block with a br ended line inside.
  147 + Fixed bug where Safari Mac shortcuts like Cmd+Opt+L didn't get passed through to the browser due to a Quirks fix.
  148 + Fixed so plain text mode works better when it converts rich text to plain text when pasting from for example Word.
  149 + Fixed so numeric keycodes can be used in the shortcut format enabling support for any key to be specified.
  150 + Fixed so table cells can be navigated with tab key and new rows gets automatically added when you are at the last cell.
  151 + Fixed bug where formatting before cursor gets removed when toggled off for continued content.
  152 +Version 4.0.26 (2014-05-06)
  153 + Fixed bug in media plugin where changing existing url did not use media regex patterns to create protocol neutral url.
  154 + Fixed bug where selection wasn't properly restored on IE 11 due to a browser bug with Element.contains.
  155 +Version 4.0.25 (2014-04-30)
  156 + Fixed bug where it wasn't possible to submit forms with editor instances on WebKit/Blink.
  157 +Version 4.0.24 (2014-04-30)
  158 + Added new event_root setting for inline editors. Lets you bind all editor events on a parent container.
  159 + Fixed bug where show/hide/isHidden didn't work properly for inline editor instances.
  160 + Fixed bug where preview plugin dialog didn't handle relative urls properly.
  161 + Fixed bug where the autolink plugin would remove the trailing space after an inserted link.
  162 + Fixed bug in paste plugin where pasting in a page with scrollbars would scroll to top of page in webkit browsers.
  163 + Fixed bug where the paste plugin on WebKit would remove styles from pasted source code with style attributes.
  164 + Fixed so image_list/link_list can be a function that allows custom async calls to populate these lists.
  165 +Version 4.0.23 (2014-04-24)
  166 + Added isSameOrigin method to tinymce.util.URI it handles default protocol port numbers better. Patch contributed by Matt Whelan.
  167 + Fixed bug where IE 11 would add br elements to the end of the editor body element each time it was shown/hidden.
  168 + Fixed bug where the autolink plugin would produce an index out of range exception for some very specific HTML.
  169 + Fixed bug where the charmap plugin wouldn't properly insert non breaking space characters when selected.
  170 + Fixed bug where pasting from Excel 2011 on Mac didn't produce a proper table when using the paste plugin.
  171 + Fixed bug where drag/dropping inside a table wouldn't properly end the table cell selection.
  172 + Fixed bug where drag/dropping images within tables on Safari on Mac wouldn't work properly.
  173 + Fixed bug where editors couldn't be re-initialized if they where externally destroyed.
  174 + Fixed bug where inline editors would produce a range index exception when clicking on buttons like bold.
  175 + Fixed bug where the preview plugin wouldn't properly handle non encoded upper UTF-8 characters.
  176 + Fixed so document.currentScript is used when detecting the current script location. Patch contributed by Mickael Desgranges.
  177 + Fixed issue with the paste_webkit_styles option so is disabled by default since it might produce a lot of extra styles.
  178 +Version 4.0.22 (2014-04-16)
  179 + Added lastLevel to BeforeAddUndo level event so it's easier to block undo level creation based.
  180 + Fixed so multiple list elements can be indented properly. Patch contributed by Dan Villiom Podlaski Christiansen.
  181 + Fixed bug where the selection would be at the wrong location sometimes for inline editor instances.
  182 + Fixed bug where drag/dropping content into an inline editor would fail on WebKit/Blink.
  183 + Fixed bug where table grid wouldn't work properly when the UI was rendered in for RTL mode.
  184 + Fixed bug where range normalization wouldn't handle mixed contentEditable nodes properly.
  185 + Fixed so the media plugin doesn't override the existing element rules you now need to manually whitelist non standard attributes.
  186 + Fixed so old language packs get properly loaded when the new longer language code format is used.
  187 + Fixed so all track changes junk such as comments, deletes etc gets removed when pasting from Word.
  188 + Fixed so non image data urls is blocked by default since they might contain scripts.
  189 + Fixed so it's possible to import styles from the current page stylesheets into an inline editor by using the importcss_file_filter.
  190 + Fixed bug where the spellchecker plugin wouldn't add undo levels for each suggestion replacement.
  191 + Reworked the default spellchecker RPC API to match the new PHP Spellchecker package. Fallback documented in the TinyMCE docs.
  192 +Version 4.0.21 (2014-04-01)
  193 + Added new getCssText method to formatter to get the preview css text value for a format to be used in UI.
  194 + Added new table_grid option that allows you to disable the table grid and use a dialog.
  195 + Added new image_description, image_dimensions options to image plugin. Patch contributed by Pat O'Neill.
  196 + Added new media_alt_source, media_poster, media_dimensions options to media plugin. Patch contributed by Pat O'Neill.
  197 + Added new ability to specify high/low dpi versions custom button images for retina displays.
  198 + Added new getWindows method to WindowManager makes it easier to control the currently opened windows.
  199 + Added new paste_webkit_styles option to paste plugin to control the styles that gets retained on WebKit.
  200 + Added preview of classes for the selectboxes used by the link_class_list/image_class_list options.
  201 + Added support for Sauce Labs browser testing using the new saucelabs-tests build target.
  202 + Added title input field to link dialog for a11y reasons can be disabled by using the link_title option.
  203 + Fixed so the toolbar option handles an array as input for multiple toolbar rows.
  204 + Fixed so the editor renders in XHTML mode apparently some people still use this rendering mode.
  205 + Fixed so icons gets rendered better on Firefox on Mac OS X by applying -moz-osx-font-smoothing.
  206 + Fixed so the auto detected external media sources produced protocol relative urls. Patch contributed by Pat O'Neill.
  207 + Fixed so it's possible to update the text of a button after it's been rendered to page DOM.
  208 + Fixed bug where iOS 7.1 Safari would open linked when images where inserted into links.
  209 + Fixed bug where IE 11 would scroll to the top of inline editable elements when applying formatting.
  210 + Fixed bug where tabindex on elements within the editor contents would cause issues on some browsers.
  211 + Fixed bug where link text wouldn't be properly updated in gecko if you changed an existing link.
  212 + Fixed bug where it wasn't possible to close dialogs with the escape key if the focus was inside a textbox.
  213 + Fixed bug where Gecko wouldn't paste rich text contents from Word or other similar word processors.
  214 + Fixed bug where binding events after the control had been rendered could fail to produce a valid delegate.
  215 + Fixed bug where IE 8 would throw and error when removing editors with a cross domain content_css setting.
  216 + Fixed bug where IE 9 wouldn't be able to select text after an editor instance with caret focus was removed.
  217 + Fixed bug where the autoresize plugin wouldn't resize the editor if you inserted huge images.
  218 + Fixed bug where multiple calls to the same init would produce extra editor instances.
  219 + Fixed bug where fullscreen toggle while having the autoresize plugin enabled wouldn't produce scrollbars.
  220 + Fixed so screen readers use a dialog instead of the grid for inserting tables.
  221 + Fixed so Office 365 Word contents gets filtered the same way as content from desktop Office.
  222 + Fixed so it's possible to override the root container for UI elements defaults to document.body.
  223 + Fixed bug where tabIndex is set to -1 on inline editable elements. It now keeps the existing tabIndex intact.
  224 + Fixed issue where the UndoManager transact method couldn't be nested since it only had one lock.
  225 + Fixed issue where headings/heading where labeled incorrectly as headers/header.
  226 +Version 4.0.20 (2014-03-18)
  227 + Fixed so all unit tests can be executed in a headless phantomjs instance for CI testing.
  228 + Fixed so directionality setting gets applied to the preview dialog as well as the editor body element.
  229 + Fixed a performance issue with the "is" method in DOMUtils. Patch contributed by Paul Bosselaar.
  230 + Fixed bug where paste plugin wouldn't paste plain text properly when pasting using browser menus.
  231 + Fixed bug where focusable SVG elements would throw an error since className isn't a proper string.
  232 + Fixed bug where the preview plugin didn't properly support the document_base_url setting.
  233 + Fixed bug where the focusedEditor wouldn't be set to null when that editor was removed.
  234 + Fixed bug where Gecko would throw an exception when editors where removed.
  235 + Fixed bug where the FocusManager wouldn't handle selection restoration properly on older IE versions.
  236 + Fixed bug where the searchreplace plugin would produce an exception on very specific multiple searches.
  237 + Fixed bug where some events wasn't properly unbound when all editors where removed from page.
  238 + Fixed bug where tapping links on iOS 7.1 would open the link instead of placing the caret inside.
  239 + Fixed bug where holding the finger down on iOS 7.1 would open the link/image callout menu.
  240 + Fixed so the jQuery plugin returns null when getting the the tinymce instance of an element before it's initialized.
  241 + Fixed so selection normalization gets executed more often to reduce incorrect UI states on Gecko.
  242 + Fixed so the default action of closing the window on a form submission can be prevented using "preventDefault".
  243 +Version 4.0.19 (2014-03-11)
  244 + Added support for CSS selector expressions in object_resizing option. Allows you to control what to resize.
  245 + Added addToTop compatibility to compat3x plugin enables more legacy 3.x plugins to work properly.
  246 + Fixed bug on IE where it wasn't possible to align images when they where floated left.
  247 + Fixed bug where the indent/outdent buttons was enabled though readonly mode was enabled.
  248 + Fixed bug where the nodeChanged event was fired when readonly mode was enabled.
  249 + Fixed bug where events like blur could be fired to editor instances that where manually removed on IE 11.
  250 + Fixed bug where IE 11 would move focus to menubar/toolbar when using the tab key in a form with an editor.
  251 + Fixed bug where drag/drop in Safari on Mac didn't work properly due to lack of support for modern dataTransfer object.
  252 + Fixed bug where the remove event wasn't properly executed when the editor instances where removed.
  253 + Fixed bug where the selection change handler on inline editors would fail if the editor instance was removed.
  254 +Version 4.0.18 (2014-02-27)
  255 + Fixed bug where images would get class false/undefined when initially created.
  256 +Version 4.0.17 (2014-02-26)
  257 + Added much better wai-aria accessibility support when it comes to keyboard navigation of complex UI controls.
  258 + Added dfn,code,samp,kbd,var,cite,mark,q elements to the default remove formats list. Patch contributed by Naim Hammadi.
  259 + Added var,cite,dfn,code,mark,q,sup,sub to the list of elements that gets cloned on enter. Patch contributed by Naim Hammadi.
  260 + Added new visual_anchor_class option to specify a custom class for inline anchors. Patch contributed by Naim Hammadi.
  261 + Added support for paste_data_images on WebKit/Blink when the user pastes image data.
  262 + Added support for highlighting the video icon when a video is added that produces an iframe. Patch contributed by monkeydiane.
  263 + Added image_class_list/link_class_list options to image/link dialogs to let the user select classes.
  264 + Fixed bug where the ObjectResizeStart event didn't get fired properly by the ControlSelection class.
  265 + Fixed bug where the autolink plugin would steal focus when loaded on IE 9+.
  266 + Fixed bug where the editor save method would remove the current selection when called on an inline editor.
  267 + Fixed bug where the formatter would merge span elements with parent bookmarks if an id format was used.
  268 + Fixed bug where WebKit/Blink browsers would scroll to the top of the editor when pasting into an empty element.
  269 + Fixed bug where removing the editor would cause an error about wrong document on IE 11 under specific circumstances.
  270 + Fixed bug where Gecko would place the caret at an incorrect location when using backspace.
  271 + Fixed bug where Gecko would throw "Wrong Document Error" for ranges that pointing to removed nodes.
  272 + Fixed bug where it wasn't possible to properly update the title and encoding properties in the fullpage plugin.
  273 + Fixed bug where paste plugin would produce an extra undo level on IE.
  274 + Fixed bug where the formatter would apply inline formatting outside the current word in if the selection was collapsed.
  275 + Fixed bug where it wasn't possible to delete tables on Chrome if you placed the selection within all the contents of the table.
  276 + Fixed bug where older IE versions wouldn't properly insert contents into table cells when editor focus was lost.
  277 + Fixed bug where older IE versions would fire focus/blur events even though the editor focus didn't change.
  278 + Fixed bug where IE 11 would add two trailing BR elements to the editor iframe body if the editor was hidden.
  279 + Fixed bug where the visualchars plugin wouldn't display non breaking spaces if they where inserted while the state was enabled.
  280 + Fixed bug where the wordcount plugin would be very slow some HTML where to much backtracking occurred.
  281 + Fixed so pagebreak elements in the editor breaks pages when printing. Patch contributed by penc.
  282 + Fixed so UndoManager events pass though the original event that created the undo level such as a keydown, blur etc.
  283 + Fixed so the inserttime button is callsed insertdatetime the same as the menu item and plugin name.
  284 + Fixed so the word count plugin handles counting properly on most languages on the planet.
  285 + Fixed bug where the auroreize plugin would throw an error if the editor was manually removed within a few seconds.
  286 + Fixed bug where the image dialog would get stuck if the src was removed. Patch contribued by monkeydiane.
  287 + Fixed bug where there is an extra br tag for IE 9/10 that isn't needed. Patch contributed by monkeydiane.
  288 + Fixed bug where drag/drop in a scrolled editor would fail since it didn't use clientX/clientY cordinates. Patch contributed by annettem.
  289 +Version 4.0.16 (2014-01-31)
  290 + Fixed bug where the editor wouldn't be properly rendered on IE 10 depending on the document.readyState.
  291 +Version 4.0.15 (2014-01-31)
  292 + Fixed bug where paste in inline mode would produce an exception if the contents was pasted inside non overflow element.
  293 +Version 4.0.14 (2014-01-30)
  294 + Fixed a bug in the image plugin where images couldn't be inserted if the image_advtab option wasn't set to true.
  295 +Version 4.0.13 (2014-01-30)
  296 + Added language selection menu to spellchecker button similar to the 3.x functionality. Patch contributed by threebytesfull.
  297 + Added new style_formats_merge option that enables you to append to the default formats instead of replaceing them. Patch contributed by PacificMorrowind.
  298 + Fixed bug where the DOMUtils getPos API function didn't properly handle the location of the root element. Patch contributed by Andrew Ozz.
  299 + Fixed bug where the spellchecker wouldn't properly place the spellchecker suggestions menu. Patch contributed by Andrew Ozz.
  300 + Fixed bug where the tabfocus plugin would prevent the user from suing Ctrl+Tab, Patch contributed by Andrew Ozz.
  301 + Fixed bug where table resize handles could sometimes be added to elements out side the editable inline element.
  302 + Fixed bug where the inline mode editor UI would render incorrectly when the stylesheets didn't finish loading on Chrome.
  303 + Fixed bug where IE 8 would insert the image outside the editor unless it was focused first.
  304 + Fixed bug where older IE versions would throw an exception on drag/drop since they don't support modern dataTransfer API.
  305 + Fixed bug where the blockquote button text wasn't properly translated since it had the wrong English key.
  306 + Fixed bug where the importcss plugin didn't import a.class rules properly as selector formats.
  307 + Fixed bug where the combobox control couldn't be disabled or set to a specific character size initially.
  308 + Fixed bug where the FormItem didn't inherit the disabled state from the control to be wrapped.
  309 + Fixed bug where adding a TinyMCE instance within a TinyMCE dialog wouldn't properly delegate the events.
  310 + Fixed bug where any overflow parent containers would automatically scroll to the left when pasting in Chrome.
  311 + Fixed bug where IE could throw an error when search/replacing contents due to an invalid selection being returned.
  312 + Fixed bug where WebKit would fire focus/blur events incorrectly if the editor was empty due to a WebKit focus bug.
  313 + Fixed bug where WebKit/Blink would scroll to the top of editor if the height was more than the viewport height.
  314 + Fixed bug where blurring and removing the editor could cause an exteption to be thrown by the FocusManager.
  315 + Fixed bug where the media plugin would override specified dimensions for url pattern matches. Patch contributed by penc.
  316 + Fixed bug where the autoresize plugin wouldn't take margins into account when calculating the body size. Patch contributed by lepoltj.
  317 + Fixed bug where the image plugin would throw errors some times on IE 8 when it preloaded the image to get it's dimensions.
  318 + Fixed bug where the image plugin wouldn't update the style if the user closed the dialog before focusing out. Patch contributed by jonparrott.
  319 + Fixed bug where bindOnReady in EventUtils wouldn't work properly for some edge cases on older IE versions. Patch contributed by Godefroy.
  320 + Fixed bug where image selector formats wasn't properly handled by the importcss plugin.
  321 + Fixed bug where the dirty state of the editor wasn't set when editing an existing link URL.
  322 + Fixed bug where it wasn't possible to prevent paste from happening by blocking the default behavior when the paste plugin was enabled.
  323 + Fixed bug where text to display in the insert/edit link dialog wouldn't be properly entity encoded.
  324 + Fixed bug where Safari 7 on Mac OS X would delete contents if you pressed Cmd+C since it passes out a charCode for the event.
  325 + Fixed bug where bound drop events inside inline editors would get fired on all editor instances instead of the specific instance.
  326 + Fixed bug where images outlined selection border would be clipped when the autoresize plugin was enabled.
  327 + Fixed bug where image dimension constrains proportions wouldn't work properly if you altered a value and immediately clicked the submit button.
  328 + Fixed so you don't need to set language option to false when specifying a custom language_url.
  329 + Fixed so the link dialog "text to display" field gets automatically hidden if the selection isn't text contents. Patch contributed by Godefroy.
  330 + Fixed so the none option for the target field in the link dialog gets excluded when specifiying the target_list config option.
  331 + Fixed so outline styles are displayed by default in the formats preview. Patch contributed by nhammadi.
  332 + Fixed so the max characters for width/height is more than 3 in the media and image dialogs.
  333 + Fixed so the old mceSpellCheck command toggles the spellchecker on/off.
  334 + Fixed so the setupeditor event is fired before the setup callback setting to ease up compatibility with 3.x.
  335 + Fixed so auto url link creation in IE 9+ is disabled by default and re-enabled by the autolink plugin.
  336 + Removed the custom scrollbars for WebKit since the default browser scrollbars looks a lot better now days.
  337 +Version 4.0.12 (2013-12-18)
  338 + Added new media_scripts option to the media plugin. This makes it possible to embed videos using script elements.
  339 + Fixed bug where WebKit/Blink would produce random span elements and styles when deleting contents inside the editor.
  340 + Fixed bug where WebKit/Blink would produce span elements out of link elements when they where removed by the unlink command.
  341 + Fixed bug where div block formats in inline mode where applied to all paragraphs within the editor.
  342 + Fixed bug where div blocks where marked as an active format in inline mode when doing non collapsed selections.
  343 + Fixed bug where the importcss plugin wouldn't append styles if the style_formats option was configured.
  344 + Fixed bug where the importcss plugin would import styles into groups multiple times for different format menus.
  345 + Fixed bug where the paste plugin wouldn't properly remove the paste bin element on IE if a tried to paste a file.
  346 + Fixed bug where selection normalization wouldn't properly handle cases where a range point was after a element node.
  347 + Fixed bug where the default time format for the inserttime split button wasn't the first item in the list.
  348 + Fixed bug where the default text for the formatselect control wasn't properly translated by the language pack.
  349 + Fixed bug where links would be inserted incorrectly when auto detecting absolute urls/emails links in inline mode.
  350 + Fixed bug where IE 11 would insert contents in the wrong order due to focus/blur async problems.
  351 + Fixed bug where pasting contents on IE sometimes would place the contents at the end of the editor.
  352 + Fixed so drag/drop on non IE browsers gets filtered by the paste plugin. IE doesn't have the necessary APIs.
  353 + Fixed so the paste plugin better detects Word 2007 contents not marked with -mso junk.
  354 + Fixed so image button isn't set to an active state when selecting control/media placeholder items.
  355 +Version 4.0.11 (2013-11-20)
  356 + Added the possibility to update button icon after it's been rendered.
  357 + Added new autosave_prefix option allows you to set the prefix for the local storage keys.
  358 + Added new pagebreak_split_block option to make it easier to split block elements with a page break.
  359 + Fixed bug where IE would some times produce font elements when typing out side the body root blocks.
  360 + Fixed bug where IE wouldn't properly use the configured root block element but instead use the a paragraph.
  361 + Fixed bug where IE would throw a stack overflow if control selections non images was made in inline mode.
  362 + Fixed bug where IE 8 would render an extra enter element if the contents of the editor was empty.
  363 + Fixed bug where the caret wasn't moved to the first suitable element when updating the source.
  364 + Fixed bug where protocol relative urls would be forced into http protocol.
  365 + Fixed bug where internal images with data urls such as video elements would be removed by the paste_data_images option.
  366 + Fixed bug where the autoresize plugin wouldn't properly resize the editor to initial contents some times.
  367 + Fixed bug where the templates dialog wouldn't be properly rendered on IE 7.
  368 + Fixed bug where updating styles in the advanced tab under the image dialog would remove the style attribute on cancel.
  369 + Fixed bug where tinymce.full.min.js bundle script wasn't detected when looking for the tinymce root path.
  370 + Fixed bug where the SaxParser would throw a malformed URI sequence for inproperly encoded uris.
  371 + Fixed bug where enabling table caption wouldn't properly render the caption element on IE 10 and below.
  372 + Fixed bug where the scrollbar would be placed to the left and on top of the text of menu items in RTL mode.
  373 + Fixed bug where Firefox on Mac OS X would navigate forward/backward on CMD+Arrow keys.
  374 + Fixed bug where fullscreen toggle on fixed sized editors wouldn't be properly full screened.
  375 + Fixed bug where the unlink button would remove all links from the body element in inline mode under running in IE.
  376 + Fixed bug where iOS wasn't able to place the caret inside an empty editor when clicking below the first line.
  377 + Fixed so internal document anchors in Word documents are retained when pasting using the paste from word feature.
  378 + Fixed so menu shortcuts gets rendered with the Apple command icon patch contributed by Andy Keller.
  379 + Fixed so the CSS compression of styles like "border" is a bit better for mixed values.
  380 + Fixed so the template_popup_width/template_popup_height option works properly in the template plugin.
  381 + Fixed so the languages parameter for AddOnManager.requireLangPack works the same way as for 3.x.
  382 + Fixed so the autosave plugin uses the current page path, query string and editor id as it's default prefix.
  383 + Fixed so the fullpage plugin adds/removes any link style sheets to the current iframe document.
  384 +Version 4.0.10 (2013-10-28)
  385 + Added new forced_root_block_attrs option that allows you to specify attributes for the root block.
  386 + Fixed bug where the custom resize handles didn't work properly on IE 11.
  387 + Fixed bug where the code plugin would select all contents in IE when content was updated.
  388 + Fixed bug where the scroll position wouldn't get applied to floating toolbars.
  389 + Fixed bug where focusing in/out of the editor would move the caret to the top of the editor on IE 11.
  390 + Fixed bug where the listboxes for link and image lists wasn't updated when the url/src was changed.
  391 + Fixed bug where selection bookmark elements would be visible in the elements path list.
  392 +Version 4.0.9 (2013-10-24)
  393 + Added support for external template files to template plugin just set the templates option to a URL with JSON data.
  394 + Added new allow_script_urls option. Enabled by default, trims all script urls from attributes.
  395 + Fixed bug where IE would sometimes throw a "Permission denied" error unless the Sizzle doc was properly removed.
  396 + Fixed bug where lists plugin would remove outer list items if inline editable element was within a LI parent.
  397 + Fixed bug where insert table grid widget would insert a table on item to large when using a RTL language pack.
  398 + Fixed bug where fullscreen mode wasn't rendering properly on IE 7.
  399 + Fixed bug where resize handlers wasn't moved correctly when scrolling inline editable elements.
  400 + Fixed bug where it wasn't possible to paste from Excel and possible other applications due to Clipboard API bugs in browsers.
  401 + Fixed bug where Shift+Ctrl+V didn't produce a plain text paste on IE.
  402 + Fixed bug where IE would sometimes move the selection to the a previous location.
  403 + Fixed bug where the editor wasn't properly scrolled to the content insert location in inline mode.
  404 + Fixed bug where some comments would be parsed as HTML by the SaxParser.
  405 + Fixed bug where WebKit/Blink would render tables incorrectly if unapplying formats when having multiple table cells selected.
  406 + Fixed bug where the paste_data_images option wouldn't strip all kinds of data images.
  407 + Fixed bug where the GridLayout didn't render items correctly if the contents overflowed the layout container.
  408 + Fixed bug where the Window wasn't properly positioned if the size of the button bar or title bar was wider than the contents.
  409 + Fixed bug where psuedo selectors for finding UI controls didn't work properly.
  410 + Fixed bug where resized splitbuttons would throw an exception if it didn't contain an icon.
  411 + Fixed bug where setContent would move focus into the editor even though it wasn't active.
  412 + Fixed bug where IE 11 would sometimes throw an "Invalid function" error when calling setActive on the body element.
  413 + Fixed bug where the importcss plugin would import styles from CSS files not present in the content_css array.
  414 + Fixed bug where the jQuery plugin will initialize the editors twice if the core was loaded using the script_url option.
  415 + Fixed various bugs and issues related to indentation of OL/UL list elements.
  416 + Fixed so IE 7 renders the classic mode buttons the same size as other browsers.
  417 + Fixed so document.readyState is checked when loading and initializing TinyMCE manually after page load.
  418 +Version 4.0.8 (2013-10-10)
  419 + Added RTL support so all of the UI is rendered right to left if a language pack has a _dir property set to rtl.
  420 + Fixed bug where layout managers wouldn't handle subpixel values properly. When for example the browser was zoomed in.
  421 + Fixed bug where the importcss plugin wouldn't import classes from local stylesheets with remote @import rules on Gecko.
  422 + Fixed bug where Arabic characters wouldn't be properly counted in wordcount plugin.
  423 + Fixed bug where submit event would still fire even if it was unbound on IE 10. Now the event is simply ignored.
  424 + Fixed bug where IE 11 would return border-image: none when getting style attributes with borders in them.
  425 + Fixed various UI rendering issues on older IE versions.
  426 + Fixed so readonly option renderes the editor in inline mode with all UI elements disabled and all events blocked.
  427 +Version 4.0.7 (2013-10-02)
  428 + Added new importcss_selector_filter option to importcss plugin. Makes it easier to select specific classes to import.
  429 + Added new importcss_groups option to importcss plugin. Enables you separate classes into menu groups based on filters.
  430 + Added new PastePreProcess/PastePostProcess events and reintroduced paste_preprocess/paste_postprocess paste options.
  431 + Added new paste_word_valid_elements option lets you control what elements gets pasted when pasting from Word.
  432 + Fixed so panelbutton is easier to use. It's now possible to set the panel contents to any container type.
  433 + Fixed so editor.destroy calls editor.remove so that both destroy and remove can be used to remove an editor instance.
  434 + Fixed so the searchreplace plugin doesn't move focus into the editor until you close the dialog.
  435 + Fixed so the searchreplace plugin search for next item if you hit enter inside the dialog.
  436 + Fixed so importcss_selector_converter callback is executed with the scope set to importcss plugin instance.
  437 + Fixed so the default selector converter function is exposed in importcss plugin.
  438 + Fixed issue with the tabpanel not expanding properly when the tabs where wider than the body of the panel.
  439 + Fixed issue with the menubar option producing a JS exception if set to true.
  440 + Fixed bug where closing a dialog with an opened listbox would cause errors if new dialogs where opened.
  441 + Fixed bug where hidden input elements wasn't removed when inline editor instances where removed.
  442 + Fixed bug where editors wouldn't initialize some times due to event logic not working correctly.
  443 + Fixed bug where pre elements woudl cause searchreplace and spellchecker plugins to mark incorrect locations.
  444 + Fixed bug where embed elements wouldn't be properly resized if they where configured in using the video_template_callback.
  445 + Fixed bug where paste from word would remove all BR elements since it was missing in the default paste_word_valid_elements.
  446 + Fixed bug where paste filtering wouldn't work properly on old WebKit installations pre Clipboard API.
  447 + Fixed bug where linebreaks would be removed by paste plugin on IE since it didn't properly detect Word contents.
  448 + Fixed bug where paste plugin would convert some Word paragraphs that looked like lists into lists.
  449 + Fixed bug where editors wasn't properly initialized if the document.domain is set to the same as the current domain on IE.
  450 + Fixed bug where an exception was thrown when removing an editor after opening the context menu multiple times.
  451 + Fixed bug where paste as plain text on Gecko would add extra BR elements when pasting paragraphs.
  452 +Version 4.0.6 (2013-09-12)
  453 + Added new compat3x plugin that makes it possible to load most 3.x plugins. Only available in the development package.
  454 + Added new skin_url option enables you to load local skins when using the CDN version.
  455 + Added new theme_url option enables you to load local themes when using the CDN version.
  456 + Added new importcss_file_filter option to importcss to enable users to specify what files to import from.
  457 + Added new template_preview_replace_values option to template plugin to add example data for variables.
  458 + Added image option support for addMenuItem calls. Enables you to provide a custom image for menu items.
  459 + Fixed bug where editor.insertContent wouldn't set format and selection type on events.
  460 + Fixed bug where inserting BR elements on IE 8 would thrown an exception when the range is at a empty text node.
  461 + Fixed bug where outdent of single LI element within another LI would produce an empty list element OL/UL.
  462 + Fixed bug where the bullist/numlist buttons wouldn't be deselected when deleting all contents.
  463 + Fixed bug where toggling an empty list item off wouldn't produce a new empty block element.
  464 + Fixed bug where it wasn't possible to apply lists to mixed text blocks and br lines.
  465 + Fixed bug where it wasn't possible to paste contents on iOS when the paste plugin was enabled.
  466 + Fixed bug where it wasn't possible to delete HR elements on Gecko.
  467 + Fixed bug where scrolling and refocusing using the mouse would place the caret incorrectly on IE.
  468 + Fixed bug where you needed to hit the empty paragraph to get editor focus in IE 11.
  469 + Fixed bug where activeEditor wasn't set to the correct editor when opening windows.
  470 + Fixed bug where dirty state wasn't set to false when undoing to the first undo level.
  471 + Fixed bug where pasting in inline mode on Safari on Mac wouldn't work properly.
  472 + Fixed bug where content_css wasn't loaded into the insert template dialog.
  473 + Fixed bug where setting the contents of the editor to non text contents would produce an incorrect selection range.
  474 + Fixed so code dialog height gets smaller that the viewport height if it doesn't fit.
  475 + Fixed so inline editable regions scroll when pressing enter/return.
  476 + Fixed so inline toolbar gets positioned correctly when inline element is within a scrollable container.
  477 + Fixed various memory leaks when removing editor instances dynamically.
  478 + Removed CSS for BR elements in visualblocks due to problems with Chrome and IE.
  479 +Version 4.0.5 (2013-08-27)
  480 + Added visuals for UL, LI and BR to visualblocks plugin. Patch contributed by Dan Ransom.
  481 + Added new autosave_restore_when_empty option to autosave plugin. Enabled by default.
  482 + Fixed bug where an exception was thrown when inserting images if valid_elements didn't include an ID for the image.
  483 + Fixed bug where the advlist plugin wouldn't properly render the splitbutton controls.
  484 + Fixed bug where visual blocks menu item wouldn't be marked checked when using the visualblocks_default_state option.
  485 + Fixed bug where save button in save plugin wouldn't get properly enabled when contents was changed.
  486 + Fixed bug where it was possible to insert images without any value for it's source attribute.
  487 + Fixed bug where altering image attributes wouldn't add a new undo level.
  488 + Fixed bug where import rules in CSS files wouldn't be properly imported by the importcss plugin.
  489 + Fixed bug where selectors could be imported multiple times. Producing duplicate formats.
  490 + Fixed bug where IE would throw exception if selection was changed while the editor was hidden.
  491 + Fixed so complex rules like .class:before doesn't get imported by default in the importcss plugin.
  492 + Fixed so it's possible to remove images by setting the src attribute to a blank value.
  493 + Fixed so the save_enablewhendirty setting in the save plugin is enabled by default.
  494 + Fixed so block formats drop down for classic mode can be translated properly using language packs.
  495 + Fixed so hr menu item and toolbar button gets the same translation string.
  496 + Fixed so bullet list toolbar button gets the correct translation from language packs.
  497 + Fixed issue with Chrome logging CSS warning about border styling for combo boxes.
  498 + Fixed issue with Chrome logging warnings about deprecated keyLocation property.
  499 + Fixed issue where custom_elements would not remove the some of the default rules when cloning rules from div and span.
  500 +Version 4.0.4 (2013-08-21)
  501 + Added new importcss plugin. Lets you auto import classes from CSS files similar to the 3.x behavior.
  502 + Fixed bug where resize handles would be positioned incorrectly when inline element parent was using position: relative.
  503 + Fixed bug where IE 8 would throw Unknown runtime error if the editor was placed within a P tag.
  504 + Fixed bug where removing empty lists wouldn't produce blocks or brs where the old list was in the DOM.
  505 + Fixed bug where IE 10 wouldn't properly initialize template dialog due to async loading issues.
  506 + Fixed bug where autosave wouldn't properly display the warning about content not being saved due to isDirty changes.
  507 + Fixed bug where it wouldn't be possible to type if a touchstart event was bound to the parent document.
  508 + Fixed bug where code dialog in code plugin wouldn't wouldn't add a proper undo level.
  509 + Fixed issue where resizing the editor in vertical mode would set the iframe width to a pixel value.
  510 + Fixed issue with naming of insertdatetime settings. All are now prefixed with the plugin name.
  511 + Fixed so an initial change event is fired when the user types the first character into the editor.
  512 + Fixed so swf gets mapped to object element in media plugin. Enables embedding of flash with alternative poster.
  513 +Version 4.0.3 (2013-08-08)
  514 + Added new code_dialog_width/code_dialog_height options to control code dialog size.
  515 + Added missing pastetext button that works the same way as the pastetext menu item.
  516 + Added missing smaller browse button for the classical smaller toolbars.
  517 + Fixed bug where input method would produce new lines when inserting contents to an empty editor.
  518 + Fixed bug where pasting single indented list items from Word would cause a JS exception.
  519 + Fixed bug where applying block formats inside list elements in inline mode would apply them to whole document.
  520 + Fixed bug where link editing in inline mode would cause exception on IE/WebKit.
  521 + Fixed bug where IE 10 wouldn't render the last button group properly in inline mode due to wrapping.
  522 + Fixed bug where localStorage initialization would fail on Firefox/Chrome with disabled support.
  523 + Fixed bug where image elements would get an __mce id when undo/redo:ing to a level with image changes.
  524 + Fixed bug where too long template names wouldn't fit the listbox in template plugin.
  525 + Fixed bug where alignment format options would be marked disabled when forced_root_block was set to false.
  526 + Fixed bug where UI listboxes such as fontsize, fontfamily wouldn't update properly when switching editors in inline mode.
  527 + Fixed bug where the formats select box would mark the editable container DIV as a applied format in inline mode.
  528 + Fixed bug where IE 7/8 would scroll to empty editors when initialized.
  529 + Fixed bug where IE 7/8 wouldn't display previews of format options.
  530 + Fixed bug where UI states wasn't properly updated after code was changed in the code dialog.
  531 + Fixed bug with setting contents in IE would select all contents within the editor.
  532 + Fixed so the undoManages transact function disables any other undo levels from being added while within the transaction.
  533 + Fixed so sub/sup elements gets removed when the Clear formatting action is executed.
  534 + Fixed so text/javascript type value get removed by default from script elements to match the HTML5 spec.
  535 +Version 4.0.2 (2013-07-18)
  536 + Fixed bug where formatting using menus or toolbars wasn't possible on Opera 12.15.
  537 + Fixed bug where IE 8 keyboard input would break after paste using the paste plugin.
  538 + Fixed bug where IE 8 would throw an error when populating image size in image dialog.
  539 + Fixed bug where image resizing wouldn't work properly on latest IE 10.0.9 version.
  540 + Fixed bug where focus wasn't moved to the hovered menu button in a menubar container.
  541 + Fixed bug where paste would produce an extra uneeded undo level on IE and Gecko.
  542 + Fixed so anchors gets listed in the link dialog as they where in TinyMCE 3.x.
  543 + Fixed so sub, sup and strike though gets passed through when pasting from Word.
  544 + Fixed so Ctrl+P can be used to print the current document. Patch contributed by jashua212.
  545 +Version 4.0.1 (2013-06-26)
  546 + Added new paste_as_text config option to force paste as plaintext mode.
  547 + Added new pastetext menu item that lets you toggle paste as plain text mode on/off.
  548 + Added new insertdatetime_element option to insertdatetime plugin. Enables HTML5 time element support.
  549 + Added new spellchecker_wordchar_pattern option to allow configuration of language specific characters.
  550 + Added new marker to formats menu displaying the formats used at the current selection/caret location.
  551 + Fixed bug where the position of the text color picker would be wrong if you switched to fullscreen.
  552 + Fixed bug where the link plugin would ask to add the mailto: prefix multiple times.
  553 + Fixed bug where list outdent operation could produce empty list elements on specific selections.
  554 + Fixed bug where element path wouldn't properly select parent elements on IE.
  555 + Fixed bug where IE would sometimes throw an exception when extrancting the current selection range.
  556 + Fixed bug where line feeds wasn't properly rendered in source view on IE.
  557 + Fixed bug where word count wouldn't be properly rendered on IE 7.
  558 + Fixed bug where menubuttons/listboxes would have an incorrect height on IE 7.
  559 + Fixed bug where browser spellchecking was enabled while editing inline on IE 10.
  560 + Fixed bug where spellchecker wouldn't properly find non English words.
  561 + Fixed bug where deactivating inline editor instances would force padding-top: 0 on page body.
  562 + Fixed bug where jQuery would initialize editors multiple times since it didn't check if the editor already existed.
  563 + Fixed bug where it wasn't possible to paste contents on IE 10 in modern UI mode when paste filtering was enabled.
  564 + Fixed bug where tabfocus plugin wouldn't work properly on inline editor instances.
  565 + Fixed bug where fullpage plugin would clear the existing HTML head if contents where inserted into the editor.
  566 + Fixed bug where deleting all table rows/columns in a table would cause an exception to be thrown on IE.
  567 + Fixed so color button panels gets toggled on/off when activated/deactivated.
  568 + Fixed so format menu items that can't be applied to the current selection gets disabled.
  569 + Fixed so the icon parameter for addButton isn't automatically filled if a button text is provided.
  570 + Fixed so image size fields gets updated when selecting a new image in the image dialog.
  571 + Fixed so it doesn't load any language pack if the language option is set to "en".
  572 + Fixed so ctrl+shift+z works as an alternative redo shortcut to match a common Mac OS X shortcut.
  573 + Fixed so it's not possible to drag/drop in images in Gecko by default when paste plugin is enabled.
  574 + Fixed so format menu item texts gets translated using the specified language pack.
  575 + Fixed so the image dialog title is the same as the insert/edit image button text.
  576 + Fixed so paste as plain text produces BR:s in PRE block and when forced_root_block is disabled.
  577 +Version 4.0 (2013-06-13)
  578 + Added new insertdate_dateformat, insertdate_timeformat and insertdate_formats options to insertdatetime.
  579 + Added new font_formats, fontsize_formats and block_formats options to configure fontselect, fontsizeselect and formatselect.
  580 + Added new table_clone_elements option to table plugin. Enables you to specify what elements to clone when adding columns/rows.
  581 + Added new auto detect logic for site and email urls in link plugin to match the logic found in 3.x.
  582 + Added new getParams/setParams to WindowManager to make it easier to handle params to iframe based dialogs. Contributed by Ryan Demmer.
  583 + Added new textcolor options that enables you to specify the colors you want to display. Contributed by Jennifer Arsenault.
  584 + Added new external file support for link_list and image_list options. The file format is a simple JSON file.
  585 + Added new "both" mode for the resize option. Enables resizing in both width and height.
  586 + Added new paste_data_images option that allows you to enable/disable paste of data images.
  587 + Added new fixed_toolbar_container option that allows you to add a fixed container for the inline toolbar.
  588 + Fixed so font name, font size and block format select boxes gets updated with the current format.
  589 + Fixed so the resizeTo/resizeBy methods for the theme are exposed as it as in 3.x.
  590 + Fixed so the textcolor controls are splitbuttons as in 3.x. Patch contributed by toxalot/jashua212.
  591 + Fixed bug where the theme content css wasn't loaded into the preview dialog.
  592 + Fixed bug where the template description in template dialog wouldn't display the text correctly.
  593 + Fixed bug where various UI elements wasn't properly removed when an editor instance was removed.
  594 + Fixed bug where editing links in inline mode would fail on WebKit.
  595 + Fixed bug where the pagebreak_separator option in the pagebreak plugin wasn't working properly.
  596 + Fixed bug where the child panels of the float panel in inline mode wasn't properly placed.
  597 + Fixed bug where the float panel children of windows wasn't position fixed.
  598 + Fixed bug where the size of the ok button was hardcoded, caused issues with i18n.
  599 + Fixed bug where single comment in editor would cause exceptions due to resolve path logic not detecting elements only.
  600 + Fixed bug where switching alignment of tables in dialogs wouldn't properly remove existing alignments.
  601 + Fixed bug where the table properties dialog would show columns/rows textboxes.
  602 + Fixed bug where jQuery wasn't used instead of Sizzle in the jQuery version of TinyMCE.
  603 + Fixed bug where setting resize option to false whouldn't properly render the word count.
  604 + Fixed bug where table row type change would produce multiple table section elements.
  605 + Fixed bug where table row type change on multiple rows would add them in incorrect order.
  606 + Fixed bug where fullscreen plugin would maximize the editor on resize after toggling it off.
  607 + Fixed bug where context menu would be position at an incorrect coordinate in inline mode.
  608 + Fixed bug where inserting lists in inline mode on IE would produce errors since the body would be converted.
  609 + Fixed bug where the body couldn't be styled properly in custom content_css files.
  610 + Fixed bug where template plugins menu item would override the image menu item.
  611 + Fixed bug where IE 7-8 would render the text inside inputs at the wrong vertical location.
  612 + Fixed bug where IE configured to IE 7 compatibility mode wouldn't render the icons properly.
  613 + Fixed bug where editor.focus wouldn't properly fire the focusin event on WebKit.
  614 + Fixed bug where some keyboard shortcuts wouldn't work on IE 8.
  615 + Fixed bug where the undo state wasn't updated until the end of a typing level.
  616 + Fixed bug where keyboard shortcuts on Mac OS wasn't working correctly.
  617 + Fixed bug where empty inline elements would be created when toggling formatting of in empty block.
  618 + Fixed bug where applying styles on WebKit would fail in inline mode if the user released the mouse button outside the body.
  619 + Fixed bug where the visual aids menu item wasn't selected if the editor was empty.
  620 + Fixed so the isDirty/isNotDirty states gets updated to true/false on save() and change events.
  621 + Fixed so skins have separate CSS files for inline and iframe mode.
  622 + Fixed so menus and tool tips gets constrained to the current viewport.
  623 + Fixed so an error is thrown if users load jQuery after the jQuery version of TinyMCE.
  624 + Fixed so the filetype for media dialog passes out media instead of image as file type.
  625 + Fixed so it's possible to disable the toolbar by setting it to false.
  626 + Fixed so autoresize plugin isn't initialized when the editor is in inline mode.
  627 + Fixed so the inline editing toolbar will be rendered below elements if it doesn't fit above it.
  628 +Version 4.0b3 (2013-05-15)
  629 + Added new optional advanced tab for image dialog with hspace, vspace, border and style.
  630 + Added new change event that gets fired when undo levels are added to editor instances.
  631 + Added new removed_menuitems option enables you to list menu items to remove from menus.
  632 + Added new external_plugins option enables you to specify external locations for plugins.
  633 + Added new language_url option enables you to specify an external location for the language pack.
  634 + Added new table toolbar control that displays a menu for inserting/editing menus.
  635 + Fixed bug where IE 10 wouldn't load files properly from cache.
  636 + Fixed bug where image dialog wouldn't properly remove width/height if blanked.
  637 + Fixed bug where all events wasn't properly unbound when editor instances where removed.
  638 + Fixed bug where data- attributes wasn't working properly in the SaxParser.
  639 + Fixed bug where Gecko wouldn't properly render broken images.
  640 + Fixed bug where Gecko wouldn't produce the same error dialog on paste as other browsers.
  641 + Fixed bug where is wasn't possible to prevent execCommands in beforeExecCommand event.
  642 + Fixed bug where the fullpage_hide_in_source_view option wasn't working in the fullpage plugin.
  643 + Fixed bug where the WindowManager close method wouldn't properly close the top most window.
  644 + Fixed bug where it wasn't possible to paste in IE 10 due to JS exception.
  645 + Fixed bug where tab key didn't move to the right child control in tabpanels.
  646 + Fixed bug where enter inside a form would focus the first button like control in TinyMCE.
  647 + Fixed bug where it would match scripts that looked like the tinymce base directory incorrectly.
  648 + Fixed bug where the spellchecker wouldn't properly toggle off the spellcheck mode if no errors where found.
  649 + Fixed bug in searchreplace plugin where it would remove all spans instead of the marker spans.
  650 + Fixed issue where selector wouldn't disable existing mode setting.
  651 + Fixed so it's easier to configure the menu and menubar.
  652 + Fixed so bodyId/bodyClass is applied to preview as it's done to the editor iframe.
  653 +Version 4.0b2 (2013-04-24)
  654 + Added new rel_list option to link plugin. Enables you to specify values for a rel drop down.
  655 + Added new target_list option to link plugin. Enables you to add to or disable the link targets.
  656 + Added new link_list option to link plugin. Enables you to specify a list of links to pick from.
  657 + Added new image_list option to image pluigin. Enables you to specify a list of images to pick from.
  658 + Added new textcolor plugin. This plugin holds the text color and text background color buttons.
  659 + Fixed bug where alignment of images wasn't working properly on Firefox.
  660 + Fixed bug where IE 8 would throw error when inserting a table.
  661 + Fixed bug where IE 8 wouldn't render the element path properly.
  662 + Fixed bug where old IE versions would render a red focus border.
  663 + Fixed bug where old IE versions would render a frameborder for iframes.
  664 + Fixed bug where WebKit wouldn't properly open the cell properties dialog on edge case selection.
  665 + Fixed bug where charmap wouldn't correctly render all characters in grid.
  666 + Fixed bug where link dialog wouldn't update the link text properly.
  667 + Fixed bug where the focus/blur states on inline editors wasn't handled correctly on IE.
  668 + Fixed bug where IE would throw "unknown error" exception sometimes in ForceBlocks logic.
  669 + Fixed bug where IE would't properly render disabled buttons in button groups.
  670 + Fixed bug where tab key wouldn't properly move to next input field in dialogs.
  671 + Fixed bug where resize handles for tables and images would appear at wrong positions on IE 8.
  672 + Fixed bug where dialogs would produce stack overflow if title was wider than content.
  673 + Fixed bug with table cell/row menu items being enabled even if no cell was selected.
  674 + Fixed so the text to display is after the URL field in the link dialog.
  675 + Fixed so the width setting applies to the editor panel in modern theme.
  676 + Fixed so it's easier to make custom icons for buttons using plain old images.
  677 +Version 4.0b1 (2013-04-11)
  678 + Added new node.js based build process used uglify, amdlc, jake etc.
  679 + Added new package.json to enable easy installation of dependent npm packages used for building.
  680 + Added new link, image, charmap, anchor, code, hr plugins since these are now moved out of the theme.
  681 + Rewrote all plugins and themes from scratch so they match the new UI framework.
  682 + Replaced all events to use the more common <target>.on/off(<event>) methods instead of <target>.<event>.add/remove.
  683 + Rewrote the TinyMCE core to use AMD style modules. Gets compiled to an inline library using amdlc.
  684 + Rewrote all core logic to pass jshint rules. Each file has specific jshint rules.
  685 + Removed all IE6 specific logic since 4.x will no longer support such an old browser.
  686 + Reworked the file names and directory structure of the whole project to be more similar to other JS projects.
  687 + Replaced tinymce.util.Cookie with tinymce.util.LocalStorage. Fallback to userData for IE 7 native localStorage for the rest.
  688 + Replaced the old 3.x UI with a new modern UI framework.
  689 + Removed "simple" theme and added new "modern" theme.
  690 + Removed advhr, advimage, advlink, iespell, inlinepopups, xhtmlxtras and style plugins.
  691 + Updated Sizzle to the latest version.
... ...
public/javascripts/tinymce/examples/accessibility.html
... ... @@ -1,101 +0,0 @@
1   -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2   -<html xmlns="http://www.w3.org/1999/xhtml">
3   -<head>
4   -<title>Full featured example</title>
5   -
6   -<!-- TinyMCE -->
7   -<script type="text/javascript" src="../jscripts/tiny_mce/tiny_mce.js"></script>
8   -<script type="text/javascript">
9   - tinyMCE.init({
10   - // General options
11   - mode : "textareas",
12   - theme : "advanced",
13   - plugins : "pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,wordcount,advlist,autosave",
14   -
15   - // Theme options
16   - theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
17   - theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
18   - theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
19   - theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak,restoredraft",
20   - theme_advanced_toolbar_location : "top",
21   - theme_advanced_toolbar_align : "left",
22   - theme_advanced_statusbar_location : "bottom",
23   - theme_advanced_resizing : true,
24   -
25   - // Example content CSS (should be your site CSS)
26   - // using false to ensure that the default browser settings are used for best Accessibility
27   - // ACCESSIBILITY SETTINGS
28   - content_css : false,
29   - // Use browser preferred colors for dialogs.
30   - browser_preferred_colors : true,
31   - detect_highcontrast : true,
32   -
33   - // Drop lists for link/image/media/template dialogs
34   - template_external_list_url : "lists/template_list.js",
35   - external_link_list_url : "lists/link_list.js",
36   - external_image_list_url : "lists/image_list.js",
37   - media_external_list_url : "lists/media_list.js",
38   -
39   - // Style formats
40   - style_formats : [
41   - {title : 'Bold text', inline : 'b'},
42   - {title : 'Red text', inline : 'span', styles : {color : '#ff0000'}},
43   - {title : 'Red header', block : 'h1', styles : {color : '#ff0000'}},
44   - {title : 'Example 1', inline : 'span', classes : 'example1'},
45   - {title : 'Example 2', inline : 'span', classes : 'example2'},
46   - {title : 'Table styles'},
47   - {title : 'Table row 1', selector : 'tr', classes : 'tablerow1'}
48   - ],
49   -
50   - // Replace values for the template plugin
51   - template_replace_values : {
52   - username : "Some User",
53   - staffid : "991234"
54   - }
55   - });
56   -</script>
57   -<!-- /TinyMCE -->
58   -
59   -</head>
60   -<body>
61   -
62   -<form method="post" action="http://tinymce.moxiecode.com/dump.php?example=true">
63   - <div>
64   - <h3>Full featured example, with Accessibility settings enabled</h3>
65   -
66   - <p>
67   - This page has got the TinyMCE set up to work with configurations related to accessiblity enabled.
68   - In particular
69   - <ul>
70   - <li>the <strong>content_css</strong> is set to false, to ensure that all default browser styles are used, </li>
71   - <li>the <strong>browser_preferred_colors</strong> dialog option is used to ensure that default css is used for dialogs, </li>
72   - <li>and the <strong>detect_highcontrast</strong> option has been set to ensure that highcontrast mode in Windows browsers
73   - is detected and the toolbars are displayed in a high contrast mode.</li>
74   - </ul>
75   - </p>
76   -
77   - <!-- Gets replaced with TinyMCE, remember HTML in a textarea should be encoded -->
78   - <div>
79   - <textarea id="elm1" name="elm1" rows="15" cols="80" style="width: 80%">
80   - &lt;p&gt;
81   - This is some example text that you can edit inside the &lt;strong&gt;TinyMCE editor&lt;/strong&gt;.
82   - &lt;/p&gt;
83   - &lt;p&gt;
84   - Nam nisi elit, cursus in rhoncus sit amet, pulvinar laoreet leo. Nam sed lectus quam, ut sagittis tellus. Quisque dignissim mauris a augue rutrum tempor. Donec vitae purus nec massa vestibulum ornare sit amet id tellus. Nunc quam mauris, fermentum nec lacinia eget, sollicitudin nec ante. Aliquam molestie volutpat dapibus. Nunc interdum viverra sodales. Morbi laoreet pulvinar gravida. Quisque ut turpis sagittis nunc accumsan vehicula. Duis elementum congue ultrices. Cras faucibus feugiat arcu quis lacinia. In hac habitasse platea dictumst. Pellentesque fermentum magna sit amet tellus varius ullamcorper. Vestibulum at urna augue, eget varius neque. Fusce facilisis venenatis dapibus. Integer non sem at arcu euismod tempor nec sed nisl. Morbi ultricies, mauris ut ultricies adipiscing, felis odio condimentum massa, et luctus est nunc nec eros.
85   - &lt;/p&gt;
86   - </textarea>
87   - </div>
88   -
89   - <br />
90   - <input type="submit" name="save" value="Submit" />
91   - <input type="reset" name="reset" value="Reset" />
92   - </div>
93   -</form>
94   -
95   -<script type="text/javascript">
96   -if (document.location.protocol == 'file:') {
97   - alert("The examples might not work properly on the local file system due to security settings in your browser. Please use a real webserver.");
98   -}
99   -</script>
100   -</body>
101   -</html>
public/javascripts/tinymce/examples/css/content.css
... ... @@ -1,105 +0,0 @@
1   -body {
2   - background-color: #FFFFFF;
3   - font-family: Verdana, Arial, Helvetica, sans-serif;
4   - font-size: 10px;
5   - scrollbar-3dlight-color: #F0F0EE;
6   - scrollbar-arrow-color: #676662;
7   - scrollbar-base-color: #F0F0EE;
8   - scrollbar-darkshadow-color: #DDDDDD;
9   - scrollbar-face-color: #E0E0DD;
10   - scrollbar-highlight-color: #F0F0EE;
11   - scrollbar-shadow-color: #F0F0EE;
12   - scrollbar-track-color: #F5F5F5;
13   -}
14   -
15   -td {
16   - font-family: Verdana, Arial, Helvetica, sans-serif;
17   - font-size: 10px;
18   -}
19   -
20   -pre {
21   - font-family: Verdana, Arial, Helvetica, sans-serif;
22   - font-size: 10px;
23   -}
24   -
25   -.example1 {
26   - font-weight: bold;
27   - font-size: 14px
28   -}
29   -
30   -.example2 {
31   - font-weight: bold;
32   - font-size: 12px;
33   - color: #FF0000
34   -}
35   -
36   -.tablerow1 {
37   - background-color: #BBBBBB;
38   -}
39   -
40   -thead {
41   - background-color: #FFBBBB;
42   -}
43   -
44   -tfoot {
45   - background-color: #BBBBFF;
46   -}
47   -
48   -th {
49   - font-family: Verdana, Arial, Helvetica, sans-serif;
50   - font-size: 13px;
51   -}
52   -
53   -/* Basic formats */
54   -
55   -.bold {
56   - font-weight: bold;
57   -}
58   -
59   -.italic {
60   - font-style: italic;
61   -}
62   -
63   -.underline {
64   - text-decoration: underline;
65   -}
66   -
67   -/* Global align classes */
68   -
69   -.left {
70   - text-align: inherit;
71   -}
72   -
73   -.center {
74   - text-align: center;
75   -}
76   -
77   -.right {
78   - text-align: right;
79   -}
80   -
81   -.full {
82   - text-align: justify
83   -}
84   -
85   -/* Image and table specific aligns */
86   -
87   -img.left, table.left {
88   - float: left;
89   - text-align: inherit;
90   -}
91   -
92   -img.center, table.center {
93   - margin-left: auto;
94   - margin-right: auto;
95   - text-align: inherit;
96   -}
97   -
98   -img.center {
99   - display: block;
100   -}
101   -
102   -img.right, table.right {
103   - float: right;
104   - text-align: inherit;
105   -}
public/javascripts/tinymce/examples/css/word.css
... ... @@ -1,53 +0,0 @@
1   -body {
2   - background-color: #FFFFFF;
3   - font-family: Verdana, Arial, Helvetica, sans-serif;
4   - font-size: 10px;
5   - scrollbar-3dlight-color: #F0F0EE;
6   - scrollbar-arrow-color: #676662;
7   - scrollbar-base-color: #F0F0EE;
8   - scrollbar-darkshadow-color: #DDDDDD;
9   - scrollbar-face-color: #E0E0DD;
10   - scrollbar-highlight-color: #F0F0EE;
11   - scrollbar-shadow-color: #F0F0EE;
12   - scrollbar-track-color: #F5F5F5;
13   -}
14   -
15   -p {margin:0; padding:0;}
16   -
17   -td {
18   - font-family: Verdana, Arial, Helvetica, sans-serif;
19   - font-size: 10px;
20   -}
21   -
22   -pre {
23   - font-family: Verdana, Arial, Helvetica, sans-serif;
24   - font-size: 10px;
25   -}
26   -
27   -.example1 {
28   - font-weight: bold;
29   - font-size: 14px
30   -}
31   -
32   -.example2 {
33   - font-weight: bold;
34   - font-size: 12px;
35   - color: #FF0000
36   -}
37   -
38   -.tablerow1 {
39   - background-color: #BBBBBB;
40   -}
41   -
42   -thead {
43   - background-color: #FFBBBB;
44   -}
45   -
46   -tfoot {
47   - background-color: #BBBBFF;
48   -}
49   -
50   -th {
51   - font-family: Verdana, Arial, Helvetica, sans-serif;
52   - font-size: 13px;
53   -}
public/javascripts/tinymce/examples/custom_formats.html
... ... @@ -1,111 +0,0 @@
1   -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2   -<html xmlns="http://www.w3.org/1999/xhtml">
3   -<head>
4   -<title>Custom formats example</title>
5   -
6   -<!-- TinyMCE -->
7   -<script type="text/javascript" src="../jscripts/tiny_mce/tiny_mce.js"></script>
8   -<script type="text/javascript">
9   - tinyMCE.init({
10   - // General options
11   - mode : "textareas",
12   - theme : "advanced",
13   - plugins : "autolink,lists,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,wordcount,advlist,autosave",
14   -
15   - // Theme options
16   - theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
17   - theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
18   - theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
19   - theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak,restoredraft",
20   - theme_advanced_toolbar_location : "top",
21   - theme_advanced_toolbar_align : "left",
22   - theme_advanced_statusbar_location : "bottom",
23   - theme_advanced_resizing : true,
24   -
25   - // Example content CSS (should be your site CSS)
26   - content_css : "css/content.css",
27   -
28   - // Drop lists for link/image/media/template dialogs
29   - template_external_list_url : "lists/template_list.js",
30   - external_link_list_url : "lists/link_list.js",
31   - external_image_list_url : "lists/image_list.js",
32   - media_external_list_url : "lists/media_list.js",
33   -
34   - // Style formats
35   - style_formats : [
36   - {title : 'Bold text', inline : 'b'},
37   - {title : 'Red text', inline : 'span', styles : {color : '#ff0000'}},
38   - {title : 'Red header', block : 'h1', styles : {color : '#ff0000'}},
39   - {title : 'Example 1', inline : 'span', classes : 'example1'},
40   - {title : 'Example 2', inline : 'span', classes : 'example2'},
41   - {title : 'Table styles'},
42   - {title : 'Table row 1', selector : 'tr', classes : 'tablerow1'}
43   - ],
44   -
45   - formats : {
46   - alignleft : {selector : 'p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li,table,img', classes : 'left'},
47   - aligncenter : {selector : 'p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li,table,img', classes : 'center'},
48   - alignright : {selector : 'p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li,table,img', classes : 'right'},
49   - alignfull : {selector : 'p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li,table,img', classes : 'full'},
50   - bold : {inline : 'span', 'classes' : 'bold'},
51   - italic : {inline : 'span', 'classes' : 'italic'},
52   - underline : {inline : 'span', 'classes' : 'underline', exact : true},
53   - strikethrough : {inline : 'del'}
54   - },
55   -
56   - // Replace values for the template plugin
57   - template_replace_values : {
58   - username : "Some User",
59   - staffid : "991234"
60   - }
61   - });
62   -</script>
63   -<!-- /TinyMCE -->
64   -
65   -</head>
66   -<body>
67   -
68   -<form method="post" action="http://tinymce.moxiecode.com/dump.php?example=true">
69   - <div>
70   - <h3>Custom formats example</h3>
71   -
72   - <p>
73   - This example shows you how to override the default formats for bold, italic, underline, strikethough and alignment to use classes instead of inline styles.
74   - There are more examples on how to use TinyMCE in the <a href="http://tinymce.moxiecode.com/examples/">Wiki</a>.
75   - </p>
76   -
77   - <!-- Gets replaced with TinyMCE, remember HTML in a textarea should be encoded -->
78   - <div>
79   - <textarea id="elm1" name="elm1" rows="15" cols="80" style="width: 80%">
80   - &lt;p&gt;
81   - This is some example text that you can edit inside the &lt;strong&gt;TinyMCE editor&lt;/strong&gt;.
82   - &lt;/p&gt;
83   - &lt;p&gt;
84   - Nam nisi elit, cursus in rhoncus sit amet, pulvinar laoreet leo. Nam sed lectus quam, ut sagittis tellus. Quisque dignissim mauris a augue rutrum tempor. Donec vitae purus nec massa vestibulum ornare sit amet id tellus. Nunc quam mauris, fermentum nec lacinia eget, sollicitudin nec ante. Aliquam molestie volutpat dapibus. Nunc interdum viverra sodales. Morbi laoreet pulvinar gravida. Quisque ut turpis sagittis nunc accumsan vehicula. Duis elementum congue ultrices. Cras faucibus feugiat arcu quis lacinia. In hac habitasse platea dictumst. Pellentesque fermentum magna sit amet tellus varius ullamcorper. Vestibulum at urna augue, eget varius neque. Fusce facilisis venenatis dapibus. Integer non sem at arcu euismod tempor nec sed nisl. Morbi ultricies, mauris ut ultricies adipiscing, felis odio condimentum massa, et luctus est nunc nec eros.
85   - &lt;/p&gt;
86   - </textarea>
87   - </div>
88   -
89   - <!-- Some integration calls -->
90   - <a href="javascript:;" onmousedown="tinyMCE.get('elm1').show();">[Show]</a>
91   - <a href="javascript:;" onmousedown="tinyMCE.get('elm1').hide();">[Hide]</a>
92   - <a href="javascript:;" onmousedown="tinyMCE.get('elm1').execCommand('Bold');">[Bold]</a>
93   - <a href="javascript:;" onmousedown="alert(tinyMCE.get('elm1').getContent());">[Get contents]</a>
94   - <a href="javascript:;" onmousedown="alert(tinyMCE.get('elm1').selection.getContent());">[Get selected HTML]</a>
95   - <a href="javascript:;" onmousedown="alert(tinyMCE.get('elm1').selection.getContent({format : 'text'}));">[Get selected text]</a>
96   - <a href="javascript:;" onmousedown="alert(tinyMCE.get('elm1').selection.getNode().nodeName);">[Get selected element]</a>
97   - <a href="javascript:;" onmousedown="tinyMCE.execCommand('mceInsertContent',false,'<b>Hello world!!</b>');">[Insert HTML]</a>
98   - <a href="javascript:;" onmousedown="tinyMCE.execCommand('mceReplaceContent',false,'<b>{$selection}</b>');">[Replace selection]</a>
99   -
100   - <br />
101   - <input type="submit" name="save" value="Submit" />
102   - <input type="reset" name="reset" value="Reset" />
103   - </div>
104   -</form>
105   -<script type="text/javascript">
106   -if (document.location.protocol == 'file:') {
107   - alert("The examples might not work properly on the local file system due to security settings in your browser. Please use a real webserver.");
108   -}
109   -</script>
110   -</body>
111   -</html>
public/javascripts/tinymce/examples/full.html
... ... @@ -1,101 +0,0 @@
1   -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2   -<html xmlns="http://www.w3.org/1999/xhtml">
3   -<head>
4   -<title>Full featured example</title>
5   -<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6   -<!-- TinyMCE -->
7   -<script type="text/javascript" src="../jscripts/tiny_mce/tiny_mce.js"></script>
8   -<script type="text/javascript">
9   - tinyMCE.init({
10   - // General options
11   - mode : "textareas",
12   - theme : "advanced",
13   - plugins : "autolink,lists,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,wordcount,advlist,autosave",
14   -
15   - // Theme options
16   - theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
17   - theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
18   - theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
19   - theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak,restoredraft",
20   - theme_advanced_toolbar_location : "top",
21   - theme_advanced_toolbar_align : "left",
22   - theme_advanced_statusbar_location : "bottom",
23   - theme_advanced_resizing : true,
24   -
25   - // Example content CSS (should be your site CSS)
26   - content_css : "css/content.css",
27   -
28   - // Drop lists for link/image/media/template dialogs
29   - template_external_list_url : "lists/template_list.js",
30   - external_link_list_url : "lists/link_list.js",
31   - external_image_list_url : "lists/image_list.js",
32   - media_external_list_url : "lists/media_list.js",
33   -
34   - // Style formats
35   - style_formats : [
36   - {title : 'Bold text', inline : 'b'},
37   - {title : 'Red text', inline : 'span', styles : {color : '#ff0000'}},
38   - {title : 'Red header', block : 'h1', styles : {color : '#ff0000'}},
39   - {title : 'Example 1', inline : 'span', classes : 'example1'},
40   - {title : 'Example 2', inline : 'span', classes : 'example2'},
41   - {title : 'Table styles'},
42   - {title : 'Table row 1', selector : 'tr', classes : 'tablerow1'}
43   - ],
44   -
45   - // Replace values for the template plugin
46   - template_replace_values : {
47   - username : "Some User",
48   - staffid : "991234"
49   - }
50   - });
51   -</script>
52   -<!-- /TinyMCE -->
53   -
54   -</head>
55   -<body>
56   -
57   -<form method="post" action="http://tinymce.moxiecode.com/dump.php?example=true">
58   - <div>
59   - <h3>Full featured example</h3>
60   -
61   - <p>
62   - This page shows all available buttons and plugins that are included in the TinyMCE core package.
63   - There are more examples on how to use TinyMCE in the <a href="http://tinymce.moxiecode.com/examples/">Wiki</a>.
64   - </p>
65   -
66   - <!-- Gets replaced with TinyMCE, remember HTML in a textarea should be encoded -->
67   - <div>
68   - <textarea id="elm1" name="elm1" rows="15" cols="80" style="width: 80%">
69   - &lt;p&gt;
70   - This is some example text that you can edit inside the &lt;strong&gt;TinyMCE editor&lt;/strong&gt;.
71   - &lt;/p&gt;
72   - &lt;p&gt;
73   - Nam nisi elit, cursus in rhoncus sit amet, pulvinar laoreet leo. Nam sed lectus quam, ut sagittis tellus. Quisque dignissim mauris a augue rutrum tempor. Donec vitae purus nec massa vestibulum ornare sit amet id tellus. Nunc quam mauris, fermentum nec lacinia eget, sollicitudin nec ante. Aliquam molestie volutpat dapibus. Nunc interdum viverra sodales. Morbi laoreet pulvinar gravida. Quisque ut turpis sagittis nunc accumsan vehicula. Duis elementum congue ultrices. Cras faucibus feugiat arcu quis lacinia. In hac habitasse platea dictumst. Pellentesque fermentum magna sit amet tellus varius ullamcorper. Vestibulum at urna augue, eget varius neque. Fusce facilisis venenatis dapibus. Integer non sem at arcu euismod tempor nec sed nisl. Morbi ultricies, mauris ut ultricies adipiscing, felis odio condimentum massa, et luctus est nunc nec eros.
74   - &lt;/p&gt;
75   - </textarea>
76   - </div>
77   -
78   - <!-- Some integration calls -->
79   - <a href="javascript:;" onclick="tinyMCE.get('elm1').show();return false;">[Show]</a>
80   - <a href="javascript:;" onclick="tinyMCE.get('elm1').hide();return false;">[Hide]</a>
81   - <a href="javascript:;" onclick="tinyMCE.get('elm1').execCommand('Bold');return false;">[Bold]</a>
82   - <a href="javascript:;" onclick="alert(tinyMCE.get('elm1').getContent());return false;">[Get contents]</a>
83   - <a href="javascript:;" onclick="alert(tinyMCE.get('elm1').selection.getContent());return false;">[Get selected HTML]</a>
84   - <a href="javascript:;" onclick="alert(tinyMCE.get('elm1').selection.getContent({format : 'text'}));return false;">[Get selected text]</a>
85   - <a href="javascript:;" onclick="alert(tinyMCE.get('elm1').selection.getNode().nodeName);return false;">[Get selected element]</a>
86   - <a href="javascript:;" onclick="tinyMCE.execCommand('mceInsertContent',false,'<b>Hello world!!</b>');return false;">[Insert HTML]</a>
87   - <a href="javascript:;" onclick="tinyMCE.execCommand('mceReplaceContent',false,'<b>{$selection}</b>');return false;">[Replace selection]</a>
88   -
89   - <br />
90   - <input type="submit" name="save" value="Submit" />
91   - <input type="reset" name="reset" value="Reset" />
92   - </div>
93   -</form>
94   -
95   -<script type="text/javascript">
96   -if (document.location.protocol == 'file:') {
97   - alert("The examples might not work properly on the local file system due to security settings in your browser. Please use a real webserver.");
98   -}
99   -</script>
100   -</body>
101   -</html>
public/javascripts/tinymce/examples/index.html
... ... @@ -1,10 +0,0 @@
1   -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
2   -<html>
3   -<head>
4   - <title>TinyMCE examples</title>
5   -</head>
6   -<frameset cols="180,80%">
7   - <frame src="menu.html" name="menu" />
8   - <frame src="full.html" name="main" />
9   -</frameset>
10   -</html>
public/javascripts/tinymce/examples/lists/image_list.js
... ... @@ -1,9 +0,0 @@
1   -// This list may be created by a server logic page PHP/ASP/ASPX/JSP in some backend system.
2   -// There images will be displayed as a dropdown in all image dialogs if the "external_link_image_url"
3   -// option is defined in TinyMCE init.
4   -
5   -var tinyMCEImageList = new Array(
6   - // Name, URL
7   - ["Logo 1", "media/logo.jpg"],
8   - ["Logo 2 Over", "media/logo_over.jpg"]
9   -);
public/javascripts/tinymce/examples/lists/link_list.js
... ... @@ -1,10 +0,0 @@
1   -// This list may be created by a server logic page PHP/ASP/ASPX/JSP in some backend system.
2   -// There links will be displayed as a dropdown in all link dialogs if the "external_link_list_url"
3   -// option is defined in TinyMCE init.
4   -
5   -var tinyMCELinkList = new Array(
6   - // Name, URL
7   - ["Moxiecode", "http://www.moxiecode.com"],
8   - ["Freshmeat", "http://www.freshmeat.com"],
9   - ["Sourceforge", "http://www.sourceforge.com"]
10   -);
public/javascripts/tinymce/examples/lists/media_list.js
... ... @@ -1,14 +0,0 @@
1   -// This list may be created by a server logic page PHP/ASP/ASPX/JSP in some backend system.
2   -// There flash movies will be displayed as a dropdown in all media dialog if the "media_external_list_url"
3   -// option is defined in TinyMCE init.
4   -
5   -var tinyMCEMediaList = [
6   - // Name, URL
7   - ["Some Flash", "media/sample.swf"],
8   - ["Some Quicktime", "media/sample.mov"],
9   - ["Some AVI", "media/sample.avi"],
10   - ["Some RealMedia", "media/sample.rm"],
11   - ["Some Shockwave", "media/sample.dcr"],
12   - ["Some Video", "media/sample.mp4"],
13   - ["Some FLV", "media/sample.flv"],
14   -];
15 0 \ No newline at end of file
public/javascripts/tinymce/examples/lists/template_list.js
... ... @@ -1,9 +0,0 @@
1   -// This list may be created by a server logic page PHP/ASP/ASPX/JSP in some backend system.
2   -// There templates will be displayed as a dropdown in all media dialog if the "template_external_list_url"
3   -// option is defined in TinyMCE init.
4   -
5   -var tinyMCETemplateList = [
6   - // Name, URL, Description
7   - ["Simple snippet", "templates/snippet1.htm", "Simple HTML snippet."],
8   - ["Layout", "templates/layout1.htm", "HTML Layout."]
9   -];
10 0 \ No newline at end of file
public/javascripts/tinymce/examples/media/logo.jpg

2.67 KB

public/javascripts/tinymce/examples/media/logo_over.jpg

6.32 KB

public/javascripts/tinymce/examples/media/sample.avi
No preview for this file type
public/javascripts/tinymce/examples/media/sample.dcr
No preview for this file type
public/javascripts/tinymce/examples/media/sample.flv
No preview for this file type
public/javascripts/tinymce/examples/media/sample.mov
No preview for this file type
public/javascripts/tinymce/examples/media/sample.ram
... ... @@ -1 +0,0 @@
1   -http://streaming.uga.edu/samples/ayp_lan.rm
2 0 \ No newline at end of file
public/javascripts/tinymce/examples/media/sample.rm
No preview for this file type
public/javascripts/tinymce/examples/media/sample.swf
No preview for this file type
public/javascripts/tinymce/examples/menu.html
... ... @@ -1,18 +0,0 @@
1   -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2   -<html xmlns="http://www.w3.org/1999/xhtml">
3   -<head>
4   -<title>Menu</title>
5   -<style>
6   -a {display:block;}
7   -</style>
8   -</head>
9   -<body>
10   -<h3>Examples</h3>
11   -<a href="full.html" target="main">Full featured</a>
12   -<a href="simple.html" target="main">Simple theme</a>
13   -<a href="skins.html" target="main">Skin support</a>
14   -<a href="word.html" target="main">Word processor</a>
15   -<a href="custom_formats.html" target="main">Custom formats</a>
16   -<a href="accessibility.html" target="main">Accessibility Options</a>
17   -</body>
18   -</html>
public/javascripts/tinymce/examples/simple.html
... ... @@ -1,47 +0,0 @@
1   -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2   -<html xmlns="http://www.w3.org/1999/xhtml">
3   -<head>
4   -<title>Simple theme example</title>
5   -
6   -<!-- TinyMCE -->
7   -<script type="text/javascript" src="../jscripts/tiny_mce/tiny_mce.js"></script>
8   -<script type="text/javascript">
9   - tinyMCE.init({
10   - mode : "textareas",
11   - theme : "simple"
12   - });
13   -</script>
14   -<!-- /TinyMCE -->
15   -
16   -</head>
17   -<body>
18   -
19   -<form method="post" action="http://tinymce.moxiecode.com/dump.php?example=true">
20   - <h3>Simple theme example</h3>
21   -
22   - <p>
23   - This page shows you the simple theme and it's core functionality you can extend it by changing the code use the advanced theme if you need to configure/add more buttons etc.
24   - There are more examples on how to use TinyMCE in the <a href="http://tinymce.moxiecode.com/examples/">Wiki</a>.
25   - </p>
26   -
27   - <!-- Gets replaced with TinyMCE, remember HTML in a textarea should be encoded -->
28   - <textarea id="elm1" name="elm1" rows="15" cols="80" style="width: 80%">
29   - &lt;p&gt;
30   - This is some example text that you can edit inside the &lt;strong&gt;TinyMCE editor&lt;/strong&gt;.
31   - &lt;/p&gt;
32   - &lt;p&gt;
33   - Nam nisi elit, cursus in rhoncus sit amet, pulvinar laoreet leo. Nam sed lectus quam, ut sagittis tellus. Quisque dignissim mauris a augue rutrum tempor. Donec vitae purus nec massa vestibulum ornare sit amet id tellus. Nunc quam mauris, fermentum nec lacinia eget, sollicitudin nec ante. Aliquam molestie volutpat dapibus. Nunc interdum viverra sodales. Morbi laoreet pulvinar gravida. Quisque ut turpis sagittis nunc accumsan vehicula. Duis elementum congue ultrices. Cras faucibus feugiat arcu quis lacinia. In hac habitasse platea dictumst. Pellentesque fermentum magna sit amet tellus varius ullamcorper. Vestibulum at urna augue, eget varius neque. Fusce facilisis venenatis dapibus. Integer non sem at arcu euismod tempor nec sed nisl. Morbi ultricies, mauris ut ultricies adipiscing, felis odio condimentum massa, et luctus est nunc nec eros.
34   - &lt;/p&gt;
35   - </textarea>
36   -
37   - <br />
38   - <input type="submit" name="save" value="Submit" />
39   - <input type="reset" name="reset" value="Reset" />
40   -</form>
41   -<script type="text/javascript">
42   -if (document.location.protocol == 'file:') {
43   - alert("The examples might not work properly on the local file system due to security settings in your browser. Please use a real webserver.");
44   -}
45   -</script>
46   -</body>
47   -</html>
public/javascripts/tinymce/examples/skins.html
... ... @@ -1,216 +0,0 @@
1   -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2   -<html xmlns="http://www.w3.org/1999/xhtml">
3   -<head>
4   -<title>Skin support example</title>
5   -
6   -<!-- TinyMCE -->
7   -<script type="text/javascript" src="../jscripts/tiny_mce/tiny_mce.js"></script>
8   -<script type="text/javascript">
9   - // Default skin
10   - tinyMCE.init({
11   - // General options
12   - mode : "exact",
13   - elements : "elm1",
14   - theme : "advanced",
15   - plugins : "autolink,lists,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,inlinepopups,autosave",
16   -
17   - // Theme options
18   - theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
19   - theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
20   - theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
21   - theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak,restoredraft",
22   - theme_advanced_toolbar_location : "top",
23   - theme_advanced_toolbar_align : "left",
24   - theme_advanced_statusbar_location : "bottom",
25   - theme_advanced_resizing : true,
26   -
27   - // Example content CSS (should be your site CSS)
28   - content_css : "css/content.css",
29   -
30   - // Drop lists for link/image/media/template dialogs
31   - template_external_list_url : "lists/template_list.js",
32   - external_link_list_url : "lists/link_list.js",
33   - external_image_list_url : "lists/image_list.js",
34   - media_external_list_url : "lists/media_list.js",
35   -
36   - // Replace values for the template plugin
37   - template_replace_values : {
38   - username : "Some User",
39   - staffid : "991234"
40   - }
41   - });
42   -
43   - // O2k7 skin
44   - tinyMCE.init({
45   - // General options
46   - mode : "exact",
47   - elements : "elm2",
48   - theme : "advanced",
49   - skin : "o2k7",
50   - plugins : "lists,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,inlinepopups,autosave",
51   -
52   - // Theme options
53   - theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
54   - theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
55   - theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
56   - theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak,restoredraft",
57   - theme_advanced_toolbar_location : "top",
58   - theme_advanced_toolbar_align : "left",
59   - theme_advanced_statusbar_location : "bottom",
60   - theme_advanced_resizing : true,
61   -
62   - // Example content CSS (should be your site CSS)
63   - content_css : "css/content.css",
64   -
65   - // Drop lists for link/image/media/template dialogs
66   - template_external_list_url : "lists/template_list.js",
67   - external_link_list_url : "lists/link_list.js",
68   - external_image_list_url : "lists/image_list.js",
69   - media_external_list_url : "lists/media_list.js",
70   -
71   - // Replace values for the template plugin
72   - template_replace_values : {
73   - username : "Some User",
74   - staffid : "991234"
75   - }
76   - });
77   -
78   - // O2k7 skin (silver)
79   - tinyMCE.init({
80   - // General options
81   - mode : "exact",
82   - elements : "elm3",
83   - theme : "advanced",
84   - skin : "o2k7",
85   - skin_variant : "silver",
86   - plugins : "lists,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,inlinepopups,autosave",
87   -
88   - // Theme options
89   - theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
90   - theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
91   - theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
92   - theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak,restoredraft",
93   - theme_advanced_toolbar_location : "top",
94   - theme_advanced_toolbar_align : "left",
95   - theme_advanced_statusbar_location : "bottom",
96   - theme_advanced_resizing : true,
97   -
98   - // Example content CSS (should be your site CSS)
99   - content_css : "css/content.css",
100   -
101   - // Drop lists for link/image/media/template dialogs
102   - template_external_list_url : "lists/template_list.js",
103   - external_link_list_url : "lists/link_list.js",
104   - external_image_list_url : "lists/image_list.js",
105   - media_external_list_url : "lists/media_list.js",
106   -
107   - // Replace values for the template plugin
108   - template_replace_values : {
109   - username : "Some User",
110   - staffid : "991234"
111   - }
112   - });
113   -
114   - // O2k7 skin (silver)
115   - tinyMCE.init({
116   - // General options
117   - mode : "exact",
118   - elements : "elm4",
119   - theme : "advanced",
120   - skin : "o2k7",
121   - skin_variant : "black",
122   - plugins : "lists,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,inlinepopups,autosave",
123   -
124   - // Theme options
125   - theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
126   - theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
127   - theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
128   - theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak,restoredraft",
129   - theme_advanced_toolbar_location : "top",
130   - theme_advanced_toolbar_align : "left",
131   - theme_advanced_statusbar_location : "bottom",
132   - theme_advanced_resizing : true,
133   -
134   - // Example content CSS (should be your site CSS)
135   - content_css : "css/content.css",
136   -
137   - // Drop lists for link/image/media/template dialogs
138   - template_external_list_url : "lists/template_list.js",
139   - external_link_list_url : "lists/link_list.js",
140   - external_image_list_url : "lists/image_list.js",
141   - media_external_list_url : "lists/media_list.js",
142   -
143   - // Replace values for the template plugin
144   - template_replace_values : {
145   - username : "Some User",
146   - staffid : "991234"
147   - }
148   - });
149   -</script>
150   -<!-- /TinyMCE -->
151   -
152   -</head>
153   -<body>
154   -
155   -<form method="post" action="http://tinymce.moxiecode.com/dump.php?example=true">
156   - <h3>Skin support example</h3>
157   -
158   - <p>
159   - This page displays the two skins that TinyMCE comes with. You can make your own by creating a CSS file in themes/advanced/skins/<yout skin>/ui.css
160   - There are more examples on how to use TinyMCE in the <a href="http://tinymce.moxiecode.com/examples/">Wiki</a>.
161   - </p>
162   -
163   - <!-- Gets replaced with TinyMCE, remember HTML in a textarea should be encoded -->
164   - <textarea id="elm1" name="elm1" rows="15" cols="80" style="width: 80%">
165   - &lt;p&gt;
166   - This is some example text that you can edit inside the &lt;strong&gt;TinyMCE editor&lt;/strong&gt;.
167   - &lt;/p&gt;
168   - &lt;p&gt;
169   - Nam nisi elit, cursus in rhoncus sit amet, pulvinar laoreet leo. Nam sed lectus quam, ut sagittis tellus. Quisque dignissim mauris a augue rutrum tempor. Donec vitae purus nec massa vestibulum ornare sit amet id tellus. Nunc quam mauris, fermentum nec lacinia eget, sollicitudin nec ante. Aliquam molestie volutpat dapibus. Nunc interdum viverra sodales. Morbi laoreet pulvinar gravida. Quisque ut turpis sagittis nunc accumsan vehicula. Duis elementum congue ultrices. Cras faucibus feugiat arcu quis lacinia. In hac habitasse platea dictumst. Pellentesque fermentum magna sit amet tellus varius ullamcorper. Vestibulum at urna augue, eget varius neque. Fusce facilisis venenatis dapibus. Integer non sem at arcu euismod tempor nec sed nisl. Morbi ultricies, mauris ut ultricies adipiscing, felis odio condimentum massa, et luctus est nunc nec eros.
170   - &lt;/p&gt;
171   - </textarea>
172   -
173   - <br />
174   -
175   - <textarea id="elm2" name="elm2" rows="15" cols="80" style="width: 80%">
176   - &lt;p&gt;
177   - This is some example text that you can edit inside the &lt;strong&gt;TinyMCE editor&lt;/strong&gt;.
178   - &lt;/p&gt;
179   - &lt;p&gt;
180   - Nam nisi elit, cursus in rhoncus sit amet, pulvinar laoreet leo. Nam sed lectus quam, ut sagittis tellus. Quisque dignissim mauris a augue rutrum tempor. Donec vitae purus nec massa vestibulum ornare sit amet id tellus. Nunc quam mauris, fermentum nec lacinia eget, sollicitudin nec ante. Aliquam molestie volutpat dapibus. Nunc interdum viverra sodales. Morbi laoreet pulvinar gravida. Quisque ut turpis sagittis nunc accumsan vehicula. Duis elementum congue ultrices. Cras faucibus feugiat arcu quis lacinia. In hac habitasse platea dictumst. Pellentesque fermentum magna sit amet tellus varius ullamcorper. Vestibulum at urna augue, eget varius neque. Fusce facilisis venenatis dapibus. Integer non sem at arcu euismod tempor nec sed nisl. Morbi ultricies, mauris ut ultricies adipiscing, felis odio condimentum massa, et luctus est nunc nec eros.
181   - &lt;/p&gt;
182   - </textarea>
183   -
184   - <br />
185   -
186   - <textarea id="elm3" name="elm3" rows="15" cols="80" style="width: 80%">
187   - &lt;p&gt;
188   - This is some example text that you can edit inside the &lt;strong&gt;TinyMCE editor&lt;/strong&gt;.
189   - &lt;/p&gt;
190   - &lt;p&gt;
191   - Nam nisi elit, cursus in rhoncus sit amet, pulvinar laoreet leo. Nam sed lectus quam, ut sagittis tellus. Quisque dignissim mauris a augue rutrum tempor. Donec vitae purus nec massa vestibulum ornare sit amet id tellus. Nunc quam mauris, fermentum nec lacinia eget, sollicitudin nec ante. Aliquam molestie volutpat dapibus. Nunc interdum viverra sodales. Morbi laoreet pulvinar gravida. Quisque ut turpis sagittis nunc accumsan vehicula. Duis elementum congue ultrices. Cras faucibus feugiat arcu quis lacinia. In hac habitasse platea dictumst. Pellentesque fermentum magna sit amet tellus varius ullamcorper. Vestibulum at urna augue, eget varius neque. Fusce facilisis venenatis dapibus. Integer non sem at arcu euismod tempor nec sed nisl. Morbi ultricies, mauris ut ultricies adipiscing, felis odio condimentum massa, et luctus est nunc nec eros.
192   - &lt;/p&gt;
193   - </textarea>
194   -
195   - <br />
196   -
197   - <textarea id="elm4" name="elm4" rows="15" cols="80" style="width: 80%">
198   - &lt;p&gt;
199   - This is some example text that you can edit inside the &lt;strong&gt;TinyMCE editor&lt;/strong&gt;.
200   - &lt;/p&gt;
201   - &lt;p&gt;
202   - Nam nisi elit, cursus in rhoncus sit amet, pulvinar laoreet leo. Nam sed lectus quam, ut sagittis tellus. Quisque dignissim mauris a augue rutrum tempor. Donec vitae purus nec massa vestibulum ornare sit amet id tellus. Nunc quam mauris, fermentum nec lacinia eget, sollicitudin nec ante. Aliquam molestie volutpat dapibus. Nunc interdum viverra sodales. Morbi laoreet pulvinar gravida. Quisque ut turpis sagittis nunc accumsan vehicula. Duis elementum congue ultrices. Cras faucibus feugiat arcu quis lacinia. In hac habitasse platea dictumst. Pellentesque fermentum magna sit amet tellus varius ullamcorper. Vestibulum at urna augue, eget varius neque. Fusce facilisis venenatis dapibus. Integer non sem at arcu euismod tempor nec sed nisl. Morbi ultricies, mauris ut ultricies adipiscing, felis odio condimentum massa, et luctus est nunc nec eros.
203   - &lt;/p&gt;
204   - </textarea>
205   -
206   - <br />
207   - <input type="submit" name="save" value="Submit" />
208   - <input type="reset" name="reset" value="Reset" />
209   -</form>
210   -<script type="text/javascript">
211   -if (document.location.protocol == 'file:') {
212   - alert("The examples might not work properly on the local file system due to security settings in your browser. Please use a real webserver.");
213   -}
214   -</script>
215   -</body>
216   -</html>
public/javascripts/tinymce/examples/templates/layout1.htm
... ... @@ -1,15 +0,0 @@
1   -<table border="1">
2   - <thead>
3   - <tr>
4   - <td>Column 1</td>
5   - <td>Column 2</td>
6   - </tr>
7   - </thead>
8   -
9   - <tbody>
10   - <tr>
11   - <td>Username: {$username}</td>
12   - <td>Staffid: {$staffid}</td>
13   - </tr>
14   - </tbody>
15   -</table>
public/javascripts/tinymce/examples/templates/snippet1.htm
... ... @@ -1 +0,0 @@
1   -This is just some <strong>code</strong>.
public/javascripts/tinymce/examples/translate.html
... ... @@ -1,80 +0,0 @@
1   -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2   -<html xmlns="http://www.w3.org/1999/xhtml">
3   -<head>
4   -<title>Full featured example</title>
5   -<style>
6   -body {font-family:Arial,Verdana; font-size: 12px;}
7   -</style>
8   -
9   -<!-- TinyMCE -->
10   -<script type="text/javascript" src="../jscripts/tiny_mce/tiny_mce_dev.js"></script>
11   -<script type="text/javascript">
12   - tinyMCE.init({
13   - // General options
14   - mode : "textareas",
15   - theme : "advanced",
16   - plugins : "safari,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template",
17   -
18   - // Theme options
19   - theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect",
20   - theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
21   - theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
22   - theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak",
23   - theme_advanced_toolbar_location : "top",
24   - theme_advanced_toolbar_align : "left",
25   - theme_advanced_path_location : "bottom",
26   - theme_advanced_resizing : true,
27   -
28   - // Example content CSS (should be your site CSS)
29   - content_css : "css/content.css",
30   -
31   - // Drop lists for link/image/media/template dialogs
32   - template_external_list_url : "lists/template_list.js",
33   - external_link_list_url : "lists/link_list.js",
34   - external_image_list_url : "lists/image_list.js",
35   - media_external_list_url : "lists/media_list.js",
36   -
37   - // Replace values for the template plugin
38   - template_replace_values : {
39   - username : "Some User",
40   - staffid : "991234"
41   - },
42   -
43   - // Enable translation mode
44   - translate_mode : true,
45   - language : "en"
46   - });
47   -</script>
48   -<!-- /TinyMCE -->
49   -
50   -</head>
51   -<body>
52   -
53   -<form method="post" action="http://tinymce.moxiecode.com/dump.php?example=true">
54   - <h3>Translation</h3>
55   -
56   - <p>This page enables you to translate TinyMCE by using XML files.</p>
57   - <p>Steps to translate:</p>
58   - <ol>
59   - <li>Download one of the language XML files from the TinyMCE site.</li>
60   - <li>Place it in /jscripts/tiny_mce/langs directory, for example /jscripts/tiny_mce/langs/sv.xml.</li>
61   - <li>Change the language init option in this file to match the XML file code. For example: sv</li>
62   - <li>TinyMCE will now use the XML file instead of the .js versions.</li>
63   - <li>Modify the XML file until everything is translated</li>
64   - <li>Modify the author information, this is optional.</li>
65   - <li>Upload the XML file to the TinyMCE site to share it with others.</li>
66   - <li>You can now download the .js versions of the language pack from the TinyMCE site.</li>
67   - </ol>
68   -
69   - <textarea id="elm1" name="elm1" rows="15" cols="80" style="width: 80%">
70   - &lt;p&gt;
71   - This is some example text that you can edit inside the &lt;strong&gt;TinyMCE editor&lt;/strong&gt;.
72   - &lt;/p&gt;
73   - &lt;p&gt;
74   - Nam nisi elit, cursus in rhoncus sit amet, pulvinar laoreet leo. Nam sed lectus quam, ut sagittis tellus. Quisque dignissim mauris a augue rutrum tempor. Donec vitae purus nec massa vestibulum ornare sit amet id tellus. Nunc quam mauris, fermentum nec lacinia eget, sollicitudin nec ante. Aliquam molestie volutpat dapibus. Nunc interdum viverra sodales. Morbi laoreet pulvinar gravida. Quisque ut turpis sagittis nunc accumsan vehicula. Duis elementum congue ultrices. Cras faucibus feugiat arcu quis lacinia. In hac habitasse platea dictumst. Pellentesque fermentum magna sit amet tellus varius ullamcorper. Vestibulum at urna augue, eget varius neque. Fusce facilisis venenatis dapibus. Integer non sem at arcu euismod tempor nec sed nisl. Morbi ultricies, mauris ut ultricies adipiscing, felis odio condimentum massa, et luctus est nunc nec eros.
75   - &lt;/p&gt;
76   - </textarea>
77   -</form>
78   -
79   -</body>
80   -</html>
public/javascripts/tinymce/examples/word.html
... ... @@ -1,72 +0,0 @@
1   -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2   -<html xmlns="http://www.w3.org/1999/xhtml">
3   -<head>
4   -<title>Word processor example</title>
5   -<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6   -<!-- TinyMCE -->
7   -<script type="text/javascript" src="../jscripts/tiny_mce/tiny_mce.js"></script>
8   -<script type="text/javascript">
9   - tinyMCE.init({
10   - // General options
11   - mode : "textareas",
12   - theme : "advanced",
13   - skin : "o2k7",
14   - plugins : "autolink,lists,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,inlinepopups,autosave",
15   -
16   - // Theme options
17   - theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect",
18   - theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
19   - theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
20   - theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak,restoredraft",
21   - theme_advanced_toolbar_location : "top",
22   - theme_advanced_toolbar_align : "left",
23   - theme_advanced_statusbar_location : "bottom",
24   - theme_advanced_resizing : true,
25   -
26   - // Example word content CSS (should be your site CSS) this one removes paragraph margins
27   - content_css : "css/word.css",
28   -
29   - // Drop lists for link/image/media/template dialogs
30   - template_external_list_url : "lists/template_list.js",
31   - external_link_list_url : "lists/link_list.js",
32   - external_image_list_url : "lists/image_list.js",
33   - media_external_list_url : "lists/media_list.js",
34   -
35   - // Replace values for the template plugin
36   - template_replace_values : {
37   - username : "Some User",
38   - staffid : "991234"
39   - }
40   - });
41   -</script>
42   -<!-- /TinyMCE -->
43   -
44   -</head>
45   -<body>
46   -
47   -<form method="post" action="http://tinymce.moxiecode.com/dump.php?example=true">
48   - <h3>Word processor example</h3>
49   -
50   - <p>
51   - This page shows you how to configure TinyMCE to work more like common word processors.
52   - There are more examples on how to use TinyMCE in the <a href="http://tinymce.moxiecode.com/examples/">Wiki</a>.
53   - </p>
54   -
55   - <!-- Gets replaced with TinyMCE, remember HTML in a textarea should be encoded -->
56   - <textarea id="elm1" name="elm1" rows="15" cols="80" style="width: 80%">
57   - &lt;p&gt;This is the first paragraph.&lt;/p&gt;
58   - &lt;p&gt;This is the second paragraph.&lt;/p&gt;
59   - &lt;p&gt;This is the third paragraph.&lt;/p&gt;
60   - </textarea>
61   -
62   - <br />
63   - <input type="submit" name="save" value="Submit" />
64   - <input type="reset" name="reset" value="Reset" />
65   -</form>
66   -<script type="text/javascript">
67   -if (document.location.protocol == 'file:') {
68   - alert("The examples might not work properly on the local file system due to security settings in your browser. Please use a real webserver.");
69   -}
70   -</script>
71   -</body>
72   -</html>
public/javascripts/tinymce/js/tinymce/jquery.tinymce.min.js 0 → 100644
... ... @@ -0,0 +1 @@
  1 +!function(e){function t(){function t(e){"remove"===e&&this.each(function(e,t){var n=r(t);n&&n.remove()}),this.find("span.mceEditor,div.mceEditor").each(function(e,t){var n=tinymce.get(t.id.replace(/_parent$/,""));n&&n.remove()})}function i(e){var n,i=this;if(null!=e)t.call(i),i.each(function(t,n){var i;(i=tinymce.get(n.id))&&i.setContent(e)});else if(i.length>0&&(n=tinymce.get(i[0].id)))return n.getContent()}function r(e){var t=null;return e&&e.id&&a.tinymce&&(t=tinymce.get(e.id)),t}function c(e){return!!(e&&e.length&&a.tinymce&&e.is(":tinymce"))}var o={};e.each(["text","html","val"],function(t,a){var u=o[a]=e.fn[a],s="text"===a;e.fn[a]=function(t){var a=this;if(!c(a))return u.apply(a,arguments);if(t!==n)return i.call(a.filter(":tinymce"),t),u.apply(a.not(":tinymce"),arguments),a;var o="",l=arguments;return(s?a:a.eq(0)).each(function(t,n){var i=r(n);o+=i?s?i.getContent().replace(/<(?:"[^"]*"|'[^']*'|[^'">])*>/g,""):i.getContent({save:!0}):u.apply(e(n),l)}),o}}),e.each(["append","prepend"],function(t,i){var a=o[i]=e.fn[i],u="prepend"===i;e.fn[i]=function(e){var t=this;return c(t)?e!==n?(t.filter(":tinymce").each(function(t,n){var i=r(n);i&&i.setContent(u?e+i.getContent():i.getContent()+e)}),a.apply(t.not(":tinymce"),arguments),t):void 0:a.apply(t,arguments)}}),e.each(["remove","replaceWith","replaceAll","empty"],function(n,i){var r=o[i]=e.fn[i];e.fn[i]=function(){return t.call(this,i),r.apply(this,arguments)}}),o.attr=e.fn.attr,e.fn.attr=function(t,a){var u=this,s=arguments;if(!t||"value"!==t||!c(u))return a!==n?o.attr.apply(u,s):o.attr.apply(u,s);if(a!==n)return i.call(u.filter(":tinymce"),a),o.attr.apply(u.not(":tinymce"),s),u;var l=u[0],m=r(l);return m?m.getContent({save:!0}):o.attr.apply(e(l),s)}}var n,i,r=[],a=window;e.fn.tinymce=function(n){function c(){var i=[],r=0;l||(t(),l=!0),m.each(function(e,t){var a,c=t.id,o=n.oninit;c||(t.id=c=tinymce.DOM.uniqueId()),tinymce.get(c)||(a=new tinymce.Editor(c,n,tinymce.EditorManager),i.push(a),a.on("init",function(){var e,t=o;m.css("visibility",""),o&&++r==i.length&&("string"==typeof t&&(e=-1===t.indexOf(".")?null:tinymce.resolve(t.replace(/\.\w+$/,"")),t=tinymce.resolve(t)),t.apply(e||tinymce,i))}))}),e.each(i,function(e,t){t.render()})}var o,u,s,l,m=this,p="";if(!m.length)return m;if(!n)return window.tinymce?tinymce.get(m[0].id):null;if(m.css("visibility","hidden"),a.tinymce||i||!(o=n.script_url))1===i?r.push(c):c();else{i=1,u=o.substring(0,o.lastIndexOf("/")),-1!=o.indexOf(".min")&&(p=".min"),a.tinymce=a.tinyMCEPreInit||{base:u,suffix:p},-1!=o.indexOf("gzip")&&(s=n.language||"en",o=o+(/\?/.test(o)?"&":"?")+"js=true&core=true&suffix="+escape(p)+"&themes="+escape(n.theme||"modern")+"&plugins="+escape(n.plugins||"")+"&languages="+(s||""),a.tinyMCE_GZ||(a.tinyMCE_GZ={start:function(){function t(e){tinymce.ScriptLoader.markDone(tinymce.baseURI.toAbsolute(e))}t("langs/"+s+".js"),t("themes/"+n.theme+"/theme"+p+".js"),t("themes/"+n.theme+"/langs/"+s+".js"),e.each(n.plugins.split(","),function(e,n){n&&(t("plugins/"+n+"/plugin"+p+".js"),t("plugins/"+n+"/langs/"+s+".js"))})},end:function(){}}));var f=document.createElement("script");f.type="text/javascript",f.onload=f.onreadystatechange=function(t){t=t||window.event,2===i||"load"!=t.type&&!/complete|loaded/.test(f.readyState)||(tinymce.dom.Event.domLoaded=1,i=2,n.script_loaded&&n.script_loaded(),c(),e.each(r,function(e,t){t()}))},f.src=o,document.body.appendChild(f)}return m},e.extend(e.expr[":"],{tinymce:function(e){return!!(e.id&&"tinymce"in window&&tinymce.get(e.id))}})}(jQuery);
0 2 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/langs/de.js 0 → 100644
... ... @@ -0,0 +1,197 @@
  1 +tinymce.addI18n('de',{
  2 +"Cut": "Ausschneiden",
  3 +"Heading 5": "\u00dcberschrift 5",
  4 +"Header 2": "\u00dcberschrift 2",
  5 +"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Ihr Browser unterst\u00fctzt leider keinen direkten Zugriff auf die Zwischenablage. Bitte benutzen Sie die Strg + X \/ C \/ V Tastenkombinationen.",
  6 +"Heading 4": "\u00dcberschrift 4",
  7 +"Div": "Textblock",
  8 +"Heading 2": "\u00dcberschrift 2",
  9 +"Paste": "Einf\u00fcgen",
  10 +"Close": "Schlie\u00dfen",
  11 +"Font Family": "Schriftart",
  12 +"Pre": "Vorformatierter Text",
  13 +"Align right": "Rechtsb\u00fcndig ausrichten",
  14 +"New document": "Neues Dokument",
  15 +"Blockquote": "Zitat",
  16 +"Numbered list": "Nummerierte Liste",
  17 +"Heading 1": "\u00dcberschrift 1",
  18 +"Headings": "\u00dcberschriften",
  19 +"Increase indent": "Einzug vergr\u00f6\u00dfern",
  20 +"Formats": "Formate",
  21 +"Headers": "\u00dcberschriften",
  22 +"Select all": "Alles ausw\u00e4hlen",
  23 +"Header 3": "\u00dcberschrift 3",
  24 +"Blocks": "Absatzformate",
  25 +"Undo": "R\u00fcckg\u00e4ngig",
  26 +"Strikethrough": "Durchgestrichen",
  27 +"Bullet list": "Aufz\u00e4hlung",
  28 +"Header 1": "\u00dcberschrift 1",
  29 +"Superscript": "Hochgestellt",
  30 +"Clear formatting": "Formatierung entfernen",
  31 +"Font Sizes": "Schriftgr\u00f6\u00dfe",
  32 +"Subscript": "Tiefgestellt",
  33 +"Header 6": "\u00dcberschrift 6",
  34 +"Redo": "Wiederholen",
  35 +"Paragraph": "Absatz",
  36 +"Ok": "Ok",
  37 +"Bold": "Fett",
  38 +"Code": "Quelltext",
  39 +"Italic": "Kursiv",
  40 +"Align center": "Zentriert ausrichten",
  41 +"Header 5": "\u00dcberschrift 5",
  42 +"Heading 6": "\u00dcberschrift 6",
  43 +"Heading 3": "\u00dcberschrift 3",
  44 +"Decrease indent": "Einzug verkleinern",
  45 +"Header 4": "\u00dcberschrift 4",
  46 +"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Einf\u00fcgen ist nun im einfachen Textmodus. Inhalte werden ab jetzt als unformatierter Text eingef\u00fcgt, bis Sie diese Einstellung wieder ausschalten!",
  47 +"Underline": "Unterstrichen",
  48 +"Cancel": "Abbrechen",
  49 +"Justify": "Blocksatz",
  50 +"Inline": "Zeichenformate",
  51 +"Copy": "Kopieren",
  52 +"Align left": "Linksb\u00fcndig ausrichten",
  53 +"Visual aids": "Visuelle Hilfen",
  54 +"Lower Greek": "Griechische Kleinbuchstaben",
  55 +"Square": "Quadrat",
  56 +"Default": "Standard",
  57 +"Lower Alpha": "Kleinbuchstaben",
  58 +"Circle": "Kreis",
  59 +"Disc": "Punkt",
  60 +"Upper Alpha": "Gro\u00dfbuchstaben",
  61 +"Upper Roman": "R\u00f6mische Zahlen (Gro\u00dfbuchstaben)",
  62 +"Lower Roman": "R\u00f6mische Zahlen (Kleinbuchstaben)",
  63 +"Name": "Name",
  64 +"Anchor": "Textmarke",
  65 +"You have unsaved changes are you sure you want to navigate away?": "Die \u00c4nderungen wurden noch nicht gespeichert, sind Sie sicher, dass Sie diese Seite verlassen wollen?",
  66 +"Restore last draft": "Letzten Entwurf wiederherstellen",
  67 +"Special character": "Sonderzeichen",
  68 +"Source code": "Quelltext",
  69 +"Color": "Farbe",
  70 +"Right to left": "Von rechts nach links",
  71 +"Left to right": "Von links nach rechts",
  72 +"Emoticons": "Emoticons",
  73 +"Robots": "Robots",
  74 +"Document properties": "Dokumenteigenschaften",
  75 +"Title": "Titel",
  76 +"Keywords": "Sch\u00fcsselw\u00f6rter",
  77 +"Encoding": "Zeichenkodierung",
  78 +"Description": "Beschreibung",
  79 +"Author": "Verfasser",
  80 +"Fullscreen": "Vollbild",
  81 +"Horizontal line": "Horizontale Linie",
  82 +"Horizontal space": "Horizontaler Abstand",
  83 +"Insert\/edit image": "Bild einf\u00fcgen\/bearbeiten",
  84 +"General": "Allgemein",
  85 +"Advanced": "Erweitert",
  86 +"Source": "Quelle",
  87 +"Border": "Rahmen",
  88 +"Constrain proportions": "Seitenverh\u00e4ltnis beibehalten",
  89 +"Vertical space": "Vertikaler Abstand",
  90 +"Image description": "Bildbeschreibung",
  91 +"Style": "Stil",
  92 +"Dimensions": "Abmessungen",
  93 +"Insert image": "Bild einf\u00fcgen",
  94 +"Insert date\/time": "Datum\/Uhrzeit einf\u00fcgen ",
  95 +"Remove link": "Link entfernen",
  96 +"Url": "URL",
  97 +"Text to display": "Anzuzeigender Text",
  98 +"Anchors": "Textmarken",
  99 +"Insert link": "Link einf\u00fcgen",
  100 +"New window": "Neues Fenster",
  101 +"None": "Keine",
  102 +"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Diese Adresse scheint ein externer Link zu sein. M\u00f6chten Sie das dazu ben\u00f6tigte \"http:\/\/\" voranstellen?",
  103 +"Target": "Ziel",
  104 +"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Diese Adresse scheint eine E-Mail-Adresse zu sein. M\u00f6chten Sie das dazu ben\u00f6tigte \"mailto:\" voranstellen?",
  105 +"Insert\/edit link": "Link einf\u00fcgen\/bearbeiten",
  106 +"Insert\/edit video": "Video einf\u00fcgen\/bearbeiten",
  107 +"Poster": "Poster",
  108 +"Alternative source": "Alternative Quelle",
  109 +"Paste your embed code below:": "F\u00fcgen Sie Ihren Einbettungscode hier ein:",
  110 +"Insert video": "Video einf\u00fcgen",
  111 +"Embed": "Einbetten",
  112 +"Nonbreaking space": "Gesch\u00fctztes Leerzeichen",
  113 +"Page break": "Seitenumbruch",
  114 +"Paste as text": "Als Text einf\u00fcgen",
  115 +"Preview": "Vorschau",
  116 +"Print": "Drucken",
  117 +"Save": "Speichern",
  118 +"Could not find the specified string.": "Die Zeichenfolge wurde nicht gefunden.",
  119 +"Replace": "Ersetzen",
  120 +"Next": "Weiter",
  121 +"Whole words": "Nur ganze W\u00f6rter",
  122 +"Find and replace": "Suchen und ersetzen",
  123 +"Replace with": "Ersetzen durch",
  124 +"Find": "Suchen",
  125 +"Replace all": "Alles ersetzen",
  126 +"Match case": "Gro\u00df-\/Kleinschreibung beachten",
  127 +"Prev": "Zur\u00fcck",
  128 +"Spellcheck": "Rechtschreibpr\u00fcfung",
  129 +"Finish": "Ende",
  130 +"Ignore all": "Alles Ignorieren",
  131 +"Ignore": "Ignorieren",
  132 +"Add to Dictionary": "Zum W\u00f6rterbuch hinzuf\u00fcgen",
  133 +"Insert row before": "Neue Zeile davor einf\u00fcgen ",
  134 +"Rows": "Zeilen",
  135 +"Height": "H\u00f6he",
  136 +"Paste row after": "Zeile danach einf\u00fcgen",
  137 +"Alignment": "Ausrichtung",
  138 +"Border color": "Rahmenfarbe",
  139 +"Column group": "Spaltengruppe",
  140 +"Row": "Zeile",
  141 +"Insert column before": "Neue Spalte davor einf\u00fcgen",
  142 +"Split cell": "Zelle aufteilen",
  143 +"Cell padding": "Zelleninnenabstand",
  144 +"Cell spacing": "Zellenabstand",
  145 +"Row type": "Zeilentyp",
  146 +"Insert table": "Tabelle einf\u00fcgen",
  147 +"Body": "Inhalt",
  148 +"Caption": "Beschriftung",
  149 +"Footer": "Fu\u00dfzeile",
  150 +"Delete row": "Zeile l\u00f6schen",
  151 +"Paste row before": "Zeile davor einf\u00fcgen",
  152 +"Scope": "G\u00fcltigkeitsbereich",
  153 +"Delete table": "Tabelle l\u00f6schen",
  154 +"H Align": "Horizontale Ausrichtung",
  155 +"Top": "Oben",
  156 +"Header cell": "Kopfzelle",
  157 +"Column": "Spalte",
  158 +"Row group": "Zeilengruppe",
  159 +"Cell": "Zelle",
  160 +"Middle": "Mitte",
  161 +"Cell type": "Zellentyp",
  162 +"Copy row": "Zeile kopieren",
  163 +"Row properties": "Zeileneigenschaften",
  164 +"Table properties": "Tabelleneigenschaften",
  165 +"Bottom": "Unten",
  166 +"V Align": "Vertikale Ausrichtung",
  167 +"Header": "Kopfzeile",
  168 +"Right": "Rechtsb\u00fcndig",
  169 +"Insert column after": "Neue Spalte danach einf\u00fcgen",
  170 +"Cols": "Spalten",
  171 +"Insert row after": "Neue Zeile danach einf\u00fcgen",
  172 +"Width": "Breite",
  173 +"Cell properties": "Zelleneigenschaften",
  174 +"Left": "Linksb\u00fcndig",
  175 +"Cut row": "Zeile ausschneiden",
  176 +"Delete column": "Spalte l\u00f6schen",
  177 +"Center": "Zentriert",
  178 +"Merge cells": "Zellen verbinden",
  179 +"Insert template": "Vorlage einf\u00fcgen ",
  180 +"Templates": "Vorlagen",
  181 +"Background color": "Hintergrundfarbe",
  182 +"Custom...": "Benutzerdefiniert...",
  183 +"Custom color": "Benutzerdefinierte Farbe",
  184 +"No color": "Keine Farbe",
  185 +"Text color": "Textfarbe",
  186 +"Show blocks": " Bl\u00f6cke anzeigen",
  187 +"Show invisible characters": "Unsichtbare Zeichen anzeigen",
  188 +"Words: {0}": "W\u00f6rter: {0}",
  189 +"Insert": "Einf\u00fcgen",
  190 +"File": "Datei",
  191 +"Edit": "Bearbeiten",
  192 +"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich-Text- Area. Dr\u00fccken Sie ALT-F9 f\u00fcr das Men\u00fc. Dr\u00fccken Sie ALT-F10 f\u00fcr Symbolleiste. Dr\u00fccken Sie ALT-0 f\u00fcr Hilfe",
  193 +"Tools": "Werkzeuge",
  194 +"View": "Ansicht",
  195 +"Table": "Tabelle",
  196 +"Format": "Format"
  197 +});
0 198 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/langs/es.js 0 → 100644
... ... @@ -0,0 +1,197 @@
  1 +tinymce.addI18n('es',{
  2 +"Cut": "Cortar",
  3 +"Heading 5": "Encabezado 5",
  4 +"Header 2": "Encabezado 2 ",
  5 +"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Tu navegador no soporta acceso directo al portapapeles. Por favor usa las teclas Crtl+X\/C\/V de tu teclado",
  6 +"Heading 4": "Encabezado 4",
  7 +"Div": "Capa",
  8 +"Heading 2": "Encabezado 2",
  9 +"Paste": "Pegar",
  10 +"Close": "Cerrar",
  11 +"Font Family": "Familia de fuentes",
  12 +"Pre": "Pre",
  13 +"Align right": "Alinear a la derecha",
  14 +"New document": "Nuevo documento",
  15 +"Blockquote": "Bloque de cita",
  16 +"Numbered list": "Lista numerada",
  17 +"Heading 1": "Encabezado 1",
  18 +"Headings": "Encabezados",
  19 +"Increase indent": "Incrementar sangr\u00eda",
  20 +"Formats": "Formatos",
  21 +"Headers": "Encabezados",
  22 +"Select all": "Seleccionar todo",
  23 +"Header 3": "Encabezado 3",
  24 +"Blocks": "Bloques",
  25 +"Undo": "Deshacer",
  26 +"Strikethrough": "Tachado",
  27 +"Bullet list": "Lista de vi\u00f1etas",
  28 +"Header 1": "Encabezado 1",
  29 +"Superscript": "Super\u00edndice",
  30 +"Clear formatting": "Limpiar formato",
  31 +"Font Sizes": "Tama\u00f1os de fuente",
  32 +"Subscript": "Sub\u00edndice",
  33 +"Header 6": "Encabezado 6",
  34 +"Redo": "Rehacer",
  35 +"Paragraph": "P\u00e1rrafo",
  36 +"Ok": "Ok",
  37 +"Bold": "Negrita",
  38 +"Code": "C\u00f3digo",
  39 +"Italic": "It\u00e1lica",
  40 +"Align center": "Alinear al centro",
  41 +"Header 5": "Encabezado 5 ",
  42 +"Heading 6": "Encabezado 6",
  43 +"Heading 3": "Encabezado 3",
  44 +"Decrease indent": "Disminuir sangr\u00eda",
  45 +"Header 4": "Encabezado 4",
  46 +"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Pegar est\u00e1 ahora en modo de texto plano. El contenido se pegar\u00e1 como texto plano hasta que desactive esta opci\u00f3n.",
  47 +"Underline": "Subrayado",
  48 +"Cancel": "Cancelar",
  49 +"Justify": "Justificar",
  50 +"Inline": "en l\u00ednea",
  51 +"Copy": "Copiar",
  52 +"Align left": "Alinear a la izquierda",
  53 +"Visual aids": "Ayudas visuales",
  54 +"Lower Greek": "Inferior Griega",
  55 +"Square": "Cuadrado",
  56 +"Default": "Por defecto",
  57 +"Lower Alpha": "Inferior Alfa",
  58 +"Circle": "C\u00edrculo",
  59 +"Disc": "Disco",
  60 +"Upper Alpha": "Superior Alfa",
  61 +"Upper Roman": "Superior Romana",
  62 +"Lower Roman": "Inferior Romana",
  63 +"Name": "Nombre",
  64 +"Anchor": "Ancla",
  65 +"You have unsaved changes are you sure you want to navigate away?": "Tiene cambios sin guardar. \u00bfEst\u00e1 seguro de que quiere salir?",
  66 +"Restore last draft": "Restaurar el \u00faltimo borrador",
  67 +"Special character": "Car\u00e1cter especial",
  68 +"Source code": "C\u00f3digo fuente",
  69 +"Color": "Color",
  70 +"Right to left": "De derecha a izquierda",
  71 +"Left to right": "De izquierda a derecha",
  72 +"Emoticons": "Emoticonos",
  73 +"Robots": "Robots",
  74 +"Document properties": "Propiedades del documento",
  75 +"Title": "T\u00edtulo",
  76 +"Keywords": "Palabras clave",
  77 +"Encoding": "Codificaci\u00f3n",
  78 +"Description": "Descripci\u00f3n",
  79 +"Author": "Autor",
  80 +"Fullscreen": "Pantalla completa",
  81 +"Horizontal line": "L\u00ednea horizontal",
  82 +"Horizontal space": "Espacio horizontal",
  83 +"Insert\/edit image": "Insertar\/editar imagen",
  84 +"General": "General",
  85 +"Advanced": "Avanzado",
  86 +"Source": "Fuente",
  87 +"Border": "Borde",
  88 +"Constrain proportions": "Restringir proporciones",
  89 +"Vertical space": "Espacio vertical",
  90 +"Image description": "Descripci\u00f3n de la imagen",
  91 +"Style": "Estilo",
  92 +"Dimensions": "Dimensiones",
  93 +"Insert image": "Insertar imagen",
  94 +"Insert date\/time": "Insertar fecha\/hora",
  95 +"Remove link": "Quitar enlace",
  96 +"Url": "URL",
  97 +"Text to display": "Texto para mostrar",
  98 +"Anchors": "Anclas",
  99 +"Insert link": "Insertar enlace",
  100 +"New window": "Nueva ventana",
  101 +"None": "Ninguno",
  102 +"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "El enlace que has introducido no parece ser una enlace externo. Quieres a\u00f1adir el prefijo necesario http:\/\/ ?",
  103 +"Target": "Destino",
  104 +"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "El enlace que has introducido no parece ser una direcci\u00f3n de correo electr\u00f3nico. Quieres a\u00f1adir el prefijo necesario mailto: ?",
  105 +"Insert\/edit link": "Insertar\/editar enlace",
  106 +"Insert\/edit video": "Insertar\/editar video",
  107 +"Poster": "Miniatura",
  108 +"Alternative source": "Fuente alternativa",
  109 +"Paste your embed code below:": "Pega tu c\u00f3digo embebido debajo",
  110 +"Insert video": "Insertar video",
  111 +"Embed": "Incrustado",
  112 +"Nonbreaking space": "Espacio fijo",
  113 +"Page break": "Salto de p\u00e1gina",
  114 +"Paste as text": "Pegar como texto",
  115 +"Preview": "Previsualizar",
  116 +"Print": "Imprimir",
  117 +"Save": "Guardar",
  118 +"Could not find the specified string.": "No se encuentra la cadena de texto especificada",
  119 +"Replace": "Reemplazar",
  120 +"Next": "Siguiente",
  121 +"Whole words": "Palabras completas",
  122 +"Find and replace": "Buscar y reemplazar",
  123 +"Replace with": "Reemplazar con",
  124 +"Find": "Buscar",
  125 +"Replace all": "Reemplazar todo",
  126 +"Match case": "Coincidencia exacta",
  127 +"Prev": "Anterior",
  128 +"Spellcheck": "Corrector ortogr\u00e1fico",
  129 +"Finish": "Finalizar",
  130 +"Ignore all": "Ignorar todos",
  131 +"Ignore": "Ignorar",
  132 +"Add to Dictionary": "A\u00f1adir al Diccionario",
  133 +"Insert row before": "Insertar fila antes",
  134 +"Rows": "Filas",
  135 +"Height": "Alto",
  136 +"Paste row after": "Pegar la fila despu\u00e9s",
  137 +"Alignment": "Alineaci\u00f3n",
  138 +"Border color": "Color del borde",
  139 +"Column group": "Grupo de columnas",
  140 +"Row": "Fila",
  141 +"Insert column before": "Insertar columna antes",
  142 +"Split cell": "Dividir celdas",
  143 +"Cell padding": "Relleno de celda",
  144 +"Cell spacing": "Espacio entre celdas",
  145 +"Row type": "Tipo de fila",
  146 +"Insert table": "Insertar tabla",
  147 +"Body": "Cuerpo",
  148 +"Caption": "Subt\u00edtulo",
  149 +"Footer": "Pie de p\u00e1gina",
  150 +"Delete row": "Eliminar fila",
  151 +"Paste row before": "Pegar la fila antes",
  152 +"Scope": "\u00c1mbito",
  153 +"Delete table": "Eliminar tabla",
  154 +"H Align": "Alineamiento Horizontal",
  155 +"Top": "Arriba",
  156 +"Header cell": "Celda de la cebecera",
  157 +"Column": "Columna",
  158 +"Row group": "Grupo de filas",
  159 +"Cell": "Celda",
  160 +"Middle": "Centro",
  161 +"Cell type": "Tipo de celda",
  162 +"Copy row": "Copiar fila",
  163 +"Row properties": "Propiedades de la fila",
  164 +"Table properties": "Propiedades de la tabla",
  165 +"Bottom": "Abajo",
  166 +"V Align": "Alineamiento Vertical",
  167 +"Header": "Cabecera",
  168 +"Right": "Derecha",
  169 +"Insert column after": "Insertar columna despu\u00e9s",
  170 +"Cols": "Columnas",
  171 +"Insert row after": "Insertar fila despu\u00e9s ",
  172 +"Width": "Ancho",
  173 +"Cell properties": "Propiedades de la celda",
  174 +"Left": "Izquierda",
  175 +"Cut row": "Cortar fila",
  176 +"Delete column": "Eliminar columna",
  177 +"Center": "Centrado",
  178 +"Merge cells": "Combinar celdas",
  179 +"Insert template": "Insertar plantilla",
  180 +"Templates": "Plantillas",
  181 +"Background color": "Color de fondo",
  182 +"Custom...": "Personalizar...",
  183 +"Custom color": "Color personalizado",
  184 +"No color": "Sin color",
  185 +"Text color": "Color del texto",
  186 +"Show blocks": "Mostrar bloques",
  187 +"Show invisible characters": "Mostrar caracteres invisibles",
  188 +"Words: {0}": "Palabras: {0}",
  189 +"Insert": "Insertar",
  190 +"File": "Archivo",
  191 +"Edit": "Editar",
  192 +"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c1rea de texto enriquecido. Pulse ALT-F9 para el menu. Pulse ALT-F10 para la barra de herramientas. Pulse ALT-0 para ayuda",
  193 +"Tools": "Herramientas",
  194 +"View": "Ver",
  195 +"Table": "Tabla",
  196 +"Format": "Formato"
  197 +});
0 198 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/langs/fr_FR.js 0 → 100644
... ... @@ -0,0 +1,197 @@
  1 +tinymce.addI18n('fr_FR',{
  2 +"Cut": "Couper",
  3 +"Heading 5": "En-t\u00eate 5",
  4 +"Header 2": "Titre 2",
  5 +"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Votre navigateur ne supporte pas la copie directe. Merci d'utiliser les touches Ctrl+X\/C\/V.",
  6 +"Heading 4": "En-t\u00eate 4",
  7 +"Div": "Div",
  8 +"Heading 2": "En-t\u00eate 2",
  9 +"Paste": "Coller",
  10 +"Close": "Fermer",
  11 +"Font Family": "Polices de caract\u00e8res",
  12 +"Pre": "Pre",
  13 +"Align right": "Aligner \u00e0 droite",
  14 +"New document": "Nouveau document",
  15 +"Blockquote": "Citation",
  16 +"Numbered list": "Num\u00e9rotation",
  17 +"Heading 1": "En-t\u00eate 1",
  18 +"Headings": "En-t\u00eates",
  19 +"Increase indent": "Augmenter le retrait",
  20 +"Formats": "Formats",
  21 +"Headers": "Titres",
  22 +"Select all": "Tout s\u00e9lectionner",
  23 +"Header 3": "Titre 3",
  24 +"Blocks": "Blocs",
  25 +"Undo": "Annuler",
  26 +"Strikethrough": "Barr\u00e9",
  27 +"Bullet list": "Puces",
  28 +"Header 1": "Titre 1",
  29 +"Superscript": "Exposant",
  30 +"Clear formatting": "Effacer la mise en forme",
  31 +"Font Sizes": "Tailles de la police",
  32 +"Subscript": "Indice",
  33 +"Header 6": "Titre 6",
  34 +"Redo": "R\u00e9tablir",
  35 +"Paragraph": "Paragraphe",
  36 +"Ok": "Ok",
  37 +"Bold": "Gras",
  38 +"Code": "Code",
  39 +"Italic": "Italique",
  40 +"Align center": "Aligner au centre",
  41 +"Header 5": "Titre 5",
  42 +"Heading 6": "En-t\u00eate 6",
  43 +"Heading 3": "En-t\u00eate 3",
  44 +"Decrease indent": "Diminuer le retrait",
  45 +"Header 4": "Titre 4",
  46 +"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Le presse-papiers est maintenant en mode \"texte plein\". Les contenus seront coll\u00e9s sans retenir les formatages jusqu'\u00e0 ce que vous d\u00e9sactiviez cette option.",
  47 +"Underline": "Soulign\u00e9",
  48 +"Cancel": "Annuler",
  49 +"Justify": "Justifi\u00e9",
  50 +"Inline": "En ligne",
  51 +"Copy": "Copier",
  52 +"Align left": "Aligner \u00e0 gauche",
  53 +"Visual aids": "Aides visuelle",
  54 +"Lower Greek": "Grec minuscule",
  55 +"Square": "Carr\u00e9",
  56 +"Default": "Par d\u00e9faut",
  57 +"Lower Alpha": "Alpha minuscule",
  58 +"Circle": "Cercle",
  59 +"Disc": "Disque",
  60 +"Upper Alpha": "Alpha majuscule",
  61 +"Upper Roman": "Romain majuscule",
  62 +"Lower Roman": "Romain minuscule",
  63 +"Name": "Nom",
  64 +"Anchor": "Ancre",
  65 +"You have unsaved changes are you sure you want to navigate away?": "Vous avez des modifications non enregistr\u00e9es, \u00eates-vous s\u00fbr de quitter la page?",
  66 +"Restore last draft": "Restaurer le dernier brouillon",
  67 +"Special character": "Caract\u00e8res sp\u00e9ciaux",
  68 +"Source code": "Code source",
  69 +"Color": "Couleur",
  70 +"Right to left": "Droite \u00e0 gauche",
  71 +"Left to right": "Gauche \u00e0 droite",
  72 +"Emoticons": "Emotic\u00f4nes",
  73 +"Robots": "Robots",
  74 +"Document properties": "Propri\u00e9t\u00e9 du document",
  75 +"Title": "Titre",
  76 +"Keywords": "Mots-cl\u00e9s",
  77 +"Encoding": "Encodage",
  78 +"Description": "Description",
  79 +"Author": "Auteur",
  80 +"Fullscreen": "Plein \u00e9cran",
  81 +"Horizontal line": "Ligne horizontale",
  82 +"Horizontal space": "Espacement horizontal",
  83 +"Insert\/edit image": "Ins\u00e9rer\/\u00e9diter une image",
  84 +"General": "G\u00e9n\u00e9ral",
  85 +"Advanced": "Avanc\u00e9",
  86 +"Source": "Source",
  87 +"Border": "Bordure",
  88 +"Constrain proportions": "Contraindre les proportions",
  89 +"Vertical space": "Espacement vertical",
  90 +"Image description": "Description de l'image",
  91 +"Style": "Style",
  92 +"Dimensions": "Dimensions",
  93 +"Insert image": "Ins\u00e9rer une image",
  94 +"Insert date\/time": "Ins\u00e9rer date\/heure",
  95 +"Remove link": "Enlever le lien",
  96 +"Url": "Url",
  97 +"Text to display": "Texte \u00e0 afficher",
  98 +"Anchors": "Ancres",
  99 +"Insert link": "Ins\u00e9rer un lien",
  100 +"New window": "Nouvelle fen\u00eatre",
  101 +"None": "n\/a",
  102 +"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre un lien externe. Voulez-vous ajouter le pr\u00e9fixe http:\/\/ n\u00e9cessaire?",
  103 +"Target": "Cible",
  104 +"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre une adresse e-mail. Voulez-vous ajouter le pr\u00e9fixe mailto: n\u00e9cessaire?",
  105 +"Insert\/edit link": "Ins\u00e9rer\/\u00e9diter un lien",
  106 +"Insert\/edit video": "Ins\u00e9rer\/\u00e9diter une vid\u00e9o",
  107 +"Poster": "Publier",
  108 +"Alternative source": "Source alternative",
  109 +"Paste your embed code below:": "Collez votre code d'int\u00e9gration ci-dessous :",
  110 +"Insert video": "Ins\u00e9rer une vid\u00e9o",
  111 +"Embed": "Ins\u00e9rer",
  112 +"Nonbreaking space": "Espace ins\u00e9cable",
  113 +"Page break": "Saut de page",
  114 +"Paste as text": "Coller comme texte",
  115 +"Preview": "Pr\u00e9visualiser",
  116 +"Print": "Imprimer",
  117 +"Save": "Enregistrer",
  118 +"Could not find the specified string.": "Impossible de trouver la cha\u00eene sp\u00e9cifi\u00e9e.",
  119 +"Replace": "Remplacer",
  120 +"Next": "Suiv",
  121 +"Whole words": "Mots entiers",
  122 +"Find and replace": "Trouver et remplacer",
  123 +"Replace with": "Remplacer par",
  124 +"Find": "Chercher",
  125 +"Replace all": "Tout remplacer",
  126 +"Match case": "Respecter la casse",
  127 +"Prev": "Pr\u00e9c ",
  128 +"Spellcheck": "V\u00e9rification orthographique",
  129 +"Finish": "Finie",
  130 +"Ignore all": "Tout ignorer",
  131 +"Ignore": "Ignorer",
  132 +"Add to Dictionary": "Ajouter au dictionnaire",
  133 +"Insert row before": "Ins\u00e9rer une ligne avant",
  134 +"Rows": "Lignes",
  135 +"Height": "Hauteur",
  136 +"Paste row after": "Coller la ligne apr\u00e8s",
  137 +"Alignment": "Alignement",
  138 +"Border color": "Couleur de la bordure",
  139 +"Column group": "Groupe de colonnes",
  140 +"Row": "Ligne",
  141 +"Insert column before": "Ins\u00e9rer une colonne avant",
  142 +"Split cell": "Diviser la cellule",
  143 +"Cell padding": "Espacement interne cellule",
  144 +"Cell spacing": "Espacement inter-cellulles",
  145 +"Row type": "Type de ligne",
  146 +"Insert table": "Ins\u00e9rer un tableau",
  147 +"Body": "Corps",
  148 +"Caption": "Titre",
  149 +"Footer": "Pied",
  150 +"Delete row": "Effacer la ligne",
  151 +"Paste row before": "Coller la ligne avant",
  152 +"Scope": "Etendue",
  153 +"Delete table": "Supprimer le tableau",
  154 +"H Align": "Alignement H",
  155 +"Top": "Haut",
  156 +"Header cell": "Cellule d'en-t\u00eate",
  157 +"Column": "Colonne",
  158 +"Row group": "Groupe de lignes",
  159 +"Cell": "Cellule",
  160 +"Middle": "Milieu",
  161 +"Cell type": "Type de cellule",
  162 +"Copy row": "Copier la ligne",
  163 +"Row properties": "Propri\u00e9t\u00e9s de la ligne",
  164 +"Table properties": "Propri\u00e9t\u00e9s du tableau",
  165 +"Bottom": "Bas",
  166 +"V Align": "Alignement V",
  167 +"Header": "En-t\u00eate",
  168 +"Right": "Droite",
  169 +"Insert column after": "Ins\u00e9rer une colonne apr\u00e8s",
  170 +"Cols": "Colonnes",
  171 +"Insert row after": "Ins\u00e9rer une ligne apr\u00e8s",
  172 +"Width": "Largeur",
  173 +"Cell properties": "Propri\u00e9t\u00e9s de la cellule",
  174 +"Left": "Gauche",
  175 +"Cut row": "Couper la ligne",
  176 +"Delete column": "Effacer la colonne",
  177 +"Center": "Centr\u00e9",
  178 +"Merge cells": "Fusionner les cellules",
  179 +"Insert template": "Ajouter un th\u00e8me",
  180 +"Templates": "Th\u00e8mes",
  181 +"Background color": "Couleur d'arri\u00e8re-plan",
  182 +"Custom...": "Personnalis\u00e9...",
  183 +"Custom color": "Couleur personnalis\u00e9e",
  184 +"No color": "Aucune couleur",
  185 +"Text color": "Couleur du texte",
  186 +"Show blocks": "Afficher les blocs",
  187 +"Show invisible characters": "Afficher les caract\u00e8res invisibles",
  188 +"Words: {0}": "Mots : {0}",
  189 +"Insert": "Ins\u00e9rer",
  190 +"File": "Fichier",
  191 +"Edit": "Editer",
  192 +"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zone Texte Riche. Appuyer sur ALT-F9 pour le menu. Appuyer sur ALT-F10 pour la barre d'outils. Appuyer sur ALT-0 pour de l'aide.",
  193 +"Tools": "Outils",
  194 +"View": "Voir",
  195 +"Table": "Tableau",
  196 +"Format": "Format"
  197 +});
0 198 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/langs/hy.js 0 → 100644
... ... @@ -0,0 +1,190 @@
  1 +tinymce.addI18n('hy',{
  2 +"Cut": "\u053f\u057f\u0580\u0565\u056c",
  3 +"Header 2": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 2",
  4 +"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0541\u0565\u0580 \u0562\u0580\u0561\u0578\u0582\u0566\u0565\u0580\u0568 \u0579\u056b \u0561\u057a\u0561\u0570\u0578\u057e\u0578\u0582\u0574 \u0561\u0576\u0574\u056b\u057b\u0561\u056f\u0561\u0576 \u0565\u056c\u0584 \u0583\u0578\u056d\u0561\u0576\u0561\u056f\u0574\u0561\u0576 \u0562\u0578\u0582\u0586\u0565\u0580\u056b\u0576\u0589 \u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0576\u0584 \u0585\u0563\u057f\u057e\u0565\u056c Ctrl+X\/C\/V \u057d\u057f\u0565\u0572\u0576\u0565\u0580\u056b\u0581\u0589",
  5 +"Div": "Div",
  6 +"Paste": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c",
  7 +"Close": "\u0553\u0561\u056f\u0565\u056c",
  8 +"Font Family": "\u054f\u0561\u057c\u0561\u057f\u0565\u057d\u0561\u056f",
  9 +"Pre": "Pre",
  10 +"Align right": "\u0531\u057b\u0561\u056f\u0578\u0572\u0574\u0575\u0561 \u0570\u0561\u057e\u0561\u057d\u0561\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
  11 +"New document": "\u0546\u0578\u0580 \u0583\u0561\u057d\u057f\u0561\u0569\u0578\u0582\u0572\u0569",
  12 +"Blockquote": "\u0544\u0565\u057b\u0562\u0565\u0580\u0578\u0582\u0574",
  13 +"Numbered list": "\u0540\u0561\u0574\u0561\u0580\u0561\u056f\u0561\u056c\u057e\u0561\u056e \u0581\u0578\u0582\u0581\u0561\u056f",
  14 +"Increase indent": "\u0544\u0565\u056e\u0561\u0581\u0576\u0565\u056c \u0571\u0561\u056d \u0565\u0566\u0580\u056b \u0570\u0565\u057c\u0561\u057e\u0578\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0568",
  15 +"Formats": "\u0556\u0578\u0580\u0574\u0561\u057f\u0576\u0565\u0580",
  16 +"Headers": "\u054e\u0565\u0580\u0576\u0561\u0563\u0580\u0565\u0580",
  17 +"Select all": "\u0546\u0577\u0565\u056c \u0562\u0578\u056c\u0578\u0580\u0568",
  18 +"Header 3": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 3",
  19 +"Blocks": "\u0532\u056c\u0578\u056f\u0576\u0565\u0580",
  20 +"Undo": "\u0546\u0561\u056d\u0578\u0580\u0564 \u0584\u0561\u0575\u056c",
  21 +"Strikethrough": "\u0531\u0580\u057f\u0561\u0563\u056e\u057e\u0561\u056e",
  22 +"Bullet list": "\u0549\u0570\u0561\u0574\u0561\u0580\u0561\u056f\u0561\u056c\u057e\u0561\u056e \u0581\u0578\u0582\u0581\u0561\u056f",
  23 +"Header 1": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 1",
  24 +"Superscript": "\u054e\u0565\u0580\u056b\u0576 \u056b\u0576\u0564\u0565\u0584\u057d",
  25 +"Clear formatting": "\u0544\u0561\u0584\u0580\u0565\u056c \u0586\u0578\u0580\u0574\u0561\u057f\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0568",
  26 +"Font Sizes": "\u054f\u0561\u057c\u056b \u0579\u0561\u0583",
  27 +"Subscript": "\u054d\u057f\u0578\u0580\u056b\u0576 \u056b\u0576\u0564\u0565\u0584\u057d",
  28 +"Header 6": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 6",
  29 +"Redo": "\u0540\u0561\u057b\u0578\u0580\u0564 \u0584\u0561\u0575\u056c",
  30 +"Paragraph": "\u054a\u0561\u0580\u0562\u0565\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
  31 +"Ok": "Ok",
  32 +"Bold": "\u0539\u0561\u057e\u0561\u057f\u0561\u057c",
  33 +"Code": "\u053f\u0578\u0564",
  34 +"Italic": "\u0547\u0565\u0572\u0561\u057f\u0561\u057c",
  35 +"Align center": "\u053f\u0565\u0576\u057f\u0580\u0578\u0576\u0561\u056f\u0561\u0576 \u0570\u0561\u057e\u0561\u057d\u0561\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
  36 +"Header 5": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 5",
  37 +"Decrease indent": "\u0553\u0578\u0584\u0580\u0561\u0581\u0576\u0565\u056c \u0571\u0561\u056d \u0565\u0566\u0580\u056b \u0570\u0565\u057c\u0561\u057e\u0578\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0568",
  38 +"Header 4": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 4",
  39 +"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u054f\u0565\u0584\u057d\u057f\u056b \u057f\u0565\u0572\u0561\u0564\u0580\u0578\u0582\u0574\u0568 \u056f\u0561\u057f\u0561\u0580\u057e\u0565\u056c\u0578\u0582 \u0567 \u0570\u0561\u057d\u0561\u0580\u0561\u056f \u057f\u0565\u0584\u057d\u057f\u056b \u057c\u0565\u056a\u056b\u0574\u0578\u057e\u0589 \u054a\u0561\u057f\u0573\u0565\u0576\u057e\u0561\u056e \u057f\u0565\u0584\u057d\u057f\u0568 \u057f\u0565\u0572\u0561\u0564\u0580\u057e\u0565\u056c\u0578\u0582 \u0567 \u0570\u0561\u057d\u0561\u0580\u0561\u056f \u057f\u0565\u0584\u057d\u057f\u056b \u0571\u0587\u0578\u057e \u0574\u056b\u0576\u0579\u0587 \u0561\u0575\u057d \u057c\u0565\u056a\u056b\u0574\u056b \u0561\u0576\u057b\u0561\u057f\u0578\u0582\u0574\u0568\u0589",
  40 +"Underline": "\u0538\u0576\u0564\u0563\u056e\u057e\u0561\u056e",
  41 +"Cancel": "\u0553\u0561\u056f\u0565\u056c",
  42 +"Justify": "\u0535\u0580\u056f\u056f\u0578\u0572\u0574\u0561\u0576\u056b \u0570\u0561\u057e\u0561\u057d\u0561\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
  43 +"Inline": "\u054f\u0578\u0572\u0561\u0575\u056b\u0576",
  44 +"Copy": "\u054a\u0561\u057f\u0573\u0565\u0576\u0565\u056c",
  45 +"Align left": "\u0541\u0561\u056d\u0561\u056f\u0578\u0572\u0574\u0575\u0561 \u0570\u0561\u057e\u0561\u057d\u0561\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
  46 +"Visual aids": "\u0551\u0578\u0582\u0581\u0561\u0564\u0580\u0565\u056c \u056f\u0578\u0576\u057f\u0578\u0582\u0580\u0576\u0565\u0580\u0568",
  47 +"Lower Greek": "\u0553\u0578\u0584\u0580\u0561\u057f\u0561\u057c \u0570\u0578\u0582\u0576\u0561\u056f\u0561\u0576 \u057f\u0561\u057c\u0565\u0580",
  48 +"Square": "\u0554\u0561\u057c\u0561\u056f\u0578\u0582\u057d\u056b",
  49 +"Default": "\u054d\u057f\u0561\u0576\u0564\u0561\u0580\u057f",
  50 +"Lower Alpha": "\u0553\u0578\u0584\u0580\u0561\u057f\u0561\u057c \u056c\u0561\u057f\u056b\u0576\u0561\u056f\u0561\u0576 \u057f\u0561\u057c\u0565\u0580",
  51 +"Circle": "\u0547\u0580\u057b\u0561\u0576",
  52 +"Disc": "\u053f\u056c\u0578\u0580",
  53 +"Upper Alpha": "\u0544\u0565\u056e\u0561\u057f\u0561\u057c \u056c\u0561\u057f\u056b\u0576\u0565\u0580\u0565\u0576 \u057f\u0561\u057c\u0565\u0580",
  54 +"Upper Roman": "\u0544\u0565\u056e\u0561\u057f\u0561\u057c \u0570\u057c\u0578\u0574\u0565\u0561\u056f\u0561\u0576 \u0569\u057e\u0565\u0580",
  55 +"Lower Roman": "\u0553\u0578\u0584\u0580\u0561\u057f\u0561\u057c \u0570\u057c\u0578\u0574\u0565\u0561\u056f\u0561\u0576 \u0569\u057e\u0565\u0580",
  56 +"Name": "\u0531\u0576\u0578\u0582\u0576",
  57 +"Anchor": "\u053d\u0561\u0580\u056b\u057d\u056d",
  58 +"You have unsaved changes are you sure you want to navigate away?": "\u053f\u0561\u0576 \u0579\u057a\u0561\u0570\u057a\u0561\u0576\u057e\u0561\u056e \u0583\u0578\u0583\u0578\u056d\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0589 \u0534\u0578\u0582\u0584 \u056b\u0580\u0578\u055e\u0584 \u0578\u0582\u0566\u0578\u0582\u0574 \u0565\u0584 \u0564\u0578\u0582\u0580\u057d \u0563\u0561\u056c",
  59 +"Restore last draft": "\u054e\u0565\u0580\u0561\u056f\u0561\u0576\u0563\u0576\u0565\u056c \u057e\u0565\u0580\u057b\u056b\u0576 \u0576\u0561\u056d\u0561\u0563\u056b\u056e\u0568",
  60 +"Special character": "\u0540\u0561\u057f\u0578\u0582\u056f \u057d\u056b\u0574\u057e\u0578\u056c\u0576\u0565\u0580",
  61 +"Source code": "\u053e\u0580\u0561\u0563\u0580\u0561\u0575\u056b\u0576 \u056f\u0578\u0564",
  62 +"Color": "\u0533\u0578\u0582\u0575\u0576",
  63 +"Right to left": "\u0531\u057b\u056b\u0581 \u0571\u0561\u056d",
  64 +"Left to right": "\u0541\u0561\u056d\u056b\u0581 \u0561\u057b",
  65 +"Emoticons": "\u054d\u0574\u0561\u0575\u056c\u056b\u056f\u0576\u0565\u0580",
  66 +"Robots": "Robots",
  67 +"Document properties": "\u0553\u0561\u057d\u057f\u0561\u0569\u0572\u0569\u056b \u0570\u0561\u057f\u056f\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568",
  68 +"Title": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580",
  69 +"Keywords": "\u0548\u0580\u0578\u0576\u0578\u0572\u0561\u056f\u0561\u0576 \u0562\u0561\u057c\u0565\u0580",
  70 +"Encoding": "\u053f\u0578\u0564\u0561\u057e\u0578\u0580\u0578\u0582\u0574",
  71 +"Description": "\u0546\u056f\u0561\u0580\u0561\u0563\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
  72 +"Author": "\u0540\u0565\u0572\u056b\u0576\u0561\u056f",
  73 +"Fullscreen": "\u0531\u0574\u0562\u0578\u0572\u057b \u0567\u056f\u0580\u0561\u0576\u0578\u057e",
  74 +"Horizontal line": "\u0540\u0578\u0580\u056b\u0566\u0578\u0576\u0561\u056f\u0561\u0576 \u0563\u056b\u056e",
  75 +"Horizontal space": "\u0540\u0578\u0580\u056b\u0566\u0578\u0576\u0561\u056f\u0561\u0576 \u057f\u0561\u0580\u0561\u056e\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
  76 +"Insert\/edit image": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c\/\u056d\u0574\u0562\u0561\u0563\u0580\u0565\u056c \u0576\u056f\u0561\u0580",
  77 +"General": "\u0533\u056c\u056d\u0561\u057e\u0578\u0580",
  78 +"Advanced": "\u053c\u0580\u0561\u0581\u0578\u0582\u0581\u056b\u0579",
  79 +"Source": "\u0546\u056f\u0561\u0580\u056b \u0570\u0561\u057d\u0581\u0565",
  80 +"Border": "\u0535\u0566\u0580\u0561\u0563\u056b\u056e",
  81 +"Constrain proportions": "\u054a\u0561\u0570\u057a\u0561\u0576\u0565\u056c \u0574\u0561\u0577\u057f\u0561\u0562\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0568",
  82 +"Vertical space": "\u0548\u0582\u0572\u0572\u0561\u0570\u0561\u0575\u0561\u0581 \u057f\u0561\u0580\u0561\u056e\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
  83 +"Image description": "\u0546\u056f\u0561\u0580\u0561\u0563\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
  84 +"Style": "\u0548\u0573",
  85 +"Dimensions": "\u0549\u0561\u0583\u0565\u0580",
  86 +"Insert image": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u0576\u056f\u0561\u0580",
  87 +"Insert date\/time": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u0561\u0574\u057d\u0561\u0569\u056b\u057e\/\u056a\u0561\u0574\u0561\u0576\u0561\u056f",
  88 +"Remove link": "\u054b\u0576\u057b\u0565\u056c \u0570\u0572\u0578\u0582\u0574\u0568",
  89 +"Url": "Url",
  90 +"Text to display": "\u0540\u0572\u0574\u0561\u0576 \u057f\u0565\u0584\u057d\u057f",
  91 +"Anchors": "\u053d\u0561\u0580\u056b\u057d\u056d\u0576\u0565\u0580",
  92 +"Insert link": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u0570\u0572\u0578\u0582\u0574",
  93 +"New window": "\u0546\u0578\u0580 \u057a\u0561\u057f\u0578\u0582\u0570\u0561\u0576",
  94 +"None": "\u0548\u0579\u056b\u0576\u0579",
  95 +"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?",
  96 +"Target": "\u0539\u056b\u0580\u0561\u056d",
  97 +"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?",
  98 +"Insert\/edit link": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c\/\u056d\u0574\u0562\u0561\u0563\u0580\u0565\u056c \u0570\u0572\u0578\u0582\u0574",
  99 +"Insert\/edit video": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c\/\u056d\u0574\u0562\u0561\u0563\u0580\u0565\u056c \u057e\u056b\u0564\u0565\u0578",
  100 +"Poster": "\u054a\u0561\u057d\u057f\u0561\u057c",
  101 +"Alternative source": "\u0531\u0575\u056c\u0568\u0576\u057f\u0580\u0561\u0576\u0584\u0561\u0575\u056b\u0576 \u056f\u0578\u0564",
  102 +"Paste your embed code below:": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u0584 \u0541\u0565\u0580 \u056f\u0578\u0564\u0568 \u0561\u0575\u057d\u057f\u0565\u0572\u055d",
  103 +"Insert video": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u057e\u056b\u0564\u0565\u0578",
  104 +"Embed": "\u054f\u0565\u0572\u0561\u0564\u0580\u057e\u0578\u0572 \u056f\u0578\u0564",
  105 +"Nonbreaking space": "\u0531\u057c\u0561\u0576\u0581 \u0576\u0578\u0580 \u057f\u0578\u0572\u056b \u0562\u0561\u0581\u0561\u057f",
  106 +"Page break": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u0567\u057b\u056b \u0561\u0576\u057b\u0561\u057f\u056b\u0579",
  107 +"Paste as text": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u0578\u0580\u057a\u0565\u057d \u057f\u0565\u0584\u057d\u057f",
  108 +"Preview": "\u0546\u0561\u056d\u0576\u0561\u056f\u0561\u0576 \u0564\u056b\u057f\u0578\u0582\u0574",
  109 +"Print": "\u054f\u057a\u0565\u056c",
  110 +"Save": "\u054a\u0561\u0570\u057a\u0561\u0576\u0565\u056c",
  111 +"Could not find the specified string.": "\u0546\u0577\u057e\u0561\u056e \u057f\u0565\u0584\u057d\u057f\u0568 \u0579\u056b \u0563\u057f\u0576\u057e\u0565\u056c",
  112 +"Replace": "\u0553\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c",
  113 +"Next": "\u0540\u0561\u057b\u0578\u0580\u0564",
  114 +"Whole words": "\u0532\u0561\u057c\u0565\u0580\u0568 \u0561\u0574\u0562\u0578\u0572\u057b\u0578\u0582\u0569\u0575\u0561\u0574\u0562",
  115 +"Find and replace": "\u0553\u0576\u057f\u0580\u0565\u056c \u0587 \u0583\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c",
  116 +"Replace with": "\u0553\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c",
  117 +"Find": "\u0553\u0576\u057f\u0580\u0565\u056c",
  118 +"Replace all": "\u0553\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c \u0562\u0578\u056c\u0578\u0580\u0568",
  119 +"Match case": "\u0540\u0561\u0577\u057e\u056b \u0561\u057c\u0576\u0565\u056c \u057c\u0565\u0563\u056b\u057d\u057f\u0578\u0580\u0568",
  120 +"Prev": "\u0546\u0561\u056d\u0578\u0580\u0564",
  121 +"Spellcheck": "\u0548\u0582\u0572\u0572\u0561\u0563\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
  122 +"Finish": "\u0531\u057e\u0561\u0580\u057f\u0565\u056c",
  123 +"Ignore all": "\u0531\u0576\u057f\u0565\u057d\u0565\u056c \u0562\u0578\u056c\u0578\u0580\u0568",
  124 +"Ignore": "\u0531\u0576\u057f\u0565\u057d\u0565\u056c",
  125 +"Add to Dictionary": "\u0531\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c \u0562\u0561\u057c\u0561\u0580\u0561\u0576\u0578\u0582\u0574",
  126 +"Insert row before": "\u0531\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c \u057f\u0578\u0572 \u057e\u0565\u0580\u0587\u0578\u0582\u0574",
  127 +"Rows": "\u054f\u0578\u0572\u0565\u0580",
  128 +"Height": "\u0532\u0561\u0580\u0571\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
  129 +"Paste row after": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u057f\u0578\u0572\u0568 \u0576\u0565\u0580\u0584\u0587\u0578\u0582\u0574",
  130 +"Alignment": "\u0540\u0561\u057e\u0561\u057d\u0561\u0580\u0565\u0581\u0578\u0582\u0574",
  131 +"Border color": "\u0535\u0566\u0580\u0561\u0563\u056b\u056e",
  132 +"Column group": "\u054d\u0575\u0578\u0582\u0576\u0575\u0561\u056f\u0576\u0565\u0580\u056b \u056d\u0578\u0582\u0574\u0562",
  133 +"Row": "\u054f\u0578\u0572",
  134 +"Insert column before": "\u0531\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c \u0576\u0578\u0580 \u057d\u0575\u0578\u0582\u0576 \u0571\u0561\u056d\u056b\u0581",
  135 +"Split cell": "\u0532\u0561\u056a\u0561\u0576\u0565\u056c \u057e\u0561\u0576\u0564\u0561\u056f\u0568",
  136 +"Cell padding": "\u0546\u0565\u0580\u0584\u056b\u0576 \u057f\u0561\u0580\u0561\u056e\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
  137 +"Cell spacing": "\u0531\u0580\u057f\u0561\u0584\u056b\u0576 \u057f\u0561\u0580\u0561\u056e\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
  138 +"Row type": "\u054f\u0578\u0572\u056b \u057f\u056b\u057a",
  139 +"Insert table": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u0561\u0572\u0575\u0578\u0582\u057d\u0561\u056f",
  140 +"Body": "\u054a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
  141 +"Caption": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580",
  142 +"Footer": "\u0531\u0572\u0575\u0578\u0582\u057d\u0561\u056f\u056b \u057d\u057f\u0578\u0580\u056b\u0576 \u0570\u0561\u057f\u057e\u0561\u056e",
  143 +"Delete row": "\u054b\u0576\u057b\u0565\u056c \u057f\u0578\u0572\u0568",
  144 +"Paste row before": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u057f\u0578\u0572\u0568 \u057e\u0565\u0580\u0587\u0578\u0582\u0574",
  145 +"Scope": "Scope",
  146 +"Delete table": "\u054b\u0576\u057b\u0565\u056c \u0561\u0572\u0575\u0578\u0582\u057d\u0561\u056f\u0568",
  147 +"H Align": "\u0540. \u0540\u0561\u057e\u0561\u057d\u0561\u0580\u0565\u0581\u0578\u0582\u0574",
  148 +"Top": "\u054e\u0565\u0580\u0587",
  149 +"Header cell": "\u054e\u0565\u0580\u0576\u0561\u0563\u0580\u056b \u057e\u0561\u0576\u0564\u0561\u056f\u0576\u0565\u0580",
  150 +"Column": "\u054d\u0575\u0578\u0582\u0576\u0575\u0561\u056f",
  151 +"Row group": "\u054f\u0578\u0572\u0565\u0580\u056b \u056d\u0578\u0582\u0574\u0562",
  152 +"Cell": "\u054e\u0561\u0576\u0564\u0561\u056f",
  153 +"Middle": "\u0544\u0565\u057b\u057f\u0565\u0572",
  154 +"Cell type": "\u054e\u0561\u0576\u0564\u0561\u056f\u056b \u057f\u056b\u057a",
  155 +"Copy row": "\u054a\u0561\u057f\u0573\u0565\u0576\u0565\u056c \u057f\u0578\u0572\u0568",
  156 +"Row properties": "\u054f\u0578\u0572\u056b \u0570\u0561\u057f\u056f\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568",
  157 +"Table properties": "\u0531\u0572\u0575\u0578\u0582\u057d\u0561\u056f\u056b \u0570\u0561\u057f\u056f\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568",
  158 +"Bottom": "\u0546\u0565\u0580\u0584\u0587",
  159 +"V Align": "\u0548\u0582. \u0570\u0561\u057e\u0561\u057d\u0561\u0580\u0565\u0581\u0578\u0582\u0574",
  160 +"Header": "\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580",
  161 +"Right": "\u0531\u057b",
  162 +"Insert column after": "\u0531\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c \u0576\u0578\u0580 \u057d\u0575\u0578\u0582\u0576 \u0561\u057b\u056b\u0581",
  163 +"Cols": "\u054d\u0575\u0578\u0582\u0576\u0575\u0561\u056f\u0576\u0565\u0580",
  164 +"Insert row after": "\u0531\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c \u057f\u0578\u0572 \u0576\u0565\u0580\u0584\u0587\u0578\u0582\u0574",
  165 +"Width": "\u053c\u0561\u0575\u0576\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
  166 +"Cell properties": "\u054e\u0561\u0576\u0564\u0561\u056f\u056b \u0570\u0561\u057f\u056f\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568",
  167 +"Left": "\u0541\u0561\u056d",
  168 +"Cut row": "\u053f\u057f\u0580\u0565\u056c \u057f\u0578\u0572\u0568",
  169 +"Delete column": "\u0541\u0576\u057b\u0565\u056c \u057d\u0575\u0578\u0582\u0576\u0568",
  170 +"Center": "\u053f\u0565\u0576\u057f\u0580\u0578\u0576",
  171 +"Merge cells": "\u0544\u056b\u0561\u057e\u0578\u0580\u0565\u056c \u057e\u0561\u0576\u0564\u0561\u056f\u0576\u0565\u0580\u0568",
  172 +"Insert template": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c \u0571\u0587\u0561\u0576\u0574\u0578\u0582\u0577",
  173 +"Templates": "\u0541\u0587\u0561\u0576\u0574\u0578\u0582\u0577\u0576\u0565\u0580",
  174 +"Background color": "\u0556\u0578\u0576\u056b \u0563\u0578\u0582\u0575\u0576",
  175 +"Custom...": "\u0531\u0575\u056c...",
  176 +"Custom color": "\u0531\u0575\u056c \u0563\u0578\u0582\u0575\u0576",
  177 +"No color": "\u0531\u0576\u0563\u0578\u0582\u0575\u0576",
  178 +"Text color": "\u054f\u0561\u057c\u056b \u0563\u0578\u0582\u0575\u0576",
  179 +"Show blocks": "\u0551\u0578\u0582\u0581\u0561\u0564\u0580\u0565\u056c \u0562\u056c\u0578\u056f\u0576\u0565\u0580\u0568",
  180 +"Show invisible characters": "\u0551\u0578\u0582\u0575\u0581 \u057f\u0561\u056c \u0561\u0576\u057f\u0565\u057d\u0561\u0576\u0565\u056c\u056b \u057d\u056b\u0574\u057e\u0578\u056c\u0576\u0565\u0580\u0568",
  181 +"Words: {0}": "\u0532\u0561\u057c\u0565\u0580\u056b \u0584\u0561\u0576\u0561\u056f: {0}",
  182 +"Insert": "\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c",
  183 +"File": "\u0556\u0561\u0575\u056c",
  184 +"Edit": "\u053d\u0574\u0562\u0561\u0563\u0580\u0565\u056c",
  185 +"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u054f\u0565\u0584\u057d\u057f\u0561\u0575\u056b\u0576 \u0564\u0561\u0577\u057f\u0589 \u054d\u0565\u0572\u0574\u0565\u0584 ALT-F9 \u0574\u0565\u0576\u0575\u0578\u0582\u056b \u0570\u0561\u0574\u0561\u0580\u0589 ALT-F10 \u0563\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580\u056b \u057e\u0561\u0570\u0561\u0576\u0561\u056f\u0589 \u054d\u0565\u0572\u0574\u0565\u0584 ALT-0 \u0585\u0563\u0576\u0578\u0582\u0569\u0575\u0561\u0576 \u0570\u0561\u0574\u0561\u0580",
  186 +"Tools": "\u0533\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580",
  187 +"View": "\u054f\u0565\u057d\u0584",
  188 +"Table": "\u0531\u0572\u0575\u0578\u0582\u057d\u0561\u056f",
  189 +"Format": "\u0556\u0578\u0580\u0574\u0561\u057f"
  190 +});
0 191 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/langs/it.js 0 → 100644
... ... @@ -0,0 +1,197 @@
  1 +tinymce.addI18n('it',{
  2 +"Cut": "Taglia",
  3 +"Heading 5": "Intestazione 5",
  4 +"Header 2": "Header 2",
  5 +"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Il tuo browser non supporta l'accesso diretto negli Appunti. Per favore usa i tasti di scelta rapida Ctrl+X\/C\/V.",
  6 +"Heading 4": "Intestazione 4",
  7 +"Div": "Div",
  8 +"Heading 2": "Intestazione 2",
  9 +"Paste": "Incolla",
  10 +"Close": "Chiudi",
  11 +"Font Family": "Famiglia font",
  12 +"Pre": "Pre",
  13 +"Align right": "Allinea a Destra",
  14 +"New document": "Nuovo Documento",
  15 +"Blockquote": "Blockquote",
  16 +"Numbered list": "Elenchi Numerati",
  17 +"Heading 1": "Intestazione 1",
  18 +"Headings": "Intestazioni",
  19 +"Increase indent": "Aumenta Rientro",
  20 +"Formats": "Formattazioni",
  21 +"Headers": "Intestazioni",
  22 +"Select all": "Seleziona Tutto",
  23 +"Header 3": "Intestazione 3",
  24 +"Blocks": "Blocchi",
  25 +"Undo": "Indietro",
  26 +"Strikethrough": "Barrato",
  27 +"Bullet list": "Elenchi Puntati",
  28 +"Header 1": "Intestazione 1",
  29 +"Superscript": "Apice",
  30 +"Clear formatting": "Cancella Formattazione",
  31 +"Font Sizes": "Dimensioni font",
  32 +"Subscript": "Pedice",
  33 +"Header 6": "Intestazione 6",
  34 +"Redo": "Ripeti",
  35 +"Paragraph": "Paragrafo",
  36 +"Ok": "Ok",
  37 +"Bold": "Grassetto",
  38 +"Code": "Codice",
  39 +"Italic": "Corsivo",
  40 +"Align center": "Allinea al Cento",
  41 +"Header 5": "Intestazione 5",
  42 +"Heading 6": "Intestazione 6",
  43 +"Heading 3": "Intestazione 3",
  44 +"Decrease indent": "Riduci Rientro",
  45 +"Header 4": "Intestazione 4",
  46 +"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Incolla \u00e8 in modalit\u00e0 testo normale. I contenuti sono incollati come testo normale se non disattivi l'opzione.",
  47 +"Underline": "Sottolineato",
  48 +"Cancel": "Cancella",
  49 +"Justify": "Giustifica",
  50 +"Inline": "Inlinea",
  51 +"Copy": "Copia",
  52 +"Align left": "Allinea a Sinistra",
  53 +"Visual aids": "Elementi Visivi",
  54 +"Lower Greek": "Greek Minore",
  55 +"Square": "Quadrato",
  56 +"Default": "Default",
  57 +"Lower Alpha": "Alpha Minore",
  58 +"Circle": "Cerchio",
  59 +"Disc": "Disco",
  60 +"Upper Alpha": "Alpha Superiore",
  61 +"Upper Roman": "Roman Superiore",
  62 +"Lower Roman": "Roman Minore",
  63 +"Name": "Nome",
  64 +"Anchor": "Fissa",
  65 +"You have unsaved changes are you sure you want to navigate away?": "Non hai salvato delle modifiche, sei sicuro di andartene?",
  66 +"Restore last draft": "Ripristina l'ultima bozza.",
  67 +"Special character": "Carattere Speciale",
  68 +"Source code": "Codice Sorgente",
  69 +"Color": "Colore",
  70 +"Right to left": "Da Destra a Sinistra",
  71 +"Left to right": "Da Sinistra a Destra",
  72 +"Emoticons": "Emoction",
  73 +"Robots": "Robot",
  74 +"Document properties": "Propriet\u00e0 Documento",
  75 +"Title": "Titolo",
  76 +"Keywords": "Parola Chiave",
  77 +"Encoding": "Codifica",
  78 +"Description": "Descrizione",
  79 +"Author": "Autore",
  80 +"Fullscreen": "Schermo Intero",
  81 +"Horizontal line": "Linea Orizzontale",
  82 +"Horizontal space": "Spazio Orizzontale",
  83 +"Insert\/edit image": "Aggiungi\/Modifica Immagine",
  84 +"General": "Generale",
  85 +"Advanced": "Avanzato",
  86 +"Source": "Fonte",
  87 +"Border": "Bordo",
  88 +"Constrain proportions": "Mantieni Proporzioni",
  89 +"Vertical space": "Spazio Verticale",
  90 +"Image description": "Descrizione Immagine",
  91 +"Style": "Stile",
  92 +"Dimensions": "Dimenzioni",
  93 +"Insert image": "Inserisci immagine",
  94 +"Insert date\/time": "Inserisci Data\/Ora",
  95 +"Remove link": "Rimuovi link",
  96 +"Url": "Url",
  97 +"Text to display": "Testo da Visualizzare",
  98 +"Anchors": "Anchors",
  99 +"Insert link": "Inserisci il Link",
  100 +"New window": "Nuova Finestra",
  101 +"None": "No",
  102 +"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL inserito sembra essere un collegamento esterno. Vuoi aggiungere il prefisso necessario http:\/\/?",
  103 +"Target": "Target",
  104 +"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL inserito sembra essere un indirizzo email. Vuoi aggiungere il prefisso necessario mailto:?",
  105 +"Insert\/edit link": "Inserisci\/Modifica Link",
  106 +"Insert\/edit video": "Inserisci\/Modifica Video",
  107 +"Poster": "Anteprima",
  108 +"Alternative source": "Alternativo",
  109 +"Paste your embed code below:": "Incolla il codice d'incorporamento qui:",
  110 +"Insert video": "Inserisci Video",
  111 +"Embed": "Incorporare",
  112 +"Nonbreaking space": "Spazio unificatore",
  113 +"Page break": "Interruzione di pagina",
  114 +"Paste as text": "incolla come testo",
  115 +"Preview": "Anteprima",
  116 +"Print": "Stampa",
  117 +"Save": "Salva",
  118 +"Could not find the specified string.": "Impossibile trovare la parola specifica.",
  119 +"Replace": "Sostituisci",
  120 +"Next": "Successivo",
  121 +"Whole words": "Parole Sbagliate",
  122 +"Find and replace": "Trova e Sostituisci",
  123 +"Replace with": "Sostituisci Con",
  124 +"Find": "Trova",
  125 +"Replace all": "Sostituisci Tutto",
  126 +"Match case": "Maiuscole\/Minuscole ",
  127 +"Prev": "Precedente",
  128 +"Spellcheck": "Controllo ortografico",
  129 +"Finish": "Termina",
  130 +"Ignore all": "Ignora Tutto",
  131 +"Ignore": "Ignora",
  132 +"Add to Dictionary": "Aggiungi al Dizionario",
  133 +"Insert row before": "Inserisci una Riga Prima",
  134 +"Rows": "Righe",
  135 +"Height": "Altezza",
  136 +"Paste row after": "Incolla una Riga Dopo",
  137 +"Alignment": "Allineamento",
  138 +"Border color": "Colore bordo",
  139 +"Column group": "Gruppo di Colonne",
  140 +"Row": "Riga",
  141 +"Insert column before": "Inserisci una Colonna Prima",
  142 +"Split cell": "Dividi Cella",
  143 +"Cell padding": "Padding della Cella",
  144 +"Cell spacing": "Spaziatura della Cella",
  145 +"Row type": "Tipo di Riga",
  146 +"Insert table": "Inserisci Tabella",
  147 +"Body": "Body",
  148 +"Caption": "Didascalia",
  149 +"Footer": "Footer",
  150 +"Delete row": "Cancella Riga",
  151 +"Paste row before": "Incolla una Riga Prima",
  152 +"Scope": "Campo",
  153 +"Delete table": "Cancella Tabella",
  154 +"H Align": "Allineamento H",
  155 +"Top": "In alto",
  156 +"Header cell": "cella d'intestazione",
  157 +"Column": "Colonna",
  158 +"Row group": "Gruppo di Righe",
  159 +"Cell": "Cella",
  160 +"Middle": "In mezzo",
  161 +"Cell type": "Tipo di Cella",
  162 +"Copy row": "Copia Riga",
  163 +"Row properties": "Propriet\u00e0 della Riga",
  164 +"Table properties": "Propiet\u00e0 della Tabella",
  165 +"Bottom": "In fondo",
  166 +"V Align": "Allineamento V",
  167 +"Header": "Header",
  168 +"Right": "Destra",
  169 +"Insert column after": "Inserisci una Colonna Dopo",
  170 +"Cols": "Colonne",
  171 +"Insert row after": "Inserisci una Riga Dopo",
  172 +"Width": "Larghezza",
  173 +"Cell properties": "Propiet\u00e0 della Cella",
  174 +"Left": "Sinistra",
  175 +"Cut row": "Taglia Riga",
  176 +"Delete column": "Cancella Colonna",
  177 +"Center": "Centro",
  178 +"Merge cells": "Unisci Cella",
  179 +"Insert template": "Inserisci Template",
  180 +"Templates": "Template",
  181 +"Background color": "Colore Background",
  182 +"Custom...": "Personalizzato...",
  183 +"Custom color": "Colore personalizzato",
  184 +"No color": "Nessun colore",
  185 +"Text color": "Colore Testo",
  186 +"Show blocks": "Mostra Blocchi",
  187 +"Show invisible characters": "Mostra Caratteri Invisibili",
  188 +"Words: {0}": "Parole: {0}",
  189 +"Insert": "Inserisci",
  190 +"File": "File",
  191 +"Edit": "Modifica",
  192 +"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Premi ALT-F9 per il men\u00f9. Premi ALT-F10 per la barra degli strumenti. Premi ALT-0 per l'aiuto.",
  193 +"Tools": "Strumenti",
  194 +"View": "Visualiza",
  195 +"Table": "Tabella",
  196 +"Format": "Formato"
  197 +});
0 198 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/langs/ja.js 0 → 100644
... ... @@ -0,0 +1,197 @@
  1 +tinymce.addI18n('ja',{
  2 +"Cut": "\u5207\u308a\u53d6\u308a",
  3 +"Heading 5": "\u898b\u51fa\u3057 5",
  4 +"Header 2": "\u30d8\u30c3\u30c0\u30fc 2",
  5 +"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u304a\u4f7f\u3044\u306e\u30d6\u30e9\u30a6\u30b6\u3067\u306f\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9\u6a5f\u80fd\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3002\u30ad\u30fc\u30dc\u30fc\u30c9\u306e\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8\uff08Ctrl+X, Ctrl+C, Ctrl+V\uff09\u3092\u304a\u4f7f\u3044\u4e0b\u3055\u3044\u3002",
  6 +"Heading 4": "\u898b\u51fa\u3057 4",
  7 +"Div": "Div",
  8 +"Heading 2": "\u898b\u51fa\u3057 2",
  9 +"Paste": "\u8cbc\u308a\u4ed8\u3051",
  10 +"Close": "\u9589\u3058\u308b",
  11 +"Font Family": "\u30d5\u30a9\u30f3\u30c8\u30d5\u30a1\u30df\u30ea\u30fc",
  12 +"Pre": "Pre",
  13 +"Align right": "\u53f3\u5bc4\u305b",
  14 +"New document": "\u65b0\u898f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8",
  15 +"Blockquote": "\u5f15\u7528",
  16 +"Numbered list": "\u756a\u53f7\u4ed8\u304d\u7b87\u6761\u66f8\u304d",
  17 +"Heading 1": "\u898b\u51fa\u3057 1",
  18 +"Headings": "\u898b\u51fa\u3057",
  19 +"Increase indent": "\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u5897\u3084\u3059",
  20 +"Formats": "\u66f8\u5f0f",
  21 +"Headers": "\u30d8\u30c3\u30c0\u30fc",
  22 +"Select all": "\u5168\u3066\u3092\u9078\u629e",
  23 +"Header 3": "\u30d8\u30c3\u30c0\u30fc 3",
  24 +"Blocks": "\u30d6\u30ed\u30c3\u30af",
  25 +"Undo": "\u5143\u306b\u623b\u3059",
  26 +"Strikethrough": "\u53d6\u308a\u6d88\u3057\u7dda",
  27 +"Bullet list": "\u7b87\u6761\u66f8\u304d",
  28 +"Header 1": "\u30d8\u30c3\u30c0\u30fc 1",
  29 +"Superscript": "\u4e0a\u4ed8\u304d\u6587\u5b57",
  30 +"Clear formatting": "\u66f8\u5f0f\u3092\u30af\u30ea\u30a2",
  31 +"Font Sizes": "\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba",
  32 +"Subscript": "\u4e0b\u4ed8\u304d\u6587\u5b57",
  33 +"Header 6": "\u30d8\u30c3\u30c0\u30fc 6",
  34 +"Redo": "\u3084\u308a\u76f4\u3059",
  35 +"Paragraph": "\u6bb5\u843d",
  36 +"Ok": "OK",
  37 +"Bold": "\u592a\u5b57",
  38 +"Code": "\u30b3\u30fc\u30c9",
  39 +"Italic": "\u659c\u4f53",
  40 +"Align center": "\u4e2d\u592e\u63c3\u3048",
  41 +"Header 5": "\u30d8\u30c3\u30c0\u30fc 5",
  42 +"Heading 6": "\u898b\u51fa\u3057 6",
  43 +"Heading 3": "\u898b\u51fa\u3057 3",
  44 +"Decrease indent": "\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u6e1b\u3089\u3059",
  45 +"Header 4": "\u30d8\u30c3\u30c0\u30fc 4",
  46 +"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u8cbc\u308a\u4ed8\u3051\u306f\u73fe\u5728\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u30e2\u30fc\u30c9\u3067\u3059\u3002\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u30aa\u30d5\u306b\u3057\u306a\u3044\u9650\u308a\u5185\u5bb9\u306f\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u8cbc\u308a\u4ed8\u3051\u3089\u308c\u307e\u3059\u3002",
  47 +"Underline": "\u4e0b\u7dda",
  48 +"Cancel": "\u30ad\u30e3\u30f3\u30bb\u30eb",
  49 +"Justify": "\u4e21\u7aef\u63c3\u3048",
  50 +"Inline": "\u30a4\u30f3\u30e9\u30a4\u30f3",
  51 +"Copy": "\u30b3\u30d4\u30fc",
  52 +"Align left": "\u5de6\u5bc4\u305b",
  53 +"Visual aids": "\u8868\u306e\u67a0\u7dda\u3092\u70b9\u7dda\u3067\u8868\u793a",
  54 +"Lower Greek": "\u5c0f\u6587\u5b57\u306e\u30ae\u30ea\u30b7\u30e3\u6587\u5b57",
  55 +"Square": "\u56db\u89d2",
  56 +"Default": "\u30c7\u30d5\u30a9\u30eb\u30c8",
  57 +"Lower Alpha": "\u5c0f\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8",
  58 +"Circle": "\u5186",
  59 +"Disc": "\u70b9",
  60 +"Upper Alpha": "\u5927\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8",
  61 +"Upper Roman": "\u5927\u6587\u5b57\u306e\u30ed\u30fc\u30de\u6570\u5b57",
  62 +"Lower Roman": "\u5c0f\u6587\u5b57\u306e\u30ed\u30fc\u30de\u6570\u5b57",
  63 +"Name": "\u30a2\u30f3\u30ab\u30fc\u540d",
  64 +"Anchor": "\u30a2\u30f3\u30ab\u30fc\uff08\u30ea\u30f3\u30af\u306e\u5230\u9054\u70b9\uff09",
  65 +"You have unsaved changes are you sure you want to navigate away?": "\u307e\u3060\u4fdd\u5b58\u3057\u3066\u3044\u306a\u3044\u5909\u66f4\u304c\u3042\u308a\u307e\u3059\u304c\u3001\u672c\u5f53\u306b\u3053\u306e\u30da\u30fc\u30b8\u3092\u96e2\u308c\u307e\u3059\u304b\uff1f",
  66 +"Restore last draft": "\u524d\u56de\u306e\u4e0b\u66f8\u304d\u3092\u5fa9\u6d3b\u3055\u305b\u308b",
  67 +"Special character": "\u7279\u6b8a\u6587\u5b57",
  68 +"Source code": "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9",
  69 +"Color": "\u30ab\u30e9\u30fc",
  70 +"Right to left": "\u53f3\u304b\u3089\u5de6",
  71 +"Left to right": "\u5de6\u304b\u3089\u53f3",
  72 +"Emoticons": "\u7d75\u6587\u5b57",
  73 +"Robots": "\u30ed\u30dc\u30c3\u30c4",
  74 +"Document properties": "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30d7\u30ed\u30d1\u30c6\u30a3",
  75 +"Title": "\u30bf\u30a4\u30c8\u30eb",
  76 +"Keywords": "\u30ad\u30fc\u30ef\u30fc\u30c9",
  77 +"Encoding": "\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0",
  78 +"Description": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u5185\u5bb9",
  79 +"Author": "\u8457\u8005",
  80 +"Fullscreen": "\u5168\u753b\u9762\u8868\u793a",
  81 +"Horizontal line": "\u6c34\u5e73\u7f6b\u7dda",
  82 +"Horizontal space": "\u6a2a\u65b9\u5411\u306e\u4f59\u767d",
  83 +"Insert\/edit image": "\u753b\u50cf\u306e\u633f\u5165\u30fb\u7de8\u96c6",
  84 +"General": "\u4e00\u822c",
  85 +"Advanced": "\u8a73\u7d30\u8a2d\u5b9a",
  86 +"Source": "\u753b\u50cf\u306e\u30bd\u30fc\u30b9",
  87 +"Border": "\u67a0\u7dda",
  88 +"Constrain proportions": "\u7e26\u6a2a\u6bd4\u3092\u4fdd\u6301\u3059\u308b",
  89 +"Vertical space": "\u7e26\u65b9\u5411\u306e\u4f59\u767d",
  90 +"Image description": "\u753b\u50cf\u306e\u8aac\u660e\u6587",
  91 +"Style": "\u30b9\u30bf\u30a4\u30eb",
  92 +"Dimensions": "\u753b\u50cf\u30b5\u30a4\u30ba\uff08\u6a2a\u30fb\u7e26\uff09",
  93 +"Insert image": "\u753b\u50cf\u306e\u633f\u5165",
  94 +"Insert date\/time": "\u65e5\u4ed8\u30fb\u6642\u523b",
  95 +"Remove link": "\u30ea\u30f3\u30af\u306e\u524a\u9664",
  96 +"Url": "\u30ea\u30f3\u30af\u5148URL",
  97 +"Text to display": "\u30ea\u30f3\u30af\u5143\u30c6\u30ad\u30b9\u30c8",
  98 +"Anchors": "\u30a2\u30f3\u30ab\u30fc\uff08\u30ea\u30f3\u30af\u306e\u5230\u9054\u70b9\uff09",
  99 +"Insert link": "\u30ea\u30f3\u30af",
  100 +"New window": "\u65b0\u898f\u30a6\u30a3\u30f3\u30c9\u30a6",
  101 +"None": "\u306a\u3057",
  102 +"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u5165\u529b\u3055\u308c\u305fURL\u306f\u5916\u90e8\u30ea\u30f3\u30af\u306e\u3088\u3046\u3067\u3059\u3002\u300chttp:\/\/\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f",
  103 +"Target": "\u30bf\u30fc\u30b2\u30c3\u30c8\u5c5e\u6027",
  104 +"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u5165\u529b\u3055\u308c\u305f\u5024\u306f\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u306e\u3088\u3046\u3067\u3059\u3002\u300cmailto:\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f",
  105 +"Insert\/edit link": "\u30ea\u30f3\u30af\u306e\u633f\u5165\u30fb\u7de8\u96c6",
  106 +"Insert\/edit video": "\u52d5\u753b\u306e\u633f\u5165\u30fb\u7de8\u96c6",
  107 +"Poster": "\u4ee3\u66ff\u753b\u50cf\u306e\u5834\u6240",
  108 +"Alternative source": "\u4ee3\u66ff\u52d5\u753b\u306e\u5834\u6240",
  109 +"Paste your embed code below:": "\u57cb\u3081\u8fbc\u307f\u7528\u30b3\u30fc\u30c9\u3092\u4e0b\u8a18\u306b\u8cbc\u308a\u4ed8\u3051\u3066\u304f\u3060\u3055\u3044\u3002",
  110 +"Insert video": "\u52d5\u753b",
  111 +"Embed": "\u57cb\u3081\u8fbc\u307f",
  112 +"Nonbreaking space": "\u56fa\u5b9a\u30b9\u30da\u30fc\u30b9\uff08&nbsp;\uff09",
  113 +"Page break": "\u30da\u30fc\u30b8\u533a\u5207\u308a",
  114 +"Paste as text": "\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u8cbc\u308a\u4ed8\u3051",
  115 +"Preview": "\u30d7\u30ec\u30d3\u30e5\u30fc",
  116 +"Print": "\u5370\u5237",
  117 +"Save": "\u4fdd\u5b58",
  118 +"Could not find the specified string.": "\u304a\u63a2\u3057\u306e\u6587\u5b57\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002",
  119 +"Replace": "\u7f6e\u304d\u63db\u3048",
  120 +"Next": "\u6b21",
  121 +"Whole words": "\u5358\u8a9e\u5358\u4f4d\u3067\u691c\u7d22\u3059\u308b",
  122 +"Find and replace": "\u691c\u7d22\u3068\u7f6e\u304d\u63db\u3048",
  123 +"Replace with": "\u7f6e\u304d\u63db\u3048\u308b\u6587\u5b57",
  124 +"Find": "\u691c\u7d22",
  125 +"Replace all": "\u5168\u3066\u3092\u7f6e\u304d\u63db\u3048\u308b",
  126 +"Match case": "\u5927\u6587\u5b57\u30fb\u5c0f\u6587\u5b57\u3092\u533a\u5225\u3059\u308b",
  127 +"Prev": "\u524d",
  128 +"Spellcheck": "\u30b9\u30da\u30eb\u30c1\u30a7\u30c3\u30af",
  129 +"Finish": "\u7d42\u4e86",
  130 +"Ignore all": "\u5168\u3066\u3092\u7121\u8996",
  131 +"Ignore": "\u7121\u8996",
  132 +"Add to Dictionary": "\u8f9e\u66f8\u306b\u8ffd\u52a0",
  133 +"Insert row before": "\u4e0a\u5074\u306b\u884c\u3092\u633f\u5165",
  134 +"Rows": "\u884c\u6570",
  135 +"Height": "\u9ad8\u3055",
  136 +"Paste row after": "\u4e0b\u5074\u306b\u884c\u3092\u8cbc\u308a\u4ed8\u3051",
  137 +"Alignment": "\u914d\u7f6e",
  138 +"Border color": "\u67a0\u7dda\u306e\u8272",
  139 +"Column group": "\u5217\u30b0\u30eb\u30fc\u30d7",
  140 +"Row": "\u884c",
  141 +"Insert column before": "\u5de6\u5074\u306b\u5217\u3092\u633f\u5165",
  142 +"Split cell": "\u30bb\u30eb\u306e\u5206\u5272",
  143 +"Cell padding": "\u30bb\u30eb\u5185\u4f59\u767d\uff08\u30d1\u30c7\u30a3\u30f3\u30b0\uff09",
  144 +"Cell spacing": "\u30bb\u30eb\u306e\u9593\u9694",
  145 +"Row type": "\u884c\u30bf\u30a4\u30d7",
  146 +"Insert table": "\u8868\u306e\u633f\u5165",
  147 +"Body": "\u30dc\u30c7\u30a3\u30fc",
  148 +"Caption": "\u8868\u984c",
  149 +"Footer": "\u30d5\u30c3\u30bf\u30fc",
  150 +"Delete row": "\u884c\u306e\u524a\u9664",
  151 +"Paste row before": "\u4e0a\u5074\u306b\u884c\u3092\u8cbc\u308a\u4ed8\u3051",
  152 +"Scope": "\u30b9\u30b3\u30fc\u30d7",
  153 +"Delete table": "\u8868\u306e\u524a\u9664",
  154 +"H Align": "\u6c34\u5e73\u65b9\u5411\u306e\u914d\u7f6e",
  155 +"Top": "\u4e0a",
  156 +"Header cell": "\u30d8\u30c3\u30c0\u30fc\u30bb\u30eb",
  157 +"Column": "\u5217",
  158 +"Row group": "\u884c\u30b0\u30eb\u30fc\u30d7",
  159 +"Cell": "\u30bb\u30eb",
  160 +"Middle": "\u4e2d\u592e",
  161 +"Cell type": "\u30bb\u30eb\u30bf\u30a4\u30d7",
  162 +"Copy row": "\u884c\u306e\u30b3\u30d4\u30fc",
  163 +"Row properties": "\u884c\u306e\u8a73\u7d30\u8a2d\u5b9a",
  164 +"Table properties": "\u8868\u306e\u8a73\u7d30\u8a2d\u5b9a",
  165 +"Bottom": "\u4e0b",
  166 +"V Align": "\u5782\u76f4\u65b9\u5411\u306e\u914d\u7f6e",
  167 +"Header": "\u30d8\u30c3\u30c0\u30fc",
  168 +"Right": "\u53f3\u5bc4\u305b",
  169 +"Insert column after": "\u53f3\u5074\u306b\u5217\u3092\u633f\u5165",
  170 +"Cols": "\u5217\u6570",
  171 +"Insert row after": "\u4e0b\u5074\u306b\u884c\u3092\u633f\u5165",
  172 +"Width": "\u5e45",
  173 +"Cell properties": "\u30bb\u30eb\u306e\u8a73\u7d30\u8a2d\u5b9a",
  174 +"Left": "\u5de6\u5bc4\u305b",
  175 +"Cut row": "\u884c\u306e\u5207\u308a\u53d6\u308a",
  176 +"Delete column": "\u5217\u306e\u524a\u9664",
  177 +"Center": "\u4e2d\u592e\u63c3\u3048",
  178 +"Merge cells": "\u30bb\u30eb\u306e\u7d50\u5408",
  179 +"Insert template": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u633f\u5165",
  180 +"Templates": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u540d",
  181 +"Background color": "\u80cc\u666f\u8272",
  182 +"Custom...": "\u30ab\u30b9\u30bf\u30e0...",
  183 +"Custom color": "\u30ab\u30b9\u30bf\u30e0\u30ab\u30e9\u30fc",
  184 +"No color": "\u30ab\u30e9\u30fc\u306a\u3057",
  185 +"Text color": "\u6587\u5b57\u306e\u8272",
  186 +"Show blocks": "\u6587\u7ae0\u306e\u533a\u5207\u308a\u3092\u70b9\u7dda\u3067\u8868\u793a",
  187 +"Show invisible characters": "\u4e0d\u53ef\u8996\u6587\u5b57\u3092\u8868\u793a",
  188 +"Words: {0}": "\u5358\u8a9e\u6570: {0}",
  189 +"Insert": "\u633f\u5165",
  190 +"File": "\u30d5\u30a1\u30a4\u30eb",
  191 +"Edit": "\u7de8\u96c6",
  192 +"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u66f8\u5f0f\u4ed8\u304d\u30c6\u30ad\u30b9\u30c8\u306e\u7de8\u96c6\u753b\u9762\u3002ALT-F9\u3067\u30e1\u30cb\u30e5\u30fc\u3001ALT-F10\u3067\u30c4\u30fc\u30eb\u30d0\u30fc\u3001ALT-0\u3067\u30d8\u30eb\u30d7\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002",
  193 +"Tools": "\u30c4\u30fc\u30eb",
  194 +"View": "\u8868\u793a",
  195 +"Table": "\u8868",
  196 +"Format": "\u66f8\u5f0f"
  197 +});
0 198 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/langs/pt.js 0 → 100644
... ... @@ -0,0 +1,197 @@
  1 +tinymce.addI18n('pt_BR',{
  2 +"Cut": "Recortar",
  3 +"Heading 5": "Cabe\u00e7alho 5",
  4 +"Header 2": "Cabe\u00e7alho 2",
  5 +"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Seu navegador n\u00e3o suporta acesso direto \u00e0 \u00e1rea de transfer\u00eancia. Por favor use os atalhos Ctrl+X - C - V do teclado",
  6 +"Heading 4": "Cabe\u00e7alho 4",
  7 +"Div": "Div",
  8 +"Heading 2": "Cabe\u00e7alho 2",
  9 +"Paste": "Colar",
  10 +"Close": "Fechar",
  11 +"Font Family": "Fonte",
  12 +"Pre": "Pre",
  13 +"Align right": "Alinhar \u00e0 direita",
  14 +"New document": "Novo documento",
  15 +"Blockquote": "Aspas",
  16 +"Numbered list": "Lista ordenada",
  17 +"Heading 1": "Cabe\u00e7alho 1",
  18 +"Headings": "Cabe\u00e7alhos",
  19 +"Increase indent": "Aumentar recuo",
  20 +"Formats": "Formatos",
  21 +"Headers": "Cabe\u00e7alhos",
  22 +"Select all": "Selecionar tudo",
  23 +"Header 3": "Cabe\u00e7alho 3",
  24 +"Blocks": "Blocos",
  25 +"Undo": "Desfazer",
  26 +"Strikethrough": "Riscar",
  27 +"Bullet list": "Lista n\u00e3o ordenada",
  28 +"Header 1": "Cabe\u00e7alho 1",
  29 +"Superscript": "Sobrescrever",
  30 +"Clear formatting": "Limpar formata\u00e7\u00e3o",
  31 +"Font Sizes": "Tamanho",
  32 +"Subscript": "Subscrever",
  33 +"Header 6": "Cabe\u00e7alho 6",
  34 +"Redo": "Refazer",
  35 +"Paragraph": "Par\u00e1grafo",
  36 +"Ok": "Ok",
  37 +"Bold": "Negrito",
  38 +"Code": "C\u00f3digo",
  39 +"Italic": "It\u00e1lico",
  40 +"Align center": "Centralizar",
  41 +"Header 5": "Cabe\u00e7alho 5",
  42 +"Heading 6": "Cabe\u00e7alho 6",
  43 +"Heading 3": "Cabe\u00e7alho 3",
  44 +"Decrease indent": "Diminuir recuo",
  45 +"Header 4": "Cabe\u00e7alho 4",
  46 +"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "O comando colar est\u00e1 agora em modo texto plano. O conte\u00fado ser\u00e1 colado como texto plano at\u00e9 voc\u00ea desligar esta op\u00e7\u00e3o.",
  47 +"Underline": "Sublinhar",
  48 +"Cancel": "Cancelar",
  49 +"Justify": "Justificar",
  50 +"Inline": "Em linha",
  51 +"Copy": "Copiar",
  52 +"Align left": "Alinhar \u00e0 esquerda",
  53 +"Visual aids": "Ajuda visual",
  54 +"Lower Greek": "\u03b1. \u03b2. \u03b3. ...",
  55 +"Square": "Quadrado",
  56 +"Default": "Padr\u00e3o",
  57 +"Lower Alpha": "a. b. c. ...",
  58 +"Circle": "C\u00edrculo",
  59 +"Disc": "Disco",
  60 +"Upper Alpha": "A. B. C. ...",
  61 +"Upper Roman": "I. II. III. ...",
  62 +"Lower Roman": "i. ii. iii. ...",
  63 +"Name": "Nome",
  64 +"Anchor": "\u00c2ncora",
  65 +"You have unsaved changes are you sure you want to navigate away?": "Voc\u00ea tem mudan\u00e7as n\u00e3o salvas. Voc\u00ea tem certeza que deseja sair?",
  66 +"Restore last draft": "Restaurar \u00faltimo rascunho",
  67 +"Special character": "Caracteres especiais",
  68 +"Source code": "C\u00f3digo fonte",
  69 +"Color": "Cor",
  70 +"Right to left": "Da direita para a esquerda",
  71 +"Left to right": "Da esquerda para a direita",
  72 +"Emoticons": "Emoticons",
  73 +"Robots": "Rob\u00f4s",
  74 +"Document properties": "Propriedades do documento",
  75 +"Title": "T\u00edtulo",
  76 +"Keywords": "Palavras-chave",
  77 +"Encoding": "Codifica\u00e7\u00e3o",
  78 +"Description": "Descri\u00e7\u00e3o",
  79 +"Author": "Autor",
  80 +"Fullscreen": "Tela cheia",
  81 +"Horizontal line": "Linha horizontal",
  82 +"Horizontal space": "Espa\u00e7amento horizontal",
  83 +"Insert\/edit image": "Inserir\/editar imagem",
  84 +"General": "Geral",
  85 +"Advanced": "Avan\u00e7ado",
  86 +"Source": "Endere\u00e7o da imagem",
  87 +"Border": "Borda",
  88 +"Constrain proportions": "Manter propor\u00e7\u00f5es",
  89 +"Vertical space": "Espa\u00e7amento vertical",
  90 +"Image description": "Inserir descri\u00e7\u00e3o",
  91 +"Style": "Estilo",
  92 +"Dimensions": "Dimens\u00f5es",
  93 +"Insert image": "Inserir imagem",
  94 +"Insert date\/time": "Inserir data\/hora",
  95 +"Remove link": "Remover link",
  96 +"Url": "Url",
  97 +"Text to display": "Texto para mostrar",
  98 +"Anchors": "\u00c2ncoras",
  99 +"Insert link": "Inserir link",
  100 +"New window": "Nova janela",
  101 +"None": "Nenhum",
  102 +"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "A URL que voc\u00ea informou parece ser um link externo. Deseja incluir o prefixo http:\/\/?",
  103 +"Target": "Alvo",
  104 +"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "A URL que voc\u00ea informou parece ser um endere\u00e7o de email. Deseja incluir o prefixo mailto:?",
  105 +"Insert\/edit link": "Inserir\/editar link",
  106 +"Insert\/edit video": "Inserir\/editar v\u00eddeo",
  107 +"Poster": "Autor",
  108 +"Alternative source": "Fonte alternativa",
  109 +"Paste your embed code below:": "Insira o c\u00f3digo de incorpora\u00e7\u00e3o abaixo:",
  110 +"Insert video": "Inserir v\u00eddeo",
  111 +"Embed": "Incorporar",
  112 +"Nonbreaking space": "Espa\u00e7o n\u00e3o separ\u00e1vel",
  113 +"Page break": "Quebra de p\u00e1gina",
  114 +"Paste as text": "Colar como texto",
  115 +"Preview": "Pr\u00e9-visualizar",
  116 +"Print": "Imprimir",
  117 +"Save": "Salvar",
  118 +"Could not find the specified string.": "N\u00e3o foi poss\u00edvel encontrar o termo especificado",
  119 +"Replace": "Substituir",
  120 +"Next": "Pr\u00f3ximo",
  121 +"Whole words": "Palavras inteiras",
  122 +"Find and replace": "Localizar e substituir",
  123 +"Replace with": "Substituir por",
  124 +"Find": "Localizar",
  125 +"Replace all": "Substituir tudo",
  126 +"Match case": "Diferenciar mai\u00fasculas e min\u00fasculas",
  127 +"Prev": "Anterior",
  128 +"Spellcheck": "Corretor ortogr\u00e1fico",
  129 +"Finish": "Finalizar",
  130 +"Ignore all": "Ignorar tudo",
  131 +"Ignore": "Ignorar",
  132 +"Add to Dictionary": "Adicionar ao Dicion\u00e1rio",
  133 +"Insert row before": "Inserir linha antes",
  134 +"Rows": "Linhas",
  135 +"Height": "Altura",
  136 +"Paste row after": "Colar linha depois",
  137 +"Alignment": "Alinhamento",
  138 +"Border color": "Cor da borda",
  139 +"Column group": "Agrupar coluna",
  140 +"Row": "Linha",
  141 +"Insert column before": "Inserir coluna antes",
  142 +"Split cell": "Dividir c\u00e9lula",
  143 +"Cell padding": "Espa\u00e7amento interno da c\u00e9lula",
  144 +"Cell spacing": "Espa\u00e7amento da c\u00e9lula",
  145 +"Row type": "Tipo de linha",
  146 +"Insert table": "Inserir tabela",
  147 +"Body": "Corpo",
  148 +"Caption": "Legenda",
  149 +"Footer": "Rodap\u00e9",
  150 +"Delete row": "Excluir linha",
  151 +"Paste row before": "Colar linha antes",
  152 +"Scope": "Escopo",
  153 +"Delete table": "Excluir tabela",
  154 +"H Align": "Alinhamento H",
  155 +"Top": "Superior",
  156 +"Header cell": "C\u00e9lula cabe\u00e7alho",
  157 +"Column": "Coluna",
  158 +"Row group": "Agrupar linha",
  159 +"Cell": "C\u00e9lula",
  160 +"Middle": "Meio",
  161 +"Cell type": "Tipo de c\u00e9lula",
  162 +"Copy row": "Copiar linha",
  163 +"Row properties": "Propriedades da linha",
  164 +"Table properties": "Propriedades da tabela",
  165 +"Bottom": "Inferior",
  166 +"V Align": "Alinhamento V",
  167 +"Header": "Cabe\u00e7alho",
  168 +"Right": "Direita",
  169 +"Insert column after": "Inserir coluna depois",
  170 +"Cols": "Colunas",
  171 +"Insert row after": "Inserir linha depois",
  172 +"Width": "Largura",
  173 +"Cell properties": "Propriedades da c\u00e9lula",
  174 +"Left": "Esquerdo",
  175 +"Cut row": "Recortar linha",
  176 +"Delete column": "Excluir coluna",
  177 +"Center": "Centro",
  178 +"Merge cells": "Agrupar c\u00e9lulas",
  179 +"Insert template": "Inserir modelo",
  180 +"Templates": "Modelos",
  181 +"Background color": "Cor do fundo",
  182 +"Custom...": "Personalizado...",
  183 +"Custom color": "Cor personalizada",
  184 +"No color": "Nenhuma cor",
  185 +"Text color": "Cor do texto",
  186 +"Show blocks": "Mostrar blocos",
  187 +"Show invisible characters": "Exibir caracteres invis\u00edveis",
  188 +"Words: {0}": "Palavras: {0}",
  189 +"Insert": "Inserir",
  190 +"File": "Arquivo",
  191 +"Edit": "Editar",
  192 +"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c1rea de texto formatado. Pressione ALT-F9 para exibir o menu, ALT-F10 para exibir a barra de ferramentas ou ALT-0 para exibir a ajuda",
  193 +"Tools": "Ferramentas",
  194 +"View": "Visualizar",
  195 +"Table": "Tabela",
  196 +"Format": "Formatar"
  197 +});
0 198 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/langs/readme.md 0 → 100644
... ... @@ -0,0 +1,3 @@
  1 +This is where language files should be placed.
  2 +
  3 +Please DO NOT translate these directly use this service: https://www.transifex.com/projects/p/tinymce/
... ...
public/javascripts/tinymce/js/tinymce/langs/ru.js 0 → 100644
... ... @@ -0,0 +1,197 @@
  1 +tinymce.addI18n('ru',{
  2 +"Cut": "\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c",
  3 +"Heading 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5",
  4 +"Header 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2",
  5 +"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u043f\u0440\u044f\u043c\u043e\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0431\u0443\u0444\u0435\u0440\u0443 \u043e\u0431\u043c\u0435\u043d\u0430. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u0441\u043e\u0447\u0435\u0442\u0430\u043d\u0438\u044f \u043a\u043b\u0430\u0432\u0438\u0448: Ctrl+X\/C\/V.",
  6 +"Heading 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4",
  7 +"Div": "\u0411\u043b\u043e\u043a",
  8 +"Heading 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2",
  9 +"Paste": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c",
  10 +"Close": "\u0417\u0430\u043a\u0440\u044b\u0442\u044c",
  11 +"Font Family": "\u0428\u0440\u0438\u0444\u0442",
  12 +"Pre": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
  13 +"Align right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
  14 +"New document": "\u041d\u043e\u0432\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442",
  15 +"Blockquote": "\u0426\u0438\u0442\u0430\u0442\u0430",
  16 +"Numbered list": "\u041d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
  17 +"Heading 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1",
  18 +"Headings": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438",
  19 +"Increase indent": "\u0423\u0432\u0435\u043b\u0438\u0447\u0438\u0442\u044c \u043e\u0442\u0441\u0442\u0443\u043f",
  20 +"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442",
  21 +"Headers": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438",
  22 +"Select all": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u044c \u0432\u0441\u0435",
  23 +"Header 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3",
  24 +"Blocks": "\u0411\u043b\u043e\u043a\u0438",
  25 +"Undo": "\u0412\u0435\u0440\u043d\u0443\u0442\u044c",
  26 +"Strikethrough": "\u0417\u0430\u0447\u0435\u0440\u043a\u043d\u0443\u0442\u044b\u0439",
  27 +"Bullet list": "\u041c\u0430\u0440\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
  28 +"Header 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1",
  29 +"Superscript": "\u0412\u0435\u0440\u0445\u043d\u0438\u0439 \u0438\u043d\u0434\u0435\u043a\u0441",
  30 +"Clear formatting": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442",
  31 +"Font Sizes": "\u0420\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430",
  32 +"Subscript": "\u041d\u0438\u0436\u043d\u0438\u0439 \u0438\u043d\u0434\u0435\u043a\u0441",
  33 +"Header 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6",
  34 +"Redo": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c",
  35 +"Paragraph": "\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444",
  36 +"Ok": "\u041e\u043a",
  37 +"Bold": "\u041f\u043e\u043b\u0443\u0436\u0438\u0440\u043d\u044b\u0439",
  38 +"Code": "\u041a\u043e\u0434",
  39 +"Italic": "\u041a\u0443\u0440\u0441\u0438\u0432",
  40 +"Align center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
  41 +"Header 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5",
  42 +"Heading 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6",
  43 +"Heading 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3",
  44 +"Decrease indent": "\u0423\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u044c \u043e\u0442\u0441\u0442\u0443\u043f",
  45 +"Header 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4",
  46 +"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0412\u0441\u0442\u0430\u0432\u043a\u0430 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432 \u0432\u0438\u0434\u0435 \u043f\u0440\u043e\u0441\u0442\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0430, \u043f\u043e\u043a\u0430 \u043d\u0435 \u043e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u043e\u043f\u0446\u0438\u044e.",
  47 +"Underline": "\u041f\u043e\u0434\u0447\u0435\u0440\u043a\u043d\u0443\u0442\u044b\u0439",
  48 +"Cancel": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c",
  49 +"Justify": "\u041f\u043e \u0448\u0438\u0440\u0438\u043d\u0435",
  50 +"Inline": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435",
  51 +"Copy": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c",
  52 +"Align left": "\u041f\u043e \u043b\u0435\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
  53 +"Visual aids": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043a\u043e\u043d\u0442\u0443\u0440\u044b",
  54 +"Lower Greek": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u0433\u0440\u0435\u0447\u0435\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b",
  55 +"Square": "\u041a\u0432\u0430\u0434\u0440\u0430\u0442\u044b",
  56 +"Default": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439",
  57 +"Lower Alpha": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u043b\u0430\u0442\u0438\u043d\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b",
  58 +"Circle": "\u041e\u043a\u0440\u0443\u0436\u043d\u043e\u0441\u0442\u0438",
  59 +"Disc": "\u041a\u0440\u0443\u0433\u0438",
  60 +"Upper Alpha": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u044b\u0435 \u043b\u0430\u0442\u0438\u043d\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b",
  61 +"Upper Roman": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u044b\u0435 \u0440\u0438\u043c\u0441\u043a\u0438\u0435 \u0446\u0438\u0444\u0440\u044b",
  62 +"Lower Roman": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u0440\u0438\u043c\u0441\u043a\u0438\u0435 \u0446\u0438\u0444\u0440\u044b",
  63 +"Name": "\u0418\u043c\u044f",
  64 +"Anchor": "\u042f\u043a\u043e\u0440\u044c",
  65 +"You have unsaved changes are you sure you want to navigate away?": "\u0423 \u0432\u0430\u0441 \u0435\u0441\u0442\u044c \u043d\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u044b\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f. \u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0439\u0442\u0438?",
  66 +"Restore last draft": "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430",
  67 +"Special character": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b",
  68 +"Source code": "\u0418\u0441\u0445\u043e\u0434\u043d\u044b\u0439 \u043a\u043e\u0434",
  69 +"Color": "\u0426\u0432\u0435\u0442",
  70 +"Right to left": "\u041d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043f\u0440\u0430\u0432\u0430 \u043d\u0430\u043b\u0435\u0432\u043e",
  71 +"Left to right": "\u041d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043b\u0435\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e",
  72 +"Emoticons": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u043c\u0430\u0439\u043b",
  73 +"Robots": "\u0420\u043e\u0431\u043e\u0442\u044b",
  74 +"Document properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
  75 +"Title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
  76 +"Keywords": "\u041a\u043b\u044e\u0447\u0438\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430",
  77 +"Encoding": "\u041a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430",
  78 +"Description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
  79 +"Author": "\u0410\u0432\u0442\u043e\u0440",
  80 +"Fullscreen": "\u041f\u043e\u043b\u043d\u043e\u044d\u043a\u0440\u0430\u043d\u043d\u044b\u0439 \u0440\u0435\u0436\u0438\u043c",
  81 +"Horizontal line": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f",
  82 +"Horizontal space": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b",
  83 +"Insert\/edit image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
  84 +"General": "\u041e\u0431\u0449\u0435\u0435",
  85 +"Advanced": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0435",
  86 +"Source": "\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a",
  87 +"Border": "\u0420\u0430\u043c\u043a\u0430",
  88 +"Constrain proportions": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u0438",
  89 +"Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b",
  90 +"Image description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
  91 +"Style": "\u0421\u0442\u0438\u043b\u044c",
  92 +"Dimensions": "\u0420\u0430\u0437\u043c\u0435\u0440",
  93 +"Insert image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
  94 +"Insert date\/time": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0434\u0430\u0442\u0443\/\u0432\u0440\u0435\u043c\u044f",
  95 +"Remove link": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
  96 +"Url": "\u0410\u0434\u0440\u0435\u0441 \u0441\u0441\u044b\u043b\u043a\u0438",
  97 +"Text to display": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u043c\u044b\u0439 \u0442\u0435\u043a\u0441\u0442",
  98 +"Anchors": "\u042f\u043a\u043e\u0440\u044f",
  99 +"Insert link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
  100 +"New window": "\u0412 \u043d\u043e\u0432\u043e\u043c \u043e\u043a\u043d\u0435",
  101 +"None": "\u041d\u0435\u0442",
  102 +"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0439 URL \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u043d\u0435\u0448\u043d\u0435\u0439 \u0441\u0441\u044b\u043b\u043a\u043e\u0439. \u0412\u044b \u0436\u0435\u043b\u0430\u0435\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u00abhttp:\/\/\u00bb?",
  103 +"Target": "\u041e\u0442\u043a\u0440\u044b\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
  104 +"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0439 URL \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u043c \u0430\u0434\u0440\u0435\u0441\u043e\u043c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b. \u0412\u044b \u0436\u0435\u043b\u0430\u0435\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u00abmailto:\u00bb?",
  105 +"Insert\/edit link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
  106 +"Insert\/edit video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0438\u0434\u0435\u043e",
  107 +"Poster": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
  108 +"Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u044b\u0439 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a",
  109 +"Paste your embed code below:": "\u0412\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0432\u0430\u0448 \u043a\u043e\u0434 \u043d\u0438\u0436\u0435:",
  110 +"Insert video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0432\u0438\u0434\u0435\u043e",
  111 +"Embed": "\u041a\u043e\u0434 \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438",
  112 +"Nonbreaking space": "\u041d\u0435\u0440\u0430\u0437\u0440\u044b\u0432\u043d\u044b\u0439 \u043f\u0440\u043e\u0431\u0435\u043b",
  113 +"Page break": "\u0420\u0430\u0437\u0440\u044b\u0432 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b",
  114 +"Paste as text": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043a\u0430\u043a \u0442\u0435\u043a\u0441\u0442",
  115 +"Preview": "\u041f\u0440\u0435\u0434\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440",
  116 +"Print": "\u041f\u0435\u0447\u0430\u0442\u044c",
  117 +"Save": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c",
  118 +"Could not find the specified string.": "\u0417\u0430\u0434\u0430\u043d\u043d\u0430\u044f \u0441\u0442\u0440\u043e\u043a\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430",
  119 +"Replace": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c",
  120 +"Next": "\u0412\u043d\u0438\u0437",
  121 +"Whole words": "\u0421\u043b\u043e\u0432\u043e \u0446\u0435\u043b\u0438\u043a\u043e\u043c",
  122 +"Find and replace": "\u041f\u043e\u0438\u0441\u043a \u0438 \u0437\u0430\u043c\u0435\u043d\u0430",
  123 +"Replace with": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u043d\u0430",
  124 +"Find": "\u041d\u0430\u0439\u0442\u0438",
  125 +"Replace all": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u0441\u0435",
  126 +"Match case": "\u0423\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u044c \u0440\u0435\u0433\u0438\u0441\u0442\u0440",
  127 +"Prev": "\u0412\u0432\u0435\u0440\u0445",
  128 +"Spellcheck": "\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
  129 +"Finish": "\u0417\u0430\u043a\u043e\u043d\u0447\u0438\u0442\u044c",
  130 +"Ignore all": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0441\u0435",
  131 +"Ignore": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c",
  132 +"Add to Dictionary": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u0441\u043b\u043e\u0432\u0430\u0440\u044c",
  133 +"Insert row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0443\u0441\u0442\u0443\u044e \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u0432\u0435\u0440\u0445\u0443",
  134 +"Rows": "\u0421\u0442\u0440\u043e\u043a\u0438",
  135 +"Height": "\u0412\u044b\u0441\u043e\u0442\u0430",
  136 +"Paste row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u043d\u0438\u0437\u0443",
  137 +"Alignment": "\u0412\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435",
  138 +"Border color": "\u0426\u0432\u0435\u0442 \u0440\u0430\u043c\u043a\u0438",
  139 +"Column group": "\u0413\u0440\u0443\u043f\u043f\u0430 \u043a\u043e\u043b\u043e\u043d\u043e\u043a",
  140 +"Row": "\u0421\u0442\u0440\u043e\u043a\u0430",
  141 +"Insert column before": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u0441\u043b\u0435\u0432\u0430",
  142 +"Split cell": "\u0420\u0430\u0437\u0431\u0438\u0442\u044c \u044f\u0447\u0435\u0439\u043a\u0443",
  143 +"Cell padding": "\u0412\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0438\u0439 \u043e\u0442\u0441\u0442\u0443\u043f",
  144 +"Cell spacing": "\u0412\u043d\u0435\u0448\u043d\u0438\u0439 \u043e\u0442\u0441\u0442\u0443\u043f",
  145 +"Row type": "\u0422\u0438\u043f \u0441\u0442\u0440\u043e\u043a\u0438",
  146 +"Insert table": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443",
  147 +"Body": "\u0422\u0435\u043b\u043e",
  148 +"Caption": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
  149 +"Footer": "\u041d\u0438\u0437",
  150 +"Delete row": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443",
  151 +"Paste row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u0432\u0435\u0440\u0445\u0443",
  152 +"Scope": "Scope",
  153 +"Delete table": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443",
  154 +"H Align": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435",
  155 +"Top": "\u041f\u043e \u0432\u0435\u0440\u0445\u0443",
  156 +"Header cell": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
  157 +"Column": "\u0421\u0442\u043e\u043b\u0431\u0435\u0446",
  158 +"Row group": "\u0413\u0440\u0443\u043f\u043f\u0430 \u0441\u0442\u0440\u043e\u043a",
  159 +"Cell": "\u042f\u0447\u0435\u0439\u043a\u0430",
  160 +"Middle": "\u041f\u043e \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0435",
  161 +"Cell type": "\u0422\u0438\u043f \u044f\u0447\u0435\u0439\u043a\u0438",
  162 +"Copy row": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443",
  163 +"Row properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0441\u0442\u0440\u043e\u043a\u0438",
  164 +"Table properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u044b",
  165 +"Bottom": "\u041f\u043e \u043d\u0438\u0437\u0443",
  166 +"V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435",
  167 +"Header": "\u0428\u0430\u043f\u043a\u0430",
  168 +"Right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
  169 +"Insert column after": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u0441\u043f\u0440\u0430\u0432\u0430",
  170 +"Cols": "\u0421\u0442\u043e\u043b\u0431\u0446\u044b",
  171 +"Insert row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0443\u0441\u0442\u0443\u044e \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u043d\u0438\u0437\u0443",
  172 +"Width": "\u0428\u0438\u0440\u0438\u043d\u0430",
  173 +"Cell properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u044f\u0447\u0435\u0439\u043a\u0438",
  174 +"Left": "\u041f\u043e \u043b\u0435\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
  175 +"Cut row": "\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443",
  176 +"Delete column": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446",
  177 +"Center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
  178 +"Merge cells": "\u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u044f\u0447\u0435\u0439\u043a\u0438",
  179 +"Insert template": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d",
  180 +"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u044b",
  181 +"Background color": "\u0426\u0432\u0435\u0442 \u0444\u043e\u043d\u0430",
  182 +"Custom...": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c\u2026",
  183 +"Custom color": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0446\u0432\u0435\u0442",
  184 +"No color": "\u0411\u0435\u0437 \u0446\u0432\u0435\u0442\u0430",
  185 +"Text color": "\u0426\u0432\u0435\u0442 \u0442\u0435\u043a\u0441\u0442\u0430",
  186 +"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u0431\u043b\u043e\u043a\u0438",
  187 +"Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043d\u0435\u0432\u0438\u0434\u0438\u043c\u044b\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b",
  188 +"Words: {0}": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u043b\u043e\u0432: {0}",
  189 +"Insert": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c",
  190 +"File": "\u0424\u0430\u0439\u043b",
  191 +"Edit": "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c",
  192 +"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043f\u043e\u043b\u0435. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 ALT-F9 \u0447\u0442\u043e\u0431\u044b \u0432\u044b\u0437\u0432\u0430\u0442\u044c \u043c\u0435\u043d\u044e, ALT-F10 \u043f\u0430\u043d\u0435\u043b\u044c \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432, ALT-0 \u0434\u043b\u044f \u0432\u044b\u0437\u043e\u0432\u0430 \u043f\u043e\u043c\u043e\u0449\u0438.",
  193 +"Tools": "\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b",
  194 +"View": "\u0412\u0438\u0434",
  195 +"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430",
  196 +"Format": "\u0424\u043e\u0440\u043c\u0430\u0442"
  197 +});
0 198 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/license.txt 0 → 100644
... ... @@ -0,0 +1,504 @@
  1 + GNU LESSER GENERAL PUBLIC LICENSE
  2 + Version 2.1, February 1999
  3 +
  4 + Copyright (C) 1991, 1999 Free Software Foundation, Inc.
  5 + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  6 + Everyone is permitted to copy and distribute verbatim copies
  7 + of this license document, but changing it is not allowed.
  8 +
  9 +[This is the first released version of the Lesser GPL. It also counts
  10 + as the successor of the GNU Library Public License, version 2, hence
  11 + the version number 2.1.]
  12 +
  13 + Preamble
  14 +
  15 + The licenses for most software are designed to take away your
  16 +freedom to share and change it. By contrast, the GNU General Public
  17 +Licenses are intended to guarantee your freedom to share and change
  18 +free software--to make sure the software is free for all its users.
  19 +
  20 + This license, the Lesser General Public License, applies to some
  21 +specially designated software packages--typically libraries--of the
  22 +Free Software Foundation and other authors who decide to use it. You
  23 +can use it too, but we suggest you first think carefully about whether
  24 +this license or the ordinary General Public License is the better
  25 +strategy to use in any particular case, based on the explanations below.
  26 +
  27 + When we speak of free software, we are referring to freedom of use,
  28 +not price. Our General Public Licenses are designed to make sure that
  29 +you have the freedom to distribute copies of free software (and charge
  30 +for this service if you wish); that you receive source code or can get
  31 +it if you want it; that you can change the software and use pieces of
  32 +it in new free programs; and that you are informed that you can do
  33 +these things.
  34 +
  35 + To protect your rights, we need to make restrictions that forbid
  36 +distributors to deny you these rights or to ask you to surrender these
  37 +rights. These restrictions translate to certain responsibilities for
  38 +you if you distribute copies of the library or if you modify it.
  39 +
  40 + For example, if you distribute copies of the library, whether gratis
  41 +or for a fee, you must give the recipients all the rights that we gave
  42 +you. You must make sure that they, too, receive or can get the source
  43 +code. If you link other code with the library, you must provide
  44 +complete object files to the recipients, so that they can relink them
  45 +with the library after making changes to the library and recompiling
  46 +it. And you must show them these terms so they know their rights.
  47 +
  48 + We protect your rights with a two-step method: (1) we copyright the
  49 +library, and (2) we offer you this license, which gives you legal
  50 +permission to copy, distribute and/or modify the library.
  51 +
  52 + To protect each distributor, we want to make it very clear that
  53 +there is no warranty for the free library. Also, if the library is
  54 +modified by someone else and passed on, the recipients should know
  55 +that what they have is not the original version, so that the original
  56 +author's reputation will not be affected by problems that might be
  57 +introduced by others.
  58 +
  59 + Finally, software patents pose a constant threat to the existence of
  60 +any free program. We wish to make sure that a company cannot
  61 +effectively restrict the users of a free program by obtaining a
  62 +restrictive license from a patent holder. Therefore, we insist that
  63 +any patent license obtained for a version of the library must be
  64 +consistent with the full freedom of use specified in this license.
  65 +
  66 + Most GNU software, including some libraries, is covered by the
  67 +ordinary GNU General Public License. This license, the GNU Lesser
  68 +General Public License, applies to certain designated libraries, and
  69 +is quite different from the ordinary General Public License. We use
  70 +this license for certain libraries in order to permit linking those
  71 +libraries into non-free programs.
  72 +
  73 + When a program is linked with a library, whether statically or using
  74 +a shared library, the combination of the two is legally speaking a
  75 +combined work, a derivative of the original library. The ordinary
  76 +General Public License therefore permits such linking only if the
  77 +entire combination fits its criteria of freedom. The Lesser General
  78 +Public License permits more lax criteria for linking other code with
  79 +the library.
  80 +
  81 + We call this license the "Lesser" General Public License because it
  82 +does Less to protect the user's freedom than the ordinary General
  83 +Public License. It also provides other free software developers Less
  84 +of an advantage over competing non-free programs. These disadvantages
  85 +are the reason we use the ordinary General Public License for many
  86 +libraries. However, the Lesser license provides advantages in certain
  87 +special circumstances.
  88 +
  89 + For example, on rare occasions, there may be a special need to
  90 +encourage the widest possible use of a certain library, so that it becomes
  91 +a de-facto standard. To achieve this, non-free programs must be
  92 +allowed to use the library. A more frequent case is that a free
  93 +library does the same job as widely used non-free libraries. In this
  94 +case, there is little to gain by limiting the free library to free
  95 +software only, so we use the Lesser General Public License.
  96 +
  97 + In other cases, permission to use a particular library in non-free
  98 +programs enables a greater number of people to use a large body of
  99 +free software. For example, permission to use the GNU C Library in
  100 +non-free programs enables many more people to use the whole GNU
  101 +operating system, as well as its variant, the GNU/Linux operating
  102 +system.
  103 +
  104 + Although the Lesser General Public License is Less protective of the
  105 +users' freedom, it does ensure that the user of a program that is
  106 +linked with the Library has the freedom and the wherewithal to run
  107 +that program using a modified version of the Library.
  108 +
  109 + The precise terms and conditions for copying, distribution and
  110 +modification follow. Pay close attention to the difference between a
  111 +"work based on the library" and a "work that uses the library". The
  112 +former contains code derived from the library, whereas the latter must
  113 +be combined with the library in order to run.
  114 +
  115 + GNU LESSER GENERAL PUBLIC LICENSE
  116 + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  117 +
  118 + 0. This License Agreement applies to any software library or other
  119 +program which contains a notice placed by the copyright holder or
  120 +other authorized party saying it may be distributed under the terms of
  121 +this Lesser General Public License (also called "this License").
  122 +Each licensee is addressed as "you".
  123 +
  124 + A "library" means a collection of software functions and/or data
  125 +prepared so as to be conveniently linked with application programs
  126 +(which use some of those functions and data) to form executables.
  127 +
  128 + The "Library", below, refers to any such software library or work
  129 +which has been distributed under these terms. A "work based on the
  130 +Library" means either the Library or any derivative work under
  131 +copyright law: that is to say, a work containing the Library or a
  132 +portion of it, either verbatim or with modifications and/or translated
  133 +straightforwardly into another language. (Hereinafter, translation is
  134 +included without limitation in the term "modification".)
  135 +
  136 + "Source code" for a work means the preferred form of the work for
  137 +making modifications to it. For a library, complete source code means
  138 +all the source code for all modules it contains, plus any associated
  139 +interface definition files, plus the scripts used to control compilation
  140 +and installation of the library.
  141 +
  142 + Activities other than copying, distribution and modification are not
  143 +covered by this License; they are outside its scope. The act of
  144 +running a program using the Library is not restricted, and output from
  145 +such a program is covered only if its contents constitute a work based
  146 +on the Library (independent of the use of the Library in a tool for
  147 +writing it). Whether that is true depends on what the Library does
  148 +and what the program that uses the Library does.
  149 +
  150 + 1. You may copy and distribute verbatim copies of the Library's
  151 +complete source code as you receive it, in any medium, provided that
  152 +you conspicuously and appropriately publish on each copy an
  153 +appropriate copyright notice and disclaimer of warranty; keep intact
  154 +all the notices that refer to this License and to the absence of any
  155 +warranty; and distribute a copy of this License along with the
  156 +Library.
  157 +
  158 + You may charge a fee for the physical act of transferring a copy,
  159 +and you may at your option offer warranty protection in exchange for a
  160 +fee.
  161 +
  162 + 2. You may modify your copy or copies of the Library or any portion
  163 +of it, thus forming a work based on the Library, and copy and
  164 +distribute such modifications or work under the terms of Section 1
  165 +above, provided that you also meet all of these conditions:
  166 +
  167 + a) The modified work must itself be a software library.
  168 +
  169 + b) You must cause the files modified to carry prominent notices
  170 + stating that you changed the files and the date of any change.
  171 +
  172 + c) You must cause the whole of the work to be licensed at no
  173 + charge to all third parties under the terms of this License.
  174 +
  175 + d) If a facility in the modified Library refers to a function or a
  176 + table of data to be supplied by an application program that uses
  177 + the facility, other than as an argument passed when the facility
  178 + is invoked, then you must make a good faith effort to ensure that,
  179 + in the event an application does not supply such function or
  180 + table, the facility still operates, and performs whatever part of
  181 + its purpose remains meaningful.
  182 +
  183 + (For example, a function in a library to compute square roots has
  184 + a purpose that is entirely well-defined independent of the
  185 + application. Therefore, Subsection 2d requires that any
  186 + application-supplied function or table used by this function must
  187 + be optional: if the application does not supply it, the square
  188 + root function must still compute square roots.)
  189 +
  190 +These requirements apply to the modified work as a whole. If
  191 +identifiable sections of that work are not derived from the Library,
  192 +and can be reasonably considered independent and separate works in
  193 +themselves, then this License, and its terms, do not apply to those
  194 +sections when you distribute them as separate works. But when you
  195 +distribute the same sections as part of a whole which is a work based
  196 +on the Library, the distribution of the whole must be on the terms of
  197 +this License, whose permissions for other licensees extend to the
  198 +entire whole, and thus to each and every part regardless of who wrote
  199 +it.
  200 +
  201 +Thus, it is not the intent of this section to claim rights or contest
  202 +your rights to work written entirely by you; rather, the intent is to
  203 +exercise the right to control the distribution of derivative or
  204 +collective works based on the Library.
  205 +
  206 +In addition, mere aggregation of another work not based on the Library
  207 +with the Library (or with a work based on the Library) on a volume of
  208 +a storage or distribution medium does not bring the other work under
  209 +the scope of this License.
  210 +
  211 + 3. You may opt to apply the terms of the ordinary GNU General Public
  212 +License instead of this License to a given copy of the Library. To do
  213 +this, you must alter all the notices that refer to this License, so
  214 +that they refer to the ordinary GNU General Public License, version 2,
  215 +instead of to this License. (If a newer version than version 2 of the
  216 +ordinary GNU General Public License has appeared, then you can specify
  217 +that version instead if you wish.) Do not make any other change in
  218 +these notices.
  219 +
  220 + Once this change is made in a given copy, it is irreversible for
  221 +that copy, so the ordinary GNU General Public License applies to all
  222 +subsequent copies and derivative works made from that copy.
  223 +
  224 + This option is useful when you wish to copy part of the code of
  225 +the Library into a program that is not a library.
  226 +
  227 + 4. You may copy and distribute the Library (or a portion or
  228 +derivative of it, under Section 2) in object code or executable form
  229 +under the terms of Sections 1 and 2 above provided that you accompany
  230 +it with the complete corresponding machine-readable source code, which
  231 +must be distributed under the terms of Sections 1 and 2 above on a
  232 +medium customarily used for software interchange.
  233 +
  234 + If distribution of object code is made by offering access to copy
  235 +from a designated place, then offering equivalent access to copy the
  236 +source code from the same place satisfies the requirement to
  237 +distribute the source code, even though third parties are not
  238 +compelled to copy the source along with the object code.
  239 +
  240 + 5. A program that contains no derivative of any portion of the
  241 +Library, but is designed to work with the Library by being compiled or
  242 +linked with it, is called a "work that uses the Library". Such a
  243 +work, in isolation, is not a derivative work of the Library, and
  244 +therefore falls outside the scope of this License.
  245 +
  246 + However, linking a "work that uses the Library" with the Library
  247 +creates an executable that is a derivative of the Library (because it
  248 +contains portions of the Library), rather than a "work that uses the
  249 +library". The executable is therefore covered by this License.
  250 +Section 6 states terms for distribution of such executables.
  251 +
  252 + When a "work that uses the Library" uses material from a header file
  253 +that is part of the Library, the object code for the work may be a
  254 +derivative work of the Library even though the source code is not.
  255 +Whether this is true is especially significant if the work can be
  256 +linked without the Library, or if the work is itself a library. The
  257 +threshold for this to be true is not precisely defined by law.
  258 +
  259 + If such an object file uses only numerical parameters, data
  260 +structure layouts and accessors, and small macros and small inline
  261 +functions (ten lines or less in length), then the use of the object
  262 +file is unrestricted, regardless of whether it is legally a derivative
  263 +work. (Executables containing this object code plus portions of the
  264 +Library will still fall under Section 6.)
  265 +
  266 + Otherwise, if the work is a derivative of the Library, you may
  267 +distribute the object code for the work under the terms of Section 6.
  268 +Any executables containing that work also fall under Section 6,
  269 +whether or not they are linked directly with the Library itself.
  270 +
  271 + 6. As an exception to the Sections above, you may also combine or
  272 +link a "work that uses the Library" with the Library to produce a
  273 +work containing portions of the Library, and distribute that work
  274 +under terms of your choice, provided that the terms permit
  275 +modification of the work for the customer's own use and reverse
  276 +engineering for debugging such modifications.
  277 +
  278 + You must give prominent notice with each copy of the work that the
  279 +Library is used in it and that the Library and its use are covered by
  280 +this License. You must supply a copy of this License. If the work
  281 +during execution displays copyright notices, you must include the
  282 +copyright notice for the Library among them, as well as a reference
  283 +directing the user to the copy of this License. Also, you must do one
  284 +of these things:
  285 +
  286 + a) Accompany the work with the complete corresponding
  287 + machine-readable source code for the Library including whatever
  288 + changes were used in the work (which must be distributed under
  289 + Sections 1 and 2 above); and, if the work is an executable linked
  290 + with the Library, with the complete machine-readable "work that
  291 + uses the Library", as object code and/or source code, so that the
  292 + user can modify the Library and then relink to produce a modified
  293 + executable containing the modified Library. (It is understood
  294 + that the user who changes the contents of definitions files in the
  295 + Library will not necessarily be able to recompile the application
  296 + to use the modified definitions.)
  297 +
  298 + b) Use a suitable shared library mechanism for linking with the
  299 + Library. A suitable mechanism is one that (1) uses at run time a
  300 + copy of the library already present on the user's computer system,
  301 + rather than copying library functions into the executable, and (2)
  302 + will operate properly with a modified version of the library, if
  303 + the user installs one, as long as the modified version is
  304 + interface-compatible with the version that the work was made with.
  305 +
  306 + c) Accompany the work with a written offer, valid for at
  307 + least three years, to give the same user the materials
  308 + specified in Subsection 6a, above, for a charge no more
  309 + than the cost of performing this distribution.
  310 +
  311 + d) If distribution of the work is made by offering access to copy
  312 + from a designated place, offer equivalent access to copy the above
  313 + specified materials from the same place.
  314 +
  315 + e) Verify that the user has already received a copy of these
  316 + materials or that you have already sent this user a copy.
  317 +
  318 + For an executable, the required form of the "work that uses the
  319 +Library" must include any data and utility programs needed for
  320 +reproducing the executable from it. However, as a special exception,
  321 +the materials to be distributed need not include anything that is
  322 +normally distributed (in either source or binary form) with the major
  323 +components (compiler, kernel, and so on) of the operating system on
  324 +which the executable runs, unless that component itself accompanies
  325 +the executable.
  326 +
  327 + It may happen that this requirement contradicts the license
  328 +restrictions of other proprietary libraries that do not normally
  329 +accompany the operating system. Such a contradiction means you cannot
  330 +use both them and the Library together in an executable that you
  331 +distribute.
  332 +
  333 + 7. You may place library facilities that are a work based on the
  334 +Library side-by-side in a single library together with other library
  335 +facilities not covered by this License, and distribute such a combined
  336 +library, provided that the separate distribution of the work based on
  337 +the Library and of the other library facilities is otherwise
  338 +permitted, and provided that you do these two things:
  339 +
  340 + a) Accompany the combined library with a copy of the same work
  341 + based on the Library, uncombined with any other library
  342 + facilities. This must be distributed under the terms of the
  343 + Sections above.
  344 +
  345 + b) Give prominent notice with the combined library of the fact
  346 + that part of it is a work based on the Library, and explaining
  347 + where to find the accompanying uncombined form of the same work.
  348 +
  349 + 8. You may not copy, modify, sublicense, link with, or distribute
  350 +the Library except as expressly provided under this License. Any
  351 +attempt otherwise to copy, modify, sublicense, link with, or
  352 +distribute the Library is void, and will automatically terminate your
  353 +rights under this License. However, parties who have received copies,
  354 +or rights, from you under this License will not have their licenses
  355 +terminated so long as such parties remain in full compliance.
  356 +
  357 + 9. You are not required to accept this License, since you have not
  358 +signed it. However, nothing else grants you permission to modify or
  359 +distribute the Library or its derivative works. These actions are
  360 +prohibited by law if you do not accept this License. Therefore, by
  361 +modifying or distributing the Library (or any work based on the
  362 +Library), you indicate your acceptance of this License to do so, and
  363 +all its terms and conditions for copying, distributing or modifying
  364 +the Library or works based on it.
  365 +
  366 + 10. Each time you redistribute the Library (or any work based on the
  367 +Library), the recipient automatically receives a license from the
  368 +original licensor to copy, distribute, link with or modify the Library
  369 +subject to these terms and conditions. You may not impose any further
  370 +restrictions on the recipients' exercise of the rights granted herein.
  371 +You are not responsible for enforcing compliance by third parties with
  372 +this License.
  373 +
  374 + 11. If, as a consequence of a court judgment or allegation of patent
  375 +infringement or for any other reason (not limited to patent issues),
  376 +conditions are imposed on you (whether by court order, agreement or
  377 +otherwise) that contradict the conditions of this License, they do not
  378 +excuse you from the conditions of this License. If you cannot
  379 +distribute so as to satisfy simultaneously your obligations under this
  380 +License and any other pertinent obligations, then as a consequence you
  381 +may not distribute the Library at all. For example, if a patent
  382 +license would not permit royalty-free redistribution of the Library by
  383 +all those who receive copies directly or indirectly through you, then
  384 +the only way you could satisfy both it and this License would be to
  385 +refrain entirely from distribution of the Library.
  386 +
  387 +If any portion of this section is held invalid or unenforceable under any
  388 +particular circumstance, the balance of the section is intended to apply,
  389 +and the section as a whole is intended to apply in other circumstances.
  390 +
  391 +It is not the purpose of this section to induce you to infringe any
  392 +patents or other property right claims or to contest validity of any
  393 +such claims; this section has the sole purpose of protecting the
  394 +integrity of the free software distribution system which is
  395 +implemented by public license practices. Many people have made
  396 +generous contributions to the wide range of software distributed
  397 +through that system in reliance on consistent application of that
  398 +system; it is up to the author/donor to decide if he or she is willing
  399 +to distribute software through any other system and a licensee cannot
  400 +impose that choice.
  401 +
  402 +This section is intended to make thoroughly clear what is believed to
  403 +be a consequence of the rest of this License.
  404 +
  405 + 12. If the distribution and/or use of the Library is restricted in
  406 +certain countries either by patents or by copyrighted interfaces, the
  407 +original copyright holder who places the Library under this License may add
  408 +an explicit geographical distribution limitation excluding those countries,
  409 +so that distribution is permitted only in or among countries not thus
  410 +excluded. In such case, this License incorporates the limitation as if
  411 +written in the body of this License.
  412 +
  413 + 13. The Free Software Foundation may publish revised and/or new
  414 +versions of the Lesser General Public License from time to time.
  415 +Such new versions will be similar in spirit to the present version,
  416 +but may differ in detail to address new problems or concerns.
  417 +
  418 +Each version is given a distinguishing version number. If the Library
  419 +specifies a version number of this License which applies to it and
  420 +"any later version", you have the option of following the terms and
  421 +conditions either of that version or of any later version published by
  422 +the Free Software Foundation. If the Library does not specify a
  423 +license version number, you may choose any version ever published by
  424 +the Free Software Foundation.
  425 +
  426 + 14. If you wish to incorporate parts of the Library into other free
  427 +programs whose distribution conditions are incompatible with these,
  428 +write to the author to ask for permission. For software which is
  429 +copyrighted by the Free Software Foundation, write to the Free
  430 +Software Foundation; we sometimes make exceptions for this. Our
  431 +decision will be guided by the two goals of preserving the free status
  432 +of all derivatives of our free software and of promoting the sharing
  433 +and reuse of software generally.
  434 +
  435 + NO WARRANTY
  436 +
  437 + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
  438 +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
  439 +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
  440 +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
  441 +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
  442 +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  443 +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
  444 +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
  445 +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  446 +
  447 + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  448 +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
  449 +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
  450 +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
  451 +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
  452 +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
  453 +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
  454 +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
  455 +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  456 +DAMAGES.
  457 +
  458 + END OF TERMS AND CONDITIONS
  459 +
  460 + How to Apply These Terms to Your New Libraries
  461 +
  462 + If you develop a new library, and you want it to be of the greatest
  463 +possible use to the public, we recommend making it free software that
  464 +everyone can redistribute and change. You can do so by permitting
  465 +redistribution under these terms (or, alternatively, under the terms of the
  466 +ordinary General Public License).
  467 +
  468 + To apply these terms, attach the following notices to the library. It is
  469 +safest to attach them to the start of each source file to most effectively
  470 +convey the exclusion of warranty; and each file should have at least the
  471 +"copyright" line and a pointer to where the full notice is found.
  472 +
  473 + <one line to give the library's name and a brief idea of what it does.>
  474 + Copyright (C) <year> <name of author>
  475 +
  476 + This library is free software; you can redistribute it and/or
  477 + modify it under the terms of the GNU Lesser General Public
  478 + License as published by the Free Software Foundation; either
  479 + version 2.1 of the License, or (at your option) any later version.
  480 +
  481 + This library is distributed in the hope that it will be useful,
  482 + but WITHOUT ANY WARRANTY; without even the implied warranty of
  483 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  484 + Lesser General Public License for more details.
  485 +
  486 + You should have received a copy of the GNU Lesser General Public
  487 + License along with this library; if not, write to the Free Software
  488 + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  489 +
  490 +Also add information on how to contact you by electronic and paper mail.
  491 +
  492 +You should also get your employer (if you work as a programmer) or your
  493 +school, if any, to sign a "copyright disclaimer" for the library, if
  494 +necessary. Here is a sample; alter the names:
  495 +
  496 + Yoyodyne, Inc., hereby disclaims all copyright interest in the
  497 + library `Frob' (a library for tweaking knobs) written by James Random Hacker.
  498 +
  499 + <signature of Ty Coon>, 1 April 1990
  500 + Ty Coon, President of Vice
  501 +
  502 +That's all there is to it!
  503 +
  504 +
... ...
public/javascripts/tinymce/js/tinymce/plugins/advlist/plugin.min.js 0 → 100644
... ... @@ -0,0 +1 @@
  1 +tinymce.PluginManager.add("advlist",function(t){function e(t,e){var n=[];return tinymce.each(e.split(/[ ,]/),function(t){n.push({text:t.replace(/\-/g," ").replace(/\b\w/g,function(t){return t.toUpperCase()}),data:"default"==t?"":t})}),n}function n(e,n){var o,l=t.dom,a=t.selection;o=l.getParent(a.getNode(),"ol,ul"),o&&o.nodeName==e&&n!==!1||t.execCommand("UL"==e?"InsertUnorderedList":"InsertOrderedList"),n=n===!1?i[e]:n,i[e]=n,o=l.getParent(a.getNode(),"ol,ul"),o&&n&&(l.setStyle(o,"listStyleType",n),o.removeAttribute("data-mce-style")),t.focus()}function o(e){var n=t.dom.getStyle(t.dom.getParent(t.selection.getNode(),"ol,ul"),"listStyleType")||"";e.control.items().each(function(t){t.active(t.settings.data===n)})}var l,a,i={};l=e("OL",t.getParam("advlist_number_styles","default,lower-alpha,lower-greek,lower-roman,upper-alpha,upper-roman")),a=e("UL",t.getParam("advlist_bullet_styles","default,circle,disc,square")),t.addButton("numlist",{type:"splitbutton",tooltip:"Numbered list",menu:l,onshow:o,onselect:function(t){n("OL",t.control.settings.data)},onclick:function(){n("OL",!1)}}),t.addButton("bullist",{type:"splitbutton",tooltip:"Bullet list",menu:a,onshow:o,onselect:function(t){n("UL",t.control.settings.data)},onclick:function(){n("UL",!1)}})});
0 2 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/plugins/anchor/plugin.min.js 0 → 100644
... ... @@ -0,0 +1 @@
  1 +tinymce.PluginManager.add("anchor",function(n){function e(){var e=n.selection.getNode(),t="";"A"==e.tagName&&(t=e.name||e.id||""),n.windowManager.open({title:"Anchor",body:{type:"textbox",name:"name",size:40,label:"Name",value:t},onsubmit:function(e){n.execCommand("mceInsertContent",!1,n.dom.createHTML("a",{id:e.data.name}))}})}n.addButton("anchor",{icon:"anchor",tooltip:"Anchor",onclick:e,stateSelector:"a:not([href])"}),n.addMenuItem("anchor",{icon:"anchor",text:"Anchor",context:"insert",onclick:e})});
0 2 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/plugins/autolink/plugin.min.js 0 → 100644
... ... @@ -0,0 +1 @@
  1 +tinymce.PluginManager.add("autolink",function(n){function t(n){o(n,-1,"(",!0)}function e(n){o(n,0,"",!0)}function i(n){o(n,-1,"",!1)}function o(n,t,e){function i(n,t){if(0>t&&(t=0),3==n.nodeType){var e=n.data.length;t>e&&(t=e)}return t}function o(n,t){f.setStart(n,i(n,t))}function r(n,t){f.setEnd(n,i(n,t))}var f,d,a,s,c,l,u,g,h,C;if(f=n.selection.getRng(!0).cloneRange(),f.startOffset<5){if(g=f.endContainer.previousSibling,!g){if(!f.endContainer.firstChild||!f.endContainer.firstChild.nextSibling)return;g=f.endContainer.firstChild.nextSibling}if(h=g.length,o(g,h),r(g,h),f.endOffset<5)return;d=f.endOffset,s=g}else{if(s=f.endContainer,3!=s.nodeType&&s.firstChild){for(;3!=s.nodeType&&s.firstChild;)s=s.firstChild;3==s.nodeType&&(o(s,0),r(s,s.nodeValue.length))}d=1==f.endOffset?2:f.endOffset-1-t}a=d;do o(s,d>=2?d-2:0),r(s,d>=1?d-1:0),d-=1,C=f.toString();while(" "!=C&&""!==C&&160!=C.charCodeAt(0)&&d-2>=0&&C!=e);f.toString()==e||160==f.toString().charCodeAt(0)?(o(s,d),r(s,a),d+=1):0===f.startOffset?(o(s,0),r(s,a)):(o(s,d),r(s,a)),l=f.toString(),"."==l.charAt(l.length-1)&&r(s,a-1),l=f.toString(),u=l.match(/^(https?:\/\/|ssh:\/\/|ftp:\/\/|file:\/|www\.|(?:mailto:)?[A-Z0-9._%+\-]+@)(.+)$/i),u&&("www."==u[1]?u[1]="http://www.":/@$/.test(u[1])&&!/^mailto:/.test(u[1])&&(u[1]="mailto:"+u[1]),c=n.selection.getBookmark(),n.selection.setRng(f),n.execCommand("createlink",!1,u[1]+u[2]),n.selection.moveToBookmark(c),n.nodeChanged())}var r;return n.on("keydown",function(t){return 13==t.keyCode?i(n):void 0}),tinymce.Env.ie?void n.on("focus",function(){if(!r){r=!0;try{n.execCommand("AutoUrlDetect",!1,!0)}catch(t){}}}):(n.on("keypress",function(e){return 41==e.keyCode?t(n):void 0}),void n.on("keyup",function(t){return 32==t.keyCode?e(n):void 0}))});
0 2 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/plugins/autoresize/plugin.min.js 0 → 100644
... ... @@ -0,0 +1 @@
  1 +tinymce.PluginManager.add("autoresize",function(e){function t(){return e.plugins.fullscreen&&e.plugins.fullscreen.isFullscreen()}function i(o){var r,s,g,m,l,d,u,h,f,c,_,p,y=tinymce.DOM;if(s=e.getDoc()){if(g=s.body,m=s.documentElement,l=n.autoresize_min_height,!g||o&&"setcontent"===o.type&&o.initial||t())return void(g&&m&&(g.style.overflowY="auto",m.style.overflowY="auto"));u=e.dom.getStyle(g,"margin-top",!0),h=e.dom.getStyle(g,"margin-bottom",!0),f=e.dom.getStyle(g,"padding-top",!0),c=e.dom.getStyle(g,"padding-bottom",!0),_=e.dom.getStyle(g,"border-top-width",!0),p=e.dom.getStyle(g,"border-bottom-width",!0),d=g.offsetHeight+parseInt(u,10)+parseInt(h,10)+parseInt(f,10)+parseInt(c,10)+parseInt(_,10)+parseInt(p,10),(isNaN(d)||0>=d)&&(d=tinymce.Env.ie?g.scrollHeight:tinymce.Env.webkit&&0===g.clientHeight?0:g.offsetHeight),d>n.autoresize_min_height&&(l=d),n.autoresize_max_height&&d>n.autoresize_max_height?(l=n.autoresize_max_height,g.style.overflowY="auto",m.style.overflowY="auto"):(g.style.overflowY="hidden",m.style.overflowY="hidden",g.scrollTop=0),l!==a&&(r=l-a,y.setStyle(e.iframeElement,"height",l+"px"),a=l,tinymce.isWebKit&&0>r&&i(o))}}function o(e,t,n){setTimeout(function(){i({}),e--?o(e,t,n):n&&n()},t)}var n=e.settings,a=0;e.settings.inline||(n.autoresize_min_height=parseInt(e.getParam("autoresize_min_height",e.getElement().offsetHeight),10),n.autoresize_max_height=parseInt(e.getParam("autoresize_max_height",0),10),e.on("init",function(){var t=e.getParam("autoresize_overflow_padding",1);e.dom.setStyles(e.getBody(),{paddingBottom:e.getParam("autoresize_bottom_margin",50),paddingLeft:t,paddingRight:t})}),e.on("nodechange setcontent keyup FullscreenStateChanged",i),e.getParam("autoresize_on_init",!0)&&e.on("init",function(){o(20,100,function(){o(5,1e3)})}),e.addCommand("mceAutoResize",i))});
0 2 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/plugins/autosave/plugin.min.js 0 → 100644
... ... @@ -0,0 +1 @@
  1 +tinymce._beforeUnloadHandler=function(){var e;return tinymce.each(tinymce.editors,function(t){t.plugins.autosave&&t.plugins.autosave.storeDraft(),!e&&t.isDirty()&&t.getParam("autosave_ask_before_unload",!0)&&(e=t.translate("You have unsaved changes are you sure you want to navigate away?"))}),e},tinymce.PluginManager.add("autosave",function(e){function t(e,t){var n={s:1e3,m:6e4};return e=/^(\d+)([ms]?)$/.exec(""+(e||t)),(e[2]?n[e[2]]:1)*parseInt(e,10)}function n(){var e=parseInt(v.getItem(c+"time"),10)||0;return(new Date).getTime()-e>m.autosave_retention?(a(!1),!1):!0}function a(t){v.removeItem(c+"draft"),v.removeItem(c+"time"),t!==!1&&e.fire("RemoveDraft")}function r(){!f()&&e.isDirty()&&(v.setItem(c+"draft",e.getContent({format:"raw",no_events:!0})),v.setItem(c+"time",(new Date).getTime()),e.fire("StoreDraft"))}function o(){n()&&(e.setContent(v.getItem(c+"draft"),{format:"raw"}),e.fire("RestoreDraft"))}function i(){d||(setInterval(function(){e.removed||r()},m.autosave_interval),d=!0)}function s(){var t=this;t.disabled(!n()),e.on("StoreDraft RestoreDraft RemoveDraft",function(){t.disabled(!n())}),i()}function u(){e.undoManager.beforeChange(),o(),a(),e.undoManager.add()}function f(t){var n=e.settings.forced_root_block;return t=tinymce.trim("undefined"==typeof t?e.getBody().innerHTML:t),""===t||new RegExp("^<"+n+"[^>]*>((\xa0|&nbsp;|[ ]|<br[^>]*>)+?|)</"+n+">|<br>$","i").test(t)}var c,d,m=e.settings,v=tinymce.util.LocalStorage;c=m.autosave_prefix||"tinymce-autosave-{path}{query}-{id}-",c=c.replace(/\{path\}/g,document.location.pathname),c=c.replace(/\{query\}/g,document.location.search),c=c.replace(/\{id\}/g,e.id),m.autosave_interval=t(m.autosave_interval,"30s"),m.autosave_retention=t(m.autosave_retention,"20m"),e.addButton("restoredraft",{title:"Restore last draft",onclick:u,onPostRender:s}),e.addMenuItem("restoredraft",{text:"Restore last draft",onclick:u,onPostRender:s,context:"file"}),e.settings.autosave_restore_when_empty!==!1&&(e.on("init",function(){n()&&f()&&o()}),e.on("saveContent",function(){a()})),window.onbeforeunload=tinymce._beforeUnloadHandler,this.hasDraft=n,this.storeDraft=r,this.restoreDraft=o,this.removeDraft=a,this.isEmpty=f});
0 2 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/plugins/bbcode/plugin.min.js 0 → 100644
... ... @@ -0,0 +1 @@
  1 +!function(){tinymce.create("tinymce.plugins.BBCodePlugin",{init:function(o){var e=this,t=o.getParam("bbcode_dialect","punbb").toLowerCase();o.on("beforeSetContent",function(o){o.content=e["_"+t+"_bbcode2html"](o.content)}),o.on("postProcess",function(o){o.set&&(o.content=e["_"+t+"_bbcode2html"](o.content)),o.get&&(o.content=e["_"+t+"_html2bbcode"](o.content))})},getInfo:function(){return{longname:"BBCode Plugin",author:"Moxiecode Systems AB",authorurl:"http://www.tinymce.com",infourl:"http://www.tinymce.com/wiki.php/Plugin:bbcode"}},_punbb_html2bbcode:function(o){function e(e,t){o=o.replace(e,t)}return o=tinymce.trim(o),e(/<a.*?href=\"(.*?)\".*?>(.*?)<\/a>/gi,"[url=$1]$2[/url]"),e(/<font.*?color=\"(.*?)\".*?class=\"codeStyle\".*?>(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]"),e(/<font.*?color=\"(.*?)\".*?class=\"quoteStyle\".*?>(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]"),e(/<font.*?class=\"codeStyle\".*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]"),e(/<font.*?class=\"quoteStyle\".*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[quote][color=$1]$2[/color][/quote]"),e(/<span style=\"color: ?(.*?);\">(.*?)<\/span>/gi,"[color=$1]$2[/color]"),e(/<font.*?color=\"(.*?)\".*?>(.*?)<\/font>/gi,"[color=$1]$2[/color]"),e(/<span style=\"font-size:(.*?);\">(.*?)<\/span>/gi,"[size=$1]$2[/size]"),e(/<font>(.*?)<\/font>/gi,"$1"),e(/<img.*?src=\"(.*?)\".*?\/>/gi,"[img]$1[/img]"),e(/<span class=\"codeStyle\">(.*?)<\/span>/gi,"[code]$1[/code]"),e(/<span class=\"quoteStyle\">(.*?)<\/span>/gi,"[quote]$1[/quote]"),e(/<strong class=\"codeStyle\">(.*?)<\/strong>/gi,"[code][b]$1[/b][/code]"),e(/<strong class=\"quoteStyle\">(.*?)<\/strong>/gi,"[quote][b]$1[/b][/quote]"),e(/<em class=\"codeStyle\">(.*?)<\/em>/gi,"[code][i]$1[/i][/code]"),e(/<em class=\"quoteStyle\">(.*?)<\/em>/gi,"[quote][i]$1[/i][/quote]"),e(/<u class=\"codeStyle\">(.*?)<\/u>/gi,"[code][u]$1[/u][/code]"),e(/<u class=\"quoteStyle\">(.*?)<\/u>/gi,"[quote][u]$1[/u][/quote]"),e(/<\/(strong|b)>/gi,"[/b]"),e(/<(strong|b)>/gi,"[b]"),e(/<\/(em|i)>/gi,"[/i]"),e(/<(em|i)>/gi,"[i]"),e(/<\/u>/gi,"[/u]"),e(/<span style=\"text-decoration: ?underline;\">(.*?)<\/span>/gi,"[u]$1[/u]"),e(/<u>/gi,"[u]"),e(/<blockquote[^>]*>/gi,"[quote]"),e(/<\/blockquote>/gi,"[/quote]"),e(/<br \/>/gi,"\n"),e(/<br\/>/gi,"\n"),e(/<br>/gi,"\n"),e(/<p>/gi,""),e(/<\/p>/gi,"\n"),e(/&nbsp;|\u00a0/gi," "),e(/&quot;/gi,'"'),e(/&lt;/gi,"<"),e(/&gt;/gi,">"),e(/&amp;/gi,"&"),o},_punbb_bbcode2html:function(o){function e(e,t){o=o.replace(e,t)}return o=tinymce.trim(o),e(/\n/gi,"<br />"),e(/\[b\]/gi,"<strong>"),e(/\[\/b\]/gi,"</strong>"),e(/\[i\]/gi,"<em>"),e(/\[\/i\]/gi,"</em>"),e(/\[u\]/gi,"<u>"),e(/\[\/u\]/gi,"</u>"),e(/\[url=([^\]]+)\](.*?)\[\/url\]/gi,'<a href="$1">$2</a>'),e(/\[url\](.*?)\[\/url\]/gi,'<a href="$1">$1</a>'),e(/\[img\](.*?)\[\/img\]/gi,'<img src="$1" />'),e(/\[color=(.*?)\](.*?)\[\/color\]/gi,'<font color="$1">$2</font>'),e(/\[code\](.*?)\[\/code\]/gi,'<span class="codeStyle">$1</span>&nbsp;'),e(/\[quote.*?\](.*?)\[\/quote\]/gi,'<span class="quoteStyle">$1</span>&nbsp;'),o}}),tinymce.PluginManager.add("bbcode",tinymce.plugins.BBCodePlugin)}();
0 2 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/plugins/charmap/plugin.min.js 0 → 100644
... ... @@ -0,0 +1 @@
  1 +tinymce.PluginManager.add("charmap",function(e){function a(){function a(e){for(;e;){if("TD"==e.nodeName)return e;e=e.parentNode}}var t,r,o,n;t='<table role="presentation" cellspacing="0" class="mce-charmap"><tbody>';var l=25;for(o=0;10>o;o++){for(t+="<tr>",r=0;l>r;r++){var s=i[o*l+r];t+='<td title="'+s[1]+'"><div tabindex="-1" title="'+s[1]+'" role="button">'+(s?String.fromCharCode(parseInt(s[0],10)):"&nbsp;")+"</div></td>"}t+="</tr>"}t+="</tbody></table>";var c={type:"container",html:t,onclick:function(a){var i=a.target;"TD"==i.tagName&&(i=i.firstChild),"DIV"==i.tagName&&(e.execCommand("mceInsertContent",!1,i.firstChild.data),a.ctrlKey||n.close())},onmouseover:function(e){var i=a(e.target);i&&n.find("#preview").text(i.firstChild.firstChild.data)}};n=e.windowManager.open({title:"Special character",spacing:10,padding:10,items:[c,{type:"label",name:"preview",text:" ",style:"font-size: 40px; text-align: center",border:1,minWidth:100,minHeight:80}],buttons:[{text:"Close",onclick:function(){n.close()}}]})}var i=[["160","no-break space"],["38","ampersand"],["34","quotation mark"],["162","cent sign"],["8364","euro sign"],["163","pound sign"],["165","yen sign"],["169","copyright sign"],["174","registered sign"],["8482","trade mark sign"],["8240","per mille sign"],["181","micro sign"],["183","middle dot"],["8226","bullet"],["8230","three dot leader"],["8242","minutes / feet"],["8243","seconds / inches"],["167","section sign"],["182","paragraph sign"],["223","sharp s / ess-zed"],["8249","single left-pointing angle quotation mark"],["8250","single right-pointing angle quotation mark"],["171","left pointing guillemet"],["187","right pointing guillemet"],["8216","left single quotation mark"],["8217","right single quotation mark"],["8220","left double quotation mark"],["8221","right double quotation mark"],["8218","single low-9 quotation mark"],["8222","double low-9 quotation mark"],["60","less-than sign"],["62","greater-than sign"],["8804","less-than or equal to"],["8805","greater-than or equal to"],["8211","en dash"],["8212","em dash"],["175","macron"],["8254","overline"],["164","currency sign"],["166","broken bar"],["168","diaeresis"],["161","inverted exclamation mark"],["191","turned question mark"],["710","circumflex accent"],["732","small tilde"],["176","degree sign"],["8722","minus sign"],["177","plus-minus sign"],["247","division sign"],["8260","fraction slash"],["215","multiplication sign"],["185","superscript one"],["178","superscript two"],["179","superscript three"],["188","fraction one quarter"],["189","fraction one half"],["190","fraction three quarters"],["402","function / florin"],["8747","integral"],["8721","n-ary sumation"],["8734","infinity"],["8730","square root"],["8764","similar to"],["8773","approximately equal to"],["8776","almost equal to"],["8800","not equal to"],["8801","identical to"],["8712","element of"],["8713","not an element of"],["8715","contains as member"],["8719","n-ary product"],["8743","logical and"],["8744","logical or"],["172","not sign"],["8745","intersection"],["8746","union"],["8706","partial differential"],["8704","for all"],["8707","there exists"],["8709","diameter"],["8711","backward difference"],["8727","asterisk operator"],["8733","proportional to"],["8736","angle"],["180","acute accent"],["184","cedilla"],["170","feminine ordinal indicator"],["186","masculine ordinal indicator"],["8224","dagger"],["8225","double dagger"],["192","A - grave"],["193","A - acute"],["194","A - circumflex"],["195","A - tilde"],["196","A - diaeresis"],["197","A - ring above"],["198","ligature AE"],["199","C - cedilla"],["200","E - grave"],["201","E - acute"],["202","E - circumflex"],["203","E - diaeresis"],["204","I - grave"],["205","I - acute"],["206","I - circumflex"],["207","I - diaeresis"],["208","ETH"],["209","N - tilde"],["210","O - grave"],["211","O - acute"],["212","O - circumflex"],["213","O - tilde"],["214","O - diaeresis"],["216","O - slash"],["338","ligature OE"],["352","S - caron"],["217","U - grave"],["218","U - acute"],["219","U - circumflex"],["220","U - diaeresis"],["221","Y - acute"],["376","Y - diaeresis"],["222","THORN"],["224","a - grave"],["225","a - acute"],["226","a - circumflex"],["227","a - tilde"],["228","a - diaeresis"],["229","a - ring above"],["230","ligature ae"],["231","c - cedilla"],["232","e - grave"],["233","e - acute"],["234","e - circumflex"],["235","e - diaeresis"],["236","i - grave"],["237","i - acute"],["238","i - circumflex"],["239","i - diaeresis"],["240","eth"],["241","n - tilde"],["242","o - grave"],["243","o - acute"],["244","o - circumflex"],["245","o - tilde"],["246","o - diaeresis"],["248","o slash"],["339","ligature oe"],["353","s - caron"],["249","u - grave"],["250","u - acute"],["251","u - circumflex"],["252","u - diaeresis"],["253","y - acute"],["254","thorn"],["255","y - diaeresis"],["913","Alpha"],["914","Beta"],["915","Gamma"],["916","Delta"],["917","Epsilon"],["918","Zeta"],["919","Eta"],["920","Theta"],["921","Iota"],["922","Kappa"],["923","Lambda"],["924","Mu"],["925","Nu"],["926","Xi"],["927","Omicron"],["928","Pi"],["929","Rho"],["931","Sigma"],["932","Tau"],["933","Upsilon"],["934","Phi"],["935","Chi"],["936","Psi"],["937","Omega"],["945","alpha"],["946","beta"],["947","gamma"],["948","delta"],["949","epsilon"],["950","zeta"],["951","eta"],["952","theta"],["953","iota"],["954","kappa"],["955","lambda"],["956","mu"],["957","nu"],["958","xi"],["959","omicron"],["960","pi"],["961","rho"],["962","final sigma"],["963","sigma"],["964","tau"],["965","upsilon"],["966","phi"],["967","chi"],["968","psi"],["969","omega"],["8501","alef symbol"],["982","pi symbol"],["8476","real part symbol"],["978","upsilon - hook symbol"],["8472","Weierstrass p"],["8465","imaginary part"],["8592","leftwards arrow"],["8593","upwards arrow"],["8594","rightwards arrow"],["8595","downwards arrow"],["8596","left right arrow"],["8629","carriage return"],["8656","leftwards double arrow"],["8657","upwards double arrow"],["8658","rightwards double arrow"],["8659","downwards double arrow"],["8660","left right double arrow"],["8756","therefore"],["8834","subset of"],["8835","superset of"],["8836","not a subset of"],["8838","subset of or equal to"],["8839","superset of or equal to"],["8853","circled plus"],["8855","circled times"],["8869","perpendicular"],["8901","dot operator"],["8968","left ceiling"],["8969","right ceiling"],["8970","left floor"],["8971","right floor"],["9001","left-pointing angle bracket"],["9002","right-pointing angle bracket"],["9674","lozenge"],["9824","black spade suit"],["9827","black club suit"],["9829","black heart suit"],["9830","black diamond suit"],["8194","en space"],["8195","em space"],["8201","thin space"],["8204","zero width non-joiner"],["8205","zero width joiner"],["8206","left-to-right mark"],["8207","right-to-left mark"],["173","soft hyphen"]];e.addButton("charmap",{icon:"charmap",tooltip:"Special character",onclick:a}),e.addMenuItem("charmap",{icon:"charmap",text:"Special character",onclick:a,context:"insert"})});
0 2 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/plugins/code/plugin.min.js 0 → 100644
... ... @@ -0,0 +1 @@
  1 +tinymce.PluginManager.add("code",function(e){function o(){var o=e.windowManager.open({title:"Source code",body:{type:"textbox",name:"code",multiline:!0,minWidth:e.getParam("code_dialog_width",600),minHeight:e.getParam("code_dialog_height",Math.min(tinymce.DOM.getViewPort().h-200,500)),spellcheck:!1,style:"direction: ltr; text-align: left"},onSubmit:function(o){e.focus(),e.undoManager.transact(function(){e.setContent(o.data.code)}),e.selection.setCursorLocation(),e.nodeChanged()}});o.find("#code").value(e.getContent({source_view:!0}))}e.addCommand("mceCodeEditor",o),e.addButton("code",{icon:"code",tooltip:"Source code",onclick:o}),e.addMenuItem("code",{icon:"code",text:"Source code",context:"tools",onclick:o})});
0 2 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/plugins/colorpicker/plugin.min.js 0 → 100644
... ... @@ -0,0 +1 @@
  1 +tinymce.PluginManager.add("colorpicker",function(e){function n(n,a){function i(e){var n=new tinymce.util.Color(e),a=n.toRgb();l.fromJSON({r:a.r,g:a.g,b:a.b,hex:n.toHex().substr(1)}),t(n.toHex())}function t(e){l.find("#preview")[0].getEl().style.background=e}var l=e.windowManager.open({title:"Color",items:{type:"container",layout:"flex",direction:"row",align:"stretch",padding:5,spacing:10,items:[{type:"colorpicker",value:a,onchange:function(){var e=this.rgb();l&&(l.find("#r").value(e.r),l.find("#g").value(e.g),l.find("#b").value(e.b),l.find("#hex").value(this.value().substr(1)),t(this.value()))}},{type:"form",padding:0,labelGap:5,defaults:{type:"textbox",size:7,value:"0",flex:1,spellcheck:!1,onchange:function(){var e,n,a=l.find("colorpicker")[0];return e=this.name(),n=this.value(),"hex"==e?(n="#"+n,i(n),void a.value(n)):(n={r:l.find("#r").value(),g:l.find("#g").value(),b:l.find("#b").value()},a.value(n),void i(n))}},items:[{name:"r",label:"R",autofocus:1},{name:"g",label:"G"},{name:"b",label:"B"},{name:"hex",label:"#",value:"000000"},{name:"preview",type:"container",border:1}]}]},onSubmit:function(){n("#"+this.toJSON().hex)}});i(a)}e.settings.color_picker_callback||(e.settings.color_picker_callback=n)});
0 2 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/plugins/compat3x/css/dialog.css 0 → 100644
... ... @@ -0,0 +1,118 @@
  1 +/* Generic */
  2 +body {
  3 +font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px;
  4 +scrollbar-3dlight-color:#F0F0EE;
  5 +scrollbar-arrow-color:#676662;
  6 +scrollbar-base-color:#F0F0EE;
  7 +scrollbar-darkshadow-color:#DDDDDD;
  8 +scrollbar-face-color:#E0E0DD;
  9 +scrollbar-highlight-color:#F0F0EE;
  10 +scrollbar-shadow-color:#F0F0EE;
  11 +scrollbar-track-color:#F5F5F5;
  12 +background:#F0F0EE;
  13 +padding:0;
  14 +margin:8px 8px 0 8px;
  15 +}
  16 +
  17 +html {background:#F0F0EE;}
  18 +td {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;}
  19 +textarea {resize:none;outline:none;}
  20 +a:link, a:visited {color:black;}
  21 +a:hover {color:#2B6FB6;}
  22 +.nowrap {white-space: nowrap}
  23 +
  24 +/* Forms */
  25 +fieldset {margin:0; padding:4px; border:1px solid #919B9C; font-family:Verdana, Arial; font-size:10px;}
  26 +legend {color:#2B6FB6; font-weight:bold;}
  27 +label.msg {display:none;}
  28 +label.invalid {color:#EE0000; display:inline;}
  29 +input.invalid {border:1px solid #EE0000;}
  30 +input {background:#FFF; border:1px solid #CCC;}
  31 +input, select, textarea {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;}
  32 +input, select, textarea {border:1px solid #808080;}
  33 +input.radio {border:1px none #000000; background:transparent; vertical-align:middle;}
  34 +input.checkbox {border:1px none #000000; background:transparent; vertical-align:middle;}
  35 +.input_noborder {border:0;}
  36 +
  37 +/* Buttons */
  38 +#insert, #cancel, input.button, .updateButton {
  39 +border:0; margin:0; padding:0;
  40 +font-weight:bold;
  41 +width:94px; height:26px;
  42 +background:url(../img/buttons.png) 0 -26px;
  43 +cursor:pointer;
  44 +padding-bottom:2px;
  45 +float:left;
  46 +}
  47 +
  48 +#insert {background:url(../img/buttons.png) 0 -52px}
  49 +#cancel {background:url(../img/buttons.png) 0 0; float:right}
  50 +
  51 +/* Browse */
  52 +a.pickcolor, a.browse {text-decoration:none}
  53 +a.browse span {display:block; width:20px; height:18px; background:url(../img/icons.gif) -20px 0 no-repeat; border:1px solid #FFF; margin-left:1px;}
  54 +.mceOldBoxModel a.browse span {width:22px; height:20px;}
  55 +a.browse:hover span {border:1px solid #0A246A; background-color:#B2BBD0;}
  56 +a.browse span.disabled {border:1px solid white; opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)}
  57 +a.browse:hover span.disabled {border:1px solid white; background-color:transparent;}
  58 +a.pickcolor span {display:block; width:20px; height:16px; background:url(../img/icons.gif) 0 0; margin-left:2px;}
  59 +.mceOldBoxModel a.pickcolor span {width:21px; height:17px;}
  60 +a.pickcolor:hover span {background-color:#B2BBD0;}
  61 +a.pickcolor:hover span.disabled {}
  62 +
  63 +/* Charmap */
  64 +table.charmap {border:1px solid #AAA; text-align:center}
  65 +td.charmap, #charmap a {width:18px; height:18px; color:#000; border:1px solid #AAA; text-align:center; font-size:12px; vertical-align:middle; line-height: 18px;}
  66 +#charmap a {display:block; color:#000; text-decoration:none; border:0}
  67 +#charmap a:hover {background:#CCC;color:#2B6FB6}
  68 +#charmap #codeN {font-size:10px; font-family:Arial,Helvetica,sans-serif; text-align:center}
  69 +#charmap #codeV {font-size:40px; height:80px; border:1px solid #AAA; text-align:center}
  70 +
  71 +/* Source */
  72 +.wordWrapCode {vertical-align:middle; border:1px none #000000; background:transparent;}
  73 +.mceActionPanel {margin-top:5px;}
  74 +
  75 +/* Tabs classes */
  76 +.tabs {width:100%; height:18px; line-height:normal; background:url(../img/tabs.gif) repeat-x 0 -72px;}
  77 +.tabs ul {margin:0; padding:0; list-style:none;}
  78 +.tabs li {float:left; background:url(../img/tabs.gif) no-repeat 0 0; margin:0 2px 0 0; padding:0 0 0 10px; line-height:17px; height:18px; display:block;}
  79 +.tabs li.current {background:url(../img/tabs.gif) no-repeat 0 -18px; margin-right:2px;}
  80 +.tabs span {float:left; display:block; background:url(../img/tabs.gif) no-repeat right -36px; padding:0px 10px 0 0;}
  81 +.tabs .current span {background:url(../img/tabs.gif) no-repeat right -54px;}
  82 +.tabs a {text-decoration:none; font-family:Verdana, Arial; font-size:10px;}
  83 +.tabs a:link, .tabs a:visited, .tabs a:hover {color:black;}
  84 +
  85 +/* Panels */
  86 +.panel_wrapper div.panel {display:none;}
  87 +.panel_wrapper div.current {display:block; width:100%; height:300px; overflow:visible;}
  88 +.panel_wrapper {border:1px solid #919B9C; border-top:0px; padding:10px; padding-top:5px; clear:both; background:white;}
  89 +
  90 +/* Columns */
  91 +.column {float:left;}
  92 +.properties {width:100%;}
  93 +.properties .column1 {}
  94 +.properties .column2 {text-align:left;}
  95 +
  96 +/* Titles */
  97 +h1, h2, h3, h4 {color:#2B6FB6; margin:0; padding:0; padding-top:5px;}
  98 +h3 {font-size:14px;}
  99 +.title {font-size:12px; font-weight:bold; color:#2B6FB6;}
  100 +
  101 +/* Dialog specific */
  102 +#link .panel_wrapper, #link div.current {height:125px;}
  103 +#image .panel_wrapper, #image div.current {height:200px;}
  104 +#plugintable thead {font-weight:bold; background:#DDD;}
  105 +#plugintable, #about #plugintable td {border:1px solid #919B9C;}
  106 +#plugintable {width:96%; margin-top:10px;}
  107 +#pluginscontainer {height:290px; overflow:auto;}
  108 +#colorpicker #preview {display:inline-block; padding-left:40px; height:14px; border:1px solid black; margin-left:5px; margin-right: 5px}
  109 +#colorpicker #previewblock {position: relative; top: -3px; padding-left:5px; padding-top: 0px; display:inline}
  110 +#colorpicker #preview_wrapper { text-align:center; padding-top:4px; white-space: nowrap}
  111 +#colorpicker #colors {float:left; border:1px solid gray; cursor:crosshair;}
  112 +#colorpicker #light {border:1px solid gray; margin-left:5px; float:left;width:15px; height:150px; cursor:crosshair;}
  113 +#colorpicker #light div {overflow:hidden;}
  114 +#colorpicker .panel_wrapper div.current {height:175px;}
  115 +#colorpicker #namedcolors {width:150px;}
  116 +#colorpicker #namedcolors a {display:block; float:left; width:10px; height:10px; margin:1px 1px 0 0; overflow:hidden;}
  117 +#colorpicker #colornamecontainer {margin-top:5px;}
  118 +#colorpicker #picker_panel fieldset {margin:auto;width:325px;}
... ...
public/javascripts/tinymce/js/tinymce/plugins/compat3x/img/buttons.png 0 → 100644

3.06 KB

public/javascripts/tinymce/js/tinymce/plugins/compat3x/img/icons.gif 0 → 100644

11.7 KB

public/javascripts/tinymce/js/tinymce/plugins/compat3x/img/items.gif 0 → 100644

64 Bytes

public/javascripts/tinymce/js/tinymce/plugins/compat3x/img/menu_arrow.gif 0 → 100644

68 Bytes

public/javascripts/tinymce/js/tinymce/plugins/compat3x/img/menu_check.gif 0 → 100644

70 Bytes

public/javascripts/tinymce/js/tinymce/plugins/compat3x/img/progress.gif 0 → 100644

1.75 KB

public/javascripts/tinymce/js/tinymce/plugins/compat3x/img/tabs.gif 0 → 100644

1.29 KB

public/javascripts/tinymce/js/tinymce/plugins/compat3x/plugin.js 0 → 100644
... ... @@ -0,0 +1,297 @@
  1 +/**
  2 + * plugin.js
  3 + *
  4 + * Copyright, Moxiecode Systems AB
  5 + * Released under LGPL License.
  6 + *
  7 + * License: http://www.tinymce.com/license
  8 + * Contributing: http://www.tinymce.com/contributing
  9 + */
  10 +
  11 +/*global tinymce:true, console:true */
  12 +/*eslint no-console:0, new-cap:0 */
  13 +
  14 +/**
  15 + * This plugin adds missing events form the 4.x API back. Not every event is
  16 + * properly supported but most things should work.
  17 + *
  18 + * Unsupported things:
  19 + * - No editor.onEvent
  20 + * - Can't cancel execCommands with beforeExecCommand
  21 + */
  22 +(function(tinymce) {
  23 + var reported;
  24 +
  25 + function noop() {
  26 + }
  27 +
  28 + function log(apiCall) {
  29 + if (!reported && window && window.console) {
  30 + reported = true;
  31 + console.log("Deprecated TinyMCE API call: " + apiCall);
  32 + }
  33 + }
  34 +
  35 + function Dispatcher(target, newEventName, argsMap, defaultScope) {
  36 + target = target || this;
  37 +
  38 + if (!newEventName) {
  39 + this.add = this.addToTop = this.remove = this.dispatch = noop;
  40 + return;
  41 + }
  42 +
  43 + this.add = function(callback, scope, prepend) {
  44 + log('<target>.on' + newEventName + ".add(..)");
  45 +
  46 + // Convert callback({arg1:x, arg2:x}) -> callback(arg1, arg2)
  47 + function patchedEventCallback(e) {
  48 + var callbackArgs = [];
  49 +
  50 + if (typeof argsMap == "string") {
  51 + argsMap = argsMap.split(" ");
  52 + }
  53 +
  54 + if (argsMap && typeof argsMap != "function") {
  55 + for (var i = 0; i < argsMap.length; i++) {
  56 + callbackArgs.push(e[argsMap[i]]);
  57 + }
  58 + }
  59 +
  60 + if (typeof argsMap == "function") {
  61 + callbackArgs = argsMap(newEventName, e, target);
  62 + if (!callbackArgs) {
  63 + return;
  64 + }
  65 + }
  66 +
  67 + if (!argsMap) {
  68 + callbackArgs = [e];
  69 + }
  70 +
  71 + callbackArgs.unshift(defaultScope || target);
  72 +
  73 + if (callback.apply(scope || defaultScope || target, callbackArgs) === false) {
  74 + e.stopImmediatePropagation();
  75 + }
  76 + }
  77 +
  78 + target.on(newEventName, patchedEventCallback, prepend);
  79 +
  80 + return patchedEventCallback;
  81 + };
  82 +
  83 + this.addToTop = function(callback, scope) {
  84 + this.add(callback, scope, true);
  85 + };
  86 +
  87 + this.remove = function(callback) {
  88 + return target.off(newEventName, callback);
  89 + };
  90 +
  91 + this.dispatch = function() {
  92 + target.fire(newEventName);
  93 +
  94 + return true;
  95 + };
  96 + }
  97 +
  98 + tinymce.util.Dispatcher = Dispatcher;
  99 + tinymce.onBeforeUnload = new Dispatcher(tinymce, "BeforeUnload");
  100 + tinymce.onAddEditor = new Dispatcher(tinymce, "AddEditor", "editor");
  101 + tinymce.onRemoveEditor = new Dispatcher(tinymce, "RemoveEditor", "editor");
  102 +
  103 + tinymce.util.Cookie = {
  104 + get: noop, getHash: noop, remove: noop, set: noop, setHash: noop
  105 + };
  106 +
  107 + function patchEditor(editor) {
  108 + function patchEditorEvents(oldEventNames, argsMap) {
  109 + tinymce.each(oldEventNames.split(" "), function(oldName) {
  110 + editor["on" + oldName] = new Dispatcher(editor, oldName, argsMap);
  111 + });
  112 + }
  113 +
  114 + function convertUndoEventArgs(type, event, target) {
  115 + return [
  116 + event.level,
  117 + target
  118 + ];
  119 + }
  120 +
  121 + function filterSelectionEvents(needsSelection) {
  122 + return function(type, e) {
  123 + if ((!e.selection && !needsSelection) || e.selection == needsSelection) {
  124 + return [e];
  125 + }
  126 + };
  127 + }
  128 +
  129 + if (editor.controlManager) {
  130 + return;
  131 + }
  132 +
  133 + function cmNoop() {
  134 + var obj = {}, methods = 'add addMenu addSeparator collapse createMenu destroy displayColor expand focus ' +
  135 + 'getLength hasMenus hideMenu isActive isCollapsed isDisabled isRendered isSelected mark ' +
  136 + 'postRender remove removeAll renderHTML renderMenu renderNode renderTo select selectByIndex ' +
  137 + 'setActive setAriaProperty setColor setDisabled setSelected setState showMenu update';
  138 +
  139 + log('editor.controlManager.*');
  140 +
  141 + function _noop() {
  142 + return cmNoop();
  143 + }
  144 +
  145 + tinymce.each(methods.split(' '), function(method) {
  146 + obj[method] = _noop;
  147 + });
  148 +
  149 + return obj;
  150 + }
  151 +
  152 + editor.controlManager = {
  153 + buttons: {},
  154 +
  155 + setDisabled: function(name, state) {
  156 + log("controlManager.setDisabled(..)");
  157 +
  158 + if (this.buttons[name]) {
  159 + this.buttons[name].disabled(state);
  160 + }
  161 + },
  162 +
  163 + setActive: function(name, state) {
  164 + log("controlManager.setActive(..)");
  165 +
  166 + if (this.buttons[name]) {
  167 + this.buttons[name].active(state);
  168 + }
  169 + },
  170 +
  171 + onAdd: new Dispatcher(),
  172 + onPostRender: new Dispatcher(),
  173 +
  174 + add: function(obj) {
  175 + return obj;
  176 + },
  177 + createButton: cmNoop,
  178 + createColorSplitButton: cmNoop,
  179 + createControl: cmNoop,
  180 + createDropMenu: cmNoop,
  181 + createListBox: cmNoop,
  182 + createMenuButton: cmNoop,
  183 + createSeparator: cmNoop,
  184 + createSplitButton: cmNoop,
  185 + createToolbar: cmNoop,
  186 + createToolbarGroup: cmNoop,
  187 + destroy: noop,
  188 + get: noop,
  189 + setControlType: cmNoop
  190 + };
  191 +
  192 + patchEditorEvents("PreInit BeforeRenderUI PostRender Load Init Remove Activate Deactivate", "editor");
  193 + patchEditorEvents("Click MouseUp MouseDown DblClick KeyDown KeyUp KeyPress ContextMenu Paste Submit Reset");
  194 + patchEditorEvents("BeforeExecCommand ExecCommand", "command ui value args"); // args.terminate not supported
  195 + patchEditorEvents("PreProcess PostProcess LoadContent SaveContent Change");
  196 + patchEditorEvents("BeforeSetContent BeforeGetContent SetContent GetContent", filterSelectionEvents(false));
  197 + patchEditorEvents("SetProgressState", "state time");
  198 + patchEditorEvents("VisualAid", "element hasVisual");
  199 + patchEditorEvents("Undo Redo", convertUndoEventArgs);
  200 +
  201 + patchEditorEvents("NodeChange", function(type, e) {
  202 + return [
  203 + editor.controlManager,
  204 + e.element,
  205 + editor.selection.isCollapsed(),
  206 + e
  207 + ];
  208 + });
  209 +
  210 + var originalAddButton = editor.addButton;
  211 + editor.addButton = function(name, settings) {
  212 + var originalOnPostRender;
  213 +
  214 + function patchedPostRender() {
  215 + editor.controlManager.buttons[name] = this;
  216 +
  217 + if (originalOnPostRender) {
  218 + return originalOnPostRender.call(this);
  219 + }
  220 + }
  221 +
  222 + for (var key in settings) {
  223 + if (key.toLowerCase() === "onpostrender") {
  224 + originalOnPostRender = settings[key];
  225 + settings.onPostRender = patchedPostRender;
  226 + }
  227 + }
  228 +
  229 + if (!originalOnPostRender) {
  230 + settings.onPostRender = patchedPostRender;
  231 + }
  232 +
  233 + if (settings.title) {
  234 + settings.title = tinymce.i18n.translate((editor.settings.language || "en") + "." + settings.title);
  235 + }
  236 +
  237 + return originalAddButton.call(this, name, settings);
  238 + };
  239 +
  240 + editor.on('init', function() {
  241 + var undoManager = editor.undoManager, selection = editor.selection;
  242 +
  243 + undoManager.onUndo = new Dispatcher(editor, "Undo", convertUndoEventArgs, null, undoManager);
  244 + undoManager.onRedo = new Dispatcher(editor, "Redo", convertUndoEventArgs, null, undoManager);
  245 + undoManager.onBeforeAdd = new Dispatcher(editor, "BeforeAddUndo", null, undoManager);
  246 + undoManager.onAdd = new Dispatcher(editor, "AddUndo", null, undoManager);
  247 +
  248 + selection.onBeforeGetContent = new Dispatcher(editor, "BeforeGetContent", filterSelectionEvents(true), selection);
  249 + selection.onGetContent = new Dispatcher(editor, "GetContent", filterSelectionEvents(true), selection);
  250 + selection.onBeforeSetContent = new Dispatcher(editor, "BeforeSetContent", filterSelectionEvents(true), selection);
  251 + selection.onSetContent = new Dispatcher(editor, "SetContent", filterSelectionEvents(true), selection);
  252 + });
  253 +
  254 + editor.on('BeforeRenderUI', function() {
  255 + var windowManager = editor.windowManager;
  256 +
  257 + windowManager.onOpen = new Dispatcher();
  258 + windowManager.onClose = new Dispatcher();
  259 + windowManager.createInstance = function(className, a, b, c, d, e) {
  260 + log("windowManager.createInstance(..)");
  261 +
  262 + var constr = tinymce.resolve(className);
  263 + return new constr(a, b, c, d, e);
  264 + };
  265 + });
  266 + }
  267 +
  268 + tinymce.on('SetupEditor', patchEditor);
  269 + tinymce.PluginManager.add("compat3x", patchEditor);
  270 +
  271 + tinymce.addI18n = function(prefix, o) {
  272 + var I18n = tinymce.util.I18n, each = tinymce.each;
  273 +
  274 + if (typeof(prefix) == "string" && prefix.indexOf('.') === -1) {
  275 + I18n.add(prefix, o);
  276 + return;
  277 + }
  278 +
  279 + if (!tinymce.is(prefix, 'string')) {
  280 + each(prefix, function(o, lc) {
  281 + each(o, function(o, g) {
  282 + each(o, function(o, k) {
  283 + if (g === 'common') {
  284 + I18n.data[lc + '.' + k] = o;
  285 + } else {
  286 + I18n.data[lc + '.' + g + '.' + k] = o;
  287 + }
  288 + });
  289 + });
  290 + });
  291 + } else {
  292 + each(o, function(o, k) {
  293 + I18n.data[prefix + '.' + k] = o;
  294 + });
  295 + }
  296 + };
  297 +})(tinymce);
... ...
public/javascripts/tinymce/js/tinymce/plugins/compat3x/plugin.min.js 0 → 100644
... ... @@ -0,0 +1 @@
  1 +!function(e){function t(){}function n(e){!i&&window&&window.console&&(i=!0,console.log("Deprecated TinyMCE API call: "+e))}function o(e,o,r,i){return e=e||this,o?(this.add=function(t,a,d){function s(n){var d=[];if("string"==typeof r&&(r=r.split(" ")),r&&"function"!=typeof r)for(var s=0;s<r.length;s++)d.push(n[r[s]]);("function"!=typeof r||(d=r(o,n,e)))&&(r||(d=[n]),d.unshift(i||e),t.apply(a||i||e,d)===!1&&n.stopImmediatePropagation())}return n("<target>.on"+o+".add(..)"),e.on(o,s,d),s},this.addToTop=function(e,t){this.add(e,t,!0)},this.remove=function(t){return e.off(o,t)},void(this.dispatch=function(){return e.fire(o),!0})):void(this.add=this.addToTop=this.remove=this.dispatch=t)}function r(r){function i(t,n){e.each(t.split(" "),function(e){r["on"+e]=new o(r,e,n)})}function a(e,t,n){return[t.level,n]}function d(e){return function(t,n){return!n.selection&&!e||n.selection==e?[n]:void 0}}function s(){function t(){return s()}var o={},r="add addMenu addSeparator collapse createMenu destroy displayColor expand focus getLength hasMenus hideMenu isActive isCollapsed isDisabled isRendered isSelected mark postRender remove removeAll renderHTML renderMenu renderNode renderTo select selectByIndex setActive setAriaProperty setColor setDisabled setSelected setState showMenu update";return n("editor.controlManager.*"),e.each(r.split(" "),function(e){o[e]=t}),o}if(!r.controlManager){r.controlManager={buttons:{},setDisabled:function(e,t){n("controlManager.setDisabled(..)"),this.buttons[e]&&this.buttons[e].disabled(t)},setActive:function(e,t){n("controlManager.setActive(..)"),this.buttons[e]&&this.buttons[e].active(t)},onAdd:new o,onPostRender:new o,add:function(e){return e},createButton:s,createColorSplitButton:s,createControl:s,createDropMenu:s,createListBox:s,createMenuButton:s,createSeparator:s,createSplitButton:s,createToolbar:s,createToolbarGroup:s,destroy:t,get:t,setControlType:s},i("PreInit BeforeRenderUI PostRender Load Init Remove Activate Deactivate","editor"),i("Click MouseUp MouseDown DblClick KeyDown KeyUp KeyPress ContextMenu Paste Submit Reset"),i("BeforeExecCommand ExecCommand","command ui value args"),i("PreProcess PostProcess LoadContent SaveContent Change"),i("BeforeSetContent BeforeGetContent SetContent GetContent",d(!1)),i("SetProgressState","state time"),i("VisualAid","element hasVisual"),i("Undo Redo",a),i("NodeChange",function(e,t){return[r.controlManager,t.element,r.selection.isCollapsed(),t]});var c=r.addButton;r.addButton=function(t,n){function o(){return r.controlManager.buttons[t]=this,i?i.call(this):void 0}var i;for(var a in n)"onpostrender"===a.toLowerCase()&&(i=n[a],n.onPostRender=o);return i||(n.onPostRender=o),n.title&&(n.title=e.i18n.translate((r.settings.language||"en")+"."+n.title)),c.call(this,t,n)},r.on("init",function(){var e=r.undoManager,t=r.selection;e.onUndo=new o(r,"Undo",a,null,e),e.onRedo=new o(r,"Redo",a,null,e),e.onBeforeAdd=new o(r,"BeforeAddUndo",null,e),e.onAdd=new o(r,"AddUndo",null,e),t.onBeforeGetContent=new o(r,"BeforeGetContent",d(!0),t),t.onGetContent=new o(r,"GetContent",d(!0),t),t.onBeforeSetContent=new o(r,"BeforeSetContent",d(!0),t),t.onSetContent=new o(r,"SetContent",d(!0),t)}),r.on("BeforeRenderUI",function(){var t=r.windowManager;t.onOpen=new o,t.onClose=new o,t.createInstance=function(t,o,r,i,a,d){n("windowManager.createInstance(..)");var s=e.resolve(t);return new s(o,r,i,a,d)}})}}var i;e.util.Dispatcher=o,e.onBeforeUnload=new o(e,"BeforeUnload"),e.onAddEditor=new o(e,"AddEditor","editor"),e.onRemoveEditor=new o(e,"RemoveEditor","editor"),e.util.Cookie={get:t,getHash:t,remove:t,set:t,setHash:t},e.on("SetupEditor",r),e.PluginManager.add("compat3x",r),e.addI18n=function(t,n){var o=e.util.I18n,r=e.each;return"string"==typeof t&&-1===t.indexOf(".")?void o.add(t,n):void(e.is(t,"string")?r(n,function(e,n){o.data[t+"."+n]=e}):r(t,function(e,t){r(e,function(e,n){r(e,function(e,r){"common"===n?o.data[t+"."+r]=e:o.data[t+"."+n+"."+r]=e})})}))}}(tinymce);
0 2 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/plugins/compat3x/tiny_mce_popup.js 0 → 100644
... ... @@ -0,0 +1,539 @@
  1 +/**
  2 + * Popup.js
  3 + *
  4 + * Copyright, Moxiecode Systems AB
  5 + * Released under LGPL License.
  6 + *
  7 + * License: http://www.tinymce.com/license
  8 + * Contributing: http://www.tinymce.com/contributing
  9 + */
  10 +
  11 +var tinymce, tinyMCE;
  12 +
  13 +/**
  14 + * TinyMCE popup/dialog helper class. This gives you easy access to the
  15 + * parent editor instance and a bunch of other things. It's higly recommended
  16 + * that you load this script into your dialogs.
  17 + *
  18 + * @static
  19 + * @class tinyMCEPopup
  20 + */
  21 +var tinyMCEPopup = {
  22 + /**
  23 + * Initializes the popup this will be called automatically.
  24 + *
  25 + * @method init
  26 + */
  27 + init: function() {
  28 + var self = this, parentWin, settings, uiWindow;
  29 +
  30 + // Find window & API
  31 + parentWin = self.getWin();
  32 + tinymce = tinyMCE = parentWin.tinymce;
  33 + self.editor = tinymce.EditorManager.activeEditor;
  34 + self.params = self.editor.windowManager.getParams();
  35 +
  36 + uiWindow = self.editor.windowManager.windows[self.editor.windowManager.windows.length - 1];
  37 + self.features = uiWindow.features;
  38 + self.uiWindow = uiWindow;
  39 +
  40 + settings = self.editor.settings;
  41 +
  42 + // Setup popup CSS path(s)
  43 + if (settings.popup_css !== false) {
  44 + if (settings.popup_css) {
  45 + settings.popup_css = self.editor.documentBaseURI.toAbsolute(settings.popup_css);
  46 + } else {
  47 + settings.popup_css = self.editor.baseURI.toAbsolute("plugins/compat3x/css/dialog.css");
  48 + }
  49 + }
  50 +
  51 + if (settings.popup_css_add) {
  52 + settings.popup_css += ',' + self.editor.documentBaseURI.toAbsolute(settings.popup_css_add);
  53 + }
  54 +
  55 + // Setup local DOM
  56 + self.dom = self.editor.windowManager.createInstance('tinymce.dom.DOMUtils', document, {
  57 + ownEvents: true,
  58 + proxy: tinyMCEPopup._eventProxy
  59 + });
  60 +
  61 + self.dom.bind(window, 'ready', self._onDOMLoaded, self);
  62 +
  63 + // Enables you to skip loading the default css
  64 + if (self.features.popup_css !== false) {
  65 + self.dom.loadCSS(self.features.popup_css || self.editor.settings.popup_css);
  66 + }
  67 +
  68 + // Setup on init listeners
  69 + self.listeners = [];
  70 +
  71 + /**
  72 + * Fires when the popup is initialized.
  73 + *
  74 + * @event onInit
  75 + * @param {tinymce.Editor} editor Editor instance.
  76 + * @example
  77 + * // Alerts the selected contents when the dialog is loaded
  78 + * tinyMCEPopup.onInit.add(function(ed) {
  79 + * alert(ed.selection.getContent());
  80 + * });
  81 + *
  82 + * // Executes the init method on page load in some object using the SomeObject scope
  83 + * tinyMCEPopup.onInit.add(SomeObject.init, SomeObject);
  84 + */
  85 + self.onInit = {
  86 + add: function(func, scope) {
  87 + self.listeners.push({func : func, scope : scope});
  88 + }
  89 + };
  90 +
  91 + self.isWindow = !self.getWindowArg('mce_inline');
  92 + self.id = self.getWindowArg('mce_window_id');
  93 + },
  94 +
  95 + /**
  96 + * Returns the reference to the parent window that opened the dialog.
  97 + *
  98 + * @method getWin
  99 + * @return {Window} Reference to the parent window that opened the dialog.
  100 + */
  101 + getWin: function() {
  102 + // Added frameElement check to fix bug: #2817583
  103 + return (!window.frameElement && window.dialogArguments) || opener || parent || top;
  104 + },
  105 +
  106 + /**
  107 + * Returns a window argument/parameter by name.
  108 + *
  109 + * @method getWindowArg
  110 + * @param {String} name Name of the window argument to retrive.
  111 + * @param {String} defaultValue Optional default value to return.
  112 + * @return {String} Argument value or default value if it wasn't found.
  113 + */
  114 + getWindowArg : function(name, defaultValue) {
  115 + var value = this.params[name];
  116 +
  117 + return tinymce.is(value) ? value : defaultValue;
  118 + },
  119 +
  120 + /**
  121 + * Returns a editor parameter/config option value.
  122 + *
  123 + * @method getParam
  124 + * @param {String} name Name of the editor config option to retrive.
  125 + * @param {String} defaultValue Optional default value to return.
  126 + * @return {String} Parameter value or default value if it wasn't found.
  127 + */
  128 + getParam : function(name, defaultValue) {
  129 + return this.editor.getParam(name, defaultValue);
  130 + },
  131 +
  132 + /**
  133 + * Returns a language item by key.
  134 + *
  135 + * @method getLang
  136 + * @param {String} name Language item like mydialog.something.
  137 + * @param {String} defaultValue Optional default value to return.
  138 + * @return {String} Language value for the item like "my string" or the default value if it wasn't found.
  139 + */
  140 + getLang : function(name, defaultValue) {
  141 + return this.editor.getLang(name, defaultValue);
  142 + },
  143 +
  144 + /**
  145 + * Executed a command on editor that opened the dialog/popup.
  146 + *
  147 + * @method execCommand
  148 + * @param {String} cmd Command to execute.
  149 + * @param {Boolean} ui Optional boolean value if the UI for the command should be presented or not.
  150 + * @param {Object} val Optional value to pass with the comman like an URL.
  151 + * @param {Object} a Optional arguments object.
  152 + */
  153 + execCommand : function(cmd, ui, val, args) {
  154 + args = args || {};
  155 + args.skip_focus = 1;
  156 +
  157 + this.restoreSelection();
  158 + return this.editor.execCommand(cmd, ui, val, args);
  159 + },
  160 +
  161 + /**
  162 + * Resizes the dialog to the inner size of the window. This is needed since various browsers
  163 + * have different border sizes on windows.
  164 + *
  165 + * @method resizeToInnerSize
  166 + */
  167 + resizeToInnerSize : function() {
  168 + /*var self = this;
  169 +
  170 + // Detach it to workaround a Chrome specific bug
  171 + // https://sourceforge.net/tracker/?func=detail&atid=635682&aid=2926339&group_id=103281
  172 + setTimeout(function() {
  173 + var vp = self.dom.getViewPort(window);
  174 +
  175 + self.editor.windowManager.resizeBy(
  176 + self.getWindowArg('mce_width') - vp.w,
  177 + self.getWindowArg('mce_height') - vp.h,
  178 + self.id || window
  179 + );
  180 + }, 10);*/
  181 + },
  182 +
  183 + /**
  184 + * Will executed the specified string when the page has been loaded. This function
  185 + * was added for compatibility with the 2.x branch.
  186 + *
  187 + * @method executeOnLoad
  188 + * @param {String} evil String to evalutate on init.
  189 + */
  190 + executeOnLoad : function(evil) {
  191 + this.onInit.add(function() {
  192 + eval(evil);
  193 + });
  194 + },
  195 +
  196 + /**
  197 + * Stores the current editor selection for later restoration. This can be useful since some browsers
  198 + * looses it's selection if a control element is selected/focused inside the dialogs.
  199 + *
  200 + * @method storeSelection
  201 + */
  202 + storeSelection : function() {
  203 + this.editor.windowManager.bookmark = tinyMCEPopup.editor.selection.getBookmark(1);
  204 + },
  205 +
  206 + /**
  207 + * Restores any stored selection. This can be useful since some browsers
  208 + * looses it's selection if a control element is selected/focused inside the dialogs.
  209 + *
  210 + * @method restoreSelection
  211 + */
  212 + restoreSelection : function() {
  213 + var self = tinyMCEPopup;
  214 +
  215 + if (!self.isWindow && tinymce.isIE) {
  216 + self.editor.selection.moveToBookmark(self.editor.windowManager.bookmark);
  217 + }
  218 + },
  219 +
  220 + /**
  221 + * Loads a specific dialog language pack. If you pass in plugin_url as a argument
  222 + * when you open the window it will load the <plugin url>/langs/<code>_dlg.js lang pack file.
  223 + *
  224 + * @method requireLangPack
  225 + */
  226 + requireLangPack : function() {
  227 + var self = this, url = self.getWindowArg('plugin_url') || self.getWindowArg('theme_url'), settings = self.editor.settings, lang;
  228 +
  229 + if (settings.language !== false) {
  230 + lang = settings.language || "en";
  231 + }
  232 +
  233 + if (url && lang && self.features.translate_i18n !== false && settings.language_load !== false) {
  234 + url += '/langs/' + lang + '_dlg.js';
  235 +
  236 + if (!tinymce.ScriptLoader.isDone(url)) {
  237 + document.write('<script type="text/javascript" src="' + url + '"></script>');
  238 + tinymce.ScriptLoader.markDone(url);
  239 + }
  240 + }
  241 + },
  242 +
  243 + /**
  244 + * Executes a color picker on the specified element id. When the user
  245 + * then selects a color it will be set as the value of the specified element.
  246 + *
  247 + * @method pickColor
  248 + * @param {DOMEvent} e DOM event object.
  249 + * @param {string} element_id Element id to be filled with the color value from the picker.
  250 + */
  251 + pickColor : function(e, element_id) {
  252 + this.execCommand('mceColorPicker', true, {
  253 + color : document.getElementById(element_id).value,
  254 + func : function(c) {
  255 + document.getElementById(element_id).value = c;
  256 +
  257 + try {
  258 + document.getElementById(element_id).onchange();
  259 + } catch (ex) {
  260 + // Try fire event, ignore errors
  261 + }
  262 + }
  263 + });
  264 + },
  265 +
  266 + /**
  267 + * Opens a filebrowser/imagebrowser this will set the output value from
  268 + * the browser as a value on the specified element.
  269 + *
  270 + * @method openBrowser
  271 + * @param {string} element_id Id of the element to set value in.
  272 + * @param {string} type Type of browser to open image/file/flash.
  273 + * @param {string} option Option name to get the file_broswer_callback function name from.
  274 + */
  275 + openBrowser : function(element_id, type) {
  276 + tinyMCEPopup.restoreSelection();
  277 + this.editor.execCallback('file_browser_callback', element_id, document.getElementById(element_id).value, type, window);
  278 + },
  279 +
  280 + /**
  281 + * Creates a confirm dialog. Please don't use the blocking behavior of this
  282 + * native version use the callback method instead then it can be extended.
  283 + *
  284 + * @method confirm
  285 + * @param {String} t Title for the new confirm dialog.
  286 + * @param {function} cb Callback function to be executed after the user has selected ok or cancel.
  287 + * @param {Object} s Optional scope to execute the callback in.
  288 + */
  289 + confirm : function(t, cb, s) {
  290 + this.editor.windowManager.confirm(t, cb, s, window);
  291 + },
  292 +
  293 + /**
  294 + * Creates a alert dialog. Please don't use the blocking behavior of this
  295 + * native version use the callback method instead then it can be extended.
  296 + *
  297 + * @method alert
  298 + * @param {String} tx Title for the new alert dialog.
  299 + * @param {function} cb Callback function to be executed after the user has selected ok.
  300 + * @param {Object} s Optional scope to execute the callback in.
  301 + */
  302 + alert : function(tx, cb, s) {
  303 + this.editor.windowManager.alert(tx, cb, s, window);
  304 + },
  305 +
  306 + /**
  307 + * Closes the current window.
  308 + *
  309 + * @method close
  310 + */
  311 + close : function() {
  312 + var t = this;
  313 +
  314 + // To avoid domain relaxing issue in Opera
  315 + function close() {
  316 + t.editor.windowManager.close(window);
  317 + tinymce = tinyMCE = t.editor = t.params = t.dom = t.dom.doc = null; // Cleanup
  318 + }
  319 +
  320 + if (tinymce.isOpera) {
  321 + t.getWin().setTimeout(close, 0);
  322 + } else {
  323 + close();
  324 + }
  325 + },
  326 +
  327 + // Internal functions
  328 +
  329 + _restoreSelection : function() {
  330 + var e = window.event.srcElement;
  331 +
  332 + if (e.nodeName == 'INPUT' && (e.type == 'submit' || e.type == 'button')) {
  333 + tinyMCEPopup.restoreSelection();
  334 + }
  335 + },
  336 +
  337 +/* _restoreSelection : function() {
  338 + var e = window.event.srcElement;
  339 +
  340 + // If user focus a non text input or textarea
  341 + if ((e.nodeName != 'INPUT' && e.nodeName != 'TEXTAREA') || e.type != 'text')
  342 + tinyMCEPopup.restoreSelection();
  343 + },*/
  344 +
  345 + _onDOMLoaded : function() {
  346 + var t = tinyMCEPopup, ti = document.title, h, nv;
  347 +
  348 + // Translate page
  349 + if (t.features.translate_i18n !== false) {
  350 + var map = {
  351 + "update": "Ok",
  352 + "insert": "Ok",
  353 + "cancel": "Cancel",
  354 + "not_set": "--",
  355 + "class_name": "Class name",
  356 + "browse": "Browse"
  357 + };
  358 +
  359 + var langCode = tinymce.settings.language || 'en';
  360 + for (var key in map) {
  361 + tinymce.i18n.data[langCode + "." + key] = tinymce.i18n.translate(map[key]);
  362 + }
  363 +
  364 + h = document.body.innerHTML;
  365 +
  366 + // Replace a=x with a="x" in IE
  367 + if (tinymce.isIE) {
  368 + h = h.replace(/ (value|title|alt)=([^"][^\s>]+)/gi, ' $1="$2"');
  369 + }
  370 +
  371 + document.dir = t.editor.getParam('directionality','');
  372 +
  373 + if ((nv = t.editor.translate(h)) && nv != h) {
  374 + document.body.innerHTML = nv;
  375 + }
  376 +
  377 + if ((nv = t.editor.translate(ti)) && nv != ti) {
  378 + document.title = ti = nv;
  379 + }
  380 + }
  381 +
  382 + if (!t.editor.getParam('browser_preferred_colors', false) || !t.isWindow) {
  383 + t.dom.addClass(document.body, 'forceColors');
  384 + }
  385 +
  386 + document.body.style.display = '';
  387 +
  388 + // Restore selection in IE when focus is placed on a non textarea or input element of the type text
  389 + if (tinymce.Env.ie) {
  390 + if (tinymce.Env.ie < 11) {
  391 + document.attachEvent('onmouseup', tinyMCEPopup._restoreSelection);
  392 +
  393 + // Add base target element for it since it would fail with modal dialogs
  394 + t.dom.add(t.dom.select('head')[0], 'base', {target: '_self'});
  395 + } else {
  396 + document.addEventListener('mouseup', tinyMCEPopup._restoreSelection, false);
  397 + }
  398 + }
  399 +
  400 + t.restoreSelection();
  401 + t.resizeToInnerSize();
  402 +
  403 + // Set inline title
  404 + if (!t.isWindow) {
  405 + t.editor.windowManager.setTitle(window, ti);
  406 + } else {
  407 + window.focus();
  408 + }
  409 +
  410 + if (!tinymce.isIE && !t.isWindow) {
  411 + t.dom.bind(document, 'focus', function() {
  412 + t.editor.windowManager.focus(t.id);
  413 + });
  414 + }
  415 +
  416 + // Patch for accessibility
  417 + tinymce.each(t.dom.select('select'), function(e) {
  418 + e.onkeydown = tinyMCEPopup._accessHandler;
  419 + });
  420 +
  421 + // Call onInit
  422 + // Init must be called before focus so the selection won't get lost by the focus call
  423 + tinymce.each(t.listeners, function(o) {
  424 + o.func.call(o.scope, t.editor);
  425 + });
  426 +
  427 + // Move focus to window
  428 + if (t.getWindowArg('mce_auto_focus', true)) {
  429 + window.focus();
  430 +
  431 + // Focus element with mceFocus class
  432 + tinymce.each(document.forms, function(f) {
  433 + tinymce.each(f.elements, function(e) {
  434 + if (t.dom.hasClass(e, 'mceFocus') && !e.disabled) {
  435 + e.focus();
  436 + return false; // Break loop
  437 + }
  438 + });
  439 + });
  440 + }
  441 +
  442 + document.onkeyup = tinyMCEPopup._closeWinKeyHandler;
  443 +
  444 + if ('textContent' in document) {
  445 + t.uiWindow.getEl('head').firstChild.textContent = document.title;
  446 + } else {
  447 + t.uiWindow.getEl('head').firstChild.innerText = document.title;
  448 + }
  449 + },
  450 +
  451 + _accessHandler : function(e) {
  452 + e = e || window.event;
  453 +
  454 + if (e.keyCode == 13 || e.keyCode == 32) {
  455 + var elm = e.target || e.srcElement;
  456 +
  457 + if (elm.onchange) {
  458 + elm.onchange();
  459 + }
  460 +
  461 + return tinymce.dom.Event.cancel(e);
  462 + }
  463 + },
  464 +
  465 + _closeWinKeyHandler : function(e) {
  466 + e = e || window.event;
  467 +
  468 + if (e.keyCode == 27) {
  469 + tinyMCEPopup.close();
  470 + }
  471 + },
  472 +
  473 + _eventProxy: function(id) {
  474 + return function(evt) {
  475 + tinyMCEPopup.dom.events.callNativeHandler(id, evt);
  476 + };
  477 + }
  478 +};
  479 +
  480 +tinyMCEPopup.init();
  481 +
  482 +tinymce.util.Dispatcher = function(scope) {
  483 + this.scope = scope || this;
  484 + this.listeners = [];
  485 +
  486 + this.add = function(callback, scope) {
  487 + this.listeners.push({cb : callback, scope : scope || this.scope});
  488 +
  489 + return callback;
  490 + };
  491 +
  492 + this.addToTop = function(callback, scope) {
  493 + var self = this, listener = {cb : callback, scope : scope || self.scope};
  494 +
  495 + // Create new listeners if addToTop is executed in a dispatch loop
  496 + if (self.inDispatch) {
  497 + self.listeners = [listener].concat(self.listeners);
  498 + } else {
  499 + self.listeners.unshift(listener);
  500 + }
  501 +
  502 + return callback;
  503 + };
  504 +
  505 + this.remove = function(callback) {
  506 + var listeners = this.listeners, output = null;
  507 +
  508 + tinymce.each(listeners, function(listener, i) {
  509 + if (callback == listener.cb) {
  510 + output = listener;
  511 + listeners.splice(i, 1);
  512 + return false;
  513 + }
  514 + });
  515 +
  516 + return output;
  517 + };
  518 +
  519 + this.dispatch = function() {
  520 + var self = this, returnValue, args = arguments, i, listeners = self.listeners, listener;
  521 +
  522 + self.inDispatch = true;
  523 +
  524 + // Needs to be a real loop since the listener count might change while looping
  525 + // And this is also more efficient
  526 + for (i = 0; i < listeners.length; i++) {
  527 + listener = listeners[i];
  528 + returnValue = listener.cb.apply(listener.scope, args.length > 0 ? args : [listener.scope]);
  529 +
  530 + if (returnValue === false) {
  531 + break;
  532 + }
  533 + }
  534 +
  535 + self.inDispatch = false;
  536 +
  537 + return returnValue;
  538 + };
  539 +};
... ...
public/javascripts/tinymce/js/tinymce/plugins/compat3x/utils/editable_selects.js 0 → 100644
... ... @@ -0,0 +1,70 @@
  1 +/**
  2 + * editable_selects.js
  3 + *
  4 + * Copyright, Moxiecode Systems AB
  5 + * Released under LGPL License.
  6 + *
  7 + * License: http://www.tinymce.com/license
  8 + * Contributing: http://www.tinymce.com/contributing
  9 + */
  10 +
  11 +var TinyMCE_EditableSelects = {
  12 + editSelectElm : null,
  13 +
  14 + init : function() {
  15 + var nl = document.getElementsByTagName("select"), i, d = document, o;
  16 +
  17 + for (i=0; i<nl.length; i++) {
  18 + if (nl[i].className.indexOf('mceEditableSelect') != -1) {
  19 + o = new Option(tinyMCEPopup.editor.translate('value'), '__mce_add_custom__');
  20 +
  21 + o.className = 'mceAddSelectValue';
  22 +
  23 + nl[i].options[nl[i].options.length] = o;
  24 + nl[i].onchange = TinyMCE_EditableSelects.onChangeEditableSelect;
  25 + }
  26 + }
  27 + },
  28 +
  29 + onChangeEditableSelect : function(e) {
  30 + var d = document, ne, se = window.event ? window.event.srcElement : e.target;
  31 +
  32 + if (se.options[se.selectedIndex].value == '__mce_add_custom__') {
  33 + ne = d.createElement("input");
  34 + ne.id = se.id + "_custom";
  35 + ne.name = se.name + "_custom";
  36 + ne.type = "text";
  37 +
  38 + ne.style.width = se.offsetWidth + 'px';
  39 + se.parentNode.insertBefore(ne, se);
  40 + se.style.display = 'none';
  41 + ne.focus();
  42 + ne.onblur = TinyMCE_EditableSelects.onBlurEditableSelectInput;
  43 + ne.onkeydown = TinyMCE_EditableSelects.onKeyDown;
  44 + TinyMCE_EditableSelects.editSelectElm = se;
  45 + }
  46 + },
  47 +
  48 + onBlurEditableSelectInput : function() {
  49 + var se = TinyMCE_EditableSelects.editSelectElm;
  50 +
  51 + if (se) {
  52 + if (se.previousSibling.value != '') {
  53 + addSelectValue(document.forms[0], se.id, se.previousSibling.value, se.previousSibling.value);
  54 + selectByValue(document.forms[0], se.id, se.previousSibling.value);
  55 + } else
  56 + selectByValue(document.forms[0], se.id, '');
  57 +
  58 + se.style.display = 'inline';
  59 + se.parentNode.removeChild(se.previousSibling);
  60 + TinyMCE_EditableSelects.editSelectElm = null;
  61 + }
  62 + },
  63 +
  64 + onKeyDown : function(e) {
  65 + e = e || window.event;
  66 +
  67 + if (e.keyCode == 13)
  68 + TinyMCE_EditableSelects.onBlurEditableSelectInput();
  69 + }
  70 +};
... ...
public/javascripts/tinymce/js/tinymce/plugins/compat3x/utils/form_utils.js 0 → 100644
... ... @@ -0,0 +1,210 @@
  1 +/**
  2 + * form_utils.js
  3 + *
  4 + * Copyright, Moxiecode Systems AB
  5 + * Released under LGPL License.
  6 + *
  7 + * License: http://www.tinymce.com/license
  8 + * Contributing: http://www.tinymce.com/contributing
  9 + */
  10 +
  11 +var themeBaseURL = tinyMCEPopup.editor.baseURI.toAbsolute('themes/' + tinyMCEPopup.getParam("theme"));
  12 +
  13 +function getColorPickerHTML(id, target_form_element) {
  14 + var h = "", dom = tinyMCEPopup.dom;
  15 +
  16 + if (label = dom.select('label[for=' + target_form_element + ']')[0]) {
  17 + label.id = label.id || dom.uniqueId();
  18 + }
  19 +
  20 + h += '<a role="button" aria-labelledby="' + id + '_label" id="' + id + '_link" href="javascript:;" onclick="tinyMCEPopup.pickColor(event,\'' + target_form_element +'\');" onmousedown="return false;" class="pickcolor">';
  21 + h += '<span id="' + id + '" title="' + tinyMCEPopup.getLang('browse') + '">&nbsp;<span id="' + id + '_label" class="mceVoiceLabel mceIconOnly" style="display:none;">' + tinyMCEPopup.getLang('browse') + '</span></span></a>';
  22 +
  23 + return h;
  24 +}
  25 +
  26 +function updateColor(img_id, form_element_id) {
  27 + document.getElementById(img_id).style.backgroundColor = document.forms[0].elements[form_element_id].value;
  28 +}
  29 +
  30 +function setBrowserDisabled(id, state) {
  31 + var img = document.getElementById(id);
  32 + var lnk = document.getElementById(id + "_link");
  33 +
  34 + if (lnk) {
  35 + if (state) {
  36 + lnk.setAttribute("realhref", lnk.getAttribute("href"));
  37 + lnk.removeAttribute("href");
  38 + tinyMCEPopup.dom.addClass(img, 'disabled');
  39 + } else {
  40 + if (lnk.getAttribute("realhref"))
  41 + lnk.setAttribute("href", lnk.getAttribute("realhref"));
  42 +
  43 + tinyMCEPopup.dom.removeClass(img, 'disabled');
  44 + }
  45 + }
  46 +}
  47 +
  48 +function getBrowserHTML(id, target_form_element, type, prefix) {
  49 + var option = prefix + "_" + type + "_browser_callback", cb, html;
  50 +
  51 + cb = tinyMCEPopup.getParam(option, tinyMCEPopup.getParam("file_browser_callback"));
  52 +
  53 + if (!cb)
  54 + return "";
  55 +
  56 + html = "";
  57 + html += '<a id="' + id + '_link" href="javascript:openBrowser(\'' + id + '\',\'' + target_form_element + '\', \'' + type + '\',\'' + option + '\');" onmousedown="return false;" class="browse">';
  58 + html += '<span id="' + id + '" title="' + tinyMCEPopup.getLang('browse') + '">&nbsp;</span></a>';
  59 +
  60 + return html;
  61 +}
  62 +
  63 +function openBrowser(img_id, target_form_element, type, option) {
  64 + var img = document.getElementById(img_id);
  65 +
  66 + if (img.className != "mceButtonDisabled")
  67 + tinyMCEPopup.openBrowser(target_form_element, type, option);
  68 +}
  69 +
  70 +function selectByValue(form_obj, field_name, value, add_custom, ignore_case) {
  71 + if (!form_obj || !form_obj.elements[field_name])
  72 + return;
  73 +
  74 + if (!value)
  75 + value = "";
  76 +
  77 + var sel = form_obj.elements[field_name];
  78 +
  79 + var found = false;
  80 + for (var i=0; i<sel.options.length; i++) {
  81 + var option = sel.options[i];
  82 +
  83 + if (option.value == value || (ignore_case && option.value.toLowerCase() == value.toLowerCase())) {
  84 + option.selected = true;
  85 + found = true;
  86 + } else
  87 + option.selected = false;
  88 + }
  89 +
  90 + if (!found && add_custom && value != '') {
  91 + var option = new Option(value, value);
  92 + option.selected = true;
  93 + sel.options[sel.options.length] = option;
  94 + sel.selectedIndex = sel.options.length - 1;
  95 + }
  96 +
  97 + return found;
  98 +}
  99 +
  100 +function getSelectValue(form_obj, field_name) {
  101 + var elm = form_obj.elements[field_name];
  102 +
  103 + if (elm == null || elm.options == null || elm.selectedIndex === -1)
  104 + return "";
  105 +
  106 + return elm.options[elm.selectedIndex].value;
  107 +}
  108 +
  109 +function addSelectValue(form_obj, field_name, name, value) {
  110 + var s = form_obj.elements[field_name];
  111 + var o = new Option(name, value);
  112 + s.options[s.options.length] = o;
  113 +}
  114 +
  115 +function addClassesToList(list_id, specific_option) {
  116 + // Setup class droplist
  117 + var styleSelectElm = document.getElementById(list_id);
  118 + var styles = tinyMCEPopup.getParam('theme_advanced_styles', false);
  119 + styles = tinyMCEPopup.getParam(specific_option, styles);
  120 +
  121 + if (styles) {
  122 + var stylesAr = styles.split(';');
  123 +
  124 + for (var i=0; i<stylesAr.length; i++) {
  125 + if (stylesAr != "") {
  126 + var key, value;
  127 +
  128 + key = stylesAr[i].split('=')[0];
  129 + value = stylesAr[i].split('=')[1];
  130 +
  131 + styleSelectElm.options[styleSelectElm.length] = new Option(key, value);
  132 + }
  133 + }
  134 + } else {
  135 + /*tinymce.each(tinyMCEPopup.editor.dom.getClasses(), function(o) {
  136 + styleSelectElm.options[styleSelectElm.length] = new Option(o.title || o['class'], o['class']);
  137 + });*/
  138 + }
  139 +}
  140 +
  141 +function isVisible(element_id) {
  142 + var elm = document.getElementById(element_id);
  143 +
  144 + return elm && elm.style.display != "none";
  145 +}
  146 +
  147 +function convertRGBToHex(col) {
  148 + var re = new RegExp("rgb\\s*\\(\\s*([0-9]+).*,\\s*([0-9]+).*,\\s*([0-9]+).*\\)", "gi");
  149 +
  150 + var rgb = col.replace(re, "$1,$2,$3").split(',');
  151 + if (rgb.length == 3) {
  152 + r = parseInt(rgb[0]).toString(16);
  153 + g = parseInt(rgb[1]).toString(16);
  154 + b = parseInt(rgb[2]).toString(16);
  155 +
  156 + r = r.length == 1 ? '0' + r : r;
  157 + g = g.length == 1 ? '0' + g : g;
  158 + b = b.length == 1 ? '0' + b : b;
  159 +
  160 + return "#" + r + g + b;
  161 + }
  162 +
  163 + return col;
  164 +}
  165 +
  166 +function convertHexToRGB(col) {
  167 + if (col.indexOf('#') != -1) {
  168 + col = col.replace(new RegExp('[^0-9A-F]', 'gi'), '');
  169 +
  170 + r = parseInt(col.substring(0, 2), 16);
  171 + g = parseInt(col.substring(2, 4), 16);
  172 + b = parseInt(col.substring(4, 6), 16);
  173 +
  174 + return "rgb(" + r + "," + g + "," + b + ")";
  175 + }
  176 +
  177 + return col;
  178 +}
  179 +
  180 +function trimSize(size) {
  181 + return size.replace(/([0-9\.]+)(px|%|in|cm|mm|em|ex|pt|pc)/i, '$1$2');
  182 +}
  183 +
  184 +function getCSSSize(size) {
  185 + size = trimSize(size);
  186 +
  187 + if (size == "")
  188 + return "";
  189 +
  190 + // Add px
  191 + if (/^[0-9]+$/.test(size))
  192 + size += 'px';
  193 + // Sanity check, IE doesn't like broken values
  194 + else if (!(/^[0-9\.]+(px|%|in|cm|mm|em|ex|pt|pc)$/i.test(size)))
  195 + return "";
  196 +
  197 + return size;
  198 +}
  199 +
  200 +function getStyle(elm, attrib, style) {
  201 + var val = tinyMCEPopup.dom.getAttrib(elm, attrib);
  202 +
  203 + if (val != '')
  204 + return '' + val;
  205 +
  206 + if (typeof(style) == 'undefined')
  207 + style = attrib;
  208 +
  209 + return tinyMCEPopup.dom.getStyle(elm, style);
  210 +}
... ...
public/javascripts/tinymce/js/tinymce/plugins/compat3x/utils/mctabs.js 0 → 100644
... ... @@ -0,0 +1,164 @@
  1 +/**
  2 + * mctabs.js
  3 + *
  4 + * Copyright, Moxiecode Systems AB
  5 + * Released under LGPL License.
  6 + *
  7 + * License: http://www.tinymce.com/license
  8 + * Contributing: http://www.tinymce.com/contributing
  9 + */
  10 +
  11 +/*jshint globals: tinyMCEPopup */
  12 +
  13 +function MCTabs() {
  14 + this.settings = [];
  15 + this.onChange = tinyMCEPopup.editor.windowManager.createInstance('tinymce.util.Dispatcher');
  16 +};
  17 +
  18 +MCTabs.prototype.init = function(settings) {
  19 + this.settings = settings;
  20 +};
  21 +
  22 +MCTabs.prototype.getParam = function(name, default_value) {
  23 + var value = null;
  24 +
  25 + value = (typeof(this.settings[name]) == "undefined") ? default_value : this.settings[name];
  26 +
  27 + // Fix bool values
  28 + if (value == "true" || value == "false")
  29 + return (value == "true");
  30 +
  31 + return value;
  32 +};
  33 +
  34 +MCTabs.prototype.showTab =function(tab){
  35 + tab.className = 'current';
  36 + tab.setAttribute("aria-selected", true);
  37 + tab.setAttribute("aria-expanded", true);
  38 + tab.tabIndex = 0;
  39 +};
  40 +
  41 +MCTabs.prototype.hideTab =function(tab){
  42 + var t=this;
  43 +
  44 + tab.className = '';
  45 + tab.setAttribute("aria-selected", false);
  46 + tab.setAttribute("aria-expanded", false);
  47 + tab.tabIndex = -1;
  48 +};
  49 +
  50 +MCTabs.prototype.showPanel = function(panel) {
  51 + panel.className = 'current';
  52 + panel.setAttribute("aria-hidden", false);
  53 +};
  54 +
  55 +MCTabs.prototype.hidePanel = function(panel) {
  56 + panel.className = 'panel';
  57 + panel.setAttribute("aria-hidden", true);
  58 +};
  59 +
  60 +MCTabs.prototype.getPanelForTab = function(tabElm) {
  61 + return tinyMCEPopup.dom.getAttrib(tabElm, "aria-controls");
  62 +};
  63 +
  64 +MCTabs.prototype.displayTab = function(tab_id, panel_id, avoid_focus) {
  65 + var panelElm, panelContainerElm, tabElm, tabContainerElm, selectionClass, nodes, i, t = this;
  66 +
  67 + tabElm = document.getElementById(tab_id);
  68 +
  69 + if (panel_id === undefined) {
  70 + panel_id = t.getPanelForTab(tabElm);
  71 + }
  72 +
  73 + panelElm= document.getElementById(panel_id);
  74 + panelContainerElm = panelElm ? panelElm.parentNode : null;
  75 + tabContainerElm = tabElm ? tabElm.parentNode : null;
  76 + selectionClass = t.getParam('selection_class', 'current');
  77 +
  78 + if (tabElm && tabContainerElm) {
  79 + nodes = tabContainerElm.childNodes;
  80 +
  81 + // Hide all other tabs
  82 + for (i = 0; i < nodes.length; i++) {
  83 + if (nodes[i].nodeName == "LI") {
  84 + t.hideTab(nodes[i]);
  85 + }
  86 + }
  87 +
  88 + // Show selected tab
  89 + t.showTab(tabElm);
  90 + }
  91 +
  92 + if (panelElm && panelContainerElm) {
  93 + nodes = panelContainerElm.childNodes;
  94 +
  95 + // Hide all other panels
  96 + for (i = 0; i < nodes.length; i++) {
  97 + if (nodes[i].nodeName == "DIV")
  98 + t.hidePanel(nodes[i]);
  99 + }
  100 +
  101 + if (!avoid_focus) {
  102 + tabElm.focus();
  103 + }
  104 +
  105 + // Show selected panel
  106 + t.showPanel(panelElm);
  107 + }
  108 +};
  109 +
  110 +MCTabs.prototype.getAnchor = function() {
  111 + var pos, url = document.location.href;
  112 +
  113 + if ((pos = url.lastIndexOf('#')) != -1)
  114 + return url.substring(pos + 1);
  115 +
  116 + return "";
  117 +};
  118 +
  119 +
  120 +//Global instance
  121 +var mcTabs = new MCTabs();
  122 +
  123 +tinyMCEPopup.onInit.add(function() {
  124 + var tinymce = tinyMCEPopup.getWin().tinymce, dom = tinyMCEPopup.dom, each = tinymce.each;
  125 +
  126 + each(dom.select('div.tabs'), function(tabContainerElm) {
  127 + //var keyNav;
  128 +
  129 + dom.setAttrib(tabContainerElm, "role", "tablist");
  130 +
  131 + var items = tinyMCEPopup.dom.select('li', tabContainerElm);
  132 + var action = function(id) {
  133 + mcTabs.displayTab(id, mcTabs.getPanelForTab(id));
  134 + mcTabs.onChange.dispatch(id);
  135 + };
  136 +
  137 + each(items, function(item) {
  138 + dom.setAttrib(item, 'role', 'tab');
  139 + dom.bind(item, 'click', function(evt) {
  140 + action(item.id);
  141 + });
  142 + });
  143 +
  144 + dom.bind(dom.getRoot(), 'keydown', function(evt) {
  145 + if (evt.keyCode === 9 && evt.ctrlKey && !evt.altKey) { // Tab
  146 + //keyNav.moveFocus(evt.shiftKey ? -1 : 1);
  147 + tinymce.dom.Event.cancel(evt);
  148 + }
  149 + });
  150 +
  151 + each(dom.select('a', tabContainerElm), function(a) {
  152 + dom.setAttrib(a, 'tabindex', '-1');
  153 + });
  154 +
  155 + /*keyNav = tinyMCEPopup.editor.windowManager.createInstance('tinymce.ui.KeyboardNavigation', {
  156 + root: tabContainerElm,
  157 + items: items,
  158 + onAction: action,
  159 + actOnFocus: true,
  160 + enableLeftRight: true,
  161 + enableUpDown: true
  162 + }, tinyMCEPopup.dom);*/
  163 + });
  164 +});
0 165 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/plugins/compat3x/utils/validate.js 0 → 100644
... ... @@ -0,0 +1,252 @@
  1 +/**
  2 + * validate.js
  3 + *
  4 + * Copyright, Moxiecode Systems AB
  5 + * Released under LGPL License.
  6 + *
  7 + * License: http://www.tinymce.com/license
  8 + * Contributing: http://www.tinymce.com/contributing
  9 + */
  10 +
  11 +/**
  12 + // String validation:
  13 +
  14 + if (!Validator.isEmail('myemail'))
  15 + alert('Invalid email.');
  16 +
  17 + // Form validation:
  18 +
  19 + var f = document.forms['myform'];
  20 +
  21 + if (!Validator.isEmail(f.myemail))
  22 + alert('Invalid email.');
  23 +*/
  24 +
  25 +var Validator = {
  26 + isEmail : function(s) {
  27 + return this.test(s, '^[-!#$%&\'*+\\./0-9=?A-Z^_`a-z{|}~]+@[-!#$%&\'*+\\/0-9=?A-Z^_`a-z{|}~]+\.[-!#$%&\'*+\\./0-9=?A-Z^_`a-z{|}~]+$');
  28 + },
  29 +
  30 + isAbsUrl : function(s) {
  31 + return this.test(s, '^(news|telnet|nttp|file|http|ftp|https)://[-A-Za-z0-9\\.]+\\/?.*$');
  32 + },
  33 +
  34 + isSize : function(s) {
  35 + return this.test(s, '^[0-9.]+(%|in|cm|mm|em|ex|pt|pc|px)?$');
  36 + },
  37 +
  38 + isId : function(s) {
  39 + return this.test(s, '^[A-Za-z_]([A-Za-z0-9_])*$');
  40 + },
  41 +
  42 + isEmpty : function(s) {
  43 + var nl, i;
  44 +
  45 + if (s.nodeName == 'SELECT' && s.selectedIndex < 1)
  46 + return true;
  47 +
  48 + if (s.type == 'checkbox' && !s.checked)
  49 + return true;
  50 +
  51 + if (s.type == 'radio') {
  52 + for (i=0, nl = s.form.elements; i<nl.length; i++) {
  53 + if (nl[i].type == "radio" && nl[i].name == s.name && nl[i].checked)
  54 + return false;
  55 + }
  56 +
  57 + return true;
  58 + }
  59 +
  60 + return new RegExp('^\\s*$').test(s.nodeType == 1 ? s.value : s);
  61 + },
  62 +
  63 + isNumber : function(s, d) {
  64 + return !isNaN(s.nodeType == 1 ? s.value : s) && (!d || !this.test(s, '^-?[0-9]*\\.[0-9]*$'));
  65 + },
  66 +
  67 + test : function(s, p) {
  68 + s = s.nodeType == 1 ? s.value : s;
  69 +
  70 + return s == '' || new RegExp(p).test(s);
  71 + }
  72 +};
  73 +
  74 +var AutoValidator = {
  75 + settings : {
  76 + id_cls : 'id',
  77 + int_cls : 'int',
  78 + url_cls : 'url',
  79 + number_cls : 'number',
  80 + email_cls : 'email',
  81 + size_cls : 'size',
  82 + required_cls : 'required',
  83 + invalid_cls : 'invalid',
  84 + min_cls : 'min',
  85 + max_cls : 'max'
  86 + },
  87 +
  88 + init : function(s) {
  89 + var n;
  90 +
  91 + for (n in s)
  92 + this.settings[n] = s[n];
  93 + },
  94 +
  95 + validate : function(f) {
  96 + var i, nl, s = this.settings, c = 0;
  97 +
  98 + nl = this.tags(f, 'label');
  99 + for (i=0; i<nl.length; i++) {
  100 + this.removeClass(nl[i], s.invalid_cls);
  101 + nl[i].setAttribute('aria-invalid', false);
  102 + }
  103 +
  104 + c += this.validateElms(f, 'input');
  105 + c += this.validateElms(f, 'select');
  106 + c += this.validateElms(f, 'textarea');
  107 +
  108 + return c == 3;
  109 + },
  110 +
  111 + invalidate : function(n) {
  112 + this.mark(n.form, n);
  113 + },
  114 +
  115 + getErrorMessages : function(f) {
  116 + var nl, i, s = this.settings, field, msg, values, messages = [], ed = tinyMCEPopup.editor;
  117 + nl = this.tags(f, "label");
  118 + for (i=0; i<nl.length; i++) {
  119 + if (this.hasClass(nl[i], s.invalid_cls)) {
  120 + field = document.getElementById(nl[i].getAttribute("for"));
  121 + values = { field: nl[i].textContent };
  122 + if (this.hasClass(field, s.min_cls, true)) {
  123 + message = ed.getLang('invalid_data_min');
  124 + values.min = this.getNum(field, s.min_cls);
  125 + } else if (this.hasClass(field, s.number_cls)) {
  126 + message = ed.getLang('invalid_data_number');
  127 + } else if (this.hasClass(field, s.size_cls)) {
  128 + message = ed.getLang('invalid_data_size');
  129 + } else {
  130 + message = ed.getLang('invalid_data');
  131 + }
  132 +
  133 + message = message.replace(/{\#([^}]+)\}/g, function(a, b) {
  134 + return values[b] || '{#' + b + '}';
  135 + });
  136 + messages.push(message);
  137 + }
  138 + }
  139 + return messages;
  140 + },
  141 +
  142 + reset : function(e) {
  143 + var t = ['label', 'input', 'select', 'textarea'];
  144 + var i, j, nl, s = this.settings;
  145 +
  146 + if (e == null)
  147 + return;
  148 +
  149 + for (i=0; i<t.length; i++) {
  150 + nl = this.tags(e.form ? e.form : e, t[i]);
  151 + for (j=0; j<nl.length; j++) {
  152 + this.removeClass(nl[j], s.invalid_cls);
  153 + nl[j].setAttribute('aria-invalid', false);
  154 + }
  155 + }
  156 + },
  157 +
  158 + validateElms : function(f, e) {
  159 + var nl, i, n, s = this.settings, st = true, va = Validator, v;
  160 +
  161 + nl = this.tags(f, e);
  162 + for (i=0; i<nl.length; i++) {
  163 + n = nl[i];
  164 +
  165 + this.removeClass(n, s.invalid_cls);
  166 +
  167 + if (this.hasClass(n, s.required_cls) && va.isEmpty(n))
  168 + st = this.mark(f, n);
  169 +
  170 + if (this.hasClass(n, s.number_cls) && !va.isNumber(n))
  171 + st = this.mark(f, n);
  172 +
  173 + if (this.hasClass(n, s.int_cls) && !va.isNumber(n, true))
  174 + st = this.mark(f, n);
  175 +
  176 + if (this.hasClass(n, s.url_cls) && !va.isAbsUrl(n))
  177 + st = this.mark(f, n);
  178 +
  179 + if (this.hasClass(n, s.email_cls) && !va.isEmail(n))
  180 + st = this.mark(f, n);
  181 +
  182 + if (this.hasClass(n, s.size_cls) && !va.isSize(n))
  183 + st = this.mark(f, n);
  184 +
  185 + if (this.hasClass(n, s.id_cls) && !va.isId(n))
  186 + st = this.mark(f, n);
  187 +
  188 + if (this.hasClass(n, s.min_cls, true)) {
  189 + v = this.getNum(n, s.min_cls);
  190 +
  191 + if (isNaN(v) || parseInt(n.value) < parseInt(v))
  192 + st = this.mark(f, n);
  193 + }
  194 +
  195 + if (this.hasClass(n, s.max_cls, true)) {
  196 + v = this.getNum(n, s.max_cls);
  197 +
  198 + if (isNaN(v) || parseInt(n.value) > parseInt(v))
  199 + st = this.mark(f, n);
  200 + }
  201 + }
  202 +
  203 + return st;
  204 + },
  205 +
  206 + hasClass : function(n, c, d) {
  207 + return new RegExp('\\b' + c + (d ? '[0-9]+' : '') + '\\b', 'g').test(n.className);
  208 + },
  209 +
  210 + getNum : function(n, c) {
  211 + c = n.className.match(new RegExp('\\b' + c + '([0-9]+)\\b', 'g'))[0];
  212 + c = c.replace(/[^0-9]/g, '');
  213 +
  214 + return c;
  215 + },
  216 +
  217 + addClass : function(n, c, b) {
  218 + var o = this.removeClass(n, c);
  219 + n.className = b ? c + (o != '' ? (' ' + o) : '') : (o != '' ? (o + ' ') : '') + c;
  220 + },
  221 +
  222 + removeClass : function(n, c) {
  223 + c = n.className.replace(new RegExp("(^|\\s+)" + c + "(\\s+|$)"), ' ');
  224 + return n.className = c != ' ' ? c : '';
  225 + },
  226 +
  227 + tags : function(f, s) {
  228 + return f.getElementsByTagName(s);
  229 + },
  230 +
  231 + mark : function(f, n) {
  232 + var s = this.settings;
  233 +
  234 + this.addClass(n, s.invalid_cls);
  235 + n.setAttribute('aria-invalid', 'true');
  236 + this.markLabels(f, n, s.invalid_cls);
  237 +
  238 + return false;
  239 + },
  240 +
  241 + markLabels : function(f, n, ic) {
  242 + var nl, i;
  243 +
  244 + nl = this.tags(f, "label");
  245 + for (i=0; i<nl.length; i++) {
  246 + if (nl[i].getAttribute("for") == n.id || nl[i].htmlFor == n.id)
  247 + this.addClass(nl[i], ic);
  248 + }
  249 +
  250 + return null;
  251 + }
  252 +};
... ...
public/javascripts/tinymce/js/tinymce/plugins/contextmenu/plugin.min.js 0 → 100644
... ... @@ -0,0 +1 @@
  1 +tinymce.PluginManager.add("contextmenu",function(e){var t,n=e.settings.contextmenu_never_use_native;e.on("contextmenu",function(o){var i,c=e.getDoc();if(!o.ctrlKey||n){if(o.preventDefault(),tinymce.Env.mac&&tinymce.Env.webkit&&2==o.button&&c.caretRangeFromPoint&&e.selection.setRng(c.caretRangeFromPoint(o.x,o.y)),i=e.settings.contextmenu||"link image inserttable | cell row column deletetable",t)t.show();else{var a=[];tinymce.each(i.split(/[ ,]/),function(t){var n=e.menuItems[t];"|"==t&&(n={text:t}),n&&(n.shortcut="",a.push(n))});for(var r=0;r<a.length;r++)"|"==a[r].text&&(0===r||r==a.length-1)&&a.splice(r,1);t=new tinymce.ui.Menu({items:a,context:"contextmenu"}).addClass("contextmenu").renderTo(),e.on("remove",function(){t.remove(),t=null})}var m={x:o.pageX,y:o.pageY};e.inline||(m=tinymce.DOM.getPos(e.getContentAreaContainer()),m.x+=o.clientX,m.y+=o.clientY),t.moveTo(m.x,m.y)}})});
0 2 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/plugins/directionality/plugin.min.js 0 → 100644
... ... @@ -0,0 +1 @@
  1 +tinymce.PluginManager.add("directionality",function(t){function e(e){var i,n=t.dom,r=t.selection.getSelectedBlocks();r.length&&(i=n.getAttrib(r[0],"dir"),tinymce.each(r,function(t){n.getParent(t.parentNode,"*[dir='"+e+"']",n.getRoot())||(i!=e?n.setAttrib(t,"dir",e):n.setAttrib(t,"dir",null))}),t.nodeChanged())}function i(t){var e=[];return tinymce.each("h1 h2 h3 h4 h5 h6 div p".split(" "),function(i){e.push(i+"[dir="+t+"]")}),e.join(",")}t.addCommand("mceDirectionLTR",function(){e("ltr")}),t.addCommand("mceDirectionRTL",function(){e("rtl")}),t.addButton("ltr",{title:"Left to right",cmd:"mceDirectionLTR",stateSelector:i("ltr")}),t.addButton("rtl",{title:"Right to left",cmd:"mceDirectionRTL",stateSelector:i("rtl")})});
0 2 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/plugins/emoticons/img/smiley-cool.gif 0 → 100644

354 Bytes

public/javascripts/tinymce/js/tinymce/plugins/emoticons/img/smiley-cry.gif 0 → 100644

329 Bytes

public/javascripts/tinymce/js/tinymce/plugins/emoticons/img/smiley-embarassed.gif 0 → 100644

331 Bytes

public/javascripts/tinymce/js/tinymce/plugins/emoticons/img/smiley-foot-in-mouth.gif 0 → 100644

342 Bytes

public/javascripts/tinymce/js/tinymce/plugins/emoticons/img/smiley-frown.gif 0 → 100644

340 Bytes

public/javascripts/tinymce/js/tinymce/plugins/emoticons/img/smiley-innocent.gif 0 → 100644

336 Bytes

public/javascripts/tinymce/js/tinymce/plugins/emoticons/img/smiley-kiss.gif 0 → 100644

338 Bytes

public/javascripts/tinymce/js/tinymce/plugins/emoticons/img/smiley-laughing.gif 0 → 100644

343 Bytes

public/javascripts/tinymce/js/tinymce/plugins/emoticons/img/smiley-money-mouth.gif 0 → 100644

321 Bytes

public/javascripts/tinymce/js/tinymce/plugins/emoticons/img/smiley-sealed.gif 0 → 100644

323 Bytes

public/javascripts/tinymce/js/tinymce/plugins/emoticons/img/smiley-smile.gif 0 → 100644

344 Bytes

public/javascripts/tinymce/js/tinymce/plugins/emoticons/img/smiley-surprised.gif 0 → 100644

338 Bytes

public/javascripts/tinymce/js/tinymce/plugins/emoticons/img/smiley-tongue-out.gif 0 → 100644

328 Bytes

public/javascripts/tinymce/js/tinymce/plugins/emoticons/img/smiley-undecided.gif 0 → 100644

337 Bytes

public/javascripts/tinymce/js/tinymce/plugins/emoticons/img/smiley-wink.gif 0 → 100644

350 Bytes

public/javascripts/tinymce/js/tinymce/plugins/emoticons/img/smiley-yell.gif 0 → 100644

336 Bytes

public/javascripts/tinymce/js/tinymce/plugins/emoticons/plugin.min.js 0 → 100644
... ... @@ -0,0 +1 @@
  1 +tinymce.PluginManager.add("emoticons",function(t,e){function a(){var t;return t='<table role="list" class="mce-grid">',tinymce.each(i,function(a){t+="<tr>",tinymce.each(a,function(a){var i=e+"/img/smiley-"+a+".gif";t+='<td><a href="#" data-mce-url="'+i+'" data-mce-alt="'+a+'" tabindex="-1" role="option" aria-label="'+a+'"><img src="'+i+'" style="width: 18px; height: 18px" role="presentation" /></a></td>'}),t+="</tr>"}),t+="</table>"}var i=[["cool","cry","embarassed","foot-in-mouth"],["frown","innocent","kiss","laughing"],["money-mouth","sealed","smile","surprised"],["tongue-out","undecided","wink","yell"]];t.addButton("emoticons",{type:"panelbutton",panel:{role:"application",autohide:!0,html:a,onclick:function(e){var a=t.dom.getParent(e.target,"a");a&&(t.insertContent('<img src="'+a.getAttribute("data-mce-url")+'" alt="'+a.getAttribute("data-mce-alt")+'" />'),this.hide())}},tooltip:"Emoticons"})});
0 2 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/plugins/etherpadlite/LICENSE 0 → 100644
... ... @@ -0,0 +1,661 @@
  1 +GNU AFFERO GENERAL PUBLIC LICENSE
  2 + Version 3, 19 November 2007
  3 +
  4 + Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
  5 + Everyone is permitted to copy and distribute verbatim copies
  6 + of this license document, but changing it is not allowed.
  7 +
  8 + Preamble
  9 +
  10 + The GNU Affero General Public License is a free, copyleft license for
  11 +software and other kinds of works, specifically designed to ensure
  12 +cooperation with the community in the case of network server software.
  13 +
  14 + The licenses for most software and other practical works are designed
  15 +to take away your freedom to share and change the works. By contrast,
  16 +our General Public Licenses are intended to guarantee your freedom to
  17 +share and change all versions of a program--to make sure it remains free
  18 +software for all its users.
  19 +
  20 + When we speak of free software, we are referring to freedom, not
  21 +price. Our General Public Licenses are designed to make sure that you
  22 +have the freedom to distribute copies of free software (and charge for
  23 +them if you wish), that you receive source code or can get it if you
  24 +want it, that you can change the software or use pieces of it in new
  25 +free programs, and that you know you can do these things.
  26 +
  27 + Developers that use our General Public Licenses protect your rights
  28 +with two steps: (1) assert copyright on the software, and (2) offer
  29 +you this License which gives you legal permission to copy, distribute
  30 +and/or modify the software.
  31 +
  32 + A secondary benefit of defending all users' freedom is that
  33 +improvements made in alternate versions of the program, if they
  34 +receive widespread use, become available for other developers to
  35 +incorporate. Many developers of free software are heartened and
  36 +encouraged by the resulting cooperation. However, in the case of
  37 +software used on network servers, this result may fail to come about.
  38 +The GNU General Public License permits making a modified version and
  39 +letting the public access it on a server without ever releasing its
  40 +source code to the public.
  41 +
  42 + The GNU Affero General Public License is designed specifically to
  43 +ensure that, in such cases, the modified source code becomes available
  44 +to the community. It requires the operator of a network server to
  45 +provide the source code of the modified version running there to the
  46 +users of that server. Therefore, public use of a modified version, on
  47 +a publicly accessible server, gives the public access to the source
  48 +code of the modified version.
  49 +
  50 + An older license, called the Affero General Public License and
  51 +published by Affero, was designed to accomplish similar goals. This is
  52 +a different license, not a version of the Affero GPL, but Affero has
  53 +released a new version of the Affero GPL which permits relicensing under
  54 +this license.
  55 +
  56 + The precise terms and conditions for copying, distribution and
  57 +modification follow.
  58 +
  59 + TERMS AND CONDITIONS
  60 +
  61 + 0. Definitions.
  62 +
  63 + "This License" refers to version 3 of the GNU Affero General Public License.
  64 +
  65 + "Copyright" also means copyright-like laws that apply to other kinds of
  66 +works, such as semiconductor masks.
  67 +
  68 + "The Program" refers to any copyrightable work licensed under this
  69 +License. Each licensee is addressed as "you". "Licensees" and
  70 +"recipients" may be individuals or organizations.
  71 +
  72 + To "modify" a work means to copy from or adapt all or part of the work
  73 +in a fashion requiring copyright permission, other than the making of an
  74 +exact copy. The resulting work is called a "modified version" of the
  75 +earlier work or a work "based on" the earlier work.
  76 +
  77 + A "covered work" means either the unmodified Program or a work based
  78 +on the Program.
  79 +
  80 + To "propagate" a work means to do anything with it that, without
  81 +permission, would make you directly or secondarily liable for
  82 +infringement under applicable copyright law, except executing it on a
  83 +computer or modifying a private copy. Propagation includes copying,
  84 +distribution (with or without modification), making available to the
  85 +public, and in some countries other activities as well.
  86 +
  87 + To "convey" a work means any kind of propagation that enables other
  88 +parties to make or receive copies. Mere interaction with a user through
  89 +a computer network, with no transfer of a copy, is not conveying.
  90 +
  91 + An interactive user interface displays "Appropriate Legal Notices"
  92 +to the extent that it includes a convenient and prominently visible
  93 +feature that (1) displays an appropriate copyright notice, and (2)
  94 +tells the user that there is no warranty for the work (except to the
  95 +extent that warranties are provided), that licensees may convey the
  96 +work under this License, and how to view a copy of this License. If
  97 +the interface presents a list of user commands or options, such as a
  98 +menu, a prominent item in the list meets this criterion.
  99 +
  100 + 1. Source Code.
  101 +
  102 + The "source code" for a work means the preferred form of the work
  103 +for making modifications to it. "Object code" means any non-source
  104 +form of a work.
  105 +
  106 + A "Standard Interface" means an interface that either is an official
  107 +standard defined by a recognized standards body, or, in the case of
  108 +interfaces specified for a particular programming language, one that
  109 +is widely used among developers working in that language.
  110 +
  111 + The "System Libraries" of an executable work include anything, other
  112 +than the work as a whole, that (a) is included in the normal form of
  113 +packaging a Major Component, but which is not part of that Major
  114 +Component, and (b) serves only to enable use of the work with that
  115 +Major Component, or to implement a Standard Interface for which an
  116 +implementation is available to the public in source code form. A
  117 +"Major Component", in this context, means a major essential component
  118 +(kernel, window system, and so on) of the specific operating system
  119 +(if any) on which the executable work runs, or a compiler used to
  120 +produce the work, or an object code interpreter used to run it.
  121 +
  122 + The "Corresponding Source" for a work in object code form means all
  123 +the source code needed to generate, install, and (for an executable
  124 +work) run the object code and to modify the work, including scripts to
  125 +control those activities. However, it does not include the work's
  126 +System Libraries, or general-purpose tools or generally available free
  127 +programs which are used unmodified in performing those activities but
  128 +which are not part of the work. For example, Corresponding Source
  129 +includes interface definition files associated with source files for
  130 +the work, and the source code for shared libraries and dynamically
  131 +linked subprograms that the work is specifically designed to require,
  132 +such as by intimate data communication or control flow between those
  133 +subprograms and other parts of the work.
  134 +
  135 + The Corresponding Source need not include anything that users
  136 +can regenerate automatically from other parts of the Corresponding
  137 +Source.
  138 +
  139 + The Corresponding Source for a work in source code form is that
  140 +same work.
  141 +
  142 + 2. Basic Permissions.
  143 +
  144 + All rights granted under this License are granted for the term of
  145 +copyright on the Program, and are irrevocable provided the stated
  146 +conditions are met. This License explicitly affirms your unlimited
  147 +permission to run the unmodified Program. The output from running a
  148 +covered work is covered by this License only if the output, given its
  149 +content, constitutes a covered work. This License acknowledges your
  150 +rights of fair use or other equivalent, as provided by copyright law.
  151 +
  152 + You may make, run and propagate covered works that you do not
  153 +convey, without conditions so long as your license otherwise remains
  154 +in force. You may convey covered works to others for the sole purpose
  155 +of having them make modifications exclusively for you, or provide you
  156 +with facilities for running those works, provided that you comply with
  157 +the terms of this License in conveying all material for which you do
  158 +not control copyright. Those thus making or running the covered works
  159 +for you must do so exclusively on your behalf, under your direction
  160 +and control, on terms that prohibit them from making any copies of
  161 +your copyrighted material outside their relationship with you.
  162 +
  163 + Conveying under any other circumstances is permitted solely under
  164 +the conditions stated below. Sublicensing is not allowed; section 10
  165 +makes it unnecessary.
  166 +
  167 + 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
  168 +
  169 + No covered work shall be deemed part of an effective technological
  170 +measure under any applicable law fulfilling obligations under article
  171 +11 of the WIPO copyright treaty adopted on 20 December 1996, or
  172 +similar laws prohibiting or restricting circumvention of such
  173 +measures.
  174 +
  175 + When you convey a covered work, you waive any legal power to forbid
  176 +circumvention of technological measures to the extent such circumvention
  177 +is effected by exercising rights under this License with respect to
  178 +the covered work, and you disclaim any intention to limit operation or
  179 +modification of the work as a means of enforcing, against the work's
  180 +users, your or third parties' legal rights to forbid circumvention of
  181 +technological measures.
  182 +
  183 + 4. Conveying Verbatim Copies.
  184 +
  185 + You may convey verbatim copies of the Program's source code as you
  186 +receive it, in any medium, provided that you conspicuously and
  187 +appropriately publish on each copy an appropriate copyright notice;
  188 +keep intact all notices stating that this License and any
  189 +non-permissive terms added in accord with section 7 apply to the code;
  190 +keep intact all notices of the absence of any warranty; and give all
  191 +recipients a copy of this License along with the Program.
  192 +
  193 + You may charge any price or no price for each copy that you convey,
  194 +and you may offer support or warranty protection for a fee.
  195 +
  196 + 5. Conveying Modified Source Versions.
  197 +
  198 + You may convey a work based on the Program, or the modifications to
  199 +produce it from the Program, in the form of source code under the
  200 +terms of section 4, provided that you also meet all of these conditions:
  201 +
  202 + a) The work must carry prominent notices stating that you modified
  203 + it, and giving a relevant date.
  204 +
  205 + b) The work must carry prominent notices stating that it is
  206 + released under this License and any conditions added under section
  207 + 7. This requirement modifies the requirement in section 4 to
  208 + "keep intact all notices".
  209 +
  210 + c) You must license the entire work, as a whole, under this
  211 + License to anyone who comes into possession of a copy. This
  212 + License will therefore apply, along with any applicable section 7
  213 + additional terms, to the whole of the work, and all its parts,
  214 + regardless of how they are packaged. This License gives no
  215 + permission to license the work in any other way, but it does not
  216 + invalidate such permission if you have separately received it.
  217 +
  218 + d) If the work has interactive user interfaces, each must display
  219 + Appropriate Legal Notices; however, if the Program has interactive
  220 + interfaces that do not display Appropriate Legal Notices, your
  221 + work need not make them do so.
  222 +
  223 + A compilation of a covered work with other separate and independent
  224 +works, which are not by their nature extensions of the covered work,
  225 +and which are not combined with it such as to form a larger program,
  226 +in or on a volume of a storage or distribution medium, is called an
  227 +"aggregate" if the compilation and its resulting copyright are not
  228 +used to limit the access or legal rights of the compilation's users
  229 +beyond what the individual works permit. Inclusion of a covered work
  230 +in an aggregate does not cause this License to apply to the other
  231 +parts of the aggregate.
  232 +
  233 + 6. Conveying Non-Source Forms.
  234 +
  235 + You may convey a covered work in object code form under the terms
  236 +of sections 4 and 5, provided that you also convey the
  237 +machine-readable Corresponding Source under the terms of this License,
  238 +in one of these ways:
  239 +
  240 + a) Convey the object code in, or embodied in, a physical product
  241 + (including a physical distribution medium), accompanied by the
  242 + Corresponding Source fixed on a durable physical medium
  243 + customarily used for software interchange.
  244 +
  245 + b) Convey the object code in, or embodied in, a physical product
  246 + (including a physical distribution medium), accompanied by a
  247 + written offer, valid for at least three years and valid for as
  248 + long as you offer spare parts or customer support for that product
  249 + model, to give anyone who possesses the object code either (1) a
  250 + copy of the Corresponding Source for all the software in the
  251 + product that is covered by this License, on a durable physical
  252 + medium customarily used for software interchange, for a price no
  253 + more than your reasonable cost of physically performing this
  254 + conveying of source, or (2) access to copy the
  255 + Corresponding Source from a network server at no charge.
  256 +
  257 + c) Convey individual copies of the object code with a copy of the
  258 + written offer to provide the Corresponding Source. This
  259 + alternative is allowed only occasionally and noncommercially, and
  260 + only if you received the object code with such an offer, in accord
  261 + with subsection 6b.
  262 +
  263 + d) Convey the object code by offering access from a designated
  264 + place (gratis or for a charge), and offer equivalent access to the
  265 + Corresponding Source in the same way through the same place at no
  266 + further charge. You need not require recipients to copy the
  267 + Corresponding Source along with the object code. If the place to
  268 + copy the object code is a network server, the Corresponding Source
  269 + may be on a different server (operated by you or a third party)
  270 + that supports equivalent copying facilities, provided you maintain
  271 + clear directions next to the object code saying where to find the
  272 + Corresponding Source. Regardless of what server hosts the
  273 + Corresponding Source, you remain obligated to ensure that it is
  274 + available for as long as needed to satisfy these requirements.
  275 +
  276 + e) Convey the object code using peer-to-peer transmission, provided
  277 + you inform other peers where the object code and Corresponding
  278 + Source of the work are being offered to the general public at no
  279 + charge under subsection 6d.
  280 +
  281 + A separable portion of the object code, whose source code is excluded
  282 +from the Corresponding Source as a System Library, need not be
  283 +included in conveying the object code work.
  284 +
  285 + A "User Product" is either (1) a "consumer product", which means any
  286 +tangible personal property which is normally used for personal, family,
  287 +or household purposes, or (2) anything designed or sold for incorporation
  288 +into a dwelling. In determining whether a product is a consumer product,
  289 +doubtful cases shall be resolved in favor of coverage. For a particular
  290 +product received by a particular user, "normally used" refers to a
  291 +typical or common use of that class of product, regardless of the status
  292 +of the particular user or of the way in which the particular user
  293 +actually uses, or expects or is expected to use, the product. A product
  294 +is a consumer product regardless of whether the product has substantial
  295 +commercial, industrial or non-consumer uses, unless such uses represent
  296 +the only significant mode of use of the product.
  297 +
  298 + "Installation Information" for a User Product means any methods,
  299 +procedures, authorization keys, or other information required to install
  300 +and execute modified versions of a covered work in that User Product from
  301 +a modified version of its Corresponding Source. The information must
  302 +suffice to ensure that the continued functioning of the modified object
  303 +code is in no case prevented or interfered with solely because
  304 +modification has been made.
  305 +
  306 + If you convey an object code work under this section in, or with, or
  307 +specifically for use in, a User Product, and the conveying occurs as
  308 +part of a transaction in which the right of possession and use of the
  309 +User Product is transferred to the recipient in perpetuity or for a
  310 +fixed term (regardless of how the transaction is characterized), the
  311 +Corresponding Source conveyed under this section must be accompanied
  312 +by the Installation Information. But this requirement does not apply
  313 +if neither you nor any third party retains the ability to install
  314 +modified object code on the User Product (for example, the work has
  315 +been installed in ROM).
  316 +
  317 + The requirement to provide Installation Information does not include a
  318 +requirement to continue to provide support service, warranty, or updates
  319 +for a work that has been modified or installed by the recipient, or for
  320 +the User Product in which it has been modified or installed. Access to a
  321 +network may be denied when the modification itself materially and
  322 +adversely affects the operation of the network or violates the rules and
  323 +protocols for communication across the network.
  324 +
  325 + Corresponding Source conveyed, and Installation Information provided,
  326 +in accord with this section must be in a format that is publicly
  327 +documented (and with an implementation available to the public in
  328 +source code form), and must require no special password or key for
  329 +unpacking, reading or copying.
  330 +
  331 + 7. Additional Terms.
  332 +
  333 + "Additional permissions" are terms that supplement the terms of this
  334 +License by making exceptions from one or more of its conditions.
  335 +Additional permissions that are applicable to the entire Program shall
  336 +be treated as though they were included in this License, to the extent
  337 +that they are valid under applicable law. If additional permissions
  338 +apply only to part of the Program, that part may be used separately
  339 +under those permissions, but the entire Program remains governed by
  340 +this License without regard to the additional permissions.
  341 +
  342 + When you convey a copy of a covered work, you may at your option
  343 +remove any additional permissions from that copy, or from any part of
  344 +it. (Additional permissions may be written to require their own
  345 +removal in certain cases when you modify the work.) You may place
  346 +additional permissions on material, added by you to a covered work,
  347 +for which you have or can give appropriate copyright permission.
  348 +
  349 + Notwithstanding any other provision of this License, for material you
  350 +add to a covered work, you may (if authorized by the copyright holders of
  351 +that material) supplement the terms of this License with terms:
  352 +
  353 + a) Disclaiming warranty or limiting liability differently from the
  354 + terms of sections 15 and 16 of this License; or
  355 +
  356 + b) Requiring preservation of specified reasonable legal notices or
  357 + author attributions in that material or in the Appropriate Legal
  358 + Notices displayed by works containing it; or
  359 +
  360 + c) Prohibiting misrepresentation of the origin of that material, or
  361 + requiring that modified versions of such material be marked in
  362 + reasonable ways as different from the original version; or
  363 +
  364 + d) Limiting the use for publicity purposes of names of licensors or
  365 + authors of the material; or
  366 +
  367 + e) Declining to grant rights under trademark law for use of some
  368 + trade names, trademarks, or service marks; or
  369 +
  370 + f) Requiring indemnification of licensors and authors of that
  371 + material by anyone who conveys the material (or modified versions of
  372 + it) with contractual assumptions of liability to the recipient, for
  373 + any liability that these contractual assumptions directly impose on
  374 + those licensors and authors.
  375 +
  376 + All other non-permissive additional terms are considered "further
  377 +restrictions" within the meaning of section 10. If the Program as you
  378 +received it, or any part of it, contains a notice stating that it is
  379 +governed by this License along with a term that is a further
  380 +restriction, you may remove that term. If a license document contains
  381 +a further restriction but permits relicensing or conveying under this
  382 +License, you may add to a covered work material governed by the terms
  383 +of that license document, provided that the further restriction does
  384 +not survive such relicensing or conveying.
  385 +
  386 + If you add terms to a covered work in accord with this section, you
  387 +must place, in the relevant source files, a statement of the
  388 +additional terms that apply to those files, or a notice indicating
  389 +where to find the applicable terms.
  390 +
  391 + Additional terms, permissive or non-permissive, may be stated in the
  392 +form of a separately written license, or stated as exceptions;
  393 +the above requirements apply either way.
  394 +
  395 + 8. Termination.
  396 +
  397 + You may not propagate or modify a covered work except as expressly
  398 +provided under this License. Any attempt otherwise to propagate or
  399 +modify it is void, and will automatically terminate your rights under
  400 +this License (including any patent licenses granted under the third
  401 +paragraph of section 11).
  402 +
  403 + However, if you cease all violation of this License, then your
  404 +license from a particular copyright holder is reinstated (a)
  405 +provisionally, unless and until the copyright holder explicitly and
  406 +finally terminates your license, and (b) permanently, if the copyright
  407 +holder fails to notify you of the violation by some reasonable means
  408 +prior to 60 days after the cessation.
  409 +
  410 + Moreover, your license from a particular copyright holder is
  411 +reinstated permanently if the copyright holder notifies you of the
  412 +violation by some reasonable means, this is the first time you have
  413 +received notice of violation of this License (for any work) from that
  414 +copyright holder, and you cure the violation prior to 30 days after
  415 +your receipt of the notice.
  416 +
  417 + Termination of your rights under this section does not terminate the
  418 +licenses of parties who have received copies or rights from you under
  419 +this License. If your rights have been terminated and not permanently
  420 +reinstated, you do not qualify to receive new licenses for the same
  421 +material under section 10.
  422 +
  423 + 9. Acceptance Not Required for Having Copies.
  424 +
  425 + You are not required to accept this License in order to receive or
  426 +run a copy of the Program. Ancillary propagation of a covered work
  427 +occurring solely as a consequence of using peer-to-peer transmission
  428 +to receive a copy likewise does not require acceptance. However,
  429 +nothing other than this License grants you permission to propagate or
  430 +modify any covered work. These actions infringe copyright if you do
  431 +not accept this License. Therefore, by modifying or propagating a
  432 +covered work, you indicate your acceptance of this License to do so.
  433 +
  434 + 10. Automatic Licensing of Downstream Recipients.
  435 +
  436 + Each time you convey a covered work, the recipient automatically
  437 +receives a license from the original licensors, to run, modify and
  438 +propagate that work, subject to this License. You are not responsible
  439 +for enforcing compliance by third parties with this License.
  440 +
  441 + An "entity transaction" is a transaction transferring control of an
  442 +organization, or substantially all assets of one, or subdividing an
  443 +organization, or merging organizations. If propagation of a covered
  444 +work results from an entity transaction, each party to that
  445 +transaction who receives a copy of the work also receives whatever
  446 +licenses to the work the party's predecessor in interest had or could
  447 +give under the previous paragraph, plus a right to possession of the
  448 +Corresponding Source of the work from the predecessor in interest, if
  449 +the predecessor has it or can get it with reasonable efforts.
  450 +
  451 + You may not impose any further restrictions on the exercise of the
  452 +rights granted or affirmed under this License. For example, you may
  453 +not impose a license fee, royalty, or other charge for exercise of
  454 +rights granted under this License, and you may not initiate litigation
  455 +(including a cross-claim or counterclaim in a lawsuit) alleging that
  456 +any patent claim is infringed by making, using, selling, offering for
  457 +sale, or importing the Program or any portion of it.
  458 +
  459 + 11. Patents.
  460 +
  461 + A "contributor" is a copyright holder who authorizes use under this
  462 +License of the Program or a work on which the Program is based. The
  463 +work thus licensed is called the contributor's "contributor version".
  464 +
  465 + A contributor's "essential patent claims" are all patent claims
  466 +owned or controlled by the contributor, whether already acquired or
  467 +hereafter acquired, that would be infringed by some manner, permitted
  468 +by this License, of making, using, or selling its contributor version,
  469 +but do not include claims that would be infringed only as a
  470 +consequence of further modification of the contributor version. For
  471 +purposes of this definition, "control" includes the right to grant
  472 +patent sublicenses in a manner consistent with the requirements of
  473 +this License.
  474 +
  475 + Each contributor grants you a non-exclusive, worldwide, royalty-free
  476 +patent license under the contributor's essential patent claims, to
  477 +make, use, sell, offer for sale, import and otherwise run, modify and
  478 +propagate the contents of its contributor version.
  479 +
  480 + In the following three paragraphs, a "patent license" is any express
  481 +agreement or commitment, however denominated, not to enforce a patent
  482 +(such as an express permission to practice a patent or covenant not to
  483 +sue for patent infringement). To "grant" such a patent license to a
  484 +party means to make such an agreement or commitment not to enforce a
  485 +patent against the party.
  486 +
  487 + If you convey a covered work, knowingly relying on a patent license,
  488 +and the Corresponding Source of the work is not available for anyone
  489 +to copy, free of charge and under the terms of this License, through a
  490 +publicly available network server or other readily accessible means,
  491 +then you must either (1) cause the Corresponding Source to be so
  492 +available, or (2) arrange to deprive yourself of the benefit of the
  493 +patent license for this particular work, or (3) arrange, in a manner
  494 +consistent with the requirements of this License, to extend the patent
  495 +license to downstream recipients. "Knowingly relying" means you have
  496 +actual knowledge that, but for the patent license, your conveying the
  497 +covered work in a country, or your recipient's use of the covered work
  498 +in a country, would infringe one or more identifiable patents in that
  499 +country that you have reason to believe are valid.
  500 +
  501 + If, pursuant to or in connection with a single transaction or
  502 +arrangement, you convey, or propagate by procuring conveyance of, a
  503 +covered work, and grant a patent license to some of the parties
  504 +receiving the covered work authorizing them to use, propagate, modify
  505 +or convey a specific copy of the covered work, then the patent license
  506 +you grant is automatically extended to all recipients of the covered
  507 +work and works based on it.
  508 +
  509 + A patent license is "discriminatory" if it does not include within
  510 +the scope of its coverage, prohibits the exercise of, or is
  511 +conditioned on the non-exercise of one or more of the rights that are
  512 +specifically granted under this License. You may not convey a covered
  513 +work if you are a party to an arrangement with a third party that is
  514 +in the business of distributing software, under which you make payment
  515 +to the third party based on the extent of your activity of conveying
  516 +the work, and under which the third party grants, to any of the
  517 +parties who would receive the covered work from you, a discriminatory
  518 +patent license (a) in connection with copies of the covered work
  519 +conveyed by you (or copies made from those copies), or (b) primarily
  520 +for and in connection with specific products or compilations that
  521 +contain the covered work, unless you entered into that arrangement,
  522 +or that patent license was granted, prior to 28 March 2007.
  523 +
  524 + Nothing in this License shall be construed as excluding or limiting
  525 +any implied license or other defenses to infringement that may
  526 +otherwise be available to you under applicable patent law.
  527 +
  528 + 12. No Surrender of Others' Freedom.
  529 +
  530 + If conditions are imposed on you (whether by court order, agreement or
  531 +otherwise) that contradict the conditions of this License, they do not
  532 +excuse you from the conditions of this License. If you cannot convey a
  533 +covered work so as to satisfy simultaneously your obligations under this
  534 +License and any other pertinent obligations, then as a consequence you may
  535 +not convey it at all. For example, if you agree to terms that obligate you
  536 +to collect a royalty for further conveying from those to whom you convey
  537 +the Program, the only way you could satisfy both those terms and this
  538 +License would be to refrain entirely from conveying the Program.
  539 +
  540 + 13. Remote Network Interaction; Use with the GNU General Public License.
  541 +
  542 + Notwithstanding any other provision of this License, if you modify the
  543 +Program, your modified version must prominently offer all users
  544 +interacting with it remotely through a computer network (if your version
  545 +supports such interaction) an opportunity to receive the Corresponding
  546 +Source of your version by providing access to the Corresponding Source
  547 +from a network server at no charge, through some standard or customary
  548 +means of facilitating copying of software. This Corresponding Source
  549 +shall include the Corresponding Source for any work covered by version 3
  550 +of the GNU General Public License that is incorporated pursuant to the
  551 +following paragraph.
  552 +
  553 + Notwithstanding any other provision of this License, you have
  554 +permission to link or combine any covered work with a work licensed
  555 +under version 3 of the GNU General Public License into a single
  556 +combined work, and to convey the resulting work. The terms of this
  557 +License will continue to apply to the part which is the covered work,
  558 +but the work with which it is combined will remain governed by version
  559 +3 of the GNU General Public License.
  560 +
  561 + 14. Revised Versions of this License.
  562 +
  563 + The Free Software Foundation may publish revised and/or new versions of
  564 +the GNU Affero General Public License from time to time. Such new versions
  565 +will be similar in spirit to the present version, but may differ in detail to
  566 +address new problems or concerns.
  567 +
  568 + Each version is given a distinguishing version number. If the
  569 +Program specifies that a certain numbered version of the GNU Affero General
  570 +Public License "or any later version" applies to it, you have the
  571 +option of following the terms and conditions either of that numbered
  572 +version or of any later version published by the Free Software
  573 +Foundation. If the Program does not specify a version number of the
  574 +GNU Affero General Public License, you may choose any version ever published
  575 +by the Free Software Foundation.
  576 +
  577 + If the Program specifies that a proxy can decide which future
  578 +versions of the GNU Affero General Public License can be used, that proxy's
  579 +public statement of acceptance of a version permanently authorizes you
  580 +to choose that version for the Program.
  581 +
  582 + Later license versions may give you additional or different
  583 +permissions. However, no additional obligations are imposed on any
  584 +author or copyright holder as a result of your choosing to follow a
  585 +later version.
  586 +
  587 + 15. Disclaimer of Warranty.
  588 +
  589 + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
  590 +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
  591 +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
  592 +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
  593 +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  594 +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
  595 +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
  596 +ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  597 +
  598 + 16. Limitation of Liability.
  599 +
  600 + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
  601 +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
  602 +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
  603 +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
  604 +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
  605 +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
  606 +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
  607 +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
  608 +SUCH DAMAGES.
  609 +
  610 + 17. Interpretation of Sections 15 and 16.
  611 +
  612 + If the disclaimer of warranty and limitation of liability provided
  613 +above cannot be given local legal effect according to their terms,
  614 +reviewing courts shall apply local law that most closely approximates
  615 +an absolute waiver of all civil liability in connection with the
  616 +Program, unless a warranty or assumption of liability accompanies a
  617 +copy of the Program in return for a fee.
  618 +
  619 + END OF TERMS AND CONDITIONS
  620 +
  621 + How to Apply These Terms to Your New Programs
  622 +
  623 + If you develop a new program, and you want it to be of the greatest
  624 +possible use to the public, the best way to achieve this is to make it
  625 +free software which everyone can redistribute and change under these terms.
  626 +
  627 + To do so, attach the following notices to the program. It is safest
  628 +to attach them to the start of each source file to most effectively
  629 +state the exclusion of warranty; and each file should have at least
  630 +the "copyright" line and a pointer to where the full notice is found.
  631 +
  632 + <one line to give the program's name and a brief idea of what it does.>
  633 + Copyright (C) <year> <name of author>
  634 +
  635 + This program is free software: you can redistribute it and/or modify
  636 + it under the terms of the GNU Affero General Public License as published by
  637 + the Free Software Foundation, either version 3 of the License, or
  638 + (at your option) any later version.
  639 +
  640 + This program is distributed in the hope that it will be useful,
  641 + but WITHOUT ANY WARRANTY; without even the implied warranty of
  642 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  643 + GNU Affero General Public License for more details.
  644 +
  645 + You should have received a copy of the GNU Affero General Public License
  646 + along with this program. If not, see <http://www.gnu.org/licenses/>.
  647 +
  648 +Also add information on how to contact you by electronic and paper mail.
  649 +
  650 + If your software can interact with users remotely through a computer
  651 +network, you should also make sure that it provides a way for users to
  652 +get its source. For example, if your program is a web application, its
  653 +interface could display a "Source" link that leads users to an archive
  654 +of the code. There are many ways you could offer source, and different
  655 +solutions will be better for different programs; see section 13 for the
  656 +specific requirements.
  657 +
  658 + You should also get your employer (if you work as a programmer) or school,
  659 +if any, to sign a "copyright disclaimer" for the program, if necessary.
  660 +For more information on this, and how to apply and follow the GNU AGPL, see
  661 +<http://www.gnu.org/licenses/>.
... ...
public/javascripts/tinymce/js/tinymce/plugins/etherpadlite/README.md 0 → 100644
... ... @@ -0,0 +1,50 @@
  1 +TinyMCE Etherpad-lite Plug-in
  2 +=============================
  3 +
  4 +Button to insert a textpad of etherpad-lite into TinyMCE
  5 +
  6 +
  7 +
  8 +Installation
  9 +============
  10 +* Extract the zip to the TinyMCE plug-ins folder.
  11 +* Add etherpad-lite to the plug-ins configuration.
  12 +* Add etherpad-lite to the theme_advanced_buttons_n configuration.
  13 +* Add configuration parameters of the plugin (see the explanations below)
  14 +
  15 +Parameters
  16 +=============
  17 +
  18 +* plugin_etherpadlite_padServerUrl (Default: "")
  19 +The URL of the EtherPad Lite server. The plugin won't work without a defined server
  20 +
  21 +* plugin_etherpadlite_padNamesPrefix (Default: "")
  22 +The prefix that will be added automatically to the pad that will be created. It's important to think of a specific prefix (like for example the url of your website), so that the pads will be unique. The names of the created pads will be numbered like this: padNamesPrefix1, padNamesPrefix2, etc. Each time one user clicks at "insert pad", a new number will be generated, ordered.
  23 +
  24 +* plugin_etherpadlite_padWidth (Default: 100%)
  25 +The width of the pad that will be inserted
  26 +
  27 +* plugin_etherpadlite_padHeight (Default: 400px)
  28 +The height of the pad that will be inserted
  29 +
  30 +Simple usage example
  31 +================
  32 +
  33 +tinyMCE.init({
  34 + mode : "textareas",
  35 + theme : "advanced",
  36 + plugins : "etherpadlite",
  37 + theme_advanced_buttons2 : "bold,italic,underline,strikethrough,separator,bullist,numlist,separator,justifyleft,justifycenter,justifyright,justifyfull,separator,link,unlink,image,table,etherpadlite,separator,cleanup",
  38 + content_css : "css/content.css",
  39 +
  40 + // Parameters for etherpadlite Plugin:
  41 + plugin_etherpadlite_padServerUrl: "http://pad.textb.org/p/",
  42 + plugin_etherpadlite_padNamesPrefix : "mypads-",
  43 +});
  44 +
  45 +
  46 +NOTE
  47 +========
  48 +
  49 +Here is an example of an existing pad server:
  50 +http://pad.textb.org/p/
... ...
public/javascripts/tinymce/js/tinymce/plugins/etherpadlite/css/etherpadlite.css 0 → 100644
... ... @@ -0,0 +1,24 @@
  1 +.epinstr{
  2 + margin:3px 0;
  3 + padding:0;
  4 + background-color:#BBBBBB;
  5 + border:1px solid #BBBBBB;
  6 + border-radius: 3px 3px 3px 3px;
  7 + -webkit-border-radius: 3px;
  8 + -moz-border-radius: 3px;
  9 + text-align:center;
  10 + width:220px;
  11 + display:block;
  12 + position:relative;
  13 +}
  14 +.epinstr p{
  15 + margin:0;
  16 + padding:0;
  17 + font-size:10px;
  18 +}
  19 +.ep_logo_contener{margin:0;padding:0;float:right;}
  20 +table{margin:0;padding:0;width:100%;border-collapse: collapse;}
  21 +table tr td{vertical-align:top;}
  22 +.etherpadlite-table-child tr td{
  23 + width:100px;
  24 +}
... ...
public/javascripts/tinymce/js/tinymce/plugins/etherpadlite/img/etherpadlite.gif 0 → 100644

175 Bytes

public/javascripts/tinymce/js/tinymce/plugins/etherpadlite/langs/en.js 0 → 100644
... ... @@ -0,0 +1,4 @@
  1 +tinyMCE.addI18n('en.etherpadlite',{
  2 + desc : 'Insert a collaborative text pad',
  3 + error : 'The parameters of the Etherpad Lite Plugin are not correct. Please contact the administrator of this website.'
  4 +});
... ...
public/javascripts/tinymce/js/tinymce/plugins/etherpadlite/langs/en_dlg.js 0 → 100644
... ... @@ -0,0 +1,11 @@
  1 +tinyMCE.addI18n('en.etherpadlite_dlg',{
  2 + title : "Insert a collaborative text pad",
  3 + instr : "If you already know a pad, put its name. If not, leave the name blank.",
  4 + epID : "Pad name<br><i>(leave it blank if you're creating a new pad)</i>",
  5 + chat : "Enable chat?",
  6 + alwaysChat : "Always show chat?",
  7 + epW : "Width",
  8 + epH : "Height",
  9 + yes:"Yes",
  10 + no:"No"
  11 +});
... ...
public/javascripts/tinymce/js/tinymce/plugins/etherpadlite/langs/pt.js 0 → 100644
... ... @@ -0,0 +1,4 @@
  1 +tinyMCE.addI18n('pt.etherpadlite',{
  2 + desc : 'Inserir um editor de texto colaborativo',
  3 + error : 'Os parâmetros de configuração do Plugin de integração do Etherpad Lite não estão corretos e por isso eu não consegui implementá-lo. Por favor entre em contato com o administrador deste site.'
  4 +});
... ...
public/javascripts/tinymce/js/tinymce/plugins/etherpadlite/langs/pt_dlg.js 0 → 100644
... ... @@ -0,0 +1,11 @@
  1 +tinyMCE.addI18n('pt.etherpadlite_dlg',{
  2 + title : "Inserir um editor de texto colaborativo",
  3 + instr : "Se você já conhece um pad existente, coloque o seu nome. Se não, deixe o nome em branco.",
  4 + epID : "Nome do Pad<br><i>(deixe em branco se você não conhece um pad existente)</i>",
  5 + chat : "Ativar o bate-papo?",
  6 + alwaysChat : "O bate-papo deve estar sempre visível?",
  7 + epW : "Largura",
  8 + epH : "Altura",
  9 + yes:"Sim",
  10 + no:"Não"
  11 +});
... ...
public/javascripts/tinymce/js/tinymce/plugins/etherpadlite/plugin.js 0 → 100644
... ... @@ -0,0 +1,72 @@
  1 +/**
  2 + * Etherpad Lite plug-in for TinyMCE version 3.x
  3 + * @author Daniel Tygel
  4 + * @version $Rev: 1.0 $
  5 + * @package etherpadlite
  6 + * @link https://github.com/dtygel/tinymce-etherpadlite-embed
  7 + * EtherPad plugin for TinyMCE
  8 + * AFFERO LICENSE
  9 + */
  10 +
  11 +(function() {
  12 + var supportedLanguages = ['en', 'pt']
  13 + if (supportedLanguages.indexOf(tinymce.settings.language) >= 0)
  14 + tinymce.PluginManager.requireLangPack('etherpadlite');
  15 +
  16 + tinymce.create('tinymce.plugins.EtherPadLitePlugin', {
  17 + init : function(ed, url) {
  18 + var t = this;
  19 +
  20 + t.editor = ed;
  21 +
  22 + //If the person who activated the plugin didn't put a Pad Server URL, the plugin will be disabled
  23 + if (!ed.getParam("plugin_etherpadlite_padServerUrl") || ed.getParam("plugin_etherpadlite_padServerUrl")=="") {
  24 + return null;
  25 + }
  26 +
  27 + var padUrl = ed.getParam("plugin_etherpadlite_padServerUrl");
  28 + var padPrefix = (ed.getParam("plugin_etherpadlite_padNamesPrefix"))
  29 + ? ed.getParam("plugin_etherpadlite_padNamesPrefix")
  30 + : "";
  31 + var padWidth = (ed.getParam("plugin_etherpadlite_padWidth"))
  32 + ? ed.getParam("plugin_etherpadlite_padWidth")
  33 + : "100%";
  34 + var padHeight = (ed.getParam("plugin_etherpadlite_padHeight"))
  35 + ? ed.getParam("plugin_etherpadlite_padHeight")
  36 + : "400";
  37 +
  38 + ed.addCommand('mceEtherPadLite', function() {
  39 + var padName = padPrefix + '.' + randomPadName();
  40 + var iframe = "<iframe name='embed_readwrite' src='" + padUrl + padName + "?showControls=true&showChat=true&&alwaysShowChat=true&lang=pt&showLineNumbers=true&useMonospaceFont=false' width='" + padWidth + "' height='" + padHeight + "'></iframe>";
  41 + ed.execCommand('mceInsertContent', false, iframe);
  42 + });
  43 +
  44 + ed.addButton('etherpadlite', {title : 'etherpadlite.desc', cmd : 'mceEtherPadLite', image : url + '/img/etherpadlite.gif'});
  45 + },
  46 +
  47 + getInfo : function() {
  48 + return {
  49 + longname : 'Insert a collaborative text with Etherpad Lite',
  50 + author : 'Daniel Tygel',
  51 + authorurl : 'http://cirandas.net/dtygel',
  52 + infourl : 'https://github.com/dtygel/tinymce-etherpadlite-embed',
  53 + version : tinymce.majorVersion + "." + tinymce.minorVersion
  54 + };
  55 + }
  56 + });
  57 +
  58 + function randomPadName() {
  59 + var chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
  60 + var string_length = 10;
  61 + var randomstring = '';
  62 + for (var i = 0; i < string_length; i++) {
  63 + var rnum = Math.floor(Math.random() * chars.length);
  64 + randomstring += chars.substring(rnum, rnum + 1);
  65 + }
  66 + return randomstring;
  67 + }
  68 +
  69 +
  70 + // Register plugin
  71 + tinymce.PluginManager.add('etherpadlite', tinymce.plugins.EtherPadLitePlugin);
  72 +})();
... ...
public/javascripts/tinymce/js/tinymce/plugins/etherpadlite/plugin.min.js 0 → 100644
... ... @@ -0,0 +1,9 @@
  1 +/**
  2 + * Etherpad Lite plug-in for TinyMCE version 3.x
  3 + * @author Daniel Tygel
  4 + * @version $Rev: 1.0 $
  5 + * @package etherpadlite
  6 + * @link https://github.com/dtygel/tinymce-etherpadlite-embed
  7 + * EtherPad plugin for TinyMCE
  8 + * AFFERO LICENSE
  9 + */(function(){function t(){var e="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",t=10,n="";for(var r=0;r<t;r++){var i=Math.floor(Math.random()*e.length);n+=e.substring(i,i+1)}return n}var e=["en","pt"];e.indexOf(tinymce.settings.language)>=0&&tinymce.PluginManager.requireLangPack("etherpadlite"),tinymce.create("tinymce.plugins.EtherPadLitePlugin",{init:function(e,n){var r=this;r.editor=e;if(!e.getParam("plugin_etherpadlite_padServerUrl")||e.getParam("plugin_etherpadlite_padServerUrl")=="")return null;var i=e.getParam("plugin_etherpadlite_padServerUrl"),s=e.getParam("plugin_etherpadlite_padNamesPrefix")?e.getParam("plugin_etherpadlite_padNamesPrefix"):"",o=e.getParam("plugin_etherpadlite_padWidth")?e.getParam("plugin_etherpadlite_padWidth"):"100%",u=e.getParam("plugin_etherpadlite_padHeight")?e.getParam("plugin_etherpadlite_padHeight"):"400";e.addCommand("mceEtherPadLite",function(){var n=s+"."+t(),r="<iframe name='embed_readwrite' src='"+i+n+"?showControls=true&showChat=true&&alwaysShowChat=true&lang=pt&showLineNumbers=true&useMonospaceFont=false' width='"+o+"' height='"+u+"'></iframe>";e.execCommand("mceInsertContent",!1,r)}),e.addButton("etherpadlite",{title:"etherpadlite.desc",cmd:"mceEtherPadLite",image:n+"/img/etherpadlite.gif"})},getInfo:function(){return{longname:"Insert a collaborative text with Etherpad Lite",author:"Daniel Tygel",authorurl:"http://cirandas.net/dtygel",infourl:"https://github.com/dtygel/tinymce-etherpadlite-embed",version:tinymce.majorVersion+"."+tinymce.minorVersion}}}),tinymce.PluginManager.add("etherpadlite",tinymce.plugins.EtherPadLitePlugin)})();
0 10 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/plugins/example/dialog.html 0 → 100644
... ... @@ -0,0 +1,8 @@
  1 +<!DOCTYPE html>
  2 +<html>
  3 +<body>
  4 + <h3>Custom dialog</h3>
  5 + Input some text: <input id="content">
  6 + <button onclick="top.tinymce.activeEditor.windowManager.getWindows()[0].close();">Close window</button>
  7 +</body>
  8 +</html>
0 9 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/plugins/example/plugin.min.js 0 → 100644
... ... @@ -0,0 +1 @@
  1 +tinymce.PluginManager.add("example",function(t,e){t.addButton("example",{text:"My button",icon:!1,onclick:function(){t.windowManager.open({title:"Example plugin",body:[{type:"textbox",name:"title",label:"Title"}],onsubmit:function(e){t.insertContent("Title: "+e.data.title)}})}}),t.addMenuItem("example",{text:"Example plugin",context:"tools",onclick:function(){t.windowManager.open({title:"TinyMCE site",url:e+"/dialog.html",width:600,height:400,buttons:[{text:"Insert",onclick:function(){var e=t.windowManager.getWindows()[0];t.insertContent(e.getContentWindow().document.getElementById("content").value),e.close()}},{text:"Close",onclick:"close"}]})}})});
0 2 \ No newline at end of file
... ...
public/javascripts/tinymce/js/tinymce/plugins/example_dependency/plugin.min.js 0 → 100644
... ... @@ -0,0 +1 @@
  1 +tinymce.PluginManager.add("example_dependency",function(){},["example"]);
0 2 \ No newline at end of file
... ...