summaryrefslogtreecommitdiff
path: root/public/javascripts/tiny_mce/utils
diff options
context:
space:
mode:
authorerdgeist <erdgeist@erdgeist.org>2026-06-27 16:58:53 +0200
committererdgeist <erdgeist@erdgeist.org>2026-06-27 16:58:53 +0200
commit420506e58fdfc84f1a5bede0a01dedf0af3bb4f3 (patch)
tree57726b40e8aa9ccf80f874f39d3facefc0331420 /public/javascripts/tiny_mce/utils
parent241d5e91b2b6716e2861cc77d319c3d3568343a8 (diff)
Stage 7: Rails 7.2 → 8.1 on Ruby 3.2.11
- Bump Rails to 8.1.3 (Ruby unchanged at 3.2.11, new gemset rails8-upgrade) - config.load_defaults 8.1; merge app:update diffs for all environment files - Remove routing-filter 0.7.0; replace with native scope '(:locale)' in routes.rb and default_url_options in ApplicationController - Delete config/initializers/routing_filter_rails71_patch.rb - Replace vendored TinyMCE 3.x (~200 files) with tinymce-rails ~> 8.3; migrate admin_interface.js from jQuery .tinymce()/advanced theme to tinymce.init(); add config/tinymce.yml; note: TinyMCE 7+ is GPL - rails-i18n ~> 8.0 added explicitly (previously indirect dependency) - awesome_nested_set, acts-as-taggable-on pinned to git main/master (gemspec activerecord < 8.1 ceiling; no functional incompatibility; repin to version once upstream releases updated gemspecs) - globalize ~> 7.0, libxml-ruby ~> 5.0, nokogiri ~> 1.18, pg ~> 1.5 - sass-rails, coffee-rails, uglifier moved from :assets group to main (Sprockets 4 convention; :assets group no longer meaningful) - Node: head, draft, lock_owner marked belongs_to optional: true - Page: node, user, editor marked belongs_to optional: true - Static assets in public/images/ and public/javascripts/ referenced via plain HTML tags; Rails 8 load_defaults raises on pipeline helpers for undeclared assets - sessions_controller_test.rb: remove stale require and dead rescue_action - users_controller_test.rb: assert button[type=submit] not input[type=submit] (Rails 8 button_to renders <button> not <input>) - test_helper.rb: node.reload after children.create! (awesome_nested_set 3.9.0 does not refresh parent in memory after callback) - 129 runs, 339 assertions, 3 failures, 0 errors — identical baseline to 7.2
Diffstat (limited to 'public/javascripts/tiny_mce/utils')
-rw-r--r--public/javascripts/tiny_mce/utils/editable_selects.js69
-rw-r--r--public/javascripts/tiny_mce/utils/form_utils.js199
-rw-r--r--public/javascripts/tiny_mce/utils/mctabs.js76
-rw-r--r--public/javascripts/tiny_mce/utils/validate.js219
4 files changed, 0 insertions, 563 deletions
diff --git a/public/javascripts/tiny_mce/utils/editable_selects.js b/public/javascripts/tiny_mce/utils/editable_selects.js
deleted file mode 100644
index fff4963..0000000
--- a/public/javascripts/tiny_mce/utils/editable_selects.js
+++ /dev/null
@@ -1,69 +0,0 @@
1/**
2 * $Id: editable_selects.js 867 2008-06-09 20:33:40Z spocke $
3 *
4 * Makes select boxes editable.
5 *
6 * @author Moxiecode
7 * @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved.
8 */
9
10var TinyMCE_EditableSelects = {
11 editSelectElm : null,
12
13 init : function() {
14 var nl = document.getElementsByTagName("select"), i, d = document, o;
15
16 for (i=0; i<nl.length; i++) {
17 if (nl[i].className.indexOf('mceEditableSelect') != -1) {
18 o = new Option('(value)', '__mce_add_custom__');
19
20 o.className = 'mceAddSelectValue';
21
22 nl[i].options[nl[i].options.length] = o;
23 nl[i].onchange = TinyMCE_EditableSelects.onChangeEditableSelect;
24 }
25 }
26 },
27
28 onChangeEditableSelect : function(e) {
29 var d = document, ne, se = window.event ? window.event.srcElement : e.target;
30
31 if (se.options[se.selectedIndex].value == '__mce_add_custom__') {
32 ne = d.createElement("input");
33 ne.id = se.id + "_custom";
34 ne.name = se.name + "_custom";
35 ne.type = "text";
36
37 ne.style.width = se.offsetWidth + 'px';
38 se.parentNode.insertBefore(ne, se);
39 se.style.display = 'none';
40 ne.focus();
41 ne.onblur = TinyMCE_EditableSelects.onBlurEditableSelectInput;
42 ne.onkeydown = TinyMCE_EditableSelects.onKeyDown;
43 TinyMCE_EditableSelects.editSelectElm = se;
44 }
45 },
46
47 onBlurEditableSelectInput : function() {
48 var se = TinyMCE_EditableSelects.editSelectElm;
49
50 if (se) {
51 if (se.previousSibling.value != '') {
52 addSelectValue(document.forms[0], se.id, se.previousSibling.value, se.previousSibling.value);
53 selectByValue(document.forms[0], se.id, se.previousSibling.value);
54 } else
55 selectByValue(document.forms[0], se.id, '');
56
57 se.style.display = 'inline';
58 se.parentNode.removeChild(se.previousSibling);
59 TinyMCE_EditableSelects.editSelectElm = null;
60 }
61 },
62
63 onKeyDown : function(e) {
64 e = e || window.event;
65
66 if (e.keyCode == 13)
67 TinyMCE_EditableSelects.onBlurEditableSelectInput();
68 }
69};
diff --git a/public/javascripts/tiny_mce/utils/form_utils.js b/public/javascripts/tiny_mce/utils/form_utils.js
deleted file mode 100644
index 9bc2bad..0000000
--- a/public/javascripts/tiny_mce/utils/form_utils.js
+++ /dev/null
@@ -1,199 +0,0 @@
1/**
2 * $Id: form_utils.js 1184 2009-08-11 11:47:27Z spocke $
3 *
4 * Various form utilitiy functions.
5 *
6 * @author Moxiecode
7 * @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved.
8 */
9
10var themeBaseURL = tinyMCEPopup.editor.baseURI.toAbsolute('themes/' + tinyMCEPopup.getParam("theme"));
11
12function getColorPickerHTML(id, target_form_element) {
13 var h = "";
14
15 h += '<a id="' + id + '_link" href="javascript:;" onclick="tinyMCEPopup.pickColor(event,\'' + target_form_element +'\');" onmousedown="return false;" class="pickcolor">';
16 h += '<span id="' + id + '" title="' + tinyMCEPopup.getLang('browse') + '">&nbsp;</span></a>';
17
18 return h;
19}
20
21function updateColor(img_id, form_element_id) {
22 document.getElementById(img_id).style.backgroundColor = document.forms[0].elements[form_element_id].value;
23}
24
25function setBrowserDisabled(id, state) {
26 var img = document.getElementById(id);
27 var lnk = document.getElementById(id + "_link");
28
29 if (lnk) {
30 if (state) {
31 lnk.setAttribute("realhref", lnk.getAttribute("href"));
32 lnk.removeAttribute("href");
33 tinyMCEPopup.dom.addClass(img, 'disabled');
34 } else {
35 if (lnk.getAttribute("realhref"))
36 lnk.setAttribute("href", lnk.getAttribute("realhref"));
37
38 tinyMCEPopup.dom.removeClass(img, 'disabled');
39 }
40 }
41}
42
43function getBrowserHTML(id, target_form_element, type, prefix) {
44 var option = prefix + "_" + type + "_browser_callback", cb, html;
45
46 cb = tinyMCEPopup.getParam(option, tinyMCEPopup.getParam("file_browser_callback"));
47
48 if (!cb)
49 return "";
50
51 html = "";
52 html += '<a id="' + id + '_link" href="javascript:openBrowser(\'' + id + '\',\'' + target_form_element + '\', \'' + type + '\',\'' + option + '\');" onmousedown="return false;" class="browse">';
53 html += '<span id="' + id + '" title="' + tinyMCEPopup.getLang('browse') + '">&nbsp;</span></a>';
54
55 return html;
56}
57
58function openBrowser(img_id, target_form_element, type, option) {
59 var img = document.getElementById(img_id);
60
61 if (img.className != "mceButtonDisabled")
62 tinyMCEPopup.openBrowser(target_form_element, type, option);
63}
64
65function selectByValue(form_obj, field_name, value, add_custom, ignore_case) {
66 if (!form_obj || !form_obj.elements[field_name])
67 return;
68
69 var sel = form_obj.elements[field_name];
70
71 var found = false;
72 for (var i=0; i<sel.options.length; i++) {
73 var option = sel.options[i];
74
75 if (option.value == value || (ignore_case && option.value.toLowerCase() == value.toLowerCase())) {
76 option.selected = true;
77 found = true;
78 } else
79 option.selected = false;
80 }
81
82 if (!found && add_custom && value != '') {
83 var option = new Option(value, value);
84 option.selected = true;
85 sel.options[sel.options.length] = option;
86 sel.selectedIndex = sel.options.length - 1;
87 }
88
89 return found;
90}
91
92function getSelectValue(form_obj, field_name) {
93 var elm = form_obj.elements[field_name];
94
95 if (elm == null || elm.options == null || elm.selectedIndex === -1)
96 return "";
97
98 return elm.options[elm.selectedIndex].value;
99}
100
101function addSelectValue(form_obj, field_name, name, value) {
102 var s = form_obj.elements[field_name];
103 var o = new Option(name, value);
104 s.options[s.options.length] = o;
105}
106
107function addClassesToList(list_id, specific_option) {
108 // Setup class droplist
109 var styleSelectElm = document.getElementById(list_id);
110 var styles = tinyMCEPopup.getParam('theme_advanced_styles', false);
111 styles = tinyMCEPopup.getParam(specific_option, styles);
112
113 if (styles) {
114 var stylesAr = styles.split(';');
115
116 for (var i=0; i<stylesAr.length; i++) {
117 if (stylesAr != "") {
118 var key, value;
119
120 key = stylesAr[i].split('=')[0];
121 value = stylesAr[i].split('=')[1];
122
123 styleSelectElm.options[styleSelectElm.length] = new Option(key, value);
124 }
125 }
126 } else {
127 tinymce.each(tinyMCEPopup.editor.dom.getClasses(), function(o) {
128 styleSelectElm.options[styleSelectElm.length] = new Option(o.title || o['class'], o['class']);
129 });
130 }
131}
132
133function isVisible(element_id) {
134 var elm = document.getElementById(element_id);
135
136 return elm && elm.style.display != "none";
137}
138
139function convertRGBToHex(col) {
140 var re = new RegExp("rgb\\s*\\(\\s*([0-9]+).*,\\s*([0-9]+).*,\\s*([0-9]+).*\\)", "gi");
141
142 var rgb = col.replace(re, "$1,$2,$3").split(',');
143 if (rgb.length == 3) {
144 r = parseInt(rgb[0]).toString(16);
145 g = parseInt(rgb[1]).toString(16);
146 b = parseInt(rgb[2]).toString(16);
147
148 r = r.length == 1 ? '0' + r : r;
149 g = g.length == 1 ? '0' + g : g;
150 b = b.length == 1 ? '0' + b : b;
151
152 return "#" + r + g + b;
153 }
154
155 return col;
156}
157
158function convertHexToRGB(col) {
159 if (col.indexOf('#') != -1) {
160 col = col.replace(new RegExp('[^0-9A-F]', 'gi'), '');
161
162 r = parseInt(col.substring(0, 2), 16);
163 g = parseInt(col.substring(2, 4), 16);
164 b = parseInt(col.substring(4, 6), 16);
165
166 return "rgb(" + r + "," + g + "," + b + ")";
167 }
168
169 return col;
170}
171
172function trimSize(size) {
173 return size.replace(/([0-9\.]+)px|(%|in|cm|mm|em|ex|pt|pc)/, '$1$2');
174}
175
176function getCSSSize(size) {
177 size = trimSize(size);
178
179 if (size == "")
180 return "";
181
182 // Add px
183 if (/^[0-9]+$/.test(size))
184 size += 'px';
185
186 return size;
187}
188
189function getStyle(elm, attrib, style) {
190 var val = tinyMCEPopup.dom.getAttrib(elm, attrib);
191
192 if (val != '')
193 return '' + val;
194
195 if (typeof(style) == 'undefined')
196 style = attrib;
197
198 return tinyMCEPopup.dom.getStyle(elm, style);
199}
diff --git a/public/javascripts/tiny_mce/utils/mctabs.js b/public/javascripts/tiny_mce/utils/mctabs.js
deleted file mode 100644
index 284501e..0000000
--- a/public/javascripts/tiny_mce/utils/mctabs.js
+++ /dev/null
@@ -1,76 +0,0 @@
1/**
2 * $Id: mctabs.js 758 2008-03-30 13:53:29Z spocke $
3 *
4 * Moxiecode DHTML Tabs script.
5 *
6 * @author Moxiecode
7 * @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved.
8 */
9
10function MCTabs() {
11 this.settings = [];
12};
13
14MCTabs.prototype.init = function(settings) {
15 this.settings = settings;
16};
17
18MCTabs.prototype.getParam = function(name, default_value) {
19 var value = null;
20
21 value = (typeof(this.settings[name]) == "undefined") ? default_value : this.settings[name];
22
23 // Fix bool values
24 if (value == "true" || value == "false")
25 return (value == "true");
26
27 return value;
28};
29
30MCTabs.prototype.displayTab = function(tab_id, panel_id) {
31 var panelElm, panelContainerElm, tabElm, tabContainerElm, selectionClass, nodes, i;
32
33 panelElm= document.getElementById(panel_id);
34 panelContainerElm = panelElm ? panelElm.parentNode : null;
35 tabElm = document.getElementById(tab_id);
36 tabContainerElm = tabElm ? tabElm.parentNode : null;
37 selectionClass = this.getParam('selection_class', 'current');
38
39 if (tabElm && tabContainerElm) {
40 nodes = tabContainerElm.childNodes;
41
42 // Hide all other tabs
43 for (i = 0; i < nodes.length; i++) {
44 if (nodes[i].nodeName == "LI")
45 nodes[i].className = '';
46 }
47
48 // Show selected tab
49 tabElm.className = 'current';
50 }
51
52 if (panelElm && panelContainerElm) {
53 nodes = panelContainerElm.childNodes;
54
55 // Hide all other panels
56 for (i = 0; i < nodes.length; i++) {
57 if (nodes[i].nodeName == "DIV")
58 nodes[i].className = 'panel';
59 }
60
61 // Show selected panel
62 panelElm.className = 'current';
63 }
64};
65
66MCTabs.prototype.getAnchor = function() {
67 var pos, url = document.location.href;
68
69 if ((pos = url.lastIndexOf('#')) != -1)
70 return url.substring(pos + 1);
71
72 return "";
73};
74
75// Global instance
76var mcTabs = new MCTabs();
diff --git a/public/javascripts/tiny_mce/utils/validate.js b/public/javascripts/tiny_mce/utils/validate.js
deleted file mode 100644
index cde4c97..0000000
--- a/public/javascripts/tiny_mce/utils/validate.js
+++ /dev/null
@@ -1,219 +0,0 @@
1/**
2 * $Id: validate.js 758 2008-03-30 13:53:29Z spocke $
3 *
4 * Various form validation methods.
5 *
6 * @author Moxiecode
7 * @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved.
8 */
9
10/**
11 // String validation:
12
13 if (!Validator.isEmail('myemail'))
14 alert('Invalid email.');
15
16 // Form validation:
17
18 var f = document.forms['myform'];
19
20 if (!Validator.isEmail(f.myemail))
21 alert('Invalid email.');
22*/
23
24var Validator = {
25 isEmail : function(s) {
26 return this.test(s, '^[-!#$%&\'*+\\./0-9=?A-Z^_`a-z{|}~]+@[-!#$%&\'*+\\/0-9=?A-Z^_`a-z{|}~]+\.[-!#$%&\'*+\\./0-9=?A-Z^_`a-z{|}~]+$');
27 },
28
29 isAbsUrl : function(s) {
30 return this.test(s, '^(news|telnet|nttp|file|http|ftp|https)://[-A-Za-z0-9\\.]+\\/?.*$');
31 },
32
33 isSize : function(s) {
34 return this.test(s, '^[0-9]+(%|in|cm|mm|em|ex|pt|pc|px)?$');
35 },
36
37 isId : function(s) {
38 return this.test(s, '^[A-Za-z_]([A-Za-z0-9_])*$');
39 },
40
41 isEmpty : function(s) {
42 var nl, i;
43
44 if (s.nodeName == 'SELECT' && s.selectedIndex < 1)
45 return true;
46
47 if (s.type == 'checkbox' && !s.checked)
48 return true;
49
50 if (s.type == 'radio') {
51 for (i=0, nl = s.form.elements; i<nl.length; i++) {
52 if (nl[i].type == "radio" && nl[i].name == s.name && nl[i].checked)
53 return false;
54 }
55
56 return true;
57 }
58
59 return new RegExp('^\\s*$').test(s.nodeType == 1 ? s.value : s);
60 },
61
62 isNumber : function(s, d) {
63 return !isNaN(s.nodeType == 1 ? s.value : s) && (!d || !this.test(s, '^-?[0-9]*\\.[0-9]*$'));
64 },
65
66 test : function(s, p) {
67 s = s.nodeType == 1 ? s.value : s;
68
69 return s == '' || new RegExp(p).test(s);
70 }
71};
72
73var AutoValidator = {
74 settings : {
75 id_cls : 'id',
76 int_cls : 'int',
77 url_cls : 'url',
78 number_cls : 'number',
79 email_cls : 'email',
80 size_cls : 'size',
81 required_cls : 'required',
82 invalid_cls : 'invalid',
83 min_cls : 'min',
84 max_cls : 'max'
85 },
86
87 init : function(s) {
88 var n;
89
90 for (n in s)
91 this.settings[n] = s[n];
92 },
93
94 validate : function(f) {
95 var i, nl, s = this.settings, c = 0;
96
97 nl = this.tags(f, 'label');
98 for (i=0; i<nl.length; i++)
99 this.removeClass(nl[i], s.invalid_cls);
100
101 c += this.validateElms(f, 'input');
102 c += this.validateElms(f, 'select');
103 c += this.validateElms(f, 'textarea');
104
105 return c == 3;
106 },
107
108 invalidate : function(n) {
109 this.mark(n.form, n);
110 },
111
112 reset : function(e) {
113 var t = ['label', 'input', 'select', 'textarea'];
114 var i, j, nl, s = this.settings;
115
116 if (e == null)
117 return;
118
119 for (i=0; i<t.length; i++) {
120 nl = this.tags(e.form ? e.form : e, t[i]);
121 for (j=0; j<nl.length; j++)
122 this.removeClass(nl[j], s.invalid_cls);
123 }
124 },
125
126 validateElms : function(f, e) {
127 var nl, i, n, s = this.settings, st = true, va = Validator, v;
128
129 nl = this.tags(f, e);
130 for (i=0; i<nl.length; i++) {
131 n = nl[i];
132
133 this.removeClass(n, s.invalid_cls);
134
135 if (this.hasClass(n, s.required_cls) && va.isEmpty(n))
136 st = this.mark(f, n);
137
138 if (this.hasClass(n, s.number_cls) && !va.isNumber(n))
139 st = this.mark(f, n);
140
141 if (this.hasClass(n, s.int_cls) && !va.isNumber(n, true))
142 st = this.mark(f, n);
143
144 if (this.hasClass(n, s.url_cls) && !va.isAbsUrl(n))
145 st = this.mark(f, n);
146
147 if (this.hasClass(n, s.email_cls) && !va.isEmail(n))
148 st = this.mark(f, n);
149
150 if (this.hasClass(n, s.size_cls) && !va.isSize(n))
151 st = this.mark(f, n);
152
153 if (this.hasClass(n, s.id_cls) && !va.isId(n))
154 st = this.mark(f, n);
155
156 if (this.hasClass(n, s.min_cls, true)) {
157 v = this.getNum(n, s.min_cls);
158
159 if (isNaN(v) || parseInt(n.value) < parseInt(v))
160 st = this.mark(f, n);
161 }
162
163 if (this.hasClass(n, s.max_cls, true)) {
164 v = this.getNum(n, s.max_cls);
165
166 if (isNaN(v) || parseInt(n.value) > parseInt(v))
167 st = this.mark(f, n);
168 }
169 }
170
171 return st;
172 },
173
174 hasClass : function(n, c, d) {
175 return new RegExp('\\b' + c + (d ? '[0-9]+' : '') + '\\b', 'g').test(n.className);
176 },
177
178 getNum : function(n, c) {
179 c = n.className.match(new RegExp('\\b' + c + '([0-9]+)\\b', 'g'))[0];
180 c = c.replace(/[^0-9]/g, '');
181
182 return c;
183 },
184
185 addClass : function(n, c, b) {
186 var o = this.removeClass(n, c);
187 n.className = b ? c + (o != '' ? (' ' + o) : '') : (o != '' ? (o + ' ') : '') + c;
188 },
189
190 removeClass : function(n, c) {
191 c = n.className.replace(new RegExp("(^|\\s+)" + c + "(\\s+|$)"), ' ');
192 return n.className = c != ' ' ? c : '';
193 },
194
195 tags : function(f, s) {
196 return f.getElementsByTagName(s);
197 },
198
199 mark : function(f, n) {
200 var s = this.settings;
201
202 this.addClass(n, s.invalid_cls);
203 this.markLabels(f, n, s.invalid_cls);
204
205 return false;
206 },
207
208 markLabels : function(f, n, ic) {
209 var nl, i;
210
211 nl = this.tags(f, "label");
212 for (i=0; i<nl.length; i++) {
213 if (nl[i].getAttribute("for") == n.id || nl[i].htmlFor == n.id)
214 this.addClass(nl[i], ic);
215 }
216
217 return null;
218 }
219};