Merge pull request #2350 from TDT-AG/pr/20181204-luci-mod-system
[oweals/luci.git] / modules / luci-base / htdocs / luci-static / resources / cbi.js
1 /*
2         LuCI - Lua Configuration Interface
3
4         Copyright 2008 Steven Barth <steven@midlink.org>
5         Copyright 2008-2018 Jo-Philipp Wich <jo@mein.io>
6
7         Licensed under the Apache License, Version 2.0 (the "License");
8         you may not use this file except in compliance with the License.
9         You may obtain a copy of the License at
10
11         http://www.apache.org/licenses/LICENSE-2.0
12 */
13
14 var cbi_d = [];
15 var cbi_strings = { path: {}, label: {} };
16
17 function s8(bytes, off) {
18         var n = bytes[off];
19         return (n > 0x7F) ? (n - 256) >>> 0 : n;
20 }
21
22 function u16(bytes, off) {
23         return ((bytes[off + 1] << 8) + bytes[off]) >>> 0;
24 }
25
26 function sfh(s) {
27         if (s === null || s.length === 0)
28                 return null;
29
30         var bytes = [];
31
32         for (var i = 0; i < s.length; i++) {
33                 var ch = s.charCodeAt(i);
34
35                 if (ch <= 0x7F)
36                         bytes.push(ch);
37                 else if (ch <= 0x7FF)
38                         bytes.push(((ch >>>  6) & 0x1F) | 0xC0,
39                                    ( ch         & 0x3F) | 0x80);
40                 else if (ch <= 0xFFFF)
41                         bytes.push(((ch >>> 12) & 0x0F) | 0xE0,
42                                    ((ch >>>  6) & 0x3F) | 0x80,
43                                    ( ch         & 0x3F) | 0x80);
44                 else if (code <= 0x10FFFF)
45                         bytes.push(((ch >>> 18) & 0x07) | 0xF0,
46                                    ((ch >>> 12) & 0x3F) | 0x80,
47                                    ((ch >>   6) & 0x3F) | 0x80,
48                                    ( ch         & 0x3F) | 0x80);
49         }
50
51         if (!bytes.length)
52                 return null;
53
54         var hash = (bytes.length >>> 0),
55             len = (bytes.length >>> 2),
56             off = 0, tmp;
57
58         while (len--) {
59                 hash += u16(bytes, off);
60                 tmp   = ((u16(bytes, off + 2) << 11) ^ hash) >>> 0;
61                 hash  = ((hash << 16) ^ tmp) >>> 0;
62                 hash += hash >>> 11;
63                 off  += 4;
64         }
65
66         switch ((bytes.length & 3) >>> 0) {
67         case 3:
68                 hash += u16(bytes, off);
69                 hash  = (hash ^ (hash << 16)) >>> 0;
70                 hash  = (hash ^ (s8(bytes, off + 2) << 18)) >>> 0;
71                 hash += hash >>> 11;
72                 break;
73
74         case 2:
75                 hash += u16(bytes, off);
76                 hash  = (hash ^ (hash << 11)) >>> 0;
77                 hash += hash >>> 17;
78                 break;
79
80         case 1:
81                 hash += s8(bytes, off);
82                 hash  = (hash ^ (hash << 10)) >>> 0;
83                 hash += hash >>> 1;
84                 break;
85         }
86
87         hash  = (hash ^ (hash << 3)) >>> 0;
88         hash += hash >>> 5;
89         hash  = (hash ^ (hash << 4)) >>> 0;
90         hash += hash >>> 17;
91         hash  = (hash ^ (hash << 25)) >>> 0;
92         hash += hash >>> 6;
93
94         return (0x100000000 + hash).toString(16).substr(1);
95 }
96
97 function _(s) {
98         return (window.TR && TR[sfh(s)]) || s;
99 }
100
101 function Int(x) {
102         return (/^-?\d+$/.test(x) ? +x : NaN);
103 }
104
105 function Dec(x) {
106         return (/^-?\d+(?:\.\d+)?$/.test(x) ? +x : NaN);
107 }
108
109 function IPv4(x) {
110         if (!x.match(/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/))
111                 return null;
112
113         if (RegExp.$1 > 255 || RegExp.$2 > 255 || RegExp.$3 > 255 || RegExp.$4 > 255)
114                 return null;
115
116         return [ +RegExp.$1, +RegExp.$2, +RegExp.$3, +RegExp.$4 ];
117 }
118
119 function IPv6(x) {
120         if (x.match(/^([a-fA-F0-9:]+):(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})$/)) {
121                 var v6 = RegExp.$1, v4 = IPv4(RegExp.$2);
122
123                 if (!v4)
124                         return null;
125
126                 x = v6 + ':' + (v4[0] * 256 + v4[1]).toString(16)
127                        + ':' + (v4[2] * 256 + v4[3]).toString(16);
128         }
129
130         if (!x.match(/^[a-fA-F0-9:]+$/))
131                 return null;
132
133         var prefix_suffix = x.split(/::/);
134
135         if (prefix_suffix.length > 2)
136                 return null;
137
138         var prefix = (prefix_suffix[0] || '0').split(/:/);
139         var suffix = prefix_suffix.length > 1 ? (prefix_suffix[1] || '0').split(/:/) : [];
140
141         if (suffix.length ? (prefix.length + suffix.length > 7)
142                           : ((prefix_suffix.length < 2 && prefix.length < 8) || prefix.length > 8))
143                 return null;
144
145         var i, word;
146         var words = [];
147
148         for (i = 0, word = parseInt(prefix[0], 16); i < prefix.length; word = parseInt(prefix[++i], 16))
149                 if (prefix[i].length <= 4 && !isNaN(word) && word <= 0xFFFF)
150                         words.push(word);
151                 else
152                         return null;
153
154         for (i = 0; i < (8 - prefix.length - suffix.length); i++)
155                 words.push(0);
156
157         for (i = 0, word = parseInt(suffix[0], 16); i < suffix.length; word = parseInt(suffix[++i], 16))
158                 if (suffix[i].length <= 4 && !isNaN(word) && word <= 0xFFFF)
159                         words.push(word);
160                 else
161                         return null;
162
163         return words;
164 }
165
166 var CBIValidatorPrototype = {
167         apply: function(name, value, args) {
168                 var func;
169
170                 if (typeof(name) === 'function')
171                         func = name;
172                 else if (typeof(this.types[name]) === 'function')
173                         func = this.types[name];
174                 else
175                         return false;
176
177                 if (value !== undefined && value !== null)
178                         this.value = value;
179
180                 return func.apply(this, args);
181         },
182
183         assert: function(condition, message) {
184                 if (!condition) {
185                         this.field.classList.add('cbi-input-invalid');
186                         this.error = message;
187                         return false;
188                 }
189
190                 this.field.classList.remove('cbi-input-invalid');
191                 this.error = null;
192                 return true;
193         },
194
195         compile: function(code) {
196                 var pos = 0;
197                 var esc = false;
198                 var depth = 0;
199                 var stack = [ ];
200
201                 code += ',';
202
203                 for (var i = 0; i < code.length; i++) {
204                         if (esc) {
205                                 esc = false;
206                                 continue;
207                         }
208
209                         switch (code.charCodeAt(i))
210                         {
211                         case 92:
212                                 esc = true;
213                                 break;
214
215                         case 40:
216                         case 44:
217                                 if (depth <= 0) {
218                                         if (pos < i) {
219                                                 var label = code.substring(pos, i);
220                                                         label = label.replace(/\\(.)/g, '$1');
221                                                         label = label.replace(/^[ \t]+/g, '');
222                                                         label = label.replace(/[ \t]+$/g, '');
223
224                                                 if (label && !isNaN(label)) {
225                                                         stack.push(parseFloat(label));
226                                                 }
227                                                 else if (label.match(/^(['"]).*\1$/)) {
228                                                         stack.push(label.replace(/^(['"])(.*)\1$/, '$2'));
229                                                 }
230                                                 else if (typeof this.types[label] == 'function') {
231                                                         stack.push(this.types[label]);
232                                                         stack.push(null);
233                                                 }
234                                                 else {
235                                                         throw "Syntax error, unhandled token '"+label+"'";
236                                                 }
237                                         }
238
239                                         pos = i+1;
240                                 }
241
242                                 depth += (code.charCodeAt(i) == 40);
243                                 break;
244
245                         case 41:
246                                 if (--depth <= 0) {
247                                         if (typeof stack[stack.length-2] != 'function')
248                                                 throw "Syntax error, argument list follows non-function";
249
250                                         stack[stack.length-1] = this.compile(code.substring(pos, i));
251                                         pos = i+1;
252                                 }
253
254                                 break;
255                         }
256                 }
257
258                 return stack;
259         },
260
261         validate: function() {
262                 /* element is detached */
263                 if (!findParent(this.field, 'form'))
264                         return true;
265
266                 this.field.classList.remove('cbi-input-invalid');
267                 this.value = matchesElem(this.field, 'select') ? this.field.options[this.field.selectedIndex].value : this.field.value;
268                 this.error = null;
269
270                 var valid;
271
272                 if (this.value.length === 0)
273                         valid = this.assert(this.optional, _('non-empty value'));
274                 else
275                         valid = this.vstack[0].apply(this, this.vstack[1]);
276
277                 if (!valid) {
278                         this.field.setAttribute('data-tooltip', _('Expecting %s').format(this.error));
279                         this.field.setAttribute('data-tooltip-style', 'error');
280                         this.field.dispatchEvent(new CustomEvent('validation-failure', { bubbles: true }));
281                 }
282                 else {
283                         this.field.removeAttribute('data-tooltip');
284                         this.field.removeAttribute('data-tooltip-style');
285                         this.field.dispatchEvent(new CustomEvent('validation-success', { bubbles: true }));
286                 }
287
288                 return valid;
289         },
290
291         types: {
292                 integer: function() {
293                         return this.assert(Int(this.value) !== NaN, _('valid integer value'));
294                 },
295
296                 uinteger: function() {
297                         return this.assert(Int(this.value) >= 0, _('positive integer value'));
298                 },
299
300                 float: function() {
301                         return this.assert(Dec(this.value) !== NaN, _('valid decimal value'));
302                 },
303
304                 ufloat: function() {
305                         return this.assert(Dec(this.value) >= 0, _('positive decimal value'));
306                 },
307
308                 ipaddr: function(nomask) {
309                         return this.assert(this.apply('ip4addr', null, [nomask]) || this.apply('ip6addr', null, [nomask]),
310                                 nomask ? _('valid IP address') : _('valid IP address or prefix'));
311                 },
312
313                 ip4addr: function(nomask) {
314                         var re = nomask ? /^(\d+\.\d+\.\d+\.\d+)$/ : /^(\d+\.\d+\.\d+\.\d+)(?:\/(\d+\.\d+\.\d+\.\d+)|\/(\d{1,2}))?$/,
315                             m = this.value.match(re);
316
317                         return this.assert(m && IPv4(m[1]) && (m[2] ? IPv4(m[2]) : (m[3] ? this.apply('ip4prefix', m[3]) : true)),
318                                 nomask ? _('valid IPv4 address') : _('valid IPv4 address or network'));
319                 },
320
321                 ip6addr: function(nomask) {
322                         var re = nomask ? /^([0-9a-fA-F:.]+)$/ : /^([0-9a-fA-F:.]+)(?:\/(\d{1,3}))?$/,
323                             m = this.value.match(re);
324
325                         return this.assert(m && IPv6(m[1]) && (m[2] ? this.apply('ip6prefix', m[2]) : true),
326                                 nomask ? _('valid IPv6 address') : _('valid IPv6 address or prefix'));
327                 },
328
329                 ip4prefix: function() {
330                         return this.assert(!isNaN(this.value) && this.value >= 0 && this.value <= 32,
331                                 _('valid IPv4 prefix value (0-32)'));
332                 },
333
334                 ip6prefix: function() {
335                         return this.assert(!isNaN(this.value) && this.value >= 0 && this.value <= 128,
336                                 _('valid IPv6 prefix value (0-128)'));
337                 },
338
339                 cidr: function() {
340                         return this.assert(this.apply('cidr4') || this.apply('cidr6'), _('valid IPv4 or IPv6 CIDR'));
341                 },
342
343                 cidr4: function() {
344                         var m = this.value.match(/^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\/(\d{1,2})$/);
345                         return this.assert(m && IPv4(m[1]) && this.apply('ip4prefix', m[2]), _('valid IPv4 CIDR'));
346                 },
347
348                 cidr6: function() {
349                         var m = this.value.match(/^([0-9a-fA-F:.]+)\/(\d{1,3})$/);
350                         return this.assert(m && IPv6(m[1]) && this.apply('ip6prefix', m[2]), _('valid IPv6 CIDR'));
351                 },
352
353                 ipnet4: function() {
354                         var m = this.value.match(/^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\/(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})$/);
355                         return this.assert(m && IPv4(m[1]) && IPv4(m[2]), _('IPv4 network in address/netmask notation'));
356                 },
357
358                 ipnet6: function() {
359                         var m = this.value.match(/^([0-9a-fA-F:.]+)\/([0-9a-fA-F:.]+)$/);
360                         return this.assert(m && IPv6(m[1]) && IPv6(m[2]), _('IPv6 network in address/netmask notation'));
361                 },
362
363                 ip6hostid: function() {
364                         if (this.value == "eui64" || this.value == "random")
365                                 return true;
366
367                         var v6 = IPv6(this.value);
368                         return this.assert(!(!v6 || v6[0] || v6[1] || v6[2] || v6[3]), _('valid IPv6 host id'));
369                 },
370
371                 ipmask: function() {
372                         return this.assert(this.apply('ipmask4') || this.apply('ipmask6'),
373                                 _('valid network in address/netmask notation'));
374                 },
375
376                 ipmask4: function() {
377                         return this.assert(this.apply('cidr4') || this.apply('ipnet4') || this.apply('ip4addr'),
378                                 _('valid IPv4 network'));
379                 },
380
381                 ipmask6: function() {
382                         return this.assert(this.apply('cidr6') || this.apply('ipnet6') || this.apply('ip6addr'),
383                                 _('valid IPv6 network'));
384                 },
385
386                 port: function() {
387                         var p = Int(this.value);
388                         return this.assert(p >= 0 && p <= 65535, _('valid port value'));
389                 },
390
391                 portrange: function() {
392                         if (this.value.match(/^(\d+)-(\d+)$/)) {
393                                 var p1 = +RegExp.$1;
394                                 var p2 = +RegExp.$2;
395                                 return this.assert(p1 <= p2 && p2 <= 65535,
396                                         _('valid port or port range (port1-port2)'));
397                         }
398
399                         return this.assert(this.apply('port'), _('valid port or port range (port1-port2)'));
400                 },
401
402                 macaddr: function() {
403                         return this.assert(this.value.match(/^([a-fA-F0-9]{2}:){5}[a-fA-F0-9]{2}$/) != null,
404                                 _('valid MAC address'));
405                 },
406
407                 host: function(ipv4only) {
408                         return this.assert(this.apply('hostname') || this.apply(ipv4only == 1 ? 'ip4addr' : 'ipaddr'),
409                                 _('valid hostname or IP address'));
410                 },
411
412                 hostname: function(strict) {
413                         if (this.value.length <= 253)
414                                 return this.assert(
415                                         (this.value.match(/^[a-zA-Z0-9_]+$/) != null ||
416                                                 (this.value.match(/^[a-zA-Z0-9_][a-zA-Z0-9_\-.]*[a-zA-Z0-9]$/) &&
417                                                  this.value.match(/[^0-9.]/))) &&
418                                         (!strict || !this.value.match(/^_/)),
419                                         _('valid hostname'));
420
421                         return this.assert(false, _('valid hostname'));
422                 },
423
424                 network: function() {
425                         return this.assert(this.apply('uciname') || this.apply('host'),
426                                 _('valid UCI identifier, hostname or IP address'));
427                 },
428
429                 hostport: function(ipv4only) {
430                         var hp = this.value.split(/:/);
431                         return this.assert(hp.length == 2 && this.apply('host', hp[0], [ipv4only]) && this.apply('port', hp[1]),
432                                 _('valid host:port'));
433                 },
434
435                 ip4addrport: function() {
436                         var hp = this.value.split(/:/);
437                         return this.assert(hp.length == 2 && this.apply('ip4addr', hp[0], [true]) && this.apply('port', hp[1]),
438                                 _('valid IPv4 address:port'));
439                 },
440
441                 ipaddrport: function(bracket) {
442                         var m4 = this.value.match(/^([^\[\]:]+):(\d+)$/),
443                             m6 = this.value.match((bracket == 1) ? /^\[(.+)\]:(\d+)$/ : /^([^\[\]]+):(\d+)$/);
444
445                         if (m4)
446                                 return this.assert(this.apply('ip4addr', m4[0], [true]) && this.apply('port', m4[1]),
447                                         _('valid address:port'));
448
449                         return this.assert(m6 && this.apply('ip6addr', m6[0], [true]) && this.apply('port', m6[1]),
450                                 _('valid address:port'));
451                 },
452
453                 wpakey: function() {
454                         var v = this.value;
455
456                         if (v.length == 64)
457                                 return this.assert(v.match(/^[a-fA-F0-9]{64}$/), _('valid hexadecimal WPA key'));
458
459                         return this.assert((v.length >= 8) && (v.length <= 63), _('key between 8 and 63 characters'));
460                 },
461
462                 wepkey: function() {
463                         var v = this.value;
464
465                         if (v.substr(0, 2) === 's:')
466                                 v = v.substr(2);
467
468                         if ((v.length == 10) || (v.length == 26))
469                                 return this.assert(v.match(/^[a-fA-F0-9]{10,26}$/), _('valid hexadecimal WEP key'));
470
471                         return this.assert((v.length === 5) || (v.length === 13), _('key with either 5 or 13 characters'));
472                 },
473
474                 uciname: function() {
475                         return this.assert(this.value.match(/^[a-zA-Z0-9_]+$/), _('valid UCI identifier'));
476                 },
477
478                 range: function(min, max) {
479                         var val = Dec(this.value);
480                         return this.assert(val >= +min && val <= +max, _('value between %f and %f').format(min, max));
481                 },
482
483                 min: function(min) {
484                         return this.assert(Dec(this.value) >= +min, _('value greater or equal to %f').format(min));
485                 },
486
487                 max: function(max) {
488                         return this.assert(Dec(this.value) <= +max, _('value smaller or equal to %f').format(max));
489                 },
490
491                 rangelength: function(min, max) {
492                         var val = '' + this.value;
493                         return this.assert((val.length >= +min) && (val.length <= +max),
494                                 _('value between %d and %d characters').format(min, max));
495                 },
496
497                 minlength: function(min) {
498                         return this.assert((''+this.value).length >= +min,
499                                 _('value with at least %d characters').format(min));
500                 },
501
502                 maxlength: function(max) {
503                         return this.assert((''+this.value).length <= +max,
504                                 _('value with at most %d characters').format(max));
505                 },
506
507                 or: function() {
508                         var errors = [];
509
510                         for (var i = 0; i < arguments.length; i += 2) {
511                                 if (typeof arguments[i] != 'function') {
512                                         if (arguments[i] == this.value)
513                                                 return this.assert(true);
514                                         errors.push('"%s"'.format(arguments[i]));
515                                         i--;
516                                 }
517                                 else if (arguments[i].apply(this, arguments[i+1])) {
518                                         return this.assert(true);
519                                 }
520                                 else {
521                                         errors.push(this.error);
522                                 }
523                         }
524
525                         return this.assert(false, _('one of:\n - %s'.format(errors.join('\n - '))));
526                 },
527
528                 and: function() {
529                         for (var i = 0; i < arguments.length; i += 2) {
530                                 if (typeof arguments[i] != 'function') {
531                                         if (arguments[i] != this.value)
532                                                 return this.assert(false, '"%s"'.format(arguments[i]));
533                                         i--;
534                                 }
535                                 else if (!arguments[i].apply(this, arguments[i+1])) {
536                                         return this.assert(false, this.error);
537                                 }
538                         }
539
540                         return this.assert(true);
541                 },
542
543                 neg: function() {
544                         return this.apply('or', this.value.replace(/^[ \t]*![ \t]*/, ''), arguments);
545                 },
546
547                 list: function(subvalidator, subargs) {
548                         this.field.setAttribute('data-is-list', 'true');
549
550                         var tokens = this.value.match(/[^ \t]+/g);
551                         for (var i = 0; i < tokens.length; i++)
552                                 if (!this.apply(subvalidator, tokens[i], subargs))
553                                         return this.assert(false, this.error);
554
555                         return this.assert(true);
556                 },
557
558                 phonedigit: function() {
559                         return this.assert(this.value.match(/^[0-9\*#!\.]+$/),
560                                 _('valid phone digit (0-9, "*", "#", "!" or ".")'));
561                 },
562
563                 timehhmmss: function() {
564                         return this.assert(this.value.match(/^[0-6][0-9]:[0-6][0-9]:[0-6][0-9]$/),
565                                 _('valid time (HH:MM:SS)'));
566                 },
567
568                 dateyyyymmdd: function() {
569                         if (this.value.match(/^(\d\d\d\d)-(\d\d)-(\d\d)/)) {
570                                 var year  = +RegExp.$1,
571                                     month = +RegExp.$2,
572                                     day   = +RegExp.$3,
573                                     days_in_month = [ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ];
574
575                                 function is_leap_year(year) {
576                                         return ((!(year % 4) && (year % 100)) || !(year % 400));
577                                 }
578
579                                 function get_days_in_month(month, year) {
580                                         return (month === 2 && is_leap_year(year)) ? 29 : days_in_month[month - 1];
581                                 }
582
583                                 /* Firewall rules in the past don't make sense */
584                                 return this.assert(year >= 2015 && month && month <= 12 && day && day <= get_days_in_month(month, year),
585                                         _('valid date (YYYY-MM-DD)'));
586
587                         }
588
589                         return this.assert(false, _('valid date (YYYY-MM-DD)'));
590                 },
591
592                 unique: function(subvalidator, subargs) {
593                         var ctx = this,
594                                 option = findParent(ctx.field, '[data-type][data-name]'),
595                             section = findParent(option, '.cbi-section'),
596                             query = '[data-type="%s"][data-name="%s"]'.format(option.getAttribute('data-type'), option.getAttribute('data-name')),
597                             unique = true;
598
599                         section.querySelectorAll(query).forEach(function(sibling) {
600                                 if (sibling === option)
601                                         return;
602
603                                 var input = sibling.querySelector('[data-type]'),
604                                     values = input ? (input.getAttribute('data-is-list') ? input.value.match(/[^ \t]+/g) : [ input.value ]) : null;
605
606                                 if (values !== null && values.indexOf(ctx.value) !== -1)
607                                         unique = false;
608                         });
609
610                         if (!unique)
611                                 return this.assert(false, _('unique value'));
612
613                         if (typeof(subvalidator) === 'function')
614                                 return this.apply(subvalidator, undefined, subargs);
615
616                         return this.assert(true);
617                 },
618
619                 hexstring: function() {
620                         return this.assert(this.value.match(/^([a-f0-9][a-f0-9]|[A-F0-9][A-F0-9])+$/),
621                                 _('hexadecimal encoded value'));
622                 }
623         }
624 };
625
626 function CBIValidator(field, type, optional)
627 {
628         this.field = field;
629         this.optional = optional;
630         this.vstack = this.compile(type);
631 }
632
633 CBIValidator.prototype = CBIValidatorPrototype;
634
635
636 function cbi_d_add(field, dep, index) {
637         var obj = (typeof(field) === 'string') ? document.getElementById(field) : field;
638         if (obj) {
639                 var entry
640                 for (var i=0; i<cbi_d.length; i++) {
641                         if (cbi_d[i].id == obj.id) {
642                                 entry = cbi_d[i];
643                                 break;
644                         }
645                 }
646                 if (!entry) {
647                         entry = {
648                                 "node": obj,
649                                 "id": obj.id,
650                                 "parent": obj.parentNode.id,
651                                 "deps": [],
652                                 "index": index
653                         };
654                         cbi_d.unshift(entry);
655                 }
656                 entry.deps.push(dep)
657         }
658 }
659
660 function cbi_d_checkvalue(target, ref) {
661         var value = null,
662             query = 'input[id="'+target+'"], input[name="'+target+'"], ' +
663                     'select[id="'+target+'"], select[name="'+target+'"]';
664
665         document.querySelectorAll(query).forEach(function(i) {
666                 if (value === null && ((i.type !== 'radio' && i.type !== 'checkbox') || i.checked === true))
667                         value = i.value;
668         });
669
670         return (((value !== null) ? value : "") == ref);
671 }
672
673 function cbi_d_check(deps) {
674         var reverse;
675         var def = false;
676         for (var i=0; i<deps.length; i++) {
677                 var istat = true;
678                 reverse = false;
679                 for (var j in deps[i]) {
680                         if (j == "!reverse") {
681                                 reverse = true;
682                         } else if (j == "!default") {
683                                 def = true;
684                                 istat = false;
685                         } else {
686                                 istat = (istat && cbi_d_checkvalue(j, deps[i][j]))
687                         }
688                 }
689
690                 if (istat ^ reverse) {
691                         return true;
692                 }
693         }
694         return def;
695 }
696
697 function cbi_d_update() {
698         var state = false;
699         for (var i=0; i<cbi_d.length; i++) {
700                 var entry = cbi_d[i];
701                 var node  = document.getElementById(entry.id);
702                 var parent = document.getElementById(entry.parent);
703
704                 if (node && node.parentNode && !cbi_d_check(entry.deps)) {
705                         node.parentNode.removeChild(node);
706                         state = true;
707                 }
708                 else if (parent && (!node || !node.parentNode) && cbi_d_check(entry.deps)) {
709                         var next = undefined;
710
711                         for (next = parent.firstChild; next; next = next.nextSibling) {
712                                 if (next.getAttribute && parseInt(next.getAttribute('data-index'), 10) > entry.index)
713                                         break;
714                         }
715
716                         if (!next)
717                                 parent.appendChild(entry.node);
718                         else
719                                 parent.insertBefore(entry.node, next);
720
721                         state = true;
722                 }
723
724                 // hide optionals widget if no choices remaining
725                 if (parent && parent.parentNode && parent.getAttribute('data-optionals'))
726                         parent.parentNode.style.display = (parent.options.length <= 1) ? 'none' : '';
727         }
728
729         if (entry && entry.parent)
730                 cbi_tag_last(parent);
731
732         if (state)
733                 cbi_d_update();
734         else if (parent)
735                 parent.dispatchEvent(new CustomEvent('dependency-update', { bubbles: true }));
736 }
737
738 function cbi_init() {
739         var nodes;
740
741         nodes = document.querySelectorAll('[data-strings]');
742
743         for (var i = 0, node; (node = nodes[i]) !== undefined; i++) {
744                 var str = JSON.parse(node.getAttribute('data-strings'));
745                 for (var key in str) {
746                         for (var key2 in str[key]) {
747                                 var dst = cbi_strings[key] || (cbi_strings[key] = { });
748                                     dst[key2] = str[key][key2];
749                         }
750                 }
751         }
752
753         nodes = document.querySelectorAll('[data-depends]');
754
755         for (var i = 0, node; (node = nodes[i]) !== undefined; i++) {
756                 var index = parseInt(node.getAttribute('data-index'), 10);
757                 var depends = JSON.parse(node.getAttribute('data-depends'));
758                 if (!isNaN(index) && depends.length > 0) {
759                         for (var alt = 0; alt < depends.length; alt++)
760                                 cbi_d_add(node, depends[alt], index);
761                 }
762         }
763
764         nodes = document.querySelectorAll('[data-update]');
765
766         for (var i = 0, node; (node = nodes[i]) !== undefined; i++) {
767                 var events = node.getAttribute('data-update').split(' ');
768                 for (var j = 0, event; (event = events[j]) !== undefined; j++)
769                         node.addEventListener(event, cbi_d_update);
770         }
771
772         nodes = document.querySelectorAll('[data-choices]');
773
774         for (var i = 0, node; (node = nodes[i]) !== undefined; i++) {
775                 var choices = JSON.parse(node.getAttribute('data-choices'));
776                 var options = {};
777
778                 for (var j = 0; j < choices[0].length; j++)
779                         options[choices[0][j]] = choices[1][j];
780
781                 var def = (node.getAttribute('data-optional') === 'true')
782                         ? node.placeholder || '' : null;
783
784                 cbi_combobox_init(node, options, def,
785                                   node.getAttribute('data-manual'));
786         }
787
788         nodes = document.querySelectorAll('[data-dynlist]');
789
790         for (var i = 0, node; (node = nodes[i]) !== undefined; i++) {
791                 var choices = JSON.parse(node.getAttribute('data-dynlist'));
792                 var options = null;
793
794                 if (choices[0] && choices[0].length) {
795                         options = {};
796
797                         for (var j = 0; j < choices[0].length; j++)
798                                 options[choices[0][j]] = choices[1][j];
799                 }
800
801                 cbi_dynlist_init(node, choices[2], choices[3], options);
802         }
803
804         nodes = document.querySelectorAll('[data-type]');
805
806         for (var i = 0, node; (node = nodes[i]) !== undefined; i++) {
807                 cbi_validate_field(node, node.getAttribute('data-optional') === 'true',
808                                    node.getAttribute('data-type'));
809         }
810
811         document.querySelectorAll('.cbi-dropdown').forEach(function(s) {
812                 cbi_dropdown_init(s);
813         });
814
815         document.querySelectorAll('.cbi-tooltip:not(:empty)').forEach(function(s) {
816                 s.parentNode.classList.add('cbi-tooltip-container');
817         });
818
819         document.querySelectorAll('.cbi-section-remove > input[name^="cbi.rts"]').forEach(function(i) {
820                 var handler = function(ev) {
821                         var bits = this.name.split(/\./),
822                             section = document.getElementById('cbi-' + bits[2] + '-' + bits[3]);
823
824                     section.style.opacity = (ev.type === 'mouseover') ? 0.5 : '';
825                 };
826
827                 i.addEventListener('mouseover', handler);
828                 i.addEventListener('mouseout', handler);
829         });
830
831         cbi_d_update();
832 }
833
834 function cbi_combobox_init(id, values, def, man) {
835         var obj = (typeof(id) === 'string') ? document.getElementById(id) : id;
836         var sb = E('div', {
837                 'name': obj.name,
838                 'class': 'cbi-dropdown',
839                 'display-items': 5,
840                 'optional': obj.getAttribute('data-optional'),
841                 'placeholder': _('-- Please choose --'),
842                 'data-type': obj.getAttribute('data-type'),
843                 'data-optional': obj.getAttribute('data-optional')
844         }, [ E('ul') ]);
845
846         if (!(obj.value in values) && obj.value.length) {
847                 sb.lastElementChild.appendChild(E('li', {
848                         'data-value': obj.value,
849                         'selected': ''
850                 }, obj.value.length ? obj.value : (def || _('-- Please choose --'))));
851         }
852
853         for (var i in values) {
854                 sb.lastElementChild.appendChild(E('li', {
855                         'data-value': i,
856                         'selected': (i == obj.value) ? '' : null
857                 }, values[i]));
858         }
859
860         sb.lastElementChild.appendChild(E('li', { 'data-value': '-' }, [
861                 E('input', {
862                         'type': 'text',
863                         'class': 'create-item-input',
864                         'data-type': obj.getAttribute('data-type'),
865                         'data-optional': true,
866                         'placeholder': (man || _('-- custom --'))
867                 })
868         ]));
869
870         sb.value = obj.value;
871         obj.parentNode.replaceChild(sb, obj);
872 }
873
874 function cbi_filebrowser(id, defpath) {
875         var field   = document.getElementById(id);
876         var browser = window.open(
877                 cbi_strings.path.browser + ( field.value || defpath || '' ) + '?field=' + id,
878                 "luci_filebrowser", "width=300,height=400,left=100,top=200,scrollbars=yes"
879         );
880
881         browser.focus();
882 }
883
884 function cbi_browser_init(id, resource, defpath)
885 {
886         function cbi_browser_btnclick(e) {
887                 cbi_filebrowser(id, defpath);
888                 return false;
889         }
890
891         var field = document.getElementById(id);
892
893         var btn = document.createElement('img');
894         btn.className = 'cbi-image-button';
895         btn.src = (resource || cbi_strings.path.resource) + '/cbi/folder.gif';
896         field.parentNode.insertBefore(btn, field.nextSibling);
897
898         btn.addEventListener('click', cbi_browser_btnclick);
899 }
900
901 CBIDynamicList = {
902         addItem: function(dl, value, text, flash) {
903                 var exists = false,
904                     new_item = E('div', { 'class': flash ? 'item flash' : 'item', 'tabindex': 0 }, [
905                                 E('span', {}, text || value),
906                                 E('input', {
907                                         'type': 'hidden',
908                                         'name': dl.getAttribute('data-prefix'),
909                                         'value': value })]);
910
911                 dl.querySelectorAll('.item, .add-item').forEach(function(item) {
912                         if (exists)
913                                 return;
914
915                         var hidden = item.querySelector('input[type="hidden"]');
916
917                         if (hidden && hidden.value === value)
918                                 exists = true;
919                         else if (!hidden || hidden.value >= value)
920                                 exists = !!item.parentNode.insertBefore(new_item, item);
921                 });
922
923                 cbi_d_update();
924         },
925
926         removeItem: function(dl, item) {
927                 var sb = dl.querySelector('.cbi-dropdown');
928                 if (sb) {
929                         var value = item.querySelector('input[type="hidden"]').value;
930
931                         sb.querySelectorAll('ul > li').forEach(function(li) {
932                                 if (li.getAttribute('data-value') === value)
933                                         li.removeAttribute('unselectable');
934                         });
935                 }
936
937                 item.parentNode.removeChild(item);
938                 cbi_d_update();
939         },
940
941         handleClick: function(ev) {
942                 var dl = ev.currentTarget,
943                     item = findParent(ev.target, '.item');
944
945                 if (item) {
946                         this.removeItem(dl, item);
947                 }
948                 else if (matchesElem(ev.target, '.cbi-button-add')) {
949                         var input = ev.target.previousElementSibling;
950                         if (input.value.length && !input.classList.contains('cbi-input-invalid')) {
951                                 this.addItem(dl, input.value, null, true);
952                                 input.value = '';
953                         }
954                 }
955         },
956
957         handleDropdownChange: function(ev) {
958                 var dl = ev.currentTarget,
959                     sbIn = ev.detail.instance,
960                     sbEl = ev.detail.element,
961                     sbVal = ev.detail.value;
962
963                 if (sbVal === null)
964                         return;
965
966                 sbIn.setValues(sbEl, null);
967                 sbVal.element.setAttribute('unselectable', '');
968
969                 this.addItem(dl, sbVal.value, sbVal.text, true);
970         },
971
972         handleKeydown: function(ev) {
973                 var dl = ev.currentTarget,
974                     item = findParent(ev.target, '.item');
975
976                 if (item) {
977                         switch (ev.keyCode) {
978                         case 8: /* backspace */
979                                 if (item.previousElementSibling)
980                                         item.previousElementSibling.focus();
981
982                                 this.removeItem(dl, item);
983                                 break;
984
985                         case 46: /* delete */
986                                 if (item.nextElementSibling) {
987                                         if (item.nextElementSibling.classList.contains('item'))
988                                                 item.nextElementSibling.focus();
989                                         else
990                                                 item.nextElementSibling.firstElementChild.focus();
991                                 }
992
993                                 this.removeItem(dl, item);
994                                 break;
995                         }
996                 }
997                 else if (matchesElem(ev.target, '.cbi-input-text')) {
998                         switch (ev.keyCode) {
999                         case 13: /* enter */
1000                                 if (ev.target.value.length && !ev.target.classList.contains('cbi-input-invalid')) {
1001                                         this.addItem(dl, ev.target.value, null, true);
1002                                         ev.target.value = '';
1003                                         ev.target.blur();
1004                                         ev.target.focus();
1005                                 }
1006
1007                                 ev.preventDefault();
1008                                 break;
1009                         }
1010                 }
1011         }
1012 };
1013
1014 function cbi_dynlist_init(dl, datatype, optional, choices)
1015 {
1016         if (!(this instanceof cbi_dynlist_init))
1017                 return new cbi_dynlist_init(dl, datatype, optional, choices);
1018
1019         dl.classList.add('cbi-dynlist');
1020         dl.appendChild(E('div', { 'class': 'add-item' }, E('input', {
1021                 'type': 'text',
1022                 'name': 'cbi.dynlist.' + dl.getAttribute('data-prefix'),
1023                 'class': 'cbi-input-text',
1024                 'placeholder': dl.getAttribute('data-placeholder'),
1025                 'data-type': datatype,
1026                 'data-optional': true
1027         })));
1028
1029         if (choices)
1030                 cbi_combobox_init(dl.lastElementChild.lastElementChild, choices, '', _('-- custom --'));
1031         else
1032                 dl.lastElementChild.appendChild(E('div', { 'class': 'cbi-button cbi-button-add' }, '+'));
1033
1034         dl.addEventListener('click', this.handleClick.bind(this));
1035         dl.addEventListener('keydown', this.handleKeydown.bind(this));
1036         dl.addEventListener('cbi-dropdown-change', this.handleDropdownChange.bind(this));
1037
1038         try {
1039                 var values = JSON.parse(dl.getAttribute('data-values') || '[]');
1040
1041                 if (typeof(values) === 'object' && Array.isArray(values))
1042                         for (var i = 0; i < values.length; i++)
1043                                 this.addItem(dl, values[i], choices ? choices[values[i]] : null);
1044         }
1045         catch (e) {}
1046 }
1047
1048 cbi_dynlist_init.prototype = CBIDynamicList;
1049
1050
1051 function cbi_validate_form(form, errmsg)
1052 {
1053         /* if triggered by a section removal or addition, don't validate */
1054         if (form.cbi_state == 'add-section' || form.cbi_state == 'del-section')
1055                 return true;
1056
1057         if (form.cbi_validators) {
1058                 for (var i = 0; i < form.cbi_validators.length; i++) {
1059                         var validator = form.cbi_validators[i];
1060
1061                         if (!validator() && errmsg) {
1062                                 alert(errmsg);
1063                                 return false;
1064                         }
1065                 }
1066         }
1067
1068         return true;
1069 }
1070
1071 function cbi_validate_reset(form)
1072 {
1073         window.setTimeout(
1074                 function() { cbi_validate_form(form, null) }, 100
1075         );
1076
1077         return true;
1078 }
1079
1080 function cbi_validate_field(cbid, optional, type)
1081 {
1082         var field = isElem(cbid) ? cbid : document.getElementById(cbid);
1083         var validatorFn;
1084
1085         try {
1086                 var cbiValidator = new CBIValidator(field, type, optional);
1087                 validatorFn = cbiValidator.validate.bind(cbiValidator);
1088         }
1089         catch(e) {
1090                 validatorFn = null;
1091         };
1092
1093         if (validatorFn !== null) {
1094                 var form = findParent(field, 'form');
1095
1096                 if (!form.cbi_validators)
1097                         form.cbi_validators = [ ];
1098
1099                 form.cbi_validators.push(validatorFn);
1100
1101                 field.addEventListener("blur",  validatorFn);
1102                 field.addEventListener("keyup", validatorFn);
1103                 field.addEventListener("cbi-dropdown-change", validatorFn);
1104
1105                 if (matchesElem(field, 'select')) {
1106                         field.addEventListener("change", validatorFn);
1107                         field.addEventListener("click",  validatorFn);
1108                 }
1109
1110                 validatorFn();
1111         }
1112 }
1113
1114 function cbi_row_swap(elem, up, store)
1115 {
1116         var tr = findParent(elem.parentNode, '.cbi-section-table-row');
1117
1118         if (!tr)
1119                 return false;
1120
1121         tr.classList.remove('flash');
1122
1123         if (up) {
1124                 var prev = tr.previousElementSibling;
1125
1126                 if (prev && prev.classList.contains('cbi-section-table-row'))
1127                         tr.parentNode.insertBefore(tr, prev);
1128                 else
1129                         return;
1130         }
1131         else {
1132                 var next = tr.nextElementSibling ? tr.nextElementSibling.nextElementSibling : null;
1133
1134                 if (next && next.classList.contains('cbi-section-table-row'))
1135                         tr.parentNode.insertBefore(tr, next);
1136                 else if (!next)
1137                         tr.parentNode.appendChild(tr);
1138                 else
1139                         return;
1140         }
1141
1142         var ids = [ ];
1143
1144         for (var i = 0, n = 0; i < tr.parentNode.childNodes.length; i++) {
1145                 var node = tr.parentNode.childNodes[i];
1146                 if (node.classList && node.classList.contains('cbi-section-table-row')) {
1147                         node.classList.remove('cbi-rowstyle-1');
1148                         node.classList.remove('cbi-rowstyle-2');
1149                         node.classList.add((n++ % 2) ? 'cbi-rowstyle-2' : 'cbi-rowstyle-1');
1150
1151                         if (/-([^\-]+)$/.test(node.id))
1152                                 ids.push(RegExp.$1);
1153                 }
1154         }
1155
1156         var input = document.getElementById(store);
1157         if (input)
1158                 input.value = ids.join(' ');
1159
1160         window.scrollTo(0, tr.offsetTop);
1161         void tr.offsetWidth;
1162         tr.classList.add('flash');
1163
1164         return false;
1165 }
1166
1167 function cbi_tag_last(container)
1168 {
1169         var last;
1170
1171         for (var i = 0; i < container.childNodes.length; i++) {
1172                 var c = container.childNodes[i];
1173                 if (matchesElem(c, 'div')) {
1174                         c.classList.remove('cbi-value-last');
1175                         last = c;
1176                 }
1177         }
1178
1179         if (last)
1180                 last.classList.add('cbi-value-last');
1181 }
1182
1183 function cbi_submit(elem, name, value, action)
1184 {
1185         var form = elem.form || findParent(elem, 'form');
1186
1187         if (!form)
1188                 return false;
1189
1190         if (action)
1191                 form.action = action;
1192
1193         if (name) {
1194                 var hidden = form.querySelector('input[type="hidden"][name="%s"]'.format(name)) ||
1195                         E('input', { type: 'hidden', name: name });
1196
1197                 hidden.value = value || '1';
1198                 form.appendChild(hidden);
1199         }
1200
1201         form.submit();
1202         return true;
1203 }
1204
1205 String.prototype.format = function()
1206 {
1207         if (!RegExp)
1208                 return;
1209
1210         var html_esc = [/&/g, '&#38;', /"/g, '&#34;', /'/g, '&#39;', /</g, '&#60;', />/g, '&#62;'];
1211         var quot_esc = [/"/g, '&#34;', /'/g, '&#39;'];
1212
1213         function esc(s, r) {
1214                 if (typeof(s) !== 'string' && !(s instanceof String))
1215                         return '';
1216
1217                 for (var i = 0; i < r.length; i += 2)
1218                         s = s.replace(r[i], r[i+1]);
1219
1220                 return s;
1221         }
1222
1223         var str = this;
1224         var out = '';
1225         var re = /^(([^%]*)%('.|0|\x20)?(-)?(\d+)?(\.\d+)?(%|b|c|d|u|f|o|s|x|X|q|h|j|t|m))/;
1226         var a = b = [], numSubstitutions = 0, numMatches = 0;
1227
1228         while (a = re.exec(str)) {
1229                 var m = a[1];
1230                 var leftpart = a[2], pPad = a[3], pJustify = a[4], pMinLength = a[5];
1231                 var pPrecision = a[6], pType = a[7];
1232
1233                 numMatches++;
1234
1235                 if (pType == '%') {
1236                         subst = '%';
1237                 }
1238                 else {
1239                         if (numSubstitutions < arguments.length) {
1240                                 var param = arguments[numSubstitutions++];
1241
1242                                 var pad = '';
1243                                 if (pPad && pPad.substr(0,1) == "'")
1244                                         pad = leftpart.substr(1,1);
1245                                 else if (pPad)
1246                                         pad = pPad;
1247                                 else
1248                                         pad = ' ';
1249
1250                                 var justifyRight = true;
1251                                 if (pJustify && pJustify === "-")
1252                                         justifyRight = false;
1253
1254                                 var minLength = -1;
1255                                 if (pMinLength)
1256                                         minLength = +pMinLength;
1257
1258                                 var precision = -1;
1259                                 if (pPrecision && pType == 'f')
1260                                         precision = +pPrecision.substring(1);
1261
1262                                 var subst = param;
1263
1264                                 switch(pType) {
1265                                         case 'b':
1266                                                 subst = (+param || 0).toString(2);
1267                                                 break;
1268
1269                                         case 'c':
1270                                                 subst = String.fromCharCode(+param || 0);
1271                                                 break;
1272
1273                                         case 'd':
1274                                                 subst = ~~(+param || 0);
1275                                                 break;
1276
1277                                         case 'u':
1278                                                 subst = ~~Math.abs(+param || 0);
1279                                                 break;
1280
1281                                         case 'f':
1282                                                 subst = (precision > -1)
1283                                                         ? ((+param || 0.0)).toFixed(precision)
1284                                                         : (+param || 0.0);
1285                                                 break;
1286
1287                                         case 'o':
1288                                                 subst = (+param || 0).toString(8);
1289                                                 break;
1290
1291                                         case 's':
1292                                                 subst = param;
1293                                                 break;
1294
1295                                         case 'x':
1296                                                 subst = ('' + (+param || 0).toString(16)).toLowerCase();
1297                                                 break;
1298
1299                                         case 'X':
1300                                                 subst = ('' + (+param || 0).toString(16)).toUpperCase();
1301                                                 break;
1302
1303                                         case 'h':
1304                                                 subst = esc(param, html_esc);
1305                                                 break;
1306
1307                                         case 'q':
1308                                                 subst = esc(param, quot_esc);
1309                                                 break;
1310
1311                                         case 't':
1312                                                 var td = 0;
1313                                                 var th = 0;
1314                                                 var tm = 0;
1315                                                 var ts = (param || 0);
1316
1317                                                 if (ts > 60) {
1318                                                         tm = Math.floor(ts / 60);
1319                                                         ts = (ts % 60);
1320                                                 }
1321
1322                                                 if (tm > 60) {
1323                                                         th = Math.floor(tm / 60);
1324                                                         tm = (tm % 60);
1325                                                 }
1326
1327                                                 if (th > 24) {
1328                                                         td = Math.floor(th / 24);
1329                                                         th = (th % 24);
1330                                                 }
1331
1332                                                 subst = (td > 0)
1333                                                         ? String.format('%dd %dh %dm %ds', td, th, tm, ts)
1334                                                         : String.format('%dh %dm %ds', th, tm, ts);
1335
1336                                                 break;
1337
1338                                         case 'm':
1339                                                 var mf = pMinLength ? +pMinLength : 1000;
1340                                                 var pr = pPrecision ? ~~(10 * +('0' + pPrecision)) : 2;
1341
1342                                                 var i = 0;
1343                                                 var val = (+param || 0);
1344                                                 var units = [ ' ', ' K', ' M', ' G', ' T', ' P', ' E' ];
1345
1346                                                 for (i = 0; (i < units.length) && (val > mf); i++)
1347                                                         val /= mf;
1348
1349                                                 subst = (i ? val.toFixed(pr) : val) + units[i];
1350                                                 pMinLength = null;
1351                                                 break;
1352                                 }
1353                         }
1354                 }
1355
1356                 if (pMinLength) {
1357                         subst = subst.toString();
1358                         for (var i = subst.length; i < pMinLength; i++)
1359                                 if (pJustify == '-')
1360                                         subst = subst + ' ';
1361                                 else
1362                                         subst = pad + subst;
1363                 }
1364
1365                 out += leftpart + subst;
1366                 str = str.substr(m.length);
1367         }
1368
1369         return out + str;
1370 }
1371
1372 String.prototype.nobr = function()
1373 {
1374         return this.replace(/[\s\n]+/g, '&#160;');
1375 }
1376
1377 String.format = function()
1378 {
1379         var a = [ ];
1380
1381         for (var i = 1; i < arguments.length; i++)
1382                 a.push(arguments[i]);
1383
1384         return ''.format.apply(arguments[0], a);
1385 }
1386
1387 String.nobr = function()
1388 {
1389         var a = [ ];
1390
1391         for (var i = 1; i < arguments.length; i++)
1392                 a.push(arguments[i]);
1393
1394         return ''.nobr.apply(arguments[0], a);
1395 }
1396
1397 if (window.NodeList && !NodeList.prototype.forEach) {
1398         NodeList.prototype.forEach = function (callback, thisArg) {
1399                 thisArg = thisArg || window;
1400                 for (var i = 0; i < this.length; i++) {
1401                         callback.call(thisArg, this[i], i, this);
1402                 }
1403         };
1404 }
1405
1406 if (!window.requestAnimationFrame) {
1407         window.requestAnimationFrame = function(f) {
1408                 window.setTimeout(function() {
1409                         f(new Date().getTime())
1410                 }, 1000/30);
1411         };
1412 }
1413
1414
1415 function isElem(e) { return L.dom.elem(e) }
1416 function toElem(s) { return L.dom.parse(s) }
1417 function matchesElem(node, selector) { return L.dom.matches(node, selector) }
1418 function findParent(node, selector) { return L.dom.parent(node, selector) }
1419 function E() { return L.dom.create.apply(L.dom, arguments) }
1420
1421 if (typeof(window.CustomEvent) !== 'function') {
1422         function CustomEvent(event, params) {
1423                 params = params || { bubbles: false, cancelable: false, detail: undefined };
1424                 var evt = document.createEvent('CustomEvent');
1425                     evt.initCustomEvent( event, params.bubbles, params.cancelable, params.detail );
1426                 return evt;
1427         }
1428
1429         CustomEvent.prototype = window.Event.prototype;
1430         window.CustomEvent = CustomEvent;
1431 }
1432
1433 CBIDropdown = {
1434         openDropdown: function(sb) {
1435                 var st = window.getComputedStyle(sb, null),
1436                     ul = sb.querySelector('ul'),
1437                     li = ul.querySelectorAll('li'),
1438                     fl = findParent(sb, '.cbi-value-field'),
1439                     sel = ul.querySelector('[selected]'),
1440                     rect = sb.getBoundingClientRect(),
1441                     items = Math.min(this.dropdown_items, li.length);
1442
1443                 document.querySelectorAll('.cbi-dropdown[open]').forEach(function(s) {
1444                         s.dispatchEvent(new CustomEvent('cbi-dropdown-close', {}));
1445                 });
1446
1447                 sb.setAttribute('open', '');
1448
1449                 var pv = ul.cloneNode(true);
1450                     pv.classList.add('preview');
1451
1452                 if (fl)
1453                         fl.classList.add('cbi-dropdown-open');
1454
1455                 if ('ontouchstart' in window) {
1456                         var vpWidth = Math.max(document.documentElement.clientWidth, window.innerWidth || 0),
1457                             vpHeight = Math.max(document.documentElement.clientHeight, window.innerHeight || 0),
1458                             scrollFrom = window.pageYOffset,
1459                             scrollTo = scrollFrom + rect.top - vpHeight * 0.5,
1460                             start = null;
1461
1462                         ul.style.top = sb.offsetHeight + 'px';
1463                         ul.style.left = -rect.left + 'px';
1464                         ul.style.right = (rect.right - vpWidth) + 'px';
1465                         ul.style.maxHeight = (vpHeight * 0.5) + 'px';
1466                         ul.style.WebkitOverflowScrolling = 'touch';
1467
1468                         var scrollStep = function(timestamp) {
1469                                 if (!start) {
1470                                         start = timestamp;
1471                                         ul.scrollTop = sel ? Math.max(sel.offsetTop - sel.offsetHeight, 0) : 0;
1472                                 }
1473
1474                                 var duration = Math.max(timestamp - start, 1);
1475                                 if (duration < 100) {
1476                                         document.body.scrollTop = scrollFrom + (scrollTo - scrollFrom) * (duration / 100);
1477                                         window.requestAnimationFrame(scrollStep);
1478                                 }
1479                                 else {
1480                                         document.body.scrollTop = scrollTo;
1481                                 }
1482                         };
1483
1484                         window.requestAnimationFrame(scrollStep);
1485                 }
1486                 else {
1487                         ul.style.maxHeight = '1px';
1488                         ul.style.top = ul.style.bottom = '';
1489
1490                         window.requestAnimationFrame(function() {
1491                                 var height = items * li[Math.max(0, li.length - 2)].offsetHeight;
1492
1493                                 ul.scrollTop = sel ? Math.max(sel.offsetTop - sel.offsetHeight, 0) : 0;
1494                                 ul.style[((rect.top + rect.height + height) > window.innerHeight) ? 'bottom' : 'top'] = rect.height + 'px';
1495                                 ul.style.maxHeight = height + 'px';
1496                         });
1497                 }
1498
1499                 ul.querySelectorAll('[selected] input[type="checkbox"]').forEach(function(c) {
1500                         c.checked = true;
1501                 });
1502
1503                 ul.classList.add('dropdown');
1504
1505                 sb.insertBefore(pv, ul.nextElementSibling);
1506
1507                 li.forEach(function(l) {
1508                         l.setAttribute('tabindex', 0);
1509                 });
1510
1511                 sb.lastElementChild.setAttribute('tabindex', 0);
1512
1513                 this.setFocus(sb, sel || li[0], true);
1514         },
1515
1516         closeDropdown: function(sb, no_focus) {
1517                 if (!sb.hasAttribute('open'))
1518                         return;
1519
1520                 var pv = sb.querySelector('ul.preview'),
1521                     ul = sb.querySelector('ul.dropdown'),
1522                     li = ul.querySelectorAll('li'),
1523                     fl = findParent(sb, '.cbi-value-field');
1524
1525                 li.forEach(function(l) { l.removeAttribute('tabindex'); });
1526                 sb.lastElementChild.removeAttribute('tabindex');
1527
1528                 sb.removeChild(pv);
1529                 sb.removeAttribute('open');
1530                 sb.style.width = sb.style.height = '';
1531
1532                 ul.classList.remove('dropdown');
1533                 ul.style.top = ul.style.bottom = ul.style.maxHeight = '';
1534
1535                 if (fl)
1536                         fl.classList.remove('cbi-dropdown-open');
1537
1538                 if (!no_focus)
1539                         this.setFocus(sb, sb);
1540
1541                 this.saveValues(sb, ul);
1542         },
1543
1544         toggleItem: function(sb, li, force_state) {
1545                 if (li.hasAttribute('unselectable'))
1546                         return;
1547
1548                 if (this.multi) {
1549                         var cbox = li.querySelector('input[type="checkbox"]'),
1550                             items = li.parentNode.querySelectorAll('li'),
1551                             label = sb.querySelector('ul.preview'),
1552                             sel = li.parentNode.querySelectorAll('[selected]').length,
1553                             more = sb.querySelector('.more'),
1554                             ndisplay = this.display_items,
1555                             n = 0;
1556
1557                         if (li.hasAttribute('selected')) {
1558                                 if (force_state !== true) {
1559                                         if (sel > 1 || this.optional) {
1560                                                 li.removeAttribute('selected');
1561                                                 cbox.checked = cbox.disabled = false;
1562                                                 sel--;
1563                                         }
1564                                         else {
1565                                                 cbox.disabled = true;
1566                                         }
1567                                 }
1568                         }
1569                         else {
1570                                 if (force_state !== false) {
1571                                         li.setAttribute('selected', '');
1572                                         cbox.checked = true;
1573                                         cbox.disabled = false;
1574                                         sel++;
1575                                 }
1576                         }
1577
1578                         while (label.firstElementChild)
1579                                 label.removeChild(label.firstElementChild);
1580
1581                         for (var i = 0; i < items.length; i++) {
1582                                 items[i].removeAttribute('display');
1583                                 if (items[i].hasAttribute('selected')) {
1584                                         if (ndisplay-- > 0) {
1585                                                 items[i].setAttribute('display', n++);
1586                                                 label.appendChild(items[i].cloneNode(true));
1587                                         }
1588                                         var c = items[i].querySelector('input[type="checkbox"]');
1589                                         if (c)
1590                                                 c.disabled = (sel == 1 && !this.optional);
1591                                 }
1592                         }
1593
1594                         if (ndisplay < 0)
1595                                 sb.setAttribute('more', '');
1596                         else
1597                                 sb.removeAttribute('more');
1598
1599                         if (ndisplay === this.display_items)
1600                                 sb.setAttribute('empty', '');
1601                         else
1602                                 sb.removeAttribute('empty');
1603
1604                         more.innerHTML = (ndisplay === this.display_items) ? this.placeholder : '···';
1605                 }
1606                 else {
1607                         var sel = li.parentNode.querySelector('[selected]');
1608                         if (sel) {
1609                                 sel.removeAttribute('display');
1610                                 sel.removeAttribute('selected');
1611                         }
1612
1613                         li.setAttribute('display', 0);
1614                         li.setAttribute('selected', '');
1615
1616                         this.closeDropdown(sb, true);
1617                 }
1618
1619                 this.saveValues(sb, li.parentNode);
1620         },
1621
1622         transformItem: function(sb, li) {
1623                 var cbox = E('form', {}, E('input', { type: 'checkbox', tabindex: -1, onclick: 'event.preventDefault()' })),
1624                     label = E('label');
1625
1626                 while (li.firstChild)
1627                         label.appendChild(li.firstChild);
1628
1629                 li.appendChild(cbox);
1630                 li.appendChild(label);
1631         },
1632
1633         saveValues: function(sb, ul) {
1634                 var sel = ul.querySelectorAll('li[selected]'),
1635                     div = sb.lastElementChild,
1636                     strval = '',
1637                     values = [];
1638
1639                 while (div.lastElementChild)
1640                         div.removeChild(div.lastElementChild);
1641
1642                 sel.forEach(function (s) {
1643                         if (s.hasAttribute('placeholder'))
1644                                 return;
1645
1646                         var v = {
1647                                 text: s.innerText,
1648                                 value: s.hasAttribute('data-value') ? s.getAttribute('data-value') : s.innerText,
1649                                 element: s
1650                         };
1651
1652                         div.appendChild(E('input', {
1653                                 type: 'hidden',
1654                                 name: s.hasAttribute('name') ? s.getAttribute('name') : (sb.getAttribute('name') || ''),
1655                                 value: v.value
1656                         }));
1657
1658                         values.push(v);
1659
1660                         strval += strval.length ? ' ' + v.value : v.value;
1661                 });
1662
1663                 var detail = {
1664                         instance: this,
1665                         element: sb
1666                 };
1667
1668                 if (this.multi)
1669                         detail.values = values;
1670                 else
1671                         detail.value = values.length ? values[0] : null;
1672
1673                 sb.value = strval;
1674
1675                 sb.dispatchEvent(new CustomEvent('cbi-dropdown-change', {
1676                         bubbles: true,
1677                         detail: detail
1678                 }));
1679
1680                 cbi_d_update();
1681         },
1682
1683         setValues: function(sb, values) {
1684                 var ul = sb.querySelector('ul');
1685
1686                 if (this.multi) {
1687                         ul.querySelectorAll('li[data-value]').forEach(function(li) {
1688                                 if (values === null || !(li.getAttribute('data-value') in values))
1689                                         this.toggleItem(sb, li, false);
1690                                 else
1691                                         this.toggleItem(sb, li, true);
1692                         });
1693                 }
1694                 else {
1695                         var ph = ul.querySelector('li[placeholder]');
1696                         if (ph)
1697                                 this.toggleItem(sb, ph);
1698
1699                         ul.querySelectorAll('li[data-value]').forEach(function(li) {
1700                                 if (values !== null && (li.getAttribute('data-value') in values))
1701                                         this.toggleItem(sb, li);
1702                         });
1703                 }
1704         },
1705
1706         setFocus: function(sb, elem, scroll) {
1707                 if (sb && sb.hasAttribute && sb.hasAttribute('locked-in'))
1708                         return;
1709
1710                 if (sb.target && findParent(sb.target, 'ul.dropdown'))
1711                         return;
1712
1713                 document.querySelectorAll('.focus').forEach(function(e) {
1714                         if (!matchesElem(e, 'input')) {
1715                                 e.classList.remove('focus');
1716                                 e.blur();
1717                         }
1718                 });
1719
1720                 if (elem) {
1721                         elem.focus();
1722                         elem.classList.add('focus');
1723
1724                         if (scroll)
1725                                 elem.parentNode.scrollTop = elem.offsetTop - elem.parentNode.offsetTop;
1726                 }
1727         },
1728
1729         createItems: function(sb, value) {
1730                 var sbox = this,
1731                     val = (value || '').trim(),
1732                     ul = sb.querySelector('ul');
1733
1734                 if (!sbox.multi)
1735                         val = val.length ? [ val ] : [];
1736                 else
1737                         val = val.length ? val.split(/\s+/) : [];
1738
1739                 val.forEach(function(item) {
1740                         var new_item = null;
1741
1742                         ul.childNodes.forEach(function(li) {
1743                                 if (li.getAttribute && li.getAttribute('data-value') === item)
1744                                         new_item = li;
1745                         });
1746
1747                         if (!new_item) {
1748                                 var markup,
1749                                     tpl = sb.querySelector(sbox.template);
1750
1751                                 if (tpl)
1752                                         markup = (tpl.textContent || tpl.innerHTML || tpl.firstChild.data).replace(/^<!--|-->$/, '').trim();
1753                                 else
1754                                         markup = '<li data-value="{{value}}">{{value}}</li>';
1755
1756                                 new_item = E(markup.replace(/{{value}}/g, item));
1757
1758                                 if (sbox.multi) {
1759                                         sbox.transformItem(sb, new_item);
1760                                 }
1761                                 else {
1762                                         var old = ul.querySelector('li[created]');
1763                                         if (old)
1764                                                 ul.removeChild(old);
1765
1766                                         new_item.setAttribute('created', '');
1767                                 }
1768
1769                                 new_item = ul.insertBefore(new_item, ul.lastElementChild);
1770                         }
1771
1772                         sbox.toggleItem(sb, new_item, true);
1773                         sbox.setFocus(sb, new_item, true);
1774                 });
1775         },
1776
1777         closeAllDropdowns: function() {
1778                 document.querySelectorAll('.cbi-dropdown[open]').forEach(function(s) {
1779                         s.dispatchEvent(new CustomEvent('cbi-dropdown-close', {}));
1780                 });
1781         },
1782
1783         handleClick: function(ev) {
1784                 var sb = ev.currentTarget;
1785
1786                 if (!sb.hasAttribute('open')) {
1787                         if (!matchesElem(ev.target, 'input'))
1788                                 this.openDropdown(sb);
1789                 }
1790                 else {
1791                         var li = findParent(ev.target, 'li');
1792                         if (li && li.parentNode.classList.contains('dropdown'))
1793                                 this.toggleItem(sb, li);
1794                         else if (li && li.parentNode.classList.contains('preview'))
1795                                 this.closeDropdown(sb);
1796                 }
1797
1798                 ev.preventDefault();
1799                 ev.stopPropagation();
1800         },
1801
1802         handleKeydown: function(ev) {
1803                 var sb = ev.currentTarget;
1804
1805                 if (matchesElem(ev.target, 'input'))
1806                         return;
1807
1808                 if (!sb.hasAttribute('open')) {
1809                         switch (ev.keyCode) {
1810                         case 37:
1811                         case 38:
1812                         case 39:
1813                         case 40:
1814                                 this.openDropdown(sb);
1815                                 ev.preventDefault();
1816                         }
1817                 }
1818                 else {
1819                         var active = findParent(document.activeElement, 'li');
1820
1821                         switch (ev.keyCode) {
1822                         case 27:
1823                                 this.closeDropdown(sb);
1824                                 break;
1825
1826                         case 13:
1827                                 if (active) {
1828                                         if (!active.hasAttribute('selected'))
1829                                                 this.toggleItem(sb, active);
1830                                         this.closeDropdown(sb);
1831                                         ev.preventDefault();
1832                                 }
1833                                 break;
1834
1835                         case 32:
1836                                 if (active) {
1837                                         this.toggleItem(sb, active);
1838                                         ev.preventDefault();
1839                                 }
1840                                 break;
1841
1842                         case 38:
1843                                 if (active && active.previousElementSibling) {
1844                                         this.setFocus(sb, active.previousElementSibling);
1845                                         ev.preventDefault();
1846                                 }
1847                                 break;
1848
1849                         case 40:
1850                                 if (active && active.nextElementSibling) {
1851                                         this.setFocus(sb, active.nextElementSibling);
1852                                         ev.preventDefault();
1853                                 }
1854                                 break;
1855                         }
1856                 }
1857         },
1858
1859         handleDropdownClose: function(ev) {
1860                 var sb = ev.currentTarget;
1861
1862                 this.closeDropdown(sb, true);
1863         },
1864
1865         handleDropdownSelect: function(ev) {
1866                 var sb = ev.currentTarget,
1867                     li = findParent(ev.target, 'li');
1868
1869                 if (!li)
1870                         return;
1871
1872                 this.toggleItem(sb, li);
1873                 this.closeDropdown(sb, true);
1874         },
1875
1876         handleMouseover: function(ev) {
1877                 var sb = ev.currentTarget;
1878
1879                 if (!sb.hasAttribute('open'))
1880                         return;
1881
1882                 var li = findParent(ev.target, 'li');
1883
1884                 if (li && li.parentNode.classList.contains('dropdown'))
1885                         this.setFocus(sb, li);
1886         },
1887
1888         handleFocus: function(ev) {
1889                 var sb = ev.currentTarget;
1890
1891                 document.querySelectorAll('.cbi-dropdown[open]').forEach(function(s) {
1892                         if (s !== sb || sb.hasAttribute('open'))
1893                                 s.dispatchEvent(new CustomEvent('cbi-dropdown-close', {}));
1894                 });
1895         },
1896
1897         handleCanaryFocus: function(ev) {
1898                 this.closeDropdown(ev.currentTarget.parentNode);
1899         },
1900
1901         handleCreateKeydown: function(ev) {
1902                 var input = ev.currentTarget,
1903                     sb = findParent(input, '.cbi-dropdown');
1904
1905                 switch (ev.keyCode) {
1906                 case 13:
1907                         ev.preventDefault();
1908
1909                         if (input.classList.contains('cbi-input-invalid'))
1910                                 return;
1911
1912                         this.createItems(sb, input.value);
1913                         input.value = '';
1914                         input.blur();
1915                         break;
1916                 }
1917         },
1918
1919         handleCreateFocus: function(ev) {
1920                 var input = ev.currentTarget,
1921                     cbox = findParent(input, 'li').querySelector('input[type="checkbox"]'),
1922                     sb = findParent(input, '.cbi-dropdown');
1923
1924                 if (cbox)
1925                         cbox.checked = true;
1926
1927                 sb.setAttribute('locked-in', '');
1928         },
1929
1930         handleCreateBlur: function(ev) {
1931                 var input = ev.currentTarget,
1932                     cbox = findParent(input, 'li').querySelector('input[type="checkbox"]'),
1933                     sb = findParent(input, '.cbi-dropdown');
1934
1935                 if (cbox)
1936                         cbox.checked = false;
1937
1938                 sb.removeAttribute('locked-in');
1939         },
1940
1941         handleCreateClick: function(ev) {
1942                 ev.currentTarget.querySelector(this.create).focus();
1943         }
1944 };
1945
1946 function cbi_dropdown_init(sb) {
1947         if (!(this instanceof cbi_dropdown_init))
1948                 return new cbi_dropdown_init(sb);
1949
1950         this.multi = sb.hasAttribute('multiple');
1951         this.optional = sb.hasAttribute('optional');
1952         this.placeholder = sb.getAttribute('placeholder') || '---';
1953         this.display_items = parseInt(sb.getAttribute('display-items') || 3);
1954         this.dropdown_items = parseInt(sb.getAttribute('dropdown-items') || 5);
1955         this.create = sb.getAttribute('item-create') || '.create-item-input';
1956         this.template = sb.getAttribute('item-template') || 'script[type="item-template"]';
1957
1958         var ul = sb.querySelector('ul'),
1959             more = sb.appendChild(E('span', { class: 'more', tabindex: -1 }, '···')),
1960             open = sb.appendChild(E('span', { class: 'open', tabindex: -1 }, '▾')),
1961             canary = sb.appendChild(E('div')),
1962             create = sb.querySelector(this.create),
1963             ndisplay = this.display_items,
1964             n = 0;
1965
1966         if (this.multi) {
1967                 var items = ul.querySelectorAll('li');
1968
1969                 for (var i = 0; i < items.length; i++) {
1970                         this.transformItem(sb, items[i]);
1971
1972                         if (items[i].hasAttribute('selected') && ndisplay-- > 0)
1973                                 items[i].setAttribute('display', n++);
1974                 }
1975         }
1976         else {
1977                 if (this.optional && !ul.querySelector('li[data-value=""]')) {
1978                         var placeholder = E('li', { placeholder: '' }, this.placeholder);
1979                         ul.firstChild ? ul.insertBefore(placeholder, ul.firstChild) : ul.appendChild(placeholder);
1980                 }
1981
1982                 var items = ul.querySelectorAll('li'),
1983                     sel = sb.querySelectorAll('[selected]');
1984
1985                 sel.forEach(function(s) {
1986                         s.removeAttribute('selected');
1987                 });
1988
1989                 var s = sel[0] || items[0];
1990                 if (s) {
1991                         s.setAttribute('selected', '');
1992                         s.setAttribute('display', n++);
1993                 }
1994
1995                 ndisplay--;
1996         }
1997
1998         this.saveValues(sb, ul);
1999
2000         ul.setAttribute('tabindex', -1);
2001         sb.setAttribute('tabindex', 0);
2002
2003         if (ndisplay < 0)
2004                 sb.setAttribute('more', '')
2005         else
2006                 sb.removeAttribute('more');
2007
2008         if (ndisplay === this.display_items)
2009                 sb.setAttribute('empty', '')
2010         else
2011                 sb.removeAttribute('empty');
2012
2013         more.innerHTML = (ndisplay === this.display_items) ? this.placeholder : '···';
2014
2015
2016         sb.addEventListener('click', this.handleClick.bind(this));
2017         sb.addEventListener('keydown', this.handleKeydown.bind(this));
2018         sb.addEventListener('cbi-dropdown-close', this.handleDropdownClose.bind(this));
2019         sb.addEventListener('cbi-dropdown-select', this.handleDropdownSelect.bind(this));
2020
2021         if ('ontouchstart' in window) {
2022                 sb.addEventListener('touchstart', function(ev) { ev.stopPropagation(); });
2023                 window.addEventListener('touchstart', this.closeAllDropdowns);
2024         }
2025         else {
2026                 sb.addEventListener('mouseover', this.handleMouseover.bind(this));
2027                 sb.addEventListener('focus', this.handleFocus.bind(this));
2028
2029                 canary.addEventListener('focus', this.handleCanaryFocus.bind(this));
2030
2031                 window.addEventListener('mouseover', this.setFocus);
2032                 window.addEventListener('click', this.closeAllDropdowns);
2033         }
2034
2035         if (create) {
2036                 create.addEventListener('keydown', this.handleCreateKeydown.bind(this));
2037                 create.addEventListener('focus', this.handleCreateFocus.bind(this));
2038                 create.addEventListener('blur', this.handleCreateBlur.bind(this));
2039
2040                 var li = findParent(create, 'li');
2041
2042                 li.setAttribute('unselectable', '');
2043                 li.addEventListener('click', this.handleCreateClick.bind(this));
2044         }
2045 }
2046
2047 cbi_dropdown_init.prototype = CBIDropdown;
2048
2049 function cbi_update_table(table, data, placeholder) {
2050         var target = isElem(table) ? table : document.querySelector(table);
2051
2052         if (!isElem(target))
2053                 return;
2054
2055         target.querySelectorAll('.tr.table-titles, .cbi-section-table-titles').forEach(function(thead) {
2056                 var titles = [];
2057
2058                 thead.querySelectorAll('.th').forEach(function(th) {
2059                         titles.push(th);
2060                 });
2061
2062                 if (Array.isArray(data)) {
2063                         var n = 0, rows = target.querySelectorAll('.tr');
2064
2065                         data.forEach(function(row) {
2066                                 var trow = E('div', { 'class': 'tr' });
2067
2068                                 for (var i = 0; i < titles.length; i++) {
2069                                         var text = (titles[i].innerText || '').trim();
2070                                         var td = trow.appendChild(E('div', {
2071                                                 'class': titles[i].className,
2072                                                 'data-title': (text !== '') ? text : null
2073                                         }, row[i] || ''));
2074
2075                                         td.classList.remove('th');
2076                                         td.classList.add('td');
2077                                 }
2078
2079                                 trow.classList.add('cbi-rowstyle-%d'.format((n++ % 2) ? 2 : 1));
2080
2081                                 if (rows[n])
2082                                         target.replaceChild(trow, rows[n]);
2083                                 else
2084                                         target.appendChild(trow);
2085                         });
2086
2087                         while (rows[++n])
2088                                 target.removeChild(rows[n]);
2089
2090                         if (placeholder && target.firstElementChild === target.lastElementChild) {
2091                                 var trow = target.appendChild(E('div', { 'class': 'tr placeholder' }));
2092                                 var td = trow.appendChild(E('div', { 'class': titles[0].className }, placeholder));
2093
2094                                 td.classList.remove('th');
2095                                 td.classList.add('td');
2096                         }
2097                 }
2098                 else {
2099                         thead.parentNode.style.display = 'none';
2100
2101                         thead.parentNode.querySelectorAll('.tr, .cbi-section-table-row').forEach(function(trow) {
2102                                 if (trow !== thead) {
2103                                         var n = 0;
2104                                         trow.querySelectorAll('.th, .td').forEach(function(td) {
2105                                                 if (n < titles.length) {
2106                                                         var text = (titles[n++].innerText || '').trim();
2107                                                         if (text !== '')
2108                                                                 td.setAttribute('data-title', text);
2109                                                 }
2110                                         });
2111                                 }
2112                         });
2113
2114                         thead.parentNode.style.display = '';
2115                 }
2116         });
2117 }
2118
2119 function showModal(title, children)
2120 {
2121         return L.showModal(title, children);
2122 }
2123
2124 function hideModal()
2125 {
2126         return L.hideModal();
2127 }
2128
2129
2130 document.addEventListener('DOMContentLoaded', function() {
2131         document.addEventListener('validation-failure', function(ev) {
2132                 if (ev.target === document.activeElement)
2133                         L.showTooltip(ev);
2134         });
2135
2136         document.addEventListener('validation-success', function(ev) {
2137                 if (ev.target === document.activeElement)
2138                         L.hideTooltip(ev);
2139         });
2140
2141         document.querySelectorAll('.table').forEach(cbi_update_table);
2142 });