View | Details | Raw Unified | Return to bug 11873
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/lib/jquery/plugins/jquery.jstree.js (-4551 lines)
Lines 1-4551 Link Here
1
/*
2
 * jsTree 1.0-rc3
3
 * http://jstree.com/
4
 *
5
 * Copyright (c) 2010 Ivan Bozhanov (vakata.com)
6
 *
7
 * Licensed same as jquery - under the terms of either the MIT License or the GPL Version 2 License
8
 *   http://www.opensource.org/licenses/mit-license.php
9
 *   http://www.gnu.org/licenses/gpl.html
10
 *
11
 * $Date: 2011-02-09 01:17:14 +0200 (ср, 09 февр 2011) $
12
 * $Revision: 236 $
13
 */
14
15
/*jslint browser: true, onevar: true, undef: true, bitwise: true, strict: true */
16
/*global window : false, clearInterval: false, clearTimeout: false, document: false, setInterval: false, setTimeout: false, jQuery: false, navigator: false, XSLTProcessor: false, DOMParser: false, XMLSerializer: false*/
17
18
"use strict";
19
20
// top wrapper to prevent multiple inclusion (is this OK?)
21
(function () { if(jQuery && jQuery.jstree) { return; }
22
     var is_ie6 = false, is_ie7 = false, is_ff2 = false;
23
24
/*
25
 * jsTree core
26
 */
27
(function ($) {
28
     // Common functions not related to jsTree
29
      // decided to move them to a `vakata` "namespace"
30
      $.vakata = {};
31
 // CSS related functions
32
       $.vakata.css = {
33
               get_css : function(rule_name, delete_flag, sheet) {
34
                    rule_name = rule_name.toLowerCase();
35
                   var css_rules = sheet.cssRules || sheet.rules,
36
                         j = 0;
37
                 do {
38
                           if(css_rules.length && j > css_rules.length + 5) { return false; }
39
                             if(css_rules[j].selectorText && css_rules[j].selectorText.toLowerCase() == rule_name) {
40
                                        if(delete_flag === true) {
41
                                             if(sheet.removeRule) { sheet.removeRule(j); }
42
                                          if(sheet.deleteRule) { sheet.deleteRule(j); }
43
                                          return true;
44
                                   }
45
                                      else { return css_rules[j]; }
46
                          }
47
                      }
48
                      while (css_rules[++j]);
49
                        return false;
50
          },
51
             add_css : function(rule_name, sheet) {
52
                 if($.jstree.css.get_css(rule_name, false, sheet)) { return false; }
53
                    if(sheet.insertRule) { sheet.insertRule(rule_name + ' { }', 0); } else { sheet.addRule(rule_name, null, 0); }
54
                  return $.vakata.css.get_css(rule_name);
55
                },
56
             remove_css : function(rule_name, sheet) {
57
                      return $.vakata.css.get_css(rule_name, true, sheet);
58
           },
59
             add_sheet : function(opts) {
60
                   var tmp = false, is_new = true;
61
                        if(opts.str) {
62
                         if(opts.title) { tmp = $("style[id='" + opts.title + "-stylesheet']")[0]; }
63
                            if(tmp) { is_new = false; }
64
                            else {
65
                                 tmp = document.createElement("style");
66
                                 tmp.setAttribute('type',"text/css");
67
                                   if(opts.title) { tmp.setAttribute("id", opts.title + "-stylesheet"); }
68
                         }
69
                              if(tmp.styleSheet) {
70
                                   if(is_new) {
71
                                           document.getElementsByTagName("head")[0].appendChild(tmp);
72
                                             tmp.styleSheet.cssText = opts.str;
73
                                     }
74
                                      else {
75
                                         tmp.styleSheet.cssText = tmp.styleSheet.cssText + " " + opts.str;
76
                                      }
77
                              }
78
                              else {
79
                                 tmp.appendChild(document.createTextNode(opts.str));
80
                                    document.getElementsByTagName("head")[0].appendChild(tmp);
81
                             }
82
                              return tmp.sheet || tmp.styleSheet;
83
                    }
84
                      if(opts.url) {
85
                         if(document.createStyleSheet) {
86
                                        try { tmp = document.createStyleSheet(opts.url); } catch (e) { }
87
                               }
88
                              else {
89
                                 tmp			= document.createElement('link');
90
                                        tmp.rel		= 'stylesheet';
91
                                       tmp.type	= 'text/css';
92
                                 tmp.media	= "all";
93
                                     tmp.href	= opts.url;
94
                                   document.getElementsByTagName("head")[0].appendChild(tmp);
95
                                     return tmp.styleSheet;
96
                         }
97
                      }
98
              }
99
      };
100
101
    // private variables
102
   var instances = [],			// instance array (used by $.jstree.reference/create/focused)
103
            focused_instance = -1,	// the index in the instance array of the currently focused instance
104
            plugins = {},			// list of included plugins
105
            prepared_move = {};		// for the move_node function
106
107
    // jQuery plugin wrapper (thanks to jquery UI widget function)
108
 $.fn.jstree = function (settings) {
109
            var isMethodCall = (typeof settings == 'string'), // is this a method call like $().jstree("open_node")
110
                        args = Array.prototype.slice.call(arguments, 1),
111
                       returnValue = this;
112
113
           // if a method call execute the method on all selected instances
114
               if(isMethodCall) {
115
                     if(settings.substring(0, 1) == '_') { return returnValue; }
116
                    this.each(function() {
117
                         var instance = instances[$.data(this, "jstree_instance_id")],
118
                                  methodValue = (instance && $.isFunction(instance[settings])) ? instance[settings].apply(instance, args) : instance;
119
                                    if(typeof methodValue !== "undefined" && (settings.indexOf("is_") === 0 || (methodValue !== true && methodValue !== false))) { returnValue = methodValue; return false; }
120
                      });
121
            }
122
              else {
123
                 this.each(function() {
124
                         // extend settings and allow for multiple hashes and $.data
125
                            var instance_id = $.data(this, "jstree_instance_id"),
126
                                  a = [],
127
                                        b = settings ? $.extend({}, true, settings) : {},
128
                                      c = $(this),
129
                                   s = false,
130
                                     t = [];
131
                                a = a.concat(args);
132
                            if(c.data("jstree")) { a.push(c.data("jstree")); }
133
                             b = a.length ? $.extend.apply(null, [true, b].concat(a)) : b;
134
135
                         // if an instance already exists, destroy it first
136
                             if(typeof instance_id !== "undefined" && instances[instance_id]) { instances[instance_id].destroy(); }
137
                         // push a new empty object to the instances array
138
                              instance_id = parseInt(instances.push({}),10) - 1;
139
                             // store the jstree instance id to the container element
140
                               $.data(this, "jstree_instance_id", instance_id);
141
                               // clean up all plugins
142
                                b.plugins = $.isArray(b.plugins) ? b.plugins : $.jstree.defaults.plugins.slice();
143
                              b.plugins.unshift("core");
144
                             // only unique plugins
145
                         b.plugins = b.plugins.sort().join(",,").replace(/(,|^)([^,]+)(,,\2)+(,|$)/g,"$1$2$4").replace(/,,+/g,",").replace(/,$/,"").split(",");
146
147
                                // extend defaults with passed data
148
                            s = $.extend(true, {}, $.jstree.defaults, b);
149
                          s.plugins = b.plugins;
150
                         $.each(plugins, function (i, val) {
151
                                    if($.inArray(i, s.plugins) === -1) { s[i] = null; delete s[i]; }
152
                                       else { t.push(i); }
153
                            });
154
                            s.plugins = t;
155
156
                                // push the new object to the instances array (at the same time set the default classes to the container) and init
157
                             instances[instance_id] = new $.jstree._instance(instance_id, $(this).addClass("jstree jstree-" + instance_id), s);
158
                             // init all activated plugins for this instance
159
                                $.each(instances[instance_id]._get_settings().plugins, function (i, val) { instances[instance_id].data[val] = {}; });
160
                          $.each(instances[instance_id]._get_settings().plugins, function (i, val) { if(plugins[val]) { plugins[val].__init.apply(instances[instance_id]); } });
161
                         // initialize the instance
162
                             setTimeout(function() { if(instances[instance_id]) { instances[instance_id].init(); } }, 0);
163
                   });
164
            }
165
              // return the jquery selection (or if it was a method call that returned a value - the returned value)
166
         return returnValue;
167
    };
168
     // object to store exposed functions and objects
169
       $.jstree = {
170
           defaults : {
171
                   plugins : []
172
           },
173
             _focused : function () { return instances[focused_instance] || null; },
174
                _reference : function (needle) {
175
                       // get by instance id
176
                  if(instances[needle]) { return instances[needle]; }
177
                    // get by DOM (if still no luck - return null
178
                  var o = $(needle);
179
                     if(!o.length && typeof needle === "string") { o = $("#" + needle); }
180
                   if(!o.length) { return null; }
181
                 return instances[o.closest(".jstree").data("jstree_instance_id")] || null;
182
             },
183
             _instance : function (index, container, settings) {
184
                    // for plugins to store data in
185
                        this.data = { core : {} };
186
                     this.get_settings	= function () { return $.extend(true, {}, settings); };
187
                      this._get_settings	= function () { return settings; };
188
                 this.get_index		= function () { return index; };
189
                       this.get_container	= function () { return container; };
190
                        this.get_container_ul = function () { return container.children("ul:eq(0)"); };
191
                        this._set_settings	= function (s) {
192
                            settings = $.extend(true, {}, settings, s);
193
                    };
194
             },
195
             _fn : { },
196
             plugin : function (pname, pdata) {
197
                     pdata = $.extend({}, {
198
                         __init		: $.noop,
199
                              __destroy	: $.noop,
200
                            _fn			: {},
201
                            defaults	: false
202
                       }, pdata);
203
                     plugins[pname] = pdata;
204
205
                       $.jstree.defaults[pname] = pdata.defaults;
206
                     $.each(pdata._fn, function (i, val) {
207
                          val.plugin		= pname;
208
                           val.old			= $.jstree._fn[i];
209
                           $.jstree._fn[i] = function () {
210
                                        var rslt,
211
                                              func = val,
212
                                            args = Array.prototype.slice.call(arguments),
213
                                          evnt = new $.Event("before.jstree"),
214
                                           rlbk = false;
215
216
                                 if(this.data.core.locked === true && i !== "unlock" && i !== "is_locked") { return; }
217
218
                                 // Check if function belongs to the included plugins of this instance
219
                                  do {
220
                                           if(func && func.plugin && $.inArray(func.plugin, this._get_settings().plugins) !== -1) { break; }
221
                                              func = func.old;
222
                                       } while(func);
223
                                 if(!func) { return; }
224
225
                                 // context and function to trigger events, then finally call the function
226
                                      if(i.indexOf("_") === 0) {
227
                                             rslt = func.apply(this, args);
228
                                 }
229
                                      else {
230
                                         rslt = this.get_container().triggerHandler(evnt, { "func" : i, "inst" : this, "args" : args, "plugin" : func.plugin });
231
                                                if(rslt === false) { return; }
232
                                         if(typeof rslt !== "undefined") { args = rslt; }
233
234
                                              rslt = func.apply(
235
                                                     $.extend({}, this, {
236
                                                           __callback : function (data) {
237
                                                                 this.get_container().triggerHandler( i + '.jstree', { "inst" : this, "args" : args, "rslt" : data, "rlbk" : rlbk });
238
                                                           },
239
                                                             __rollback : function () {
240
                                                                     rlbk = this.get_rollback();
241
                                                                    return rlbk;
242
                                                           },
243
                                                             __call_old : function (replace_arguments) {
244
                                                                    return func.old.apply(this, (replace_arguments ? Array.prototype.slice.call(arguments, 1) : args ) );
245
                                                          }
246
                                                      }), args);
247
                                     }
248
249
                                     // return the result
250
                                   return rslt;
251
                           };
252
                             $.jstree._fn[i].old = val.old;
253
                         $.jstree._fn[i].plugin = pname;
254
                        });
255
            },
256
             rollback : function (rb) {
257
                     if(rb) {
258
                               if(!$.isArray(rb)) { rb = [ rb ]; }
259
                            $.each(rb, function (i, val) {
260
                                 instances[val.i].set_rollback(val.h, val.d);
261
                           });
262
                    }
263
              }
264
      };
265
     // set the prototype for all instances
266
 $.jstree._fn = $.jstree._instance.prototype = {};
267
268
     // load the css when DOM is ready
269
      $(function() {
270
         // code is copied from jQuery ($.browser is deprecated + there is a bug in IE)
271
         var u = navigator.userAgent.toLowerCase(),
272
                     v = (u.match( /.+?(?:rv|it|ra|ie)[\/: ]([\d.]+)/ ) || [0,'0'])[1],
273
                     css_string = '' +
274
                              '.jstree ul, .jstree li { display:block; margin:0 0 0 0; padding:0 0 0 0; list-style-type:none; } ' +
275
                          '.jstree li { display:block; min-height:18px; line-height:18px; white-space:nowrap; margin-left:18px; min-width:18px; } ' +
276
                            '.jstree-rtl li { margin-left:0; margin-right:18px; } ' +
277
                              '.jstree > ul > li { margin-left:0px; } ' +
278
                            '.jstree-rtl > ul > li { margin-right:0px; } ' +
279
                               '.jstree ins { display:inline-block; text-decoration:none; width:18px; height:18px; margin:0 0 0 0; padding:0; } ' +
280
                           '.jstree a { display:inline-block; line-height:16px; height:16px; color:black; white-space:nowrap; text-decoration:none; padding:1px 2px; margin:0; } ' +
281
                              '.jstree a:focus { outline: none; } ' +
282
                                '.jstree a > ins { height:16px; width:16px; } ' +
283
                              '.jstree a > .jstree-icon { margin-right:3px; } ' +
284
                            '.jstree-rtl a > .jstree-icon { margin-left:3px; margin-right:0; } ' +
285
                         'li.jstree-open > ul { display:block; } ' +
286
                            'li.jstree-closed > ul { display:none; } ';
287
            // Correct IE 6 (does not support the > CSS selector)
288
          if(/msie/.test(u) && parseInt(v, 10) == 6) {
289
                   is_ie6 = true;
290
291
                        // fix image flicker and lack of caching
292
                       try {
293
                          document.execCommand("BackgroundImageCache", false, true);
294
                     } catch (err) { }
295
296
                     css_string += '' +
297
                             '.jstree li { height:18px; margin-left:0; margin-right:0; } ' +
298
                                '.jstree li li { margin-left:18px; } ' +
299
                               '.jstree-rtl li li { margin-left:0px; margin-right:18px; } ' +
300
                         'li.jstree-open ul { display:block; } ' +
301
                              'li.jstree-closed ul { display:none !important; } ' +
302
                          '.jstree li a { display:inline; border-width:0 !important; padding:0px 2px !important; } ' +
303
                           '.jstree li a ins { height:16px; width:16px; margin-right:3px; } ' +
304
                           '.jstree-rtl li a ins { margin-right:0px; margin-left:3px; } ';
305
                }
306
              // Correct IE 7 (shifts anchor nodes onhover)
307
          if(/msie/.test(u) && parseInt(v, 10) == 7) {
308
                   is_ie7 = true;
309
                 css_string += '.jstree li a { border-width:0 !important; padding:0px 2px !important; } ';
310
              }
311
              // correct ff2 lack of display:inline-block
312
            if(!/compatible/.test(u) && /mozilla/.test(u) && parseFloat(v, 10) < 1.9) {
313
                    is_ff2 = true;
314
                 css_string += '' +
315
                             '.jstree ins { display:-moz-inline-box; } ' +
316
                          '.jstree li { line-height:12px; } ' + // WHY??
317
                         '.jstree a { display:-moz-inline-box; } ' +
318
                            '.jstree .jstree-no-icons .jstree-checkbox { display:-moz-inline-stack !important; } ';
319
                                /* this shouldn't be here as it is theme specific */
320
           }
321
              // the default stylesheet
322
              $.vakata.css.add_sheet({ str : css_string, title : "jstree" });
323
        });
324
325
   // core functions (open, close, create, update, delete)
326
        $.jstree.plugin("core", {
327
              __init : function () {
328
                 this.data.core.locked = false;
329
                 this.data.core.to_open = this.get_settings().core.initially_open;
330
                      this.data.core.to_load = this.get_settings().core.initially_load;
331
              },
332
             defaults : {
333
                   html_titles	: false,
334
                   animation	: 500,
335
                       initially_open : [],
336
                   initially_load : [],
337
                   open_parents : true,
338
                   notify_plugins : true,
339
                 rtl			: false,
340
                 load_open	: false,
341
                     strings		: {
342
                           loading		: "Loading ...",
343
                              new_node	: "New node",
344
                         multiple_selection : "Multiple selection"
345
                      }
346
              },
347
             _fn : {
348
                        init	: function () {
349
                           this.set_focus();
350
                              if(this._get_settings().core.rtl) {
351
                                    this.get_container().addClass("jstree-rtl").css("direction", "rtl");
352
                           }
353
                              this.get_container().html("<ul><li class='jstree-last jstree-leaf'><ins>&#160;</ins><a class='jstree-loading' href='#'><ins class='jstree-icon'>&#160;</ins>" + this._get_string("loading") + "</a></li></ul>");
354
                               this.data.core.li_height = this.get_container_ul().find("li.jstree-closed, li.jstree-leaf").eq(0).height() || 18;
355
356
                             this.get_container()
357
                                   .delegate("li > ins", "click.jstree", $.proxy(function (event) {
358
                                                       var trgt = $(event.target);
359
                                                    // if(trgt.is("ins") && event.pageY - trgt.offset().top < this.data.core.li_height) { this.toggle_node(trgt); }
360
                                                        this.toggle_node(trgt);
361
                                                }, this))
362
                                      .bind("mousedown.jstree", $.proxy(function () {
363
                                                        this.set_focus(); // This used to be setTimeout(set_focus,0) - why?
364
                                            }, this))
365
                                      .bind("dblclick.jstree", function (event) {
366
                                            var sel;
367
                                               if(document.selection && document.selection.empty) { document.selection.empty(); }
368
                                             else {
369
                                                 if(window.getSelection) {
370
                                                              sel = window.getSelection();
371
                                                           try {
372
                                                                  sel.removeAllRanges();
373
                                                                 sel.collapse();
374
                                                                } catch (err) { }
375
                                                      }
376
                                              }
377
                                      });
378
                            if(this._get_settings().core.notify_plugins) {
379
                                 this.get_container()
380
                                           .bind("load_node.jstree", $.proxy(function (e, data) {
381
                                                         var o = this._get_node(data.rslt.obj),
382
                                                                 t = this;
383
                                                              if(o === -1) { o = this.get_container_ul(); }
384
                                                          if(!o.length) { return; }
385
                                                              o.find("li").each(function () {
386
                                                                        var th = $(this);
387
                                                                      if(th.data("jstree")) {
388
                                                                                $.each(th.data("jstree"), function (plugin, values) {
389
                                                                                  if(t.data[plugin] && $.isFunction(t["_" + plugin + "_notify"])) {
390
                                                                                              t["_" + plugin + "_notify"].call(t, th, values);
391
                                                                                       }
392
                                                                              });
393
                                                                    }
394
                                                              });
395
                                                    }, this));
396
                             }
397
                              if(this._get_settings().core.load_open) {
398
                                      this.get_container()
399
                                           .bind("load_node.jstree", $.proxy(function (e, data) {
400
                                                         var o = this._get_node(data.rslt.obj),
401
                                                                 t = this;
402
                                                              if(o === -1) { o = this.get_container_ul(); }
403
                                                          if(!o.length) { return; }
404
                                                              o.find("li.jstree-open:not(:has(ul))").each(function () {
405
                                                                      t.load_node(this, $.noop, $.noop);
406
                                                             });
407
                                                    }, this));
408
                             }
409
                              this.__callback();
410
                             this.load_node(-1, function () { this.loaded(); this.reload_nodes(); });
411
                       },
412
                     destroy	: function () {
413
                                var i,
414
                                 n = this.get_index(),
415
                                  s = this._get_settings(),
416
                                      _this = this;
417
418
                         $.each(s.plugins, function (i, val) {
419
                                  try { plugins[val].__destroy.apply(_this); } catch(err) { }
420
                            });
421
                            this.__callback();
422
                             // set focus to another instance if this one is focused
423
                                if(this.is_focused()) {
424
                                        for(i in instances) {
425
                                          if(instances.hasOwnProperty(i) && i != n) {
426
                                                    instances[i].set_focus();
427
                                                      break;
428
                                         }
429
                                      }
430
                              }
431
                              // if no other instance found
432
                          if(n === focused_instance) { focused_instance = -1; }
433
                          // remove all traces of jstree in the DOM (only the ones set using jstree*) and cleans all events
434
                              this.get_container()
435
                                   .unbind(".jstree")
436
                                     .undelegate(".jstree")
437
                                 .removeData("jstree_instance_id")
438
                                      .find("[class^='jstree']")
439
                                             .andSelf()
440
                                             .attr("class", function () { return this.className.replace(/jstree[^ ]*|$/ig,''); });
441
                          $(document)
442
                                    .unbind(".jstree-" + n)
443
                                        .undelegate(".jstree-" + n);
444
                           // remove the actual data
445
                              instances[n] = null;
446
                           delete instances[n];
447
                   },
448
449
                    _core_notify : function (n, data) {
450
                            if(data.opened) {
451
                                      this.open_node(n, false, true);
452
                                }
453
                      },
454
455
                    lock : function () {
456
                           this.data.core.locked = true;
457
                          this.get_container().children("ul").addClass("jstree-locked").css("opacity","0.7");
458
                            this.__callback({});
459
                   },
460
                     unlock : function () {
461
                         this.data.core.locked = false;
462
                         this.get_container().children("ul").removeClass("jstree-locked").css("opacity","1");
463
                           this.__callback({});
464
                   },
465
                     is_locked : function () { return this.data.core.locked; },
466
                     save_opened : function () {
467
                            var _this = this;
468
                              this.data.core.to_open = [];
469
                           this.get_container_ul().find("li.jstree-open").each(function () {
470
                                      if(this.id) { _this.data.core.to_open.push("#" + this.id.toString().replace(/^#/,"").replace(/\\\//g,"/").replace(/\//g,"\\\/").replace(/\\\./g,".").replace(/\./g,"\\.").replace(/\:/g,"\\:")); }
471
                             });
472
                            this.__callback(_this.data.core.to_open);
473
                      },
474
                     save_loaded : function () { },
475
                 reload_nodes : function (is_callback) {
476
                                var _this = this,
477
                                      done = true,
478
                                   current = [],
479
                                  remaining = [];
480
                                if(!is_callback) {
481
                                     this.data.core.reopen = false;
482
                                 this.data.core.refreshing = true;
483
                                      this.data.core.to_open = $.map($.makeArray(this.data.core.to_open), function (n) { return "#" + n.toString().replace(/^#/,"").replace(/\\\//g,"/").replace(/\//g,"\\\/").replace(/\\\./g,".").replace(/\./g,"\\.").replace(/\:/g,"\\:"); });
484
                                   this.data.core.to_load = $.map($.makeArray(this.data.core.to_load), function (n) { return "#" + n.toString().replace(/^#/,"").replace(/\\\//g,"/").replace(/\//g,"\\\/").replace(/\\\./g,".").replace(/\./g,"\\.").replace(/\:/g,"\\:"); });
485
                                   if(this.data.core.to_open.length) {
486
                                            this.data.core.to_load = this.data.core.to_load.concat(this.data.core.to_open);
487
                                        }
488
                              }
489
                              if(this.data.core.to_load.length) {
490
                                    $.each(this.data.core.to_load, function (i, val) {
491
                                             if(val == "#") { return true; }
492
                                                if($(val).length) { current.push(val); }
493
                                               else { remaining.push(val); }
494
                                  });
495
                                    if(current.length) {
496
                                           this.data.core.to_load = remaining;
497
                                            $.each(current, function (i, val) {
498
                                                    if(!_this._is_loaded(val)) {
499
                                                           _this.load_node(val, function () { _this.reload_nodes(true); }, function () { _this.reload_nodes(true); });
500
                                                            done = false;
501
                                                  }
502
                                              });
503
                                    }
504
                              }
505
                              if(this.data.core.to_open.length) {
506
                                    $.each(this.data.core.to_open, function (i, val) {
507
                                             _this.open_node(val, false, true);
508
                                     });
509
                            }
510
                              if(done) {
511
                                     // TODO: find a more elegant approach to syncronizing returning requests
512
                                       if(this.data.core.reopen) { clearTimeout(this.data.core.reopen); }
513
                                     this.data.core.reopen = setTimeout(function () { _this.__callback({}, _this); }, 50);
514
                                  this.data.core.refreshing = false;
515
                                     this.reopen();
516
                         }
517
                      },
518
                     reopen : function () {
519
                         var _this = this;
520
                              if(this.data.core.to_open.length) {
521
                                    $.each(this.data.core.to_open, function (i, val) {
522
                                             _this.open_node(val, false, true);
523
                                     });
524
                            }
525
                              this.__callback({});
526
                   },
527
                     refresh : function (obj) {
528
                             var _this = this;
529
                              this.save_opened();
530
                            if(!obj) { obj = -1; }
531
                         obj = this._get_node(obj);
532
                             if(!obj) { obj = -1; }
533
                         if(obj !== -1) { obj.children("UL").remove(); }
534
                                else { this.get_container_ul().empty(); }
535
                              this.load_node(obj, function () { _this.__callback({ "obj" : obj}); _this.reload_nodes(); });
536
                  },
537
                     // Dummy function to fire after the first load (so that there is a jstree.loaded event)
538
                        loaded	: function () {
539
                         this.__callback();
540
                     },
541
                     // deal with focus
542
                     set_focus	: function () {
543
                              if(this.is_focused()) { return; }
544
                              var f = $.jstree._focused();
545
                           if(f) { f.unset_focus(); }
546
547
                            this.get_container().addClass("jstree-focused");
548
                               focused_instance = this.get_index();
549
                           this.__callback();
550
                     },
551
                     is_focused	: function () {
552
                             return focused_instance == this.get_index();
553
                   },
554
                     unset_focus	: function () {
555
                            if(this.is_focused()) {
556
                                        this.get_container().removeClass("jstree-focused");
557
                                    focused_instance = -1;
558
                         }
559
                              this.__callback();
560
                     },
561
562
                    // traverse
563
                    _get_node		: function (obj) {
564
                          var $obj = $(obj, this.get_container());
565
                               if($obj.is(".jstree") || obj == -1) { return -1; }
566
                             $obj = $obj.closest("li", this.get_container());
567
                               return $obj.length ? $obj : false;
568
                     },
569
                     _get_next		: function (obj, strict) {
570
                          obj = this._get_node(obj);
571
                             if(obj === -1) { return this.get_container().find("> ul > li:first-child"); }
572
                          if(!obj.length) { return false; }
573
                              if(strict) { return (obj.nextAll("li").size() > 0) ? obj.nextAll("li:eq(0)") : false; }
574
575
                               if(obj.hasClass("jstree-open")) { return obj.find("li:eq(0)"); }
576
                               else if(obj.nextAll("li").size() > 0) { return obj.nextAll("li:eq(0)"); }
577
                              else { return obj.parentsUntil(".jstree","li").next("li").eq(0); }
578
                     },
579
                     _get_prev		: function (obj, strict) {
580
                          obj = this._get_node(obj);
581
                             if(obj === -1) { return this.get_container().find("> ul > li:last-child"); }
582
                           if(!obj.length) { return false; }
583
                              if(strict) { return (obj.prevAll("li").length > 0) ? obj.prevAll("li:eq(0)") : false; }
584
585
                               if(obj.prev("li").length) {
586
                                    obj = obj.prev("li").eq(0);
587
                                    while(obj.hasClass("jstree-open")) { obj = obj.children("ul:eq(0)").children("li:last"); }
588
                                     return obj;
589
                            }
590
                              else { var o = obj.parentsUntil(".jstree","li:eq(0)"); return o.length ? o : false; }
591
                  },
592
                     _get_parent		: function (obj) {
593
                                obj = this._get_node(obj);
594
                             if(obj == -1 || !obj.length) { return false; }
595
                         var o = obj.parentsUntil(".jstree", "li:eq(0)");
596
                               return o.length ? o : -1;
597
                      },
598
                     _get_children	: function (obj) {
599
                               obj = this._get_node(obj);
600
                             if(obj === -1) { return this.get_container().children("ul:eq(0)").children("li"); }
601
                            if(!obj.length) { return false; }
602
                              return obj.children("ul:eq(0)").children("li");
603
                        },
604
                     get_path		: function (obj, id_mode) {
605
                          var p = [],
606
                                    _this = this;
607
                          obj = this._get_node(obj);
608
                             if(obj === -1 || !obj || !obj.length) { return false; }
609
                                obj.parentsUntil(".jstree", "li").each(function () {
610
                                   p.push( id_mode ? this.id : _this.get_text(this) );
611
                            });
612
                            p.reverse();
613
                           p.push( id_mode ? obj.attr("id") : this.get_text(obj) );
614
                               return p;
615
                      },
616
617
                    // string functions
618
                    _get_string : function (key) {
619
                         return this._get_settings().core.strings[key] || key;
620
                  },
621
622
                    is_open		: function (obj) { obj = this._get_node(obj); return obj && obj !== -1 && obj.hasClass("jstree-open"); },
623
                     is_closed	: function (obj) { obj = this._get_node(obj); return obj && obj !== -1 && obj.hasClass("jstree-closed"); },
624
                  is_leaf		: function (obj) { obj = this._get_node(obj); return obj && obj !== -1 && obj.hasClass("jstree-leaf"); },
625
                     correct_state	: function (obj) {
626
                               obj = this._get_node(obj);
627
                             if(!obj || obj === -1) { return false; }
628
                               obj.removeClass("jstree-closed jstree-open").addClass("jstree-leaf").children("ul").remove();
629
                          this.__callback({ "obj" : obj });
630
                      },
631
                     // open/close
632
                  open_node	: function (obj, callback, skip_animation) {
633
                         obj = this._get_node(obj);
634
                             if(!obj.length) { return false; }
635
                              if(!obj.hasClass("jstree-closed")) { if(callback) { callback.call(); } return false; }
636
                         var s = skip_animation || is_ie6 ? 0 : this._get_settings().core.animation,
637
                                    t = this;
638
                              if(!this._is_loaded(obj)) {
639
                                    obj.children("a").addClass("jstree-loading");
640
                                  this.load_node(obj, function () { t.open_node(obj, callback, skip_animation); }, callback);
641
                            }
642
                              else {
643
                                 if(this._get_settings().core.open_parents) {
644
                                           obj.parentsUntil(".jstree",".jstree-closed").each(function () {
645
                                                        t.open_node(this, false, true);
646
                                                });
647
                                    }
648
                                      if(s) { obj.children("ul").css("display","none"); }
649
                                    obj.removeClass("jstree-closed").addClass("jstree-open").children("a").removeClass("jstree-loading");
650
                                  if(s) { obj.children("ul").stop(true, true).slideDown(s, function () { this.style.display = ""; t.after_open(obj); }); }
651
                                       else { t.after_open(obj); }
652
                                    this.__callback({ "obj" : obj });
653
                                      if(callback) { callback.call(); }
654
                              }
655
                      },
656
                     after_open	: function (obj) { this.__callback({ "obj" : obj }); },
657
                     close_node	: function (obj, skip_animation) {
658
                          obj = this._get_node(obj);
659
                             var s = skip_animation || is_ie6 ? 0 : this._get_settings().core.animation,
660
                                    t = this;
661
                              if(!obj.length || !obj.hasClass("jstree-open")) { return false; }
662
                              if(s) { obj.children("ul").attr("style","display:block !important"); }
663
                         obj.removeClass("jstree-open").addClass("jstree-closed");
664
                              if(s) { obj.children("ul").stop(true, true).slideUp(s, function () { this.style.display = ""; t.after_close(obj); }); }
665
                                else { t.after_close(obj); }
666
                           this.__callback({ "obj" : obj });
667
                      },
668
                     after_close	: function (obj) { this.__callback({ "obj" : obj }); },
669
                    toggle_node	: function (obj) {
670
                         obj = this._get_node(obj);
671
                             if(obj.hasClass("jstree-closed")) { return this.open_node(obj); }
672
                              if(obj.hasClass("jstree-open")) { return this.close_node(obj); }
673
                       },
674
                     open_all	: function (obj, do_animation, original_obj) {
675
                                obj = obj ? this._get_node(obj) : -1;
676
                          if(!obj || obj === -1) { obj = this.get_container_ul(); }
677
                              if(original_obj) {
678
                                     obj = obj.find("li.jstree-closed");
679
                            }
680
                              else {
681
                                 original_obj = obj;
682
                                    if(obj.is(".jstree-closed")) { obj = obj.find("li.jstree-closed").andSelf(); }
683
                                 else { obj = obj.find("li.jstree-closed"); }
684
                           }
685
                              var _this = this;
686
                              obj.each(function () {
687
                                 var __this = this;
688
                                     if(!_this._is_loaded(this)) { _this.open_node(this, function() { _this.open_all(__this, do_animation, original_obj); }, !do_animation); }
689
                                      else { _this.open_node(this, false, !do_animation); }
690
                          });
691
                            // so that callback is fired AFTER all nodes are open
692
                          if(original_obj.find('li.jstree-closed').length === 0) { this.__callback({ "obj" : original_obj }); }
693
                  },
694
                     close_all	: function (obj, do_animation) {
695
                             var _this = this;
696
                              obj = obj ? this._get_node(obj) : this.get_container();
697
                                if(!obj || obj === -1) { obj = this.get_container_ul(); }
698
                              obj.find("li.jstree-open").andSelf().each(function () { _this.close_node(this, !do_animation); });
699
                             this.__callback({ "obj" : obj });
700
                      },
701
                     clean_node	: function (obj) {
702
                          obj = obj && obj != -1 ? $(obj) : this.get_container_ul();
703
                             obj = obj.is("li") ? obj.find("li").andSelf() : obj.find("li");
704
                                obj.removeClass("jstree-last")
705
                                 .filter("li:last-child").addClass("jstree-last").end()
706
                                 .filter(":has(li)")
707
                                            .not(".jstree-open").removeClass("jstree-leaf").addClass("jstree-closed");
708
                             obj.not(".jstree-open, .jstree-closed").addClass("jstree-leaf").children("ul").remove();
709
                               this.__callback({ "obj" : obj });
710
                      },
711
                     // rollback
712
                    get_rollback : function () {
713
                           this.__callback();
714
                             return { i : this.get_index(), h : this.get_container().children("ul").clone(true), d : this.data };
715
                   },
716
                     set_rollback : function (html, data) {
717
                         this.get_container().empty().append(html);
718
                             this.data = data;
719
                              this.__callback();
720
                     },
721
                     // Dummy functions to be overwritten by any datastore plugin included
722
                  load_node	: function (obj, s_call, e_call) { this.__callback({ "obj" : obj }); },
723
                      _is_loaded	: function (obj) { return true; },
724
725
                 // Basic operations: create
726
                    create_node	: function (obj, position, js, callback, is_loaded) {
727
                              obj = this._get_node(obj);
728
                             position = typeof position === "undefined" ? "last" : position;
729
                                var d = $("<li />"),
730
                                   s = this._get_settings().core,
731
                                 tmp;
732
733
                          if(obj !== -1 && !obj.length) { return false; }
734
                                if(!is_loaded && !this._is_loaded(obj)) { this.load_node(obj, function () { this.create_node(obj, position, js, callback, true); }); return false; }
735
736
                          this.__rollback();
737
738
                            if(typeof js === "string") { js = { "data" : js }; }
739
                           if(!js) { js = {}; }
740
                           if(js.attr) { d.attr(js.attr); }
741
                               if(js.metadata) { d.data(js.metadata); }
742
                               if(js.state) { d.addClass("jstree-" + js.state); }
743
                             if(!js.data) { js.data = this._get_string("new_node"); }
744
                               if(!$.isArray(js.data)) { tmp = js.data; js.data = []; js.data.push(tmp); }
745
                            $.each(js.data, function (i, m) {
746
                                      tmp = $("<a />");
747
                                      if($.isFunction(m)) { m = m.call(this, js); }
748
                                  if(typeof m == "string") { tmp.attr('href','#')[ s.html_titles ? "html" : "text" ](m); }
749
                                       else {
750
                                         if(!m.attr) { m.attr = {}; }
751
                                           if(!m.attr.href) { m.attr.href = '#'; }
752
                                                tmp.attr(m.attr)[ s.html_titles ? "html" : "text" ](m.title);
753
                                          if(m.language) { tmp.addClass(m.language); }
754
                                   }
755
                                      tmp.prepend("<ins class='jstree-icon'>&#160;</ins>");
756
                                  if(!m.icon && js.icon) { m.icon = js.icon; }
757
                                   if(m.icon) {
758
                                           if(m.icon.indexOf("/") === -1) { tmp.children("ins").addClass(m.icon); }
759
                                               else { tmp.children("ins").css("background","url('" + m.icon + "') center center no-repeat"); }
760
                                        }
761
                                      d.append(tmp);
762
                         });
763
                            d.prepend("<ins class='jstree-icon'>&#160;</ins>");
764
                            if(obj === -1) {
765
                                       obj = this.get_container();
766
                                    if(position === "before") { position = "first"; }
767
                                      if(position === "after") { position = "last"; }
768
                                }
769
                              switch(position) {
770
                                     case "before": obj.before(d); tmp = this._get_parent(obj); break;
771
                                      case "after" : obj.after(d);  tmp = this._get_parent(obj); break;
772
                                      case "inside":
773
                                 case "first" :
774
                                         if(!obj.children("ul").length) { obj.append("<ul />"); }
775
                                               obj.children("ul").prepend(d);
776
                                         tmp = obj;
777
                                             break;
778
                                 case "last":
779
                                           if(!obj.children("ul").length) { obj.append("<ul />"); }
780
                                               obj.children("ul").append(d);
781
                                          tmp = obj;
782
                                             break;
783
                                 default:
784
                                               if(!obj.children("ul").length) { obj.append("<ul />"); }
785
                                               if(!position) { position = 0; }
786
                                                tmp = obj.children("ul").children("li").eq(position);
787
                                          if(tmp.length) { tmp.before(d); }
788
                                              else { obj.children("ul").append(d); }
789
                                         tmp = obj;
790
                                             break;
791
                         }
792
                              if(tmp === -1 || tmp.get(0) === this.get_container().get(0)) { tmp = -1; }
793
                             this.clean_node(tmp);
794
                          this.__callback({ "obj" : d, "parent" : tmp });
795
                                if(callback) { callback.call(this, d); }
796
                               return d;
797
                      },
798
                     // Basic operations: rename (deal with text)
799
                   get_text	: function (obj) {
800
                            obj = this._get_node(obj);
801
                             if(!obj.length) { return false; }
802
                              var s = this._get_settings().core.html_titles;
803
                         obj = obj.children("a:eq(0)");
804
                         if(s) {
805
                                        obj = obj.clone();
806
                                     obj.children("INS").remove();
807
                                  return obj.html();
808
                             }
809
                              else {
810
                                 obj = obj.contents().filter(function() { return this.nodeType == 3; })[0];
811
                                     return obj.nodeValue;
812
                          }
813
                      },
814
                     set_text	: function (obj, val) {
815
                               obj = this._get_node(obj);
816
                             if(!obj.length) { return false; }
817
                              obj = obj.children("a:eq(0)");
818
                         if(this._get_settings().core.html_titles) {
819
                                    var tmp = obj.children("INS").clone();
820
                                 obj.html(val).prepend(tmp);
821
                                    this.__callback({ "obj" : obj, "name" : val });
822
                                        return true;
823
                           }
824
                              else {
825
                                 obj = obj.contents().filter(function() { return this.nodeType == 3; })[0];
826
                                     this.__callback({ "obj" : obj, "name" : val });
827
                                        return (obj.nodeValue = val);
828
                          }
829
                      },
830
                     rename_node : function (obj, val) {
831
                            obj = this._get_node(obj);
832
                             this.__rollback();
833
                             if(obj && obj.length && this.set_text.apply(this, Array.prototype.slice.call(arguments))) { this.__callback({ "obj" : obj, "name" : val }); }
834
                  },
835
                     // Basic operations: deleting nodes
836
                    delete_node : function (obj) {
837
                         obj = this._get_node(obj);
838
                             if(!obj.length) { return false; }
839
                              this.__rollback();
840
                             var p = this._get_parent(obj), prev = $([]), t = this;
841
                         obj.each(function () {
842
                                 prev = prev.add(t._get_prev(this));
843
                            });
844
                            obj = obj.detach();
845
                            if(p !== -1 && p.find("> ul > li").length === 0) {
846
                                     p.removeClass("jstree-open jstree-closed").addClass("jstree-leaf");
847
                            }
848
                              this.clean_node(p);
849
                            this.__callback({ "obj" : obj, "prev" : prev, "parent" : p });
850
                         return obj;
851
                    },
852
                     prepare_move : function (o, r, pos, cb, is_cb) {
853
                               var p = {};
854
855
                           p.ot = $.jstree._reference(o) || this;
856
                         p.o = p.ot._get_node(o);
857
                               p.r = r === - 1 ? -1 : this._get_node(r);
858
                              p.p = (typeof pos === "undefined" || pos === false) ? "last" : pos; // TODO: move to a setting
859
                         if(!is_cb && prepared_move.o && prepared_move.o[0] === p.o[0] && prepared_move.r[0] === p.r[0] && prepared_move.p === p.p) {
860
                                   this.__callback(prepared_move);
861
                                        if(cb) { cb.call(this, prepared_move); }
862
                                       return;
863
                                }
864
                              p.ot = $.jstree._reference(p.o) || this;
865
                               p.rt = $.jstree._reference(p.r) || this; // r === -1 ? p.ot : $.jstree._reference(p.r) || this
866
                         if(p.r === -1 || !p.r) {
867
                                       p.cr = -1;
868
                                     switch(p.p) {
869
                                          case "first":
870
                                          case "before":
871
                                         case "inside":
872
                                                 p.cp = 0;
873
                                                      break;
874
                                         case "after":
875
                                          case "last":
876
                                                   p.cp = p.rt.get_container().find(" > ul > li").length;
877
                                                 break;
878
                                         default:
879
                                                       p.cp = p.p;
880
                                                    break;
881
                                 }
882
                              }
883
                              else {
884
                                 if(!/^(before|after)$/.test(p.p) && !this._is_loaded(p.r)) {
885
                                           return this.load_node(p.r, function () { this.prepare_move(o, r, pos, cb, true); });
886
                                   }
887
                                      switch(p.p) {
888
                                          case "before":
889
                                                 p.cp = p.r.index();
890
                                                    p.cr = p.rt._get_parent(p.r);
891
                                                  break;
892
                                         case "after":
893
                                                  p.cp = p.r.index() + 1;
894
                                                        p.cr = p.rt._get_parent(p.r);
895
                                                  break;
896
                                         case "inside":
897
                                         case "first":
898
                                                  p.cp = 0;
899
                                                      p.cr = p.r;
900
                                                    break;
901
                                         case "last":
902
                                                   p.cp = p.r.find(" > ul > li").length;
903
                                                  p.cr = p.r;
904
                                                    break;
905
                                         default:
906
                                                       p.cp = p.p;
907
                                                    p.cr = p.r;
908
                                                    break;
909
                                 }
910
                              }
911
                              p.np = p.cr == -1 ? p.rt.get_container() : p.cr;
912
                               p.op = p.ot._get_parent(p.o);
913
                          p.cop = p.o.index();
914
                           if(p.op === -1) { p.op = p.ot ? p.ot.get_container() : this.get_container(); }
915
                         if(!/^(before|after)$/.test(p.p) && p.op && p.np && p.op[0] === p.np[0] && p.o.index() < p.cp) { p.cp++; }
916
                             //if(p.p === "before" && p.op && p.np && p.op[0] === p.np[0] && p.o.index() < p.cp) { p.cp--; }
917
                                p.or = p.np.find(" > ul > li:nth-child(" + (p.cp + 1) + ")");
918
                          prepared_move = p;
919
                             this.__callback(prepared_move);
920
                                if(cb) { cb.call(this, prepared_move); }
921
                       },
922
                     check_move : function () {
923
                             var obj = prepared_move, ret = true, r = obj.r === -1 ? this.get_container() : obj.r;
924
                          if(!obj || !obj.o || obj.or[0] === obj.o[0]) { return false; }
925
                         if(obj.op && obj.np && obj.op[0] === obj.np[0] && obj.cp - 1 === obj.o.index()) { return false; }
926
                              obj.o.each(function () {
927
                                       if(r.parentsUntil(".jstree", "li").andSelf().index(this) !== -1) { ret = false; return false; }
928
                                });
929
                            return ret;
930
                    },
931
                     move_node : function (obj, ref, position, is_copy, is_prepared, skip_check) {
932
                          if(!is_prepared) {
933
                                     return this.prepare_move(obj, ref, position, function (p) {
934
                                            this.move_node(p, false, false, is_copy, true, skip_check);
935
                                    });
936
                            }
937
                              if(is_copy) {
938
                                  prepared_move.cy = true;
939
                               }
940
                              if(!skip_check && !this.check_move()) { return false; }
941
942
                               this.__rollback();
943
                             var o = false;
944
                         if(is_copy) {
945
                                  o = obj.o.clone(true);
946
                                 o.find("*[id]").andSelf().each(function () {
947
                                           if(this.id) { this.id = "copy_" + this.id; }
948
                                   });
949
                            }
950
                              else { o = obj.o; }
951
952
                           if(obj.or.length) { obj.or.before(o); }
953
                                else {
954
                                 if(!obj.np.children("ul").length) { $("<ul />").appendTo(obj.np); }
955
                                    obj.np.children("ul:eq(0)").append(o);
956
                         }
957
958
                             try {
959
                                  obj.ot.clean_node(obj.op);
960
                                     obj.rt.clean_node(obj.np);
961
                                     if(!obj.op.find("> ul > li").length) {
962
                                         obj.op.removeClass("jstree-open jstree-closed").addClass("jstree-leaf").children("ul").remove();
963
                                       }
964
                              } catch (e) { }
965
966
                               if(is_copy) {
967
                                  prepared_move.cy = true;
968
                                       prepared_move.oc = o;
969
                          }
970
                              this.__callback(prepared_move);
971
                                return prepared_move;
972
                  },
973
                     _get_move : function () { return prepared_move; }
974
              }
975
      });
976
})(jQuery);
977
//*/
978
979
/*
980
 * jsTree ui plugin
981
 * This plugins handles selecting/deselecting/hovering/dehovering nodes
982
 */
983
(function ($) {
984
       var scrollbar_width, e1, e2;
985
   $(function() {
986
         if (/msie/.test(navigator.userAgent.toLowerCase())) {
987
                  e1 = $('<textarea cols="10" rows="2"></textarea>').css({ position: 'absolute', top: -1000, left: 0 }).appendTo('body');
988
                        e2 = $('<textarea cols="10" rows="2" style="overflow: hidden;"></textarea>').css({ position: 'absolute', top: -1000, left: 0 }).appendTo('body');
989
                      scrollbar_width = e1.width() - e2.width();
990
                     e1.add(e2).remove();
991
           }
992
              else {
993
                 e1 = $('<div />').css({ width: 100, height: 100, overflow: 'auto', position: 'absolute', top: -1000, left: 0 })
994
                                        .prependTo('body').append('<div />').find('div').css({ width: '100%', height: 200 });
995
                  scrollbar_width = 100 - e1.width();
996
                    e1.parent().remove();
997
          }
998
      });
999
    $.jstree.plugin("ui", {
1000
                __init : function () {
1001
                 this.data.ui.selected = $();
1002
                   this.data.ui.last_selected = false;
1003
                    this.data.ui.hovered = null;
1004
                   this.data.ui.to_select = this.get_settings().ui.initially_select;
1005
1006
                     this.get_container()
1007
                           .delegate("a", "click.jstree", $.proxy(function (event) {
1008
                                              event.preventDefault();
1009
                                                event.currentTarget.blur();
1010
                                            if(!$(event.currentTarget).hasClass("jstree-loading")) {
1011
                                                       this.select_node(event.currentTarget, true, event);
1012
                                            }
1013
                                      }, this))
1014
                              .delegate("a", "mouseenter.jstree", $.proxy(function (event) {
1015
                                         if(!$(event.currentTarget).hasClass("jstree-loading")) {
1016
                                                       this.hover_node(event.target);
1017
                                         }
1018
                                      }, this))
1019
                              .delegate("a", "mouseleave.jstree", $.proxy(function (event) {
1020
                                         if(!$(event.currentTarget).hasClass("jstree-loading")) {
1021
                                                       this.dehover_node(event.target);
1022
                                               }
1023
                                      }, this))
1024
                              .bind("reopen.jstree", $.proxy(function () {
1025
                                           this.reselect();
1026
                                       }, this))
1027
                              .bind("get_rollback.jstree", $.proxy(function () {
1028
                                             this.dehover_node();
1029
                                           this.save_selected();
1030
                                  }, this))
1031
                              .bind("set_rollback.jstree", $.proxy(function () {
1032
                                             this.reselect();
1033
                                       }, this))
1034
                              .bind("close_node.jstree", $.proxy(function (event, data) {
1035
                                            var s = this._get_settings().ui,
1036
                                                       obj = this._get_node(data.rslt.obj),
1037
                                                   clk = (obj && obj.length) ? obj.children("ul").find("a.jstree-clicked") : $(),
1038
                                                 _this = this;
1039
                                          if(s.selected_parent_close === false || !clk.length) { return; }
1040
                                               clk.each(function () {
1041
                                                 _this.deselect_node(this);
1042
                                                     if(s.selected_parent_close === "select_parent") { _this.select_node(obj); }
1043
                                            });
1044
                                    }, this))
1045
                              .bind("delete_node.jstree", $.proxy(function (event, data) {
1046
                                           var s = this._get_settings().ui.select_prev_on_delete,
1047
                                                 obj = this._get_node(data.rslt.obj),
1048
                                                   clk = (obj && obj.length) ? obj.find("a.jstree-clicked") : [],
1049
                                                 _this = this;
1050
                                          clk.each(function () { _this.deselect_node(this); });
1051
                                          if(s && clk.length) {
1052
                                                  data.rslt.prev.each(function () {
1053
                                                              if(this.parentNode) { _this.select_node(this); return false; /* if return false is removed all prev nodes will be selected */}
1054
                                                 });
1055
                                            }
1056
                                      }, this))
1057
                              .bind("move_node.jstree", $.proxy(function (event, data) {
1058
                                             if(data.rslt.cy) {
1059
                                                     data.rslt.oc.find("a.jstree-clicked").removeClass("jstree-clicked");
1060
                                           }
1061
                                      }, this));
1062
             },
1063
             defaults : {
1064
                   select_limit : -1, // 0, 1, 2 ... or -1 for unlimited
1065
                  select_multiple_modifier : "ctrl", // on, or ctrl, shift, alt
1066
                  select_range_modifier : "shift",
1067
                       selected_parent_close : "select_parent", // false, "deselect", "select_parent"
1068
                 selected_parent_open : true,
1069
                   select_prev_on_delete : true,
1070
                  disable_selecting_children : false,
1071
                    initially_select : []
1072
          },
1073
             _fn : {
1074
                        _get_node : function (obj, allow_multiple) {
1075
                           if(typeof obj === "undefined" || obj === null) { return allow_multiple ? this.data.ui.selected : this.data.ui.last_selected; }
1076
                         var $obj = $(obj, this.get_container());
1077
                               if($obj.is(".jstree") || obj == -1) { return -1; }
1078
                             $obj = $obj.closest("li", this.get_container());
1079
                               return $obj.length ? $obj : false;
1080
                     },
1081
                     _ui_notify : function (n, data) {
1082
                              if(data.selected) {
1083
                                    this.select_node(n, false);
1084
                            }
1085
                      },
1086
                     save_selected : function () {
1087
                          var _this = this;
1088
                              this.data.ui.to_select = [];
1089
                           this.data.ui.selected.each(function () { if(this.id) { _this.data.ui.to_select.push("#" + this.id.toString().replace(/^#/,"").replace(/\\\//g,"/").replace(/\//g,"\\\/").replace(/\\\./g,".").replace(/\./g,"\\.").replace(/\:/g,"\\:")); } });
1090
                                this.__callback(this.data.ui.to_select);
1091
                       },
1092
                     reselect : function () {
1093
                               var _this = this,
1094
                                      s = this.data.ui.to_select;
1095
                            s = $.map($.makeArray(s), function (n) { return "#" + n.toString().replace(/^#/,"").replace(/\\\//g,"/").replace(/\//g,"\\\/").replace(/\\\./g,".").replace(/\./g,"\\.").replace(/\:/g,"\\:"); });
1096
                             // this.deselect_all(); WHY deselect, breaks plugin state notifier?
1097
                            $.each(s, function (i, val) { if(val && val !== "#") { _this.select_node(val); } });
1098
                           this.data.ui.selected = this.data.ui.selected.filter(function () { return this.parentNode; });
1099
                         this.__callback();
1100
                     },
1101
                     refresh : function (obj) {
1102
                             this.save_selected();
1103
                          return this.__call_old();
1104
                      },
1105
                     hover_node : function (obj) {
1106
                          obj = this._get_node(obj);
1107
                             if(!obj.length) { return false; }
1108
                              //if(this.data.ui.hovered && obj.get(0) === this.data.ui.hovered.get(0)) { return; }
1109
                           if(!obj.hasClass("jstree-hovered")) { this.dehover_node(); }
1110
                           this.data.ui.hovered = obj.children("a").addClass("jstree-hovered").parent();
1111
                          this._fix_scroll(obj);
1112
                         this.__callback({ "obj" : obj });
1113
                      },
1114
                     dehover_node : function () {
1115
                           var obj = this.data.ui.hovered, p;
1116
                             if(!obj || !obj.length) { return false; }
1117
                              p = obj.children("a").removeClass("jstree-hovered").parent();
1118
                          if(this.data.ui.hovered[0] === p[0]) { this.data.ui.hovered = null; }
1119
                          this.__callback({ "obj" : obj });
1120
                      },
1121
                     select_node : function (obj, check, e) {
1122
                               obj = this._get_node(obj);
1123
                             if(obj == -1 || !obj || !obj.length) { return false; }
1124
                         var s = this._get_settings().ui,
1125
                                       is_multiple = (s.select_multiple_modifier == "on" || (s.select_multiple_modifier !== false && e && e[s.select_multiple_modifier + "Key"])),
1126
                                    is_range = (s.select_range_modifier !== false && e && e[s.select_range_modifier + "Key"] && this.data.ui.last_selected && this.data.ui.last_selected[0] !== obj[0] && this.data.ui.last_selected.parent()[0] === obj.parent()[0]),
1127
                                     is_selected = this.is_selected(obj),
1128
                                   proceed = true,
1129
                                        t = this;
1130
                              if(check) {
1131
                                    if(s.disable_selecting_children && is_multiple &&
1132
                                              (
1133
                                                      (obj.parentsUntil(".jstree","li").children("a.jstree-clicked").length) ||
1134
                                                      (obj.children("ul").find("a.jstree-clicked:eq(0)").length)
1135
                                             )
1136
                                      ) {
1137
                                            return false;
1138
                                  }
1139
                                      proceed = false;
1140
                                       switch(!0) {
1141
                                           case (is_range):
1142
                                                       this.data.ui.last_selected.addClass("jstree-last-selected");
1143
                                                   obj = obj[ obj.index() < this.data.ui.last_selected.index() ? "nextUntil" : "prevUntil" ](".jstree-last-selected").andSelf();
1144
                                                  if(s.select_limit == -1 || obj.length < s.select_limit) {
1145
                                                              this.data.ui.last_selected.removeClass("jstree-last-selected");
1146
                                                                this.data.ui.selected.each(function () {
1147
                                                                       if(this !== t.data.ui.last_selected[0]) { t.deselect_node(this); }
1148
                                                             });
1149
                                                            is_selected = false;
1150
                                                           proceed = true;
1151
                                                        }
1152
                                                      else {
1153
                                                         proceed = false;
1154
                                                       }
1155
                                                      break;
1156
                                         case (is_selected && !is_multiple):
1157
                                                    this.deselect_all();
1158
                                                   is_selected = false;
1159
                                                   proceed = true;
1160
                                                        break;
1161
                                         case (!is_selected && !is_multiple):
1162
                                                   if(s.select_limit == -1 || s.select_limit > 0) {
1163
                                                               this.deselect_all();
1164
                                                           proceed = true;
1165
                                                        }
1166
                                                      break;
1167
                                         case (is_selected && is_multiple):
1168
                                                     this.deselect_node(obj);
1169
                                                       break;
1170
                                         case (!is_selected && is_multiple):
1171
                                                    if(s.select_limit == -1 || this.data.ui.selected.length + 1 <= s.select_limit) {
1172
                                                               proceed = true;
1173
                                                        }
1174
                                                      break;
1175
                                 }
1176
                              }
1177
                              if(proceed && !is_selected) {
1178
                                  if(!is_range) { this.data.ui.last_selected = obj; }
1179
                                    obj.children("a").addClass("jstree-clicked");
1180
                                  if(s.selected_parent_open) {
1181
                                           obj.parents(".jstree-closed").each(function () { t.open_node(this, false, true); });
1182
                                   }
1183
                                      this.data.ui.selected = this.data.ui.selected.add(obj);
1184
                                        this._fix_scroll(obj.eq(0));
1185
                                   this.__callback({ "obj" : obj, "e" : e });
1186
                             }
1187
                      },
1188
                     _fix_scroll : function (obj) {
1189
                         var c = this.get_container()[0], t;
1190
                            if(c.scrollHeight > c.offsetHeight) {
1191
                                  obj = this._get_node(obj);
1192
                                     if(!obj || obj === -1 || !obj.length || !obj.is(":visible")) { return; }
1193
                                       t = obj.offset().top - this.get_container().offset().top;
1194
                                      if(t < 0) {
1195
                                            c.scrollTop = c.scrollTop + t - 1;
1196
                                     }
1197
                                      if(t + this.data.core.li_height + (c.scrollWidth > c.offsetWidth ? scrollbar_width : 0) > c.offsetHeight) {
1198
                                            c.scrollTop = c.scrollTop + (t - c.offsetHeight + this.data.core.li_height + 1 + (c.scrollWidth > c.offsetWidth ? scrollbar_width : 0));
1199
                                       }
1200
                              }
1201
                      },
1202
                     deselect_node : function (obj) {
1203
                               obj = this._get_node(obj);
1204
                             if(!obj.length) { return false; }
1205
                              if(this.is_selected(obj)) {
1206
                                    obj.children("a").removeClass("jstree-clicked");
1207
                                       this.data.ui.selected = this.data.ui.selected.not(obj);
1208
                                        if(this.data.ui.last_selected.get(0) === obj.get(0)) { this.data.ui.last_selected = this.data.ui.selected.eq(0); }
1209
                                     this.__callback({ "obj" : obj });
1210
                              }
1211
                      },
1212
                     toggle_select : function (obj) {
1213
                               obj = this._get_node(obj);
1214
                             if(!obj.length) { return false; }
1215
                              if(this.is_selected(obj)) { this.deselect_node(obj); }
1216
                         else { this.select_node(obj); }
1217
                        },
1218
                     is_selected : function (obj) { return this.data.ui.selected.index(this._get_node(obj)) >= 0; },
1219
                        get_selected : function (context) {
1220
                            return context ? $(context).find("a.jstree-clicked").parent() : this.data.ui.selected;
1221
                 },
1222
                     deselect_all : function (context) {
1223
                            var ret = context ? $(context).find("a.jstree-clicked").parent() : this.get_container().find("a.jstree-clicked").parent();
1224
                             ret.children("a.jstree-clicked").removeClass("jstree-clicked");
1225
                                this.data.ui.selected = $([]);
1226
                         this.data.ui.last_selected = false;
1227
                            this.__callback({ "obj" : ret });
1228
                      }
1229
              }
1230
      });
1231
    // include the selection plugin by default
1232
     $.jstree.defaults.plugins.push("ui");
1233
})(jQuery);
1234
//*/
1235
1236
/*
1237
 * jsTree CRRM plugin
1238
 * Handles creating/renaming/removing/moving nodes by user interaction.
1239
 */
1240
(function ($) {
1241
   $.jstree.plugin("crrm", {
1242
              __init : function () {
1243
                 this.get_container()
1244
                           .bind("move_node.jstree", $.proxy(function (e, data) {
1245
                                 if(this._get_settings().crrm.move.open_onmove) {
1246
                                               var t = this;
1247
                                          data.rslt.np.parentsUntil(".jstree").andSelf().filter(".jstree-closed").each(function () {
1248
                                                     t.open_node(this, false, true);
1249
                                                });
1250
                                    }
1251
                              }, this));
1252
             },
1253
             defaults : {
1254
                   input_width_limit : 200,
1255
                       move : {
1256
                               always_copy			: false, // false, true or "multitree"
1257
                           open_onmove			: true,
1258
                          default_position	: "last",
1259
                             check_move			: function (m) { return true; }
1260
                   }
1261
              },
1262
             _fn : {
1263
                        _show_input : function (obj, callback) {
1264
                               obj = this._get_node(obj);
1265
                             var rtl = this._get_settings().core.rtl,
1266
                                       w = this._get_settings().crrm.input_width_limit,
1267
                                       w1 = obj.children("ins").width(),
1268
                                      w2 = obj.find("> a:visible > ins").width() * obj.find("> a:visible > ins").length,
1269
                                     t = this.get_text(obj),
1270
                                        h1 = $("<div />", { css : { "position" : "absolute", "top" : "-200px", "left" : (rtl ? "0px" : "-1000px"), "visibility" : "hidden" } }).appendTo("body"),
1271
                                      h2 = obj.css("position","relative").append(
1272
                                    $("<input />", {
1273
                                               "value" : t,
1274
                                           "class" : "jstree-rename-input",
1275
                                               // "size" : t.length,
1276
                                          "css" : {
1277
                                                      "padding" : "0",
1278
                                                       "border" : "1px solid silver",
1279
                                                 "position" : "absolute",
1280
                                                       "left"  : (rtl ? "auto" : (w1 + w2 + 4) + "px"),
1281
                                                       "right" : (rtl ? (w1 + w2 + 4) + "px" : "auto"),
1282
                                                       "top" : "0px",
1283
                                                 "height" : (this.data.core.li_height - 2) + "px",
1284
                                                      "lineHeight" : (this.data.core.li_height - 2) + "px",
1285
                                                  "width" : "150px" // will be set a bit further down
1286
                                            },
1287
                                             "blur" : $.proxy(function () {
1288
                                                 var i = obj.children(".jstree-rename-input"),
1289
                                                          v = i.val();
1290
                                                   if(v === "") { v = t; }
1291
                                                        h1.remove();
1292
                                                   i.remove(); // rollback purposes
1293
                                                       this.set_text(obj,t); // rollback purposes
1294
                                                     this.rename_node(obj, v);
1295
                                                      callback.call(this, obj, v, t);
1296
                                                        obj.css("position","");
1297
                                                }, this),
1298
                                              "keyup" : function (event) {
1299
                                                   var key = event.keyCode || event.which;
1300
                                                        if(key == 27) { this.value = t; this.blur(); return; }
1301
                                                 else if(key == 13) { this.blur(); return; }
1302
                                                    else {
1303
                                                         h2.width(Math.min(h1.text("pW" + this.value).width(),w));
1304
                                                      }
1305
                                              },
1306
                                             "keypress" : function(event) {
1307
                                                 var key = event.keyCode || event.which;
1308
                                                        if(key == 13) { return false; }
1309
                                                }
1310
                                      })
1311
                             ).children(".jstree-rename-input");
1312
                            this.set_text(obj, "");
1313
                                h1.css({
1314
                                               fontFamily		: h2.css('fontFamily')		|| '',
1315
                                             fontSize		: h2.css('fontSize')		|| '',
1316
                                         fontWeight		: h2.css('fontWeight')		|| '',
1317
                                             fontStyle		: h2.css('fontStyle')		|| '',
1318
                                               fontStretch		: h2.css('fontStretch')		|| '',
1319
                                           fontVariant		: h2.css('fontVariant')		|| '',
1320
                                           letterSpacing	: h2.css('letterSpacing')	|| '',
1321
                                         wordSpacing		: h2.css('wordSpacing')		|| ''
1322
                            });
1323
                            h2.width(Math.min(h1.text("pW" + h2[0].value).width(),w))[0].select();
1324
                 },
1325
                     rename : function (obj) {
1326
                              obj = this._get_node(obj);
1327
                             this.__rollback();
1328
                             var f = this.__callback;
1329
                               this._show_input(obj, function (obj, new_name, old_name) {
1330
                                     f.call(this, { "obj" : obj, "new_name" : new_name, "old_name" : old_name });
1331
                           });
1332
                    },
1333
                     create : function (obj, position, js, callback, skip_rename) {
1334
                         var t, _this = this;
1335
                           obj = this._get_node(obj);
1336
                             if(!obj) { obj = -1; }
1337
                         this.__rollback();
1338
                             t = this.create_node(obj, position, js, function (t) {
1339
                                 var p = this._get_parent(t),
1340
                                           pos = $(t).index();
1341
                                    if(callback) { callback.call(this, t); }
1342
                                       if(p.length && p.hasClass("jstree-closed")) { this.open_node(p, false, true); }
1343
                                        if(!skip_rename) {
1344
                                             this._show_input(t, function (obj, new_name, old_name) {
1345
                                                       _this.__callback({ "obj" : obj, "name" : new_name, "parent" : p, "position" : pos });
1346
                                          });
1347
                                    }
1348
                                      else { _this.__callback({ "obj" : t, "name" : this.get_text(t), "parent" : p, "position" : pos }); }
1349
                           });
1350
                            return t;
1351
                      },
1352
                     remove : function (obj) {
1353
                              obj = this._get_node(obj, true);
1354
                               var p = this._get_parent(obj), prev = this._get_prev(obj);
1355
                             this.__rollback();
1356
                             obj = this.delete_node(obj);
1357
                           if(obj !== false) { this.__callback({ "obj" : obj, "prev" : prev, "parent" : p }); }
1358
                   },
1359
                     check_move : function () {
1360
                             if(!this.__call_old()) { return false; }
1361
                               var s = this._get_settings().crrm.move;
1362
                                if(!s.check_move.call(this, this._get_move())) { return false; }
1363
                               return true;
1364
                   },
1365
                     move_node : function (obj, ref, position, is_copy, is_prepared, skip_check) {
1366
                          var s = this._get_settings().crrm.move;
1367
                                if(!is_prepared) {
1368
                                     if(typeof position === "undefined") { position = s.default_position; }
1369
                                 if(position === "inside" && !s.default_position.match(/^(before|after)$/)) { position = s.default_position; }
1370
                                  return this.__call_old(true, obj, ref, position, is_copy, false, skip_check);
1371
                          }
1372
                              // if the move is already prepared
1373
                             if(s.always_copy === true || (s.always_copy === "multitree" && obj.rt.get_index() !== obj.ot.get_index() )) {
1374
                                  is_copy = true;
1375
                                }
1376
                              this.__call_old(true, obj, ref, position, is_copy, true, skip_check);
1377
                  },
1378
1379
                    cut : function (obj) {
1380
                         obj = this._get_node(obj, true);
1381
                               if(!obj || !obj.length) { return false; }
1382
                              this.data.crrm.cp_nodes = false;
1383
                               this.data.crrm.ct_nodes = obj;
1384
                         this.__callback({ "obj" : obj });
1385
                      },
1386
                     copy : function (obj) {
1387
                                obj = this._get_node(obj, true);
1388
                               if(!obj || !obj.length) { return false; }
1389
                              this.data.crrm.ct_nodes = false;
1390
                               this.data.crrm.cp_nodes = obj;
1391
                         this.__callback({ "obj" : obj });
1392
                      },
1393
                     paste : function (obj) {
1394
                               obj = this._get_node(obj);
1395
                             if(!obj || !obj.length) { return false; }
1396
                              var nodes = this.data.crrm.ct_nodes ? this.data.crrm.ct_nodes : this.data.crrm.cp_nodes;
1397
                               if(!this.data.crrm.ct_nodes && !this.data.crrm.cp_nodes) { return false; }
1398
                             if(this.data.crrm.ct_nodes) { this.move_node(this.data.crrm.ct_nodes, obj); this.data.crrm.ct_nodes = false; }
1399
                         if(this.data.crrm.cp_nodes) { this.move_node(this.data.crrm.cp_nodes, obj, false, true); }
1400
                             this.__callback({ "obj" : obj, "nodes" : nodes });
1401
                     }
1402
              }
1403
      });
1404
    // include the crr plugin by default
1405
   // $.jstree.defaults.plugins.push("crrm");
1406
})(jQuery);
1407
//*/
1408
1409
/*
1410
 * jsTree themes plugin
1411
 * Handles loading and setting themes, as well as detecting path to themes, etc.
1412
 */
1413
(function ($) {
1414
   var themes_loaded = [];
1415
        // this variable stores the path to the themes folder - if left as false - it will be autodetected
1416
     $.jstree._themes = false;
1417
      $.jstree.plugin("themes", {
1418
            __init : function () {
1419
                 this.get_container()
1420
                           .bind("init.jstree", $.proxy(function () {
1421
                                             var s = this._get_settings().themes;
1422
                                           this.data.themes.dots = s.dots;
1423
                                                this.data.themes.icons = s.icons;
1424
                                              this.set_theme(s.theme, s.url);
1425
                                        }, this))
1426
                              .bind("loaded.jstree", $.proxy(function () {
1427
                                           // bound here too, as simple HTML tree's won't honor dots & icons otherwise
1428
                                            if(!this.data.themes.dots) { this.hide_dots(); }
1429
                                               else { this.show_dots(); }
1430
                                             if(!this.data.themes.icons) { this.hide_icons(); }
1431
                                             else { this.show_icons(); }
1432
                                    }, this));
1433
             },
1434
             defaults : {
1435
                   theme : "default",
1436
                     url : false,
1437
                   dots : true,
1438
                   icons : true
1439
           },
1440
             _fn : {
1441
                        set_theme : function (theme_name, theme_url) {
1442
                         if(!theme_name) { return false; }
1443
                              if(!theme_url) { theme_url = $.jstree._themes + theme_name + '/style.css'; }
1444
                           if($.inArray(theme_url, themes_loaded) == -1) {
1445
                                        $.vakata.css.add_sheet({ "url" : theme_url });
1446
                                 themes_loaded.push(theme_url);
1447
                         }
1448
                              if(this.data.themes.theme != theme_name) {
1449
                                     this.get_container().removeClass('jstree-' + this.data.themes.theme);
1450
                                  this.data.themes.theme = theme_name;
1451
                           }
1452
                              this.get_container().addClass('jstree-' + theme_name);
1453
                         if(!this.data.themes.dots) { this.hide_dots(); }
1454
                               else { this.show_dots(); }
1455
                             if(!this.data.themes.icons) { this.hide_icons(); }
1456
                             else { this.show_icons(); }
1457
                            this.__callback();
1458
                     },
1459
                     get_theme	: function () { return this.data.themes.theme; },
1460
1461
                   show_dots	: function () { this.data.themes.dots = true; this.get_container().children("ul").removeClass("jstree-no-dots"); },
1462
                  hide_dots	: function () { this.data.themes.dots = false; this.get_container().children("ul").addClass("jstree-no-dots"); },
1463
                    toggle_dots	: function () { if(this.data.themes.dots) { this.hide_dots(); } else { this.show_dots(); } },
1464
1465
                     show_icons	: function () { this.data.themes.icons = true; this.get_container().children("ul").removeClass("jstree-no-icons"); },
1466
                       hide_icons	: function () { this.data.themes.icons = false; this.get_container().children("ul").addClass("jstree-no-icons"); },
1467
                 toggle_icons: function () { if(this.data.themes.icons) { this.hide_icons(); } else { this.show_icons(); } }
1468
            }
1469
      });
1470
    // autodetect themes path
1471
      $(function () {
1472
                if($.jstree._themes === false) {
1473
                       $("script").each(function () {
1474
                         if(this.src.toString().match(/jquery\.jstree[^\/]*?\.js(\?.*)?$/)) {
1475
                                   $.jstree._themes = this.src.toString().replace(/jquery\.jstree[^\/]*?\.js(\?.*)?$/, "") + 'themes/';
1476
                                   return false;
1477
                          }
1478
                      });
1479
            }
1480
              if($.jstree._themes === false) { $.jstree._themes = "themes/"; }
1481
       });
1482
    // include the themes plugin by default
1483
        $.jstree.defaults.plugins.push("themes");
1484
})(jQuery);
1485
//*/
1486
1487
/*
1488
 * jsTree hotkeys plugin
1489
 * Enables keyboard navigation for all tree instances
1490
 * Depends on the jstree ui & jquery hotkeys plugins
1491
 */
1492
(function ($) {
1493
 var bound = [];
1494
        function exec(i, event) {
1495
              var f = $.jstree._focused(), tmp;
1496
              if(f && f.data && f.data.hotkeys && f.data.hotkeys.enabled) {
1497
                  tmp = f._get_settings().hotkeys[i];
1498
                    if(tmp) { return tmp.call(f, event); }
1499
         }
1500
      }
1501
      $.jstree.plugin("hotkeys", {
1502
           __init : function () {
1503
                 if(typeof $.hotkeys === "undefined") { throw "jsTree hotkeys: jQuery hotkeys plugin not included."; }
1504
                  if(!this.data.ui) { throw "jsTree hotkeys: jsTree UI plugin not included."; }
1505
                  $.each(this._get_settings().hotkeys, function (i, v) {
1506
                         if(v !== false && $.inArray(i, bound) == -1) {
1507
                                 $(document).bind("keydown", i, function (event) { return exec(i, event); });
1508
                                   bound.push(i);
1509
                         }
1510
                      });
1511
                    this.get_container()
1512
                           .bind("lock.jstree", $.proxy(function () {
1513
                                             if(this.data.hotkeys.enabled) { this.data.hotkeys.enabled = false; this.data.hotkeys.revert = true; }
1514
                                  }, this))
1515
                              .bind("unlock.jstree", $.proxy(function () {
1516
                                           if(this.data.hotkeys.revert) { this.data.hotkeys.enabled = true; }
1517
                                     }, this));
1518
                     this.enable_hotkeys();
1519
         },
1520
             defaults : {
1521
                   "up" : function () {
1522
                           var o = this.data.ui.hovered || this.data.ui.last_selected || -1;
1523
                              this.hover_node(this._get_prev(o));
1524
                            return false;
1525
                  },
1526
                     "ctrl+up" : function () {
1527
                              var o = this.data.ui.hovered || this.data.ui.last_selected || -1;
1528
                              this.hover_node(this._get_prev(o));
1529
                            return false;
1530
                  },
1531
                     "shift+up" : function () {
1532
                             var o = this.data.ui.hovered || this.data.ui.last_selected || -1;
1533
                              this.hover_node(this._get_prev(o));
1534
                            return false;
1535
                  },
1536
                     "down" : function () {
1537
                         var o = this.data.ui.hovered || this.data.ui.last_selected || -1;
1538
                              this.hover_node(this._get_next(o));
1539
                            return false;
1540
                  },
1541
                     "ctrl+down" : function () {
1542
                            var o = this.data.ui.hovered || this.data.ui.last_selected || -1;
1543
                              this.hover_node(this._get_next(o));
1544
                            return false;
1545
                  },
1546
                     "shift+down" : function () {
1547
                           var o = this.data.ui.hovered || this.data.ui.last_selected || -1;
1548
                              this.hover_node(this._get_next(o));
1549
                            return false;
1550
                  },
1551
                     "left" : function () {
1552
                         var o = this.data.ui.hovered || this.data.ui.last_selected;
1553
                            if(o) {
1554
                                        if(o.hasClass("jstree-open")) { this.close_node(o); }
1555
                                  else { this.hover_node(this._get_prev(o)); }
1556
                           }
1557
                              return false;
1558
                  },
1559
                     "ctrl+left" : function () {
1560
                            var o = this.data.ui.hovered || this.data.ui.last_selected;
1561
                            if(o) {
1562
                                        if(o.hasClass("jstree-open")) { this.close_node(o); }
1563
                                  else { this.hover_node(this._get_prev(o)); }
1564
                           }
1565
                              return false;
1566
                  },
1567
                     "shift+left" : function () {
1568
                           var o = this.data.ui.hovered || this.data.ui.last_selected;
1569
                            if(o) {
1570
                                        if(o.hasClass("jstree-open")) { this.close_node(o); }
1571
                                  else { this.hover_node(this._get_prev(o)); }
1572
                           }
1573
                              return false;
1574
                  },
1575
                     "right" : function () {
1576
                                var o = this.data.ui.hovered || this.data.ui.last_selected;
1577
                            if(o && o.length) {
1578
                                    if(o.hasClass("jstree-closed")) { this.open_node(o); }
1579
                                 else { this.hover_node(this._get_next(o)); }
1580
                           }
1581
                              return false;
1582
                  },
1583
                     "ctrl+right" : function () {
1584
                           var o = this.data.ui.hovered || this.data.ui.last_selected;
1585
                            if(o && o.length) {
1586
                                    if(o.hasClass("jstree-closed")) { this.open_node(o); }
1587
                                 else { this.hover_node(this._get_next(o)); }
1588
                           }
1589
                              return false;
1590
                  },
1591
                     "shift+right" : function () {
1592
                          var o = this.data.ui.hovered || this.data.ui.last_selected;
1593
                            if(o && o.length) {
1594
                                    if(o.hasClass("jstree-closed")) { this.open_node(o); }
1595
                                 else { this.hover_node(this._get_next(o)); }
1596
                           }
1597
                              return false;
1598
                  },
1599
                     "space" : function () {
1600
                                if(this.data.ui.hovered) { this.data.ui.hovered.children("a:eq(0)").click(); }
1601
                         return false;
1602
                  },
1603
                     "ctrl+space" : function (event) {
1604
                              event.type = "click";
1605
                          if(this.data.ui.hovered) { this.data.ui.hovered.children("a:eq(0)").trigger(event); }
1606
                          return false;
1607
                  },
1608
                     "shift+space" : function (event) {
1609
                             event.type = "click";
1610
                          if(this.data.ui.hovered) { this.data.ui.hovered.children("a:eq(0)").trigger(event); }
1611
                          return false;
1612
                  },
1613
                     "f2" : function () { this.rename(this.data.ui.hovered || this.data.ui.last_selected); },
1614
                       "del" : function () { this.remove(this.data.ui.hovered || this._get_node(null)); }
1615
             },
1616
             _fn : {
1617
                        enable_hotkeys : function () {
1618
                         this.data.hotkeys.enabled = true;
1619
                      },
1620
                     disable_hotkeys : function () {
1621
                                this.data.hotkeys.enabled = false;
1622
                     }
1623
              }
1624
      });
1625
})(jQuery);
1626
//*/
1627
1628
/*
1629
 * jsTree JSON plugin
1630
 * The JSON data store. Datastores are build by overriding the `load_node` and `_is_loaded` functions.
1631
 */
1632
(function ($) {
1633
      $.jstree.plugin("json_data", {
1634
         __init : function() {
1635
                  var s = this._get_settings().json_data;
1636
                        if(s.progressive_unload) {
1637
                             this.get_container().bind("after_close.jstree", function (e, data) {
1638
                                   data.rslt.obj.children("ul").remove();
1639
                         });
1640
                    }
1641
              },
1642
             defaults : {
1643
                   // `data` can be a function:
1644
                   //  * accepts two arguments - node being loaded and a callback to pass the result to
1645
                   //  * will be executed in the current tree's scope & ajax won't be supported
1646
                   data : false,
1647
                  ajax : false,
1648
                  correct_state : true,
1649
                  progressive_render : false,
1650
                    progressive_unload : false
1651
             },
1652
             _fn : {
1653
                        load_node : function (obj, s_call, e_call) { var _this = this; this.load_node_json(obj, function () { _this.__callback({ "obj" : _this._get_node(obj) }); s_call.call(this); }, e_call); },
1654
                    _is_loaded : function (obj) {
1655
                          var s = this._get_settings().json_data;
1656
                                obj = this._get_node(obj);
1657
                             return obj == -1 || !obj || (!s.ajax && !s.progressive_render && !$.isFunction(s.data)) || obj.is(".jstree-open, .jstree-leaf") || obj.children("ul").children("li").length > 0;
1658
                       },
1659
                     refresh : function (obj) {
1660
                             obj = this._get_node(obj);
1661
                             var s = this._get_settings().json_data;
1662
                                if(obj && obj !== -1 && s.progressive_unload && ($.isFunction(s.data) || !!s.ajax)) {
1663
                                  obj.removeData("jstree_children");
1664
                             }
1665
                              return this.__call_old();
1666
                      },
1667
                     load_node_json : function (obj, s_call, e_call) {
1668
                              var s = this.get_settings().json_data, d,
1669
                                      error_func = function () {},
1670
                                   success_func = function () {};
1671
                         obj = this._get_node(obj);
1672
1673
                            if(obj && obj !== -1 && (s.progressive_render || s.progressive_unload) && !obj.is(".jstree-open, .jstree-leaf") && obj.children("ul").children("li").length === 0 && obj.data("jstree_children")) {
1674
                                    d = this._parse_json(obj.data("jstree_children"), obj);
1675
                                        if(d) {
1676
                                                obj.append(d);
1677
                                         if(!s.progressive_unload) { obj.removeData("jstree_children"); }
1678
                                       }
1679
                                      this.clean_node(obj);
1680
                                  if(s_call) { s_call.call(this); }
1681
                                      return;
1682
                                }
1683
1684
                             if(obj && obj !== -1) {
1685
                                        if(obj.data("jstree_is_loading")) { return; }
1686
                                  else { obj.data("jstree_is_loading",true); }
1687
                           }
1688
                              switch(!0) {
1689
                                   case (!s.data && !s.ajax): throw "Neither data nor ajax settings supplied.";
1690
                                   // function option added here for easier model integration (also supporting async - see callback)
1691
                                      case ($.isFunction(s.data)):
1692
                                           s.data.call(this, obj, $.proxy(function (d) {
1693
                                                  d = this._parse_json(d, obj);
1694
                                                  if(!d) {
1695
                                                               if(obj === -1 || !obj) {
1696
                                                                       if(s.correct_state) { this.get_container().children("ul").empty(); }
1697
                                                           }
1698
                                                              else {
1699
                                                                 obj.children("a.jstree-loading").removeClass("jstree-loading");
1700
                                                                        obj.removeData("jstree_is_loading");
1701
                                                                   if(s.correct_state) { this.correct_state(obj); }
1702
                                                               }
1703
                                                              if(e_call) { e_call.call(this); }
1704
                                                      }
1705
                                                      else {
1706
                                                         if(obj === -1 || !obj) { this.get_container().children("ul").empty().append(d.children()); }
1707
                                                           else { obj.append(d).children("a.jstree-loading").removeClass("jstree-loading"); obj.removeData("jstree_is_loading"); }
1708
                                                                this.clean_node(obj);
1709
                                                          if(s_call) { s_call.call(this); }
1710
                                                      }
1711
                                              }, this));
1712
                                             break;
1713
                                 case (!!s.data && !s.ajax) || (!!s.data && !!s.ajax && (!obj || obj === -1)):
1714
                                          if(!obj || obj == -1) {
1715
                                                        d = this._parse_json(s.data, obj);
1716
                                                     if(d) {
1717
                                                                this.get_container().children("ul").empty().append(d.children());
1718
                                                              this.clean_node();
1719
                                                     }
1720
                                                      else {
1721
                                                         if(s.correct_state) { this.get_container().children("ul").empty(); }
1722
                                                   }
1723
                                              }
1724
                                              if(s_call) { s_call.call(this); }
1725
                                              break;
1726
                                 case (!s.data && !!s.ajax) || (!!s.data && !!s.ajax && obj && obj !== -1):
1727
                                             error_func = function (x, t, e) {
1728
                                                      var ef = this.get_settings().json_data.ajax.error;
1729
                                                     if(ef) { ef.call(this, x, t, e); }
1730
                                                     if(obj != -1 && obj.length) {
1731
                                                          obj.children("a.jstree-loading").removeClass("jstree-loading");
1732
                                                                obj.removeData("jstree_is_loading");
1733
                                                           if(t === "success" && s.correct_state) { this.correct_state(obj); }
1734
                                                    }
1735
                                                      else {
1736
                                                         if(t === "success" && s.correct_state) { this.get_container().children("ul").empty(); }
1737
                                                        }
1738
                                                      if(e_call) { e_call.call(this); }
1739
                                              };
1740
                                             success_func = function (d, t, x) {
1741
                                                    var sf = this.get_settings().json_data.ajax.success;
1742
                                                   if(sf) { d = sf.call(this,d,t,x) || d; }
1743
                                                       if(d === "" || (d && d.toString && d.toString().replace(/^[\s\n]+$/,"") === "") || (!$.isArray(d) && !$.isPlainObject(d))) {
1744
                                                           return error_func.call(this, x, t, "");
1745
                                                        }
1746
                                                      d = this._parse_json(d, obj);
1747
                                                  if(d) {
1748
                                                                if(obj === -1 || !obj) { this.get_container().children("ul").empty().append(d.children()); }
1749
                                                           else { obj.append(d).children("a.jstree-loading").removeClass("jstree-loading"); obj.removeData("jstree_is_loading"); }
1750
                                                                this.clean_node(obj);
1751
                                                          if(s_call) { s_call.call(this); }
1752
                                                      }
1753
                                                      else {
1754
                                                         if(obj === -1 || !obj) {
1755
                                                                       if(s.correct_state) {
1756
                                                                          this.get_container().children("ul").empty();
1757
                                                                           if(s_call) { s_call.call(this); }
1758
                                                                      }
1759
                                                              }
1760
                                                              else {
1761
                                                                 obj.children("a.jstree-loading").removeClass("jstree-loading");
1762
                                                                        obj.removeData("jstree_is_loading");
1763
                                                                   if(s.correct_state) {
1764
                                                                          this.correct_state(obj);
1765
                                                                               if(s_call) { s_call.call(this); }
1766
                                                                      }
1767
                                                              }
1768
                                                      }
1769
                                              };
1770
                                             s.ajax.context = this;
1771
                                         s.ajax.error = error_func;
1772
                                             s.ajax.success = success_func;
1773
                                         if(!s.ajax.dataType) { s.ajax.dataType = "json"; }
1774
                                             if($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, obj); }
1775
                                              if($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, obj); }
1776
                                           $.ajax(s.ajax);
1777
                                                break;
1778
                         }
1779
                      },
1780
                     _parse_json : function (js, obj, is_callback) {
1781
                                var d = false,
1782
                                 p = this._get_settings(),
1783
                                      s = p.json_data,
1784
                                       t = p.core.html_titles,
1785
                                        tmp, i, j, ul1, ul2;
1786
1787
                          if(!js) { return d; }
1788
                          if(s.progressive_unload && obj && obj !== -1) {
1789
                                        obj.data("jstree_children", d);
1790
                                }
1791
                              if($.isArray(js)) {
1792
                                    d = $();
1793
                                       if(!js.length) { return false; }
1794
                                       for(i = 0, j = js.length; i < j; i++) {
1795
                                                tmp = this._parse_json(js[i], obj, true);
1796
                                              if(tmp.length) { d = d.add(tmp); }
1797
                                     }
1798
                              }
1799
                              else {
1800
                                 if(typeof js == "string") { js = { data : js }; }
1801
                                      if(!js.data && js.data !== "") { return d; }
1802
                                   d = $("<li />");
1803
                                       if(js.attr) { d.attr(js.attr); }
1804
                                       if(js.metadata) { d.data(js.metadata); }
1805
                                       if(js.state) { d.addClass("jstree-" + js.state); }
1806
                                     if(!$.isArray(js.data)) { tmp = js.data; js.data = []; js.data.push(tmp); }
1807
                                    $.each(js.data, function (i, m) {
1808
                                              tmp = $("<a />");
1809
                                              if($.isFunction(m)) { m = m.call(this, js); }
1810
                                          if(typeof m == "string") { tmp.attr('href','#')[ t ? "html" : "text" ](m); }
1811
                                           else {
1812
                                                 if(!m.attr) { m.attr = {}; }
1813
                                                   if(!m.attr.href) { m.attr.href = '#'; }
1814
                                                        tmp.attr(m.attr)[ t ? "html" : "text" ](m.title);
1815
                                                      if(m.language) { tmp.addClass(m.language); }
1816
                                           }
1817
                                              tmp.prepend("<ins class='jstree-icon'>&#160;</ins>");
1818
                                          if(!m.icon && js.icon) { m.icon = js.icon; }
1819
                                           if(m.icon) {
1820
                                                   if(m.icon.indexOf("/") === -1) { tmp.children("ins").addClass(m.icon); }
1821
                                                       else { tmp.children("ins").css("background","url('" + m.icon + "') center center no-repeat"); }
1822
                                                }
1823
                                              d.append(tmp);
1824
                                 });
1825
                                    d.prepend("<ins class='jstree-icon'>&#160;</ins>");
1826
                                    if(js.children) {
1827
                                              if(s.progressive_render && js.state !== "open") {
1828
                                                      d.addClass("jstree-closed").data("jstree_children", js.children);
1829
                                              }
1830
                                              else {
1831
                                                 if(s.progressive_unload) { d.data("jstree_children", js.children); }
1832
                                                   if($.isArray(js.children) && js.children.length) {
1833
                                                             tmp = this._parse_json(js.children, obj, true);
1834
                                                                if(tmp.length) {
1835
                                                                       ul2 = $("<ul />");
1836
                                                                     ul2.append(tmp);
1837
                                                                       d.append(ul2);
1838
                                                         }
1839
                                                      }
1840
                                              }
1841
                                      }
1842
                              }
1843
                              if(!is_callback) {
1844
                                     ul1 = $("<ul />");
1845
                                     ul1.append(d);
1846
                                 d = ul1;
1847
                               }
1848
                              return d;
1849
                      },
1850
                     get_json : function (obj, li_attr, a_attr, is_callback) {
1851
                              var result = [],
1852
                                       s = this._get_settings(),
1853
                                      _this = this,
1854
                                  tmp1, tmp2, li, a, t, lang;
1855
                            obj = this._get_node(obj);
1856
                             if(!obj || obj === -1) { obj = this.get_container().find("> ul > li"); }
1857
                               li_attr = $.isArray(li_attr) ? li_attr : [ "id", "class" ];
1858
                            if(!is_callback && this.data.types) { li_attr.push(s.types.type_attr); }
1859
                               a_attr = $.isArray(a_attr) ? a_attr : [ ];
1860
1861
                            obj.each(function () {
1862
                                 li = $(this);
1863
                                  tmp1 = { data : [] };
1864
                                  if(li_attr.length) { tmp1.attr = { }; }
1865
                                        $.each(li_attr, function (i, v) {
1866
                                              tmp2 = li.attr(v);
1867
                                             if(tmp2 && tmp2.length && tmp2.replace(/jstree[^ ]*/ig,'').length) {
1868
                                                   tmp1.attr[v] = (" " + tmp2).replace(/ jstree[^ ]*/ig,'').replace(/\s+$/ig," ").replace(/^ /,"").replace(/ $/,"");
1869
                                              }
1870
                                      });
1871
                                    if(li.hasClass("jstree-open")) { tmp1.state = "open"; }
1872
                                        if(li.hasClass("jstree-closed")) { tmp1.state = "closed"; }
1873
                                    if(li.data()) { tmp1.metadata = li.data(); }
1874
                                   a = li.children("a");
1875
                                  a.each(function () {
1876
                                           t = $(this);
1877
                                           if(
1878
                                                    a_attr.length ||
1879
                                                       $.inArray("languages", s.plugins) !== -1 ||
1880
                                                    t.children("ins").get(0).style.backgroundImage.length ||
1881
                                                       (t.children("ins").get(0).className && t.children("ins").get(0).className.replace(/jstree[^ ]*|$/ig,'').length)
1882
                                                ) {
1883
                                                    lang = false;
1884
                                                  if($.inArray("languages", s.plugins) !== -1 && $.isArray(s.languages) && s.languages.length) {
1885
                                                         $.each(s.languages, function (l, lv) {
1886
                                                                 if(t.hasClass(lv)) {
1887
                                                                           lang = lv;
1888
                                                                             return false;
1889
                                                                  }
1890
                                                              });
1891
                                                    }
1892
                                                      tmp2 = { attr : { }, title : _this.get_text(t, lang) };
1893
                                                        $.each(a_attr, function (k, z) {
1894
                                                               tmp2.attr[z] = (" " + (t.attr(z) || "")).replace(/ jstree[^ ]*/ig,'').replace(/\s+$/ig," ").replace(/^ /,"").replace(/ $/,"");
1895
                                                 });
1896
                                                    if($.inArray("languages", s.plugins) !== -1 && $.isArray(s.languages) && s.languages.length) {
1897
                                                         $.each(s.languages, function (k, z) {
1898
                                                                  if(t.hasClass(z)) { tmp2.language = z; return true; }
1899
                                                          });
1900
                                                    }
1901
                                                      if(t.children("ins").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/^\s+$/ig,"").length) {
1902
                                                            tmp2.icon = t.children("ins").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/\s+$/ig," ").replace(/^ /,"").replace(/ $/,"");
1903
                                                  }
1904
                                                      if(t.children("ins").get(0).style.backgroundImage.length) {
1905
                                                            tmp2.icon = t.children("ins").get(0).style.backgroundImage.replace("url(","").replace(")","");
1906
                                                 }
1907
                                              }
1908
                                              else {
1909
                                                 tmp2 = _this.get_text(t);
1910
                                              }
1911
                                              if(a.length > 1) { tmp1.data.push(tmp2); }
1912
                                             else { tmp1.data = tmp2; }
1913
                                     });
1914
                                    li = li.find("> ul > li");
1915
                                     if(li.length) { tmp1.children = _this.get_json(li, li_attr, a_attr, true); }
1916
                                   result.push(tmp1);
1917
                             });
1918
                            return result;
1919
                 }
1920
              }
1921
      });
1922
})(jQuery);
1923
//*/
1924
1925
/*
1926
 * jsTree languages plugin
1927
 * Adds support for multiple language versions in one tree
1928
 * This basically allows for many titles coexisting in one node, but only one of them being visible at any given time
1929
 * This is useful for maintaining the same structure in many languages (hence the name of the plugin)
1930
 */
1931
(function ($) {
1932
 $.jstree.plugin("languages", {
1933
         __init : function () { this._load_css();  },
1934
           defaults : [],
1935
         _fn : {
1936
                        set_lang : function (i) {
1937
                              var langs = this._get_settings().languages,
1938
                                    st = false,
1939
                                    selector = ".jstree-" + this.get_index() + ' a';
1940
                               if(!$.isArray(langs) || langs.length === 0) { return false; }
1941
                          if($.inArray(i,langs) == -1) {
1942
                                 if(!!langs[i]) { i = langs[i]; }
1943
                                       else { return false; }
1944
                         }
1945
                              if(i == this.data.languages.current_language) { return true; }
1946
                         st = $.vakata.css.get_css(selector + "." + this.data.languages.current_language, false, this.data.languages.language_css);
1947
                             if(st !== false) { st.style.display = "none"; }
1948
                                st = $.vakata.css.get_css(selector + "." + i, false, this.data.languages.language_css);
1949
                                if(st !== false) { st.style.display = ""; }
1950
                            this.data.languages.current_language = i;
1951
                              this.__callback(i);
1952
                            return true;
1953
                   },
1954
                     get_lang : function () {
1955
                               return this.data.languages.current_language;
1956
                   },
1957
                     _get_string : function (key, lang) {
1958
                           var langs = this._get_settings().languages,
1959
                                    s = this._get_settings().core.strings;
1960
                         if($.isArray(langs) && langs.length) {
1961
                                 lang = (lang && $.inArray(lang,langs) != -1) ? lang : this.data.languages.current_language;
1962
                            }
1963
                              if(s[lang] && s[lang][key]) { return s[lang][key]; }
1964
                           if(s[key]) { return s[key]; }
1965
                          return key;
1966
                    },
1967
                     get_text : function (obj, lang) {
1968
                              obj = this._get_node(obj) || this.data.ui.last_selected;
1969
                               if(!obj.size()) { return false; }
1970
                              var langs = this._get_settings().languages,
1971
                                    s = this._get_settings().core.html_titles;
1972
                             if($.isArray(langs) && langs.length) {
1973
                                 lang = (lang && $.inArray(lang,langs) != -1) ? lang : this.data.languages.current_language;
1974
                                    obj = obj.children("a." + lang);
1975
                               }
1976
                              else { obj = obj.children("a:eq(0)"); }
1977
                                if(s) {
1978
                                        obj = obj.clone();
1979
                                     obj.children("INS").remove();
1980
                                  return obj.html();
1981
                             }
1982
                              else {
1983
                                 obj = obj.contents().filter(function() { return this.nodeType == 3; })[0];
1984
                                     return obj.nodeValue;
1985
                          }
1986
                      },
1987
                     set_text : function (obj, val, lang) {
1988
                         obj = this._get_node(obj) || this.data.ui.last_selected;
1989
                               if(!obj.size()) { return false; }
1990
                              var langs = this._get_settings().languages,
1991
                                    s = this._get_settings().core.html_titles,
1992
                                     tmp;
1993
                           if($.isArray(langs) && langs.length) {
1994
                                 lang = (lang && $.inArray(lang,langs) != -1) ? lang : this.data.languages.current_language;
1995
                                    obj = obj.children("a." + lang);
1996
                               }
1997
                              else { obj = obj.children("a:eq(0)"); }
1998
                                if(s) {
1999
                                        tmp = obj.children("INS").clone();
2000
                                     obj.html(val).prepend(tmp);
2001
                                    this.__callback({ "obj" : obj, "name" : val, "lang" : lang });
2002
                                 return true;
2003
                           }
2004
                              else {
2005
                                 obj = obj.contents().filter(function() { return this.nodeType == 3; })[0];
2006
                                     this.__callback({ "obj" : obj, "name" : val, "lang" : lang });
2007
                                 return (obj.nodeValue = val);
2008
                          }
2009
                      },
2010
                     _load_css : function () {
2011
                              var langs = this._get_settings().languages,
2012
                                    str = "/* languages css */",
2013
                                   selector = ".jstree-" + this.get_index() + ' a',
2014
                                       ln;
2015
                            if($.isArray(langs) && langs.length) {
2016
                                 this.data.languages.current_language = langs[0];
2017
                                       for(ln = 0; ln < langs.length; ln++) {
2018
                                         str += selector + "." + langs[ln] + " {";
2019
                                              if(langs[ln] != this.data.languages.current_language) { str += " display:none; "; }
2020
                                            str += " } ";
2021
                                  }
2022
                                      this.data.languages.language_css = $.vakata.css.add_sheet({ 'str' : str, 'title' : "jstree-languages" });
2023
                              }
2024
                      },
2025
                     create_node : function (obj, position, js, callback) {
2026
                         var t = this.__call_old(true, obj, position, js, function (t) {
2027
                                        var langs = this._get_settings().languages,
2028
                                            a = t.children("a"),
2029
                                           ln;
2030
                                    if($.isArray(langs) && langs.length) {
2031
                                         for(ln = 0; ln < langs.length; ln++) {
2032
                                                 if(!a.is("." + langs[ln])) {
2033
                                                           t.append(a.eq(0).clone().removeClass(langs.join(" ")).addClass(langs[ln]));
2034
                                                    }
2035
                                              }
2036
                                              a.not("." + langs.join(", .")).remove();
2037
                                       }
2038
                                      if(callback) { callback.call(this, t); }
2039
                               });
2040
                            return t;
2041
                      }
2042
              }
2043
      });
2044
})(jQuery);
2045
//*/
2046
2047
/*
2048
 * jsTree cookies plugin
2049
 * Stores the currently opened/selected nodes in a cookie and then restores them
2050
 * Depends on the jquery.cookie plugin
2051
 */
2052
(function ($) {
2053
  $.jstree.plugin("cookies", {
2054
           __init : function () {
2055
                 if(typeof $.cookie === "undefined") { throw "jsTree cookie: jQuery cookie plugin not included."; }
2056
2057
                    var s = this._get_settings().cookies,
2058
                          tmp;
2059
                   if(!!s.save_loaded) {
2060
                          tmp = $.cookie(s.save_loaded);
2061
                         if(tmp && tmp.length) { this.data.core.to_load = tmp.split(","); }
2062
                     }
2063
                      if(!!s.save_opened) {
2064
                          tmp = $.cookie(s.save_opened);
2065
                         if(tmp && tmp.length) { this.data.core.to_open = tmp.split(","); }
2066
                     }
2067
                      if(!!s.save_selected) {
2068
                                tmp = $.cookie(s.save_selected);
2069
                               if(tmp && tmp.length && this.data.ui) { this.data.ui.to_select = tmp.split(","); }
2070
                     }
2071
                      this.get_container()
2072
                           .one( ( this.data.ui ? "reselect" : "reopen" ) + ".jstree", $.proxy(function () {
2073
                                      this.get_container()
2074
                                           .bind("open_node.jstree close_node.jstree select_node.jstree deselect_node.jstree", $.proxy(function (e) {
2075
                                                             if(this._get_settings().cookies.auto_save) { this.save_cookie((e.handleObj.namespace + e.handleObj.type).replace("jstree","")); }
2076
                                                      }, this));
2077
                             }, this));
2078
             },
2079
             defaults : {
2080
                   save_loaded		: "jstree_load",
2081
                  save_opened		: "jstree_open",
2082
                  save_selected	: "jstree_select",
2083
                       auto_save		: true,
2084
                     cookie_options	: {}
2085
            },
2086
             _fn : {
2087
                        save_cookie : function (c) {
2088
                           if(this.data.core.refreshing) { return; }
2089
                              var s = this._get_settings().cookies;
2090
                          if(!c) { // if called manually and not by event
2091
                                        if(s.save_loaded) {
2092
                                            this.save_loaded();
2093
                                            $.cookie(s.save_loaded, this.data.core.to_load.join(","), s.cookie_options);
2094
                                   }
2095
                                      if(s.save_opened) {
2096
                                            this.save_opened();
2097
                                            $.cookie(s.save_opened, this.data.core.to_open.join(","), s.cookie_options);
2098
                                   }
2099
                                      if(s.save_selected && this.data.ui) {
2100
                                          this.save_selected();
2101
                                          $.cookie(s.save_selected, this.data.ui.to_select.join(","), s.cookie_options);
2102
                                 }
2103
                                      return;
2104
                                }
2105
                              switch(c) {
2106
                                    case "open_node":
2107
                                      case "close_node":
2108
                                             if(!!s.save_opened) {
2109
                                                  this.save_opened();
2110
                                                    $.cookie(s.save_opened, this.data.core.to_open.join(","), s.cookie_options);
2111
                                           }
2112
                                              if(!!s.save_loaded) {
2113
                                                  this.save_loaded();
2114
                                                    $.cookie(s.save_loaded, this.data.core.to_load.join(","), s.cookie_options);
2115
                                           }
2116
                                              break;
2117
                                 case "select_node":
2118
                                    case "deselect_node":
2119
                                          if(!!s.save_selected && this.data.ui) {
2120
                                                        this.save_selected();
2121
                                                  $.cookie(s.save_selected, this.data.ui.to_select.join(","), s.cookie_options);
2122
                                         }
2123
                                              break;
2124
                         }
2125
                      }
2126
              }
2127
      });
2128
    // include cookies by default
2129
  // $.jstree.defaults.plugins.push("cookies");
2130
})(jQuery);
2131
//*/
2132
2133
/*
2134
 * jsTree sort plugin
2135
 * Sorts items alphabetically (or using any other function)
2136
 */
2137
(function ($) {
2138
       $.jstree.plugin("sort", {
2139
              __init : function () {
2140
                 this.get_container()
2141
                           .bind("load_node.jstree", $.proxy(function (e, data) {
2142
                                         var obj = this._get_node(data.rslt.obj);
2143
                                               obj = obj === -1 ? this.get_container().children("ul") : obj.children("ul");
2144
                                           this.sort(obj);
2145
                                        }, this))
2146
                              .bind("rename_node.jstree create_node.jstree create.jstree", $.proxy(function (e, data) {
2147
                                              this.sort(data.rslt.obj.parent());
2148
                                     }, this))
2149
                              .bind("move_node.jstree", $.proxy(function (e, data) {
2150
                                         var m = data.rslt.np == -1 ? this.get_container() : data.rslt.np;
2151
                                              this.sort(m.children("ul"));
2152
                                   }, this));
2153
             },
2154
             defaults : function (a, b) { return this.get_text(a) > this.get_text(b) ? 1 : -1; },
2155
           _fn : {
2156
                        sort : function (obj) {
2157
                                var s = this._get_settings().sort,
2158
                                     t = this;
2159
                              obj.append($.makeArray(obj.children("li")).sort($.proxy(s, t)));
2160
                               obj.find("> li > ul").each(function() { t.sort($(this)); });
2161
                           this.clean_node(obj);
2162
                  }
2163
              }
2164
      });
2165
})(jQuery);
2166
//*/
2167
2168
/*
2169
 * jsTree DND plugin
2170
 * Drag and drop plugin for moving/copying nodes
2171
 */
2172
(function ($) {
2173
     var o = false,
2174
         r = false,
2175
             m = false,
2176
             ml = false,
2177
            sli = false,
2178
           sti = false,
2179
           dir1 = false,
2180
          dir2 = false,
2181
          last_pos = false;
2182
      $.vakata.dnd = {
2183
               is_down : false,
2184
               is_drag : false,
2185
               helper : false,
2186
                scroll_spd : 10,
2187
               init_x : 0,
2188
            init_y : 0,
2189
            threshold : 5,
2190
         helper_left : 5,
2191
               helper_top : 10,
2192
               user_data : {},
2193
2194
               drag_start : function (e, data, html) {
2195
                        if($.vakata.dnd.is_drag) { $.vakata.drag_stop({}); }
2196
                   try {
2197
                          e.currentTarget.unselectable = "on";
2198
                           e.currentTarget.onselectstart = function() { return false; };
2199
                          if(e.currentTarget.style) { e.currentTarget.style.MozUserSelect = "none"; }
2200
                    } catch(err) { }
2201
                       $.vakata.dnd.init_x = e.pageX;
2202
                 $.vakata.dnd.init_y = e.pageY;
2203
                 $.vakata.dnd.user_data = data;
2204
                 $.vakata.dnd.is_down = true;
2205
                   $.vakata.dnd.helper = $("<div id='vakata-dragged' />").html(html); //.fadeTo(10,0.25);
2206
                 $(document).bind("mousemove", $.vakata.dnd.drag);
2207
                      $(document).bind("mouseup", $.vakata.dnd.drag_stop);
2208
                   return false;
2209
          },
2210
             drag : function (e) {
2211
                  if(!$.vakata.dnd.is_down) { return; }
2212
                  if(!$.vakata.dnd.is_drag) {
2213
                            if(Math.abs(e.pageX - $.vakata.dnd.init_x) > 5 || Math.abs(e.pageY - $.vakata.dnd.init_y) > 5) {
2214
                                       $.vakata.dnd.helper.appendTo("body");
2215
                                  $.vakata.dnd.is_drag = true;
2216
                                   $(document).triggerHandler("drag_start.vakata", { "event" : e, "data" : $.vakata.dnd.user_data });
2217
                             }
2218
                              else { return; }
2219
                       }
2220
2221
                     // maybe use a scrolling parent element instead of document?
2222
                   if(e.type === "mousemove") { // thought of adding scroll in order to move the helper, but mouse poisition is n/a
2223
                               var d = $(document), t = d.scrollTop(), l = d.scrollLeft();
2224
                            if(e.pageY - t < 20) {
2225
                                 if(sti && dir1 === "down") { clearInterval(sti); sti = false; }
2226
                                        if(!sti) { dir1 = "up"; sti = setInterval(function () { $(document).scrollTop($(document).scrollTop() - $.vakata.dnd.scroll_spd); }, 150); }
2227
                           }
2228
                              else {
2229
                                 if(sti && dir1 === "up") { clearInterval(sti); sti = false; }
2230
                          }
2231
                              if($(window).height() - (e.pageY - t) < 20) {
2232
                                  if(sti && dir1 === "up") { clearInterval(sti); sti = false; }
2233
                                  if(!sti) { dir1 = "down"; sti = setInterval(function () { $(document).scrollTop($(document).scrollTop() + $.vakata.dnd.scroll_spd); }, 150); }
2234
                         }
2235
                              else {
2236
                                 if(sti && dir1 === "down") { clearInterval(sti); sti = false; }
2237
                                }
2238
2239
                             if(e.pageX - l < 20) {
2240
                                 if(sli && dir2 === "right") { clearInterval(sli); sli = false; }
2241
                                       if(!sli) { dir2 = "left"; sli = setInterval(function () { $(document).scrollLeft($(document).scrollLeft() - $.vakata.dnd.scroll_spd); }, 150); }
2242
                               }
2243
                              else {
2244
                                 if(sli && dir2 === "left") { clearInterval(sli); sli = false; }
2245
                                }
2246
                              if($(window).width() - (e.pageX - l) < 20) {
2247
                                   if(sli && dir2 === "left") { clearInterval(sli); sli = false; }
2248
                                        if(!sli) { dir2 = "right"; sli = setInterval(function () { $(document).scrollLeft($(document).scrollLeft() + $.vakata.dnd.scroll_spd); }, 150); }
2249
                              }
2250
                              else {
2251
                                 if(sli && dir2 === "right") { clearInterval(sli); sli = false; }
2252
                               }
2253
                      }
2254
2255
                     $.vakata.dnd.helper.css({ left : (e.pageX + $.vakata.dnd.helper_left) + "px", top : (e.pageY + $.vakata.dnd.helper_top) + "px" });
2256
                     $(document).triggerHandler("drag.vakata", { "event" : e, "data" : $.vakata.dnd.user_data });
2257
           },
2258
             drag_stop : function (e) {
2259
                     if(sli) { clearInterval(sli); }
2260
                        if(sti) { clearInterval(sti); }
2261
                        $(document).unbind("mousemove", $.vakata.dnd.drag);
2262
                    $(document).unbind("mouseup", $.vakata.dnd.drag_stop);
2263
                 $(document).triggerHandler("drag_stop.vakata", { "event" : e, "data" : $.vakata.dnd.user_data });
2264
                      $.vakata.dnd.helper.remove();
2265
                  $.vakata.dnd.init_x = 0;
2266
                       $.vakata.dnd.init_y = 0;
2267
                       $.vakata.dnd.user_data = {};
2268
                   $.vakata.dnd.is_down = false;
2269
                  $.vakata.dnd.is_drag = false;
2270
          }
2271
      };
2272
     $(function() {
2273
         var css_string = '#vakata-dragged { display:block; margin:0 0 0 0; padding:4px 4px 4px 24px; position:absolute; top:-2000px; line-height:16px; z-index:10000; } ';
2274
             $.vakata.css.add_sheet({ str : css_string, title : "vakata" });
2275
        });
2276
2277
   $.jstree.plugin("dnd", {
2278
               __init : function () {
2279
                 this.data.dnd = {
2280
                              active : false,
2281
                                after : false,
2282
                         inside : false,
2283
                                before : false,
2284
                                off : false,
2285
                           prepared : false,
2286
                              w : 0,
2287
                         to1 : false,
2288
                           to2 : false,
2289
                           cof : false,
2290
                           cw : false,
2291
                            ch : false,
2292
                            i1 : false,
2293
                            i2 : false,
2294
                            mto : false
2295
                    };
2296
                     this.get_container()
2297
                           .bind("mouseenter.jstree", $.proxy(function (e) {
2298
                                              if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {
2299
                                                    if(this.data.themes) {
2300
                                                         m.attr("class", "jstree-" + this.data.themes.theme);
2301
                                                           if(ml) { ml.attr("class", "jstree-" + this.data.themes.theme); }
2302
                                                               $.vakata.dnd.helper.attr("class", "jstree-dnd-helper jstree-" + this.data.themes.theme);
2303
                                                       }
2304
                                                      //if($(e.currentTarget).find("> ul > li").length === 0) {
2305
                                                      if(e.currentTarget === e.target && $.vakata.dnd.user_data.obj && $($.vakata.dnd.user_data.obj).length && $($.vakata.dnd.user_data.obj).parents(".jstree:eq(0)")[0] !== e.target) { // node should not be from the same tree
2306
                                                            var tr = $.jstree._reference(e.target), dc;
2307
                                                            if(tr.data.dnd.foreign) {
2308
                                                                      dc = tr._get_settings().dnd.drag_check.call(this, { "o" : o, "r" : tr.get_container(), is_root : true });
2309
                                                                      if(dc === true || dc.inside === true || dc.before === true || dc.after === true) {
2310
                                                                             $.vakata.dnd.helper.children("ins").attr("class","jstree-ok");
2311
                                                                 }
2312
                                                              }
2313
                                                              else {
2314
                                                                 tr.prepare_move(o, tr.get_container(), "last");
2315
                                                                        if(tr.check_move()) {
2316
                                                                          $.vakata.dnd.helper.children("ins").attr("class","jstree-ok");
2317
                                                                 }
2318
                                                              }
2319
                                                      }
2320
                                              }
2321
                                      }, this))
2322
                              .bind("mouseup.jstree", $.proxy(function (e) {
2323
                                         //if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree && $(e.currentTarget).find("> ul > li").length === 0) {
2324
                                             if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree && e.currentTarget === e.target && $.vakata.dnd.user_data.obj && $($.vakata.dnd.user_data.obj).length && $($.vakata.dnd.user_data.obj).parents(".jstree:eq(0)")[0] !== e.target) { // node should not be from the same tree
2325
                                                   var tr = $.jstree._reference(e.currentTarget), dc;
2326
                                                     if(tr.data.dnd.foreign) {
2327
                                                              dc = tr._get_settings().dnd.drag_check.call(this, { "o" : o, "r" : tr.get_container(), is_root : true });
2328
                                                              if(dc === true || dc.inside === true || dc.before === true || dc.after === true) {
2329
                                                                     tr._get_settings().dnd.drag_finish.call(this, { "o" : o, "r" : tr.get_container(), is_root : true });
2330
                                                          }
2331
                                                      }
2332
                                                      else {
2333
                                                         tr.move_node(o, tr.get_container(), "last", e[tr._get_settings().dnd.copy_modifier + "Key"]);
2334
                                                  }
2335
                                              }
2336
                                      }, this))
2337
                              .bind("mouseleave.jstree", $.proxy(function (e) {
2338
                                              if(e.relatedTarget && e.relatedTarget.id && e.relatedTarget.id === "jstree-marker-line") {
2339
                                                     return false;
2340
                                          }
2341
                                              if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {
2342
                                                    if(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }
2343
                                                      if(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }
2344
                                                      if(this.data.dnd.to1) { clearTimeout(this.data.dnd.to1); }
2345
                                                     if(this.data.dnd.to2) { clearTimeout(this.data.dnd.to2); }
2346
                                                     if($.vakata.dnd.helper.children("ins").hasClass("jstree-ok")) {
2347
                                                                $.vakata.dnd.helper.children("ins").attr("class","jstree-invalid");
2348
                                                    }
2349
                                              }
2350
                                      }, this))
2351
                              .bind("mousemove.jstree", $.proxy(function (e) {
2352
                                               if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {
2353
                                                    var cnt = this.get_container()[0];
2354
2355
                                                    // Horizontal scroll
2356
                                                   if(e.pageX + 24 > this.data.dnd.cof.left + this.data.dnd.cw) {
2357
                                                         if(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }
2358
                                                              this.data.dnd.i1 = setInterval($.proxy(function () { this.scrollLeft += $.vakata.dnd.scroll_spd; }, cnt), 100);
2359
                                                        }
2360
                                                      else if(e.pageX - 24 < this.data.dnd.cof.left) {
2361
                                                               if(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }
2362
                                                              this.data.dnd.i1 = setInterval($.proxy(function () { this.scrollLeft -= $.vakata.dnd.scroll_spd; }, cnt), 100);
2363
                                                        }
2364
                                                      else {
2365
                                                         if(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }
2366
                                                      }
2367
2368
                                                     // Vertical scroll
2369
                                                     if(e.pageY + 24 > this.data.dnd.cof.top + this.data.dnd.ch) {
2370
                                                          if(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }
2371
                                                              this.data.dnd.i2 = setInterval($.proxy(function () { this.scrollTop += $.vakata.dnd.scroll_spd; }, cnt), 100);
2372
                                                 }
2373
                                                      else if(e.pageY - 24 < this.data.dnd.cof.top) {
2374
                                                                if(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }
2375
                                                              this.data.dnd.i2 = setInterval($.proxy(function () { this.scrollTop -= $.vakata.dnd.scroll_spd; }, cnt), 100);
2376
                                                 }
2377
                                                      else {
2378
                                                         if(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }
2379
                                                      }
2380
2381
                                             }
2382
                                      }, this))
2383
                              .bind("scroll.jstree", $.proxy(function (e) {
2384
                                          if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree && m && ml) {
2385
                                                 m.hide();
2386
                                                      ml.hide();
2387
                                             }
2388
                                      }, this))
2389
                              .delegate("a", "mousedown.jstree", $.proxy(function (e) {
2390
                                              if(e.which === 1) {
2391
                                                    this.start_drag(e.currentTarget, e);
2392
                                                   return false;
2393
                                          }
2394
                                      }, this))
2395
                              .delegate("a", "mouseenter.jstree", $.proxy(function (e) {
2396
                                             if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {
2397
                                                    this.dnd_enter(e.currentTarget);
2398
                                               }
2399
                                      }, this))
2400
                              .delegate("a", "mousemove.jstree", $.proxy(function (e) {
2401
                                              if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {
2402
                                                    if(!r || !r.length || r.children("a")[0] !== e.currentTarget) {
2403
                                                                this.dnd_enter(e.currentTarget);
2404
                                                       }
2405
                                                      if(typeof this.data.dnd.off.top === "undefined") { this.data.dnd.off = $(e.target).offset(); }
2406
                                                 this.data.dnd.w = (e.pageY - (this.data.dnd.off.top || 0)) % this.data.core.li_height;
2407
                                                 if(this.data.dnd.w < 0) { this.data.dnd.w += this.data.core.li_height; }
2408
                                                       this.dnd_show();
2409
                                               }
2410
                                      }, this))
2411
                              .delegate("a", "mouseleave.jstree", $.proxy(function (e) {
2412
                                             if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {
2413
                                                    if(e.relatedTarget && e.relatedTarget.id && e.relatedTarget.id === "jstree-marker-line") {
2414
                                                             return false;
2415
                                                  }
2416
                                                              if(m) { m.hide(); }
2417
                                                            if(ml) { ml.hide(); }
2418
                                                  /*
2419
                                                     var ec = $(e.currentTarget).closest("li"),
2420
                                                             er = $(e.relatedTarget).closest("li");
2421
                                                 if(er[0] !== ec.prev()[0] && er[0] !== ec.next()[0]) {
2422
                                                         if(m) { m.hide(); }
2423
                                                            if(ml) { ml.hide(); }
2424
                                                  }
2425
                                                      */
2426
                                                     this.data.dnd.mto = setTimeout(
2427
                                                                (function (t) { return function () { t.dnd_leave(e); }; })(this),
2428
                                                      0);
2429
                                            }
2430
                                      }, this))
2431
                              .delegate("a", "mouseup.jstree", $.proxy(function (e) {
2432
                                                if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {
2433
                                                    this.dnd_finish(e);
2434
                                            }
2435
                                      }, this));
2436
2437
                    $(document)
2438
                            .bind("drag_stop.vakata", $.proxy(function () {
2439
                                                if(this.data.dnd.to1) { clearTimeout(this.data.dnd.to1); }
2440
                                             if(this.data.dnd.to2) { clearTimeout(this.data.dnd.to2); }
2441
                                             if(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }
2442
                                              if(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }
2443
                                              this.data.dnd.after		= false;
2444
                                          this.data.dnd.before	= false;
2445
                                          this.data.dnd.inside	= false;
2446
                                          this.data.dnd.off		= false;
2447
                                            this.data.dnd.prepared	= false;
2448
                                                this.data.dnd.w			= false;
2449
                                             this.data.dnd.to1		= false;
2450
                                            this.data.dnd.to2		= false;
2451
                                            this.data.dnd.i1		= false;
2452
                                             this.data.dnd.i2		= false;
2453
                                             this.data.dnd.active	= false;
2454
                                          this.data.dnd.foreign	= false;
2455
                                         if(m) { m.css({ "top" : "-2000px" }); }
2456
                                                if(ml) { ml.css({ "top" : "-2000px" }); }
2457
                                      }, this))
2458
                              .bind("drag_start.vakata", $.proxy(function (e, data) {
2459
                                                if(data.data.jstree) {
2460
                                                 var et = $(data.event.target);
2461
                                                 if(et.closest(".jstree").hasClass("jstree-" + this.get_index())) {
2462
                                                             this.dnd_enter(et);
2463
                                                    }
2464
                                              }
2465
                                      }, this));
2466
                             /*
2467
                             .bind("keydown.jstree-" + this.get_index() + " keyup.jstree-" + this.get_index(), $.proxy(function(e) {
2468
                                                if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree && !this.data.dnd.foreign) {
2469
                                                  var h = $.vakata.dnd.helper.children("ins");
2470
                                                   if(e[this._get_settings().dnd.copy_modifier + "Key"] && h.hasClass("jstree-ok")) {
2471
                                                             h.parent().html(h.parent().html().replace(/ \(Copy\)$/, "") + " (Copy)");
2472
                                                      }
2473
                                                      else {
2474
                                                         h.parent().html(h.parent().html().replace(/ \(Copy\)$/, ""));
2475
                                                  }
2476
                                              }
2477
                                      }, this)); */
2478
2479
2480
2481
                       var s = this._get_settings().dnd;
2482
                      if(s.drag_target) {
2483
                            $(document)
2484
                                    .delegate(s.drag_target, "mousedown.jstree-" + this.get_index(), $.proxy(function (e) {
2485
                                                o = e.target;
2486
                                          $.vakata.dnd.drag_start(e, { jstree : true, obj : e.target }, "<ins class='jstree-icon'></ins>" + $(e.target).text() );
2487
                                                if(this.data.themes) {
2488
                                                 if(m) { m.attr("class", "jstree-" + this.data.themes.theme); }
2489
                                                 if(ml) { ml.attr("class", "jstree-" + this.data.themes.theme); }
2490
                                                       $.vakata.dnd.helper.attr("class", "jstree-dnd-helper jstree-" + this.data.themes.theme);
2491
                                               }
2492
                                              $.vakata.dnd.helper.children("ins").attr("class","jstree-invalid");
2493
                                            var cnt = this.get_container();
2494
                                                this.data.dnd.cof = cnt.offset();
2495
                                              this.data.dnd.cw = parseInt(cnt.width(),10);
2496
                                           this.data.dnd.ch = parseInt(cnt.height(),10);
2497
                                          this.data.dnd.foreign = true;
2498
                                          e.preventDefault();
2499
                                    }, this));
2500
                     }
2501
                      if(s.drop_target) {
2502
                            $(document)
2503
                                    .delegate(s.drop_target, "mouseenter.jstree-" + this.get_index(), $.proxy(function (e) {
2504
                                                       if(this.data.dnd.active && this._get_settings().dnd.drop_check.call(this, { "o" : o, "r" : $(e.target), "e" : e })) {
2505
                                                          $.vakata.dnd.helper.children("ins").attr("class","jstree-ok");
2506
                                                 }
2507
                                              }, this))
2508
                                      .delegate(s.drop_target, "mouseleave.jstree-" + this.get_index(), $.proxy(function (e) {
2509
                                                       if(this.data.dnd.active) {
2510
                                                             $.vakata.dnd.helper.children("ins").attr("class","jstree-invalid");
2511
                                                    }
2512
                                              }, this))
2513
                                      .delegate(s.drop_target, "mouseup.jstree-" + this.get_index(), $.proxy(function (e) {
2514
                                                  if(this.data.dnd.active && $.vakata.dnd.helper.children("ins").hasClass("jstree-ok")) {
2515
                                                                this._get_settings().dnd.drop_finish.call(this, { "o" : o, "r" : $(e.target), "e" : e });
2516
                                                      }
2517
                                              }, this));
2518
                     }
2519
              },
2520
             defaults : {
2521
                   copy_modifier	: "ctrl",
2522
                        check_timeout	: 100,
2523
                   open_timeout	: 500,
2524
                    drop_target		: ".jstree-drop",
2525
                 drop_check		: function (data) { return true; },
2526
                        drop_finish		: $.noop,
2527
                 drag_target		: ".jstree-draggable",
2528
                    drag_finish		: $.noop,
2529
                 drag_check		: function (data) { return { after : false, before : false, inside : true }; }
2530
             },
2531
             _fn : {
2532
                        dnd_prepare : function () {
2533
                            if(!r || !r.length) { return; }
2534
                                this.data.dnd.off = r.offset();
2535
                                if(this._get_settings().core.rtl) {
2536
                                    this.data.dnd.off.right = this.data.dnd.off.left + r.width();
2537
                          }
2538
                              if(this.data.dnd.foreign) {
2539
                                    var a = this._get_settings().dnd.drag_check.call(this, { "o" : o, "r" : r });
2540
                                  this.data.dnd.after = a.after;
2541
                                 this.data.dnd.before = a.before;
2542
                                       this.data.dnd.inside = a.inside;
2543
                                       this.data.dnd.prepared = true;
2544
                                 return this.dnd_show();
2545
                                }
2546
                              this.prepare_move(o, r, "before");
2547
                             this.data.dnd.before = this.check_move();
2548
                              this.prepare_move(o, r, "after");
2549
                              this.data.dnd.after = this.check_move();
2550
                               if(this._is_loaded(r)) {
2551
                                       this.prepare_move(o, r, "inside");
2552
                                     this.data.dnd.inside = this.check_move();
2553
                              }
2554
                              else {
2555
                                 this.data.dnd.inside = false;
2556
                          }
2557
                              this.data.dnd.prepared = true;
2558
                         return this.dnd_show();
2559
                        },
2560
                     dnd_show : function () {
2561
                               if(!this.data.dnd.prepared) { return; }
2562
                                var o = ["before","inside","after"],
2563
                                   r = false,
2564
                                     rtl = this._get_settings().core.rtl,
2565
                                   pos;
2566
                           if(this.data.dnd.w < this.data.core.li_height/3) { o = ["before","inside","after"]; }
2567
                          else if(this.data.dnd.w <= this.data.core.li_height*2/3) {
2568
                                     o = this.data.dnd.w < this.data.core.li_height/2 ? ["inside","before","after"] : ["inside","after","before"];
2569
                          }
2570
                              else { o = ["after","inside","before"]; }
2571
                              $.each(o, $.proxy(function (i, val) {
2572
                                  if(this.data.dnd[val]) {
2573
                                               $.vakata.dnd.helper.children("ins").attr("class","jstree-ok");
2574
                                         r = val;
2575
                                               return false;
2576
                                  }
2577
                              }, this));
2578
                             if(r === false) { $.vakata.dnd.helper.children("ins").attr("class","jstree-invalid"); }
2579
2580
                               pos = rtl ? (this.data.dnd.off.right - 18) : (this.data.dnd.off.left + 10);
2581
                            switch(r) {
2582
                                    case "before":
2583
                                         m.css({ "left" : pos + "px", "top" : (this.data.dnd.off.top - 6) + "px" }).show();
2584
                                             if(ml) { ml.css({ "left" : (pos + 8) + "px", "top" : (this.data.dnd.off.top - 1) + "px" }).show(); }
2585
                                           break;
2586
                                 case "after":
2587
                                          m.css({ "left" : pos + "px", "top" : (this.data.dnd.off.top + this.data.core.li_height - 6) + "px" }).show();
2588
                                          if(ml) { ml.css({ "left" : (pos + 8) + "px", "top" : (this.data.dnd.off.top + this.data.core.li_height - 1) + "px" }).show(); }
2589
                                                break;
2590
                                 case "inside":
2591
                                         m.css({ "left" : pos + ( rtl ? -4 : 4) + "px", "top" : (this.data.dnd.off.top + this.data.core.li_height/2 - 5) + "px" }).show();
2592
                                              if(ml) { ml.hide(); }
2593
                                          break;
2594
                                 default:
2595
                                               m.hide();
2596
                                              if(ml) { ml.hide(); }
2597
                                          break;
2598
                         }
2599
                              last_pos = r;
2600
                          return r;
2601
                      },
2602
                     dnd_open : function () {
2603
                               this.data.dnd.to2 = false;
2604
                             this.open_node(r, $.proxy(this.dnd_prepare,this), true);
2605
                       },
2606
                     dnd_finish : function (e) {
2607
                            if(this.data.dnd.foreign) {
2608
                                    if(this.data.dnd.after || this.data.dnd.before || this.data.dnd.inside) {
2609
                                              this._get_settings().dnd.drag_finish.call(this, { "o" : o, "r" : r, "p" : last_pos });
2610
                                 }
2611
                              }
2612
                              else {
2613
                                 this.dnd_prepare();
2614
                                    this.move_node(o, r, last_pos, e[this._get_settings().dnd.copy_modifier + "Key"]);
2615
                             }
2616
                              o = false;
2617
                             r = false;
2618
                             m.hide();
2619
                              if(ml) { ml.hide(); }
2620
                  },
2621
                     dnd_enter : function (obj) {
2622
                           if(this.data.dnd.mto) {
2623
                                        clearTimeout(this.data.dnd.mto);
2624
                                       this.data.dnd.mto = false;
2625
                             }
2626
                              var s = this._get_settings().dnd;
2627
                              this.data.dnd.prepared = false;
2628
                                r = this._get_node(obj);
2629
                               if(s.check_timeout) {
2630
                                  // do the calculations after a minimal timeout (users tend to drag quickly to the desired location)
2631
                                    if(this.data.dnd.to1) { clearTimeout(this.data.dnd.to1); }
2632
                                     this.data.dnd.to1 = setTimeout($.proxy(this.dnd_prepare, this), s.check_timeout);
2633
                              }
2634
                              else {
2635
                                 this.dnd_prepare();
2636
                            }
2637
                              if(s.open_timeout) {
2638
                                   if(this.data.dnd.to2) { clearTimeout(this.data.dnd.to2); }
2639
                                     if(r && r.length && r.hasClass("jstree-closed")) {
2640
                                             // if the node is closed - open it, then recalculate
2641
                                           this.data.dnd.to2 = setTimeout($.proxy(this.dnd_open, this), s.open_timeout);
2642
                                  }
2643
                              }
2644
                              else {
2645
                                 if(r && r.length && r.hasClass("jstree-closed")) {
2646
                                             this.dnd_open();
2647
                                       }
2648
                              }
2649
                      },
2650
                     dnd_leave : function (e) {
2651
                             this.data.dnd.after		= false;
2652
                          this.data.dnd.before	= false;
2653
                          this.data.dnd.inside	= false;
2654
                          $.vakata.dnd.helper.children("ins").attr("class","jstree-invalid");
2655
                            m.hide();
2656
                              if(ml) { ml.hide(); }
2657
                          if(r && r[0] === e.target.parentNode) {
2658
                                        if(this.data.dnd.to1) {
2659
                                                clearTimeout(this.data.dnd.to1);
2660
                                               this.data.dnd.to1 = false;
2661
                                     }
2662
                                      if(this.data.dnd.to2) {
2663
                                                clearTimeout(this.data.dnd.to2);
2664
                                               this.data.dnd.to2 = false;
2665
                                     }
2666
                              }
2667
                      },
2668
                     start_drag : function (obj, e) {
2669
                               o = this._get_node(obj);
2670
                               if(this.data.ui && this.is_selected(o)) { o = this._get_node(null, true); }
2671
                            var dt = o.length > 1 ? this._get_string("multiple_selection") : this.get_text(o),
2672
                                     cnt = this.get_container();
2673
                            if(!this._get_settings().core.html_titles) { dt = dt.replace(/</ig,"&lt;").replace(/>/ig,"&gt;"); }
2674
                            $.vakata.dnd.drag_start(e, { jstree : true, obj : o }, "<ins class='jstree-icon'></ins>" + dt );
2675
                               if(this.data.themes) {
2676
                                 if(m) { m.attr("class", "jstree-" + this.data.themes.theme); }
2677
                                 if(ml) { ml.attr("class", "jstree-" + this.data.themes.theme); }
2678
                                       $.vakata.dnd.helper.attr("class", "jstree-dnd-helper jstree-" + this.data.themes.theme);
2679
                               }
2680
                              this.data.dnd.cof = cnt.offset();
2681
                              this.data.dnd.cw = parseInt(cnt.width(),10);
2682
                           this.data.dnd.ch = parseInt(cnt.height(),10);
2683
                          this.data.dnd.active = true;
2684
                   }
2685
              }
2686
      });
2687
    $(function() {
2688
         var css_string = '' +
2689
                  '#vakata-dragged ins { display:block; text-decoration:none; width:16px; height:16px; margin:0 0 0 0; padding:0; position:absolute; top:4px; left:4px; ' +
2690
                      ' -moz-border-radius:4px; border-radius:4px; -webkit-border-radius:4px; ' +
2691
                    '} ' +
2692
                 '#vakata-dragged .jstree-ok { background:green; } ' +
2693
                  '#vakata-dragged .jstree-invalid { background:red; } ' +
2694
                       '#jstree-marker { padding:0; margin:0; font-size:12px; overflow:hidden; height:12px; width:8px; position:absolute; top:-30px; z-index:10001; background-repeat:no-repeat; display:none; background-color:transparent; text-shadow:1px 1px 1px white; color:black; line-height:10px; } ' +
2695
                      '#jstree-marker-line { padding:0; margin:0; line-height:0%; font-size:1px; overflow:hidden; height:1px; width:100px; position:absolute; top:-30px; z-index:10000; background-repeat:no-repeat; display:none; background-color:#456c43; ' +
2696
                     ' cursor:pointer; border:1px solid #eeeeee; border-left:0; -moz-box-shadow: 0px 0px 2px #666; -webkit-box-shadow: 0px 0px 2px #666; box-shadow: 0px 0px 2px #666; ' +
2697
                  ' -moz-border-radius:1px; border-radius:1px; -webkit-border-radius:1px; ' +
2698
                    '}' +
2699
                  '';
2700
            $.vakata.css.add_sheet({ str : css_string, title : "jstree" });
2701
                m = $("<div />").attr({ id : "jstree-marker" }).hide().html("&raquo;")
2702
                 .bind("mouseleave mouseenter", function (e) {
2703
                          m.hide();
2704
                              ml.hide();
2705
                             e.preventDefault();
2706
                            e.stopImmediatePropagation();
2707
                          return false;
2708
                  })
2709
                     .appendTo("body");
2710
             ml = $("<div />").attr({ id : "jstree-marker-line" }).hide()
2711
                   .bind("mouseup", function (e) {
2712
                                if(r && r.length) {
2713
                                    r.children("a").trigger(e);
2714
                                    e.preventDefault();
2715
                                    e.stopImmediatePropagation();
2716
                                  return false;
2717
                          }
2718
                      })
2719
                     .bind("mouseleave", function (e) {
2720
                             var rt = $(e.relatedTarget);
2721
                           if(rt.is(".jstree") || rt.closest(".jstree").length === 0) {
2722
                                   if(r && r.length) {
2723
                                            r.children("a").trigger(e);
2724
                                            m.hide();
2725
                                              ml.hide();
2726
                                             e.preventDefault();
2727
                                            e.stopImmediatePropagation();
2728
                                          return false;
2729
                                  }
2730
                              }
2731
                      })
2732
                     .appendTo("body");
2733
             $(document).bind("drag_start.vakata", function (e, data) {
2734
                     if(data.data.jstree) { m.show(); if(ml) { ml.show(); } }
2735
               });
2736
            $(document).bind("drag_stop.vakata", function (e, data) {
2737
                      if(data.data.jstree) { m.hide(); if(ml) { ml.hide(); } }
2738
               });
2739
    });
2740
})(jQuery);
2741
//*/
2742
2743
/*
2744
 * jsTree checkbox plugin
2745
 * Inserts checkboxes in front of every node
2746
 * Depends on the ui plugin
2747
 * DOES NOT WORK NICELY WITH MULTITREE DRAG'N'DROP
2748
 */
2749
(function ($) {
2750
     $.jstree.plugin("checkbox", {
2751
          __init : function () {
2752
                 this.data.checkbox.noui = this._get_settings().checkbox.override_ui;
2753
                   if(this.data.ui && this.data.checkbox.noui) {
2754
                          this.select_node = this.deselect_node = this.deselect_all = $.noop;
2755
                            this.get_selected = this.get_checked;
2756
                  }
2757
2758
                     this.get_container()
2759
                           .bind("open_node.jstree create_node.jstree clean_node.jstree refresh.jstree", $.proxy(function (e, data) {
2760
                                             this._prepare_checkboxes(data.rslt.obj);
2761
                                       }, this))
2762
                              .bind("loaded.jstree", $.proxy(function (e) {
2763
                                          this._prepare_checkboxes();
2764
                                    }, this))
2765
                              .delegate( (this.data.ui && this.data.checkbox.noui ? "a" : "ins.jstree-checkbox") , "click.jstree", $.proxy(function (e) {
2766
                                            e.preventDefault();
2767
                                            if(this._get_node(e.target).hasClass("jstree-checked")) { this.uncheck_node(e.target); }
2768
                                               else { this.check_node(e.target); }
2769
                                            if(this.data.ui && this.data.checkbox.noui) {
2770
                                                  this.save_selected();
2771
                                                  if(this.data.cookies) { this.save_cookie("select_node"); }
2772
                                             }
2773
                                              else {
2774
                                                 e.stopImmediatePropagation();
2775
                                                  return false;
2776
                                          }
2777
                                      }, this));
2778
             },
2779
             defaults : {
2780
                   override_ui : false,
2781
                   two_state : false,
2782
                     real_checkboxes : false,
2783
                       checked_parent_open : true,
2784
                    real_checkboxes_names : function (n) { return [ ("check_" + (n[0].id || Math.ceil(Math.random() * 10000))) , 1]; }
2785
             },
2786
             __destroy : function () {
2787
                      this.get_container()
2788
                           .find("input.jstree-real-checkbox").removeClass("jstree-real-checkbox").end()
2789
                          .find("ins.jstree-checkbox").remove();
2790
         },
2791
             _fn : {
2792
                        _checkbox_notify : function (n, data) {
2793
                                if(data.checked) {
2794
                                     this.check_node(n, false);
2795
                             }
2796
                      },
2797
                     _prepare_checkboxes : function (obj) {
2798
                         obj = !obj || obj == -1 ? this.get_container().find("> ul > li") : this._get_node(obj);
2799
                                if(obj === false) { return; } // added for removing root nodes
2800
                         var c, _this = this, t, ts = this._get_settings().checkbox.two_state, rc = this._get_settings().checkbox.real_checkboxes, rcn = this._get_settings().checkbox.real_checkboxes_names;
2801
                           obj.each(function () {
2802
                                 t = $(this);
2803
                                   c = t.is("li") && (t.hasClass("jstree-checked") || (rc && t.children(":checked").length)) ? "jstree-checked" : "jstree-unchecked";
2804
                                     t.find("li").andSelf().each(function () {
2805
                                              var $t = $(this), nm;
2806
                                          $t.children("a" + (_this.data.languages ? "" : ":eq(0)") ).not(":has(.jstree-checkbox)").prepend("<ins class='jstree-checkbox'>&#160;</ins>").parent().not(".jstree-checked, .jstree-unchecked").addClass( ts ? "jstree-unchecked" : c );
2807
                                              if(rc) {
2808
                                                       if(!$t.children(":checkbox").length) {
2809
                                                         nm = rcn.call(_this, $t);
2810
                                                              $t.prepend("<input type='checkbox' class='jstree-real-checkbox' id='" + nm[0] + "' name='" + nm[0] + "' value='" + nm[1] + "' />");
2811
                                                    }
2812
                                                      else {
2813
                                                         $t.children(":checkbox").addClass("jstree-real-checkbox");
2814
                                                     }
2815
                                              }
2816
                                              if(!ts) {
2817
                                                      if(c === "jstree-checked" || $t.hasClass("jstree-checked") || $t.children(':checked').length) {
2818
                                                                $t.find("li").andSelf().addClass("jstree-checked").children(":checkbox").prop("checked", true);
2819
                                                        }
2820
                                              }
2821
                                              else {
2822
                                                 if($t.hasClass("jstree-checked") || $t.children(':checked').length) {
2823
                                                          $t.addClass("jstree-checked").children(":checkbox").prop("checked", true);
2824
                                                     }
2825
                                              }
2826
                                      });
2827
                            });
2828
                            if(!ts) {
2829
                                      obj.find(".jstree-checked").parent().parent().each(function () { _this._repair_state(this); });
2830
                                }
2831
                      },
2832
                     change_state : function (obj, state) {
2833
                         obj = this._get_node(obj);
2834
                             var coll = false, rc = this._get_settings().checkbox.real_checkboxes;
2835
                          if(!obj || obj === -1) { return false; }
2836
                               state = (state === false || state === true) ? state : obj.hasClass("jstree-checked");
2837
                          if(this._get_settings().checkbox.two_state) {
2838
                                  if(state) {
2839
                                            obj.removeClass("jstree-checked").addClass("jstree-unchecked");
2840
                                                if(rc) { obj.children(":checkbox").prop("checked", false); }
2841
                                   }
2842
                                      else {
2843
                                         obj.removeClass("jstree-unchecked").addClass("jstree-checked");
2844
                                                if(rc) { obj.children(":checkbox").prop("checked", true); }
2845
                                    }
2846
                              }
2847
                              else {
2848
                                 if(state) {
2849
                                            coll = obj.find("li").andSelf();
2850
                                               if(!coll.filter(".jstree-checked, .jstree-undetermined").length) { return false; }
2851
                                             coll.removeClass("jstree-checked jstree-undetermined").addClass("jstree-unchecked");
2852
                                           if(rc) { coll.children(":checkbox").prop("checked", false); }
2853
                                  }
2854
                                      else {
2855
                                         coll = obj.find("li").andSelf();
2856
                                               if(!coll.filter(".jstree-unchecked, .jstree-undetermined").length) { return false; }
2857
                                           coll.removeClass("jstree-unchecked jstree-undetermined").addClass("jstree-checked");
2858
                                           if(rc) { coll.children(":checkbox").prop("checked", true); }
2859
                                           if(this.data.ui) { this.data.ui.last_selected = obj; }
2860
                                         this.data.checkbox.last_selected = obj;
2861
                                        }
2862
                                      obj.parentsUntil(".jstree", "li").each(function () {
2863
                                           var $this = $(this);
2864
                                           if(state) {
2865
                                                    if($this.children("ul").children("li.jstree-checked, li.jstree-undetermined").length) {
2866
                                                                $this.parentsUntil(".jstree", "li").andSelf().removeClass("jstree-checked jstree-unchecked").addClass("jstree-undetermined");
2867
                                                          if(rc) { $this.parentsUntil(".jstree", "li").andSelf().children(":checkbox").prop("checked", false); }
2868
                                                         return false;
2869
                                                  }
2870
                                                      else {
2871
                                                         $this.removeClass("jstree-checked jstree-undetermined").addClass("jstree-unchecked");
2872
                                                          if(rc) { $this.children(":checkbox").prop("checked", false); }
2873
                                                 }
2874
                                              }
2875
                                              else {
2876
                                                 if($this.children("ul").children("li.jstree-unchecked, li.jstree-undetermined").length) {
2877
                                                              $this.parentsUntil(".jstree", "li").andSelf().removeClass("jstree-checked jstree-unchecked").addClass("jstree-undetermined");
2878
                                                          if(rc) { $this.parentsUntil(".jstree", "li").andSelf().children(":checkbox").prop("checked", false); }
2879
                                                         return false;
2880
                                                  }
2881
                                                      else {
2882
                                                         $this.removeClass("jstree-unchecked jstree-undetermined").addClass("jstree-checked");
2883
                                                          if(rc) { $this.children(":checkbox").prop("checked", true); }
2884
                                                  }
2885
                                              }
2886
                                      });
2887
                            }
2888
                              if(this.data.ui && this.data.checkbox.noui) { this.data.ui.selected = this.get_checked(); }
2889
                            this.__callback(obj);
2890
                          return true;
2891
                   },
2892
                     check_node : function (obj) {
2893
                          if(this.change_state(obj, false)) {
2894
                                    obj = this._get_node(obj);
2895
                                     if(this._get_settings().checkbox.checked_parent_open) {
2896
                                                var t = this;
2897
                                          obj.parents(".jstree-closed").each(function () { t.open_node(this, false, true); });
2898
                                   }
2899
                                      this.__callback({ "obj" : obj });
2900
                              }
2901
                      },
2902
                     uncheck_node : function (obj) {
2903
                                if(this.change_state(obj, true)) { this.__callback({ "obj" : this._get_node(obj) }); }
2904
                 },
2905
                     check_all : function () {
2906
                              var _this = this,
2907
                                      coll = this._get_settings().checkbox.two_state ? this.get_container_ul().find("li") : this.get_container_ul().children("li");
2908
                          coll.each(function () {
2909
                                        _this.change_state(this, false);
2910
                               });
2911
                            this.__callback();
2912
                     },
2913
                     uncheck_all : function () {
2914
                            var _this = this,
2915
                                      coll = this._get_settings().checkbox.two_state ? this.get_container_ul().find("li") : this.get_container_ul().children("li");
2916
                          coll.each(function () {
2917
                                        _this.change_state(this, true);
2918
                                });
2919
                            this.__callback();
2920
                     },
2921
2922
                    is_checked : function(obj) {
2923
                           obj = this._get_node(obj);
2924
                             return obj.length ? obj.is(".jstree-checked") : false;
2925
                 },
2926
                     get_checked : function (obj, get_all) {
2927
                                obj = !obj || obj === -1 ? this.get_container() : this._get_node(obj);
2928
                         return get_all || this._get_settings().checkbox.two_state ? obj.find(".jstree-checked") : obj.find("> ul > .jstree-checked, .jstree-undetermined > ul > .jstree-checked");
2929
                     },
2930
                     get_unchecked : function (obj, get_all) {
2931
                              obj = !obj || obj === -1 ? this.get_container() : this._get_node(obj);
2932
                         return get_all || this._get_settings().checkbox.two_state ? obj.find(".jstree-unchecked") : obj.find("> ul > .jstree-unchecked, .jstree-undetermined > ul > .jstree-unchecked");
2933
                       },
2934
2935
                    show_checkboxes : function () { this.get_container().children("ul").removeClass("jstree-no-checkboxes"); },
2936
                    hide_checkboxes : function () { this.get_container().children("ul").addClass("jstree-no-checkboxes"); },
2937
2938
                      _repair_state : function (obj) {
2939
                               obj = this._get_node(obj);
2940
                             if(!obj.length) { return; }
2941
                            if(this._get_settings().checkbox.two_state) {
2942
                                  obj.find('li').andSelf().not('.jstree-checked').removeClass('jstree-undetermined').addClass('jstree-unchecked').children(':checkbox').prop('checked', true);
2943
                                   return;
2944
                                }
2945
                              var rc = this._get_settings().checkbox.real_checkboxes,
2946
                                        a = obj.find("> ul > .jstree-checked").length,
2947
                                 b = obj.find("> ul > .jstree-undetermined").length,
2948
                                    c = obj.find("> ul > li").length;
2949
                              if(c === 0) { if(obj.hasClass("jstree-undetermined")) { this.change_state(obj, false); } }
2950
                             else if(a === 0 && b === 0) { this.change_state(obj, true); }
2951
                          else if(a === c) { this.change_state(obj, false); }
2952
                            else {
2953
                                 obj.parentsUntil(".jstree","li").andSelf().removeClass("jstree-checked jstree-unchecked").addClass("jstree-undetermined");
2954
                                     if(rc) { obj.parentsUntil(".jstree", "li").andSelf().children(":checkbox").prop("checked", false); }
2955
                           }
2956
                      },
2957
                     reselect : function () {
2958
                               if(this.data.ui && this.data.checkbox.noui) {
2959
                                  var _this = this,
2960
                                              s = this.data.ui.to_select;
2961
                                    s = $.map($.makeArray(s), function (n) { return "#" + n.toString().replace(/^#/,"").replace(/\\\//g,"/").replace(/\//g,"\\\/").replace(/\\\./g,".").replace(/\./g,"\\.").replace(/\:/g,"\\:"); });
2962
                                     this.deselect_all();
2963
                                   $.each(s, function (i, val) { _this.check_node(val); });
2964
                                       this.__callback();
2965
                             }
2966
                              else {
2967
                                 this.__call_old();
2968
                             }
2969
                      },
2970
                     save_loaded : function () {
2971
                            var _this = this;
2972
                              this.data.core.to_load = [];
2973
                           this.get_container_ul().find("li.jstree-closed.jstree-undetermined").each(function () {
2974
                                        if(this.id) { _this.data.core.to_load.push("#" + this.id); }
2975
                           });
2976
                    }
2977
              }
2978
      });
2979
    $(function() {
2980
         var css_string = '.jstree .jstree-real-checkbox { display:none; } ';
2981
           $.vakata.css.add_sheet({ str : css_string, title : "jstree" });
2982
        });
2983
})(jQuery);
2984
//*/
2985
2986
/*
2987
 * jsTree XML plugin
2988
 * The XML data store. Datastores are build by overriding the `load_node` and `_is_loaded` functions.
2989
 */
2990
(function ($) {
2991
        $.vakata.xslt = function (xml, xsl, callback) {
2992
                var rs = "", xm, xs, processor, support;
2993
               // TODO: IE9 no XSLTProcessor, no document.recalc
2994
              if(document.recalc) {
2995
                  xm = document.createElement('xml');
2996
                    xs = document.createElement('xml');
2997
                    xm.innerHTML = xml;
2998
                    xs.innerHTML = xsl;
2999
                    $("body").append(xm).append(xs);
3000
                       setTimeout( (function (xm, xs, callback) {
3001
                             return function () {
3002
                                   callback.call(null, xm.transformNode(xs.XMLDocument));
3003
                                 setTimeout( (function (xm, xs) { return function () { $(xm).remove(); $(xs).remove(); }; })(xm, xs), 200);
3004
                             };
3005
                     })(xm, xs, callback), 100);
3006
                    return true;
3007
           }
3008
              if(typeof window.DOMParser !== "undefined" && typeof window.XMLHttpRequest !== "undefined" && typeof window.XSLTProcessor === "undefined") {
3009
                   xml = new DOMParser().parseFromString(xml, "text/xml");
3010
                        xsl = new DOMParser().parseFromString(xsl, "text/xml");
3011
                        // alert(xml.transformNode());
3012
                 // callback.call(null, new XMLSerializer().serializeToString(rs));
3013
3014
            }
3015
              if(typeof window.DOMParser !== "undefined" && typeof window.XMLHttpRequest !== "undefined" && typeof window.XSLTProcessor !== "undefined") {
3016
                   processor = new XSLTProcessor();
3017
                       support = $.isFunction(processor.transformDocument) ? (typeof window.XMLSerializer !== "undefined") : true;
3018
                    if(!support) { return false; }
3019
                 xml = new DOMParser().parseFromString(xml, "text/xml");
3020
                        xsl = new DOMParser().parseFromString(xsl, "text/xml");
3021
                        if($.isFunction(processor.transformDocument)) {
3022
                                rs = document.implementation.createDocument("", "", null);
3023
                             processor.transformDocument(xml, xsl, rs, null);
3024
                               callback.call(null, new XMLSerializer().serializeToString(rs));
3025
                                return true;
3026
                   }
3027
                      else {
3028
                         processor.importStylesheet(xsl);
3029
                               rs = processor.transformToFragment(xml, document);
3030
                             callback.call(null, $("<div />").append(rs).html());
3031
                           return true;
3032
                   }
3033
              }
3034
              return false;
3035
  };
3036
     var xsl = {
3037
            'nest' : '<' + '?xml version="1.0" encoding="utf-8" ?>' +
3038
                      '<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >' +
3039
                   '<xsl:output method="html" encoding="utf-8" omit-xml-declaration="yes" standalone="no" indent="no" media-type="text/html" />' +
3040
                        '<xsl:template match="/">' +
3041
                   '	<xsl:call-template name="nodes">' +
3042
                  '		<xsl:with-param name="node" select="/root" />' +
3043
                    '	</xsl:call-template>' +
3044
                      '</xsl:template>' +
3045
                    '<xsl:template name="nodes">' +
3046
                        '	<xsl:param name="node" />' +
3047
                 '	<ul>' +
3048
                      '	<xsl:for-each select="$node/item">' +
3049
                        '		<xsl:variable name="children" select="count(./item) &gt; 0" />' +
3050
                   '		<li>' +
3051
                     '			<xsl:attribute name="class">' +
3052
                    '				<xsl:if test="position() = last()">jstree-last </xsl:if>' +
3053
                       '				<xsl:choose>' +
3054
                   '					<xsl:when test="@state = \'open\'">jstree-open </xsl:when>' +
3055
                    '					<xsl:when test="$children or @hasChildren or @state = \'closed\'">jstree-closed </xsl:when>' +
3056
                   '					<xsl:otherwise>jstree-leaf </xsl:otherwise>' +
3057
                   '				</xsl:choose>' +
3058
                  '				<xsl:value-of select="@class" />' +
3059
                       '			</xsl:attribute>' +
3060
                        '			<xsl:for-each select="@*">' +
3061
                      '				<xsl:if test="name() != \'class\' and name() != \'state\' and name() != \'hasChildren\'">' +
3062
                      '					<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>' +
3063
                    '				</xsl:if>' +
3064
                      '			</xsl:for-each>' +
3065
                 '	<ins class="jstree-icon"><xsl:text>&#xa0;</xsl:text></ins>' +
3066
                        '			<xsl:for-each select="content/name">' +
3067
                    '				<a>' +
3068
                    '				<xsl:attribute name="href">' +
3069
                    '					<xsl:choose>' +
3070
                  '					<xsl:when test="@href"><xsl:value-of select="@href" /></xsl:when>' +
3071
                     '					<xsl:otherwise>#</xsl:otherwise>' +
3072
                      '					</xsl:choose>' +
3073
                 '				</xsl:attribute>' +
3074
                       '				<xsl:attribute name="class"><xsl:value-of select="@lang" /> <xsl:value-of select="@class" /></xsl:attribute>' +
3075
                   '				<xsl:attribute name="style"><xsl:value-of select="@style" /></xsl:attribute>' +
3076
                   '				<xsl:for-each select="@*">' +
3077
                     '					<xsl:if test="name() != \'style\' and name() != \'class\' and name() != \'href\'">' +
3078
                    '						<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>' +
3079
                   '					</xsl:if>' +
3080
                     '				</xsl:for-each>' +
3081
                        '					<ins>' +
3082
                 '						<xsl:attribute name="class">jstree-icon ' +
3083
                     '							<xsl:if test="string-length(attribute::icon) > 0 and not(contains(@icon,\'/\'))"><xsl:value-of select="@icon" /></xsl:if>' +
3084
                   '						</xsl:attribute>' +
3085
                     '						<xsl:if test="string-length(attribute::icon) > 0 and contains(@icon,\'/\')"><xsl:attribute name="style">background:url(<xsl:value-of select="@icon" />) center center no-repeat;</xsl:attribute></xsl:if>' +
3086
                    '						<xsl:text>&#xa0;</xsl:text>' +
3087
                  '					</ins>' +
3088
                        '					<xsl:copy-of select="./child::node()" />' +
3089
                      '				</a>' +
3090
                   '			</xsl:for-each>' +
3091
                 '			<xsl:if test="$children or @hasChildren"><xsl:call-template name="nodes"><xsl:with-param name="node" select="current()" /></xsl:call-template></xsl:if>' +
3092
                 '		</li>' +
3093
                    '	</xsl:for-each>' +
3094
                   '	</ul>' +
3095
                     '</xsl:template>' +
3096
                    '</xsl:stylesheet>',
3097
3098
          'flat' : '<' + '?xml version="1.0" encoding="utf-8" ?>' +
3099
                      '<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >' +
3100
                   '<xsl:output method="html" encoding="utf-8" omit-xml-declaration="yes" standalone="no" indent="no" media-type="text/xml" />' +
3101
                 '<xsl:template match="/">' +
3102
                   '	<ul>' +
3103
                      '	<xsl:for-each select="//item[not(@parent_id) or @parent_id=0 or not(@parent_id = //item/@id)]">' + /* the last `or` may be removed */
3104
                        '		<xsl:call-template name="nodes">' +
3105
                 '			<xsl:with-param name="node" select="." />' +
3106
                       '			<xsl:with-param name="is_last" select="number(position() = last())" />' +
3107
                  '		</xsl:call-template>' +
3108
                     '	</xsl:for-each>' +
3109
                   '	</ul>' +
3110
                     '</xsl:template>' +
3111
                    '<xsl:template name="nodes">' +
3112
                        '	<xsl:param name="node" />' +
3113
                 '	<xsl:param name="is_last" />' +
3114
                      '	<xsl:variable name="children" select="count(//item[@parent_id=$node/attribute::id]) &gt; 0" />' +
3115
                    '	<li>' +
3116
                      '	<xsl:attribute name="class">' +
3117
                      '		<xsl:if test="$is_last = true()">jstree-last </xsl:if>' +
3118
                   '		<xsl:choose>' +
3119
                     '			<xsl:when test="@state = \'open\'">jstree-open </xsl:when>' +
3120
                      '			<xsl:when test="$children or @hasChildren or @state = \'closed\'">jstree-closed </xsl:when>' +
3121
                     '			<xsl:otherwise>jstree-leaf </xsl:otherwise>' +
3122
                     '		</xsl:choose>' +
3123
                    '		<xsl:value-of select="@class" />' +
3124
                 '	</xsl:attribute>' +
3125
                  '	<xsl:for-each select="@*">' +
3126
                        '		<xsl:if test="name() != \'parent_id\' and name() != \'hasChildren\' and name() != \'class\' and name() != \'state\'">' +
3127
                    '		<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>' +
3128
                       '		</xsl:if>' +
3129
                        '	</xsl:for-each>' +
3130
                   '	<ins class="jstree-icon"><xsl:text>&#xa0;</xsl:text></ins>' +
3131
                        '	<xsl:for-each select="content/name">' +
3132
                      '		<a>' +
3133
                      '		<xsl:attribute name="href">' +
3134
                      '			<xsl:choose>' +
3135
                    '			<xsl:when test="@href"><xsl:value-of select="@href" /></xsl:when>' +
3136
                       '			<xsl:otherwise>#</xsl:otherwise>' +
3137
                        '			</xsl:choose>' +
3138
                   '		</xsl:attribute>' +
3139
                 '		<xsl:attribute name="class"><xsl:value-of select="@lang" /> <xsl:value-of select="@class" /></xsl:attribute>' +
3140
                     '		<xsl:attribute name="style"><xsl:value-of select="@style" /></xsl:attribute>' +
3141
                     '		<xsl:for-each select="@*">' +
3142
                       '			<xsl:if test="name() != \'style\' and name() != \'class\' and name() != \'href\'">' +
3143
                      '				<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>' +
3144
                     '			</xsl:if>' +
3145
                       '		</xsl:for-each>' +
3146
                  '			<ins>' +
3147
                   '				<xsl:attribute name="class">jstree-icon ' +
3148
                       '					<xsl:if test="string-length(attribute::icon) > 0 and not(contains(@icon,\'/\'))"><xsl:value-of select="@icon" /></xsl:if>' +
3149
                     '				</xsl:attribute>' +
3150
                       '				<xsl:if test="string-length(attribute::icon) > 0 and contains(@icon,\'/\')"><xsl:attribute name="style">background:url(<xsl:value-of select="@icon" />) center center no-repeat;</xsl:attribute></xsl:if>' +
3151
                      '				<xsl:text>&#xa0;</xsl:text>' +
3152
                    '			</ins>' +
3153
                  '			<xsl:copy-of select="./child::node()" />' +
3154
                        '		</a>' +
3155
                     '	</xsl:for-each>' +
3156
                   '	<xsl:if test="$children">' +
3157
                 '		<ul>' +
3158
                     '		<xsl:for-each select="//item[@parent_id=$node/attribute::id]">' +
3159
                   '			<xsl:call-template name="nodes">' +
3160
                        '				<xsl:with-param name="node" select="." />' +
3161
                      '				<xsl:with-param name="is_last" select="number(position() = last())" />' +
3162
                 '			</xsl:call-template>' +
3163
                    '		</xsl:for-each>' +
3164
                  '		</ul>' +
3165
                    '	</xsl:if>' +
3166
                 '	</li>' +
3167
                     '</xsl:template>' +
3168
                    '</xsl:stylesheet>'
3169
    },
3170
     escape_xml = function(string) {
3171
                return string
3172
                  .toString()
3173
                    .replace(/&/g, '&amp;')
3174
                        .replace(/</g, '&lt;')
3175
                 .replace(/>/g, '&gt;')
3176
                 .replace(/"/g, '&quot;')
3177
                       .replace(/'/g, '&apos;');
3178
      };
3179
     $.jstree.plugin("xml_data", {
3180
          defaults : {
3181
                   data : false,
3182
                  ajax : false,
3183
                  xsl : "flat",
3184
                  clean_node : false,
3185
                    correct_state : true,
3186
                  get_skip_empty : false,
3187
                        get_include_preamble : true
3188
            },
3189
             _fn : {
3190
                        load_node : function (obj, s_call, e_call) { var _this = this; this.load_node_xml(obj, function () { _this.__callback({ "obj" : _this._get_node(obj) }); s_call.call(this); }, e_call); },
3191
                     _is_loaded : function (obj) {
3192
                          var s = this._get_settings().xml_data;
3193
                         obj = this._get_node(obj);
3194
                             return obj == -1 || !obj || (!s.ajax && !$.isFunction(s.data)) || obj.is(".jstree-open, .jstree-leaf") || obj.children("ul").children("li").size() > 0;
3195
                        },
3196
                     load_node_xml : function (obj, s_call, e_call) {
3197
                               var s = this.get_settings().xml_data,
3198
                                  error_func = function () {},
3199
                                   success_func = function () {};
3200
3201
                                obj = this._get_node(obj);
3202
                             if(obj && obj !== -1) {
3203
                                        if(obj.data("jstree_is_loading")) { return; }
3204
                                  else { obj.data("jstree_is_loading",true); }
3205
                           }
3206
                              switch(!0) {
3207
                                   case (!s.data && !s.ajax): throw "Neither data nor ajax settings supplied.";
3208
                                   case ($.isFunction(s.data)):
3209
                                           s.data.call(this, obj, $.proxy(function (d) {
3210
                                                  this.parse_xml(d, $.proxy(function (d) {
3211
                                                               if(d) {
3212
                                                                        d = d.replace(/ ?xmlns="[^"]*"/ig, "");
3213
                                                                        if(d.length > 10) {
3214
                                                                            d = $(d);
3215
                                                                              if(obj === -1 || !obj) { this.get_container().children("ul").empty().append(d.children()); }
3216
                                                                           else { obj.children("a.jstree-loading").removeClass("jstree-loading"); obj.append(d); obj.removeData("jstree_is_loading"); }
3217
                                                                           if(s.clean_node) { this.clean_node(obj); }
3218
                                                                             if(s_call) { s_call.call(this); }
3219
                                                                      }
3220
                                                                      else {
3221
                                                                         if(obj && obj !== -1) {
3222
                                                                                        obj.children("a.jstree-loading").removeClass("jstree-loading");
3223
                                                                                        obj.removeData("jstree_is_loading");
3224
                                                                                   if(s.correct_state) {
3225
                                                                                          this.correct_state(obj);
3226
                                                                                               if(s_call) { s_call.call(this); }
3227
                                                                                      }
3228
                                                                              }
3229
                                                                              else {
3230
                                                                                 if(s.correct_state) {
3231
                                                                                          this.get_container().children("ul").empty();
3232
                                                                                           if(s_call) { s_call.call(this); }
3233
                                                                                      }
3234
                                                                              }
3235
                                                                      }
3236
                                                              }
3237
                                                      }, this));
3238
                                             }, this));
3239
                                             break;
3240
                                 case (!!s.data && !s.ajax) || (!!s.data && !!s.ajax && (!obj || obj === -1)):
3241
                                          if(!obj || obj == -1) {
3242
                                                        this.parse_xml(s.data, $.proxy(function (d) {
3243
                                                          if(d) {
3244
                                                                        d = d.replace(/ ?xmlns="[^"]*"/ig, "");
3245
                                                                        if(d.length > 10) {
3246
                                                                            d = $(d);
3247
                                                                              this.get_container().children("ul").empty().append(d.children());
3248
                                                                              if(s.clean_node) { this.clean_node(obj); }
3249
                                                                             if(s_call) { s_call.call(this); }
3250
                                                                      }
3251
                                                              }
3252
                                                              else {
3253
                                                                 if(s.correct_state) {
3254
                                                                          this.get_container().children("ul").empty();
3255
                                                                           if(s_call) { s_call.call(this); }
3256
                                                                      }
3257
                                                              }
3258
                                                      }, this));
3259
                                             }
3260
                                              break;
3261
                                 case (!s.data && !!s.ajax) || (!!s.data && !!s.ajax && obj && obj !== -1):
3262
                                             error_func = function (x, t, e) {
3263
                                                      var ef = this.get_settings().xml_data.ajax.error;
3264
                                                      if(ef) { ef.call(this, x, t, e); }
3265
                                                     if(obj !== -1 && obj.length) {
3266
                                                         obj.children("a.jstree-loading").removeClass("jstree-loading");
3267
                                                                obj.removeData("jstree_is_loading");
3268
                                                           if(t === "success" && s.correct_state) { this.correct_state(obj); }
3269
                                                    }
3270
                                                      else {
3271
                                                         if(t === "success" && s.correct_state) { this.get_container().children("ul").empty(); }
3272
                                                        }
3273
                                                      if(e_call) { e_call.call(this); }
3274
                                              };
3275
                                             success_func = function (d, t, x) {
3276
                                                    d = x.responseText;
3277
                                                    var sf = this.get_settings().xml_data.ajax.success;
3278
                                                    if(sf) { d = sf.call(this,d,t,x) || d; }
3279
                                                       if(d === "" || (d && d.toString && d.toString().replace(/^[\s\n]+$/,"") === "")) {
3280
                                                             return error_func.call(this, x, t, "");
3281
                                                        }
3282
                                                      this.parse_xml(d, $.proxy(function (d) {
3283
                                                               if(d) {
3284
                                                                        d = d.replace(/ ?xmlns="[^"]*"/ig, "");
3285
                                                                        if(d.length > 10) {
3286
                                                                            d = $(d);
3287
                                                                              if(obj === -1 || !obj) { this.get_container().children("ul").empty().append(d.children()); }
3288
                                                                           else { obj.children("a.jstree-loading").removeClass("jstree-loading"); obj.append(d); obj.removeData("jstree_is_loading"); }
3289
                                                                           if(s.clean_node) { this.clean_node(obj); }
3290
                                                                             if(s_call) { s_call.call(this); }
3291
                                                                      }
3292
                                                                      else {
3293
                                                                         if(obj && obj !== -1) {
3294
                                                                                        obj.children("a.jstree-loading").removeClass("jstree-loading");
3295
                                                                                        obj.removeData("jstree_is_loading");
3296
                                                                                   if(s.correct_state) {
3297
                                                                                          this.correct_state(obj);
3298
                                                                                               if(s_call) { s_call.call(this); }
3299
                                                                                      }
3300
                                                                              }
3301
                                                                              else {
3302
                                                                                 if(s.correct_state) {
3303
                                                                                          this.get_container().children("ul").empty();
3304
                                                                                           if(s_call) { s_call.call(this); }
3305
                                                                                      }
3306
                                                                              }
3307
                                                                      }
3308
                                                              }
3309
                                                      }, this));
3310
                                             };
3311
                                             s.ajax.context = this;
3312
                                         s.ajax.error = error_func;
3313
                                             s.ajax.success = success_func;
3314
                                         if(!s.ajax.dataType) { s.ajax.dataType = "xml"; }
3315
                                              if($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, obj); }
3316
                                              if($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, obj); }
3317
                                           $.ajax(s.ajax);
3318
                                                break;
3319
                         }
3320
                      },
3321
                     parse_xml : function (xml, callback) {
3322
                         var s = this._get_settings().xml_data;
3323
                         $.vakata.xslt(xml, xsl[s.xsl], callback);
3324
                      },
3325
                     get_xml : function (tp, obj, li_attr, a_attr, is_callback) {
3326
                           var result = "",
3327
                                       s = this._get_settings(),
3328
                                      _this = this,
3329
                                  tmp1, tmp2, li, a, lang;
3330
                               if(!tp) { tp = "flat"; }
3331
                               if(!is_callback) { is_callback = 0; }
3332
                          obj = this._get_node(obj);
3333
                             if(!obj || obj === -1) { obj = this.get_container().find("> ul > li"); }
3334
                               li_attr = $.isArray(li_attr) ? li_attr : [ "id", "class" ];
3335
                            if(!is_callback && this.data.types && $.inArray(s.types.type_attr, li_attr) === -1) { li_attr.push(s.types.type_attr); }
3336
3337
                              a_attr = $.isArray(a_attr) ? a_attr : [ ];
3338
3339
                            if(!is_callback) {
3340
                                     if(s.xml_data.get_include_preamble) {
3341
                                          result += '<' + '?xml version="1.0" encoding="UTF-8"?' + '>';
3342
                                  }
3343
                                      result += "<root>";
3344
                            }
3345
                              obj.each(function () {
3346
                                 result += "<item";
3347
                                     li = $(this);
3348
                                  $.each(li_attr, function (i, v) {
3349
                                              var t = li.attr(v);
3350
                                            if(!s.xml_data.get_skip_empty || typeof t !== "undefined") {
3351
                                                   result += " " + v + "=\"" + escape_xml((" " + (t || "")).replace(/ jstree[^ ]*/ig,'').replace(/\s+$/ig," ").replace(/^ /,"").replace(/ $/,"")) + "\"";
3352
                                         }
3353
                                      });
3354
                                    if(li.hasClass("jstree-open")) { result += " state=\"open\""; }
3355
                                        if(li.hasClass("jstree-closed")) { result += " state=\"closed\""; }
3356
                                    if(tp === "flat") { result += " parent_id=\"" + escape_xml(is_callback) + "\""; }
3357
                                      result += ">";
3358
                                 result += "<content>";
3359
                                 a = li.children("a");
3360
                                  a.each(function () {
3361
                                           tmp1 = $(this);
3362
                                                lang = false;
3363
                                          result += "<name";
3364
                                             if($.inArray("languages", s.plugins) !== -1) {
3365
                                                 $.each(s.languages, function (k, z) {
3366
                                                          if(tmp1.hasClass(z)) { result += " lang=\"" + escape_xml(z) + "\""; lang = z; return false; }
3367
                                                  });
3368
                                            }
3369
                                              if(a_attr.length) {
3370
                                                    $.each(a_attr, function (k, z) {
3371
                                                               var t = tmp1.attr(z);
3372
                                                          if(!s.xml_data.get_skip_empty || typeof t !== "undefined") {
3373
                                                                   result += " " + z + "=\"" + escape_xml((" " + t || "").replace(/ jstree[^ ]*/ig,'').replace(/\s+$/ig," ").replace(/^ /,"").replace(/ $/,"")) + "\"";
3374
                                                           }
3375
                                                      });
3376
                                            }
3377
                                              if(tmp1.children("ins").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/^\s+$/ig,"").length) {
3378
                                                 result += ' icon="' + escape_xml(tmp1.children("ins").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/\s+$/ig," ").replace(/^ /,"").replace(/ $/,"")) + '"';
3379
                                           }
3380
                                              if(tmp1.children("ins").get(0).style.backgroundImage.length) {
3381
                                                 result += ' icon="' + escape_xml(tmp1.children("ins").get(0).style.backgroundImage.replace("url(","").replace(")","").replace(/'/ig,"").replace(/"/ig,"")) + '"';
3382
                                              }
3383
                                              result += ">";
3384
                                         result += "<![CDATA[" + _this.get_text(tmp1, lang) + "]]>";
3385
                                            result += "</name>";
3386
                                   });
3387
                                    result += "</content>";
3388
                                        tmp2 = li[0].id || true;
3389
                                       li = li.find("> ul > li");
3390
                                     if(li.length) { tmp2 = _this.get_xml(tp, li, li_attr, a_attr, tmp2); }
3391
                                 else { tmp2 = ""; }
3392
                                    if(tp == "nest") { result += tmp2; }
3393
                                   result += "</item>";
3394
                                   if(tp == "flat") { result += tmp2; }
3395
                           });
3396
                            if(!is_callback) { result += "</root>"; }
3397
                              return result;
3398
                 }
3399
              }
3400
      });
3401
})(jQuery);
3402
//*/
3403
3404
/*
3405
 * jsTree search plugin
3406
 * Enables both sync and async search on the tree
3407
 * DOES NOT WORK WITH JSON PROGRESSIVE RENDER
3408
 */
3409
(function ($) {
3410
   $.expr[':'].jstree_contains = function(a,i,m){
3411
         return (a.textContent || a.innerText || "").toLowerCase().indexOf(m[3].toLowerCase())>=0;
3412
      };
3413
     $.expr[':'].jstree_title_contains = function(a,i,m) {
3414
          return (a.getAttribute("title") || "").toLowerCase().indexOf(m[3].toLowerCase())>=0;
3415
   };
3416
     $.jstree.plugin("search", {
3417
            __init : function () {
3418
                 this.data.search.str = "";
3419
                     this.data.search.result = $();
3420
                 if(this._get_settings().search.show_only_matches) {
3421
                            this.get_container()
3422
                                   .bind("search.jstree", function (e, data) {
3423
                                            $(this).children("ul").find("li").hide().removeClass("jstree-last");
3424
                                           data.rslt.nodes.parentsUntil(".jstree").andSelf().show()
3425
                                                       .filter("ul").each(function () { $(this).children("li:visible").eq(-1).addClass("jstree-last"); });
3426
                                    })
3427
                                     .bind("clear_search.jstree", function () {
3428
                                             $(this).children("ul").find("li").css("display","").end().end().jstree("clean_node", -1);
3429
                                      });
3430
                    }
3431
              },
3432
             defaults : {
3433
                   ajax : false,
3434
                  search_method : "jstree_contains", // for case insensitive - jstree_contains
3435
                   show_only_matches : false
3436
              },
3437
             _fn : {
3438
                        search : function (str, skip_async) {
3439
                          if($.trim(str) === "") { this.clear_search(); return; }
3440
                                var s = this.get_settings().search,
3441
                                    t = this,
3442
                                      error_func = function () { },
3443
                                  success_func = function () { };
3444
                                this.data.search.str = str;
3445
3446
                           if(!skip_async && s.ajax !== false && this.get_container_ul().find("li.jstree-closed:not(:has(ul)):eq(0)").length > 0) {
3447
                                       this.search.supress_callback = true;
3448
                                   error_func = function () { };
3449
                                  success_func = function (d, t, x) {
3450
                                            var sf = this.get_settings().search.ajax.success;
3451
                                              if(sf) { d = sf.call(this,d,t,x) || d; }
3452
                                               this.data.search.to_open = d;
3453
                                          this._search_open();
3454
                                   };
3455
                                     s.ajax.context = this;
3456
                                 s.ajax.error = error_func;
3457
                                     s.ajax.success = success_func;
3458
                                 if($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, str); }
3459
                                      if($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, str); }
3460
                                   if(!s.ajax.data) { s.ajax.data = { "search_string" : str }; }
3461
                                  if(!s.ajax.dataType || /^json/.exec(s.ajax.dataType)) { s.ajax.dataType = "json"; }
3462
                                    $.ajax(s.ajax);
3463
                                        return;
3464
                                }
3465
                              if(this.data.search.result.length) { this.clear_search(); }
3466
                            this.data.search.result = this.get_container().find("a" + (this.data.languages ? "." + this.get_lang() : "" ) + ":" + (s.search_method) + "(" + this.data.search.str + ")");
3467
                           this.data.search.result.addClass("jstree-search").parent().parents(".jstree-closed").each(function () {
3468
                                        t.open_node(this, false, true);
3469
                                });
3470
                            this.__callback({ nodes : this.data.search.result, str : str });
3471
                       },
3472
                     clear_search : function (str) {
3473
                                this.data.search.result.removeClass("jstree-search");
3474
                          this.__callback(this.data.search.result);
3475
                              this.data.search.result = $();
3476
                 },
3477
                     _search_open : function (is_callback) {
3478
                                var _this = this,
3479
                                      done = true,
3480
                                   current = [],
3481
                                  remaining = [];
3482
                                if(this.data.search.to_open.length) {
3483
                                  $.each(this.data.search.to_open, function (i, val) {
3484
                                           if(val == "#") { return true; }
3485
                                                if($(val).length && $(val).is(".jstree-closed")) { current.push(val); }
3486
                                                else { remaining.push(val); }
3487
                                  });
3488
                                    if(current.length) {
3489
                                           this.data.search.to_open = remaining;
3490
                                          $.each(current, function (i, val) {
3491
                                                    _this.open_node(val, function () { _this._search_open(true); });
3492
                                               });
3493
                                            done = false;
3494
                                  }
3495
                              }
3496
                              if(done) { this.search(this.data.search.str, true); }
3497
                  }
3498
              }
3499
      });
3500
})(jQuery);
3501
//*/
3502
3503
/*
3504
 * jsTree contextmenu plugin
3505
 */
3506
(function ($) {
3507
      $.vakata.context = {
3508
           hide_on_mouseleave : false,
3509
3510
           cnt		: $("<div id='vakata-contextmenu' />"),
3511
           vis		: false,
3512
          tgt		: false,
3513
          par		: false,
3514
          func	: false,
3515
          data	: false,
3516
          rtl		: false,
3517
          show	: function (s, t, x, y, d, p, rtl) {
3518
                      $.vakata.context.rtl = !!rtl;
3519
                  var html = $.vakata.context.parse(s), h, w;
3520
                    if(!html) { return; }
3521
                  $.vakata.context.vis = true;
3522
                   $.vakata.context.tgt = t;
3523
                      $.vakata.context.par = p || t || null;
3524
                 $.vakata.context.data = d || null;
3525
                     $.vakata.context.cnt
3526
                           .html(html)
3527
                            .css({ "visibility" : "hidden", "display" : "block", "left" : 0, "top" : 0 });
3528
3529
                        if($.vakata.context.hide_on_mouseleave) {
3530
                              $.vakata.context.cnt
3531
                                   .one("mouseleave", function(e) { $.vakata.context.hide(); });
3532
                  }
3533
3534
                     h = $.vakata.context.cnt.height();
3535
                     w = $.vakata.context.cnt.width();
3536
                      if(x + w > $(document).width()) {
3537
                              x = $(document).width() - (w + 5);
3538
                             $.vakata.context.cnt.find("li > ul").addClass("right");
3539
                        }
3540
                      if(y + h > $(document).height()) {
3541
                             y = y - (h + t[0].offsetHeight);
3542
                               $.vakata.context.cnt.find("li > ul").addClass("bottom");
3543
                       }
3544
3545
                     $.vakata.context.cnt
3546
                           .css({ "left" : x, "top" : y })
3547
                                .find("li:has(ul)")
3548
                                    .bind("mouseenter", function (e) {
3549
                                             var w = $(document).width(),
3550
                                                   h = $(document).height(),
3551
                                                      ul = $(this).children("ul").show();
3552
                                            if(w !== $(document).width()) { ul.toggleClass("right"); }
3553
                                             if(h !== $(document).height()) { ul.toggleClass("bottom"); }
3554
                                   })
3555
                                     .bind("mouseleave", function (e) {
3556
                                             $(this).children("ul").hide();
3557
                                 })
3558
                                     .end()
3559
                         .css({ "visibility" : "visible" })
3560
                             .show();
3561
                       $(document).triggerHandler("context_show.vakata");
3562
             },
3563
             hide	: function () {
3564
                   $.vakata.context.vis = false;
3565
                  $.vakata.context.cnt.attr("class","").css({ "visibility" : "hidden" });
3566
                        $(document).triggerHandler("context_hide.vakata");
3567
             },
3568
             parse	: function (s, is_callback) {
3569
                    if(!s) { return false; }
3570
                       var str = "",
3571
                          tmp = false,
3572
                           was_sep = true;
3573
                        if(!is_callback) { $.vakata.context.func = {}; }
3574
                       str += "<ul>";
3575
                 $.each(s, function (i, val) {
3576
                          if(!val) { return true; }
3577
                              $.vakata.context.func[i] = val.action;
3578
                         if(!was_sep && val.separator_before) {
3579
                                 str += "<li class='vakata-separator vakata-separator-before'></li>";
3580
                           }
3581
                              was_sep = false;
3582
                               str += "<li class='" + (val._class || "") + (val._disabled ? " jstree-contextmenu-disabled " : "") + "'><ins ";
3583
                                if(val.icon && val.icon.indexOf("/") === -1) { str += " class='" + val.icon + "' "; }
3584
                          if(val.icon && val.icon.indexOf("/") !== -1) { str += " style='background:url(" + val.icon + ") center center no-repeat;' "; }
3585
                         str += ">&#160;</ins><a href='#' rel='" + i + "'>";
3586
                            if(val.submenu) {
3587
                                      str += "<span style='float:" + ($.vakata.context.rtl ? "left" : "right") + ";'>&raquo;</span>";
3588
                                }
3589
                              str += val.label + "</a>";
3590
                             if(val.submenu) {
3591
                                      tmp = $.vakata.context.parse(val.submenu, true);
3592
                                       if(tmp) { str += tmp; }
3593
                                }
3594
                              str += "</li>";
3595
                                if(val.separator_after) {
3596
                                      str += "<li class='vakata-separator vakata-separator-after'></li>";
3597
                                    was_sep = true;
3598
                                }
3599
                      });
3600
                    str = str.replace(/<li class\='vakata-separator vakata-separator-after'\><\/li\>$/,"");
3601
                        str += "</ul>";
3602
                        $(document).triggerHandler("context_parse.vakata");
3603
                    return str.length > 10 ? str : false;
3604
          },
3605
             exec	: function (i) {
3606
                  if($.isFunction($.vakata.context.func[i])) {
3607
                           // if is string - eval and call it!
3608
                            $.vakata.context.func[i].call($.vakata.context.data, $.vakata.context.par);
3609
                            return true;
3610
                   }
3611
                      else { return false; }
3612
         }
3613
      };
3614
     $(function () {
3615
                var css_string = '' +
3616
                  '#vakata-contextmenu { display:block; visibility:hidden; left:0; top:-200px; position:absolute; margin:0; padding:0; min-width:180px; background:#ebebeb; border:1px solid silver; z-index:10000; *width:180px; } ' +
3617
                  '#vakata-contextmenu ul { min-width:180px; *width:180px; } ' +
3618
                 '#vakata-contextmenu ul, #vakata-contextmenu li { margin:0; padding:0; list-style-type:none; display:block; } ' +
3619
                      '#vakata-contextmenu li { line-height:20px; min-height:20px; position:relative; padding:0px; } ' +
3620
                     '#vakata-contextmenu li a { padding:1px 6px; line-height:17px; display:block; text-decoration:none; margin:1px 1px 0 1px; } ' +
3621
                        '#vakata-contextmenu li ins { float:left; width:16px; height:16px; text-decoration:none; margin-right:2px; } ' +
3622
                       '#vakata-contextmenu li a:hover, #vakata-contextmenu li.vakata-hover > a { background:gray; color:white; } ' +
3623
                 '#vakata-contextmenu li ul { display:none; position:absolute; top:-2px; left:100%; background:#ebebeb; border:1px solid gray; } ' +
3624
                    '#vakata-contextmenu .right { right:100%; left:auto; } ' +
3625
                     '#vakata-contextmenu .bottom { bottom:-1px; top:auto; } ' +
3626
                    '#vakata-contextmenu li.vakata-separator { min-height:0; height:1px; line-height:1px; font-size:1px; overflow:hidden; margin:0 2px; background:silver; /* border-top:1px solid #fefefe; */ padding:0; } ';
3627
             $.vakata.css.add_sheet({ str : css_string, title : "vakata" });
3628
                $.vakata.context.cnt
3629
                   .delegate("a","click", function (e) { e.preventDefault(); })
3630
                   .delegate("a","mouseup", function (e) {
3631
                                if(!$(this).parent().hasClass("jstree-contextmenu-disabled") && $.vakata.context.exec($(this).attr("rel"))) {
3632
                                  $.vakata.context.hide();
3633
                               }
3634
                              else { $(this).blur(); }
3635
                       })
3636
                     .delegate("a","mouseover", function () {
3637
                               $.vakata.context.cnt.find(".vakata-hover").removeClass("vakata-hover");
3638
                        })
3639
                     .appendTo("body");
3640
             $(document).bind("mousedown", function (e) { if($.vakata.context.vis && !$.contains($.vakata.context.cnt[0], e.target)) { $.vakata.context.hide(); } });
3641
               if(typeof $.hotkeys !== "undefined") {
3642
                 $(document)
3643
                            .bind("keydown", "up", function (e) {
3644
                                  if($.vakata.context.vis) {
3645
                                             var o = $.vakata.context.cnt.find("ul:visible").last().children(".vakata-hover").removeClass("vakata-hover").prevAll("li:not(.vakata-separator)").first();
3646
                                             if(!o.length) { o = $.vakata.context.cnt.find("ul:visible").last().children("li:not(.vakata-separator)").last(); }
3647
                                             o.addClass("vakata-hover");
3648
                                            e.stopImmediatePropagation();
3649
                                          e.preventDefault();
3650
                                    }
3651
                              })
3652
                             .bind("keydown", "down", function (e) {
3653
                                        if($.vakata.context.vis) {
3654
                                             var o = $.vakata.context.cnt.find("ul:visible").last().children(".vakata-hover").removeClass("vakata-hover").nextAll("li:not(.vakata-separator)").first();
3655
                                             if(!o.length) { o = $.vakata.context.cnt.find("ul:visible").last().children("li:not(.vakata-separator)").first(); }
3656
                                            o.addClass("vakata-hover");
3657
                                            e.stopImmediatePropagation();
3658
                                          e.preventDefault();
3659
                                    }
3660
                              })
3661
                             .bind("keydown", "right", function (e) {
3662
                                       if($.vakata.context.vis) {
3663
                                             $.vakata.context.cnt.find(".vakata-hover").children("ul").show().children("li:not(.vakata-separator)").removeClass("vakata-hover").first().addClass("vakata-hover");
3664
                                           e.stopImmediatePropagation();
3665
                                          e.preventDefault();
3666
                                    }
3667
                              })
3668
                             .bind("keydown", "left", function (e) {
3669
                                        if($.vakata.context.vis) {
3670
                                             $.vakata.context.cnt.find(".vakata-hover").children("ul").hide().children(".vakata-separator").removeClass("vakata-hover");
3671
                                            e.stopImmediatePropagation();
3672
                                          e.preventDefault();
3673
                                    }
3674
                              })
3675
                             .bind("keydown", "esc", function (e) {
3676
                                 $.vakata.context.hide();
3677
                                       e.preventDefault();
3678
                            })
3679
                             .bind("keydown", "space", function (e) {
3680
                                       $.vakata.context.cnt.find(".vakata-hover").last().children("a").click();
3681
                                       e.preventDefault();
3682
                            });
3683
            }
3684
      });
3685
3686
   $.jstree.plugin("contextmenu", {
3687
               __init : function () {
3688
                 this.get_container()
3689
                           .delegate("a", "contextmenu.jstree", $.proxy(function (e) {
3690
                                            e.preventDefault();
3691
                                            if(!$(e.currentTarget).hasClass("jstree-loading")) {
3692
                                                   this.show_contextmenu(e.currentTarget, e.pageX, e.pageY);
3693
                                              }
3694
                                      }, this))
3695
                              .delegate("a", "click.jstree", $.proxy(function (e) {
3696
                                          if(this.data.contextmenu) {
3697
                                                    $.vakata.context.hide();
3698
                                               }
3699
                                      }, this))
3700
                              .bind("destroy.jstree", $.proxy(function () {
3701
                                          // TODO: move this to descruct method
3702
                                          if(this.data.contextmenu) {
3703
                                                    $.vakata.context.hide();
3704
                                               }
3705
                                      }, this));
3706
                     $(document).bind("context_hide.vakata", $.proxy(function () { this.data.contextmenu = false; }, this));
3707
                },
3708
             defaults : {
3709
                   select_node : false, // requires UI plugin
3710
                     show_at_node : true,
3711
                   items : { // Could be a function that should return an object like this one
3712
                            "create" : {
3713
                                   "separator_before"	: false,
3714
                                    "separator_after"	: true,
3715
                                      "label"				: "Create",
3716
                                 "action"			: function (obj) { this.create(obj); }
3717
                              },
3718
                             "rename" : {
3719
                                   "separator_before"	: false,
3720
                                    "separator_after"	: false,
3721
                                     "label"				: "Rename",
3722
                                 "action"			: function (obj) { this.rename(obj); }
3723
                              },
3724
                             "remove" : {
3725
                                   "separator_before"	: false,
3726
                                    "icon"				: false,
3727
                                     "separator_after"	: false,
3728
                                     "label"				: "Delete",
3729
                                 "action"			: function (obj) { if(this.is_selected(obj)) { this.remove(); } else { this.remove(obj); } }
3730
                                },
3731
                             "ccp" : {
3732
                                      "separator_before"	: true,
3733
                                     "icon"				: false,
3734
                                     "separator_after"	: false,
3735
                                     "label"				: "Edit",
3736
                                   "action"			: false,
3737
                                    "submenu" : {
3738
                                          "cut" : {
3739
                                                      "separator_before"	: false,
3740
                                                    "separator_after"	: false,
3741
                                                     "label"				: "Cut",
3742
                                                    "action"			: function (obj) { this.cut(obj); }
3743
                                         },
3744
                                             "copy" : {
3745
                                                     "separator_before"	: false,
3746
                                                    "icon"				: false,
3747
                                                     "separator_after"	: false,
3748
                                                     "label"				: "Copy",
3749
                                                   "action"			: function (obj) { this.copy(obj); }
3750
                                                },
3751
                                             "paste" : {
3752
                                                    "separator_before"	: false,
3753
                                                    "icon"				: false,
3754
                                                     "separator_after"	: false,
3755
                                                     "label"				: "Paste",
3756
                                                  "action"			: function (obj) { this.paste(obj); }
3757
                                               }
3758
                                      }
3759
                              }
3760
                      }
3761
              },
3762
             _fn : {
3763
                        show_contextmenu : function (obj, x, y) {
3764
                              obj = this._get_node(obj);
3765
                             var s = this.get_settings().contextmenu,
3766
                                       a = obj.children("a:visible:eq(0)"),
3767
                                   o = false,
3768
                                     i = false;
3769
                             if(s.select_node && this.data.ui && !this.is_selected(obj)) {
3770
                                  this.deselect_all();
3771
                                   this.select_node(obj, true);
3772
                           }
3773
                              if(s.show_at_node || typeof x === "undefined" || typeof y === "undefined") {
3774
                                   o = a.offset();
3775
                                        x = o.left;
3776
                                    y = o.top + this.data.core.li_height;
3777
                          }
3778
                              i = obj.data("jstree") && obj.data("jstree").contextmenu ? obj.data("jstree").contextmenu : s.items;
3779
                           if($.isFunction(i)) { i = i.call(this, obj); }
3780
                         this.data.contextmenu = true;
3781
                          $.vakata.context.show(i, a, x, y, this, obj, this._get_settings().core.rtl);
3782
                           if(this.data.themes) { $.vakata.context.cnt.attr("class", "jstree-" + this.data.themes.theme + "-context"); }
3783
                  }
3784
              }
3785
      });
3786
})(jQuery);
3787
//*/
3788
3789
/*
3790
 * jsTree types plugin
3791
 * Adds support types of nodes
3792
 * You can set an attribute on each li node, that represents its type.
3793
 * According to the type setting the node may get custom icon/validation rules
3794
 */
3795
(function ($) {
3796
       $.jstree.plugin("types", {
3797
             __init : function () {
3798
                 var s = this._get_settings().types;
3799
                    this.data.types.attach_to = [];
3800
                        this.get_container()
3801
                           .bind("init.jstree", $.proxy(function () {
3802
                                             var types = s.types,
3803
                                                   attr  = s.type_attr,
3804
                                                   icons_css = "",
3805
                                                        _this = this;
3806
3807
                                         $.each(types, function (i, tp) {
3808
                                                       $.each(tp, function (k, v) {
3809
                                                           if(!/^(max_depth|max_children|icon|valid_children)$/.test(k)) { _this.data.types.attach_to.push(k); }
3810
                                                  });
3811
                                                    if(!tp.icon) { return true; }
3812
                                                  if( tp.icon.image || tp.icon.position) {
3813
                                                               if(i == "default")	{ icons_css += '.jstree-' + _this.get_index() + ' a > .jstree-icon { '; }
3814
                                                           else				{ icons_css += '.jstree-' + _this.get_index() + ' li[' + attr + '="' + i + '"] > a > .jstree-icon { '; }
3815
                                                               if(tp.icon.image)	{ icons_css += ' background-image:url(' + tp.icon.image + '); '; }
3816
                                                           if(tp.icon.position){ icons_css += ' background-position:' + tp.icon.position + '; '; }
3817
                                                                else				{ icons_css += ' background-position:0 0; '; }
3818
                                                         icons_css += '} ';
3819
                                                     }
3820
                                              });
3821
                                            if(icons_css !== "") { $.vakata.css.add_sheet({ 'str' : icons_css, title : "jstree-types" }); }
3822
                                        }, this))
3823
                              .bind("before.jstree", $.proxy(function (e, data) {
3824
                                            var s, t,
3825
                                                      o = this._get_settings().types.use_data ? this._get_node(data.args[0]) : false,
3826
                                                        d = o && o !== -1 && o.length ? o.data("jstree") : false;
3827
                                              if(d && d.types && d.types[data.func] === false) { e.stopImmediatePropagation(); return false; }
3828
                                               if($.inArray(data.func, this.data.types.attach_to) !== -1) {
3829
                                                   if(!data.args[0] || (!data.args[0].tagName && !data.args[0].jquery)) { return; }
3830
                                                       s = this._get_settings().types.types;
3831
                                                  t = this._get_type(data.args[0]);
3832
                                                      if(
3833
                                                            (
3834
                                                                      (s[t] && typeof s[t][data.func] !== "undefined") ||
3835
                                                                    (s["default"] && typeof s["default"][data.func] !== "undefined")
3836
                                                               ) && this._check(data.func, data.args[0]) === false
3837
                                                    ) {
3838
                                                            e.stopImmediatePropagation();
3839
                                                          return false;
3840
                                                  }
3841
                                              }
3842
                                      }, this));
3843
                     if(is_ie6) {
3844
                           this.get_container()
3845
                                   .bind("load_node.jstree set_type.jstree", $.proxy(function (e, data) {
3846
                                                 var r = data && data.rslt && data.rslt.obj && data.rslt.obj !== -1 ? this._get_node(data.rslt.obj).parent() : this.get_container_ul(),
3847
                                                         c = false,
3848
                                                             s = this._get_settings().types;
3849
                                                        $.each(s.types, function (i, tp) {
3850
                                                             if(tp.icon && (tp.icon.image || tp.icon.position)) {
3851
                                                                   c = i === "default" ? r.find("li > a > .jstree-icon") : r.find("li[" + s.type_attr + "='" + i + "'] > a > .jstree-icon");
3852
                                                                      if(tp.icon.image) { c.css("backgroundImage","url(" + tp.icon.image + ")"); }
3853
                                                                   c.css("backgroundPosition", tp.icon.position || "0 0");
3854
                                                                }
3855
                                                      });
3856
                                            }, this));
3857
                     }
3858
              },
3859
             defaults : {
3860
                   // defines maximum number of root nodes (-1 means unlimited, -2 means disable max_children checking)
3861
                   max_children		: -1,
3862
                    // defines the maximum depth of the tree (-1 means unlimited, -2 means disable max_depth checking)
3863
                     max_depth			: -1,
3864
                      // defines valid node types for the root nodes
3865
                 valid_children		: "all",
3866
3867
                      // whether to use $.data
3868
                       use_data : false,
3869
                      // where is the type stores (the rel attribute of the LI element)
3870
                      type_attr : "rel",
3871
                     // a list of types
3872
                     types : {
3873
                              // the default type
3874
                            "default" : {
3875
                                  "max_children"	: -1,
3876
                                   "max_depth"		: -1,
3877
                                     "valid_children": "all"
3878
3879
                                       // Bound functions - you can bind any other function here (using boolean or function)
3880
                                  //"select_node"	: true
3881
                         }
3882
                      }
3883
              },
3884
             _fn : {
3885
                        _types_notify : function (n, data) {
3886
                           if(data.type && this._get_settings().types.use_data) {
3887
                                 this.set_type(data.type, n);
3888
                           }
3889
                      },
3890
                     _get_type : function (obj) {
3891
                           obj = this._get_node(obj);
3892
                             return (!obj || !obj.length) ? false : obj.attr(this._get_settings().types.type_attr) || "default";
3893
                    },
3894
                     set_type : function (str, obj) {
3895
                               obj = this._get_node(obj);
3896
                             var ret = (!obj.length || !str) ? false : obj.attr(this._get_settings().types.type_attr, str);
3897
                         if(ret) { this.__callback({ obj : obj, type : str}); }
3898
                         return ret;
3899
                    },
3900
                     _check : function (rule, obj, opts) {
3901
                          obj = this._get_node(obj);
3902
                             var v = false, t = this._get_type(obj), d = 0, _this = this, s = this._get_settings().types, data = false;
3903
                             if(obj === -1) {
3904
                                       if(!!s[rule]) { v = s[rule]; }
3905
                                 else { return; }
3906
                               }
3907
                              else {
3908
                                 if(t === false) { return; }
3909
                                    data = s.use_data ? obj.data("jstree") : false;
3910
                                        if(data && data.types && typeof data.types[rule] !== "undefined") { v = data.types[rule]; }
3911
                                    else if(!!s.types[t] && typeof s.types[t][rule] !== "undefined") { v = s.types[t][rule]; }
3912
                                     else if(!!s.types["default"] && typeof s.types["default"][rule] !== "undefined") { v = s.types["default"][rule]; }
3913
                             }
3914
                              if($.isFunction(v)) { v = v.call(this, obj); }
3915
                         if(rule === "max_depth" && obj !== -1 && opts !== false && s.max_depth !== -2 && v !== 0) {
3916
                                    // also include the node itself - otherwise if root node it is not checked
3917
                                     obj.children("a:eq(0)").parentsUntil(".jstree","li").each(function (i) {
3918
                                               // check if current depth already exceeds global tree depth
3919
                                            if(s.max_depth !== -1 && s.max_depth - (i + 1) <= 0) { v = 0; return false; }
3920
                                          d = (i === 0) ? v : _this._check(rule, this, false);
3921
                                           // check if current node max depth is already matched or exceeded
3922
                                              if(d !== -1 && d - (i + 1) <= 0) { v = 0; return false; }
3923
                                              // otherwise - set the max depth to the current value minus current depth
3924
                                              if(d >= 0 && (d - (i + 1) < v || v < 0) ) { v = d - (i + 1); }
3925
                                         // if the global tree depth exists and it minus the nodes calculated so far is less than `v` or `v` is unlimited
3926
                                               if(s.max_depth >= 0 && (s.max_depth - (i + 1) < v || v < 0) ) { v = s.max_depth - (i + 1); }
3927
                                   });
3928
                            }
3929
                              return v;
3930
                      },
3931
                     check_move : function () {
3932
                             if(!this.__call_old()) { return false; }
3933
                               var m  = this._get_move(),
3934
                                     s  = m.rt._get_settings().types,
3935
                                       mc = m.rt._check("max_children", m.cr),
3936
                                        md = m.rt._check("max_depth", m.cr),
3937
                                   vc = m.rt._check("valid_children", m.cr),
3938
                                      ch = 0, d = 1, t;
3939
3940
                             if(vc === "none") { return false; }
3941
                            if($.isArray(vc) && m.ot && m.ot._get_type) {
3942
                                  m.o.each(function () {
3943
                                         if($.inArray(m.ot._get_type(this), vc) === -1) { d = false; return false; }
3944
                                    });
3945
                                    if(d === false) { return false; }
3946
                              }
3947
                              if(s.max_children !== -2 && mc !== -1) {
3948
                                       ch = m.cr === -1 ? this.get_container().find("> ul > li").not(m.o).length : m.cr.find("> ul > li").not(m.o).length;
3949
                                    if(ch + m.o.length > mc) { return false; }
3950
                             }
3951
                              if(s.max_depth !== -2 && md !== -1) {
3952
                                  d = 0;
3953
                                 if(md === 0) { return false; }
3954
                                 if(typeof m.o.d === "undefined") {
3955
                                             // TODO: deal with progressive rendering and async when checking max_depth (how to know the depth of the moved node)
3956
                                           t = m.o;
3957
                                               while(t.length > 0) {
3958
                                                  t = t.find("> ul > li");
3959
                                                       d ++;
3960
                                          }
3961
                                              m.o.d = d;
3962
                                     }
3963
                                      if(md - m.o.d < 0) { return false; }
3964
                           }
3965
                              return true;
3966
                   },
3967
                     create_node : function (obj, position, js, callback, is_loaded, skip_check) {
3968
                          if(!skip_check && (is_loaded || this._is_loaded(obj))) {
3969
                                       var p  = (typeof position == "string" && position.match(/^before|after$/i) && obj !== -1) ? this._get_parent(obj) : this._get_node(obj),
3970
                                               s  = this._get_settings().types,
3971
                                               mc = this._check("max_children", p),
3972
                                           md = this._check("max_depth", p),
3973
                                              vc = this._check("valid_children", p),
3974
                                         ch;
3975
                                    if(typeof js === "string") { js = { data : js }; }
3976
                                     if(!js) { js = {}; }
3977
                                   if(vc === "none") { return false; }
3978
                                    if($.isArray(vc)) {
3979
                                            if(!js.attr || !js.attr[s.type_attr]) {
3980
                                                        if(!js.attr) { js.attr = {}; }
3981
                                                 js.attr[s.type_attr] = vc[0];
3982
                                          }
3983
                                              else {
3984
                                                 if($.inArray(js.attr[s.type_attr], vc) === -1) { return false; }
3985
                                               }
3986
                                      }
3987
                                      if(s.max_children !== -2 && mc !== -1) {
3988
                                               ch = p === -1 ? this.get_container().find("> ul > li").length : p.find("> ul > li").length;
3989
                                            if(ch + 1 > mc) { return false; }
3990
                                      }
3991
                                      if(s.max_depth !== -2 && md !== -1 && (md - 1) < 0) { return false; }
3992
                          }
3993
                              return this.__call_old(true, obj, position, js, callback, is_loaded, skip_check);
3994
                      }
3995
              }
3996
      });
3997
})(jQuery);
3998
//*/
3999
4000
/*
4001
 * jsTree HTML plugin
4002
 * The HTML data store. Datastores are build by replacing the `load_node` and `_is_loaded` functions.
4003
 */
4004
(function ($) {
4005
       $.jstree.plugin("html_data", {
4006
         __init : function () {
4007
                 // this used to use html() and clean the whitespace, but this way any attached data was lost
4008
                   this.data.html_data.original_container_html = this.get_container().find(" > ul > li").clone(true);
4009
                     // remove white space from LI node - otherwise nodes appear a bit to the right
4010
                 this.data.html_data.original_container_html.find("li").andSelf().contents().filter(function() { return this.nodeType == 3; }).remove();
4011
                },
4012
             defaults : {
4013
                   data : false,
4014
                  ajax : false,
4015
                  correct_state : true
4016
           },
4017
             _fn : {
4018
                        load_node : function (obj, s_call, e_call) { var _this = this; this.load_node_html(obj, function () { _this.__callback({ "obj" : _this._get_node(obj) }); s_call.call(this); }, e_call); },
4019
                    _is_loaded : function (obj) {
4020
                          obj = this._get_node(obj);
4021
                             return obj == -1 || !obj || (!this._get_settings().html_data.ajax && !$.isFunction(this._get_settings().html_data.data)) || obj.is(".jstree-open, .jstree-leaf") || obj.children("ul").children("li").size() > 0;
4022
                      },
4023
                     load_node_html : function (obj, s_call, e_call) {
4024
                              var d,
4025
                                 s = this.get_settings().html_data,
4026
                                     error_func = function () {},
4027
                                   success_func = function () {};
4028
                         obj = this._get_node(obj);
4029
                             if(obj && obj !== -1) {
4030
                                        if(obj.data("jstree_is_loading")) { return; }
4031
                                  else { obj.data("jstree_is_loading",true); }
4032
                           }
4033
                              switch(!0) {
4034
                                   case ($.isFunction(s.data)):
4035
                                           s.data.call(this, obj, $.proxy(function (d) {
4036
                                                  if(d && d !== "" && d.toString && d.toString().replace(/^[\s\n]+$/,"") !== "") {
4037
                                                               d = $(d);
4038
                                                              if(!d.is("ul")) { d = $("<ul />").append(d); }
4039
                                                         if(obj == -1 || !obj) { this.get_container().children("ul").empty().append(d.children()).find("li, a").filter(function () { return !this.firstChild || !this.firstChild.tagName || this.firstChild.tagName !== "INS"; }).prepend("<ins class='jstree-icon'>&#160;</ins>").end().filter("a").children("ins:first-child").not(".jstree-icon").addClass("jstree-icon"); }
4040
                                                         else { obj.children("a.jstree-loading").removeClass("jstree-loading"); obj.append(d).children("ul").find("li, a").filter(function () { return !this.firstChild || !this.firstChild.tagName || this.firstChild.tagName !== "INS"; }).prepend("<ins class='jstree-icon'>&#160;</ins>").end().filter("a").children("ins:first-child").not(".jstree-icon").addClass("jstree-icon"); obj.removeData("jstree_is_loading"); }
4041
                                                         this.clean_node(obj);
4042
                                                          if(s_call) { s_call.call(this); }
4043
                                                      }
4044
                                                      else {
4045
                                                         if(obj && obj !== -1) {
4046
                                                                        obj.children("a.jstree-loading").removeClass("jstree-loading");
4047
                                                                        obj.removeData("jstree_is_loading");
4048
                                                                   if(s.correct_state) {
4049
                                                                          this.correct_state(obj);
4050
                                                                               if(s_call) { s_call.call(this); }
4051
                                                                      }
4052
                                                              }
4053
                                                              else {
4054
                                                                 if(s.correct_state) {
4055
                                                                          this.get_container().children("ul").empty();
4056
                                                                           if(s_call) { s_call.call(this); }
4057
                                                                      }
4058
                                                              }
4059
                                                      }
4060
                                              }, this));
4061
                                             break;
4062
                                 case (!s.data && !s.ajax):
4063
                                             if(!obj || obj == -1) {
4064
                                                        this.get_container()
4065
                                                           .children("ul").empty()
4066
                                                                .append(this.data.html_data.original_container_html)
4067
                                                           .find("li, a").filter(function () { return !this.firstChild || !this.firstChild.tagName || this.firstChild.tagName !== "INS"; }).prepend("<ins class='jstree-icon'>&#160;</ins>").end()
4068
                                                                .filter("a").children("ins:first-child").not(".jstree-icon").addClass("jstree-icon");
4069
                                                  this.clean_node();
4070
                                             }
4071
                                              if(s_call) { s_call.call(this); }
4072
                                              break;
4073
                                 case (!!s.data && !s.ajax) || (!!s.data && !!s.ajax && (!obj || obj === -1)):
4074
                                          if(!obj || obj == -1) {
4075
                                                        d = $(s.data);
4076
                                                 if(!d.is("ul")) { d = $("<ul />").append(d); }
4077
                                                 this.get_container()
4078
                                                           .children("ul").empty().append(d.children())
4079
                                                           .find("li, a").filter(function () { return !this.firstChild || !this.firstChild.tagName || this.firstChild.tagName !== "INS"; }).prepend("<ins class='jstree-icon'>&#160;</ins>").end()
4080
                                                                .filter("a").children("ins:first-child").not(".jstree-icon").addClass("jstree-icon");
4081
                                                  this.clean_node();
4082
                                             }
4083
                                              if(s_call) { s_call.call(this); }
4084
                                              break;
4085
                                 case (!s.data && !!s.ajax) || (!!s.data && !!s.ajax && obj && obj !== -1):
4086
                                             obj = this._get_node(obj);
4087
                                             error_func = function (x, t, e) {
4088
                                                      var ef = this.get_settings().html_data.ajax.error;
4089
                                                     if(ef) { ef.call(this, x, t, e); }
4090
                                                     if(obj != -1 && obj.length) {
4091
                                                          obj.children("a.jstree-loading").removeClass("jstree-loading");
4092
                                                                obj.removeData("jstree_is_loading");
4093
                                                           if(t === "success" && s.correct_state) { this.correct_state(obj); }
4094
                                                    }
4095
                                                      else {
4096
                                                         if(t === "success" && s.correct_state) { this.get_container().children("ul").empty(); }
4097
                                                        }
4098
                                                      if(e_call) { e_call.call(this); }
4099
                                              };
4100
                                             success_func = function (d, t, x) {
4101
                                                    var sf = this.get_settings().html_data.ajax.success;
4102
                                                   if(sf) { d = sf.call(this,d,t,x) || d; }
4103
                                                       if(d === "" || (d && d.toString && d.toString().replace(/^[\s\n]+$/,"") === "")) {
4104
                                                             return error_func.call(this, x, t, "");
4105
                                                        }
4106
                                                      if(d) {
4107
                                                                d = $(d);
4108
                                                              if(!d.is("ul")) { d = $("<ul />").append(d); }
4109
                                                         if(obj == -1 || !obj) { this.get_container().children("ul").empty().append(d.children()).find("li, a").filter(function () { return !this.firstChild || !this.firstChild.tagName || this.firstChild.tagName !== "INS"; }).prepend("<ins class='jstree-icon'>&#160;</ins>").end().filter("a").children("ins:first-child").not(".jstree-icon").addClass("jstree-icon"); }
4110
                                                         else { obj.children("a.jstree-loading").removeClass("jstree-loading"); obj.append(d).children("ul").find("li, a").filter(function () { return !this.firstChild || !this.firstChild.tagName || this.firstChild.tagName !== "INS"; }).prepend("<ins class='jstree-icon'>&#160;</ins>").end().filter("a").children("ins:first-child").not(".jstree-icon").addClass("jstree-icon"); obj.removeData("jstree_is_loading"); }
4111
                                                         this.clean_node(obj);
4112
                                                          if(s_call) { s_call.call(this); }
4113
                                                      }
4114
                                                      else {
4115
                                                         if(obj && obj !== -1) {
4116
                                                                        obj.children("a.jstree-loading").removeClass("jstree-loading");
4117
                                                                        obj.removeData("jstree_is_loading");
4118
                                                                   if(s.correct_state) {
4119
                                                                          this.correct_state(obj);
4120
                                                                               if(s_call) { s_call.call(this); }
4121
                                                                      }
4122
                                                              }
4123
                                                              else {
4124
                                                                 if(s.correct_state) {
4125
                                                                          this.get_container().children("ul").empty();
4126
                                                                           if(s_call) { s_call.call(this); }
4127
                                                                      }
4128
                                                              }
4129
                                                      }
4130
                                              };
4131
                                             s.ajax.context = this;
4132
                                         s.ajax.error = error_func;
4133
                                             s.ajax.success = success_func;
4134
                                         if(!s.ajax.dataType) { s.ajax.dataType = "html"; }
4135
                                             if($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, obj); }
4136
                                              if($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, obj); }
4137
                                           $.ajax(s.ajax);
4138
                                                break;
4139
                         }
4140
                      }
4141
              }
4142
      });
4143
    // include the HTML data plugin by default
4144
     $.jstree.defaults.plugins.push("html_data");
4145
})(jQuery);
4146
//*/
4147
4148
/*
4149
 * jsTree themeroller plugin
4150
 * Adds support for jQuery UI themes. Include this at the end of your plugins list, also make sure "themes" is not included.
4151
 */
4152
(function ($) {
4153
        $.jstree.plugin("themeroller", {
4154
               __init : function () {
4155
                 var s = this._get_settings().themeroller;
4156
                      this.get_container()
4157
                           .addClass("ui-widget-content")
4158
                         .addClass("jstree-themeroller")
4159
                                .delegate("a","mouseenter.jstree", function (e) {
4160
                                      if(!$(e.currentTarget).hasClass("jstree-loading")) {
4161
                                           $(this).addClass(s.item_h);
4162
                                    }
4163
                              })
4164
                             .delegate("a","mouseleave.jstree", function () {
4165
                                       $(this).removeClass(s.item_h);
4166
                         })
4167
                             .bind("init.jstree", $.proxy(function (e, data) {
4168
                                              data.inst.get_container().find("> ul > li > .jstree-loading > ins").addClass("ui-icon-refresh");
4169
                                               this._themeroller(data.inst.get_container().find("> ul > li"));
4170
                                        }, this))
4171
                              .bind("open_node.jstree create_node.jstree", $.proxy(function (e, data) {
4172
                                              this._themeroller(data.rslt.obj);
4173
                                      }, this))
4174
                              .bind("loaded.jstree refresh.jstree", $.proxy(function (e) {
4175
                                           this._themeroller();
4176
                                   }, this))
4177
                              .bind("close_node.jstree", $.proxy(function (e, data) {
4178
                                                this._themeroller(data.rslt.obj);
4179
                                      }, this))
4180
                              .bind("delete_node.jstree", $.proxy(function (e, data) {
4181
                                               this._themeroller(data.rslt.parent);
4182
                                   }, this))
4183
                              .bind("correct_state.jstree", $.proxy(function (e, data) {
4184
                                             data.rslt.obj
4185
                                                  .children("ins.jstree-icon").removeClass(s.opened + " " + s.closed + " ui-icon").end()
4186
                                                 .find("> a > ins.ui-icon")
4187
                                                             .filter(function() {
4188
                                                                   return this.className.toString()
4189
                                                                               .replace(s.item_clsd,"").replace(s.item_open,"").replace(s.item_leaf,"")
4190
                                                                               .indexOf("ui-icon-") === -1;
4191
                                                           }).removeClass(s.item_open + " " + s.item_clsd).addClass(s.item_leaf || "jstree-no-icon");
4192
                                     }, this))
4193
                              .bind("select_node.jstree", $.proxy(function (e, data) {
4194
                                               data.rslt.obj.children("a").addClass(s.item_a);
4195
                                        }, this))
4196
                              .bind("deselect_node.jstree deselect_all.jstree", $.proxy(function (e, data) {
4197
                                         this.get_container()
4198
                                                   .find("a." + s.item_a).removeClass(s.item_a).end()
4199
                                                     .find("a.jstree-clicked").addClass(s.item_a);
4200
                                  }, this))
4201
                              .bind("dehover_node.jstree", $.proxy(function (e, data) {
4202
                                              data.rslt.obj.children("a").removeClass(s.item_h);
4203
                                     }, this))
4204
                              .bind("hover_node.jstree", $.proxy(function (e, data) {
4205
                                                this.get_container()
4206
                                                   .find("a." + s.item_h).not(data.rslt.obj).removeClass(s.item_h);
4207
                                               data.rslt.obj.children("a").addClass(s.item_h);
4208
                                        }, this))
4209
                              .bind("move_node.jstree", $.proxy(function (e, data) {
4210
                                         this._themeroller(data.rslt.o);
4211
                                                this._themeroller(data.rslt.op);
4212
                                       }, this));
4213
             },
4214
             __destroy : function () {
4215
                      var s = this._get_settings().themeroller,
4216
                              c = [ "ui-icon" ];
4217
                     $.each(s, function (i, v) {
4218
                            v = v.split(" ");
4219
                              if(v.length) { c = c.concat(v); }
4220
                      });
4221
                    this.get_container()
4222
                           .removeClass("ui-widget-content")
4223
                              .find("." + c.join(", .")).removeClass(c.join(" "));
4224
           },
4225
             _fn : {
4226
                        _themeroller : function (obj) {
4227
                                var s = this._get_settings().themeroller;
4228
                              obj = !obj || obj == -1 ? this.get_container_ul() : this._get_node(obj).parent();
4229
                              obj
4230
                                    .find("li.jstree-closed")
4231
                                              .children("ins.jstree-icon").removeClass(s.opened).addClass("ui-icon " + s.closed).end()
4232
                                               .children("a").addClass(s.item)
4233
                                                        .children("ins.jstree-icon").addClass("ui-icon")
4234
                                                               .filter(function() {
4235
                                                                   return this.className.toString()
4236
                                                                               .replace(s.item_clsd,"").replace(s.item_open,"").replace(s.item_leaf,"")
4237
                                                                               .indexOf("ui-icon-") === -1;
4238
                                                           }).removeClass(s.item_leaf + " " + s.item_open).addClass(s.item_clsd || "jstree-no-icon")
4239
                                                              .end()
4240
                                                 .end()
4241
                                         .end()
4242
                                 .end()
4243
                                 .find("li.jstree-open")
4244
                                                .children("ins.jstree-icon").removeClass(s.closed).addClass("ui-icon " + s.opened).end()
4245
                                               .children("a").addClass(s.item)
4246
                                                        .children("ins.jstree-icon").addClass("ui-icon")
4247
                                                               .filter(function() {
4248
                                                                   return this.className.toString()
4249
                                                                               .replace(s.item_clsd,"").replace(s.item_open,"").replace(s.item_leaf,"")
4250
                                                                               .indexOf("ui-icon-") === -1;
4251
                                                           }).removeClass(s.item_leaf + " " + s.item_clsd).addClass(s.item_open || "jstree-no-icon")
4252
                                                              .end()
4253
                                                 .end()
4254
                                         .end()
4255
                                 .end()
4256
                                 .find("li.jstree-leaf")
4257
                                                .children("ins.jstree-icon").removeClass(s.closed + " ui-icon " + s.opened).end()
4258
                                              .children("a").addClass(s.item)
4259
                                                        .children("ins.jstree-icon").addClass("ui-icon")
4260
                                                               .filter(function() {
4261
                                                                   return this.className.toString()
4262
                                                                               .replace(s.item_clsd,"").replace(s.item_open,"").replace(s.item_leaf,"")
4263
                                                                               .indexOf("ui-icon-") === -1;
4264
                                                           }).removeClass(s.item_clsd + " " + s.item_open).addClass(s.item_leaf || "jstree-no-icon");
4265
                     }
4266
              },
4267
             defaults : {
4268
                   "opened"	: "ui-icon-triangle-1-se",
4269
                    "closed"	: "ui-icon-triangle-1-e",
4270
                     "item"		: "ui-state-default",
4271
                  "item_h"	: "ui-state-hover",
4272
                   "item_a"	: "ui-state-active",
4273
                  "item_open"	: "ui-icon-folder-open",
4274
                   "item_clsd"	: "ui-icon-folder-collapsed",
4275
                      "item_leaf"	: "ui-icon-document"
4276
               }
4277
      });
4278
    $(function() {
4279
         var css_string = '' +
4280
                  '.jstree-themeroller .ui-icon { overflow:visible; } ' +
4281
                        '.jstree-themeroller a { padding:0 2px; } ' +
4282
                  '.jstree-themeroller .jstree-no-icon { display:none; }';
4283
               $.vakata.css.add_sheet({ str : css_string, title : "jstree" });
4284
        });
4285
})(jQuery);
4286
//*/
4287
4288
/*
4289
 * jsTree unique plugin
4290
 * Forces different names amongst siblings (still a bit experimental)
4291
 * NOTE: does not check language versions (it will not be possible to have nodes with the same title, even in different languages)
4292
 */
4293
(function ($) {
4294
  $.jstree.plugin("unique", {
4295
            __init : function () {
4296
                 this.get_container()
4297
                           .bind("before.jstree", $.proxy(function (e, data) {
4298
                                            var nms = [], res = true, p, t;
4299
                                                if(data.func == "move_node") {
4300
                                                 // obj, ref, position, is_copy, is_prepared, skip_check
4301
                                                        if(data.args[4] === true) {
4302
                                                            if(data.args[0].o && data.args[0].o.length) {
4303
                                                                  data.args[0].o.children("a").each(function () { nms.push($(this).text().replace(/^\s+/g,"")); });
4304
                                                                      res = this._check_unique(nms, data.args[0].np.find("> ul > li").not(data.args[0].o), "move_node");
4305
                                                             }
4306
                                                      }
4307
                                              }
4308
                                              if(data.func == "create_node") {
4309
                                                       // obj, position, js, callback, is_loaded
4310
                                                      if(data.args[4] || this._is_loaded(data.args[0])) {
4311
                                                            p = this._get_node(data.args[0]);
4312
                                                              if(data.args[1] && (data.args[1] === "before" || data.args[1] === "after")) {
4313
                                                                  p = this._get_parent(data.args[0]);
4314
                                                                    if(!p || p === -1) { p = this.get_container(); }
4315
                                                               }
4316
                                                              if(typeof data.args[2] === "string") { nms.push(data.args[2]); }
4317
                                                               else if(!data.args[2] || !data.args[2].data) { nms.push(this._get_string("new_node")); }
4318
                                                               else { nms.push(data.args[2].data); }
4319
                                                          res = this._check_unique(nms, p.find("> ul > li"), "create_node");
4320
                                                     }
4321
                                              }
4322
                                              if(data.func == "rename_node") {
4323
                                                       // obj, val
4324
                                                    nms.push(data.args[1]);
4325
                                                        t = this._get_node(data.args[0]);
4326
                                                      p = this._get_parent(t);
4327
                                                       if(!p || p === -1) { p = this.get_container(); }
4328
                                                       res = this._check_unique(nms, p.find("> ul > li").not(t), "rename_node");
4329
                                              }
4330
                                              if(!res) {
4331
                                                     e.stopPropagation();
4332
                                                   return false;
4333
                                          }
4334
                                      }, this));
4335
             },
4336
             defaults : {
4337
                   error_callback : $.noop
4338
                },
4339
             _fn : {
4340
                        _check_unique : function (nms, p, func) {
4341
                              var cnms = [];
4342
                         p.children("a").each(function () { cnms.push($(this).text().replace(/^\s+/g,"")); });
4343
                          if(!cnms.length || !nms.length) { return true; }
4344
                               cnms = cnms.sort().join(",,").replace(/(,|^)([^,]+)(,,\2)+(,|$)/g,"$1$2$4").replace(/,,+/g,",").replace(/,$/,"").split(",");
4345
                           if((cnms.length + nms.length) != cnms.concat(nms).sort().join(",,").replace(/(,|^)([^,]+)(,,\2)+(,|$)/g,"$1$2$4").replace(/,,+/g,",").replace(/,$/,"").split(",").length) {
4346
                                    this._get_settings().unique.error_callback.call(null, nms, p, func);
4347
                                   return false;
4348
                          }
4349
                              return true;
4350
                   },
4351
                     check_move : function () {
4352
                             if(!this.__call_old()) { return false; }
4353
                               var p = this._get_move(), nms = [];
4354
                            if(p.o && p.o.length) {
4355
                                        p.o.children("a").each(function () { nms.push($(this).text().replace(/^\s+/g,"")); });
4356
                                 return this._check_unique(nms, p.np.find("> ul > li").not(p.o), "check_move");
4357
                         }
4358
                              return true;
4359
                   }
4360
              }
4361
      });
4362
})(jQuery);
4363
//*/
4364
4365
/*
4366
 * jsTree wholerow plugin
4367
 * Makes select and hover work on the entire width of the node
4368
 * MAY BE HEAVY IN LARGE DOM
4369
 */
4370
(function ($) {
4371
     $.jstree.plugin("wholerow", {
4372
          __init : function () {
4373
                 if(!this.data.ui) { throw "jsTree wholerow: jsTree UI plugin not included."; }
4374
                 this.data.wholerow.html = false;
4375
                       this.data.wholerow.to = false;
4376
                 this.get_container()
4377
                           .bind("init.jstree", $.proxy(function (e, data) {
4378
                                              this._get_settings().core.animation = 0;
4379
                                       }, this))
4380
                              .bind("open_node.jstree create_node.jstree clean_node.jstree loaded.jstree", $.proxy(function (e, data) {
4381
                                              this._prepare_wholerow_span( data && data.rslt && data.rslt.obj ? data.rslt.obj : -1 );
4382
                                        }, this))
4383
                              .bind("search.jstree clear_search.jstree reopen.jstree after_open.jstree after_close.jstree create_node.jstree delete_node.jstree clean_node.jstree", $.proxy(function (e, data) {
4384
                                             if(this.data.to) { clearTimeout(this.data.to); }
4385
                                               this.data.to = setTimeout( (function (t, o) { return function() { t._prepare_wholerow_ul(o); }; })(this,  data && data.rslt && data.rslt.obj ? data.rslt.obj : -1), 0);
4386
                                        }, this))
4387
                              .bind("deselect_all.jstree", $.proxy(function (e, data) {
4388
                                              this.get_container().find(" > .jstree-wholerow .jstree-clicked").removeClass("jstree-clicked " + (this.data.themeroller ? this._get_settings().themeroller.item_a : "" ));
4389
                                     }, this))
4390
                              .bind("select_node.jstree deselect_node.jstree ", $.proxy(function (e, data) {
4391
                                         data.rslt.obj.each(function () {
4392
                                                       var ref = data.inst.get_container().find(" > .jstree-wholerow li:visible:eq(" + ( parseInt((($(this).offset().top - data.inst.get_container().offset().top + data.inst.get_container()[0].scrollTop) / data.inst.data.core.li_height),10)) + ")");
4393
                                                     // ref.children("a")[e.type === "select_node" ? "addClass" : "removeClass"]("jstree-clicked");
4394
                                                 ref.children("a").attr("class",data.rslt.obj.children("a").attr("class"));
4395
                                             });
4396
                                    }, this))
4397
                              .bind("hover_node.jstree dehover_node.jstree", $.proxy(function (e, data) {
4398
                                            this.get_container().find(" > .jstree-wholerow .jstree-hovered").removeClass("jstree-hovered " + (this.data.themeroller ? this._get_settings().themeroller.item_h : "" ));
4399
                                             if(e.type === "hover_node") {
4400
                                                  var ref = this.get_container().find(" > .jstree-wholerow li:visible:eq(" + ( parseInt(((data.rslt.obj.offset().top - this.get_container().offset().top + this.get_container()[0].scrollTop) / this.data.core.li_height),10)) + ")");
4401
                                                   // ref.children("a").addClass("jstree-hovered");
4402
                                                       ref.children("a").attr("class",data.rslt.obj.children(".jstree-hovered").attr("class"));
4403
                                               }
4404
                                      }, this))
4405
                              .delegate(".jstree-wholerow-span, ins.jstree-icon, li", "click.jstree", function (e) {
4406
                                         var n = $(e.currentTarget);
4407
                                            if(e.target.tagName === "A" || (e.target.tagName === "INS" && n.closest("li").is(".jstree-open, .jstree-closed"))) { return; }
4408
                                         n.closest("li").children("a:visible:eq(0)").click();
4409
                                           e.stopImmediatePropagation();
4410
                                  })
4411
                             .delegate("li", "mouseover.jstree", $.proxy(function (e) {
4412
                                             e.stopImmediatePropagation();
4413
                                          if($(e.currentTarget).children(".jstree-hovered, .jstree-clicked").length) { return false; }
4414
                                           this.hover_node(e.currentTarget);
4415
                                              return false;
4416
                                  }, this))
4417
                              .delegate("li", "mouseleave.jstree", $.proxy(function (e) {
4418
                                            if($(e.currentTarget).children("a").hasClass("jstree-hovered").length) { return; }
4419
                                             this.dehover_node(e.currentTarget);
4420
                                    }, this));
4421
                     if(is_ie7 || is_ie6) {
4422
                         $.vakata.css.add_sheet({ str : ".jstree-" + this.get_index() + " { position:relative; } ", title : "jstree" });
4423
                        }
4424
              },
4425
             defaults : {
4426
           },
4427
             __destroy : function () {
4428
                      this.get_container().children(".jstree-wholerow").remove();
4429
                    this.get_container().find(".jstree-wholerow-span").remove();
4430
           },
4431
             _fn : {
4432
                        _prepare_wholerow_span : function (obj) {
4433
                              obj = !obj || obj == -1 ? this.get_container().find("> ul > li") : this._get_node(obj);
4434
                                if(obj === false) { return; } // added for removing root nodes
4435
                         obj.each(function () {
4436
                                 $(this).find("li").andSelf().each(function () {
4437
                                                var $t = $(this);
4438
                                              if($t.children(".jstree-wholerow-span").length) { return true; }
4439
                                               $t.prepend("<span class='jstree-wholerow-span' style='width:" + ($t.parentsUntil(".jstree","li").length * 18) + "px;'>&#160;</span>");
4440
                                 });
4441
                            });
4442
                    },
4443
                     _prepare_wholerow_ul : function () {
4444
                           var o = this.get_container().children("ul").eq(0), h = o.html();
4445
                               o.addClass("jstree-wholerow-real");
4446
                            if(this.data.wholerow.last_html !== h) {
4447
                                       this.data.wholerow.last_html = h;
4448
                                      this.get_container().children(".jstree-wholerow").remove();
4449
                                    this.get_container().append(
4450
                                           o.clone().removeClass("jstree-wholerow-real")
4451
                                                  .wrapAll("<div class='jstree-wholerow' />").parent()
4452
                                                   .width(o.parent()[0].scrollWidth)
4453
                                                      .css("top", (o.height() + ( is_ie7 ? 5 : 0)) * -1 )
4454
                                                    .find("li[id]").each(function () { this.removeAttribute("id"); }).end()
4455
                                        );
4456
                             }
4457
                      }
4458
              }
4459
      });
4460
    $(function() {
4461
         var css_string = '' +
4462
                  '.jstree .jstree-wholerow-real { position:relative; z-index:1; } ' +
4463
                   '.jstree .jstree-wholerow-real li { cursor:pointer; } ' +
4464
                      '.jstree .jstree-wholerow-real a { border-left-color:transparent !important; border-right-color:transparent !important; } ' +
4465
                  '.jstree .jstree-wholerow { position:relative; z-index:0; height:0; } ' +
4466
                      '.jstree .jstree-wholerow ul, .jstree .jstree-wholerow li { width:100%; } ' +
4467
                  '.jstree .jstree-wholerow, .jstree .jstree-wholerow ul, .jstree .jstree-wholerow li, .jstree .jstree-wholerow a { margin:0 !important; padding:0 !important; } ' +
4468
                     '.jstree .jstree-wholerow, .jstree .jstree-wholerow ul, .jstree .jstree-wholerow li { background:transparent !important; }' +
4469
                  '.jstree .jstree-wholerow ins, .jstree .jstree-wholerow span, .jstree .jstree-wholerow input { display:none !important; }' +
4470
                   '.jstree .jstree-wholerow a, .jstree .jstree-wholerow a:hover { text-indent:-9999px; !important; width:100%; padding:0 !important; border-right-width:0px !important; border-left-width:0px !important; } ' +
4471
                  '.jstree .jstree-wholerow-span { position:absolute; left:0; margin:0px; padding:0; height:18px; border-width:0; padding:0; z-index:0; }';
4472
              if(is_ff2) {
4473
                   css_string += '' +
4474
                             '.jstree .jstree-wholerow a { display:block; height:18px; margin:0; padding:0; border:0; } ' +
4475
                         '.jstree .jstree-wholerow-real a { border-color:transparent !important; } ';
4476
           }
4477
              if(is_ie7 || is_ie6) {
4478
                 css_string += '' +
4479
                             '.jstree .jstree-wholerow, .jstree .jstree-wholerow li, .jstree .jstree-wholerow ul, .jstree .jstree-wholerow a { margin:0; padding:0; line-height:18px; } ' +
4480
                         '.jstree .jstree-wholerow a { display:block; height:18px; line-height:18px; overflow:hidden; } ';
4481
              }
4482
              $.vakata.css.add_sheet({ str : css_string, title : "jstree" });
4483
        });
4484
})(jQuery);
4485
//*/
4486
4487
/*
4488
* jsTree model plugin
4489
* This plugin gets jstree to use a class model to retrieve data, creating great dynamism
4490
*/
4491
(function ($) {
4492
     var nodeInterface = ["getChildren","getChildrenCount","getAttr","getName","getProps"],
4493
         validateInterface = function(obj, inter) {
4494
                     var valid = true;
4495
                      obj = obj || {};
4496
                       inter = [].concat(inter);
4497
                      $.each(inter, function (i, v) {
4498
                                if(!$.isFunction(obj[v])) { valid = false; return false; }
4499
                     });
4500
                    return valid;
4501
          };
4502
     $.jstree.plugin("model", {
4503
             __init : function () {
4504
                 if(!this.data.json_data) { throw "jsTree model: jsTree json_data plugin not included."; }
4505
                      this._get_settings().json_data.data = function (n, b) {
4506
                                var obj = (n == -1) ? this._get_settings().model.object : n.data("jstree_model");
4507
                              if(!validateInterface(obj, nodeInterface)) { return b.call(null, false); }
4508
                             if(this._get_settings().model.async) {
4509
                                 obj.getChildren($.proxy(function (data) {
4510
                                              this.model_done(data, b);
4511
                                      }, this));
4512
                             }
4513
                              else {
4514
                                 this.model_done(obj.getChildren(), b);
4515
                         }
4516
                      };
4517
             },
4518
             defaults : {
4519
                   object : false,
4520
                        id_prefix : false,
4521
                     async : false
4522
          },
4523
             _fn : {
4524
                        model_done : function (data, callback) {
4525
                               var ret = [],
4526
                                  s = this._get_settings(),
4527
                                      _this = this;
4528
4529
                         if(!$.isArray(data)) { data = [data]; }
4530
                                $.each(data, function (i, nd) {
4531
                                        var r = nd.getProps() || {};
4532
                                   r.attr = nd.getAttr() || {};
4533
                                   if(nd.getChildrenCount()) { r.state = "closed"; }
4534
                                      r.data = nd.getName();
4535
                                 if(!$.isArray(r.data)) { r.data = [r.data]; }
4536
                                  if(_this.data.types && $.isFunction(nd.getType)) {
4537
                                             r.attr[s.types.type_attr] = nd.getType();
4538
                                      }
4539
                                      if(r.attr.id && s.model.id_prefix) { r.attr.id = s.model.id_prefix + r.attr.id; }
4540
                                      if(!r.metadata) { r.metadata = { }; }
4541
                                  r.metadata.jstree_model = nd;
4542
                                  ret.push(r);
4543
                           });
4544
                            callback.call(null, ret);
4545
                      }
4546
              }
4547
      });
4548
})(jQuery);
4549
//*/
4550
4551
})();
(-)a/koha-tmpl/intranet-tmpl/lib/jquery/plugins/jstree/jstree-3.3.12.min.js (+6 lines)
Line 0 Link Here
1
/*! jsTree - v3.3.12 - 2021-09-03 - (MIT) */
2
!function(a){"use strict";"function"==typeof define&&define.amd?define(["jquery"],a):"undefined"!=typeof module&&module.exports?module.exports=a(require("jquery")):a(jQuery)}(function(a,b){"use strict";if(!a.jstree){var c=0,d=!1,e=!1,f=!1,g=[],h=a("script:last").attr("src"),i=window.document,j=window.setImmediate,k=window.Promise;!j&&k&&(j=function(a,b){k.resolve(b).then(a)}),a.jstree={version:"3.3.12",defaults:{plugins:[]},plugins:{},path:h&&-1!==h.indexOf("/")?h.replace(/\/[^\/]+$/,""):"",idregex:/[\\:&!^|()\[\]<>@*'+~#";.,=\- \/${}%?`]/g,root:"#"},a.jstree.create=function(b,d){var e=new a.jstree.core(++c),f=d;return d=a.extend(!0,{},a.jstree.defaults,d),f&&f.plugins&&(d.plugins=f.plugins),a.each(d.plugins,function(a,b){"core"!==a&&(e=e.plugin(b,d[b]))}),a(b).data("jstree",e),e.init(b,d),e},a.jstree.destroy=function(){a(".jstree:jstree").jstree("destroy"),a(i).off(".jstree")},a.jstree.core=function(a){this._id=a,this._cnt=0,this._wrk=null,this._data={core:{themes:{name:!1,dots:!1,icons:!1,ellipsis:!1},selected:[],last_error:{},working:!1,worker_queue:[],focused:null}}},a.jstree.reference=function(b){var c=null,d=null;if(!b||!b.id||b.tagName&&b.nodeType||(b=b.id),!d||!d.length)try{d=a(b)}catch(e){}if(!d||!d.length)try{d=a("#"+b.replace(a.jstree.idregex,"\\$&"))}catch(e){}return d&&d.length&&(d=d.closest(".jstree")).length&&(d=d.data("jstree"))?c=d:a(".jstree").each(function(){var d=a(this).data("jstree");return d&&d._model.data[b]?(c=d,!1):void 0}),c},a.fn.jstree=function(c){var d="string"==typeof c,e=Array.prototype.slice.call(arguments,1),f=null;return c!==!0||this.length?(this.each(function(){var g=a.jstree.reference(this),h=d&&g?g[c]:null;return f=d&&h?h.apply(g,e):null,g||d||c!==b&&!a.isPlainObject(c)||a.jstree.create(this,c),(g&&!d||c===!0)&&(f=g||!1),null!==f&&f!==b?!1:void 0}),null!==f&&f!==b?f:this):!1},a.expr.pseudos.jstree=a.expr.createPseudo(function(c){return function(c){return a(c).hasClass("jstree")&&a(c).data("jstree")!==b}}),a.jstree.defaults.core={data:!1,strings:!1,check_callback:!1,error:a.noop,animation:200,multiple:!0,themes:{name:!1,url:!1,dir:!1,dots:!0,icons:!0,ellipsis:!1,stripes:!1,variant:!1,responsive:!1},expand_selected_onload:!0,worker:!0,force_text:!1,dblclick_toggle:!0,loaded_state:!1,restore_focus:!0,compute_elements_positions:!1,keyboard:{"ctrl-space":function(b){b.type="click",a(b.currentTarget).trigger(b)},enter:function(b){b.type="click",a(b.currentTarget).trigger(b)},left:function(b){if(b.preventDefault(),this.is_open(b.currentTarget))this.close_node(b.currentTarget);else{var c=this.get_parent(b.currentTarget);c&&c.id!==a.jstree.root&&this.get_node(c,!0).children(".jstree-anchor").trigger("focus")}},up:function(a){a.preventDefault();var b=this.get_prev_dom(a.currentTarget);b&&b.length&&b.children(".jstree-anchor").trigger("focus")},right:function(b){if(b.preventDefault(),this.is_closed(b.currentTarget))this.open_node(b.currentTarget,function(a){this.get_node(a,!0).children(".jstree-anchor").trigger("focus")});else if(this.is_open(b.currentTarget)){var c=this.get_node(b.currentTarget,!0).children(".jstree-children")[0];c&&a(this._firstChild(c)).children(".jstree-anchor").trigger("focus")}},down:function(a){a.preventDefault();var b=this.get_next_dom(a.currentTarget);b&&b.length&&b.children(".jstree-anchor").trigger("focus")},"*":function(a){this.open_all()},home:function(b){b.preventDefault();var c=this._firstChild(this.get_container_ul()[0]);c&&a(c).children(".jstree-anchor").filter(":visible").trigger("focus")},end:function(a){a.preventDefault(),this.element.find(".jstree-anchor").filter(":visible").last().trigger("focus")},f2:function(a){a.preventDefault(),this.edit(a.currentTarget)}}},a.jstree.core.prototype={plugin:function(b,c){var d=a.jstree.plugins[b];return d?(this._data[b]={},d.prototype=this,new d(c,this)):this},init:function(b,c){this._model={data:{},changed:[],force_full_redraw:!1,redraw_timeout:!1,default_state:{loaded:!0,opened:!1,selected:!1,disabled:!1}},this._model.data[a.jstree.root]={id:a.jstree.root,parent:null,parents:[],children:[],children_d:[],state:{loaded:!1}},this.element=a(b).addClass("jstree jstree-"+this._id),this.settings=c,this._data.core.ready=!1,this._data.core.loaded=!1,this._data.core.rtl="rtl"===this.element.css("direction"),this.element[this._data.core.rtl?"addClass":"removeClass"]("jstree-rtl"),this.element.attr("role","tree"),this.settings.core.multiple&&this.element.attr("aria-multiselectable",!0),this.element.attr("tabindex")||this.element.attr("tabindex","0"),this.bind(),this.trigger("init"),this._data.core.original_container_html=this.element.find(" > ul > li").clone(!0),this._data.core.original_container_html.find("li").addBack().contents().filter(function(){return 3===this.nodeType&&(!this.nodeValue||/^\s+$/.test(this.nodeValue))}).remove(),this.element.html("<ul class='jstree-container-ul jstree-children' role='group'><li id='j"+this._id+"_loading' class='jstree-initial-node jstree-loading jstree-leaf jstree-last' role='none'><i class='jstree-icon jstree-ocl'></i><a class='jstree-anchor' role='treeitem' href='#'><i class='jstree-icon jstree-themeicon-hidden'></i>"+this.get_string("Loading ...")+"</a></li></ul>"),this.element.attr("aria-activedescendant","j"+this._id+"_loading"),this._data.core.li_height=this.get_container_ul().children("li").first().outerHeight()||24,this._data.core.node=this._create_prototype_node(),this.trigger("loading"),this.load_node(a.jstree.root)},destroy:function(a){if(this.trigger("destroy"),this._wrk)try{window.URL.revokeObjectURL(this._wrk),this._wrk=null}catch(b){}a||this.element.empty(),this.teardown()},_create_prototype_node:function(){var a=i.createElement("LI"),b,c;return a.setAttribute("role","none"),b=i.createElement("I"),b.className="jstree-icon jstree-ocl",b.setAttribute("role","presentation"),a.appendChild(b),b=i.createElement("A"),b.className="jstree-anchor",b.setAttribute("href","#"),b.setAttribute("tabindex","-1"),b.setAttribute("role","treeitem"),c=i.createElement("I"),c.className="jstree-icon jstree-themeicon",c.setAttribute("role","presentation"),b.appendChild(c),a.appendChild(b),b=c=null,a},_kbevent_to_func:function(a){var b={8:"Backspace",9:"Tab",13:"Enter",19:"Pause",27:"Esc",32:"Space",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"Left",38:"Up",39:"Right",40:"Down",44:"Print",45:"Insert",46:"Delete",96:"Numpad0",97:"Numpad1",98:"Numpad2",99:"Numpad3",100:"Numpad4",101:"Numpad5",102:"Numpad6",103:"Numpad7",104:"Numpad8",105:"Numpad9","-13":"NumpadEnter",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"Numlock",145:"Scrolllock",16:"Shift",17:"Ctrl",18:"Alt",48:"0",49:"1",50:"2",51:"3",52:"4",53:"5",54:"6",55:"7",56:"8",57:"9",59:";",61:"=",65:"a",66:"b",67:"c",68:"d",69:"e",70:"f",71:"g",72:"h",73:"i",74:"j",75:"k",76:"l",77:"m",78:"n",79:"o",80:"p",81:"q",82:"r",83:"s",84:"t",85:"u",86:"v",87:"w",88:"x",89:"y",90:"z",107:"+",109:"-",110:".",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'",111:"/",106:"*",173:"-"},c=[];if(a.ctrlKey&&c.push("ctrl"),a.altKey&&c.push("alt"),a.shiftKey&&c.push("shift"),c.push(b[a.which]||a.which),c=c.sort().join("-").toLowerCase(),"shift-shift"===c||"ctrl-ctrl"===c||"alt-alt"===c)return null;var d=this.settings.core.keyboard,e,f;for(e in d)if(d.hasOwnProperty(e)&&(f=e,"-"!==f&&"+"!==f&&(f=f.replace("--","-MINUS").replace("+-","-MINUS").replace("++","-PLUS").replace("-+","-PLUS"),f=f.split(/-|\+/).sort().join("-").replace("MINUS","-").replace("PLUS","+").toLowerCase()),f===c))return d[e];return null},teardown:function(){this.unbind(),this.element.removeClass("jstree").removeData("jstree").find("[class^='jstree']").addBack().attr("class",function(){return this.className.replace(/jstree[^ ]*|$/gi,"")}),this.element=null},bind:function(){var b="",c=null,d=0;this.element.on("dblclick.jstree",function(a){if(a.target.tagName&&"input"===a.target.tagName.toLowerCase())return!0;if(i.selection&&i.selection.empty)i.selection.empty();else if(window.getSelection){var b=window.getSelection();try{b.removeAllRanges(),b.collapse()}catch(c){}}}).on("mousedown.jstree",function(a){a.target===this.element[0]&&(a.preventDefault(),d=+new Date)}.bind(this)).on("mousedown.jstree",".jstree-ocl",function(a){a.preventDefault()}).on("click.jstree",".jstree-ocl",function(a){this.toggle_node(a.target)}.bind(this)).on("dblclick.jstree",".jstree-anchor",function(a){return a.target.tagName&&"input"===a.target.tagName.toLowerCase()?!0:void(this.settings.core.dblclick_toggle&&this.toggle_node(a.target))}.bind(this)).on("click.jstree",".jstree-anchor",function(b){b.preventDefault(),b.currentTarget!==i.activeElement&&a(b.currentTarget).trigger("focus"),this.activate_node(b.currentTarget,b)}.bind(this)).on("keydown.jstree",".jstree-anchor",function(a){if(a.target.tagName&&"input"===a.target.tagName.toLowerCase())return!0;this._data.core.rtl&&(37===a.which?a.which=39:39===a.which&&(a.which=37));var b=this._kbevent_to_func(a);if(b){var c=b.call(this,a);if(c===!1||c===!0)return c}}.bind(this)).on("load_node.jstree",function(b,c){c.status&&(c.node.id!==a.jstree.root||this._data.core.loaded||(this._data.core.loaded=!0,this._firstChild(this.get_container_ul()[0])&&this.element.attr("aria-activedescendant",this._firstChild(this.get_container_ul()[0]).id),this.trigger("loaded")),this._data.core.ready||setTimeout(function(){if(this.element&&!this.get_container_ul().find(".jstree-loading").length){if(this._data.core.ready=!0,this._data.core.selected.length){if(this.settings.core.expand_selected_onload){var b=[],c,d;for(c=0,d=this._data.core.selected.length;d>c;c++)b=b.concat(this._model.data[this._data.core.selected[c]].parents);for(b=a.vakata.array_unique(b),c=0,d=b.length;d>c;c++)this.open_node(b[c],!1,0)}this.trigger("changed",{action:"ready",selected:this._data.core.selected})}this.trigger("ready")}}.bind(this),0))}.bind(this)).on("keypress.jstree",function(d){if(d.target.tagName&&"input"===d.target.tagName.toLowerCase())return!0;c&&clearTimeout(c),c=setTimeout(function(){b=""},500);var e=String.fromCharCode(d.which).toLowerCase(),f=this.element.find(".jstree-anchor").filter(":visible"),g=f.index(i.activeElement)||0,h=!1;if(b+=e,b.length>1){if(f.slice(g).each(function(c,d){return 0===a(d).text().toLowerCase().indexOf(b)?(a(d).trigger("focus"),h=!0,!1):void 0}.bind(this)),h)return;if(f.slice(0,g).each(function(c,d){return 0===a(d).text().toLowerCase().indexOf(b)?(a(d).trigger("focus"),h=!0,!1):void 0}.bind(this)),h)return}if(new RegExp("^"+e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")+"+$").test(b)){if(f.slice(g+1).each(function(b,c){return a(c).text().toLowerCase().charAt(0)===e?(a(c).trigger("focus"),h=!0,!1):void 0}.bind(this)),h)return;if(f.slice(0,g+1).each(function(b,c){return a(c).text().toLowerCase().charAt(0)===e?(a(c).trigger("focus"),h=!0,!1):void 0}.bind(this)),h)return}}.bind(this)).on("init.jstree",function(){var a=this.settings.core.themes;this._data.core.themes.dots=a.dots,this._data.core.themes.stripes=a.stripes,this._data.core.themes.icons=a.icons,this._data.core.themes.ellipsis=a.ellipsis,this.set_theme(a.name||"default",a.url),this.set_theme_variant(a.variant)}.bind(this)).on("loading.jstree",function(){this[this._data.core.themes.dots?"show_dots":"hide_dots"](),this[this._data.core.themes.icons?"show_icons":"hide_icons"](),this[this._data.core.themes.stripes?"show_stripes":"hide_stripes"](),this[this._data.core.themes.ellipsis?"show_ellipsis":"hide_ellipsis"]()}.bind(this)).on("blur.jstree",".jstree-anchor",function(b){this._data.core.focused=null,a(b.currentTarget).filter(".jstree-hovered").trigger("mouseleave"),this.element.attr("tabindex","0")}.bind(this)).on("focus.jstree",".jstree-anchor",function(b){var c=this.get_node(b.currentTarget);c&&c.id&&(this._data.core.focused=c.id),this.element.find(".jstree-hovered").not(b.currentTarget).trigger("mouseleave"),a(b.currentTarget).trigger("mouseenter"),this.element.attr("tabindex","-1")}.bind(this)).on("focus.jstree",function(){if(+new Date-d>500&&!this._data.core.focused&&this.settings.core.restore_focus){d=0;var a=this.get_node(this.element.attr("aria-activedescendant"),!0);a&&a.find("> .jstree-anchor").trigger("focus")}}.bind(this)).on("mouseenter.jstree",".jstree-anchor",function(a){this.hover_node(a.currentTarget)}.bind(this)).on("mouseleave.jstree",".jstree-anchor",function(a){this.dehover_node(a.currentTarget)}.bind(this))},unbind:function(){this.element.off(".jstree"),a(i).off(".jstree-"+this._id)},trigger:function(a,b){b||(b={}),b.instance=this,this.element.triggerHandler(a.replace(".jstree","")+".jstree",b)},get_container:function(){return this.element},get_container_ul:function(){return this.element.children(".jstree-children").first()},get_string:function(b){var c=this.settings.core.strings;return a.vakata.is_function(c)?c.call(this,b):c&&c[b]?c[b]:b},_firstChild:function(a){a=a?a.firstChild:null;while(null!==a&&1!==a.nodeType)a=a.nextSibling;return a},_nextSibling:function(a){a=a?a.nextSibling:null;while(null!==a&&1!==a.nodeType)a=a.nextSibling;return a},_previousSibling:function(a){a=a?a.previousSibling:null;while(null!==a&&1!==a.nodeType)a=a.previousSibling;return a},get_node:function(b,c){b&&b.id&&(b=b.id),b instanceof a&&b.length&&b[0].id&&(b=b[0].id);var d;try{if(this._model.data[b])b=this._model.data[b];else if("string"==typeof b&&this._model.data[b.replace(/^#/,"")])b=this._model.data[b.replace(/^#/,"")];else if("string"==typeof b&&(d=a("#"+b.replace(a.jstree.idregex,"\\$&"),this.element)).length&&this._model.data[d.closest(".jstree-node").attr("id")])b=this._model.data[d.closest(".jstree-node").attr("id")];else if((d=this.element.find(b)).length&&this._model.data[d.closest(".jstree-node").attr("id")])b=this._model.data[d.closest(".jstree-node").attr("id")];else{if(!(d=this.element.find(b)).length||!d.hasClass("jstree"))return!1;b=this._model.data[a.jstree.root]}return c&&(b=b.id===a.jstree.root?this.element:a("#"+b.id.replace(a.jstree.idregex,"\\$&"),this.element)),b}catch(e){return!1}},get_path:function(b,c,d){if(b=b.parents?b:this.get_node(b),!b||b.id===a.jstree.root||!b.parents)return!1;var e,f,g=[];for(g.push(d?b.id:b.text),e=0,f=b.parents.length;f>e;e++)g.push(d?b.parents[e]:this.get_text(b.parents[e]));return g=g.reverse().slice(1),c?g.join(c):g},get_next_dom:function(b,c){var d;if(b=this.get_node(b,!0),b[0]===this.element[0]){d=this._firstChild(this.get_container_ul()[0]);while(d&&0===d.offsetHeight)d=this._nextSibling(d);return d?a(d):!1}if(!b||!b.length)return!1;if(c){d=b[0];do d=this._nextSibling(d);while(d&&0===d.offsetHeight);return d?a(d):!1}if(b.hasClass("jstree-open")){d=this._firstChild(b.children(".jstree-children")[0]);while(d&&0===d.offsetHeight)d=this._nextSibling(d);if(null!==d)return a(d)}d=b[0];do d=this._nextSibling(d);while(d&&0===d.offsetHeight);return null!==d?a(d):b.parentsUntil(".jstree",".jstree-node").nextAll(".jstree-node:visible").first()},get_prev_dom:function(b,c){var d;if(b=this.get_node(b,!0),b[0]===this.element[0]){d=this.get_container_ul()[0].lastChild;while(d&&0===d.offsetHeight)d=this._previousSibling(d);return d?a(d):!1}if(!b||!b.length)return!1;if(c){d=b[0];do d=this._previousSibling(d);while(d&&0===d.offsetHeight);return d?a(d):!1}d=b[0];do d=this._previousSibling(d);while(d&&0===d.offsetHeight);if(null!==d){b=a(d);while(b.hasClass("jstree-open"))b=b.children(".jstree-children").first().children(".jstree-node:visible:last");return b}return d=b[0].parentNode.parentNode,d&&d.className&&-1!==d.className.indexOf("jstree-node")?a(d):!1},get_parent:function(b){return b=this.get_node(b),b&&b.id!==a.jstree.root?b.parent:!1},get_children_dom:function(a){return a=this.get_node(a,!0),a[0]===this.element[0]?this.get_container_ul().children(".jstree-node"):a&&a.length?a.children(".jstree-children").children(".jstree-node"):!1},is_parent:function(a){return a=this.get_node(a),a&&(a.state.loaded===!1||a.children.length>0)},is_loaded:function(a){return a=this.get_node(a),a&&a.state.loaded},is_loading:function(a){return a=this.get_node(a),a&&a.state&&a.state.loading},is_open:function(a){return a=this.get_node(a),a&&a.state.opened},is_closed:function(a){return a=this.get_node(a),a&&this.is_parent(a)&&!a.state.opened},is_leaf:function(a){return!this.is_parent(a)},load_node:function(b,c){var d,e,f,g,h;if(a.vakata.is_array(b))return this._load_nodes(b.slice(),c),!0;if(b=this.get_node(b),!b)return c&&c.call(this,b,!1),!1;if(b.state.loaded){for(b.state.loaded=!1,f=0,g=b.parents.length;g>f;f++)this._model.data[b.parents[f]].children_d=a.vakata.array_filter(this._model.data[b.parents[f]].children_d,function(c){return-1===a.inArray(c,b.children_d)});for(d=0,e=b.children_d.length;e>d;d++)this._model.data[b.children_d[d]].state.selected&&(h=!0),delete this._model.data[b.children_d[d]];h&&(this._data.core.selected=a.vakata.array_filter(this._data.core.selected,function(c){return-1===a.inArray(c,b.children_d)})),b.children=[],b.children_d=[],h&&this.trigger("changed",{action:"load_node",node:b,selected:this._data.core.selected})}return b.state.failed=!1,b.state.loading=!0,this.get_node(b,!0).addClass("jstree-loading").attr("aria-busy",!0),this._load_node(b,function(a){b=this._model.data[b.id],b.state.loading=!1,b.state.loaded=a,b.state.failed=!b.state.loaded;var d=this.get_node(b,!0),e=0,f=0,g=this._model.data,h=!1;for(e=0,f=b.children.length;f>e;e++)if(g[b.children[e]]&&!g[b.children[e]].state.hidden){h=!0;break}b.state.loaded&&d&&d.length&&(d.removeClass("jstree-closed jstree-open jstree-leaf"),h?"#"!==b.id&&d.addClass(b.state.opened?"jstree-open":"jstree-closed"):d.addClass("jstree-leaf")),d.removeClass("jstree-loading").attr("aria-busy",!1),this.trigger("load_node",{node:b,status:a}),c&&c.call(this,b,a)}.bind(this)),!0},_load_nodes:function(a,b,c,d){var e=!0,f=function(){this._load_nodes(a,b,!0)},g=this._model.data,h,i,j=[];for(h=0,i=a.length;i>h;h++)g[a[h]]&&(!g[a[h]].state.loaded&&!g[a[h]].state.failed||!c&&d)&&(this.is_loading(a[h])||this.load_node(a[h],f),e=!1);if(e){for(h=0,i=a.length;i>h;h++)g[a[h]]&&g[a[h]].state.loaded&&j.push(a[h]);b&&!b.done&&(b.call(this,j),b.done=!0)}},load_all:function(b,c){if(b||(b=a.jstree.root),b=this.get_node(b),!b)return!1;var d=[],e=this._model.data,f=e[b.id].children_d,g,h;for(b.state&&!b.state.loaded&&d.push(b.id),g=0,h=f.length;h>g;g++)e[f[g]]&&e[f[g]].state&&!e[f[g]].state.loaded&&d.push(f[g]);d.length?this._load_nodes(d,function(){this.load_all(b,c)}):(c&&c.call(this,b),this.trigger("load_all",{node:b}))},_load_node:function(b,c){var d=this.settings.core.data,e,f=function g(){return 3!==this.nodeType&&8!==this.nodeType};return d?a.vakata.is_function(d)?d.call(this,b,function(d){d===!1?c.call(this,!1):this["string"==typeof d?"_append_html_data":"_append_json_data"](b,"string"==typeof d?a(a.parseHTML(d)).filter(f):d,function(a){c.call(this,a)})}.bind(this)):"object"==typeof d?d.url?(d=a.extend(!0,{},d),a.vakata.is_function(d.url)&&(d.url=d.url.call(this,b)),a.vakata.is_function(d.data)&&(d.data=d.data.call(this,b)),a.ajax(d).done(function(d,e,g){var h=g.getResponseHeader("Content-Type");return h&&-1!==h.indexOf("json")||"object"==typeof d?this._append_json_data(b,d,function(a){c.call(this,a)}):h&&-1!==h.indexOf("html")||"string"==typeof d?this._append_html_data(b,a(a.parseHTML(d)).filter(f),function(a){c.call(this,a)}):(this._data.core.last_error={error:"ajax",plugin:"core",id:"core_04",reason:"Could not load node",data:JSON.stringify({id:b.id,xhr:g})},this.settings.core.error.call(this,this._data.core.last_error),c.call(this,!1))}.bind(this)).fail(function(a){this._data.core.last_error={error:"ajax",plugin:"core",id:"core_04",reason:"Could not load node",data:JSON.stringify({id:b.id,xhr:a})},c.call(this,!1),this.settings.core.error.call(this,this._data.core.last_error)}.bind(this))):(e=a.vakata.is_array(d)?a.extend(!0,[],d):a.isPlainObject(d)?a.extend(!0,{},d):d,b.id===a.jstree.root?this._append_json_data(b,e,function(a){c.call(this,a)}):(this._data.core.last_error={error:"nodata",plugin:"core",id:"core_05",reason:"Could not load node",data:JSON.stringify({id:b.id})},this.settings.core.error.call(this,this._data.core.last_error),c.call(this,!1))):"string"==typeof d?b.id===a.jstree.root?this._append_html_data(b,a(a.parseHTML(d)).filter(f),function(a){c.call(this,a)}):(this._data.core.last_error={error:"nodata",plugin:"core",id:"core_06",reason:"Could not load node",data:JSON.stringify({id:b.id})},this.settings.core.error.call(this,this._data.core.last_error),c.call(this,!1)):c.call(this,!1):b.id===a.jstree.root?this._append_html_data(b,this._data.core.original_container_html.clone(!0),function(a){c.call(this,a)}):c.call(this,!1)},_node_changed:function(b){b=this.get_node(b),b&&-1===a.inArray(b.id,this._model.changed)&&this._model.changed.push(b.id)},_append_html_data:function(b,c,d){b=this.get_node(b),b.children=[],b.children_d=[];var e=c.is("ul")?c.children():c,f=b.id,g=[],h=[],i=this._model.data,j=i[f],k=this._data.core.selected.length,l,m,n;for(e.each(function(b,c){l=this._parse_model_from_html(a(c),f,j.parents.concat()),l&&(g.push(l),h.push(l),i[l].children_d.length&&(h=h.concat(i[l].children_d)))}.bind(this)),j.children=g,j.children_d=h,m=0,n=j.parents.length;n>m;m++)i[j.parents[m]].children_d=i[j.parents[m]].children_d.concat(h);this.trigger("model",{nodes:h,parent:f}),f!==a.jstree.root?(this._node_changed(f),this.redraw()):(this.get_container_ul().children(".jstree-initial-node").remove(),this.redraw(!0)),this._data.core.selected.length!==k&&this.trigger("changed",{action:"model",selected:this._data.core.selected}),d.call(this,!0)},_append_json_data:function(b,c,d,e){if(null!==this.element){b=this.get_node(b),b.children=[],b.children_d=[],c.d&&(c=c.d,"string"==typeof c&&(c=JSON.parse(c))),a.vakata.is_array(c)||(c=[c]);var f=null,g={df:this._model.default_state,dat:c,par:b.id,m:this._model.data,t_id:this._id,t_cnt:this._cnt,sel:this._data.core.selected},h=this,i=function(a,b){a.data&&(a=a.data);var c=a.dat,d=a.par,e=[],f=[],g=[],i=a.df,j=a.t_id,k=a.t_cnt,l=a.m,m=l[d],n=a.sel,o,p,q,r,s=function(a,c,d){d=d?d.concat():[],c&&d.unshift(c);var e=a.id.toString(),f,h,j,k,m={id:e,text:a.text||"",icon:a.icon!==b?a.icon:!0,parent:c,parents:d,children:a.children||[],children_d:a.children_d||[],data:a.data,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1};for(f in i)i.hasOwnProperty(f)&&(m.state[f]=i[f]);if(a&&a.data&&a.data.jstree&&a.data.jstree.icon&&(m.icon=a.data.jstree.icon),(m.icon===b||null===m.icon||""===m.icon)&&(m.icon=!0),a&&a.data&&(m.data=a.data,a.data.jstree))for(f in a.data.jstree)a.data.jstree.hasOwnProperty(f)&&(m.state[f]=a.data.jstree[f]);if(a&&"object"==typeof a.state)for(f in a.state)a.state.hasOwnProperty(f)&&(m.state[f]=a.state[f]);if(a&&"object"==typeof a.li_attr)for(f in a.li_attr)a.li_attr.hasOwnProperty(f)&&(m.li_attr[f]=a.li_attr[f]);if(m.li_attr.id||(m.li_attr.id=e),a&&"object"==typeof a.a_attr)for(f in a.a_attr)a.a_attr.hasOwnProperty(f)&&(m.a_attr[f]=a.a_attr[f]);for(a&&a.children&&a.children===!0&&(m.state.loaded=!1,m.children=[],m.children_d=[]),l[m.id]=m,f=0,h=m.children.length;h>f;f++)j=s(l[m.children[f]],m.id,d),k=l[j],m.children_d.push(j),k.children_d.length&&(m.children_d=m.children_d.concat(k.children_d));return delete a.data,delete a.children,l[m.id].original=a,m.state.selected&&g.push(m.id),m.id},t=function(a,c,d){d=d?d.concat():[],c&&d.unshift(c);var e=!1,f,h,m,n,o;do e="j"+j+"_"+ ++k;while(l[e]);o={id:!1,text:"string"==typeof a?a:"",icon:"object"==typeof a&&a.icon!==b?a.icon:!0,parent:c,parents:d,children:[],children_d:[],data:null,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1};for(f in i)i.hasOwnProperty(f)&&(o.state[f]=i[f]);if(a&&a.id&&(o.id=a.id.toString()),a&&a.text&&(o.text=a.text),a&&a.data&&a.data.jstree&&a.data.jstree.icon&&(o.icon=a.data.jstree.icon),(o.icon===b||null===o.icon||""===o.icon)&&(o.icon=!0),a&&a.data&&(o.data=a.data,a.data.jstree))for(f in a.data.jstree)a.data.jstree.hasOwnProperty(f)&&(o.state[f]=a.data.jstree[f]);if(a&&"object"==typeof a.state)for(f in a.state)a.state.hasOwnProperty(f)&&(o.state[f]=a.state[f]);if(a&&"object"==typeof a.li_attr)for(f in a.li_attr)a.li_attr.hasOwnProperty(f)&&(o.li_attr[f]=a.li_attr[f]);if(o.li_attr.id&&!o.id&&(o.id=o.li_attr.id.toString()),o.id||(o.id=e),o.li_attr.id||(o.li_attr.id=o.id),a&&"object"==typeof a.a_attr)for(f in a.a_attr)a.a_attr.hasOwnProperty(f)&&(o.a_attr[f]=a.a_attr[f]);if(a&&a.children&&a.children.length){for(f=0,h=a.children.length;h>f;f++)m=t(a.children[f],o.id,d),n=l[m],o.children.push(m),n.children_d.length&&(o.children_d=o.children_d.concat(n.children_d));o.children_d=o.children_d.concat(o.children)}return a&&a.children&&a.children===!0&&(o.state.loaded=!1,o.children=[],o.children_d=[]),delete a.data,delete a.children,o.original=a,l[o.id]=o,o.state.selected&&g.push(o.id),o.id};if(c.length&&c[0].id!==b&&c[0].parent!==b){for(p=0,q=c.length;q>p;p++)c[p].children||(c[p].children=[]),c[p].state||(c[p].state={}),l[c[p].id.toString()]=c[p];for(p=0,q=c.length;q>p;p++)l[c[p].parent.toString()]?(l[c[p].parent.toString()].children.push(c[p].id.toString()),m.children_d.push(c[p].id.toString())):"undefined"!=typeof h&&(h._data.core.last_error={error:"parse",plugin:"core",id:"core_07",reason:"Node with invalid parent",data:JSON.stringify({id:c[p].id.toString(),parent:c[p].parent.toString()})},h.settings.core.error.call(h,h._data.core.last_error));for(p=0,q=m.children.length;q>p;p++)o=s(l[m.children[p]],d,m.parents.concat()),f.push(o),l[o].children_d.length&&(f=f.concat(l[o].children_d));for(p=0,q=m.parents.length;q>p;p++)l[m.parents[p]].children_d=l[m.parents[p]].children_d.concat(f);r={cnt:k,mod:l,sel:n,par:d,dpc:f,add:g}}else{for(p=0,q=c.length;q>p;p++)o=t(c[p],d,m.parents.concat()),o&&(e.push(o),f.push(o),l[o].children_d.length&&(f=f.concat(l[o].children_d)));for(m.children=e,m.children_d=f,p=0,q=m.parents.length;q>p;p++)l[m.parents[p]].children_d=l[m.parents[p]].children_d.concat(f);r={cnt:k,mod:l,sel:n,par:d,dpc:f,add:g}}return"undefined"!=typeof window&&"undefined"!=typeof window.document?r:void postMessage(r)},k=function(b,c){if(null!==this.element){this._cnt=b.cnt;var e,f=this._model.data;for(e in f)f.hasOwnProperty(e)&&f[e].state&&f[e].state.loading&&b.mod[e]&&(b.mod[e].state.loading=!0);if(this._model.data=b.mod,c){var g,i=b.add,k=b.sel,l=this._data.core.selected.slice();if(f=this._model.data,k.length!==l.length||a.vakata.array_unique(k.concat(l)).length!==k.length){for(e=0,g=k.length;g>e;e++)-1===a.inArray(k[e],i)&&-1===a.inArray(k[e],l)&&(f[k[e]].state.selected=!1);for(e=0,g=l.length;g>e;e++)-1===a.inArray(l[e],k)&&(f[l[e]].state.selected=!0)}}b.add.length&&(this._data.core.selected=this._data.core.selected.concat(b.add)),this.trigger("model",{nodes:b.dpc,parent:b.par}),b.par!==a.jstree.root?(this._node_changed(b.par),this.redraw()):this.redraw(!0),b.add.length&&this.trigger("changed",{action:"model",selected:this._data.core.selected}),!c&&j?j(function(){d.call(h,!0)}):d.call(h,!0)}};if(this.settings.core.worker&&window.Blob&&window.URL&&window.Worker)try{null===this._wrk&&(this._wrk=window.URL.createObjectURL(new window.Blob(["self.onmessage = "+i.toString()],{type:"text/javascript"}))),!this._data.core.working||e?(this._data.core.working=!0,f=new window.Worker(this._wrk),f.onmessage=function(a){k.call(this,a.data,!0);try{f.terminate(),f=null}catch(b){}this._data.core.worker_queue.length?this._append_json_data.apply(this,this._data.core.worker_queue.shift()):this._data.core.working=!1}.bind(this),g.par?f.postMessage(g):this._data.core.worker_queue.length?this._append_json_data.apply(this,this._data.core.worker_queue.shift()):this._data.core.working=!1):this._data.core.worker_queue.push([b,c,d,!0])}catch(l){k.call(this,i(g),!1),this._data.core.worker_queue.length?this._append_json_data.apply(this,this._data.core.worker_queue.shift()):this._data.core.working=!1}else k.call(this,i(g),!1)}},_parse_model_from_html:function(c,d,e){e=e?[].concat(e):[],d&&e.unshift(d);var f,g,h=this._model.data,i={id:!1,text:!1,icon:!0,parent:d,parents:e,children:[],children_d:[],data:null,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1},j,k,l;for(j in this._model.default_state)this._model.default_state.hasOwnProperty(j)&&(i.state[j]=this._model.default_state[j]);if(k=a.vakata.attributes(c,!0),a.each(k,function(b,c){return c=a.vakata.trim(c),c.length?(i.li_attr[b]=c,void("id"===b&&(i.id=c.toString()))):!0}),k=c.children("a").first(),k.length&&(k=a.vakata.attributes(k,!0),a.each(k,function(b,c){c=a.vakata.trim(c),c.length&&(i.a_attr[b]=c)})),k=c.children("a").first().length?c.children("a").first().clone():c.clone(),k.children("ins, i, ul").remove(),k=k.html(),k=a("<div></div>").html(k),i.text=this.settings.core.force_text?k.text():k.html(),k=c.data(),i.data=k?a.extend(!0,{},k):null,i.state.opened=c.hasClass("jstree-open"),i.state.selected=c.children("a").hasClass("jstree-clicked"),i.state.disabled=c.children("a").hasClass("jstree-disabled"),i.data&&i.data.jstree)for(j in i.data.jstree)i.data.jstree.hasOwnProperty(j)&&(i.state[j]=i.data.jstree[j]);k=c.children("a").children(".jstree-themeicon"),k.length&&(i.icon=k.hasClass("jstree-themeicon-hidden")?!1:k.attr("rel")),i.state.icon!==b&&(i.icon=i.state.icon),(i.icon===b||null===i.icon||""===i.icon)&&(i.icon=!0),k=c.children("ul").children("li");do l="j"+this._id+"_"+ ++this._cnt;while(h[l]);return i.id=i.li_attr.id?i.li_attr.id.toString():l,k.length?(k.each(function(b,c){f=this._parse_model_from_html(a(c),i.id,e),g=this._model.data[f],i.children.push(f),g.children_d.length&&(i.children_d=i.children_d.concat(g.children_d))}.bind(this)),i.children_d=i.children_d.concat(i.children)):c.hasClass("jstree-closed")&&(i.state.loaded=!1),i.li_attr["class"]&&(i.li_attr["class"]=i.li_attr["class"].replace("jstree-closed","").replace("jstree-open","")),i.a_attr["class"]&&(i.a_attr["class"]=i.a_attr["class"].replace("jstree-clicked","").replace("jstree-disabled","")),h[i.id]=i,i.state.selected&&this._data.core.selected.push(i.id),i.id},_parse_model_from_flat_json:function(a,c,d){d=d?d.concat():[],c&&d.unshift(c);var e=a.id.toString(),f=this._model.data,g=this._model.default_state,h,i,j,k,l={id:e,text:a.text||"",icon:a.icon!==b?a.icon:!0,parent:c,parents:d,children:a.children||[],children_d:a.children_d||[],data:a.data,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1};for(h in g)g.hasOwnProperty(h)&&(l.state[h]=g[h]);if(a&&a.data&&a.data.jstree&&a.data.jstree.icon&&(l.icon=a.data.jstree.icon),(l.icon===b||null===l.icon||""===l.icon)&&(l.icon=!0),a&&a.data&&(l.data=a.data,a.data.jstree))for(h in a.data.jstree)a.data.jstree.hasOwnProperty(h)&&(l.state[h]=a.data.jstree[h]);if(a&&"object"==typeof a.state)for(h in a.state)a.state.hasOwnProperty(h)&&(l.state[h]=a.state[h]);if(a&&"object"==typeof a.li_attr)for(h in a.li_attr)a.li_attr.hasOwnProperty(h)&&(l.li_attr[h]=a.li_attr[h]);if(l.li_attr.id||(l.li_attr.id=e),a&&"object"==typeof a.a_attr)for(h in a.a_attr)a.a_attr.hasOwnProperty(h)&&(l.a_attr[h]=a.a_attr[h]);for(a&&a.children&&a.children===!0&&(l.state.loaded=!1,l.children=[],l.children_d=[]),f[l.id]=l,h=0,i=l.children.length;i>h;h++)j=this._parse_model_from_flat_json(f[l.children[h]],l.id,d),k=f[j],l.children_d.push(j),k.children_d.length&&(l.children_d=l.children_d.concat(k.children_d));return delete a.data,delete a.children,f[l.id].original=a,l.state.selected&&this._data.core.selected.push(l.id),l.id},_parse_model_from_json:function(a,c,d){d=d?d.concat():[],c&&d.unshift(c);var e=!1,f,g,h,i,j=this._model.data,k=this._model.default_state,l;do e="j"+this._id+"_"+ ++this._cnt;while(j[e]);l={id:!1,text:"string"==typeof a?a:"",icon:"object"==typeof a&&a.icon!==b?a.icon:!0,parent:c,parents:d,children:[],children_d:[],data:null,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1};for(f in k)k.hasOwnProperty(f)&&(l.state[f]=k[f]);if(a&&a.id&&(l.id=a.id.toString()),a&&a.text&&(l.text=a.text),a&&a.data&&a.data.jstree&&a.data.jstree.icon&&(l.icon=a.data.jstree.icon),(l.icon===b||null===l.icon||""===l.icon)&&(l.icon=!0),
3
a&&a.data&&(l.data=a.data,a.data.jstree))for(f in a.data.jstree)a.data.jstree.hasOwnProperty(f)&&(l.state[f]=a.data.jstree[f]);if(a&&"object"==typeof a.state)for(f in a.state)a.state.hasOwnProperty(f)&&(l.state[f]=a.state[f]);if(a&&"object"==typeof a.li_attr)for(f in a.li_attr)a.li_attr.hasOwnProperty(f)&&(l.li_attr[f]=a.li_attr[f]);if(l.li_attr.id&&!l.id&&(l.id=l.li_attr.id.toString()),l.id||(l.id=e),l.li_attr.id||(l.li_attr.id=l.id),a&&"object"==typeof a.a_attr)for(f in a.a_attr)a.a_attr.hasOwnProperty(f)&&(l.a_attr[f]=a.a_attr[f]);if(a&&a.children&&a.children.length){for(f=0,g=a.children.length;g>f;f++)h=this._parse_model_from_json(a.children[f],l.id,d),i=j[h],l.children.push(h),i.children_d.length&&(l.children_d=l.children_d.concat(i.children_d));l.children_d=l.children.concat(l.children_d)}return a&&a.children&&a.children===!0&&(l.state.loaded=!1,l.children=[],l.children_d=[]),delete a.data,delete a.children,l.original=a,j[l.id]=l,l.state.selected&&this._data.core.selected.push(l.id),l.id},_redraw:function(){var b=this._model.force_full_redraw?this._model.data[a.jstree.root].children.concat([]):this._model.changed.concat([]),c=i.createElement("UL"),d,e,f,g=this._data.core.focused;for(e=0,f=b.length;f>e;e++)d=this.redraw_node(b[e],!0,this._model.force_full_redraw),d&&this._model.force_full_redraw&&c.appendChild(d);this._model.force_full_redraw&&(c.className=this.get_container_ul()[0].className,c.setAttribute("role","group"),this.element.empty().append(c)),null!==g&&this.settings.core.restore_focus&&(d=this.get_node(g,!0),d&&d.length&&d.children(".jstree-anchor")[0]!==i.activeElement?d.children(".jstree-anchor").trigger("focus"):this._data.core.focused=null),this._model.force_full_redraw=!1,this._model.changed=[],this.trigger("redraw",{nodes:b})},redraw:function(a){a&&(this._model.force_full_redraw=!0),this._redraw()},draw_children:function(b){var c=this.get_node(b),d=!1,e=!1,f=!1,g=i;if(!c)return!1;if(c.id===a.jstree.root)return this.redraw(!0);if(b=this.get_node(b,!0),!b||!b.length)return!1;if(b.children(".jstree-children").remove(),b=b[0],c.children.length&&c.state.loaded){for(f=g.createElement("UL"),f.setAttribute("role","group"),f.className="jstree-children",d=0,e=c.children.length;e>d;d++)f.appendChild(this.redraw_node(c.children[d],!0,!0));b.appendChild(f)}},redraw_node:function(b,c,d,e){var f=this.get_node(b),g=!1,h=!1,j=!1,k=!1,l=!1,m=!1,n="",o=i,p=this._model.data,q=!1,r=!1,s=null,t=0,u=0,v=!1,w=!1;if(!f)return!1;if(f.id===a.jstree.root)return this.redraw(!0);if(c=c||0===f.children.length,b=i.querySelector?this.element[0].querySelector("#"+(-1!=="0123456789".indexOf(f.id[0])?"\\3"+f.id[0]+" "+f.id.substr(1).replace(a.jstree.idregex,"\\$&"):f.id.replace(a.jstree.idregex,"\\$&"))):i.getElementById(f.id))b=a(b),d||(g=b.parent().parent()[0],g===this.element[0]&&(g=null),h=b.index()),c||!f.children.length||b.children(".jstree-children").length||(c=!0),c||(j=b.children(".jstree-children")[0]),q=b.children(".jstree-anchor")[0]===i.activeElement,b.remove();else if(c=!0,!d){if(g=f.parent!==a.jstree.root?a("#"+f.parent.replace(a.jstree.idregex,"\\$&"),this.element)[0]:null,!(null===g||g&&p[f.parent].state.opened))return!1;h=a.inArray(f.id,null===g?p[a.jstree.root].children:p[f.parent].children)}b=this._data.core.node.cloneNode(!0),n="jstree-node ";for(k in f.li_attr)if(f.li_attr.hasOwnProperty(k)){if("id"===k)continue;"class"!==k?b.setAttribute(k,f.li_attr[k]):n+=f.li_attr[k]}for(f.a_attr.id||(f.a_attr.id=f.id+"_anchor"),b.childNodes[1].setAttribute("aria-selected",!!f.state.selected),b.childNodes[1].setAttribute("aria-level",f.parents.length),this.settings.core.compute_elements_positions&&(b.childNodes[1].setAttribute("aria-setsize",p[f.parent].children.length),b.childNodes[1].setAttribute("aria-posinset",p[f.parent].children.indexOf(f.id)+1)),f.state.disabled&&b.childNodes[1].setAttribute("aria-disabled",!0),k=0,l=f.children.length;l>k;k++)if(!p[f.children[k]].state.hidden){v=!0;break}if(null!==f.parent&&p[f.parent]&&!f.state.hidden&&(k=a.inArray(f.id,p[f.parent].children),w=f.id,-1!==k))for(k++,l=p[f.parent].children.length;l>k;k++)if(p[p[f.parent].children[k]].state.hidden||(w=p[f.parent].children[k]),w!==f.id)break;f.state.hidden&&(n+=" jstree-hidden"),f.state.loading&&(n+=" jstree-loading"),f.state.loaded&&!v?n+=" jstree-leaf":(n+=f.state.opened&&f.state.loaded?" jstree-open":" jstree-closed",b.childNodes[1].setAttribute("aria-expanded",f.state.opened&&f.state.loaded)),w===f.id&&(n+=" jstree-last"),b.id=f.id,b.className=n,n=(f.state.selected?" jstree-clicked":"")+(f.state.disabled?" jstree-disabled":"");for(l in f.a_attr)if(f.a_attr.hasOwnProperty(l)){if("href"===l&&"#"===f.a_attr[l])continue;"class"!==l?b.childNodes[1].setAttribute(l,f.a_attr[l]):n+=" "+f.a_attr[l]}if(n.length&&(b.childNodes[1].className="jstree-anchor "+n),(f.icon&&f.icon!==!0||f.icon===!1)&&(f.icon===!1?b.childNodes[1].childNodes[0].className+=" jstree-themeicon-hidden":-1===f.icon.indexOf("/")&&-1===f.icon.indexOf(".")?b.childNodes[1].childNodes[0].className+=" "+f.icon+" jstree-themeicon-custom":(b.childNodes[1].childNodes[0].style.backgroundImage='url("'+f.icon+'")',b.childNodes[1].childNodes[0].style.backgroundPosition="center center",b.childNodes[1].childNodes[0].style.backgroundSize="auto",b.childNodes[1].childNodes[0].className+=" jstree-themeicon-custom")),this.settings.core.force_text?b.childNodes[1].appendChild(o.createTextNode(f.text)):b.childNodes[1].innerHTML+=f.text,c&&f.children.length&&(f.state.opened||e)&&f.state.loaded){for(m=o.createElement("UL"),m.setAttribute("role","group"),m.className="jstree-children",k=0,l=f.children.length;l>k;k++)m.appendChild(this.redraw_node(f.children[k],c,!0));b.appendChild(m)}if(j&&b.appendChild(j),!d){for(g||(g=this.element[0]),k=0,l=g.childNodes.length;l>k;k++)if(g.childNodes[k]&&g.childNodes[k].className&&-1!==g.childNodes[k].className.indexOf("jstree-children")){s=g.childNodes[k];break}s||(s=o.createElement("UL"),s.setAttribute("role","group"),s.className="jstree-children",g.appendChild(s)),g=s,h<g.childNodes.length?g.insertBefore(b,g.childNodes[h]):g.appendChild(b),q&&(t=this.element[0].scrollTop,u=this.element[0].scrollLeft,b.childNodes[1].focus(),this.element[0].scrollTop=t,this.element[0].scrollLeft=u)}return f.state.opened&&!f.state.loaded&&(f.state.opened=!1,setTimeout(function(){this.open_node(f.id,!1,0)}.bind(this),0)),b},open_node:function(c,d,e){var f,g,h,i;if(a.vakata.is_array(c)){for(c=c.slice(),f=0,g=c.length;g>f;f++)this.open_node(c[f],d,e);return!0}return c=this.get_node(c),c&&c.id!==a.jstree.root?(e=e===b?this.settings.core.animation:e,this.is_closed(c)?this.is_loaded(c)?(h=this.get_node(c,!0),i=this,h.length&&(e&&h.children(".jstree-children").length&&h.children(".jstree-children").stop(!0,!0),c.children.length&&!this._firstChild(h.children(".jstree-children")[0])&&this.draw_children(c),e?(this.trigger("before_open",{node:c}),h.children(".jstree-children").css("display","none").end().removeClass("jstree-closed").addClass("jstree-open").children(".jstree-anchor").attr("aria-expanded",!0).end().children(".jstree-children").stop(!0,!0).slideDown(e,function(){this.style.display="",i.element&&i.trigger("after_open",{node:c})})):(this.trigger("before_open",{node:c}),h[0].className=h[0].className.replace("jstree-closed","jstree-open"),h[0].childNodes[1].setAttribute("aria-expanded",!0))),c.state.opened=!0,d&&d.call(this,c,!0),h.length||this.trigger("before_open",{node:c}),this.trigger("open_node",{node:c}),e&&h.length||this.trigger("after_open",{node:c}),!0):this.is_loading(c)?setTimeout(function(){this.open_node(c,d,e)}.bind(this),500):void this.load_node(c,function(a,b){return b?this.open_node(a,d,e):d?d.call(this,a,!1):!1}):(d&&d.call(this,c,!1),!1)):!1},_open_to:function(b){if(b=this.get_node(b),!b||b.id===a.jstree.root)return!1;var c,d,e=b.parents;for(c=0,d=e.length;d>c;c+=1)c!==a.jstree.root&&this.open_node(e[c],!1,0);return a("#"+b.id.replace(a.jstree.idregex,"\\$&"),this.element)},close_node:function(c,d){var e,f,g,h;if(a.vakata.is_array(c)){for(c=c.slice(),e=0,f=c.length;f>e;e++)this.close_node(c[e],d);return!0}return c=this.get_node(c),c&&c.id!==a.jstree.root?this.is_closed(c)?!1:(d=d===b?this.settings.core.animation:d,g=this,h=this.get_node(c,!0),c.state.opened=!1,this.trigger("close_node",{node:c}),void(h.length?d?h.children(".jstree-children").attr("style","display:block !important").end().removeClass("jstree-open").addClass("jstree-closed").children(".jstree-anchor").attr("aria-expanded",!1).end().children(".jstree-children").stop(!0,!0).slideUp(d,function(){this.style.display="",h.children(".jstree-children").remove(),g.element&&g.trigger("after_close",{node:c})}):(h[0].className=h[0].className.replace("jstree-open","jstree-closed"),h.children(".jstree-anchor").attr("aria-expanded",!1),h.children(".jstree-children").remove(),this.trigger("after_close",{node:c})):this.trigger("after_close",{node:c}))):!1},toggle_node:function(b){var c,d;if(a.vakata.is_array(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.toggle_node(b[c]);return!0}return this.is_closed(b)?this.open_node(b):this.is_open(b)?this.close_node(b):void 0},open_all:function(b,c,d){if(b||(b=a.jstree.root),b=this.get_node(b),!b)return!1;var e=b.id===a.jstree.root?this.get_container_ul():this.get_node(b,!0),f,g,h;if(!e.length){for(f=0,g=b.children_d.length;g>f;f++)this.is_closed(this._model.data[b.children_d[f]])&&(this._model.data[b.children_d[f]].state.opened=!0);return this.trigger("open_all",{node:b})}d=d||e,h=this,e=this.is_closed(b)?e.find(".jstree-closed").addBack():e.find(".jstree-closed"),e.each(function(){h.open_node(this,function(a,b){b&&this.is_parent(a)&&this.open_all(a,c,d)},c||0)}),0===d.find(".jstree-closed").length&&this.trigger("open_all",{node:this.get_node(d)})},close_all:function(b,c){if(b||(b=a.jstree.root),b=this.get_node(b),!b)return!1;var d=b.id===a.jstree.root?this.get_container_ul():this.get_node(b,!0),e=this,f,g;for(d.length&&(d=this.is_open(b)?d.find(".jstree-open").addBack():d.find(".jstree-open"),a(d.get().reverse()).each(function(){e.close_node(this,c||0)})),f=0,g=b.children_d.length;g>f;f++)this._model.data[b.children_d[f]].state.opened=!1;this.trigger("close_all",{node:b})},is_disabled:function(a){return a=this.get_node(a),a&&a.state&&a.state.disabled},enable_node:function(b){var c,d;if(a.vakata.is_array(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.enable_node(b[c]);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(b.state.disabled=!1,this.get_node(b,!0).children(".jstree-anchor").removeClass("jstree-disabled").attr("aria-disabled",!1),void this.trigger("enable_node",{node:b})):!1},disable_node:function(b){var c,d;if(a.vakata.is_array(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.disable_node(b[c]);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(b.state.disabled=!0,this.get_node(b,!0).children(".jstree-anchor").addClass("jstree-disabled").attr("aria-disabled",!0),void this.trigger("disable_node",{node:b})):!1},is_hidden:function(a){return a=this.get_node(a),a.state.hidden===!0},hide_node:function(b,c){var d,e;if(a.vakata.is_array(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.hide_node(b[d],!0);return c||this.redraw(),!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?void(b.state.hidden||(b.state.hidden=!0,this._node_changed(b.parent),c||this.redraw(),this.trigger("hide_node",{node:b}))):!1},show_node:function(b,c){var d,e;if(a.vakata.is_array(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.show_node(b[d],!0);return c||this.redraw(),!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?void(b.state.hidden&&(b.state.hidden=!1,this._node_changed(b.parent),c||this.redraw(),this.trigger("show_node",{node:b}))):!1},hide_all:function(b){var c,d=this._model.data,e=[];for(c in d)d.hasOwnProperty(c)&&c!==a.jstree.root&&!d[c].state.hidden&&(d[c].state.hidden=!0,e.push(c));return this._model.force_full_redraw=!0,b||this.redraw(),this.trigger("hide_all",{nodes:e}),e},show_all:function(b){var c,d=this._model.data,e=[];for(c in d)d.hasOwnProperty(c)&&c!==a.jstree.root&&d[c].state.hidden&&(d[c].state.hidden=!1,e.push(c));return this._model.force_full_redraw=!0,b||this.redraw(),this.trigger("show_all",{nodes:e}),e},activate_node:function(a,c){if(this.is_disabled(a))return!1;if(c&&"object"==typeof c||(c={}),this._data.core.last_clicked=this._data.core.last_clicked&&this._data.core.last_clicked.id!==b?this.get_node(this._data.core.last_clicked.id):null,this._data.core.last_clicked&&!this._data.core.last_clicked.state.selected&&(this._data.core.last_clicked=null),!this._data.core.last_clicked&&this._data.core.selected.length&&(this._data.core.last_clicked=this.get_node(this._data.core.selected[this._data.core.selected.length-1])),this.settings.core.multiple&&(c.metaKey||c.ctrlKey||c.shiftKey)&&(!c.shiftKey||this._data.core.last_clicked&&this.get_parent(a)&&this.get_parent(a)===this._data.core.last_clicked.parent))if(c.shiftKey){var d=this.get_node(a).id,e=this._data.core.last_clicked.id,f=this.get_node(this._data.core.last_clicked.parent).children,g=!1,h,i;for(h=0,i=f.length;i>h;h+=1)f[h]===d&&(g=!g),f[h]===e&&(g=!g),this.is_disabled(f[h])||!g&&f[h]!==d&&f[h]!==e?this.deselect_node(f[h],!0,c):this.is_hidden(f[h])||this.select_node(f[h],!0,!1,c);this.trigger("changed",{action:"select_node",node:this.get_node(a),selected:this._data.core.selected,event:c})}else this.is_selected(a)?this.deselect_node(a,!1,c):this.select_node(a,!1,!1,c);else!this.settings.core.multiple&&(c.metaKey||c.ctrlKey||c.shiftKey)&&this.is_selected(a)?this.deselect_node(a,!1,c):(this.deselect_all(!0),this.select_node(a,!1,!1,c),this._data.core.last_clicked=this.get_node(a));this.trigger("activate_node",{node:this.get_node(a),event:c})},hover_node:function(a){if(a=this.get_node(a,!0),!a||!a.length||a.children(".jstree-hovered").length)return!1;var b=this.element.find(".jstree-hovered"),c=this.element;b&&b.length&&this.dehover_node(b),a.children(".jstree-anchor").addClass("jstree-hovered"),this.trigger("hover_node",{node:this.get_node(a)}),setTimeout(function(){c.attr("aria-activedescendant",a[0].id)},0)},dehover_node:function(a){return a=this.get_node(a,!0),a&&a.length&&a.children(".jstree-hovered").length?(a.children(".jstree-anchor").removeClass("jstree-hovered"),void this.trigger("dehover_node",{node:this.get_node(a)})):!1},select_node:function(b,c,d,e){var f,g,h,i;if(a.vakata.is_array(b)){for(b=b.slice(),g=0,h=b.length;h>g;g++)this.select_node(b[g],c,d,e);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(f=this.get_node(b,!0),void(b.state.selected||(b.state.selected=!0,this._data.core.selected.push(b.id),d||(f=this._open_to(b)),f&&f.length&&f.children(".jstree-anchor").addClass("jstree-clicked").attr("aria-selected",!0),this.trigger("select_node",{node:b,selected:this._data.core.selected,event:e}),c||this.trigger("changed",{action:"select_node",node:b,selected:this._data.core.selected,event:e})))):!1},deselect_node:function(b,c,d){var e,f,g;if(a.vakata.is_array(b)){for(b=b.slice(),e=0,f=b.length;f>e;e++)this.deselect_node(b[e],c,d);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(g=this.get_node(b,!0),void(b.state.selected&&(b.state.selected=!1,this._data.core.selected=a.vakata.array_remove_item(this._data.core.selected,b.id),g.length&&g.children(".jstree-anchor").removeClass("jstree-clicked").attr("aria-selected",!1),this.trigger("deselect_node",{node:b,selected:this._data.core.selected,event:d}),c||this.trigger("changed",{action:"deselect_node",node:b,selected:this._data.core.selected,event:d})))):!1},select_all:function(b){var c=this._data.core.selected.concat([]),d,e;for(this._data.core.selected=this._model.data[a.jstree.root].children_d.concat(),d=0,e=this._data.core.selected.length;e>d;d++)this._model.data[this._data.core.selected[d]]&&(this._model.data[this._data.core.selected[d]].state.selected=!0);this.redraw(!0),this.trigger("select_all",{selected:this._data.core.selected}),b||this.trigger("changed",{action:"select_all",selected:this._data.core.selected,old_selection:c})},deselect_all:function(a){var b=this._data.core.selected.concat([]),c,d;for(c=0,d=this._data.core.selected.length;d>c;c++)this._model.data[this._data.core.selected[c]]&&(this._model.data[this._data.core.selected[c]].state.selected=!1);this._data.core.selected=[],this.element.find(".jstree-clicked").removeClass("jstree-clicked").attr("aria-selected",!1),this.trigger("deselect_all",{selected:this._data.core.selected,node:b}),a||this.trigger("changed",{action:"deselect_all",selected:this._data.core.selected,old_selection:b})},is_selected:function(b){return b=this.get_node(b),b&&b.id!==a.jstree.root?b.state.selected:!1},get_selected:function(b){return b?a.map(this._data.core.selected,function(a){return this.get_node(a)}.bind(this)):this._data.core.selected.slice()},get_top_selected:function(b){var c=this.get_selected(!0),d={},e,f,g,h;for(e=0,f=c.length;f>e;e++)d[c[e].id]=c[e];for(e=0,f=c.length;f>e;e++)for(g=0,h=c[e].children_d.length;h>g;g++)d[c[e].children_d[g]]&&delete d[c[e].children_d[g]];c=[];for(e in d)d.hasOwnProperty(e)&&c.push(e);return b?a.map(c,function(a){return this.get_node(a)}.bind(this)):c},get_bottom_selected:function(b){var c=this.get_selected(!0),d=[],e,f;for(e=0,f=c.length;f>e;e++)c[e].children.length||d.push(c[e].id);return b?a.map(d,function(a){return this.get_node(a)}.bind(this)):d},get_state:function(){var b={core:{open:[],loaded:[],scroll:{left:this.element.scrollLeft(),top:this.element.scrollTop()},selected:[]}},c;for(c in this._model.data)this._model.data.hasOwnProperty(c)&&c!==a.jstree.root&&(this._model.data[c].state.loaded&&this.settings.core.loaded_state&&b.core.loaded.push(c),this._model.data[c].state.opened&&b.core.open.push(c),this._model.data[c].state.selected&&b.core.selected.push(c));return b},set_state:function(c,d){if(c){if(c.core&&c.core.selected&&c.core.initial_selection===b&&(c.core.initial_selection=this._data.core.selected.concat([]).sort().join(",")),c.core){var e,f,g,h,i;if(c.core.loaded)return this.settings.core.loaded_state&&a.vakata.is_array(c.core.loaded)&&c.core.loaded.length?this._load_nodes(c.core.loaded,function(a){delete c.core.loaded,this.set_state(c,d)}):(delete c.core.loaded,this.set_state(c,d)),!1;if(c.core.open)return a.vakata.is_array(c.core.open)&&c.core.open.length?this._load_nodes(c.core.open,function(a){this.open_node(a,!1,0),delete c.core.open,this.set_state(c,d)}):(delete c.core.open,this.set_state(c,d)),!1;if(c.core.scroll)return c.core.scroll&&c.core.scroll.left!==b&&this.element.scrollLeft(c.core.scroll.left),c.core.scroll&&c.core.scroll.top!==b&&this.element.scrollTop(c.core.scroll.top),delete c.core.scroll,this.set_state(c,d),!1;if(c.core.selected)return h=this,(c.core.initial_selection===b||c.core.initial_selection===this._data.core.selected.concat([]).sort().join(","))&&(this.deselect_all(),a.each(c.core.selected,function(a,b){h.select_node(b,!1,!0)})),delete c.core.initial_selection,delete c.core.selected,this.set_state(c,d),!1;for(i in c)c.hasOwnProperty(i)&&"core"!==i&&-1===a.inArray(i,this.settings.plugins)&&delete c[i];if(a.isEmptyObject(c.core))return delete c.core,this.set_state(c,d),!1}return a.isEmptyObject(c)?(c=null,d&&d.call(this),this.trigger("set_state"),!1):!0}return!1},refresh:function(b,c){this._data.core.state=c===!0?{}:this.get_state(),c&&a.vakata.is_function(c)&&(this._data.core.state=c.call(this,this._data.core.state)),this._cnt=0,this._model.data={},this._model.data[a.jstree.root]={id:a.jstree.root,parent:null,parents:[],children:[],children_d:[],state:{loaded:!1}},this._data.core.selected=[],this._data.core.last_clicked=null,this._data.core.focused=null;var d=this.get_container_ul()[0].className;b||(this.element.html("<ul class='"+d+"' role='group'><li class='jstree-initial-node jstree-loading jstree-leaf jstree-last' role='none' id='j"+this._id+"_loading'><i class='jstree-icon jstree-ocl'></i><a class='jstree-anchor' role='treeitem' href='#'><i class='jstree-icon jstree-themeicon-hidden'></i>"+this.get_string("Loading ...")+"</a></li></ul>"),this.element.attr("aria-activedescendant","j"+this._id+"_loading")),this.load_node(a.jstree.root,function(b,c){c&&(this.get_container_ul()[0].className=d,this._firstChild(this.get_container_ul()[0])&&this.element.attr("aria-activedescendant",this._firstChild(this.get_container_ul()[0]).id),this.set_state(a.extend(!0,{},this._data.core.state),function(){this.trigger("refresh")})),this._data.core.state=null})},refresh_node:function(b){if(b=this.get_node(b),!b||b.id===a.jstree.root)return!1;var c=[],d=[],e=this._data.core.selected.concat([]);d.push(b.id),b.state.opened===!0&&c.push(b.id),this.get_node(b,!0).find(".jstree-open").each(function(){d.push(this.id),c.push(this.id)}),this._load_nodes(d,function(a){this.open_node(c,!1,0),this.select_node(e),this.trigger("refresh_node",{node:b,nodes:a})}.bind(this),!1,!0)},set_id:function(b,c){if(b=this.get_node(b),!b||b.id===a.jstree.root)return!1;var d,e,f=this._model.data,g=b.id;for(c=c.toString(),f[b.parent].children[a.inArray(b.id,f[b.parent].children)]=c,d=0,e=b.parents.length;e>d;d++)f[b.parents[d]].children_d[a.inArray(b.id,f[b.parents[d]].children_d)]=c;for(d=0,e=b.children.length;e>d;d++)f[b.children[d]].parent=c;for(d=0,e=b.children_d.length;e>d;d++)f[b.children_d[d]].parents[a.inArray(b.id,f[b.children_d[d]].parents)]=c;return d=a.inArray(b.id,this._data.core.selected),-1!==d&&(this._data.core.selected[d]=c),d=this.get_node(b.id,!0),d&&(d.attr("id",c),this.element.attr("aria-activedescendant")===b.id&&this.element.attr("aria-activedescendant",c)),delete f[b.id],b.id=c,b.li_attr.id=c,f[c]=b,this.trigger("set_id",{node:b,"new":b.id,old:g}),!0},get_text:function(b){return b=this.get_node(b),b&&b.id!==a.jstree.root?b.text:!1},set_text:function(b,c){var d,e;if(a.vakata.is_array(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.set_text(b[d],c);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(b.text=c,this.get_node(b,!0).length&&this.redraw_node(b.id),this.trigger("set_text",{obj:b,text:c}),!0):!1},get_json:function(b,c,d){if(b=this.get_node(b||a.jstree.root),!b)return!1;c&&c.flat&&!d&&(d=[]);var e={id:b.id,text:b.text,icon:this.get_icon(b),li_attr:a.extend(!0,{},b.li_attr),a_attr:a.extend(!0,{},b.a_attr),state:{},data:c&&c.no_data?!1:a.extend(!0,a.vakata.is_array(b.data)?[]:{},b.data)},f,g;if(c&&c.flat?e.parent=b.parent:e.children=[],c&&c.no_state)delete e.state;else for(f in b.state)b.state.hasOwnProperty(f)&&(e.state[f]=b.state[f]);if(c&&c.no_li_attr&&delete e.li_attr,c&&c.no_a_attr&&delete e.a_attr,c&&c.no_id&&(delete e.id,e.li_attr&&e.li_attr.id&&delete e.li_attr.id,e.a_attr&&e.a_attr.id&&delete e.a_attr.id),c&&c.flat&&b.id!==a.jstree.root&&d.push(e),!c||!c.no_children)for(f=0,g=b.children.length;g>f;f++)c&&c.flat?this.get_json(b.children[f],c,d):e.children.push(this.get_json(b.children[f],c));return c&&c.flat?d:b.id===a.jstree.root?e.children:e},create_node:function(c,d,e,f,g){if(null===c&&(c=a.jstree.root),c=this.get_node(c),!c)return!1;if(e=e===b?"last":e,!e.toString().match(/^(before|after)$/)&&!g&&!this.is_loaded(c))return this.load_node(c,function(){this.create_node(c,d,e,f,!0)});d||(d={text:this.get_string("New node")}),d="string"==typeof d?{text:d}:a.extend(!0,{},d),d.text===b&&(d.text=this.get_string("New node"));var h,i,j,k;switch(c.id===a.jstree.root&&("before"===e&&(e="first"),"after"===e&&(e="last")),e){case"before":h=this.get_node(c.parent),e=a.inArray(c.id,h.children),c=h;break;case"after":h=this.get_node(c.parent),e=a.inArray(c.id,h.children)+1,c=h;break;case"inside":case"first":e=0;break;case"last":e=c.children.length;break;default:e||(e=0)}if(e>c.children.length&&(e=c.children.length),d.id||(d.id=!0),!this.check("create_node",d,c,e))return this.settings.core.error.call(this,this._data.core.last_error),!1;if(d.id===!0&&delete d.id,d=this._parse_model_from_json(d,c.id,c.parents.concat()),!d)return!1;for(h=this.get_node(d),i=[],i.push(d),i=i.concat(h.children_d),this.trigger("model",{nodes:i,parent:c.id}),c.children_d=c.children_d.concat(i),j=0,k=c.parents.length;k>j;j++)this._model.data[c.parents[j]].children_d=this._model.data[c.parents[j]].children_d.concat(i);for(d=h,h=[],j=0,k=c.children.length;k>j;j++)h[j>=e?j+1:j]=c.children[j];return h[e]=d.id,c.children=h,this.redraw_node(c,!0),this.trigger("create_node",{node:this.get_node(d),parent:c.id,position:e}),f&&f.call(this,this.get_node(d)),d.id},rename_node:function(b,c){var d,e,f;if(a.vakata.is_array(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.rename_node(b[d],c);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(f=b.text,this.check("rename_node",b,this.get_parent(b),c)?(this.set_text(b,c),this.trigger("rename_node",{node:b,text:c,old:f}),!0):(this.settings.core.error.call(this,this._data.core.last_error),!1)):!1},delete_node:function(b){var c,d,e,f,g,h,i,j,k,l,m,n;if(a.vakata.is_array(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.delete_node(b[c]);return!0}if(b=this.get_node(b),!b||b.id===a.jstree.root)return!1;if(e=this.get_node(b.parent),f=a.inArray(b.id,e.children),l=!1,!this.check("delete_node",b,e,f))return this.settings.core.error.call(this,this._data.core.last_error),!1;for(-1!==f&&(e.children=a.vakata.array_remove(e.children,f)),g=b.children_d.concat([]),g.push(b.id),h=0,i=b.parents.length;i>h;h++)this._model.data[b.parents[h]].children_d=a.vakata.array_filter(this._model.data[b.parents[h]].children_d,function(b){return-1===a.inArray(b,g)});for(j=0,k=g.length;k>j;j++)if(this._model.data[g[j]].state.selected){l=!0;break}for(l&&(this._data.core.selected=a.vakata.array_filter(this._data.core.selected,function(b){return-1===a.inArray(b,g)})),this.trigger("delete_node",{node:b,parent:e.id}),l&&this.trigger("changed",{action:"delete_node",node:b,selected:this._data.core.selected,parent:e.id}),j=0,k=g.length;k>j;j++)delete this._model.data[g[j]];return-1!==a.inArray(this._data.core.focused,g)&&(this._data.core.focused=null,m=this.element[0].scrollTop,n=this.element[0].scrollLeft,e.id===a.jstree.root?this._model.data[a.jstree.root].children[0]&&this.get_node(this._model.data[a.jstree.root].children[0],!0).children(".jstree-anchor").triger("focus"):this.get_node(e,!0).children(".jstree-anchor").trigger("focus"),this.element[0].scrollTop=m,this.element[0].scrollLeft=n),this.redraw_node(e,!0),!0},check:function(b,c,d,e,f){c=c&&c.id?c:this.get_node(c),d=d&&d.id?d:this.get_node(d);var g=b.match(/^move_node|copy_node|create_node$/i)?d:c,h=this.settings.core.check_callback;if("move_node"===b||"copy_node"===b){if(!(f&&f.is_multi||"move_node"!==b||a.inArray(c.id,d.children)!==e))return this._data.core.last_error={error:"check",plugin:"core",id:"core_08",reason:"Moving node to its current position",data:JSON.stringify({chk:b,pos:e,obj:c&&c.id?c.id:!1,par:d&&d.id?d.id:!1})},!1;if(!(f&&f.is_multi||c.id!==d.id&&("move_node"!==b||a.inArray(c.id,d.children)!==e)&&-1===a.inArray(d.id,c.children_d)))return this._data.core.last_error={error:"check",plugin:"core",id:"core_01",reason:"Moving parent inside child",data:JSON.stringify({chk:b,pos:e,obj:c&&c.id?c.id:!1,par:d&&d.id?d.id:!1})},!1}return g&&g.data&&(g=g.data),g&&g.functions&&(g.functions[b]===!1||g.functions[b]===!0)?(g.functions[b]===!1&&(this._data.core.last_error={error:"check",plugin:"core",id:"core_02",reason:"Node data prevents function: "+b,data:JSON.stringify({chk:b,pos:e,obj:c&&c.id?c.id:!1,par:d&&d.id?d.id:!1})}),g.functions[b]):h===!1||a.vakata.is_function(h)&&h.call(this,b,c,d,e,f)===!1||h&&h[b]===!1?(this._data.core.last_error={error:"check",plugin:"core",id:"core_03",reason:"User config for core.check_callback prevents function: "+b,data:JSON.stringify({chk:b,pos:e,obj:c&&c.id?c.id:!1,par:d&&d.id?d.id:!1})},!1):!0},last_error:function(){return this._data.core.last_error},move_node:function(c,d,e,f,g,h,i){var j,k,l,m,n,o,p,q,r,s,t,u,v,w;if(d=this.get_node(d),e=e===b?0:e,!d)return!1;if(!e.toString().match(/^(before|after)$/)&&!g&&!this.is_loaded(d))return this.load_node(d,function(){this.move_node(c,d,e,f,!0,!1,i)});if(a.vakata.is_array(c)){if(1!==c.length){for(j=0,k=c.length;k>j;j++)(r=this.move_node(c[j],d,e,f,g,!1,i))&&(d=r,e="after");return this.redraw(),!0}c=c[0]}if(c=c&&c.id?c:this.get_node(c),!c||c.id===a.jstree.root)return!1;if(l=(c.parent||a.jstree.root).toString(),n=e.toString().match(/^(before|after)$/)&&d.id!==a.jstree.root?this.get_node(d.parent):d,o=i?i:this._model.data[c.id]?this:a.jstree.reference(c.id),p=!o||!o._id||this._id!==o._id,m=o&&o._id&&l&&o._model.data[l]&&o._model.data[l].children?a.inArray(c.id,o._model.data[l].children):-1,o&&o._id&&(c=o._model.data[c.id]),p)return(r=this.copy_node(c,d,e,f,g,!1,i))?(o&&o.delete_node(c),r):!1;switch(d.id===a.jstree.root&&("before"===e&&(e="first"),"after"===e&&(e="last")),e){case"before":e=a.inArray(d.id,n.children);break;case"after":e=a.inArray(d.id,n.children)+1;break;case"inside":case"first":e=0;break;case"last":e=n.children.length;break;default:e||(e=0)}if(e>n.children.length&&(e=n.children.length),!this.check("move_node",c,n,e,{core:!0,origin:i,is_multi:o&&o._id&&o._id!==this._id,is_foreign:!o||!o._id}))return this.settings.core.error.call(this,this._data.core.last_error),!1;if(c.parent===n.id){for(q=n.children.concat(),r=a.inArray(c.id,q),-1!==r&&(q=a.vakata.array_remove(q,r),e>r&&e--),r=[],s=0,t=q.length;t>s;s++)r[s>=e?s+1:s]=q[s];r[e]=c.id,n.children=r,this._node_changed(n.id),this.redraw(n.id===a.jstree.root)}else{for(r=c.children_d.concat(),r.push(c.id),s=0,t=c.parents.length;t>s;s++){for(q=[],w=o._model.data[c.parents[s]].children_d,u=0,v=w.length;v>u;u++)-1===a.inArray(w[u],r)&&q.push(w[u]);o._model.data[c.parents[s]].children_d=q}for(o._model.data[l].children=a.vakata.array_remove_item(o._model.data[l].children,c.id),s=0,t=n.parents.length;t>s;s++)this._model.data[n.parents[s]].children_d=this._model.data[n.parents[s]].children_d.concat(r);for(q=[],s=0,t=n.children.length;t>s;s++)q[s>=e?s+1:s]=n.children[s];for(q[e]=c.id,n.children=q,n.children_d.push(c.id),n.children_d=n.children_d.concat(c.children_d),c.parent=n.id,r=n.parents.concat(),r.unshift(n.id),w=c.parents.length,c.parents=r,r=r.concat(),s=0,t=c.children_d.length;t>s;s++)this._model.data[c.children_d[s]].parents=this._model.data[c.children_d[s]].parents.slice(0,-1*w),Array.prototype.push.apply(this._model.data[c.children_d[s]].parents,r);(l===a.jstree.root||n.id===a.jstree.root)&&(this._model.force_full_redraw=!0),this._model.force_full_redraw||(this._node_changed(l),this._node_changed(n.id)),h||this.redraw()}return f&&f.call(this,c,n,e),this.trigger("move_node",{node:c,parent:n.id,position:e,old_parent:l,old_position:m,is_multi:o&&o._id&&o._id!==this._id,is_foreign:!o||!o._id,old_instance:o,new_instance:this}),c.id},copy_node:function(c,d,e,f,g,h,i){var j,k,l,m,n,o,p,q,r,s,t;if(d=this.get_node(d),e=e===b?0:e,!d)return!1;if(!e.toString().match(/^(before|after)$/)&&!g&&!this.is_loaded(d))return this.load_node(d,function(){this.copy_node(c,d,e,f,!0,!1,i)});if(a.vakata.is_array(c)){if(1!==c.length){for(j=0,k=c.length;k>j;j++)(m=this.copy_node(c[j],d,e,f,g,!0,i))&&(d=m,e="after");return this.redraw(),!0}c=c[0]}if(c=c&&c.id?c:this.get_node(c),!c||c.id===a.jstree.root)return!1;switch(q=(c.parent||a.jstree.root).toString(),r=e.toString().match(/^(before|after)$/)&&d.id!==a.jstree.root?this.get_node(d.parent):d,s=i?i:this._model.data[c.id]?this:a.jstree.reference(c.id),t=!s||!s._id||this._id!==s._id,s&&s._id&&(c=s._model.data[c.id]),d.id===a.jstree.root&&("before"===e&&(e="first"),"after"===e&&(e="last")),e){case"before":e=a.inArray(d.id,r.children);break;case"after":e=a.inArray(d.id,r.children)+1;break;case"inside":case"first":e=0;break;case"last":e=r.children.length;break;default:e||(e=0)}if(e>r.children.length&&(e=r.children.length),!this.check("copy_node",c,r,e,{core:!0,origin:i,is_multi:s&&s._id&&s._id!==this._id,is_foreign:!s||!s._id}))return this.settings.core.error.call(this,this._data.core.last_error),!1;if(p=s?s.get_json(c,{no_id:!0,no_data:!0,no_state:!0}):c,!p)return!1;if(p.id===!0&&delete p.id,p=this._parse_model_from_json(p,r.id,r.parents.concat()),
4
!p)return!1;for(m=this.get_node(p),c&&c.state&&c.state.loaded===!1&&(m.state.loaded=!1),l=[],l.push(p),l=l.concat(m.children_d),this.trigger("model",{nodes:l,parent:r.id}),n=0,o=r.parents.length;o>n;n++)this._model.data[r.parents[n]].children_d=this._model.data[r.parents[n]].children_d.concat(l);for(l=[],n=0,o=r.children.length;o>n;n++)l[n>=e?n+1:n]=r.children[n];return l[e]=m.id,r.children=l,r.children_d.push(m.id),r.children_d=r.children_d.concat(m.children_d),r.id===a.jstree.root&&(this._model.force_full_redraw=!0),this._model.force_full_redraw||this._node_changed(r.id),h||this.redraw(r.id===a.jstree.root),f&&f.call(this,m,r,e),this.trigger("copy_node",{node:m,original:c,parent:r.id,position:e,old_parent:q,old_position:s&&s._id&&q&&s._model.data[q]&&s._model.data[q].children?a.inArray(c.id,s._model.data[q].children):-1,is_multi:s&&s._id&&s._id!==this._id,is_foreign:!s||!s._id,old_instance:s,new_instance:this}),m.id},cut:function(b){if(b||(b=this._data.core.selected.concat()),a.vakata.is_array(b)||(b=[b]),!b.length)return!1;var c=[],g,h,i;for(h=0,i=b.length;i>h;h++)g=this.get_node(b[h]),g&&g.id&&g.id!==a.jstree.root&&c.push(g);return c.length?(d=c,f=this,e="move_node",void this.trigger("cut",{node:b})):!1},copy:function(b){if(b||(b=this._data.core.selected.concat()),a.vakata.is_array(b)||(b=[b]),!b.length)return!1;var c=[],g,h,i;for(h=0,i=b.length;i>h;h++)g=this.get_node(b[h]),g&&g.id&&g.id!==a.jstree.root&&c.push(g);return c.length?(d=c,f=this,e="copy_node",void this.trigger("copy",{node:b})):!1},get_buffer:function(){return{mode:e,node:d,inst:f}},can_paste:function(){return e!==!1&&d!==!1},paste:function(a,b){return a=this.get_node(a),a&&e&&e.match(/^(copy_node|move_node)$/)&&d?(this[e](d,a,b,!1,!1,!1,f)&&this.trigger("paste",{parent:a.id,node:d,mode:e}),d=!1,e=!1,void(f=!1)):!1},clear_buffer:function(){d=!1,e=!1,f=!1,this.trigger("clear_buffer")},edit:function(b,c,d){var e,f,g,h,j,k,l,m,n,o=!1;return(b=this.get_node(b))?this.check("edit",b,this.get_parent(b))?(n=b,c="string"==typeof c?c:b.text,this.set_text(b,""),b=this._open_to(b),n.text=c,e=this._data.core.rtl,f=this.element.width(),this._data.core.focused=n.id,g=b.children(".jstree-anchor").trigger("focus"),h=a("<span></span>"),j=c,k=a("<div></div>",{css:{position:"absolute",top:"-200px",left:e?"0px":"-1000px",visibility:"hidden"}}).appendTo(i.body),l=a("<input />",{value:j,"class":"jstree-rename-input",css:{padding:"0",border:"1px solid silver","box-sizing":"border-box",display:"inline-block",height:this._data.core.li_height+"px",lineHeight:this._data.core.li_height+"px",width:"150px"},blur:function(c){c.stopImmediatePropagation(),c.preventDefault();var e=h.children(".jstree-rename-input"),f=e.val(),i=this.settings.core.force_text,m;""===f&&(f=j),k.remove(),h.replaceWith(g),h.remove(),j=i?j:a("<div></div>").append(a.parseHTML(j)).html(),b=this.get_node(b),this.set_text(b,j),m=!!this.rename_node(b,i?a("<div></div>").text(f).text():a("<div></div>").append(a.parseHTML(f)).html()),m||this.set_text(b,j),this._data.core.focused=n.id,setTimeout(function(){var a=this.get_node(n.id,!0);a.length&&(this._data.core.focused=n.id,a.children(".jstree-anchor").trigger("focus"))}.bind(this),0),d&&d.call(this,n,m,o,f),l=null}.bind(this),keydown:function(a){var b=a.which;27===b&&(o=!0,this.value=j),(27===b||13===b||37===b||38===b||39===b||40===b||32===b)&&a.stopImmediatePropagation(),(27===b||13===b)&&(a.preventDefault(),this.blur())},click:function(a){a.stopImmediatePropagation()},mousedown:function(a){a.stopImmediatePropagation()},keyup:function(a){l.width(Math.min(k.text("pW"+this.value).width(),f))},keypress:function(a){return 13===a.which?!1:void 0}}),m={fontFamily:g.css("fontFamily")||"",fontSize:g.css("fontSize")||"",fontWeight:g.css("fontWeight")||"",fontStyle:g.css("fontStyle")||"",fontStretch:g.css("fontStretch")||"",fontVariant:g.css("fontVariant")||"",letterSpacing:g.css("letterSpacing")||"",wordSpacing:g.css("wordSpacing")||""},h.attr("class",g.attr("class")).append(g.contents().clone()).append(l),g.replaceWith(h),k.css(m),l.css(m).width(Math.min(k.text("pW"+l[0].value).width(),f))[0].select(),void a(i).one("mousedown.jstree touchstart.jstree dnd_start.vakata",function(b){l&&b.target!==l&&a(l).trigger("blur")})):(this.settings.core.error.call(this,this._data.core.last_error),!1):!1},set_theme:function(b,c){if(!b)return!1;if(c===!0){var d=this.settings.core.themes.dir;d||(d=a.jstree.path+"/themes"),c=d+"/"+b+"/style.css"}c&&-1===a.inArray(c,g)&&(a("head").append('<link rel="stylesheet" href="'+c+'" type="text/css" />'),g.push(c)),this._data.core.themes.name&&this.element.removeClass("jstree-"+this._data.core.themes.name),this._data.core.themes.name=b,this.element.addClass("jstree-"+b),this.element[this.settings.core.themes.responsive?"addClass":"removeClass"]("jstree-"+b+"-responsive"),this.trigger("set_theme",{theme:b})},get_theme:function(){return this._data.core.themes.name},set_theme_variant:function(a){this._data.core.themes.variant&&this.element.removeClass("jstree-"+this._data.core.themes.name+"-"+this._data.core.themes.variant),this._data.core.themes.variant=a,a&&this.element.addClass("jstree-"+this._data.core.themes.name+"-"+this._data.core.themes.variant)},get_theme_variant:function(){return this._data.core.themes.variant},show_stripes:function(){this._data.core.themes.stripes=!0,this.get_container_ul().addClass("jstree-striped"),this.trigger("show_stripes")},hide_stripes:function(){this._data.core.themes.stripes=!1,this.get_container_ul().removeClass("jstree-striped"),this.trigger("hide_stripes")},toggle_stripes:function(){this._data.core.themes.stripes?this.hide_stripes():this.show_stripes()},show_dots:function(){this._data.core.themes.dots=!0,this.get_container_ul().removeClass("jstree-no-dots"),this.trigger("show_dots")},hide_dots:function(){this._data.core.themes.dots=!1,this.get_container_ul().addClass("jstree-no-dots"),this.trigger("hide_dots")},toggle_dots:function(){this._data.core.themes.dots?this.hide_dots():this.show_dots()},show_icons:function(){this._data.core.themes.icons=!0,this.get_container_ul().removeClass("jstree-no-icons"),this.trigger("show_icons")},hide_icons:function(){this._data.core.themes.icons=!1,this.get_container_ul().addClass("jstree-no-icons"),this.trigger("hide_icons")},toggle_icons:function(){this._data.core.themes.icons?this.hide_icons():this.show_icons()},show_ellipsis:function(){this._data.core.themes.ellipsis=!0,this.get_container_ul().addClass("jstree-ellipsis"),this.trigger("show_ellipsis")},hide_ellipsis:function(){this._data.core.themes.ellipsis=!1,this.get_container_ul().removeClass("jstree-ellipsis"),this.trigger("hide_ellipsis")},toggle_ellipsis:function(){this._data.core.themes.ellipsis?this.hide_ellipsis():this.show_ellipsis()},set_icon:function(c,d){var e,f,g,h;if(a.vakata.is_array(c)){for(c=c.slice(),e=0,f=c.length;f>e;e++)this.set_icon(c[e],d);return!0}return c=this.get_node(c),c&&c.id!==a.jstree.root?(h=c.icon,c.icon=d===!0||null===d||d===b||""===d?!0:d,g=this.get_node(c,!0).children(".jstree-anchor").children(".jstree-themeicon"),d===!1?(g.removeClass("jstree-themeicon-custom "+h).css("background","").removeAttr("rel"),this.hide_icon(c)):d===!0||null===d||d===b||""===d?(g.removeClass("jstree-themeicon-custom "+h).css("background","").removeAttr("rel"),h===!1&&this.show_icon(c)):-1===d.indexOf("/")&&-1===d.indexOf(".")?(g.removeClass(h).css("background",""),g.addClass(d+" jstree-themeicon-custom").attr("rel",d),h===!1&&this.show_icon(c)):(g.removeClass(h).css("background",""),g.addClass("jstree-themeicon-custom").css("background","url('"+d+"') center center no-repeat").attr("rel",d),h===!1&&this.show_icon(c)),!0):!1},get_icon:function(b){return b=this.get_node(b),b&&b.id!==a.jstree.root?b.icon:!1},hide_icon:function(b){var c,d;if(a.vakata.is_array(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.hide_icon(b[c]);return!0}return b=this.get_node(b),b&&b!==a.jstree.root?(b.icon=!1,this.get_node(b,!0).children(".jstree-anchor").children(".jstree-themeicon").addClass("jstree-themeicon-hidden"),!0):!1},show_icon:function(b){var c,d,e;if(a.vakata.is_array(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.show_icon(b[c]);return!0}return b=this.get_node(b),b&&b!==a.jstree.root?(e=this.get_node(b,!0),b.icon=e.length?e.children(".jstree-anchor").children(".jstree-themeicon").attr("rel"):!0,b.icon||(b.icon=!0),e.children(".jstree-anchor").children(".jstree-themeicon").removeClass("jstree-themeicon-hidden"),!0):!1}},a.vakata={},a.vakata.attributes=function(b,c){b=a(b)[0];var d=c?{}:[];return b&&b.attributes&&a.each(b.attributes,function(b,e){-1===a.inArray(e.name.toLowerCase(),["style","contenteditable","hasfocus","tabindex"])&&null!==e.value&&""!==a.vakata.trim(e.value)&&(c?d[e.name]=e.value:d.push(e.name))}),d},a.vakata.array_unique=function(a){var c=[],d,e,f,g={};for(d=0,f=a.length;f>d;d++)g[a[d]]===b&&(c.push(a[d]),g[a[d]]=!0);return c},a.vakata.array_remove=function(a,b){return a.splice(b,1),a},a.vakata.array_remove_item=function(b,c){var d=a.inArray(c,b);return-1!==d?a.vakata.array_remove(b,d):b},a.vakata.array_filter=function(a,b,c,d,e){if(a.filter)return a.filter(b,c);d=[];for(e in a)~~e+""==e+""&&e>=0&&b.call(c,a[e],+e,a)&&d.push(a[e]);return d},a.vakata.trim=function(a){return String.prototype.trim?String.prototype.trim.call(a.toString()):a.toString().replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")},a.vakata.is_function=function(a){return"function"==typeof a&&"number"!=typeof a.nodeType},a.vakata.is_array=Array.isArray||function(a){return"[object Array]"===Object.prototype.toString.call(a)},Function.prototype.bind||(Function.prototype.bind=function(){var a=this,b=arguments[0],c=Array.prototype.slice.call(arguments,1);if("function"!=typeof a)throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable");return function(){var d=c.concat(Array.prototype.slice.call(arguments));return a.apply(b,d)}}),a.jstree.plugins.changed=function(a,b){var c=[];this.trigger=function(a,d){var e,f;if(d||(d={}),"changed"===a.replace(".jstree","")){d.changed={selected:[],deselected:[]};var g={};for(e=0,f=c.length;f>e;e++)g[c[e]]=1;for(e=0,f=d.selected.length;f>e;e++)g[d.selected[e]]?g[d.selected[e]]=2:d.changed.selected.push(d.selected[e]);for(e=0,f=c.length;f>e;e++)1===g[c[e]]&&d.changed.deselected.push(c[e]);c=d.selected.slice()}b.trigger.call(this,a,d)},this.refresh=function(a,d){return c=[],b.refresh.apply(this,arguments)}};var l=i.createElement("I");l.className="jstree-icon jstree-checkbox",l.setAttribute("role","presentation"),a.jstree.defaults.checkbox={visible:!0,three_state:!0,whole_node:!0,keep_selected_style:!0,cascade:"",tie_selection:!0,cascade_to_disabled:!0,cascade_to_hidden:!0},a.jstree.plugins.checkbox=function(c,d){this.bind=function(){d.bind.call(this),this._data.checkbox.uto=!1,this._data.checkbox.selected=[],this.settings.checkbox.three_state&&(this.settings.checkbox.cascade="up+down+undetermined"),this.element.on("init.jstree",function(){this._data.checkbox.visible=this.settings.checkbox.visible,this.settings.checkbox.keep_selected_style||this.element.addClass("jstree-checkbox-no-clicked"),this.settings.checkbox.tie_selection&&this.element.addClass("jstree-checkbox-selection")}.bind(this)).on("loading.jstree",function(){this[this._data.checkbox.visible?"show_checkboxes":"hide_checkboxes"]()}.bind(this)),-1!==this.settings.checkbox.cascade.indexOf("undetermined")&&this.element.on("changed.jstree uncheck_node.jstree check_node.jstree uncheck_all.jstree check_all.jstree move_node.jstree copy_node.jstree redraw.jstree open_node.jstree",function(){this._data.checkbox.uto&&clearTimeout(this._data.checkbox.uto),this._data.checkbox.uto=setTimeout(this._undetermined.bind(this),50)}.bind(this)),this.settings.checkbox.tie_selection||this.element.on("model.jstree",function(a,b){var c=this._model.data,d=c[b.parent],e=b.nodes,f,g;for(f=0,g=e.length;g>f;f++)c[e[f]].state.checked=c[e[f]].state.checked||c[e[f]].original&&c[e[f]].original.state&&c[e[f]].original.state.checked,c[e[f]].state.checked&&this._data.checkbox.selected.push(e[f])}.bind(this)),(-1!==this.settings.checkbox.cascade.indexOf("up")||-1!==this.settings.checkbox.cascade.indexOf("down"))&&this.element.on("model.jstree",function(b,c){var d=this._model.data,e=d[c.parent],f=c.nodes,g=[],h,i,j,k,l,m,n=this.settings.checkbox.cascade,o=this.settings.checkbox.tie_selection;if(-1!==n.indexOf("down"))if(e.state[o?"selected":"checked"]){for(i=0,j=f.length;j>i;i++)d[f[i]].state[o?"selected":"checked"]=!0;this._data[o?"core":"checkbox"].selected=this._data[o?"core":"checkbox"].selected.concat(f)}else for(i=0,j=f.length;j>i;i++)if(d[f[i]].state[o?"selected":"checked"]){for(k=0,l=d[f[i]].children_d.length;l>k;k++)d[d[f[i]].children_d[k]].state[o?"selected":"checked"]=!0;this._data[o?"core":"checkbox"].selected=this._data[o?"core":"checkbox"].selected.concat(d[f[i]].children_d)}if(-1!==n.indexOf("up")){for(i=0,j=e.children_d.length;j>i;i++)d[e.children_d[i]].children.length||g.push(d[e.children_d[i]].parent);for(g=a.vakata.array_unique(g),k=0,l=g.length;l>k;k++){e=d[g[k]];while(e&&e.id!==a.jstree.root){for(h=0,i=0,j=e.children.length;j>i;i++)h+=d[e.children[i]].state[o?"selected":"checked"];if(h!==j)break;e.state[o?"selected":"checked"]=!0,this._data[o?"core":"checkbox"].selected.push(e.id),m=this.get_node(e,!0),m&&m.length&&m.attr("aria-selected",!0).children(".jstree-anchor").addClass(o?"jstree-clicked":"jstree-checked"),e=this.get_node(e.parent)}}}this._data[o?"core":"checkbox"].selected=a.vakata.array_unique(this._data[o?"core":"checkbox"].selected)}.bind(this)).on(this.settings.checkbox.tie_selection?"select_node.jstree":"check_node.jstree",function(b,c){var d=this,e=c.node,f=this._model.data,g=this.get_node(e.parent),h,i,j,k,l=this.settings.checkbox.cascade,m=this.settings.checkbox.tie_selection,n={},o=this._data[m?"core":"checkbox"].selected;for(h=0,i=o.length;i>h;h++)n[o[h]]=!0;if(-1!==l.indexOf("down")){var p=this._cascade_new_checked_state(e.id,!0),q=e.children_d.concat(e.id);for(h=0,i=q.length;i>h;h++)p.indexOf(q[h])>-1?n[q[h]]=!0:delete n[q[h]]}if(-1!==l.indexOf("up"))while(g&&g.id!==a.jstree.root){for(j=0,h=0,i=g.children.length;i>h;h++)j+=f[g.children[h]].state[m?"selected":"checked"];if(j!==i)break;g.state[m?"selected":"checked"]=!0,n[g.id]=!0,k=this.get_node(g,!0),k&&k.length&&k.attr("aria-selected",!0).children(".jstree-anchor").addClass(m?"jstree-clicked":"jstree-checked"),g=this.get_node(g.parent)}o=[];for(h in n)n.hasOwnProperty(h)&&o.push(h);this._data[m?"core":"checkbox"].selected=o}.bind(this)).on(this.settings.checkbox.tie_selection?"deselect_all.jstree":"uncheck_all.jstree",function(b,c){var d=this.get_node(a.jstree.root),e=this._model.data,f,g,h;for(f=0,g=d.children_d.length;g>f;f++)h=e[d.children_d[f]],h&&h.original&&h.original.state&&h.original.state.undetermined&&(h.original.state.undetermined=!1)}.bind(this)).on(this.settings.checkbox.tie_selection?"deselect_node.jstree":"uncheck_node.jstree",function(b,c){var d=this,e=c.node,f=this.get_node(e,!0),g,h,i,j=this.settings.checkbox.cascade,k=this.settings.checkbox.tie_selection,l=this._data[k?"core":"checkbox"].selected,m={},n=[],o=e.children_d.concat(e.id);if(-1!==j.indexOf("down")){var p=this._cascade_new_checked_state(e.id,!1);l=a.vakata.array_filter(l,function(a){return-1===o.indexOf(a)||p.indexOf(a)>-1})}if(-1!==j.indexOf("up")&&-1===l.indexOf(e.id)){for(g=0,h=e.parents.length;h>g;g++)i=this._model.data[e.parents[g]],i.state[k?"selected":"checked"]=!1,i&&i.original&&i.original.state&&i.original.state.undetermined&&(i.original.state.undetermined=!1),i=this.get_node(e.parents[g],!0),i&&i.length&&i.attr("aria-selected",!1).children(".jstree-anchor").removeClass(k?"jstree-clicked":"jstree-checked");l=a.vakata.array_filter(l,function(a){return-1===e.parents.indexOf(a)})}this._data[k?"core":"checkbox"].selected=l}.bind(this)),-1!==this.settings.checkbox.cascade.indexOf("up")&&this.element.on("delete_node.jstree",function(b,c){var d=this.get_node(c.parent),e=this._model.data,f,g,h,i,j=this.settings.checkbox.tie_selection;while(d&&d.id!==a.jstree.root&&!d.state[j?"selected":"checked"]){for(h=0,f=0,g=d.children.length;g>f;f++)h+=e[d.children[f]].state[j?"selected":"checked"];if(!(g>0&&h===g))break;d.state[j?"selected":"checked"]=!0,this._data[j?"core":"checkbox"].selected.push(d.id),i=this.get_node(d,!0),i&&i.length&&i.attr("aria-selected",!0).children(".jstree-anchor").addClass(j?"jstree-clicked":"jstree-checked"),d=this.get_node(d.parent)}}.bind(this)).on("move_node.jstree",function(b,c){var d=c.is_multi,e=c.old_parent,f=this.get_node(c.parent),g=this._model.data,h,i,j,k,l,m=this.settings.checkbox.tie_selection;if(!d){h=this.get_node(e);while(h&&h.id!==a.jstree.root&&!h.state[m?"selected":"checked"]){for(i=0,j=0,k=h.children.length;k>j;j++)i+=g[h.children[j]].state[m?"selected":"checked"];if(!(k>0&&i===k))break;h.state[m?"selected":"checked"]=!0,this._data[m?"core":"checkbox"].selected.push(h.id),l=this.get_node(h,!0),l&&l.length&&l.attr("aria-selected",!0).children(".jstree-anchor").addClass(m?"jstree-clicked":"jstree-checked"),h=this.get_node(h.parent)}}h=f;while(h&&h.id!==a.jstree.root){for(i=0,j=0,k=h.children.length;k>j;j++)i+=g[h.children[j]].state[m?"selected":"checked"];if(i===k)h.state[m?"selected":"checked"]||(h.state[m?"selected":"checked"]=!0,this._data[m?"core":"checkbox"].selected.push(h.id),l=this.get_node(h,!0),l&&l.length&&l.attr("aria-selected",!0).children(".jstree-anchor").addClass(m?"jstree-clicked":"jstree-checked"));else{if(!h.state[m?"selected":"checked"])break;h.state[m?"selected":"checked"]=!1,this._data[m?"core":"checkbox"].selected=a.vakata.array_remove_item(this._data[m?"core":"checkbox"].selected,h.id),l=this.get_node(h,!0),l&&l.length&&l.attr("aria-selected",!1).children(".jstree-anchor").removeClass(m?"jstree-clicked":"jstree-checked")}h=this.get_node(h.parent)}}.bind(this))},this.get_undetermined=function(c){if(-1===this.settings.checkbox.cascade.indexOf("undetermined"))return[];var d,e,f,g,h={},i=this._model.data,j=this.settings.checkbox.tie_selection,k=this._data[j?"core":"checkbox"].selected,l=[],m=this,n=[];for(d=0,e=k.length;e>d;d++)if(i[k[d]]&&i[k[d]].parents)for(f=0,g=i[k[d]].parents.length;g>f;f++){if(h[i[k[d]].parents[f]]!==b)break;i[k[d]].parents[f]!==a.jstree.root&&(h[i[k[d]].parents[f]]=!0,l.push(i[k[d]].parents[f]))}for(this.element.find(".jstree-closed").not(":has(.jstree-children)").each(function(){var c=m.get_node(this),j;if(c)if(c.state.loaded){for(d=0,e=c.children_d.length;e>d;d++)if(j=i[c.children_d[d]],!j.state.loaded&&j.original&&j.original.state&&j.original.state.undetermined&&j.original.state.undetermined===!0)for(h[j.id]===b&&j.id!==a.jstree.root&&(h[j.id]=!0,l.push(j.id)),f=0,g=j.parents.length;g>f;f++)h[j.parents[f]]===b&&j.parents[f]!==a.jstree.root&&(h[j.parents[f]]=!0,l.push(j.parents[f]))}else if(c.original&&c.original.state&&c.original.state.undetermined&&c.original.state.undetermined===!0)for(h[c.id]===b&&c.id!==a.jstree.root&&(h[c.id]=!0,l.push(c.id)),f=0,g=c.parents.length;g>f;f++)h[c.parents[f]]===b&&c.parents[f]!==a.jstree.root&&(h[c.parents[f]]=!0,l.push(c.parents[f]))}),d=0,e=l.length;e>d;d++)i[l[d]].state[j?"selected":"checked"]||n.push(c?i[l[d]]:l[d]);return n},this._undetermined=function(){if(null!==this.element){var a=this.get_undetermined(!1),b,c,d;for(this.element.find(".jstree-undetermined").removeClass("jstree-undetermined"),b=0,c=a.length;c>b;b++)d=this.get_node(a[b],!0),d&&d.length&&d.children(".jstree-anchor").children(".jstree-checkbox").addClass("jstree-undetermined")}},this.redraw_node=function(a,b,c,e){if(a=d.redraw_node.apply(this,arguments)){var f,g,h=null,i=null;for(f=0,g=a.childNodes.length;g>f;f++)if(a.childNodes[f]&&a.childNodes[f].className&&-1!==a.childNodes[f].className.indexOf("jstree-anchor")){h=a.childNodes[f];break}h&&(!this.settings.checkbox.tie_selection&&this._model.data[a.id].state.checked&&(h.className+=" jstree-checked"),i=l.cloneNode(!1),this._model.data[a.id].state.checkbox_disabled&&(i.className+=" jstree-checkbox-disabled"),h.insertBefore(i,h.childNodes[0]))}return c||-1===this.settings.checkbox.cascade.indexOf("undetermined")||(this._data.checkbox.uto&&clearTimeout(this._data.checkbox.uto),this._data.checkbox.uto=setTimeout(this._undetermined.bind(this),50)),a},this.show_checkboxes=function(){this._data.core.themes.checkboxes=!0,this.get_container_ul().removeClass("jstree-no-checkboxes")},this.hide_checkboxes=function(){this._data.core.themes.checkboxes=!1,this.get_container_ul().addClass("jstree-no-checkboxes")},this.toggle_checkboxes=function(){this._data.core.themes.checkboxes?this.hide_checkboxes():this.show_checkboxes()},this.is_undetermined=function(b){b=this.get_node(b);var c=this.settings.checkbox.cascade,d,e,f=this.settings.checkbox.tie_selection,g=this._data[f?"core":"checkbox"].selected,h=this._model.data;if(!b||b.state[f?"selected":"checked"]===!0||-1===c.indexOf("undetermined")||-1===c.indexOf("down")&&-1===c.indexOf("up"))return!1;if(!b.state.loaded&&b.original.state.undetermined===!0)return!0;for(d=0,e=b.children_d.length;e>d;d++)if(-1!==a.inArray(b.children_d[d],g)||!h[b.children_d[d]].state.loaded&&h[b.children_d[d]].original.state.undetermined)return!0;return!1},this.disable_checkbox=function(b){var c,d,e;if(a.vakata.is_array(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.disable_checkbox(b[c]);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(e=this.get_node(b,!0),void(b.state.checkbox_disabled||(b.state.checkbox_disabled=!0,e&&e.length&&e.children(".jstree-anchor").children(".jstree-checkbox").addClass("jstree-checkbox-disabled"),this.trigger("disable_checkbox",{node:b})))):!1},this.enable_checkbox=function(b){var c,d,e;if(a.vakata.is_array(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.enable_checkbox(b[c]);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(e=this.get_node(b,!0),void(b.state.checkbox_disabled&&(b.state.checkbox_disabled=!1,e&&e.length&&e.children(".jstree-anchor").children(".jstree-checkbox").removeClass("jstree-checkbox-disabled"),this.trigger("enable_checkbox",{node:b})))):!1},this.activate_node=function(b,c){return a(c.target).hasClass("jstree-checkbox-disabled")?!1:(this.settings.checkbox.tie_selection&&(this.settings.checkbox.whole_node||a(c.target).hasClass("jstree-checkbox"))&&(c.ctrlKey=!0),this.settings.checkbox.tie_selection||!this.settings.checkbox.whole_node&&!a(c.target).hasClass("jstree-checkbox")?d.activate_node.call(this,b,c):this.is_disabled(b)?!1:(this.is_checked(b)?this.uncheck_node(b,c):this.check_node(b,c),void this.trigger("activate_node",{node:this.get_node(b)})))},this._cascade_new_checked_state=function(a,b){var c=this,d=this.settings.checkbox.tie_selection,e=this._model.data[a],f=[],g=[],h,i,j;if(!this.settings.checkbox.cascade_to_disabled&&e.state.disabled||!this.settings.checkbox.cascade_to_hidden&&e.state.hidden)j=this.get_checked_descendants(a),e.state[d?"selected":"checked"]&&j.push(e.id),f=f.concat(j);else{if(e.children)for(h=0,i=e.children.length;i>h;h++){var k=e.children[h];j=c._cascade_new_checked_state(k,b),f=f.concat(j),j.indexOf(k)>-1&&g.push(k)}var l=c.get_node(e,!0),m=g.length>0&&g.length<e.children.length;e.original&&e.original.state&&e.original.state.undetermined&&(e.original.state.undetermined=m),m?(e.state[d?"selected":"checked"]=!1,l.attr("aria-selected",!1).children(".jstree-anchor").removeClass(d?"jstree-clicked":"jstree-checked")):b&&g.length===e.children.length?(e.state[d?"selected":"checked"]=b,f.push(e.id),l.attr("aria-selected",!0).children(".jstree-anchor").addClass(d?"jstree-clicked":"jstree-checked")):(e.state[d?"selected":"checked"]=!1,l.attr("aria-selected",!1).children(".jstree-anchor").removeClass(d?"jstree-clicked":"jstree-checked"))}return f},this.get_checked_descendants=function(b){var c=this,d=c.settings.checkbox.tie_selection,e=c._model.data[b];return a.vakata.array_filter(e.children_d,function(a){return c._model.data[a].state[d?"selected":"checked"]})},this.check_node=function(b,c){if(this.settings.checkbox.tie_selection)return this.select_node(b,!1,!0,c);var d,e,f,g;if(a.vakata.is_array(b)){for(b=b.slice(),e=0,f=b.length;f>e;e++)this.check_node(b[e],c);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(d=this.get_node(b,!0),void(b.state.checked||(b.state.checked=!0,this._data.checkbox.selected.push(b.id),d&&d.length&&d.children(".jstree-anchor").addClass("jstree-checked"),this.trigger("check_node",{node:b,selected:this._data.checkbox.selected,event:c})))):!1},this.uncheck_node=function(b,c){if(this.settings.checkbox.tie_selection)return this.deselect_node(b,!1,c);var d,e,f;if(a.vakata.is_array(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.uncheck_node(b[d],c);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(f=this.get_node(b,!0),void(b.state.checked&&(b.state.checked=!1,this._data.checkbox.selected=a.vakata.array_remove_item(this._data.checkbox.selected,b.id),f.length&&f.children(".jstree-anchor").removeClass("jstree-checked"),this.trigger("uncheck_node",{node:b,selected:this._data.checkbox.selected,event:c})))):!1},this.check_all=function(){if(this.settings.checkbox.tie_selection)return this.select_all();var b=this._data.checkbox.selected.concat([]),c,d;for(this._data.checkbox.selected=this._model.data[a.jstree.root].children_d.concat(),c=0,d=this._data.checkbox.selected.length;d>c;c++)this._model.data[this._data.checkbox.selected[c]]&&(this._model.data[this._data.checkbox.selected[c]].state.checked=!0);this.redraw(!0),this.trigger("check_all",{selected:this._data.checkbox.selected})},this.uncheck_all=function(){if(this.settings.checkbox.tie_selection)return this.deselect_all();var a=this._data.checkbox.selected.concat([]),b,c;for(b=0,c=this._data.checkbox.selected.length;c>b;b++)this._model.data[this._data.checkbox.selected[b]]&&(this._model.data[this._data.checkbox.selected[b]].state.checked=!1);this._data.checkbox.selected=[],this.element.find(".jstree-checked").removeClass("jstree-checked"),this.trigger("uncheck_all",{selected:this._data.checkbox.selected,node:a})},this.is_checked=function(b){return this.settings.checkbox.tie_selection?this.is_selected(b):(b=this.get_node(b),b&&b.id!==a.jstree.root?b.state.checked:!1)},this.get_checked=function(b){return this.settings.checkbox.tie_selection?this.get_selected(b):b?a.map(this._data.checkbox.selected,function(a){return this.get_node(a)}.bind(this)):this._data.checkbox.selected.slice()},this.get_top_checked=function(b){if(this.settings.checkbox.tie_selection)return this.get_top_selected(b);var c=this.get_checked(!0),d={},e,f,g,h;for(e=0,f=c.length;f>e;e++)d[c[e].id]=c[e];for(e=0,f=c.length;f>e;e++)for(g=0,h=c[e].children_d.length;h>g;g++)d[c[e].children_d[g]]&&delete d[c[e].children_d[g]];c=[];for(e in d)d.hasOwnProperty(e)&&c.push(e);return b?a.map(c,function(a){return this.get_node(a)}.bind(this)):c},this.get_bottom_checked=function(b){if(this.settings.checkbox.tie_selection)return this.get_bottom_selected(b);var c=this.get_checked(!0),d=[],e,f;for(e=0,f=c.length;f>e;e++)c[e].children.length||d.push(c[e].id);return b?a.map(d,function(a){return this.get_node(a)}.bind(this)):d},this.load_node=function(b,c){var e,f,g,h,i,j;if(!a.vakata.is_array(b)&&!this.settings.checkbox.tie_selection&&(j=this.get_node(b),j&&j.state.loaded))for(e=0,f=j.children_d.length;f>e;e++)this._model.data[j.children_d[e]].state.checked&&(i=!0,this._data.checkbox.selected=a.vakata.array_remove_item(this._data.checkbox.selected,j.children_d[e]));return d.load_node.apply(this,arguments)},this.get_state=function(){var a=d.get_state.apply(this,arguments);return this.settings.checkbox.tie_selection?a:(a.checkbox=this._data.checkbox.selected.slice(),a)},this.set_state=function(b,c){var e=d.set_state.apply(this,arguments);if(e&&b.checkbox){if(!this.settings.checkbox.tie_selection){this.uncheck_all();var f=this;a.each(b.checkbox,function(a,b){f.check_node(b)})}return delete b.checkbox,this.set_state(b,c),!1}return e},this.refresh=function(a,b){return this.settings.checkbox.tie_selection&&(this._data.checkbox.selected=[]),d.refresh.apply(this,arguments)}},a.jstree.defaults.conditionalselect=function(){return!0},a.jstree.plugins.conditionalselect=function(a,b){this.activate_node=function(a,c){return this.settings.conditionalselect.call(this,this.get_node(a),c)?b.activate_node.call(this,a,c):void 0}},a.jstree.defaults.contextmenu={select_node:!0,show_at_node:!0,items:function(b,c){return{create:{separator_before:!1,separator_after:!0,_disabled:!1,label:"Create",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.create_node(d,{},"last",function(a){try{c.edit(a)}catch(b){setTimeout(function(){c.edit(a)},0)}})}},rename:{separator_before:!1,separator_after:!1,_disabled:!1,label:"Rename",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.edit(d)}},remove:{separator_before:!1,icon:!1,separator_after:!1,_disabled:!1,label:"Delete",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.is_selected(d)?c.delete_node(c.get_selected()):c.delete_node(d)}},ccp:{separator_before:!0,icon:!1,separator_after:!1,label:"Edit",action:!1,submenu:{cut:{separator_before:!1,separator_after:!1,label:"Cut",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.is_selected(d)?c.cut(c.get_top_selected()):c.cut(d)}},copy:{separator_before:!1,icon:!1,separator_after:!1,label:"Copy",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.is_selected(d)?c.copy(c.get_top_selected()):c.copy(d)}},paste:{separator_before:!1,icon:!1,_disabled:function(b){return!a.jstree.reference(b.reference).can_paste()},separator_after:!1,label:"Paste",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.paste(d)}}}}}}},a.jstree.plugins.contextmenu=function(c,d){this.bind=function(){d.bind.call(this);var b=0,c=null,e,f;this.element.on("init.jstree loading.jstree ready.jstree",function(){this.get_container_ul().addClass("jstree-contextmenu")}.bind(this)).on("contextmenu.jstree",".jstree-anchor",function(a,d){"input"!==a.target.tagName.toLowerCase()&&(a.preventDefault(),b=a.ctrlKey?+new Date:0,(d||c)&&(b=+new Date+1e4),c&&clearTimeout(c),this.is_loading(a.currentTarget)||this.show_contextmenu(a.currentTarget,a.pageX,a.pageY,a))}.bind(this)).on("click.jstree",".jstree-anchor",function(c){this._data.contextmenu.visible&&(!b||+new Date-b>250)&&a.vakata.context.hide(),b=0}.bind(this)).on("touchstart.jstree",".jstree-anchor",function(b){b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(e=b.originalEvent.changedTouches[0].clientX,f=b.originalEvent.changedTouches[0].clientY,c=setTimeout(function(){a(b.currentTarget).trigger("contextmenu",!0)},750))}).on("touchmove.vakata.jstree",function(b){c&&b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(Math.abs(e-b.originalEvent.changedTouches[0].clientX)>10||Math.abs(f-b.originalEvent.changedTouches[0].clientY)>10)&&(clearTimeout(c),a.vakata.context.hide())}).on("touchend.vakata.jstree",function(a){c&&clearTimeout(c)}),a(i).on("context_hide.vakata.jstree",function(b,c){this._data.contextmenu.visible=!1,a(c.reference).removeClass("jstree-context")}.bind(this))},this.teardown=function(){this._data.contextmenu.visible&&a.vakata.context.hide(),a(i).off("context_hide.vakata.jstree"),d.teardown.call(this)},this.show_contextmenu=function(c,d,e,f){if(c=this.get_node(c),!c||c.id===a.jstree.root)return!1;var g=this.settings.contextmenu,h=this.get_node(c,!0),i=h.children(".jstree-anchor"),j=!1,k=!1;(g.show_at_node||d===b||e===b)&&(j=i.offset(),d=j.left,e=j.top+this._data.core.li_height),this.settings.contextmenu.select_node&&!this.is_selected(c)&&this.activate_node(c,f),k=g.items,a.vakata.is_function(k)&&(k=k.call(this,c,function(a){this._show_contextmenu(c,d,e,a)}.bind(this))),a.isPlainObject(k)&&this._show_contextmenu(c,d,e,k)},this._show_contextmenu=function(b,c,d,e){
5
var f=this.get_node(b,!0),g=f.children(".jstree-anchor");a(i).one("context_show.vakata.jstree",function(b,c){var d="jstree-contextmenu jstree-"+this.get_theme()+"-contextmenu";a(c.element).addClass(d),g.addClass("jstree-context")}.bind(this)),this._data.contextmenu.visible=!0,a.vakata.context.show(g,{x:c,y:d},e),this.trigger("show_contextmenu",{node:b,x:c,y:d})}},function(a){var b=!1,c={element:!1,reference:!1,position_x:0,position_y:0,items:[],html:"",is_visible:!1};a.vakata.context={settings:{hide_onmouseleave:0,icons:!0},_trigger:function(b){a(i).triggerHandler("context_"+b+".vakata",{reference:c.reference,element:c.element,position:{x:c.position_x,y:c.position_y}})},_execute:function(b){return b=c.items[b],b&&(!b._disabled||a.vakata.is_function(b._disabled)&&!b._disabled({item:b,reference:c.reference,element:c.element}))&&b.action?b.action.call(null,{item:b,reference:c.reference,element:c.element,position:{x:c.position_x,y:c.position_y}}):!1},_parse:function(b,d){if(!b)return!1;d||(c.html="",c.items=[]);var e="",f=!1,g;return d&&(e+="<ul>"),a.each(b,function(b,d){return d?(c.items.push(d),!f&&d.separator_before&&(e+="<li class='vakata-context-separator'><a href='#' "+(a.vakata.context.settings.icons?"":'class="vakata-context-no-icons"')+">&#160;</a></li>"),f=!1,e+="<li class='"+(d._class||"")+(d._disabled===!0||a.vakata.is_function(d._disabled)&&d._disabled({item:d,reference:c.reference,element:c.element})?" vakata-contextmenu-disabled ":"")+"' "+(d.shortcut?" data-shortcut='"+d.shortcut+"' ":"")+">",e+="<a href='#' rel='"+(c.items.length-1)+"' "+(d.title?"title='"+d.title+"'":"")+">",a.vakata.context.settings.icons&&(e+="<i ",d.icon&&(e+=-1!==d.icon.indexOf("/")||-1!==d.icon.indexOf(".")?" style='background:url(\""+d.icon+"\") center center no-repeat' ":" class='"+d.icon+"' "),e+="></i><span class='vakata-contextmenu-sep'>&#160;</span>"),e+=(a.vakata.is_function(d.label)?d.label({item:b,reference:c.reference,element:c.element}):d.label)+(d.shortcut?' <span class="vakata-contextmenu-shortcut vakata-contextmenu-shortcut-'+d.shortcut+'">'+(d.shortcut_label||"")+"</span>":"")+"</a>",d.submenu&&(g=a.vakata.context._parse(d.submenu,!0),g&&(e+=g)),e+="</li>",void(d.separator_after&&(e+="<li class='vakata-context-separator'><a href='#' "+(a.vakata.context.settings.icons?"":'class="vakata-context-no-icons"')+">&#160;</a></li>",f=!0))):!0}),e=e.replace(/<li class\='vakata-context-separator'\><\/li\>$/,""),d&&(e+="</ul>"),d||(c.html=e,a.vakata.context._trigger("parse")),e.length>10?e:!1},_show_submenu:function(c){if(c=a(c),c.length&&c.children("ul").length){var d=c.children("ul"),e=c.offset().left,f=e+c.outerWidth(),g=c.offset().top,h=d.width(),i=d.height(),j=a(window).width()+a(window).scrollLeft(),k=a(window).height()+a(window).scrollTop();b?c[f-(h+10+c.outerWidth())<0?"addClass":"removeClass"]("vakata-context-left"):c[f+h>j&&e>j-f?"addClass":"removeClass"]("vakata-context-right"),g+i+10>k&&d.css("bottom","-1px"),c.hasClass("vakata-context-right")?h>e&&d.css("margin-right",e-h):h>j-f&&d.css("margin-left",j-f-h),d.show()}},show:function(d,e,f){var g,h,j,k,l,m,n,o,p=!0;switch(c.element&&c.element.length&&c.element.width(""),p){case!e&&!d:return!1;case!!e&&!!d:c.reference=d,c.position_x=e.x,c.position_y=e.y;break;case!e&&!!d:c.reference=d,g=d.offset(),c.position_x=g.left+d.outerHeight(),c.position_y=g.top;break;case!!e&&!d:c.position_x=e.x,c.position_y=e.y}d&&!f&&a(d).data("vakata_contextmenu")&&(f=a(d).data("vakata_contextmenu")),a.vakata.context._parse(f)&&c.element.html(c.html),c.items.length&&(c.element.appendTo(i.body),h=c.element,j=c.position_x,k=c.position_y,l=h.width(),m=h.height(),n=a(window).width()+a(window).scrollLeft(),o=a(window).height()+a(window).scrollTop(),b&&(j-=h.outerWidth()-a(d).outerWidth(),j<a(window).scrollLeft()+20&&(j=a(window).scrollLeft()+20)),j+l+20>n&&(j=n-(l+20)),k+m+20>o&&(k=o-(m+20)),c.element.css({left:j,top:k}).show().find("a").first().trigger("focus").parent().addClass("vakata-context-hover"),c.is_visible=!0,a.vakata.context._trigger("show"))},hide:function(){c.is_visible&&(c.element.hide().find("ul").hide().end().find(":focus").trigger("blur").end().detach(),c.is_visible=!1,a.vakata.context._trigger("hide"))}},a(function(){b="rtl"===a(i.body).css("direction");var d=!1;c.element=a("<ul class='vakata-context'></ul>"),c.element.on("mouseenter","li",function(b){b.stopImmediatePropagation(),a.contains(this,b.relatedTarget)||(d&&clearTimeout(d),c.element.find(".vakata-context-hover").removeClass("vakata-context-hover").end(),a(this).siblings().find("ul").hide().end().end().parentsUntil(".vakata-context","li").addBack().addClass("vakata-context-hover"),a.vakata.context._show_submenu(this))}).on("mouseleave","li",function(b){a.contains(this,b.relatedTarget)||a(this).find(".vakata-context-hover").addBack().removeClass("vakata-context-hover")}).on("mouseleave",function(b){a(this).find(".vakata-context-hover").removeClass("vakata-context-hover"),a.vakata.context.settings.hide_onmouseleave&&(d=setTimeout(function(b){return function(){a.vakata.context.hide()}}(this),a.vakata.context.settings.hide_onmouseleave))}).on("click","a",function(b){b.preventDefault(),a(this).trigger("blur").parent().hasClass("vakata-context-disabled")||a.vakata.context._execute(a(this).attr("rel"))===!1||a.vakata.context.hide()}).on("keydown","a",function(b){var d=null;switch(b.which){case 13:case 32:b.type="click",b.preventDefault(),a(b.currentTarget).trigger(b);break;case 37:c.is_visible&&(c.element.find(".vakata-context-hover").last().closest("li").first().find("ul").hide().find(".vakata-context-hover").removeClass("vakata-context-hover").end().end().children("a").trigger("focus"),b.stopImmediatePropagation(),b.preventDefault());break;case 38:c.is_visible&&(d=c.element.find("ul:visible").addBack().last().children(".vakata-context-hover").removeClass("vakata-context-hover").prevAll("li:not(.vakata-context-separator)").first(),d.length||(d=c.element.find("ul:visible").addBack().last().children("li:not(.vakata-context-separator)").last()),d.addClass("vakata-context-hover").children("a").trigger("focus"),b.stopImmediatePropagation(),b.preventDefault());break;case 39:c.is_visible&&(c.element.find(".vakata-context-hover").last().children("ul").show().children("li:not(.vakata-context-separator)").removeClass("vakata-context-hover").first().addClass("vakata-context-hover").children("a").trigger("focus"),b.stopImmediatePropagation(),b.preventDefault());break;case 40:c.is_visible&&(d=c.element.find("ul:visible").addBack().last().children(".vakata-context-hover").removeClass("vakata-context-hover").nextAll("li:not(.vakata-context-separator)").first(),d.length||(d=c.element.find("ul:visible").addBack().last().children("li:not(.vakata-context-separator)").first()),d.addClass("vakata-context-hover").children("a").trigger("focus"),b.stopImmediatePropagation(),b.preventDefault());break;case 27:a.vakata.context.hide(),b.preventDefault()}}).on("keydown",function(a){a.preventDefault();var b=c.element.find(".vakata-contextmenu-shortcut-"+a.which).parent();b.parent().not(".vakata-context-disabled")&&b.trigger("click")}),a(i).on("mousedown.vakata.jstree",function(b){c.is_visible&&c.element[0]!==b.target&&!a.contains(c.element[0],b.target)&&a.vakata.context.hide()}).on("context_show.vakata.jstree",function(a,d){c.element.find("li:has(ul)").children("a").addClass("vakata-context-parent"),b&&c.element.addClass("vakata-context-rtl").css("direction","rtl"),c.element.find("ul").hide().end()})})}(a),a.jstree.defaults.dnd={copy:!0,open_timeout:500,is_draggable:!0,check_while_dragging:!0,always_copy:!1,inside_pos:0,drag_selection:!0,touch:!0,large_drop_target:!1,large_drag_target:!1,use_html5:!1};var m,n;a.jstree.plugins.dnd=function(b,c){this.init=function(a,b){c.init.call(this,a,b),this.settings.dnd.use_html5=this.settings.dnd.use_html5&&"draggable"in i.createElement("span")},this.bind=function(){c.bind.call(this),this.element.on(this.settings.dnd.use_html5?"dragstart.jstree":"mousedown.jstree touchstart.jstree",this.settings.dnd.large_drag_target?".jstree-node":".jstree-anchor",function(b){if(this.settings.dnd.large_drag_target&&a(b.target).closest(".jstree-node")[0]!==b.currentTarget)return!0;if("touchstart"===b.type&&(!this.settings.dnd.touch||"selected"===this.settings.dnd.touch&&!a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").hasClass("jstree-clicked")))return!0;var c=this.get_node(b.target),d=this.is_selected(c)&&this.settings.dnd.drag_selection?this.get_top_selected().length:1,e=d>1?d+" "+this.get_string("nodes"):this.get_text(b.currentTarget);if(this.settings.core.force_text&&(e=a.vakata.html.escape(e)),c&&c.id&&c.id!==a.jstree.root&&(1===b.which||"touchstart"===b.type||"dragstart"===b.type)&&(this.settings.dnd.is_draggable===!0||a.vakata.is_function(this.settings.dnd.is_draggable)&&this.settings.dnd.is_draggable.call(this,d>1?this.get_top_selected(!0):[c],b))){if(m={jstree:!0,origin:this,obj:this.get_node(c,!0),nodes:d>1?this.get_top_selected():[c.id]},n=b.currentTarget,!this.settings.dnd.use_html5)return this.element.trigger("mousedown.jstree"),a.vakata.dnd.start(b,m,'<div id="jstree-dnd" class="jstree-'+this.get_theme()+" jstree-"+this.get_theme()+"-"+this.get_theme_variant()+" "+(this.settings.core.themes.responsive?" jstree-dnd-responsive":"")+'"><i class="jstree-icon jstree-er"></i>'+e+'<ins class="jstree-copy">+</ins></div>');a.vakata.dnd._trigger("start",b,{helper:a(),element:n,data:m})}}.bind(this)),this.settings.dnd.use_html5&&this.element.on("dragover.jstree",function(b){return b.preventDefault(),a.vakata.dnd._trigger("move",b,{helper:a(),element:n,data:m}),!1}).on("drop.jstree",function(b){return b.preventDefault(),a.vakata.dnd._trigger("stop",b,{helper:a(),element:n,data:m}),!1}.bind(this))},this.redraw_node=function(a,b,d,e){if(a=c.redraw_node.apply(this,arguments),a&&this.settings.dnd.use_html5)if(this.settings.dnd.large_drag_target)a.setAttribute("draggable",!0);else{var f,g,h=null;for(f=0,g=a.childNodes.length;g>f;f++)if(a.childNodes[f]&&a.childNodes[f].className&&-1!==a.childNodes[f].className.indexOf("jstree-anchor")){h=a.childNodes[f];break}h&&h.setAttribute("draggable",!0)}return a}},a(function(){var c=!1,d=!1,e=!1,f=!1,g=a('<div id="jstree-marker">&#160;</div>').hide();a(i).on("dragover.vakata.jstree",function(b){n&&a.vakata.dnd._trigger("move",b,{helper:a(),element:n,data:m})}).on("drop.vakata.jstree",function(b){n&&(a.vakata.dnd._trigger("stop",b,{helper:a(),element:n,data:m}),n=null,m=null)}).on("dnd_start.vakata.jstree",function(a,b){c=!1,e=!1,b&&b.data&&b.data.jstree&&g.appendTo(i.body)}).on("dnd_move.vakata.jstree",function(h,i){var j=i.event.target!==e.target;if(f&&(!i.event||"dragover"!==i.event.type||j)&&clearTimeout(f),i&&i.data&&i.data.jstree&&(!i.event.target.id||"jstree-marker"!==i.event.target.id)){e=i.event;var k=a.jstree.reference(i.event.target),l=!1,m=!1,n=!1,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F;if(k&&k._data&&k._data.dnd)if(g.attr("class","jstree-"+k.get_theme()+(k.settings.core.themes.responsive?" jstree-dnd-responsive":"")),D=i.data.origin&&(i.data.origin.settings.dnd.always_copy||i.data.origin.settings.dnd.copy&&(i.event.metaKey||i.event.ctrlKey)),i.helper.children().attr("class","jstree-"+k.get_theme()+" jstree-"+k.get_theme()+"-"+k.get_theme_variant()+" "+(k.settings.core.themes.responsive?" jstree-dnd-responsive":"")).find(".jstree-copy").first()[D?"show":"hide"](),i.event.target!==k.element[0]&&i.event.target!==k.get_container_ul()[0]||0!==k.get_container_ul().children().length){if(l=k.settings.dnd.large_drop_target?a(i.event.target).closest(".jstree-node").children(".jstree-anchor"):a(i.event.target).closest(".jstree-anchor"),l&&l.length&&l.parent().is(".jstree-closed, .jstree-open, .jstree-leaf")&&(m=l.offset(),n=(i.event.pageY!==b?i.event.pageY:i.event.originalEvent.pageY)-m.top,r=l.outerHeight(),u=r/3>n?["b","i","a"]:n>r-r/3?["a","i","b"]:n>r/2?["i","a","b"]:["i","b","a"],a.each(u,function(b,e){switch(e){case"b":p=m.left-6,q=m.top,s=k.get_parent(l),t=l.parent().index(),F="jstree-below";break;case"i":B=k.settings.dnd.inside_pos,C=k.get_node(l.parent()),p=m.left-2,q=m.top+r/2+1,s=C.id,t="first"===B?0:"last"===B?C.children.length:Math.min(B,C.children.length),F="jstree-inside";break;case"a":p=m.left-6,q=m.top+r,s=k.get_parent(l),t=l.parent().index()+1,F="jstree-above"}for(v=!0,w=0,x=i.data.nodes.length;x>w;w++)if(y=i.data.origin&&(i.data.origin.settings.dnd.always_copy||i.data.origin.settings.dnd.copy&&(i.event.metaKey||i.event.ctrlKey))?"copy_node":"move_node",z=t,"move_node"===y&&"a"===e&&i.data.origin&&i.data.origin===k&&s===k.get_parent(i.data.nodes[w])&&(A=k.get_node(s),z>a.inArray(i.data.nodes[w],A.children)&&(z-=1)),v=v&&(k&&k.settings&&k.settings.dnd&&k.settings.dnd.check_while_dragging===!1||k.check(y,i.data.origin&&i.data.origin!==k?i.data.origin.get_node(i.data.nodes[w]):i.data.nodes[w],s,z,{dnd:!0,ref:k.get_node(l.parent()),pos:e,origin:i.data.origin,is_multi:i.data.origin&&i.data.origin!==k,is_foreign:!i.data.origin})),!v){k&&k.last_error&&(d=k.last_error());break}return"i"===e&&l.parent().is(".jstree-closed")&&k.settings.dnd.open_timeout&&(!i.event||"dragover"!==i.event.type||j)&&(f&&clearTimeout(f),f=setTimeout(function(a,b){return function(){a.open_node(b)}}(k,l),k.settings.dnd.open_timeout)),v?(E=k.get_node(s,!0),E.hasClass(".jstree-dnd-parent")||(a(".jstree-dnd-parent").removeClass("jstree-dnd-parent"),E.addClass("jstree-dnd-parent")),c={ins:k,par:s,pos:"i"!==e||"last"!==B||0!==t||k.is_loaded(C)?t:"last"},g.css({left:p+"px",top:q+"px"}).show(),g.removeClass("jstree-above jstree-inside jstree-below").addClass(F),i.helper.find(".jstree-icon").first().removeClass("jstree-er").addClass("jstree-ok"),i.event.originalEvent&&i.event.originalEvent.dataTransfer&&(i.event.originalEvent.dataTransfer.dropEffect=D?"copy":"move"),d={},u=!0,!1):void 0}),u===!0))return}else{for(v=!0,w=0,x=i.data.nodes.length;x>w;w++)if(v=v&&k.check(i.data.origin&&(i.data.origin.settings.dnd.always_copy||i.data.origin.settings.dnd.copy&&(i.event.metaKey||i.event.ctrlKey))?"copy_node":"move_node",i.data.origin&&i.data.origin!==k?i.data.origin.get_node(i.data.nodes[w]):i.data.nodes[w],a.jstree.root,"last",{dnd:!0,ref:k.get_node(a.jstree.root),pos:"i",origin:i.data.origin,is_multi:i.data.origin&&i.data.origin!==k,is_foreign:!i.data.origin}),!v)break;if(v)return c={ins:k,par:a.jstree.root,pos:"last"},g.hide(),i.helper.find(".jstree-icon").first().removeClass("jstree-er").addClass("jstree-ok"),void(i.event.originalEvent&&i.event.originalEvent.dataTransfer&&(i.event.originalEvent.dataTransfer.dropEffect=D?"copy":"move"))}a(".jstree-dnd-parent").removeClass("jstree-dnd-parent"),c=!1,i.helper.find(".jstree-icon").removeClass("jstree-ok").addClass("jstree-er"),i.event.originalEvent&&i.event.originalEvent.dataTransfer,g.hide()}}).on("dnd_scroll.vakata.jstree",function(a,b){b&&b.data&&b.data.jstree&&(g.hide(),c=!1,e=!1,b.helper.find(".jstree-icon").first().removeClass("jstree-ok").addClass("jstree-er"))}).on("dnd_stop.vakata.jstree",function(b,h){if(a(".jstree-dnd-parent").removeClass("jstree-dnd-parent"),f&&clearTimeout(f),h&&h.data&&h.data.jstree){g.hide().detach();var i,j,k=[];if(c){for(i=0,j=h.data.nodes.length;j>i;i++)k[i]=h.data.origin?h.data.origin.get_node(h.data.nodes[i]):h.data.nodes[i];c.ins[h.data.origin&&(h.data.origin.settings.dnd.always_copy||h.data.origin.settings.dnd.copy&&(h.event.metaKey||h.event.ctrlKey))?"copy_node":"move_node"](k,c.par,c.pos,!1,!1,!1,h.data.origin)}else i=a(h.event.target).closest(".jstree"),i.length&&d&&d.error&&"check"===d.error&&(i=i.jstree(!0),i&&i.settings.core.error.call(this,d));e=!1,c=!1}}).on("keyup.jstree keydown.jstree",function(b,h){h=a.vakata.dnd._get(),h&&h.data&&h.data.jstree&&("keyup"===b.type&&27===b.which?(f&&clearTimeout(f),c=!1,d=!1,e=!1,f=!1,g.hide().detach(),a.vakata.dnd._clean()):(h.helper.find(".jstree-copy").first()[h.data.origin&&(h.data.origin.settings.dnd.always_copy||h.data.origin.settings.dnd.copy&&(b.metaKey||b.ctrlKey))?"show":"hide"](),e&&(e.metaKey=b.metaKey,e.ctrlKey=b.ctrlKey,a.vakata.dnd._trigger("move",e))))})}),function(a){a.vakata.html={div:a("<div></div>"),escape:function(b){return a.vakata.html.div.text(b).html()},strip:function(b){return a.vakata.html.div.empty().append(a.parseHTML(b)).text()}};var c={element:!1,target:!1,is_down:!1,is_drag:!1,helper:!1,helper_w:0,data:!1,init_x:0,init_y:0,scroll_l:0,scroll_t:0,scroll_e:!1,scroll_i:!1,is_touch:!1};a.vakata.dnd={settings:{scroll_speed:10,scroll_proximity:20,helper_left:5,helper_top:10,threshold:5,threshold_touch:10},_trigger:function(c,d,e){e===b&&(e=a.vakata.dnd._get()),e.event=d,a(i).triggerHandler("dnd_"+c+".vakata",e)},_get:function(){return{data:c.data,element:c.element,helper:c.helper}},_clean:function(){c.helper&&c.helper.remove(),c.scroll_i&&(clearInterval(c.scroll_i),c.scroll_i=!1),c={element:!1,target:!1,is_down:!1,is_drag:!1,helper:!1,helper_w:0,data:!1,init_x:0,init_y:0,scroll_l:0,scroll_t:0,scroll_e:!1,scroll_i:!1,is_touch:!1},n=null,a(i).off("mousemove.vakata.jstree touchmove.vakata.jstree",a.vakata.dnd.drag),a(i).off("mouseup.vakata.jstree touchend.vakata.jstree",a.vakata.dnd.stop)},_scroll:function(b){if(!c.scroll_e||!c.scroll_l&&!c.scroll_t)return c.scroll_i&&(clearInterval(c.scroll_i),c.scroll_i=!1),!1;if(!c.scroll_i)return c.scroll_i=setInterval(a.vakata.dnd._scroll,100),!1;if(b===!0)return!1;var d=c.scroll_e.scrollTop(),e=c.scroll_e.scrollLeft();c.scroll_e.scrollTop(d+c.scroll_t*a.vakata.dnd.settings.scroll_speed),c.scroll_e.scrollLeft(e+c.scroll_l*a.vakata.dnd.settings.scroll_speed),(d!==c.scroll_e.scrollTop()||e!==c.scroll_e.scrollLeft())&&a.vakata.dnd._trigger("scroll",c.scroll_e)},start:function(b,d,e){"touchstart"===b.type&&b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(b.pageX=b.originalEvent.changedTouches[0].pageX,b.pageY=b.originalEvent.changedTouches[0].pageY,b.target=i.elementFromPoint(b.originalEvent.changedTouches[0].pageX-window.pageXOffset,b.originalEvent.changedTouches[0].pageY-window.pageYOffset)),c.is_drag&&a.vakata.dnd.stop({});try{b.currentTarget.unselectable="on",b.currentTarget.onselectstart=function(){return!1},b.currentTarget.style&&(b.currentTarget.style.touchAction="none",b.currentTarget.style.msTouchAction="none",b.currentTarget.style.MozUserSelect="none")}catch(f){}return c.init_x=b.pageX,c.init_y=b.pageY,c.data=d,c.is_down=!0,c.element=b.currentTarget,c.target=b.target,c.is_touch="touchstart"===b.type,e!==!1&&(c.helper=a("<div id='vakata-dnd'></div>").html(e).css({display:"block",margin:"0",padding:"0",position:"absolute",top:"-2000px",lineHeight:"16px",zIndex:"10000"})),a(i).on("mousemove.vakata.jstree touchmove.vakata.jstree",a.vakata.dnd.drag),a(i).on("mouseup.vakata.jstree touchend.vakata.jstree",a.vakata.dnd.stop),!1},drag:function(b){if("touchmove"===b.type&&b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(b.pageX=b.originalEvent.changedTouches[0].pageX,b.pageY=b.originalEvent.changedTouches[0].pageY,b.target=i.elementFromPoint(b.originalEvent.changedTouches[0].pageX-window.pageXOffset,b.originalEvent.changedTouches[0].pageY-window.pageYOffset)),c.is_down){if(!c.is_drag){if(!(Math.abs(b.pageX-c.init_x)>(c.is_touch?a.vakata.dnd.settings.threshold_touch:a.vakata.dnd.settings.threshold)||Math.abs(b.pageY-c.init_y)>(c.is_touch?a.vakata.dnd.settings.threshold_touch:a.vakata.dnd.settings.threshold)))return;c.helper&&(c.helper.appendTo(i.body),c.helper_w=c.helper.outerWidth()),c.is_drag=!0,a(c.target).one("click.vakata",!1),a.vakata.dnd._trigger("start",b)}var d=!1,e=!1,f=!1,g=!1,h=!1,j=!1,k=!1,l=!1,m=!1,n=!1;return c.scroll_t=0,c.scroll_l=0,c.scroll_e=!1,a(a(b.target).parentsUntil("body").addBack().get().reverse()).filter(function(){return/^auto|scroll$/.test(a(this).css("overflow"))&&(this.scrollHeight>this.offsetHeight||this.scrollWidth>this.offsetWidth)}).each(function(){var d=a(this),e=d.offset();return this.scrollHeight>this.offsetHeight&&(e.top+d.height()-b.pageY<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_t=1),b.pageY-e.top<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_t=-1)),this.scrollWidth>this.offsetWidth&&(e.left+d.width()-b.pageX<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_l=1),b.pageX-e.left<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_l=-1)),c.scroll_t||c.scroll_l?(c.scroll_e=a(this),!1):void 0}),c.scroll_e||(d=a(i),e=a(window),f=d.height(),g=e.height(),h=d.width(),j=e.width(),k=d.scrollTop(),l=d.scrollLeft(),f>g&&b.pageY-k<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_t=-1),f>g&&g-(b.pageY-k)<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_t=1),h>j&&b.pageX-l<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_l=-1),h>j&&j-(b.pageX-l)<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_l=1),(c.scroll_t||c.scroll_l)&&(c.scroll_e=d)),c.scroll_e&&a.vakata.dnd._scroll(!0),c.helper&&(m=parseInt(b.pageY+a.vakata.dnd.settings.helper_top,10),n=parseInt(b.pageX+a.vakata.dnd.settings.helper_left,10),f&&m+25>f&&(m=f-50),h&&n+c.helper_w>h&&(n=h-(c.helper_w+2)),c.helper.css({left:n+"px",top:m+"px"})),a.vakata.dnd._trigger("move",b),!1}},stop:function(b){if("touchend"===b.type&&b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(b.pageX=b.originalEvent.changedTouches[0].pageX,b.pageY=b.originalEvent.changedTouches[0].pageY,b.target=i.elementFromPoint(b.originalEvent.changedTouches[0].pageX-window.pageXOffset,b.originalEvent.changedTouches[0].pageY-window.pageYOffset)),c.is_drag)b.target!==c.target&&a(c.target).off("click.vakata"),a.vakata.dnd._trigger("stop",b);else if("touchend"===b.type&&b.target===c.target){var d=setTimeout(function(){a(b.target).trigger("click")},100);a(b.target).one("click",function(){d&&clearTimeout(d)})}return a.vakata.dnd._clean(),!1}}}(a),a.jstree.defaults.massload=null,a.jstree.plugins.massload=function(b,c){this.init=function(a,b){this._data.massload={},c.init.call(this,a,b)},this._load_nodes=function(b,d,e,f){var g=this.settings.massload,h=[],i=this._model.data,j,k,l;if(!e){for(j=0,k=b.length;k>j;j++)(!i[b[j]]||!i[b[j]].state.loaded&&!i[b[j]].state.failed||f)&&(h.push(b[j]),l=this.get_node(b[j],!0),l&&l.length&&l.addClass("jstree-loading").attr("aria-busy",!0));if(this._data.massload={},h.length){if(a.vakata.is_function(g))return g.call(this,h,function(a){var g,h;if(a)for(g in a)a.hasOwnProperty(g)&&(this._data.massload[g]=a[g]);for(g=0,h=b.length;h>g;g++)l=this.get_node(b[g],!0),l&&l.length&&l.removeClass("jstree-loading").attr("aria-busy",!1);c._load_nodes.call(this,b,d,e,f)}.bind(this));if("object"==typeof g&&g&&g.url)return g=a.extend(!0,{},g),a.vakata.is_function(g.url)&&(g.url=g.url.call(this,h)),a.vakata.is_function(g.data)&&(g.data=g.data.call(this,h)),a.ajax(g).done(function(a,g,h){var i,j;if(a)for(i in a)a.hasOwnProperty(i)&&(this._data.massload[i]=a[i]);for(i=0,j=b.length;j>i;i++)l=this.get_node(b[i],!0),l&&l.length&&l.removeClass("jstree-loading").attr("aria-busy",!1);c._load_nodes.call(this,b,d,e,f)}.bind(this)).fail(function(a){c._load_nodes.call(this,b,d,e,f)}.bind(this))}}return c._load_nodes.call(this,b,d,e,f)},this._load_node=function(b,d){var e=this._data.massload[b.id],f=null,g;return e?(f=this["string"==typeof e?"_append_html_data":"_append_json_data"](b,"string"==typeof e?a(a.parseHTML(e)).filter(function(){return 3!==this.nodeType}):e,function(a){d.call(this,a)}),g=this.get_node(b.id,!0),g&&g.length&&g.removeClass("jstree-loading").attr("aria-busy",!1),delete this._data.massload[b.id],f):c._load_node.call(this,b,d)}},a.jstree.defaults.search={ajax:!1,fuzzy:!1,case_sensitive:!1,show_only_matches:!1,show_only_matches_children:!1,close_opened_onclear:!0,search_leaves_only:!1,search_callback:!1},a.jstree.plugins.search=function(c,d){this.bind=function(){d.bind.call(this),this._data.search.str="",this._data.search.dom=a(),this._data.search.res=[],this._data.search.opn=[],this._data.search.som=!1,this._data.search.smc=!1,this._data.search.hdn=[],this.element.on("search.jstree",function(b,c){if(this._data.search.som&&c.res.length){var d=this._model.data,e,f,g=[],h,i;for(e=0,f=c.res.length;f>e;e++)if(d[c.res[e]]&&!d[c.res[e]].state.hidden&&(g.push(c.res[e]),g=g.concat(d[c.res[e]].parents),this._data.search.smc))for(h=0,i=d[c.res[e]].children_d.length;i>h;h++)d[d[c.res[e]].children_d[h]]&&!d[d[c.res[e]].children_d[h]].state.hidden&&g.push(d[c.res[e]].children_d[h]);g=a.vakata.array_remove_item(a.vakata.array_unique(g),a.jstree.root),this._data.search.hdn=this.hide_all(!0),this.show_node(g,!0),this.redraw(!0)}}.bind(this)).on("clear_search.jstree",function(a,b){this._data.search.som&&b.res.length&&(this.show_node(this._data.search.hdn,!0),this.redraw(!0))}.bind(this))},this.search=function(c,d,e,f,g,h){if(c===!1||""===a.vakata.trim(c.toString()))return this.clear_search();f=this.get_node(f),f=f&&f.id?f.id:null,c=c.toString();var i=this.settings.search,j=i.ajax?i.ajax:!1,k=this._model.data,l=null,m=[],n=[],o,p;if(this._data.search.res.length&&!g&&this.clear_search(),e===b&&(e=i.show_only_matches),h===b&&(h=i.show_only_matches_children),!d&&j!==!1)return a.vakata.is_function(j)?j.call(this,c,function(b){b&&b.d&&(b=b.d),this._load_nodes(a.vakata.is_array(b)?a.vakata.array_unique(b):[],function(){this.search(c,!0,e,f,g,h)})}.bind(this),f):(j=a.extend({},j),j.data||(j.data={}),j.data.str=c,f&&(j.data.inside=f),this._data.search.lastRequest&&this._data.search.lastRequest.abort(),this._data.search.lastRequest=a.ajax(j).fail(function(){this._data.core.last_error={error:"ajax",plugin:"search",id:"search_01",reason:"Could not load search parents",data:JSON.stringify(j)},this.settings.core.error.call(this,this._data.core.last_error)}.bind(this)).done(function(b){b&&b.d&&(b=b.d),this._load_nodes(a.vakata.is_array(b)?a.vakata.array_unique(b):[],function(){this.search(c,!0,e,f,g,h)})}.bind(this)),this._data.search.lastRequest);if(g||(this._data.search.str=c,this._data.search.dom=a(),this._data.search.res=[],this._data.search.opn=[],this._data.search.som=e,this._data.search.smc=h),l=new a.vakata.search(c,!0,{caseSensitive:i.case_sensitive,fuzzy:i.fuzzy}),a.each(k[f?f:a.jstree.root].children_d,function(a,b){var d=k[b];d.text&&!d.state.hidden&&(!i.search_leaves_only||d.state.loaded&&0===d.children.length)&&(i.search_callback&&i.search_callback.call(this,c,d)||!i.search_callback&&l.search(d.text).isMatch)&&(m.push(b),n=n.concat(d.parents))}),m.length){for(n=a.vakata.array_unique(n),o=0,p=n.length;p>o;o++)n[o]!==a.jstree.root&&k[n[o]]&&this.open_node(n[o],null,0)===!0&&this._data.search.opn.push(n[o]);g?(this._data.search.dom=this._data.search.dom.add(a(this.element[0].querySelectorAll("#"+a.map(m,function(b){return-1!=="0123456789".indexOf(b[0])?"\\3"+b[0]+" "+b.substr(1).replace(a.jstree.idregex,"\\$&"):b.replace(a.jstree.idregex,"\\$&")}).join(", #")))),this._data.search.res=a.vakata.array_unique(this._data.search.res.concat(m))):(this._data.search.dom=a(this.element[0].querySelectorAll("#"+a.map(m,function(b){return-1!=="0123456789".indexOf(b[0])?"\\3"+b[0]+" "+b.substr(1).replace(a.jstree.idregex,"\\$&"):b.replace(a.jstree.idregex,"\\$&")}).join(", #"))),this._data.search.res=m),this._data.search.dom.children(".jstree-anchor").addClass("jstree-search")}this.trigger("search",{nodes:this._data.search.dom,str:c,res:this._data.search.res,show_only_matches:e})},this.clear_search=function(){this.settings.search.close_opened_onclear&&this.close_node(this._data.search.opn,0),this.trigger("clear_search",{nodes:this._data.search.dom,str:this._data.search.str,res:this._data.search.res}),this._data.search.res.length&&(this._data.search.dom=a(this.element[0].querySelectorAll("#"+a.map(this._data.search.res,function(b){return-1!=="0123456789".indexOf(b[0])?"\\3"+b[0]+" "+b.substr(1).replace(a.jstree.idregex,"\\$&"):b.replace(a.jstree.idregex,"\\$&")}).join(", #"))),this._data.search.dom.children(".jstree-anchor").removeClass("jstree-search")),this._data.search.str="",this._data.search.res=[],this._data.search.opn=[],this._data.search.dom=a()},this.redraw_node=function(b,c,e,f){if(b=d.redraw_node.apply(this,arguments),b&&-1!==a.inArray(b.id,this._data.search.res)){var g,h,i=null;for(g=0,h=b.childNodes.length;h>g;g++)if(b.childNodes[g]&&b.childNodes[g].className&&-1!==b.childNodes[g].className.indexOf("jstree-anchor")){i=b.childNodes[g];break}i&&(i.className+=" jstree-search")}return b}},function(a){a.vakata.search=function(b,c,d){d=d||{},d=a.extend({},a.vakata.search.defaults,d),d.fuzzy!==!1&&(d.fuzzy=!0),b=d.caseSensitive?b:b.toLowerCase();var e=d.location,f=d.distance,g=d.threshold,h=b.length,i,j,k,l;return h>32&&(d.fuzzy=!1),d.fuzzy&&(i=1<<h-1,j=function(){var a={},c=0;for(c=0;h>c;c++)a[b.charAt(c)]=0;for(c=0;h>c;c++)a[b.charAt(c)]|=1<<h-c-1;return a}(),k=function(a,b){var c=a/h,d=Math.abs(e-b);return f?c+d/f:d?1:c}),l=function(a){if(a=d.caseSensitive?a:a.toLowerCase(),b===a||-1!==a.indexOf(b))return{isMatch:!0,score:0};if(!d.fuzzy)return{isMatch:!1,score:1};var c,f,l=a.length,m=g,n=a.indexOf(b,e),o,p,q=h+l,r,s,t,u,v,w=1,x=[];for(-1!==n&&(m=Math.min(k(0,n),m),n=a.lastIndexOf(b,e+h),-1!==n&&(m=Math.min(k(0,n),m))),n=-1,c=0;h>c;c++){o=0,p=q;while(p>o)k(c,e+p)<=m?o=p:q=p,p=Math.floor((q-o)/2+o);for(q=p,s=Math.max(1,e-p+1),t=Math.min(e+p,l)+h,u=new Array(t+2),u[t+1]=(1<<c)-1,f=t;f>=s;f--)if(v=j[a.charAt(f-1)],0===c?u[f]=(u[f+1]<<1|1)&v:u[f]=(u[f+1]<<1|1)&v|((r[f+1]|r[f])<<1|1)|r[f+1],u[f]&i&&(w=k(c,f-1),m>=w)){if(m=w,n=f-1,x.push(n),!(n>e))break;s=Math.max(1,2*e-n)}if(k(c+1,e)>m)break;r=u}return{isMatch:n>=0,score:w}},c===!0?{search:l}:l(c)},a.vakata.search.defaults={location:0,distance:100,threshold:.6,fuzzy:!1,caseSensitive:!1}}(a),a.jstree.defaults.sort=function(a,b){return this.get_text(a)>this.get_text(b)?1:-1},a.jstree.plugins.sort=function(a,b){this.bind=function(){b.bind.call(this),this.element.on("model.jstree",function(a,b){this.sort(b.parent,!0)}.bind(this)).on("rename_node.jstree create_node.jstree",function(a,b){this.sort(b.parent||b.node.parent,!1),this.redraw_node(b.parent||b.node.parent,!0)}.bind(this)).on("move_node.jstree copy_node.jstree",function(a,b){this.sort(b.parent,!1),this.redraw_node(b.parent,!0)}.bind(this))},this.sort=function(a,b){var c,d;if(a=this.get_node(a),a&&a.children&&a.children.length&&(a.children.sort(this.settings.sort.bind(this)),b))for(c=0,d=a.children_d.length;d>c;c++)this.sort(a.children_d[c],!1)}};var o=!1;a.jstree.defaults.state={key:"jstree",events:"changed.jstree open_node.jstree close_node.jstree check_node.jstree uncheck_node.jstree",ttl:!1,filter:!1,preserve_loaded:!1},a.jstree.plugins.state=function(b,c){this.bind=function(){c.bind.call(this);var a=function(){this.element.on(this.settings.state.events,function(){o&&clearTimeout(o),o=setTimeout(function(){this.save_state()}.bind(this),100)}.bind(this)),this.trigger("state_ready")}.bind(this);this.element.on("ready.jstree",function(b,c){this.element.one("restore_state.jstree",a),this.restore_state()||a()}.bind(this))},this.save_state=function(){var b=this.get_state();this.settings.state.preserve_loaded||delete b.core.loaded;var c={state:b,ttl:this.settings.state.ttl,sec:+new Date};a.vakata.storage.set(this.settings.state.key,JSON.stringify(c))},this.restore_state=function(){var b=a.vakata.storage.get(this.settings.state.key);if(b)try{b=JSON.parse(b)}catch(c){return!1}return b&&b.ttl&&b.sec&&+new Date-b.sec>b.ttl?!1:(b&&b.state&&(b=b.state),b&&a.vakata.is_function(this.settings.state.filter)&&(b=this.settings.state.filter.call(this,b)),b?(this.settings.state.preserve_loaded||delete b.core.loaded,this.element.one("set_state.jstree",function(c,d){d.instance.trigger("restore_state",{state:a.extend(!0,{},b)})}),this.set_state(b),!0):!1)},this.clear_state=function(){return a.vakata.storage.del(this.settings.state.key)}},function(a,b){a.vakata.storage={set:function(a,b){return window.localStorage.setItem(a,b)},get:function(a){return window.localStorage.getItem(a)},del:function(a){return window.localStorage.removeItem(a)}}}(a),a.jstree.defaults.types={
6
"default":{}},a.jstree.defaults.types[a.jstree.root]={},a.jstree.plugins.types=function(c,d){this.init=function(c,e){var f,g;if(e&&e.types&&e.types["default"])for(f in e.types)if("default"!==f&&f!==a.jstree.root&&e.types.hasOwnProperty(f))for(g in e.types["default"])e.types["default"].hasOwnProperty(g)&&e.types[f][g]===b&&(e.types[f][g]=e.types["default"][g]);d.init.call(this,c,e),this._model.data[a.jstree.root].type=a.jstree.root},this.refresh=function(b,c){d.refresh.call(this,b,c),this._model.data[a.jstree.root].type=a.jstree.root},this.bind=function(){this.element.on("model.jstree",function(c,d){var e=this._model.data,f=d.nodes,g=this.settings.types,h,i,j="default",k;for(h=0,i=f.length;i>h;h++){if(j="default",e[f[h]].original&&e[f[h]].original.type&&g[e[f[h]].original.type]&&(j=e[f[h]].original.type),e[f[h]].data&&e[f[h]].data.jstree&&e[f[h]].data.jstree.type&&g[e[f[h]].data.jstree.type]&&(j=e[f[h]].data.jstree.type),e[f[h]].type=j,e[f[h]].icon===!0&&g[j].icon!==b&&(e[f[h]].icon=g[j].icon),g[j].li_attr!==b&&"object"==typeof g[j].li_attr)for(k in g[j].li_attr)if(g[j].li_attr.hasOwnProperty(k)){if("id"===k)continue;e[f[h]].li_attr[k]===b?e[f[h]].li_attr[k]=g[j].li_attr[k]:"class"===k&&(e[f[h]].li_attr["class"]=g[j].li_attr["class"]+" "+e[f[h]].li_attr["class"])}if(g[j].a_attr!==b&&"object"==typeof g[j].a_attr)for(k in g[j].a_attr)if(g[j].a_attr.hasOwnProperty(k)){if("id"===k)continue;e[f[h]].a_attr[k]===b?e[f[h]].a_attr[k]=g[j].a_attr[k]:"href"===k&&"#"===e[f[h]].a_attr[k]?e[f[h]].a_attr.href=g[j].a_attr.href:"class"===k&&(e[f[h]].a_attr["class"]=g[j].a_attr["class"]+" "+e[f[h]].a_attr["class"])}}e[a.jstree.root].type=a.jstree.root}.bind(this)),d.bind.call(this)},this.get_json=function(b,c,e){var f,g,h=this._model.data,i=c?a.extend(!0,{},c,{no_id:!1}):{},j=d.get_json.call(this,b,i,e);if(j===!1)return!1;if(a.vakata.is_array(j))for(f=0,g=j.length;g>f;f++)j[f].type=j[f].id&&h[j[f].id]&&h[j[f].id].type?h[j[f].id].type:"default",c&&c.no_id&&(delete j[f].id,j[f].li_attr&&j[f].li_attr.id&&delete j[f].li_attr.id,j[f].a_attr&&j[f].a_attr.id&&delete j[f].a_attr.id);else j.type=j.id&&h[j.id]&&h[j.id].type?h[j.id].type:"default",c&&c.no_id&&(j=this._delete_ids(j));return j},this._delete_ids=function(b){if(a.vakata.is_array(b)){for(var c=0,d=b.length;d>c;c++)b[c]=this._delete_ids(b[c]);return b}return delete b.id,b.li_attr&&b.li_attr.id&&delete b.li_attr.id,b.a_attr&&b.a_attr.id&&delete b.a_attr.id,b.children&&a.vakata.is_array(b.children)&&(b.children=this._delete_ids(b.children)),b},this.check=function(c,e,f,g,h){if(d.check.call(this,c,e,f,g,h)===!1)return!1;e=e&&e.id?e:this.get_node(e),f=f&&f.id?f:this.get_node(f);var i=e&&e.id?h&&h.origin?h.origin:a.jstree.reference(e.id):null,j,k,l,m;switch(i=i&&i._model&&i._model.data?i._model.data:null,c){case"create_node":case"move_node":case"copy_node":if("move_node"!==c||-1===a.inArray(e.id,f.children)){if(j=this.get_rules(f),j.max_children!==b&&-1!==j.max_children&&j.max_children===f.children.length)return this._data.core.last_error={error:"check",plugin:"types",id:"types_01",reason:"max_children prevents function: "+c,data:JSON.stringify({chk:c,pos:g,obj:e&&e.id?e.id:!1,par:f&&f.id?f.id:!1})},!1;if(j.valid_children!==b&&-1!==j.valid_children&&-1===a.inArray(e.type||"default",j.valid_children))return this._data.core.last_error={error:"check",plugin:"types",id:"types_02",reason:"valid_children prevents function: "+c,data:JSON.stringify({chk:c,pos:g,obj:e&&e.id?e.id:!1,par:f&&f.id?f.id:!1})},!1;if(i&&e.children_d&&e.parents){for(k=0,l=0,m=e.children_d.length;m>l;l++)k=Math.max(k,i[e.children_d[l]].parents.length);k=k-e.parents.length+1}(0>=k||k===b)&&(k=1);do{if(j.max_depth!==b&&-1!==j.max_depth&&j.max_depth<k)return this._data.core.last_error={error:"check",plugin:"types",id:"types_03",reason:"max_depth prevents function: "+c,data:JSON.stringify({chk:c,pos:g,obj:e&&e.id?e.id:!1,par:f&&f.id?f.id:!1})},!1;f=this.get_node(f.parent),j=this.get_rules(f),k++}while(f)}}return!0},this.get_rules=function(a){if(a=this.get_node(a),!a)return!1;var c=this.get_type(a,!0);return c.max_depth===b&&(c.max_depth=-1),c.max_children===b&&(c.max_children=-1),c.valid_children===b&&(c.valid_children=-1),c},this.get_type=function(b,c){return b=this.get_node(b),b?c?a.extend({type:b.type},this.settings.types[b.type]):b.type:!1},this.set_type=function(c,d){var e=this._model.data,f,g,h,i,j,k,l,m;if(a.vakata.is_array(c)){for(c=c.slice(),g=0,h=c.length;h>g;g++)this.set_type(c[g],d);return!0}if(f=this.settings.types,c=this.get_node(c),!f[d]||!c)return!1;if(l=this.get_node(c,!0),l&&l.length&&(m=l.children(".jstree-anchor")),i=c.type,j=this.get_icon(c),c.type=d,(j===!0||!f[i]||f[i].icon!==b&&j===f[i].icon)&&this.set_icon(c,f[d].icon!==b?f[d].icon:!0),f[i]&&f[i].li_attr!==b&&"object"==typeof f[i].li_attr)for(k in f[i].li_attr)if(f[i].li_attr.hasOwnProperty(k)){if("id"===k)continue;"class"===k?(e[c.id].li_attr["class"]=(e[c.id].li_attr["class"]||"").replace(f[i].li_attr[k],""),l&&l.removeClass(f[i].li_attr[k])):e[c.id].li_attr[k]===f[i].li_attr[k]&&(e[c.id].li_attr[k]=null,l&&l.removeAttr(k))}if(f[i]&&f[i].a_attr!==b&&"object"==typeof f[i].a_attr)for(k in f[i].a_attr)if(f[i].a_attr.hasOwnProperty(k)){if("id"===k)continue;"class"===k?(e[c.id].a_attr["class"]=(e[c.id].a_attr["class"]||"").replace(f[i].a_attr[k],""),m&&m.removeClass(f[i].a_attr[k])):e[c.id].a_attr[k]===f[i].a_attr[k]&&("href"===k?(e[c.id].a_attr[k]="#",m&&m.attr("href","#")):(delete e[c.id].a_attr[k],m&&m.removeAttr(k)))}if(f[d].li_attr!==b&&"object"==typeof f[d].li_attr)for(k in f[d].li_attr)if(f[d].li_attr.hasOwnProperty(k)){if("id"===k)continue;e[c.id].li_attr[k]===b?(e[c.id].li_attr[k]=f[d].li_attr[k],l&&("class"===k?l.addClass(f[d].li_attr[k]):l.attr(k,f[d].li_attr[k]))):"class"===k&&(e[c.id].li_attr["class"]=f[d].li_attr[k]+" "+e[c.id].li_attr["class"],l&&l.addClass(f[d].li_attr[k]))}if(f[d].a_attr!==b&&"object"==typeof f[d].a_attr)for(k in f[d].a_attr)if(f[d].a_attr.hasOwnProperty(k)){if("id"===k)continue;e[c.id].a_attr[k]===b?(e[c.id].a_attr[k]=f[d].a_attr[k],m&&("class"===k?m.addClass(f[d].a_attr[k]):m.attr(k,f[d].a_attr[k]))):"href"===k&&"#"===e[c.id].a_attr[k]?(e[c.id].a_attr.href=f[d].a_attr.href,m&&m.attr("href",f[d].a_attr.href)):"class"===k&&(e[c.id].a_attr["class"]=f[d].a_attr["class"]+" "+e[c.id].a_attr["class"],m&&m.addClass(f[d].a_attr[k]))}return!0}},a.jstree.defaults.unique={case_sensitive:!1,trim_whitespace:!1,duplicate:function(a,b){return a+" ("+b+")"}},a.jstree.plugins.unique=function(c,d){this.check=function(b,c,e,f,g){if(d.check.call(this,b,c,e,f,g)===!1)return!1;if(c=c&&c.id?c:this.get_node(c),e=e&&e.id?e:this.get_node(e),!e||!e.children)return!0;var h="rename_node"===b?f:c.text,i=[],j=this.settings.unique.case_sensitive,k=this.settings.unique.trim_whitespace,l=this._model.data,m,n,o;for(m=0,n=e.children.length;n>m;m++)o=l[e.children[m]].text,j||(o=o.toLowerCase()),k&&(o=o.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")),i.push(o);switch(j||(h=h.toLowerCase()),k&&(h=h.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")),b){case"delete_node":return!0;case"rename_node":return o=c.text||"",j||(o=o.toLowerCase()),k&&(o=o.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")),m=-1===a.inArray(h,i)||c.text&&o===h,m||(this._data.core.last_error={error:"check",plugin:"unique",id:"unique_01",reason:"Child with name "+h+" already exists. Preventing: "+b,data:JSON.stringify({chk:b,pos:f,obj:c&&c.id?c.id:!1,par:e&&e.id?e.id:!1})}),m;case"create_node":return m=-1===a.inArray(h,i),m||(this._data.core.last_error={error:"check",plugin:"unique",id:"unique_04",reason:"Child with name "+h+" already exists. Preventing: "+b,data:JSON.stringify({chk:b,pos:f,obj:c&&c.id?c.id:!1,par:e&&e.id?e.id:!1})}),m;case"copy_node":return m=-1===a.inArray(h,i),m||(this._data.core.last_error={error:"check",plugin:"unique",id:"unique_02",reason:"Child with name "+h+" already exists. Preventing: "+b,data:JSON.stringify({chk:b,pos:f,obj:c&&c.id?c.id:!1,par:e&&e.id?e.id:!1})}),m;case"move_node":return m=c.parent===e.id&&(!g||!g.is_multi)||-1===a.inArray(h,i),m||(this._data.core.last_error={error:"check",plugin:"unique",id:"unique_03",reason:"Child with name "+h+" already exists. Preventing: "+b,data:JSON.stringify({chk:b,pos:f,obj:c&&c.id?c.id:!1,par:e&&e.id?e.id:!1})}),m}return!0},this.create_node=function(c,e,f,g,h){if(!e||e.text===b){if(null===c&&(c=a.jstree.root),c=this.get_node(c),!c)return d.create_node.call(this,c,e,f,g,h);if(f=f===b?"last":f,!f.toString().match(/^(before|after)$/)&&!h&&!this.is_loaded(c))return d.create_node.call(this,c,e,f,g,h);e||(e={});var i,j,k,l,m,n=this._model.data,o=this.settings.unique.case_sensitive,p=this.settings.unique.trim_whitespace,q=this.settings.unique.duplicate,r;for(j=i=this.get_string("New node"),k=[],l=0,m=c.children.length;m>l;l++)r=n[c.children[l]].text,o||(r=r.toLowerCase()),p&&(r=r.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")),k.push(r);l=1,r=j,o||(r=r.toLowerCase()),p&&(r=r.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""));while(-1!==a.inArray(r,k))j=q.call(this,i,++l).toString(),r=j,o||(r=r.toLowerCase()),p&&(r=r.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""));e.text=j}return d.create_node.call(this,c,e,f,g,h)}};var p=i.createElement("DIV");if(p.setAttribute("unselectable","on"),p.setAttribute("role","presentation"),p.className="jstree-wholerow",p.innerHTML="&#160;",a.jstree.plugins.wholerow=function(b,c){this.bind=function(){c.bind.call(this),this.element.on("ready.jstree set_state.jstree",function(){this.hide_dots()}.bind(this)).on("init.jstree loading.jstree ready.jstree",function(){this.get_container_ul().addClass("jstree-wholerow-ul")}.bind(this)).on("deselect_all.jstree",function(a,b){this.element.find(".jstree-wholerow-clicked").removeClass("jstree-wholerow-clicked")}.bind(this)).on("changed.jstree",function(a,b){this.element.find(".jstree-wholerow-clicked").removeClass("jstree-wholerow-clicked");var c=!1,d,e;for(d=0,e=b.selected.length;e>d;d++)c=this.get_node(b.selected[d],!0),c&&c.length&&c.children(".jstree-wholerow").addClass("jstree-wholerow-clicked")}.bind(this)).on("open_node.jstree",function(a,b){this.get_node(b.node,!0).find(".jstree-clicked").parent().children(".jstree-wholerow").addClass("jstree-wholerow-clicked")}.bind(this)).on("hover_node.jstree dehover_node.jstree",function(a,b){"hover_node"===a.type&&this.is_disabled(b.node)||this.get_node(b.node,!0).children(".jstree-wholerow")["hover_node"===a.type?"addClass":"removeClass"]("jstree-wholerow-hovered")}.bind(this)).on("contextmenu.jstree",".jstree-wholerow",function(b){if(this._data.contextmenu){b.preventDefault();var c=a.Event("contextmenu",{metaKey:b.metaKey,ctrlKey:b.ctrlKey,altKey:b.altKey,shiftKey:b.shiftKey,pageX:b.pageX,pageY:b.pageY});a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").first().trigger(c)}}.bind(this)).on("click.jstree",".jstree-wholerow",function(b){b.stopImmediatePropagation();var c=a.Event("click",{metaKey:b.metaKey,ctrlKey:b.ctrlKey,altKey:b.altKey,shiftKey:b.shiftKey});a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").first().trigger(c).trigger("focus")}).on("dblclick.jstree",".jstree-wholerow",function(b){b.stopImmediatePropagation();var c=a.Event("dblclick",{metaKey:b.metaKey,ctrlKey:b.ctrlKey,altKey:b.altKey,shiftKey:b.shiftKey});a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").first().trigger(c).trigger("focus")}).on("click.jstree",".jstree-leaf > .jstree-ocl",function(b){b.stopImmediatePropagation();var c=a.Event("click",{metaKey:b.metaKey,ctrlKey:b.ctrlKey,altKey:b.altKey,shiftKey:b.shiftKey});a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").first().trigger(c).trigger("focus")}.bind(this)).on("mouseover.jstree",".jstree-wholerow, .jstree-icon",function(a){return a.stopImmediatePropagation(),this.is_disabled(a.currentTarget)||this.hover_node(a.currentTarget),!1}.bind(this)).on("mouseleave.jstree",".jstree-node",function(a){this.dehover_node(a.currentTarget)}.bind(this))},this.teardown=function(){this.settings.wholerow&&this.element.find(".jstree-wholerow").remove(),c.teardown.call(this)},this.redraw_node=function(b,d,e,f){if(b=c.redraw_node.apply(this,arguments)){var g=p.cloneNode(!0);-1!==a.inArray(b.id,this._data.core.selected)&&(g.className+=" jstree-wholerow-clicked"),this._data.core.focused&&this._data.core.focused===b.id&&(g.className+=" jstree-wholerow-hovered"),b.insertBefore(g,b.childNodes[0])}return b}},window.customElements&&Object&&Object.create){var q=Object.create(HTMLElement.prototype);q.createdCallback=function(){var b={core:{},plugins:[]},c;for(c in a.jstree.plugins)a.jstree.plugins.hasOwnProperty(c)&&this.attributes[c]&&(b.plugins.push(c),this.getAttribute(c)&&JSON.parse(this.getAttribute(c))&&(b[c]=JSON.parse(this.getAttribute(c))));for(c in a.jstree.defaults.core)a.jstree.defaults.core.hasOwnProperty(c)&&this.attributes[c]&&(b.core[c]=JSON.parse(this.getAttribute(c))||this.getAttribute(c));a(this).jstree(b)};try{window.customElements.define("vakata-jstree",function(){},{prototype:q})}catch(r){}}}});
(-)a/koha-tmpl/intranet-tmpl/lib/jquery/plugins/jstree/themes/default/style.css (+1106 lines)
Line 0 Link Here
1
/* jsTree default theme */
2
.jstree-node,
3
.jstree-children,
4
.jstree-container-ul {
5
  display: block;
6
  margin: 0;
7
  padding: 0;
8
  list-style-type: none;
9
  list-style-image: none;
10
}
11
.jstree-node {
12
  white-space: nowrap;
13
}
14
.jstree-anchor {
15
  display: inline-block;
16
  color: black;
17
  white-space: nowrap;
18
  padding: 0 4px 0 1px;
19
  margin: 0;
20
  vertical-align: top;
21
}
22
.jstree-anchor:focus {
23
  outline: 0;
24
}
25
.jstree-anchor,
26
.jstree-anchor:link,
27
.jstree-anchor:visited,
28
.jstree-anchor:hover,
29
.jstree-anchor:active {
30
  text-decoration: none;
31
  color: inherit;
32
}
33
.jstree-icon {
34
  display: inline-block;
35
  text-decoration: none;
36
  margin: 0;
37
  padding: 0;
38
  vertical-align: top;
39
  text-align: center;
40
}
41
.jstree-icon:empty {
42
  display: inline-block;
43
  text-decoration: none;
44
  margin: 0;
45
  padding: 0;
46
  vertical-align: top;
47
  text-align: center;
48
}
49
.jstree-ocl {
50
  cursor: pointer;
51
}
52
.jstree-leaf > .jstree-ocl {
53
  cursor: default;
54
}
55
.jstree .jstree-open > .jstree-children {
56
  display: block;
57
}
58
.jstree .jstree-closed > .jstree-children,
59
.jstree .jstree-leaf > .jstree-children {
60
  display: none;
61
}
62
.jstree-anchor > .jstree-themeicon {
63
  margin-right: 2px;
64
}
65
.jstree-no-icons .jstree-themeicon,
66
.jstree-anchor > .jstree-themeicon-hidden {
67
  display: none;
68
}
69
.jstree-hidden,
70
.jstree-node.jstree-hidden {
71
  display: none;
72
}
73
.jstree-rtl .jstree-anchor {
74
  padding: 0 1px 0 4px;
75
}
76
.jstree-rtl .jstree-anchor > .jstree-themeicon {
77
  margin-left: 2px;
78
  margin-right: 0;
79
}
80
.jstree-rtl .jstree-node {
81
  margin-left: 0;
82
}
83
.jstree-rtl .jstree-container-ul > .jstree-node {
84
  margin-right: 0;
85
}
86
.jstree-wholerow-ul {
87
  position: relative;
88
  display: inline-block;
89
  min-width: 100%;
90
}
91
.jstree-wholerow-ul .jstree-leaf > .jstree-ocl {
92
  cursor: pointer;
93
}
94
.jstree-wholerow-ul .jstree-anchor,
95
.jstree-wholerow-ul .jstree-icon {
96
  position: relative;
97
}
98
.jstree-wholerow-ul .jstree-wholerow {
99
  width: 100%;
100
  cursor: pointer;
101
  position: absolute;
102
  left: 0;
103
  -webkit-user-select: none;
104
  -moz-user-select: none;
105
  -ms-user-select: none;
106
  user-select: none;
107
}
108
.jstree-contextmenu .jstree-anchor {
109
  -webkit-user-select: none;
110
  /* disable selection/Copy of UIWebView */
111
  -webkit-touch-callout: none;
112
  /* disable the IOS popup when long-press on a link */
113
  user-select: none;
114
}
115
.vakata-context {
116
  display: none;
117
}
118
.vakata-context,
119
.vakata-context ul {
120
  margin: 0;
121
  padding: 2px;
122
  position: absolute;
123
  background: #f5f5f5;
124
  border: 1px solid #979797;
125
  box-shadow: 2px 2px 2px #999999;
126
}
127
.vakata-context ul {
128
  list-style: none;
129
  left: 100%;
130
  margin-top: -2.7em;
131
  margin-left: -4px;
132
}
133
.vakata-context .vakata-context-right ul {
134
  left: auto;
135
  right: 100%;
136
  margin-left: auto;
137
  margin-right: -4px;
138
}
139
.vakata-context li {
140
  list-style: none;
141
}
142
.vakata-context li > a {
143
  display: block;
144
  padding: 0 2em 0 2em;
145
  text-decoration: none;
146
  width: auto;
147
  color: black;
148
  white-space: nowrap;
149
  line-height: 2.4em;
150
  text-shadow: 1px 1px 0 white;
151
  border-radius: 1px;
152
}
153
.vakata-context li > a:hover {
154
  position: relative;
155
  background-color: #e8eff7;
156
  box-shadow: 0 0 2px #0a6aa1;
157
}
158
.vakata-context li > a.vakata-context-parent {
159
  background-image: url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAIORI4JlrqN1oMSnmmZDQUAOw==");
160
  background-position: right center;
161
  background-repeat: no-repeat;
162
}
163
.vakata-context li > a:focus {
164
  outline: 0;
165
}
166
.vakata-context .vakata-context-no-icons {
167
  margin-left: 0;
168
}
169
.vakata-context .vakata-context-hover > a {
170
  position: relative;
171
  background-color: #e8eff7;
172
  box-shadow: 0 0 2px #0a6aa1;
173
}
174
.vakata-context .vakata-context-separator > a,
175
.vakata-context .vakata-context-separator > a:hover {
176
  background: white;
177
  border: 0;
178
  border-top: 1px solid #e2e3e3;
179
  height: 1px;
180
  min-height: 1px;
181
  max-height: 1px;
182
  padding: 0;
183
  margin: 0 0 0 2.4em;
184
  border-left: 1px solid #e0e0e0;
185
  text-shadow: 0 0 0 transparent;
186
  box-shadow: 0 0 0 transparent;
187
  border-radius: 0;
188
}
189
.vakata-context .vakata-contextmenu-disabled a,
190
.vakata-context .vakata-contextmenu-disabled a:hover {
191
  color: silver;
192
  background-color: transparent;
193
  border: 0;
194
  box-shadow: 0 0 0;
195
}
196
.vakata-context .vakata-contextmenu-disabled > a > i {
197
  filter: grayscale(100%);
198
}
199
.vakata-context li > a > i {
200
  text-decoration: none;
201
  display: inline-block;
202
  width: 2.4em;
203
  height: 2.4em;
204
  background: transparent;
205
  margin: 0 0 0 -2em;
206
  vertical-align: top;
207
  text-align: center;
208
  line-height: 2.4em;
209
}
210
.vakata-context li > a > i:empty {
211
  width: 2.4em;
212
  line-height: 2.4em;
213
}
214
.vakata-context li > a .vakata-contextmenu-sep {
215
  display: inline-block;
216
  width: 1px;
217
  height: 2.4em;
218
  background: white;
219
  margin: 0 0.5em 0 0;
220
  border-left: 1px solid #e2e3e3;
221
}
222
.vakata-context .vakata-contextmenu-shortcut {
223
  font-size: 0.8em;
224
  color: silver;
225
  opacity: 0.5;
226
  display: none;
227
}
228
.vakata-context-rtl ul {
229
  left: auto;
230
  right: 100%;
231
  margin-left: auto;
232
  margin-right: -4px;
233
}
234
.vakata-context-rtl li > a.vakata-context-parent {
235
  background-image: url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAINjI+AC7rWHIsPtmoxLAA7");
236
  background-position: left center;
237
  background-repeat: no-repeat;
238
}
239
.vakata-context-rtl .vakata-context-separator > a {
240
  margin: 0 2.4em 0 0;
241
  border-left: 0;
242
  border-right: 1px solid #e2e3e3;
243
}
244
.vakata-context-rtl .vakata-context-left ul {
245
  right: auto;
246
  left: 100%;
247
  margin-left: -4px;
248
  margin-right: auto;
249
}
250
.vakata-context-rtl li > a > i {
251
  margin: 0 -2em 0 0;
252
}
253
.vakata-context-rtl li > a .vakata-contextmenu-sep {
254
  margin: 0 0 0 0.5em;
255
  border-left-color: white;
256
  background: #e2e3e3;
257
}
258
#jstree-marker {
259
  position: absolute;
260
  top: 0;
261
  left: 0;
262
  margin: -5px 0 0 0;
263
  padding: 0;
264
  border-right: 0;
265
  border-top: 5px solid transparent;
266
  border-bottom: 5px solid transparent;
267
  border-left: 5px solid;
268
  width: 0;
269
  height: 0;
270
  font-size: 0;
271
  line-height: 0;
272
}
273
#jstree-dnd {
274
  line-height: 16px;
275
  margin: 0;
276
  padding: 4px;
277
}
278
#jstree-dnd .jstree-icon,
279
#jstree-dnd .jstree-copy {
280
  display: inline-block;
281
  text-decoration: none;
282
  margin: 0 2px 0 0;
283
  padding: 0;
284
  width: 16px;
285
  height: 16px;
286
}
287
#jstree-dnd .jstree-ok {
288
  background: green;
289
}
290
#jstree-dnd .jstree-er {
291
  background: red;
292
}
293
#jstree-dnd .jstree-copy {
294
  margin: 0 2px 0 2px;
295
}
296
.jstree-default .jstree-node,
297
.jstree-default .jstree-icon {
298
  background-repeat: no-repeat;
299
  background-color: transparent;
300
}
301
.jstree-default .jstree-anchor,
302
.jstree-default .jstree-animated,
303
.jstree-default .jstree-wholerow {
304
  transition: background-color 0.15s, box-shadow 0.15s;
305
}
306
.jstree-default .jstree-hovered {
307
  background: #e7f4f9;
308
  border-radius: 2px;
309
  box-shadow: inset 0 0 1px #cccccc;
310
}
311
.jstree-default .jstree-context {
312
  background: #e7f4f9;
313
  border-radius: 2px;
314
  box-shadow: inset 0 0 1px #cccccc;
315
}
316
.jstree-default .jstree-clicked {
317
  background: #beebff;
318
  border-radius: 2px;
319
  box-shadow: inset 0 0 1px #999999;
320
}
321
.jstree-default .jstree-no-icons .jstree-anchor > .jstree-themeicon {
322
  display: none;
323
}
324
.jstree-default .jstree-disabled {
325
  background: transparent;
326
  color: #666666;
327
}
328
.jstree-default .jstree-disabled.jstree-hovered {
329
  background: transparent;
330
  box-shadow: none;
331
}
332
.jstree-default .jstree-disabled.jstree-clicked {
333
  background: #efefef;
334
}
335
.jstree-default .jstree-disabled > .jstree-icon {
336
  opacity: 0.8;
337
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");
338
  /* Firefox 10+ */
339
  filter: gray;
340
  /* IE6-9 */
341
  -webkit-filter: grayscale(100%);
342
  /* Chrome 19+ & Safari 6+ */
343
}
344
.jstree-default .jstree-search {
345
  font-style: italic;
346
  color: #8b0000;
347
  font-weight: bold;
348
}
349
.jstree-default .jstree-no-checkboxes .jstree-checkbox {
350
  display: none !important;
351
}
352
.jstree-default.jstree-checkbox-no-clicked .jstree-clicked {
353
  background: transparent;
354
  box-shadow: none;
355
}
356
.jstree-default.jstree-checkbox-no-clicked .jstree-clicked.jstree-hovered {
357
  background: #e7f4f9;
358
}
359
.jstree-default.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked {
360
  background: transparent;
361
}
362
.jstree-default.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked.jstree-wholerow-hovered {
363
  background: #e7f4f9;
364
}
365
.jstree-default > .jstree-striped {
366
  min-width: 100%;
367
  display: inline-block;
368
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAkCAMAAAB/qqA+AAAABlBMVEUAAAAAAAClZ7nPAAAAAnRSTlMNAMM9s3UAAAAXSURBVHjajcEBAQAAAIKg/H/aCQZ70AUBjAATb6YPDgAAAABJRU5ErkJggg==") left top repeat;
369
}
370
.jstree-default > .jstree-wholerow-ul .jstree-hovered,
371
.jstree-default > .jstree-wholerow-ul .jstree-clicked {
372
  background: transparent;
373
  box-shadow: none;
374
  border-radius: 0;
375
}
376
.jstree-default .jstree-wholerow {
377
  -moz-box-sizing: border-box;
378
  -webkit-box-sizing: border-box;
379
  box-sizing: border-box;
380
}
381
.jstree-default .jstree-wholerow-hovered {
382
  background: #e7f4f9;
383
}
384
.jstree-default .jstree-wholerow-clicked {
385
  background: #beebff;
386
  background: -webkit-linear-gradient(top, #beebff 0%, #a8e4ff 100%);
387
  background: linear-gradient(to bottom, #beebff 0%, #a8e4ff 100%);
388
}
389
.jstree-default .jstree-node {
390
  min-height: 24px;
391
  line-height: 24px;
392
  margin-left: 24px;
393
  min-width: 24px;
394
}
395
.jstree-default .jstree-anchor {
396
  line-height: 24px;
397
  height: 24px;
398
}
399
.jstree-default .jstree-icon {
400
  width: 24px;
401
  height: 24px;
402
  line-height: 24px;
403
}
404
.jstree-default .jstree-icon:empty {
405
  width: 24px;
406
  height: 24px;
407
  line-height: 24px;
408
}
409
.jstree-default.jstree-rtl .jstree-node {
410
  margin-right: 24px;
411
}
412
.jstree-default .jstree-wholerow {
413
  height: 24px;
414
}
415
.jstree-default .jstree-node,
416
.jstree-default .jstree-icon {
417
  background-image: url("32px.png");
418
}
419
.jstree-default .jstree-node {
420
  background-position: -292px -4px;
421
  background-repeat: repeat-y;
422
}
423
.jstree-default .jstree-last {
424
  background: transparent;
425
}
426
.jstree-default .jstree-open > .jstree-ocl {
427
  background-position: -132px -4px;
428
}
429
.jstree-default .jstree-closed > .jstree-ocl {
430
  background-position: -100px -4px;
431
}
432
.jstree-default .jstree-leaf > .jstree-ocl {
433
  background-position: -68px -4px;
434
}
435
.jstree-default .jstree-themeicon {
436
  background-position: -260px -4px;
437
}
438
.jstree-default > .jstree-no-dots .jstree-node,
439
.jstree-default > .jstree-no-dots .jstree-leaf > .jstree-ocl {
440
  background: transparent;
441
}
442
.jstree-default > .jstree-no-dots .jstree-open > .jstree-ocl {
443
  background-position: -36px -4px;
444
}
445
.jstree-default > .jstree-no-dots .jstree-closed > .jstree-ocl {
446
  background-position: -4px -4px;
447
}
448
.jstree-default .jstree-disabled {
449
  background: transparent;
450
}
451
.jstree-default .jstree-disabled.jstree-hovered {
452
  background: transparent;
453
}
454
.jstree-default .jstree-disabled.jstree-clicked {
455
  background: #efefef;
456
}
457
.jstree-default .jstree-checkbox {
458
  background-position: -164px -4px;
459
}
460
.jstree-default .jstree-checkbox:hover {
461
  background-position: -164px -36px;
462
}
463
.jstree-default.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
464
.jstree-default .jstree-checked > .jstree-checkbox {
465
  background-position: -228px -4px;
466
}
467
.jstree-default.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
468
.jstree-default .jstree-checked > .jstree-checkbox:hover {
469
  background-position: -228px -36px;
470
}
471
.jstree-default .jstree-anchor > .jstree-undetermined {
472
  background-position: -196px -4px;
473
}
474
.jstree-default .jstree-anchor > .jstree-undetermined:hover {
475
  background-position: -196px -36px;
476
}
477
.jstree-default .jstree-checkbox-disabled {
478
  opacity: 0.8;
479
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");
480
  /* Firefox 10+ */
481
  filter: gray;
482
  /* IE6-9 */
483
  -webkit-filter: grayscale(100%);
484
  /* Chrome 19+ & Safari 6+ */
485
}
486
.jstree-default > .jstree-striped {
487
  background-size: auto 48px;
488
}
489
.jstree-default.jstree-rtl .jstree-node {
490
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
491
  background-position: 100% 1px;
492
  background-repeat: repeat-y;
493
}
494
.jstree-default.jstree-rtl .jstree-last {
495
  background: transparent;
496
}
497
.jstree-default.jstree-rtl .jstree-open > .jstree-ocl {
498
  background-position: -132px -36px;
499
}
500
.jstree-default.jstree-rtl .jstree-closed > .jstree-ocl {
501
  background-position: -100px -36px;
502
}
503
.jstree-default.jstree-rtl .jstree-leaf > .jstree-ocl {
504
  background-position: -68px -36px;
505
}
506
.jstree-default.jstree-rtl > .jstree-no-dots .jstree-node,
507
.jstree-default.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl {
508
  background: transparent;
509
}
510
.jstree-default.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl {
511
  background-position: -36px -36px;
512
}
513
.jstree-default.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl {
514
  background-position: -4px -36px;
515
}
516
.jstree-default .jstree-themeicon-custom {
517
  background-color: transparent;
518
  background-image: none;
519
  background-position: 0 0;
520
}
521
.jstree-default > .jstree-container-ul .jstree-loading > .jstree-ocl {
522
  background: url("throbber.gif") center center no-repeat;
523
}
524
.jstree-default .jstree-file {
525
  background: url("32px.png") -100px -68px no-repeat;
526
}
527
.jstree-default .jstree-folder {
528
  background: url("32px.png") -260px -4px no-repeat;
529
}
530
.jstree-default > .jstree-container-ul > .jstree-node {
531
  margin-left: 0;
532
  margin-right: 0;
533
}
534
#jstree-dnd.jstree-default {
535
  line-height: 24px;
536
  padding: 0 4px;
537
}
538
#jstree-dnd.jstree-default .jstree-ok,
539
#jstree-dnd.jstree-default .jstree-er {
540
  background-image: url("32px.png");
541
  background-repeat: no-repeat;
542
  background-color: transparent;
543
}
544
#jstree-dnd.jstree-default i {
545
  background: transparent;
546
  width: 24px;
547
  height: 24px;
548
  line-height: 24px;
549
}
550
#jstree-dnd.jstree-default .jstree-ok {
551
  background-position: -4px -68px;
552
}
553
#jstree-dnd.jstree-default .jstree-er {
554
  background-position: -36px -68px;
555
}
556
.jstree-default .jstree-ellipsis {
557
  overflow: hidden;
558
}
559
.jstree-default .jstree-ellipsis .jstree-anchor {
560
  width: calc(100% - 29px);
561
  text-overflow: ellipsis;
562
  overflow: hidden;
563
}
564
.jstree-default.jstree-rtl .jstree-node {
565
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
566
}
567
.jstree-default.jstree-rtl .jstree-last {
568
  background: transparent;
569
}
570
.jstree-default-small .jstree-node {
571
  min-height: 18px;
572
  line-height: 18px;
573
  margin-left: 18px;
574
  min-width: 18px;
575
}
576
.jstree-default-small .jstree-anchor {
577
  line-height: 18px;
578
  height: 18px;
579
}
580
.jstree-default-small .jstree-icon {
581
  width: 18px;
582
  height: 18px;
583
  line-height: 18px;
584
}
585
.jstree-default-small .jstree-icon:empty {
586
  width: 18px;
587
  height: 18px;
588
  line-height: 18px;
589
}
590
.jstree-default-small.jstree-rtl .jstree-node {
591
  margin-right: 18px;
592
}
593
.jstree-default-small .jstree-wholerow {
594
  height: 18px;
595
}
596
.jstree-default-small .jstree-node,
597
.jstree-default-small .jstree-icon {
598
  background-image: url("32px.png");
599
}
600
.jstree-default-small .jstree-node {
601
  background-position: -295px -7px;
602
  background-repeat: repeat-y;
603
}
604
.jstree-default-small .jstree-last {
605
  background: transparent;
606
}
607
.jstree-default-small .jstree-open > .jstree-ocl {
608
  background-position: -135px -7px;
609
}
610
.jstree-default-small .jstree-closed > .jstree-ocl {
611
  background-position: -103px -7px;
612
}
613
.jstree-default-small .jstree-leaf > .jstree-ocl {
614
  background-position: -71px -7px;
615
}
616
.jstree-default-small .jstree-themeicon {
617
  background-position: -263px -7px;
618
}
619
.jstree-default-small > .jstree-no-dots .jstree-node,
620
.jstree-default-small > .jstree-no-dots .jstree-leaf > .jstree-ocl {
621
  background: transparent;
622
}
623
.jstree-default-small > .jstree-no-dots .jstree-open > .jstree-ocl {
624
  background-position: -39px -7px;
625
}
626
.jstree-default-small > .jstree-no-dots .jstree-closed > .jstree-ocl {
627
  background-position: -7px -7px;
628
}
629
.jstree-default-small .jstree-disabled {
630
  background: transparent;
631
}
632
.jstree-default-small .jstree-disabled.jstree-hovered {
633
  background: transparent;
634
}
635
.jstree-default-small .jstree-disabled.jstree-clicked {
636
  background: #efefef;
637
}
638
.jstree-default-small .jstree-checkbox {
639
  background-position: -167px -7px;
640
}
641
.jstree-default-small .jstree-checkbox:hover {
642
  background-position: -167px -39px;
643
}
644
.jstree-default-small.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
645
.jstree-default-small .jstree-checked > .jstree-checkbox {
646
  background-position: -231px -7px;
647
}
648
.jstree-default-small.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
649
.jstree-default-small .jstree-checked > .jstree-checkbox:hover {
650
  background-position: -231px -39px;
651
}
652
.jstree-default-small .jstree-anchor > .jstree-undetermined {
653
  background-position: -199px -7px;
654
}
655
.jstree-default-small .jstree-anchor > .jstree-undetermined:hover {
656
  background-position: -199px -39px;
657
}
658
.jstree-default-small .jstree-checkbox-disabled {
659
  opacity: 0.8;
660
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");
661
  /* Firefox 10+ */
662
  filter: gray;
663
  /* IE6-9 */
664
  -webkit-filter: grayscale(100%);
665
  /* Chrome 19+ & Safari 6+ */
666
}
667
.jstree-default-small > .jstree-striped {
668
  background-size: auto 36px;
669
}
670
.jstree-default-small.jstree-rtl .jstree-node {
671
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
672
  background-position: 100% 1px;
673
  background-repeat: repeat-y;
674
}
675
.jstree-default-small.jstree-rtl .jstree-last {
676
  background: transparent;
677
}
678
.jstree-default-small.jstree-rtl .jstree-open > .jstree-ocl {
679
  background-position: -135px -39px;
680
}
681
.jstree-default-small.jstree-rtl .jstree-closed > .jstree-ocl {
682
  background-position: -103px -39px;
683
}
684
.jstree-default-small.jstree-rtl .jstree-leaf > .jstree-ocl {
685
  background-position: -71px -39px;
686
}
687
.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-node,
688
.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl {
689
  background: transparent;
690
}
691
.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl {
692
  background-position: -39px -39px;
693
}
694
.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl {
695
  background-position: -7px -39px;
696
}
697
.jstree-default-small .jstree-themeicon-custom {
698
  background-color: transparent;
699
  background-image: none;
700
  background-position: 0 0;
701
}
702
.jstree-default-small > .jstree-container-ul .jstree-loading > .jstree-ocl {
703
  background: url("throbber.gif") center center no-repeat;
704
}
705
.jstree-default-small .jstree-file {
706
  background: url("32px.png") -103px -71px no-repeat;
707
}
708
.jstree-default-small .jstree-folder {
709
  background: url("32px.png") -263px -7px no-repeat;
710
}
711
.jstree-default-small > .jstree-container-ul > .jstree-node {
712
  margin-left: 0;
713
  margin-right: 0;
714
}
715
#jstree-dnd.jstree-default-small {
716
  line-height: 18px;
717
  padding: 0 4px;
718
}
719
#jstree-dnd.jstree-default-small .jstree-ok,
720
#jstree-dnd.jstree-default-small .jstree-er {
721
  background-image: url("32px.png");
722
  background-repeat: no-repeat;
723
  background-color: transparent;
724
}
725
#jstree-dnd.jstree-default-small i {
726
  background: transparent;
727
  width: 18px;
728
  height: 18px;
729
  line-height: 18px;
730
}
731
#jstree-dnd.jstree-default-small .jstree-ok {
732
  background-position: -7px -71px;
733
}
734
#jstree-dnd.jstree-default-small .jstree-er {
735
  background-position: -39px -71px;
736
}
737
.jstree-default-small .jstree-ellipsis {
738
  overflow: hidden;
739
}
740
.jstree-default-small .jstree-ellipsis .jstree-anchor {
741
  width: calc(100% - 23px);
742
  text-overflow: ellipsis;
743
  overflow: hidden;
744
}
745
.jstree-default-small.jstree-rtl .jstree-node {
746
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAACAQMAAABv1h6PAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMHBgAAiABBI4gz9AAAAABJRU5ErkJggg==");
747
}
748
.jstree-default-small.jstree-rtl .jstree-last {
749
  background: transparent;
750
}
751
.jstree-default-large .jstree-node {
752
  min-height: 32px;
753
  line-height: 32px;
754
  margin-left: 32px;
755
  min-width: 32px;
756
}
757
.jstree-default-large .jstree-anchor {
758
  line-height: 32px;
759
  height: 32px;
760
}
761
.jstree-default-large .jstree-icon {
762
  width: 32px;
763
  height: 32px;
764
  line-height: 32px;
765
}
766
.jstree-default-large .jstree-icon:empty {
767
  width: 32px;
768
  height: 32px;
769
  line-height: 32px;
770
}
771
.jstree-default-large.jstree-rtl .jstree-node {
772
  margin-right: 32px;
773
}
774
.jstree-default-large .jstree-wholerow {
775
  height: 32px;
776
}
777
.jstree-default-large .jstree-node,
778
.jstree-default-large .jstree-icon {
779
  background-image: url("32px.png");
780
}
781
.jstree-default-large .jstree-node {
782
  background-position: -288px 0px;
783
  background-repeat: repeat-y;
784
}
785
.jstree-default-large .jstree-last {
786
  background: transparent;
787
}
788
.jstree-default-large .jstree-open > .jstree-ocl {
789
  background-position: -128px 0px;
790
}
791
.jstree-default-large .jstree-closed > .jstree-ocl {
792
  background-position: -96px 0px;
793
}
794
.jstree-default-large .jstree-leaf > .jstree-ocl {
795
  background-position: -64px 0px;
796
}
797
.jstree-default-large .jstree-themeicon {
798
  background-position: -256px 0px;
799
}
800
.jstree-default-large > .jstree-no-dots .jstree-node,
801
.jstree-default-large > .jstree-no-dots .jstree-leaf > .jstree-ocl {
802
  background: transparent;
803
}
804
.jstree-default-large > .jstree-no-dots .jstree-open > .jstree-ocl {
805
  background-position: -32px 0px;
806
}
807
.jstree-default-large > .jstree-no-dots .jstree-closed > .jstree-ocl {
808
  background-position: 0px 0px;
809
}
810
.jstree-default-large .jstree-disabled {
811
  background: transparent;
812
}
813
.jstree-default-large .jstree-disabled.jstree-hovered {
814
  background: transparent;
815
}
816
.jstree-default-large .jstree-disabled.jstree-clicked {
817
  background: #efefef;
818
}
819
.jstree-default-large .jstree-checkbox {
820
  background-position: -160px 0px;
821
}
822
.jstree-default-large .jstree-checkbox:hover {
823
  background-position: -160px -32px;
824
}
825
.jstree-default-large.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
826
.jstree-default-large .jstree-checked > .jstree-checkbox {
827
  background-position: -224px 0px;
828
}
829
.jstree-default-large.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
830
.jstree-default-large .jstree-checked > .jstree-checkbox:hover {
831
  background-position: -224px -32px;
832
}
833
.jstree-default-large .jstree-anchor > .jstree-undetermined {
834
  background-position: -192px 0px;
835
}
836
.jstree-default-large .jstree-anchor > .jstree-undetermined:hover {
837
  background-position: -192px -32px;
838
}
839
.jstree-default-large .jstree-checkbox-disabled {
840
  opacity: 0.8;
841
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");
842
  /* Firefox 10+ */
843
  filter: gray;
844
  /* IE6-9 */
845
  -webkit-filter: grayscale(100%);
846
  /* Chrome 19+ & Safari 6+ */
847
}
848
.jstree-default-large > .jstree-striped {
849
  background-size: auto 64px;
850
}
851
.jstree-default-large.jstree-rtl .jstree-node {
852
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
853
  background-position: 100% 1px;
854
  background-repeat: repeat-y;
855
}
856
.jstree-default-large.jstree-rtl .jstree-last {
857
  background: transparent;
858
}
859
.jstree-default-large.jstree-rtl .jstree-open > .jstree-ocl {
860
  background-position: -128px -32px;
861
}
862
.jstree-default-large.jstree-rtl .jstree-closed > .jstree-ocl {
863
  background-position: -96px -32px;
864
}
865
.jstree-default-large.jstree-rtl .jstree-leaf > .jstree-ocl {
866
  background-position: -64px -32px;
867
}
868
.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-node,
869
.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl {
870
  background: transparent;
871
}
872
.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl {
873
  background-position: -32px -32px;
874
}
875
.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl {
876
  background-position: 0px -32px;
877
}
878
.jstree-default-large .jstree-themeicon-custom {
879
  background-color: transparent;
880
  background-image: none;
881
  background-position: 0 0;
882
}
883
.jstree-default-large > .jstree-container-ul .jstree-loading > .jstree-ocl {
884
  background: url("throbber.gif") center center no-repeat;
885
}
886
.jstree-default-large .jstree-file {
887
  background: url("32px.png") -96px -64px no-repeat;
888
}
889
.jstree-default-large .jstree-folder {
890
  background: url("32px.png") -256px 0px no-repeat;
891
}
892
.jstree-default-large > .jstree-container-ul > .jstree-node {
893
  margin-left: 0;
894
  margin-right: 0;
895
}
896
#jstree-dnd.jstree-default-large {
897
  line-height: 32px;
898
  padding: 0 4px;
899
}
900
#jstree-dnd.jstree-default-large .jstree-ok,
901
#jstree-dnd.jstree-default-large .jstree-er {
902
  background-image: url("32px.png");
903
  background-repeat: no-repeat;
904
  background-color: transparent;
905
}
906
#jstree-dnd.jstree-default-large i {
907
  background: transparent;
908
  width: 32px;
909
  height: 32px;
910
  line-height: 32px;
911
}
912
#jstree-dnd.jstree-default-large .jstree-ok {
913
  background-position: 0px -64px;
914
}
915
#jstree-dnd.jstree-default-large .jstree-er {
916
  background-position: -32px -64px;
917
}
918
.jstree-default-large .jstree-ellipsis {
919
  overflow: hidden;
920
}
921
.jstree-default-large .jstree-ellipsis .jstree-anchor {
922
  width: calc(100% - 37px);
923
  text-overflow: ellipsis;
924
  overflow: hidden;
925
}
926
.jstree-default-large.jstree-rtl .jstree-node {
927
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAACAQMAAAAD0EyKAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjgIIGBgABCgCBvVLXcAAAAABJRU5ErkJggg==");
928
}
929
.jstree-default-large.jstree-rtl .jstree-last {
930
  background: transparent;
931
}
932
@media (max-width: 768px) {
933
  #jstree-dnd.jstree-dnd-responsive {
934
    line-height: 40px;
935
    font-weight: bold;
936
    font-size: 1.1em;
937
    text-shadow: 1px 1px white;
938
  }
939
  #jstree-dnd.jstree-dnd-responsive > i {
940
    background: transparent;
941
    width: 40px;
942
    height: 40px;
943
  }
944
  #jstree-dnd.jstree-dnd-responsive > .jstree-ok {
945
    background-image: url("40px.png");
946
    background-position: 0 -200px;
947
    background-size: 120px 240px;
948
  }
949
  #jstree-dnd.jstree-dnd-responsive > .jstree-er {
950
    background-image: url("40px.png");
951
    background-position: -40px -200px;
952
    background-size: 120px 240px;
953
  }
954
  #jstree-marker.jstree-dnd-responsive {
955
    border-left-width: 10px;
956
    border-top-width: 10px;
957
    border-bottom-width: 10px;
958
    margin-top: -10px;
959
  }
960
}
961
@media (max-width: 768px) {
962
  .jstree-default-responsive {
963
    /*
964
	.jstree-open > .jstree-ocl,
965
	.jstree-closed > .jstree-ocl { border-radius:20px; background-color:white; }
966
	*/
967
  }
968
  .jstree-default-responsive .jstree-icon {
969
    background-image: url("40px.png");
970
  }
971
  .jstree-default-responsive .jstree-node,
972
  .jstree-default-responsive .jstree-leaf > .jstree-ocl {
973
    background: transparent;
974
  }
975
  .jstree-default-responsive .jstree-node {
976
    min-height: 40px;
977
    line-height: 40px;
978
    margin-left: 40px;
979
    min-width: 40px;
980
    white-space: nowrap;
981
  }
982
  .jstree-default-responsive .jstree-anchor {
983
    line-height: 40px;
984
    height: 40px;
985
  }
986
  .jstree-default-responsive .jstree-icon,
987
  .jstree-default-responsive .jstree-icon:empty {
988
    width: 40px;
989
    height: 40px;
990
    line-height: 40px;
991
  }
992
  .jstree-default-responsive > .jstree-container-ul > .jstree-node {
993
    margin-left: 0;
994
  }
995
  .jstree-default-responsive.jstree-rtl .jstree-node {
996
    margin-left: 0;
997
    margin-right: 40px;
998
    background: transparent;
999
  }
1000
  .jstree-default-responsive.jstree-rtl .jstree-container-ul > .jstree-node {
1001
    margin-right: 0;
1002
  }
1003
  .jstree-default-responsive .jstree-ocl,
1004
  .jstree-default-responsive .jstree-themeicon,
1005
  .jstree-default-responsive .jstree-checkbox {
1006
    background-size: 120px 240px;
1007
  }
1008
  .jstree-default-responsive .jstree-leaf > .jstree-ocl,
1009
  .jstree-default-responsive.jstree-rtl .jstree-leaf > .jstree-ocl {
1010
    background: transparent;
1011
  }
1012
  .jstree-default-responsive .jstree-open > .jstree-ocl {
1013
    background-position: 0 0 !important;
1014
  }
1015
  .jstree-default-responsive .jstree-closed > .jstree-ocl {
1016
    background-position: 0 -40px !important;
1017
  }
1018
  .jstree-default-responsive.jstree-rtl .jstree-closed > .jstree-ocl {
1019
    background-position: -40px 0 !important;
1020
  }
1021
  .jstree-default-responsive .jstree-themeicon {
1022
    background-position: -40px -40px;
1023
  }
1024
  .jstree-default-responsive .jstree-checkbox,
1025
  .jstree-default-responsive .jstree-checkbox:hover {
1026
    background-position: -40px -80px;
1027
  }
1028
  .jstree-default-responsive.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
1029
  .jstree-default-responsive.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
1030
  .jstree-default-responsive .jstree-checked > .jstree-checkbox,
1031
  .jstree-default-responsive .jstree-checked > .jstree-checkbox:hover {
1032
    background-position: 0 -80px;
1033
  }
1034
  .jstree-default-responsive .jstree-anchor > .jstree-undetermined,
1035
  .jstree-default-responsive .jstree-anchor > .jstree-undetermined:hover {
1036
    background-position: 0 -120px;
1037
  }
1038
  .jstree-default-responsive .jstree-anchor {
1039
    font-weight: bold;
1040
    font-size: 1.1em;
1041
    text-shadow: 1px 1px white;
1042
  }
1043
  .jstree-default-responsive > .jstree-striped {
1044
    background: transparent;
1045
  }
1046
  .jstree-default-responsive .jstree-wholerow {
1047
    border-top: 1px solid rgba(255, 255, 255, 0.7);
1048
    border-bottom: 1px solid rgba(64, 64, 64, 0.2);
1049
    background: #ebebeb;
1050
    height: 40px;
1051
  }
1052
  .jstree-default-responsive .jstree-wholerow-hovered {
1053
    background: #e7f4f9;
1054
  }
1055
  .jstree-default-responsive .jstree-wholerow-clicked {
1056
    background: #beebff;
1057
  }
1058
  .jstree-default-responsive .jstree-children .jstree-last > .jstree-wholerow {
1059
    box-shadow: inset 0 -6px 3px -5px #666666;
1060
  }
1061
  .jstree-default-responsive .jstree-children .jstree-open > .jstree-wholerow {
1062
    box-shadow: inset 0 6px 3px -5px #666666;
1063
    border-top: 0;
1064
  }
1065
  .jstree-default-responsive .jstree-children .jstree-open + .jstree-open {
1066
    box-shadow: none;
1067
  }
1068
  .jstree-default-responsive .jstree-node,
1069
  .jstree-default-responsive .jstree-icon,
1070
  .jstree-default-responsive .jstree-node > .jstree-ocl,
1071
  .jstree-default-responsive .jstree-themeicon,
1072
  .jstree-default-responsive .jstree-checkbox {
1073
    background-image: url("40px.png");
1074
    background-size: 120px 240px;
1075
  }
1076
  .jstree-default-responsive .jstree-node {
1077
    background-position: -80px 0;
1078
    background-repeat: repeat-y;
1079
  }
1080
  .jstree-default-responsive .jstree-last {
1081
    background: transparent;
1082
  }
1083
  .jstree-default-responsive .jstree-leaf > .jstree-ocl {
1084
    background-position: -40px -120px;
1085
  }
1086
  .jstree-default-responsive .jstree-last > .jstree-ocl {
1087
    background-position: -40px -160px;
1088
  }
1089
  .jstree-default-responsive .jstree-themeicon-custom {
1090
    background-color: transparent;
1091
    background-image: none;
1092
    background-position: 0 0;
1093
  }
1094
  .jstree-default-responsive .jstree-file {
1095
    background: url("40px.png") 0 -160px no-repeat;
1096
    background-size: 120px 240px;
1097
  }
1098
  .jstree-default-responsive .jstree-folder {
1099
    background: url("40px.png") -40px -40px no-repeat;
1100
    background-size: 120px 240px;
1101
  }
1102
  .jstree-default-responsive > .jstree-container-ul > .jstree-node {
1103
    margin-left: 0;
1104
    margin-right: 0;
1105
  }
1106
}
(-)a/koha-tmpl/intranet-tmpl/lib/jquery/plugins/jstree/themes/default/style.min.css (+1 lines)
Line 0 Link Here
1
.jstree-node,.jstree-children,.jstree-container-ul{display:block;margin:0;padding:0;list-style-type:none;list-style-image:none}.jstree-node{white-space:nowrap}.jstree-anchor{display:inline-block;color:black;white-space:nowrap;padding:0 4px 0 1px;margin:0;vertical-align:top}.jstree-anchor:focus{outline:0}.jstree-anchor,.jstree-anchor:link,.jstree-anchor:visited,.jstree-anchor:hover,.jstree-anchor:active{text-decoration:none;color:inherit}.jstree-icon{display:inline-block;text-decoration:none;margin:0;padding:0;vertical-align:top;text-align:center}.jstree-icon:empty{display:inline-block;text-decoration:none;margin:0;padding:0;vertical-align:top;text-align:center}.jstree-ocl{cursor:pointer}.jstree-leaf>.jstree-ocl{cursor:default}.jstree .jstree-open>.jstree-children{display:block}.jstree .jstree-closed>.jstree-children,.jstree .jstree-leaf>.jstree-children{display:none}.jstree-anchor>.jstree-themeicon{margin-right:2px}.jstree-no-icons .jstree-themeicon,.jstree-anchor>.jstree-themeicon-hidden{display:none}.jstree-hidden,.jstree-node.jstree-hidden{display:none}.jstree-rtl .jstree-anchor{padding:0 1px 0 4px}.jstree-rtl .jstree-anchor>.jstree-themeicon{margin-left:2px;margin-right:0}.jstree-rtl .jstree-node{margin-left:0}.jstree-rtl .jstree-container-ul>.jstree-node{margin-right:0}.jstree-wholerow-ul{position:relative;display:inline-block;min-width:100%}.jstree-wholerow-ul .jstree-leaf>.jstree-ocl{cursor:pointer}.jstree-wholerow-ul .jstree-anchor,.jstree-wholerow-ul .jstree-icon{position:relative}.jstree-wholerow-ul .jstree-wholerow{width:100%;cursor:pointer;position:absolute;left:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.jstree-contextmenu .jstree-anchor{-webkit-user-select:none;-webkit-touch-callout:none;user-select:none}.vakata-context{display:none}.vakata-context,.vakata-context ul{margin:0;padding:2px;position:absolute;background:#f5f5f5;border:1px solid #979797;box-shadow:2px 2px 2px #999999}.vakata-context ul{list-style:none;left:100%;margin-top:-2.7em;margin-left:-4px}.vakata-context .vakata-context-right ul{left:auto;right:100%;margin-left:auto;margin-right:-4px}.vakata-context li{list-style:none}.vakata-context li>a{display:block;padding:0 2em 0 2em;text-decoration:none;width:auto;color:black;white-space:nowrap;line-height:2.4em;text-shadow:1px 1px 0 white;border-radius:1px}.vakata-context li>a:hover{position:relative;background-color:#e8eff7;box-shadow:0 0 2px #0a6aa1}.vakata-context li>a.vakata-context-parent{background-image:url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAIORI4JlrqN1oMSnmmZDQUAOw==");background-position:right center;background-repeat:no-repeat}.vakata-context li>a:focus{outline:0}.vakata-context .vakata-context-no-icons{margin-left:0}.vakata-context .vakata-context-hover>a{position:relative;background-color:#e8eff7;box-shadow:0 0 2px #0a6aa1}.vakata-context .vakata-context-separator>a,.vakata-context .vakata-context-separator>a:hover{background:white;border:0;border-top:1px solid #e2e3e3;height:1px;min-height:1px;max-height:1px;padding:0;margin:0 0 0 2.4em;border-left:1px solid #e0e0e0;text-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent;border-radius:0}.vakata-context .vakata-contextmenu-disabled a,.vakata-context .vakata-contextmenu-disabled a:hover{color:silver;background-color:transparent;border:0;box-shadow:0 0 0}.vakata-context .vakata-contextmenu-disabled>a>i{filter:grayscale(100%)}.vakata-context li>a>i{text-decoration:none;display:inline-block;width:2.4em;height:2.4em;background:transparent;margin:0 0 0 -2em;vertical-align:top;text-align:center;line-height:2.4em}.vakata-context li>a>i:empty{width:2.4em;line-height:2.4em}.vakata-context li>a .vakata-contextmenu-sep{display:inline-block;width:1px;height:2.4em;background:white;margin:0 .5em 0 0;border-left:1px solid #e2e3e3}.vakata-context .vakata-contextmenu-shortcut{font-size:.8em;color:silver;opacity:.5;display:none}.vakata-context-rtl ul{left:auto;right:100%;margin-left:auto;margin-right:-4px}.vakata-context-rtl li>a.vakata-context-parent{background-image:url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAINjI+AC7rWHIsPtmoxLAA7");background-position:left center;background-repeat:no-repeat}.vakata-context-rtl .vakata-context-separator>a{margin:0 2.4em 0 0;border-left:0;border-right:1px solid #e2e3e3}.vakata-context-rtl .vakata-context-left ul{right:auto;left:100%;margin-left:-4px;margin-right:auto}.vakata-context-rtl li>a>i{margin:0 -2em 0 0}.vakata-context-rtl li>a .vakata-contextmenu-sep{margin:0 0 0 .5em;border-left-color:white;background:#e2e3e3}#jstree-marker{position:absolute;top:0;left:0;margin:-5px 0 0 0;padding:0;border-right:0;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid;width:0;height:0;font-size:0;line-height:0}#jstree-dnd{line-height:16px;margin:0;padding:4px}#jstree-dnd .jstree-icon,#jstree-dnd .jstree-copy{display:inline-block;text-decoration:none;margin:0 2px 0 0;padding:0;width:16px;height:16px}#jstree-dnd .jstree-ok{background:green}#jstree-dnd .jstree-er{background:red}#jstree-dnd .jstree-copy{margin:0 2px 0 2px}.jstree-default .jstree-node,.jstree-default .jstree-icon{background-repeat:no-repeat;background-color:transparent}.jstree-default .jstree-anchor,.jstree-default .jstree-animated,.jstree-default .jstree-wholerow{transition:background-color .15s,box-shadow .15s}.jstree-default .jstree-hovered{background:#e7f4f9;border-radius:2px;box-shadow:inset 0 0 1px #cccccc}.jstree-default .jstree-context{background:#e7f4f9;border-radius:2px;box-shadow:inset 0 0 1px #cccccc}.jstree-default .jstree-clicked{background:#beebff;border-radius:2px;box-shadow:inset 0 0 1px #999999}.jstree-default .jstree-no-icons .jstree-anchor>.jstree-themeicon{display:none}.jstree-default .jstree-disabled{background:transparent;color:#666666}.jstree-default .jstree-disabled.jstree-hovered{background:transparent;box-shadow:none}.jstree-default .jstree-disabled.jstree-clicked{background:#efefef}.jstree-default .jstree-disabled>.jstree-icon{opacity:.8;filter:url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)}.jstree-default .jstree-search{font-style:italic;color:#8b0000;font-weight:bold}.jstree-default .jstree-no-checkboxes .jstree-checkbox{display:none !important}.jstree-default.jstree-checkbox-no-clicked .jstree-clicked{background:transparent;box-shadow:none}.jstree-default.jstree-checkbox-no-clicked .jstree-clicked.jstree-hovered{background:#e7f4f9}.jstree-default.jstree-checkbox-no-clicked>.jstree-wholerow-ul .jstree-wholerow-clicked{background:transparent}.jstree-default.jstree-checkbox-no-clicked>.jstree-wholerow-ul .jstree-wholerow-clicked.jstree-wholerow-hovered{background:#e7f4f9}.jstree-default>.jstree-striped{min-width:100%;display:inline-block;background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAkCAMAAAB/qqA+AAAABlBMVEUAAAAAAAClZ7nPAAAAAnRSTlMNAMM9s3UAAAAXSURBVHjajcEBAQAAAIKg/H/aCQZ70AUBjAATb6YPDgAAAABJRU5ErkJggg==") left top repeat}.jstree-default>.jstree-wholerow-ul .jstree-hovered,.jstree-default>.jstree-wholerow-ul .jstree-clicked{background:transparent;box-shadow:none;border-radius:0}.jstree-default .jstree-wholerow{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.jstree-default .jstree-wholerow-hovered{background:#e7f4f9}.jstree-default .jstree-wholerow-clicked{background:#beebff;background:-webkit-linear-gradient(top, #beebff 0, #a8e4ff 100%);background:linear-gradient(to bottom, #beebff 0, #a8e4ff 100%)}.jstree-default .jstree-node{min-height:24px;line-height:24px;margin-left:24px;min-width:24px}.jstree-default .jstree-anchor{line-height:24px;height:24px}.jstree-default .jstree-icon{width:24px;height:24px;line-height:24px}.jstree-default .jstree-icon:empty{width:24px;height:24px;line-height:24px}.jstree-default.jstree-rtl .jstree-node{margin-right:24px}.jstree-default .jstree-wholerow{height:24px}.jstree-default .jstree-node,.jstree-default .jstree-icon{background-image:url("32px.png")}.jstree-default .jstree-node{background-position:-292px -4px;background-repeat:repeat-y}.jstree-default .jstree-last{background:transparent}.jstree-default .jstree-open>.jstree-ocl{background-position:-132px -4px}.jstree-default .jstree-closed>.jstree-ocl{background-position:-100px -4px}.jstree-default .jstree-leaf>.jstree-ocl{background-position:-68px -4px}.jstree-default .jstree-themeicon{background-position:-260px -4px}.jstree-default>.jstree-no-dots .jstree-node,.jstree-default>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-36px -4px}.jstree-default>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-4px -4px}.jstree-default .jstree-disabled{background:transparent}.jstree-default .jstree-disabled.jstree-hovered{background:transparent}.jstree-default .jstree-disabled.jstree-clicked{background:#efefef}.jstree-default .jstree-checkbox{background-position:-164px -4px}.jstree-default .jstree-checkbox:hover{background-position:-164px -36px}.jstree-default.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox,.jstree-default .jstree-checked>.jstree-checkbox{background-position:-228px -4px}.jstree-default.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover,.jstree-default .jstree-checked>.jstree-checkbox:hover{background-position:-228px -36px}.jstree-default .jstree-anchor>.jstree-undetermined{background-position:-196px -4px}.jstree-default .jstree-anchor>.jstree-undetermined:hover{background-position:-196px -36px}.jstree-default .jstree-checkbox-disabled{opacity:.8;filter:url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)}.jstree-default>.jstree-striped{background-size:auto 48px}.jstree-default.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");background-position:100% 1px;background-repeat:repeat-y}.jstree-default.jstree-rtl .jstree-last{background:transparent}.jstree-default.jstree-rtl .jstree-open>.jstree-ocl{background-position:-132px -36px}.jstree-default.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-100px -36px}.jstree-default.jstree-rtl .jstree-leaf>.jstree-ocl{background-position:-68px -36px}.jstree-default.jstree-rtl>.jstree-no-dots .jstree-node,.jstree-default.jstree-rtl>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default.jstree-rtl>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-36px -36px}.jstree-default.jstree-rtl>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-4px -36px}.jstree-default .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0}.jstree-default>.jstree-container-ul .jstree-loading>.jstree-ocl{background:url("throbber.gif") center center no-repeat}.jstree-default .jstree-file{background:url("32px.png") -100px -68px no-repeat}.jstree-default .jstree-folder{background:url("32px.png") -260px -4px no-repeat}.jstree-default>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0}#jstree-dnd.jstree-default{line-height:24px;padding:0 4px}#jstree-dnd.jstree-default .jstree-ok,#jstree-dnd.jstree-default .jstree-er{background-image:url("32px.png");background-repeat:no-repeat;background-color:transparent}#jstree-dnd.jstree-default i{background:transparent;width:24px;height:24px;line-height:24px}#jstree-dnd.jstree-default .jstree-ok{background-position:-4px -68px}#jstree-dnd.jstree-default .jstree-er{background-position:-36px -68px}.jstree-default .jstree-ellipsis{overflow:hidden}.jstree-default .jstree-ellipsis .jstree-anchor{width:calc(100% - 29px);text-overflow:ellipsis;overflow:hidden}.jstree-default.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==")}.jstree-default.jstree-rtl .jstree-last{background:transparent}.jstree-default-small .jstree-node{min-height:18px;line-height:18px;margin-left:18px;min-width:18px}.jstree-default-small .jstree-anchor{line-height:18px;height:18px}.jstree-default-small .jstree-icon{width:18px;height:18px;line-height:18px}.jstree-default-small .jstree-icon:empty{width:18px;height:18px;line-height:18px}.jstree-default-small.jstree-rtl .jstree-node{margin-right:18px}.jstree-default-small .jstree-wholerow{height:18px}.jstree-default-small .jstree-node,.jstree-default-small .jstree-icon{background-image:url("32px.png")}.jstree-default-small .jstree-node{background-position:-295px -7px;background-repeat:repeat-y}.jstree-default-small .jstree-last{background:transparent}.jstree-default-small .jstree-open>.jstree-ocl{background-position:-135px -7px}.jstree-default-small .jstree-closed>.jstree-ocl{background-position:-103px -7px}.jstree-default-small .jstree-leaf>.jstree-ocl{background-position:-71px -7px}.jstree-default-small .jstree-themeicon{background-position:-263px -7px}.jstree-default-small>.jstree-no-dots .jstree-node,.jstree-default-small>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-small>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-39px -7px}.jstree-default-small>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-7px -7px}.jstree-default-small .jstree-disabled{background:transparent}.jstree-default-small .jstree-disabled.jstree-hovered{background:transparent}.jstree-default-small .jstree-disabled.jstree-clicked{background:#efefef}.jstree-default-small .jstree-checkbox{background-position:-167px -7px}.jstree-default-small .jstree-checkbox:hover{background-position:-167px -39px}.jstree-default-small.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox,.jstree-default-small .jstree-checked>.jstree-checkbox{background-position:-231px -7px}.jstree-default-small.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover,.jstree-default-small .jstree-checked>.jstree-checkbox:hover{background-position:-231px -39px}.jstree-default-small .jstree-anchor>.jstree-undetermined{background-position:-199px -7px}.jstree-default-small .jstree-anchor>.jstree-undetermined:hover{background-position:-199px -39px}.jstree-default-small .jstree-checkbox-disabled{opacity:.8;filter:url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)}.jstree-default-small>.jstree-striped{background-size:auto 36px}.jstree-default-small.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");background-position:100% 1px;background-repeat:repeat-y}.jstree-default-small.jstree-rtl .jstree-last{background:transparent}.jstree-default-small.jstree-rtl .jstree-open>.jstree-ocl{background-position:-135px -39px}.jstree-default-small.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-103px -39px}.jstree-default-small.jstree-rtl .jstree-leaf>.jstree-ocl{background-position:-71px -39px}.jstree-default-small.jstree-rtl>.jstree-no-dots .jstree-node,.jstree-default-small.jstree-rtl>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-small.jstree-rtl>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-39px -39px}.jstree-default-small.jstree-rtl>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-7px -39px}.jstree-default-small .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0}.jstree-default-small>.jstree-container-ul .jstree-loading>.jstree-ocl{background:url("throbber.gif") center center no-repeat}.jstree-default-small .jstree-file{background:url("32px.png") -103px -71px no-repeat}.jstree-default-small .jstree-folder{background:url("32px.png") -263px -7px no-repeat}.jstree-default-small>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0}#jstree-dnd.jstree-default-small{line-height:18px;padding:0 4px}#jstree-dnd.jstree-default-small .jstree-ok,#jstree-dnd.jstree-default-small .jstree-er{background-image:url("32px.png");background-repeat:no-repeat;background-color:transparent}#jstree-dnd.jstree-default-small i{background:transparent;width:18px;height:18px;line-height:18px}#jstree-dnd.jstree-default-small .jstree-ok{background-position:-7px -71px}#jstree-dnd.jstree-default-small .jstree-er{background-position:-39px -71px}.jstree-default-small .jstree-ellipsis{overflow:hidden}.jstree-default-small .jstree-ellipsis .jstree-anchor{width:calc(100% - 23px);text-overflow:ellipsis;overflow:hidden}.jstree-default-small.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAACAQMAAABv1h6PAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMHBgAAiABBI4gz9AAAAABJRU5ErkJggg==")}.jstree-default-small.jstree-rtl .jstree-last{background:transparent}.jstree-default-large .jstree-node{min-height:32px;line-height:32px;margin-left:32px;min-width:32px}.jstree-default-large .jstree-anchor{line-height:32px;height:32px}.jstree-default-large .jstree-icon{width:32px;height:32px;line-height:32px}.jstree-default-large .jstree-icon:empty{width:32px;height:32px;line-height:32px}.jstree-default-large.jstree-rtl .jstree-node{margin-right:32px}.jstree-default-large .jstree-wholerow{height:32px}.jstree-default-large .jstree-node,.jstree-default-large .jstree-icon{background-image:url("32px.png")}.jstree-default-large .jstree-node{background-position:-288px 0;background-repeat:repeat-y}.jstree-default-large .jstree-last{background:transparent}.jstree-default-large .jstree-open>.jstree-ocl{background-position:-128px 0}.jstree-default-large .jstree-closed>.jstree-ocl{background-position:-96px 0}.jstree-default-large .jstree-leaf>.jstree-ocl{background-position:-64px 0}.jstree-default-large .jstree-themeicon{background-position:-256px 0}.jstree-default-large>.jstree-no-dots .jstree-node,.jstree-default-large>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-large>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-32px 0}.jstree-default-large>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:0 0}.jstree-default-large .jstree-disabled{background:transparent}.jstree-default-large .jstree-disabled.jstree-hovered{background:transparent}.jstree-default-large .jstree-disabled.jstree-clicked{background:#efefef}.jstree-default-large .jstree-checkbox{background-position:-160px 0}.jstree-default-large .jstree-checkbox:hover{background-position:-160px -32px}.jstree-default-large.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox,.jstree-default-large .jstree-checked>.jstree-checkbox{background-position:-224px 0}.jstree-default-large.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover,.jstree-default-large .jstree-checked>.jstree-checkbox:hover{background-position:-224px -32px}.jstree-default-large .jstree-anchor>.jstree-undetermined{background-position:-192px 0}.jstree-default-large .jstree-anchor>.jstree-undetermined:hover{background-position:-192px -32px}.jstree-default-large .jstree-checkbox-disabled{opacity:.8;filter:url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)}.jstree-default-large>.jstree-striped{background-size:auto 64px}.jstree-default-large.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");background-position:100% 1px;background-repeat:repeat-y}.jstree-default-large.jstree-rtl .jstree-last{background:transparent}.jstree-default-large.jstree-rtl .jstree-open>.jstree-ocl{background-position:-128px -32px}.jstree-default-large.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-96px -32px}.jstree-default-large.jstree-rtl .jstree-leaf>.jstree-ocl{background-position:-64px -32px}.jstree-default-large.jstree-rtl>.jstree-no-dots .jstree-node,.jstree-default-large.jstree-rtl>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-large.jstree-rtl>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-32px -32px}.jstree-default-large.jstree-rtl>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:0 -32px}.jstree-default-large .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0}.jstree-default-large>.jstree-container-ul .jstree-loading>.jstree-ocl{background:url("throbber.gif") center center no-repeat}.jstree-default-large .jstree-file{background:url("32px.png") -96px -64px no-repeat}.jstree-default-large .jstree-folder{background:url("32px.png") -256px 0 no-repeat}.jstree-default-large>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0}#jstree-dnd.jstree-default-large{line-height:32px;padding:0 4px}#jstree-dnd.jstree-default-large .jstree-ok,#jstree-dnd.jstree-default-large .jstree-er{background-image:url("32px.png");background-repeat:no-repeat;background-color:transparent}#jstree-dnd.jstree-default-large i{background:transparent;width:32px;height:32px;line-height:32px}#jstree-dnd.jstree-default-large .jstree-ok{background-position:0 -64px}#jstree-dnd.jstree-default-large .jstree-er{background-position:-32px -64px}.jstree-default-large .jstree-ellipsis{overflow:hidden}.jstree-default-large .jstree-ellipsis .jstree-anchor{width:calc(100% - 37px);text-overflow:ellipsis;overflow:hidden}.jstree-default-large.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAACAQMAAAAD0EyKAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjgIIGBgABCgCBvVLXcAAAAABJRU5ErkJggg==")}.jstree-default-large.jstree-rtl .jstree-last{background:transparent}@media (max-width:768px){#jstree-dnd.jstree-dnd-responsive{line-height:40px;font-weight:bold;font-size:1.1em;text-shadow:1px 1px white}#jstree-dnd.jstree-dnd-responsive>i{background:transparent;width:40px;height:40px}#jstree-dnd.jstree-dnd-responsive>.jstree-ok{background-image:url("40px.png");background-position:0 -200px;background-size:120px 240px}#jstree-dnd.jstree-dnd-responsive>.jstree-er{background-image:url("40px.png");background-position:-40px -200px;background-size:120px 240px}#jstree-marker.jstree-dnd-responsive{border-left-width:10px;border-top-width:10px;border-bottom-width:10px;margin-top:-10px}}@media (max-width:768px){.jstree-default-responsive .jstree-icon{background-image:url("40px.png")}.jstree-default-responsive .jstree-node,.jstree-default-responsive .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-responsive .jstree-node{min-height:40px;line-height:40px;margin-left:40px;min-width:40px;white-space:nowrap}.jstree-default-responsive .jstree-anchor{line-height:40px;height:40px}.jstree-default-responsive .jstree-icon,.jstree-default-responsive .jstree-icon:empty{width:40px;height:40px;line-height:40px}.jstree-default-responsive>.jstree-container-ul>.jstree-node{margin-left:0}.jstree-default-responsive.jstree-rtl .jstree-node{margin-left:0;margin-right:40px;background:transparent}.jstree-default-responsive.jstree-rtl .jstree-container-ul>.jstree-node{margin-right:0}.jstree-default-responsive .jstree-ocl,.jstree-default-responsive .jstree-themeicon,.jstree-default-responsive .jstree-checkbox{background-size:120px 240px}.jstree-default-responsive .jstree-leaf>.jstree-ocl,.jstree-default-responsive.jstree-rtl .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-responsive .jstree-open>.jstree-ocl{background-position:0 0 !important}.jstree-default-responsive .jstree-closed>.jstree-ocl{background-position:0 -40px !important}.jstree-default-responsive.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-40px 0 !important}.jstree-default-responsive .jstree-themeicon{background-position:-40px -40px}.jstree-default-responsive .jstree-checkbox,.jstree-default-responsive .jstree-checkbox:hover{background-position:-40px -80px}.jstree-default-responsive.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox,.jstree-default-responsive.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover,.jstree-default-responsive .jstree-checked>.jstree-checkbox,.jstree-default-responsive .jstree-checked>.jstree-checkbox:hover{background-position:0 -80px}.jstree-default-responsive .jstree-anchor>.jstree-undetermined,.jstree-default-responsive .jstree-anchor>.jstree-undetermined:hover{background-position:0 -120px}.jstree-default-responsive .jstree-anchor{font-weight:bold;font-size:1.1em;text-shadow:1px 1px white}.jstree-default-responsive>.jstree-striped{background:transparent}.jstree-default-responsive .jstree-wholerow{border-top:1px solid rgba(255,255,255,0.7);border-bottom:1px solid rgba(64,64,64,0.2);background:#ebebeb;height:40px}.jstree-default-responsive .jstree-wholerow-hovered{background:#e7f4f9}.jstree-default-responsive .jstree-wholerow-clicked{background:#beebff}.jstree-default-responsive .jstree-children .jstree-last>.jstree-wholerow{box-shadow:inset 0 -6px 3px -5px #666666}.jstree-default-responsive .jstree-children .jstree-open>.jstree-wholerow{box-shadow:inset 0 6px 3px -5px #666666;border-top:0}.jstree-default-responsive .jstree-children .jstree-open+.jstree-open{box-shadow:none}.jstree-default-responsive .jstree-node,.jstree-default-responsive .jstree-icon,.jstree-default-responsive .jstree-node>.jstree-ocl,.jstree-default-responsive .jstree-themeicon,.jstree-default-responsive .jstree-checkbox{background-image:url("40px.png");background-size:120px 240px}.jstree-default-responsive .jstree-node{background-position:-80px 0;background-repeat:repeat-y}.jstree-default-responsive .jstree-last{background:transparent}.jstree-default-responsive .jstree-leaf>.jstree-ocl{background-position:-40px -120px}.jstree-default-responsive .jstree-last>.jstree-ocl{background-position:-40px -160px}.jstree-default-responsive .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0}.jstree-default-responsive .jstree-file{background:url("40px.png") 0 -160px no-repeat;background-size:120px 240px}.jstree-default-responsive .jstree-folder{background:url("40px.png") -40px -40px no-repeat;background-size:120px 240px}.jstree-default-responsive>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0}}
(-)a/koha-tmpl/intranet-tmpl/lib/jquery/plugins/themes/classic/style.css (-77 lines)
Lines 1-77 Link Here
1
/*
2
 * jsTree classic theme 1.0
3
 * Supported features: dots/no-dots, icons/no-icons, focused, loading
4
 * Supported plugins: ui (hovered, clicked), checkbox, contextmenu, search
5
 */
6
7
.jstree-classic li,
8
.jstree-classic ins { background-image:url("d.png"); background-repeat:no-repeat; background-color:transparent; }
9
.jstree-classic li { background-position:-90px 0; background-repeat:repeat-y;  }
10
.jstree-classic li.jstree-last { background:transparent; }
11
.jstree-classic .jstree-open > ins { background-position:-72px 0; }
12
.jstree-classic .jstree-closed > ins { background-position:-54px 0; }
13
.jstree-classic .jstree-leaf > ins { background-position:-36px 0; }
14
15
.jstree-classic .jstree-hovered { background:#e7f4f9; border:1px solid #e7f4f9; padding:0 2px 0 1px; }
16
.jstree-classic .jstree-clicked { background:navy; border:1px solid navy; padding:0 2px 0 1px; color:white; }
17
.jstree-classic a .jstree-icon { background-position:-56px -19px; }
18
.jstree-classic .jstree-open > a .jstree-icon { background-position:-56px -36px; }
19
.jstree-classic a.jstree-loading .jstree-icon { background:url("throbber.gif") center center no-repeat !important; }
20
21
.jstree-classic.jstree-focused { background:white; }
22
23
.jstree-classic .jstree-no-dots li,
24
.jstree-classic .jstree-no-dots .jstree-leaf > ins { background:transparent; }
25
.jstree-classic .jstree-no-dots .jstree-open > ins { background-position:-18px 0; }
26
.jstree-classic .jstree-no-dots .jstree-closed > ins { background-position:0 0; }
27
28
.jstree-classic .jstree-no-icons a .jstree-icon { display:none; }
29
30
.jstree-classic .jstree-search { font-style:italic; }
31
32
.jstree-classic .jstree-no-icons .jstree-checkbox { display:inline-block; }
33
.jstree-classic .jstree-no-checkboxes .jstree-checkbox { display:none !important; }
34
.jstree-classic .jstree-checked > a > .jstree-checkbox { background-position:-38px -19px; }
35
.jstree-classic .jstree-unchecked > a > .jstree-checkbox { background-position:-2px -19px; }
36
.jstree-classic .jstree-undetermined > a > .jstree-checkbox { background-position:-20px -19px; }
37
.jstree-classic .jstree-checked > a > .jstree-checkbox:hover { background-position:-38px -37px; }
38
.jstree-classic .jstree-unchecked > a > .jstree-checkbox:hover { background-position:-2px -37px; }
39
.jstree-classic .jstree-undetermined > a > .jstree-checkbox:hover { background-position:-20px -37px; }
40
41
#vakata-dragged.jstree-classic ins { background:transparent !important; }
42
#vakata-dragged.jstree-classic .jstree-ok { background:url("d.png") -2px -53px no-repeat !important; }
43
#vakata-dragged.jstree-classic .jstree-invalid { background:url("d.png") -18px -53px no-repeat !important; }
44
#jstree-marker.jstree-classic { background:url("d.png") -41px -57px no-repeat !important; text-indent:-100px; }
45
46
.jstree-classic a.jstree-search { color:aqua; }
47
.jstree-classic .jstree-locked a { color:silver; cursor:default; }
48
49
#vakata-contextmenu.jstree-classic-context,
50
#vakata-contextmenu.jstree-classic-context li ul { background:#f0f0f0; border:1px solid #979797; -moz-box-shadow: 1px 1px 2px #999; -webkit-box-shadow: 1px 1px 2px #999; box-shadow: 1px 1px 2px #999; }
51
#vakata-contextmenu.jstree-classic-context li { }
52
#vakata-contextmenu.jstree-classic-context a { color:black; }
53
#vakata-contextmenu.jstree-classic-context a:hover,
54
#vakata-contextmenu.jstree-classic-context .vakata-hover > a { padding:0 5px; background:#e8eff7; border:1px solid #aecff7; color:black; -moz-border-radius:2px; -webkit-border-radius:2px; border-radius:2px; }
55
#vakata-contextmenu.jstree-classic-context li.jstree-contextmenu-disabled a,
56
#vakata-contextmenu.jstree-classic-context li.jstree-contextmenu-disabled a:hover { color:silver; background:transparent; border:0; padding:1px 4px; }
57
#vakata-contextmenu.jstree-classic-context li.vakata-separator { background:white; border-top:1px solid #e0e0e0; margin:0; }
58
#vakata-contextmenu.jstree-classic-context li ul { margin-left:-4px; }
59
60
/* IE6 BEGIN */
61
.jstree-classic li,
62
.jstree-classic ins,
63
#vakata-dragged.jstree-classic .jstree-invalid,
64
#vakata-dragged.jstree-classic .jstree-ok,
65
#jstree-marker.jstree-classic { _background-image:url("d.gif"); }
66
.jstree-classic .jstree-open ins { _background-position:-72px 0; }
67
.jstree-classic .jstree-closed ins { _background-position:-54px 0; }
68
.jstree-classic .jstree-leaf ins { _background-position:-36px 0; }
69
.jstree-classic .jstree-open a ins.jstree-icon { _background-position:-56px -36px; }
70
.jstree-classic .jstree-closed a ins.jstree-icon { _background-position:-56px -19px; }
71
.jstree-classic .jstree-leaf a ins.jstree-icon { _background-position:-56px -19px; }
72
#vakata-contextmenu.jstree-classic-context ins { _display:none; }
73
#vakata-contextmenu.jstree-classic-context li { _zoom:1; }
74
.jstree-classic .jstree-undetermined a .jstree-checkbox { _background-position:-20px -19px; }
75
.jstree-classic .jstree-checked a .jstree-checkbox { _background-position:-38px -19px; }
76
.jstree-classic .jstree-unchecked a .jstree-checkbox { _background-position:-2px -19px; }
77
/* IE6 END */
(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (-2 / +14 lines)
Lines 3076-3088 td { Link Here
3076
}
3076
}
3077
3077
3078
#hierarchies {
3078
#hierarchies {
3079
    margin-bottom: 1em;
3080
3079
    a {
3081
    a {
3080
        color: #069;
3082
        color: #069;
3081
        font-weight: normal;
3083
        font-weight: normal;
3082
        text-decoration: underline;
3084
        text-decoration: underline;
3083
3085
3084
        &:hover {
3086
        &.jstree-anchor {
3085
            color: #990033;
3087
            &.jstree-hovered {
3088
                background: transparent none;
3089
                box-shadow: none;
3090
                color: #005580;
3091
            }
3092
3093
            &.jstree-clicked {
3094
                background: transparent none;
3095
                box-shadow: none;
3096
                border: 0;
3097
            }
3086
        }
3098
        }
3087
    }
3099
    }
3088
}
3100
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/detail.tt (-10 / +15 lines)
Lines 11-16 Link Here
11
</title>
11
</title>
12
[% INCLUDE 'doc-head-close.inc' %]
12
[% INCLUDE 'doc-head-close.inc' %]
13
[% Asset.css("css/addbiblio.css") | $raw %]
13
[% Asset.css("css/addbiblio.css") | $raw %]
14
[% IF ( displayhierarchy ) %]
15
    [% Asset.css("lib/jquery/plugins/jstree/themes/default/style.min.css") | $raw %]
16
[% END %]
14
</head>
17
</head>
15
18
16
<body id="auth_detail" class="auth">
19
<body id="auth_detail" class="auth">
Lines 129-135 Link Here
129
[% MACRO jsinclude BLOCK %]
132
[% MACRO jsinclude BLOCK %]
130
    [% INCLUDE 'authorities_js.inc' %]
133
    [% INCLUDE 'authorities_js.inc' %]
131
    [% IF ( displayhierarchy ) %]
134
    [% IF ( displayhierarchy ) %]
132
        [% Asset.js("lib/jquery/plugins/jquery.jstree.js") | $raw %]
135
        [% Asset.js("lib/jquery/plugins/jstree/jstree-3.3.12.min.js") | $raw %]
133
    [% END %]
136
    [% END %]
134
    <script>
137
    <script>
135
        $(document).ready(function() {
138
        $(document).ready(function() {
Lines 141-156 Link Here
141
                }
144
                }
142
            });
145
            });
143
            [% IF ( displayhierarchy ) %]
146
            [% IF ( displayhierarchy ) %]
144
                var current_nodes = [];
145
                $('.currentauth').each(function() {
146
                    current_nodes.push('#' + $(this).parent().parents('li:first').attr('id'));
147
                    });
148
                $('#hierarchies').jstree({
147
                $('#hierarchies').jstree({
149
                        "plugins": [ "themes", "html_data"],
148
                    "types" : {
150
                        "themes": { "theme": "classic",
149
                        "default" : {
151
                                    "icons": false },
150
                            "icon" : "fa fa-file-o"
152
                        "core": { "initially_open": current_nodes }
151
                        }
153
                    });
152
                    },
153
                    "plugins" : [ "types" ]
154
                }).on('ready.jstree', function(){ $(this).jstree('open_all')
155
                }).bind("select_node.jstree", function (e, data) {
156
                    e.preventDefault();
157
                    document.location.href = data.node.a_attr.href;
158
                });
154
            [% END %]
159
            [% END %]
155
         });
160
         });
156
    </script>
161
    </script>
(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss (-3 / +13 lines)
Lines 1721-1735 nav { Link Here
1721
}
1721
}
1722
1722
1723
#hierarchies {
1723
#hierarchies {
1724
    margin: 1em 0;
1724
    margin-bottom: 1em;
1725
1725
1726
    a {
1726
    a {
1727
        color: #069;
1727
        color: #069;
1728
        font-weight: normal;
1728
        font-weight: normal;
1729
        text-decoration: underline;
1729
        text-decoration: underline;
1730
1730
1731
        &:hover {
1731
        &.jstree-anchor {
1732
            color: #990033;
1732
            &.jstree-hovered {
1733
                background: transparent none;
1734
                box-shadow: none;
1735
                color: #005580;
1736
            }
1737
1738
            &.jstree-clicked {
1739
                background: transparent none;
1740
                box-shadow: none;
1741
                border: 0;
1742
            }
1733
        }
1743
        }
1734
    }
1744
    }
1735
}
1745
}
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-authorities.inc (-3 / +3 lines)
Lines 1-6 Link Here
1
[% BLOCK showhierarchy %]
1
[% BLOCK showhierarchy %]
2
    [% FOREACH tree IN trees %]
2
    [% FOREACH tree IN trees %]
3
        [% PROCESS showtree tree = tree %]
3
        [% PROCESS showtree tree = tree marc = marc %]
4
    [% END %]
4
    [% END %]
5
[% END %]
5
[% END %]
6
6
Lines 11-20 Link Here
11
            [% IF ( node.current_value ) %]
11
            [% IF ( node.current_value ) %]
12
                <span class="currentauth">[% node.value | html %]</span>
12
                <span class="currentauth">[% node.value | html %]</span>
13
            [% ELSE %]
13
            [% ELSE %]
14
                <a href="opac-authoritiesdetail.pl?authid=[% node.authid | uri %]" title="Term">[% node.value | html %]</a>
14
                <a href="opac-authoritiesdetail.pl?authid=[% node.authid | uri %]&marc=[% marc | uri %]" title="Term">[% node.value | html %]</a>
15
            [% END %]
15
            [% END %]
16
            [% IF ( node.children && node.children.size > 0 ) %]
16
            [% IF ( node.children && node.children.size > 0 ) %]
17
                [% PROCESS showtree tree = node.children %]
17
                [% PROCESS showtree tree = node.children marc = marc %]
18
            [% END %]
18
            [% END %]
19
            </li>
19
            </li>
20
        [% END %]
20
        [% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth-MARCdetail.tt (-12 / +18 lines)
Lines 8-14 Link Here
8
[% INCLUDE 'doc-head-open.inc' %]
8
[% INCLUDE 'doc-head-open.inc' %]
9
<title>Entry [% authtypetext | html %] &rsaquo; [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title>
9
<title>Entry [% authtypetext | html %] &rsaquo; [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title>
10
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
11
[% BLOCK cssinclude %][% END %]
11
[% BLOCK cssinclude %]
12
    [% IF ( displayhierarchy ) %]
13
        [% Asset.css("lib/jquery/plugins/jstree/themes/default/style.min.css") | $raw %]
14
    [% END %]
15
[% END %]
12
</head>
16
</head>
13
[% INCLUDE 'bodytag.inc' bodyid='opac-authoritiesdetail' bodyclass='scrollto' %]
17
[% INCLUDE 'bodytag.inc' bodyid='opac-authoritiesdetail' bodyclass='scrollto' %]
14
[% INCLUDE 'masthead.inc' %]
18
[% INCLUDE 'masthead.inc' %]
Lines 52-58 Link Here
52
56
53
                        [% IF ( displayhierarchy ) %]
57
                        [% IF ( displayhierarchy ) %]
54
                            <div id="hierarchies">
58
                            <div id="hierarchies">
55
                                [% PROCESS showhierarchy trees = loophierarchies %]
59
                                [% PROCESS showhierarchy trees = loophierarchies marc = 1 %]
56
                            </div>
60
                            </div>
57
                        [% END %]
61
                        [% END %]
58
62
Lines 76-95 Link Here
76
80
77
[% INCLUDE 'opac-bottom.inc' %]
81
[% INCLUDE 'opac-bottom.inc' %]
78
[% BLOCK jsinclude %]
82
[% BLOCK jsinclude %]
79
    [% Asset.js("lib/jquery/plugins/jquery.jstree.js") | $raw %]
83
    [% Asset.js("lib/jquery/plugins/jstree/jstree-3.3.12.min.js") | $raw %]
80
    <script>
84
    <script>
81
        $(document).ready(function() {
85
        $(document).ready(function() {
82
            [% IF ( displayhierarchy ) %]
86
            [% IF ( displayhierarchy ) %]
83
                var current_nodes = [];
84
                $('.currentauth').each(function() {
85
                    current_nodes.push('#' + $(this).parent().parents('li:first').attr('id'));
86
                    });
87
                $('#hierarchies').jstree({
87
                $('#hierarchies').jstree({
88
                        "plugins": [ "themes", "html_data"],
88
                    "types" : {
89
                        "themes": { "theme": "classic",
89
                        "default" : {
90
                                    "icons": false },
90
                            "icon" : "fa fa-file-o"
91
                        "core": { "initially_open": current_nodes }
91
                        }
92
                    });
92
                    },
93
                    "plugins" : [ "types" ]
94
                }).on('ready.jstree', function(){ $(this).jstree('open_all')
95
                }).bind("select_node.jstree", function (e, data) {
96
                    e.preventDefault();
97
                    document.location.href = data.node.a_attr.href;
98
                });
93
            [% END %]
99
            [% END %]
94
        });
100
        });
95
    </script>
101
    </script>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth-detail.tt (-11 / +17 lines)
Lines 8-14 Link Here
8
[% INCLUDE 'doc-head-open.inc' %]
8
[% INCLUDE 'doc-head-open.inc' %]
9
<title>[% summary.mainentry | html %][% IF authtypetext %] ([% authtypetext | html %])[% END %] &rsaquo; Authority search &rsaquo; [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title>
9
<title>[% summary.mainentry | html %][% IF authtypetext %] ([% authtypetext | html %])[% END %] &rsaquo; Authority search &rsaquo; [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title>
10
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'doc-head-close.inc' %]
11
[% BLOCK cssinclude %][% END %]
11
[% BLOCK cssinclude %]
12
    [% IF ( displayhierarchy ) %]
13
        [% Asset.css("lib/jquery/plugins/jstree/themes/default/style.min.css") | $raw %]
14
    [% END %]
15
[% END %]
12
</head>
16
</head>
13
[% INCLUDE 'bodytag.inc' bodyid='opac-authoritiesdetail' bodyclass='scrollto' %]
17
[% INCLUDE 'bodytag.inc' bodyid='opac-authoritiesdetail' bodyclass='scrollto' %]
14
[% INCLUDE 'masthead.inc' %]
18
[% INCLUDE 'masthead.inc' %]
Lines 166-187 Link Here
166
[% INCLUDE 'opac-bottom.inc' %]
170
[% INCLUDE 'opac-bottom.inc' %]
167
[% BLOCK jsinclude %]
171
[% BLOCK jsinclude %]
168
[% IF ( displayhierarchy ) %]
172
[% IF ( displayhierarchy ) %]
169
    [% Asset.js("lib/jquery/plugins/jquery.jstree.js") | $raw %]
173
    [% Asset.js("lib/jquery/plugins/jstree/jstree-3.3.12.min.js") | $raw %]
170
[% END %]
174
[% END %]
171
<script>
175
<script>
172
    $(document).ready(function() {
176
    $(document).ready(function() {
173
        $('#authdescriptions').tabs();
177
        $('#authdescriptions').tabs();
174
        [% IF ( displayhierarchy ) %]
178
        [% IF ( displayhierarchy ) %]
175
            var current_nodes = [];
176
            $('.currentauth').each(function() {
177
                current_nodes.push('#' + $(this).parent().parents('li:first').attr('id'));
178
                });
179
            $('#hierarchies').jstree({
179
            $('#hierarchies').jstree({
180
                    "plugins": [ "themes", "html_data"],
180
                "types" : {
181
                    "themes": { "theme": "classic",
181
                    "default" : {
182
                                "icons": false },
182
                        "icon" : "fa fa-file-o"
183
                    "core": { "initially_open": current_nodes }
183
                    }
184
                });
184
                },
185
                "plugins" : [ "types" ]
186
            }).on('ready.jstree', function(){ $(this).jstree('open_all')
187
            }).bind("select_node.jstree", function (e, data) {
188
                e.preventDefault();
189
                document.location.href = data.node.a_attr.href;
190
            });
185
        [% END %]
191
        [% END %]
186
    });
192
    });
187
</script>
193
</script>
(-)a/koha-tmpl/opac-tmpl/lib/jquery/plugins/jquery.jstree.js (-4551 lines)
Lines 1-4551 Link Here
1
/*
2
 * jsTree 1.0-rc3
3
 * http://jstree.com/
4
 *
5
 * Copyright (c) 2010 Ivan Bozhanov (vakata.com)
6
 *
7
 * Licensed same as jquery - under the terms of either the MIT License or the GPL Version 2 License
8
 *   http://www.opensource.org/licenses/mit-license.php
9
 *   http://www.gnu.org/licenses/gpl.html
10
 *
11
 * $Date: 2011-02-09 01:17:14 +0200 (ср, 09 февр 2011) $
12
 * $Revision: 236 $
13
 */
14
15
/*jslint browser: true, onevar: true, undef: true, bitwise: true, strict: true */
16
/*global window : false, clearInterval: false, clearTimeout: false, document: false, setInterval: false, setTimeout: false, jQuery: false, navigator: false, XSLTProcessor: false, DOMParser: false, XMLSerializer: false*/
17
18
"use strict";
19
20
// top wrapper to prevent multiple inclusion (is this OK?)
21
(function () { if(jQuery && jQuery.jstree) { return; }
22
     var is_ie6 = false, is_ie7 = false, is_ff2 = false;
23
24
/*
25
 * jsTree core
26
 */
27
(function ($) {
28
     // Common functions not related to jsTree
29
      // decided to move them to a `vakata` "namespace"
30
      $.vakata = {};
31
 // CSS related functions
32
       $.vakata.css = {
33
               get_css : function(rule_name, delete_flag, sheet) {
34
                    rule_name = rule_name.toLowerCase();
35
                   var css_rules = sheet.cssRules || sheet.rules,
36
                         j = 0;
37
                 do {
38
                           if(css_rules.length && j > css_rules.length + 5) { return false; }
39
                             if(css_rules[j].selectorText && css_rules[j].selectorText.toLowerCase() == rule_name) {
40
                                        if(delete_flag === true) {
41
                                             if(sheet.removeRule) { sheet.removeRule(j); }
42
                                          if(sheet.deleteRule) { sheet.deleteRule(j); }
43
                                          return true;
44
                                   }
45
                                      else { return css_rules[j]; }
46
                          }
47
                      }
48
                      while (css_rules[++j]);
49
                        return false;
50
          },
51
             add_css : function(rule_name, sheet) {
52
                 if($.jstree.css.get_css(rule_name, false, sheet)) { return false; }
53
                    if(sheet.insertRule) { sheet.insertRule(rule_name + ' { }', 0); } else { sheet.addRule(rule_name, null, 0); }
54
                  return $.vakata.css.get_css(rule_name);
55
                },
56
             remove_css : function(rule_name, sheet) {
57
                      return $.vakata.css.get_css(rule_name, true, sheet);
58
           },
59
             add_sheet : function(opts) {
60
                   var tmp = false, is_new = true;
61
                        if(opts.str) {
62
                         if(opts.title) { tmp = $("style[id='" + opts.title + "-stylesheet']")[0]; }
63
                            if(tmp) { is_new = false; }
64
                            else {
65
                                 tmp = document.createElement("style");
66
                                 tmp.setAttribute('type',"text/css");
67
                                   if(opts.title) { tmp.setAttribute("id", opts.title + "-stylesheet"); }
68
                         }
69
                              if(tmp.styleSheet) {
70
                                   if(is_new) {
71
                                           document.getElementsByTagName("head")[0].appendChild(tmp);
72
                                             tmp.styleSheet.cssText = opts.str;
73
                                     }
74
                                      else {
75
                                         tmp.styleSheet.cssText = tmp.styleSheet.cssText + " " + opts.str;
76
                                      }
77
                              }
78
                              else {
79
                                 tmp.appendChild(document.createTextNode(opts.str));
80
                                    document.getElementsByTagName("head")[0].appendChild(tmp);
81
                             }
82
                              return tmp.sheet || tmp.styleSheet;
83
                    }
84
                      if(opts.url) {
85
                         if(document.createStyleSheet) {
86
                                        try { tmp = document.createStyleSheet(opts.url); } catch (e) { }
87
                               }
88
                              else {
89
                                 tmp			= document.createElement('link');
90
                                        tmp.rel		= 'stylesheet';
91
                                       tmp.type	= 'text/css';
92
                                 tmp.media	= "all";
93
                                     tmp.href	= opts.url;
94
                                   document.getElementsByTagName("head")[0].appendChild(tmp);
95
                                     return tmp.styleSheet;
96
                         }
97
                      }
98
              }
99
      };
100
101
    // private variables
102
   var instances = [],			// instance array (used by $.jstree.reference/create/focused)
103
            focused_instance = -1,	// the index in the instance array of the currently focused instance
104
            plugins = {},			// list of included plugins
105
            prepared_move = {};		// for the move_node function
106
107
    // jQuery plugin wrapper (thanks to jquery UI widget function)
108
 $.fn.jstree = function (settings) {
109
            var isMethodCall = (typeof settings == 'string'), // is this a method call like $().jstree("open_node")
110
                        args = Array.prototype.slice.call(arguments, 1),
111
                       returnValue = this;
112
113
           // if a method call execute the method on all selected instances
114
               if(isMethodCall) {
115
                     if(settings.substring(0, 1) == '_') { return returnValue; }
116
                    this.each(function() {
117
                         var instance = instances[$.data(this, "jstree_instance_id")],
118
                                  methodValue = (instance && $.isFunction(instance[settings])) ? instance[settings].apply(instance, args) : instance;
119
                                    if(typeof methodValue !== "undefined" && (settings.indexOf("is_") === 0 || (methodValue !== true && methodValue !== false))) { returnValue = methodValue; return false; }
120
                      });
121
            }
122
              else {
123
                 this.each(function() {
124
                         // extend settings and allow for multiple hashes and $.data
125
                            var instance_id = $.data(this, "jstree_instance_id"),
126
                                  a = [],
127
                                        b = settings ? $.extend({}, true, settings) : {},
128
                                      c = $(this),
129
                                   s = false,
130
                                     t = [];
131
                                a = a.concat(args);
132
                            if(c.data("jstree")) { a.push(c.data("jstree")); }
133
                             b = a.length ? $.extend.apply(null, [true, b].concat(a)) : b;
134
135
                         // if an instance already exists, destroy it first
136
                             if(typeof instance_id !== "undefined" && instances[instance_id]) { instances[instance_id].destroy(); }
137
                         // push a new empty object to the instances array
138
                              instance_id = parseInt(instances.push({}),10) - 1;
139
                             // store the jstree instance id to the container element
140
                               $.data(this, "jstree_instance_id", instance_id);
141
                               // clean up all plugins
142
                                b.plugins = $.isArray(b.plugins) ? b.plugins : $.jstree.defaults.plugins.slice();
143
                              b.plugins.unshift("core");
144
                             // only unique plugins
145
                         b.plugins = b.plugins.sort().join(",,").replace(/(,|^)([^,]+)(,,\2)+(,|$)/g,"$1$2$4").replace(/,,+/g,",").replace(/,$/,"").split(",");
146
147
                                // extend defaults with passed data
148
                            s = $.extend(true, {}, $.jstree.defaults, b);
149
                          s.plugins = b.plugins;
150
                         $.each(plugins, function (i, val) {
151
                                    if($.inArray(i, s.plugins) === -1) { s[i] = null; delete s[i]; }
152
                                       else { t.push(i); }
153
                            });
154
                            s.plugins = t;
155
156
                                // push the new object to the instances array (at the same time set the default classes to the container) and init
157
                             instances[instance_id] = new $.jstree._instance(instance_id, $(this).addClass("jstree jstree-" + instance_id), s);
158
                             // init all activated plugins for this instance
159
                                $.each(instances[instance_id]._get_settings().plugins, function (i, val) { instances[instance_id].data[val] = {}; });
160
                          $.each(instances[instance_id]._get_settings().plugins, function (i, val) { if(plugins[val]) { plugins[val].__init.apply(instances[instance_id]); } });
161
                         // initialize the instance
162
                             setTimeout(function() { if(instances[instance_id]) { instances[instance_id].init(); } }, 0);
163
                   });
164
            }
165
              // return the jquery selection (or if it was a method call that returned a value - the returned value)
166
         return returnValue;
167
    };
168
     // object to store exposed functions and objects
169
       $.jstree = {
170
           defaults : {
171
                   plugins : []
172
           },
173
             _focused : function () { return instances[focused_instance] || null; },
174
                _reference : function (needle) {
175
                       // get by instance id
176
                  if(instances[needle]) { return instances[needle]; }
177
                    // get by DOM (if still no luck - return null
178
                  var o = $(needle);
179
                     if(!o.length && typeof needle === "string") { o = $("#" + needle); }
180
                   if(!o.length) { return null; }
181
                 return instances[o.closest(".jstree").data("jstree_instance_id")] || null;
182
             },
183
             _instance : function (index, container, settings) {
184
                    // for plugins to store data in
185
                        this.data = { core : {} };
186
                     this.get_settings	= function () { return $.extend(true, {}, settings); };
187
                      this._get_settings	= function () { return settings; };
188
                 this.get_index		= function () { return index; };
189
                       this.get_container	= function () { return container; };
190
                        this.get_container_ul = function () { return container.children("ul:eq(0)"); };
191
                        this._set_settings	= function (s) {
192
                            settings = $.extend(true, {}, settings, s);
193
                    };
194
             },
195
             _fn : { },
196
             plugin : function (pname, pdata) {
197
                     pdata = $.extend({}, {
198
                         __init		: $.noop,
199
                              __destroy	: $.noop,
200
                            _fn			: {},
201
                            defaults	: false
202
                       }, pdata);
203
                     plugins[pname] = pdata;
204
205
                       $.jstree.defaults[pname] = pdata.defaults;
206
                     $.each(pdata._fn, function (i, val) {
207
                          val.plugin		= pname;
208
                           val.old			= $.jstree._fn[i];
209
                           $.jstree._fn[i] = function () {
210
                                        var rslt,
211
                                              func = val,
212
                                            args = Array.prototype.slice.call(arguments),
213
                                          evnt = new $.Event("before.jstree"),
214
                                           rlbk = false;
215
216
                                 if(this.data.core.locked === true && i !== "unlock" && i !== "is_locked") { return; }
217
218
                                 // Check if function belongs to the included plugins of this instance
219
                                  do {
220
                                           if(func && func.plugin && $.inArray(func.plugin, this._get_settings().plugins) !== -1) { break; }
221
                                              func = func.old;
222
                                       } while(func);
223
                                 if(!func) { return; }
224
225
                                 // context and function to trigger events, then finally call the function
226
                                      if(i.indexOf("_") === 0) {
227
                                             rslt = func.apply(this, args);
228
                                 }
229
                                      else {
230
                                         rslt = this.get_container().triggerHandler(evnt, { "func" : i, "inst" : this, "args" : args, "plugin" : func.plugin });
231
                                                if(rslt === false) { return; }
232
                                         if(typeof rslt !== "undefined") { args = rslt; }
233
234
                                              rslt = func.apply(
235
                                                     $.extend({}, this, {
236
                                                           __callback : function (data) {
237
                                                                 this.get_container().triggerHandler( i + '.jstree', { "inst" : this, "args" : args, "rslt" : data, "rlbk" : rlbk });
238
                                                           },
239
                                                             __rollback : function () {
240
                                                                     rlbk = this.get_rollback();
241
                                                                    return rlbk;
242
                                                           },
243
                                                             __call_old : function (replace_arguments) {
244
                                                                    return func.old.apply(this, (replace_arguments ? Array.prototype.slice.call(arguments, 1) : args ) );
245
                                                          }
246
                                                      }), args);
247
                                     }
248
249
                                     // return the result
250
                                   return rslt;
251
                           };
252
                             $.jstree._fn[i].old = val.old;
253
                         $.jstree._fn[i].plugin = pname;
254
                        });
255
            },
256
             rollback : function (rb) {
257
                     if(rb) {
258
                               if(!$.isArray(rb)) { rb = [ rb ]; }
259
                            $.each(rb, function (i, val) {
260
                                 instances[val.i].set_rollback(val.h, val.d);
261
                           });
262
                    }
263
              }
264
      };
265
     // set the prototype for all instances
266
 $.jstree._fn = $.jstree._instance.prototype = {};
267
268
     // load the css when DOM is ready
269
      $(function() {
270
         // code is copied from jQuery ($.browser is deprecated + there is a bug in IE)
271
         var u = navigator.userAgent.toLowerCase(),
272
                     v = (u.match( /.+?(?:rv|it|ra|ie)[\/: ]([\d.]+)/ ) || [0,'0'])[1],
273
                     css_string = '' +
274
                              '.jstree ul, .jstree li { display:block; margin:0 0 0 0; padding:0 0 0 0; list-style-type:none; } ' +
275
                          '.jstree li { display:block; min-height:18px; line-height:18px; white-space:nowrap; margin-left:18px; min-width:18px; } ' +
276
                            '.jstree-rtl li { margin-left:0; margin-right:18px; } ' +
277
                              '.jstree > ul > li { margin-left:0px; } ' +
278
                            '.jstree-rtl > ul > li { margin-right:0px; } ' +
279
                               '.jstree ins { display:inline-block; text-decoration:none; width:18px; height:18px; margin:0 0 0 0; padding:0; } ' +
280
                           '.jstree a { display:inline-block; line-height:16px; height:16px; color:black; white-space:nowrap; text-decoration:none; padding:1px 2px; margin:0; } ' +
281
                              '.jstree a:focus { outline: none; } ' +
282
                                '.jstree a > ins { height:16px; width:16px; } ' +
283
                              '.jstree a > .jstree-icon { margin-right:3px; } ' +
284
                            '.jstree-rtl a > .jstree-icon { margin-left:3px; margin-right:0; } ' +
285
                         'li.jstree-open > ul { display:block; } ' +
286
                            'li.jstree-closed > ul { display:none; } ';
287
            // Correct IE 6 (does not support the > CSS selector)
288
          if(/msie/.test(u) && parseInt(v, 10) == 6) {
289
                   is_ie6 = true;
290
291
                        // fix image flicker and lack of caching
292
                       try {
293
                          document.execCommand("BackgroundImageCache", false, true);
294
                     } catch (err) { }
295
296
                     css_string += '' +
297
                             '.jstree li { height:18px; margin-left:0; margin-right:0; } ' +
298
                                '.jstree li li { margin-left:18px; } ' +
299
                               '.jstree-rtl li li { margin-left:0px; margin-right:18px; } ' +
300
                         'li.jstree-open ul { display:block; } ' +
301
                              'li.jstree-closed ul { display:none !important; } ' +
302
                          '.jstree li a { display:inline; border-width:0 !important; padding:0px 2px !important; } ' +
303
                           '.jstree li a ins { height:16px; width:16px; margin-right:3px; } ' +
304
                           '.jstree-rtl li a ins { margin-right:0px; margin-left:3px; } ';
305
                }
306
              // Correct IE 7 (shifts anchor nodes onhover)
307
          if(/msie/.test(u) && parseInt(v, 10) == 7) {
308
                   is_ie7 = true;
309
                 css_string += '.jstree li a { border-width:0 !important; padding:0px 2px !important; } ';
310
              }
311
              // correct ff2 lack of display:inline-block
312
            if(!/compatible/.test(u) && /mozilla/.test(u) && parseFloat(v, 10) < 1.9) {
313
                    is_ff2 = true;
314
                 css_string += '' +
315
                             '.jstree ins { display:-moz-inline-box; } ' +
316
                          '.jstree li { line-height:12px; } ' + // WHY??
317
                         '.jstree a { display:-moz-inline-box; } ' +
318
                            '.jstree .jstree-no-icons .jstree-checkbox { display:-moz-inline-stack !important; } ';
319
                                /* this shouldn't be here as it is theme specific */
320
           }
321
              // the default stylesheet
322
              $.vakata.css.add_sheet({ str : css_string, title : "jstree" });
323
        });
324
325
   // core functions (open, close, create, update, delete)
326
        $.jstree.plugin("core", {
327
              __init : function () {
328
                 this.data.core.locked = false;
329
                 this.data.core.to_open = this.get_settings().core.initially_open;
330
                      this.data.core.to_load = this.get_settings().core.initially_load;
331
              },
332
             defaults : {
333
                   html_titles	: false,
334
                   animation	: 500,
335
                       initially_open : [],
336
                   initially_load : [],
337
                   open_parents : true,
338
                   notify_plugins : true,
339
                 rtl			: false,
340
                 load_open	: false,
341
                     strings		: {
342
                           loading		: "Loading ...",
343
                              new_node	: "New node",
344
                         multiple_selection : "Multiple selection"
345
                      }
346
              },
347
             _fn : {
348
                        init	: function () {
349
                           this.set_focus();
350
                              if(this._get_settings().core.rtl) {
351
                                    this.get_container().addClass("jstree-rtl").css("direction", "rtl");
352
                           }
353
                              this.get_container().html("<ul><li class='jstree-last jstree-leaf'><ins>&#160;</ins><a class='jstree-loading' href='#'><ins class='jstree-icon'>&#160;</ins>" + this._get_string("loading") + "</a></li></ul>");
354
                               this.data.core.li_height = this.get_container_ul().find("li.jstree-closed, li.jstree-leaf").eq(0).height() || 18;
355
356
                             this.get_container()
357
                                   .delegate("li > ins", "click.jstree", $.proxy(function (event) {
358
                                                       var trgt = $(event.target);
359
                                                    // if(trgt.is("ins") && event.pageY - trgt.offset().top < this.data.core.li_height) { this.toggle_node(trgt); }
360
                                                        this.toggle_node(trgt);
361
                                                }, this))
362
                                      .bind("mousedown.jstree", $.proxy(function () {
363
                                                        this.set_focus(); // This used to be setTimeout(set_focus,0) - why?
364
                                            }, this))
365
                                      .bind("dblclick.jstree", function (event) {
366
                                            var sel;
367
                                               if(document.selection && document.selection.empty) { document.selection.empty(); }
368
                                             else {
369
                                                 if(window.getSelection) {
370
                                                              sel = window.getSelection();
371
                                                           try {
372
                                                                  sel.removeAllRanges();
373
                                                                 sel.collapse();
374
                                                                } catch (err) { }
375
                                                      }
376
                                              }
377
                                      });
378
                            if(this._get_settings().core.notify_plugins) {
379
                                 this.get_container()
380
                                           .bind("load_node.jstree", $.proxy(function (e, data) {
381
                                                         var o = this._get_node(data.rslt.obj),
382
                                                                 t = this;
383
                                                              if(o === -1) { o = this.get_container_ul(); }
384
                                                          if(!o.length) { return; }
385
                                                              o.find("li").each(function () {
386
                                                                        var th = $(this);
387
                                                                      if(th.data("jstree")) {
388
                                                                                $.each(th.data("jstree"), function (plugin, values) {
389
                                                                                  if(t.data[plugin] && $.isFunction(t["_" + plugin + "_notify"])) {
390
                                                                                              t["_" + plugin + "_notify"].call(t, th, values);
391
                                                                                       }
392
                                                                              });
393
                                                                    }
394
                                                              });
395
                                                    }, this));
396
                             }
397
                              if(this._get_settings().core.load_open) {
398
                                      this.get_container()
399
                                           .bind("load_node.jstree", $.proxy(function (e, data) {
400
                                                         var o = this._get_node(data.rslt.obj),
401
                                                                 t = this;
402
                                                              if(o === -1) { o = this.get_container_ul(); }
403
                                                          if(!o.length) { return; }
404
                                                              o.find("li.jstree-open:not(:has(ul))").each(function () {
405
                                                                      t.load_node(this, $.noop, $.noop);
406
                                                             });
407
                                                    }, this));
408
                             }
409
                              this.__callback();
410
                             this.load_node(-1, function () { this.loaded(); this.reload_nodes(); });
411
                       },
412
                     destroy	: function () {
413
                                var i,
414
                                 n = this.get_index(),
415
                                  s = this._get_settings(),
416
                                      _this = this;
417
418
                         $.each(s.plugins, function (i, val) {
419
                                  try { plugins[val].__destroy.apply(_this); } catch(err) { }
420
                            });
421
                            this.__callback();
422
                             // set focus to another instance if this one is focused
423
                                if(this.is_focused()) {
424
                                        for(i in instances) {
425
                                          if(instances.hasOwnProperty(i) && i != n) {
426
                                                    instances[i].set_focus();
427
                                                      break;
428
                                         }
429
                                      }
430
                              }
431
                              // if no other instance found
432
                          if(n === focused_instance) { focused_instance = -1; }
433
                          // remove all traces of jstree in the DOM (only the ones set using jstree*) and cleans all events
434
                              this.get_container()
435
                                   .unbind(".jstree")
436
                                     .undelegate(".jstree")
437
                                 .removeData("jstree_instance_id")
438
                                      .find("[class^='jstree']")
439
                                             .andSelf()
440
                                             .attr("class", function () { return this.className.replace(/jstree[^ ]*|$/ig,''); });
441
                          $(document)
442
                                    .unbind(".jstree-" + n)
443
                                        .undelegate(".jstree-" + n);
444
                           // remove the actual data
445
                              instances[n] = null;
446
                           delete instances[n];
447
                   },
448
449
                    _core_notify : function (n, data) {
450
                            if(data.opened) {
451
                                      this.open_node(n, false, true);
452
                                }
453
                      },
454
455
                    lock : function () {
456
                           this.data.core.locked = true;
457
                          this.get_container().children("ul").addClass("jstree-locked").css("opacity","0.7");
458
                            this.__callback({});
459
                   },
460
                     unlock : function () {
461
                         this.data.core.locked = false;
462
                         this.get_container().children("ul").removeClass("jstree-locked").css("opacity","1");
463
                           this.__callback({});
464
                   },
465
                     is_locked : function () { return this.data.core.locked; },
466
                     save_opened : function () {
467
                            var _this = this;
468
                              this.data.core.to_open = [];
469
                           this.get_container_ul().find("li.jstree-open").each(function () {
470
                                      if(this.id) { _this.data.core.to_open.push("#" + this.id.toString().replace(/^#/,"").replace(/\\\//g,"/").replace(/\//g,"\\\/").replace(/\\\./g,".").replace(/\./g,"\\.").replace(/\:/g,"\\:")); }
471
                             });
472
                            this.__callback(_this.data.core.to_open);
473
                      },
474
                     save_loaded : function () { },
475
                 reload_nodes : function (is_callback) {
476
                                var _this = this,
477
                                      done = true,
478
                                   current = [],
479
                                  remaining = [];
480
                                if(!is_callback) {
481
                                     this.data.core.reopen = false;
482
                                 this.data.core.refreshing = true;
483
                                      this.data.core.to_open = $.map($.makeArray(this.data.core.to_open), function (n) { return "#" + n.toString().replace(/^#/,"").replace(/\\\//g,"/").replace(/\//g,"\\\/").replace(/\\\./g,".").replace(/\./g,"\\.").replace(/\:/g,"\\:"); });
484
                                   this.data.core.to_load = $.map($.makeArray(this.data.core.to_load), function (n) { return "#" + n.toString().replace(/^#/,"").replace(/\\\//g,"/").replace(/\//g,"\\\/").replace(/\\\./g,".").replace(/\./g,"\\.").replace(/\:/g,"\\:"); });
485
                                   if(this.data.core.to_open.length) {
486
                                            this.data.core.to_load = this.data.core.to_load.concat(this.data.core.to_open);
487
                                        }
488
                              }
489
                              if(this.data.core.to_load.length) {
490
                                    $.each(this.data.core.to_load, function (i, val) {
491
                                             if(val == "#") { return true; }
492
                                                if($(val).length) { current.push(val); }
493
                                               else { remaining.push(val); }
494
                                  });
495
                                    if(current.length) {
496
                                           this.data.core.to_load = remaining;
497
                                            $.each(current, function (i, val) {
498
                                                    if(!_this._is_loaded(val)) {
499
                                                           _this.load_node(val, function () { _this.reload_nodes(true); }, function () { _this.reload_nodes(true); });
500
                                                            done = false;
501
                                                  }
502
                                              });
503
                                    }
504
                              }
505
                              if(this.data.core.to_open.length) {
506
                                    $.each(this.data.core.to_open, function (i, val) {
507
                                             _this.open_node(val, false, true);
508
                                     });
509
                            }
510
                              if(done) {
511
                                     // TODO: find a more elegant approach to syncronizing returning requests
512
                                       if(this.data.core.reopen) { clearTimeout(this.data.core.reopen); }
513
                                     this.data.core.reopen = setTimeout(function () { _this.__callback({}, _this); }, 50);
514
                                  this.data.core.refreshing = false;
515
                                     this.reopen();
516
                         }
517
                      },
518
                     reopen : function () {
519
                         var _this = this;
520
                              if(this.data.core.to_open.length) {
521
                                    $.each(this.data.core.to_open, function (i, val) {
522
                                             _this.open_node(val, false, true);
523
                                     });
524
                            }
525
                              this.__callback({});
526
                   },
527
                     refresh : function (obj) {
528
                             var _this = this;
529
                              this.save_opened();
530
                            if(!obj) { obj = -1; }
531
                         obj = this._get_node(obj);
532
                             if(!obj) { obj = -1; }
533
                         if(obj !== -1) { obj.children("UL").remove(); }
534
                                else { this.get_container_ul().empty(); }
535
                              this.load_node(obj, function () { _this.__callback({ "obj" : obj}); _this.reload_nodes(); });
536
                  },
537
                     // Dummy function to fire after the first load (so that there is a jstree.loaded event)
538
                        loaded	: function () {
539
                         this.__callback();
540
                     },
541
                     // deal with focus
542
                     set_focus	: function () {
543
                              if(this.is_focused()) { return; }
544
                              var f = $.jstree._focused();
545
                           if(f) { f.unset_focus(); }
546
547
                            this.get_container().addClass("jstree-focused");
548
                               focused_instance = this.get_index();
549
                           this.__callback();
550
                     },
551
                     is_focused	: function () {
552
                             return focused_instance == this.get_index();
553
                   },
554
                     unset_focus	: function () {
555
                            if(this.is_focused()) {
556
                                        this.get_container().removeClass("jstree-focused");
557
                                    focused_instance = -1;
558
                         }
559
                              this.__callback();
560
                     },
561
562
                    // traverse
563
                    _get_node		: function (obj) {
564
                          var $obj = $(obj, this.get_container());
565
                               if($obj.is(".jstree") || obj == -1) { return -1; }
566
                             $obj = $obj.closest("li", this.get_container());
567
                               return $obj.length ? $obj : false;
568
                     },
569
                     _get_next		: function (obj, strict) {
570
                          obj = this._get_node(obj);
571
                             if(obj === -1) { return this.get_container().find("> ul > li:first-child"); }
572
                          if(!obj.length) { return false; }
573
                              if(strict) { return (obj.nextAll("li").size() > 0) ? obj.nextAll("li:eq(0)") : false; }
574
575
                               if(obj.hasClass("jstree-open")) { return obj.find("li:eq(0)"); }
576
                               else if(obj.nextAll("li").size() > 0) { return obj.nextAll("li:eq(0)"); }
577
                              else { return obj.parentsUntil(".jstree","li").next("li").eq(0); }
578
                     },
579
                     _get_prev		: function (obj, strict) {
580
                          obj = this._get_node(obj);
581
                             if(obj === -1) { return this.get_container().find("> ul > li:last-child"); }
582
                           if(!obj.length) { return false; }
583
                              if(strict) { return (obj.prevAll("li").length > 0) ? obj.prevAll("li:eq(0)") : false; }
584
585
                               if(obj.prev("li").length) {
586
                                    obj = obj.prev("li").eq(0);
587
                                    while(obj.hasClass("jstree-open")) { obj = obj.children("ul:eq(0)").children("li:last"); }
588
                                     return obj;
589
                            }
590
                              else { var o = obj.parentsUntil(".jstree","li:eq(0)"); return o.length ? o : false; }
591
                  },
592
                     _get_parent		: function (obj) {
593
                                obj = this._get_node(obj);
594
                             if(obj == -1 || !obj.length) { return false; }
595
                         var o = obj.parentsUntil(".jstree", "li:eq(0)");
596
                               return o.length ? o : -1;
597
                      },
598
                     _get_children	: function (obj) {
599
                               obj = this._get_node(obj);
600
                             if(obj === -1) { return this.get_container().children("ul:eq(0)").children("li"); }
601
                            if(!obj.length) { return false; }
602
                              return obj.children("ul:eq(0)").children("li");
603
                        },
604
                     get_path		: function (obj, id_mode) {
605
                          var p = [],
606
                                    _this = this;
607
                          obj = this._get_node(obj);
608
                             if(obj === -1 || !obj || !obj.length) { return false; }
609
                                obj.parentsUntil(".jstree", "li").each(function () {
610
                                   p.push( id_mode ? this.id : _this.get_text(this) );
611
                            });
612
                            p.reverse();
613
                           p.push( id_mode ? obj.attr("id") : this.get_text(obj) );
614
                               return p;
615
                      },
616
617
                    // string functions
618
                    _get_string : function (key) {
619
                         return this._get_settings().core.strings[key] || key;
620
                  },
621
622
                    is_open		: function (obj) { obj = this._get_node(obj); return obj && obj !== -1 && obj.hasClass("jstree-open"); },
623
                     is_closed	: function (obj) { obj = this._get_node(obj); return obj && obj !== -1 && obj.hasClass("jstree-closed"); },
624
                  is_leaf		: function (obj) { obj = this._get_node(obj); return obj && obj !== -1 && obj.hasClass("jstree-leaf"); },
625
                     correct_state	: function (obj) {
626
                               obj = this._get_node(obj);
627
                             if(!obj || obj === -1) { return false; }
628
                               obj.removeClass("jstree-closed jstree-open").addClass("jstree-leaf").children("ul").remove();
629
                          this.__callback({ "obj" : obj });
630
                      },
631
                     // open/close
632
                  open_node	: function (obj, callback, skip_animation) {
633
                         obj = this._get_node(obj);
634
                             if(!obj.length) { return false; }
635
                              if(!obj.hasClass("jstree-closed")) { if(callback) { callback.call(); } return false; }
636
                         var s = skip_animation || is_ie6 ? 0 : this._get_settings().core.animation,
637
                                    t = this;
638
                              if(!this._is_loaded(obj)) {
639
                                    obj.children("a").addClass("jstree-loading");
640
                                  this.load_node(obj, function () { t.open_node(obj, callback, skip_animation); }, callback);
641
                            }
642
                              else {
643
                                 if(this._get_settings().core.open_parents) {
644
                                           obj.parentsUntil(".jstree",".jstree-closed").each(function () {
645
                                                        t.open_node(this, false, true);
646
                                                });
647
                                    }
648
                                      if(s) { obj.children("ul").css("display","none"); }
649
                                    obj.removeClass("jstree-closed").addClass("jstree-open").children("a").removeClass("jstree-loading");
650
                                  if(s) { obj.children("ul").stop(true, true).slideDown(s, function () { this.style.display = ""; t.after_open(obj); }); }
651
                                       else { t.after_open(obj); }
652
                                    this.__callback({ "obj" : obj });
653
                                      if(callback) { callback.call(); }
654
                              }
655
                      },
656
                     after_open	: function (obj) { this.__callback({ "obj" : obj }); },
657
                     close_node	: function (obj, skip_animation) {
658
                          obj = this._get_node(obj);
659
                             var s = skip_animation || is_ie6 ? 0 : this._get_settings().core.animation,
660
                                    t = this;
661
                              if(!obj.length || !obj.hasClass("jstree-open")) { return false; }
662
                              if(s) { obj.children("ul").attr("style","display:block !important"); }
663
                         obj.removeClass("jstree-open").addClass("jstree-closed");
664
                              if(s) { obj.children("ul").stop(true, true).slideUp(s, function () { this.style.display = ""; t.after_close(obj); }); }
665
                                else { t.after_close(obj); }
666
                           this.__callback({ "obj" : obj });
667
                      },
668
                     after_close	: function (obj) { this.__callback({ "obj" : obj }); },
669
                    toggle_node	: function (obj) {
670
                         obj = this._get_node(obj);
671
                             if(obj.hasClass("jstree-closed")) { return this.open_node(obj); }
672
                              if(obj.hasClass("jstree-open")) { return this.close_node(obj); }
673
                       },
674
                     open_all	: function (obj, do_animation, original_obj) {
675
                                obj = obj ? this._get_node(obj) : -1;
676
                          if(!obj || obj === -1) { obj = this.get_container_ul(); }
677
                              if(original_obj) {
678
                                     obj = obj.find("li.jstree-closed");
679
                            }
680
                              else {
681
                                 original_obj = obj;
682
                                    if(obj.is(".jstree-closed")) { obj = obj.find("li.jstree-closed").andSelf(); }
683
                                 else { obj = obj.find("li.jstree-closed"); }
684
                           }
685
                              var _this = this;
686
                              obj.each(function () {
687
                                 var __this = this;
688
                                     if(!_this._is_loaded(this)) { _this.open_node(this, function() { _this.open_all(__this, do_animation, original_obj); }, !do_animation); }
689
                                      else { _this.open_node(this, false, !do_animation); }
690
                          });
691
                            // so that callback is fired AFTER all nodes are open
692
                          if(original_obj.find('li.jstree-closed').length === 0) { this.__callback({ "obj" : original_obj }); }
693
                  },
694
                     close_all	: function (obj, do_animation) {
695
                             var _this = this;
696
                              obj = obj ? this._get_node(obj) : this.get_container();
697
                                if(!obj || obj === -1) { obj = this.get_container_ul(); }
698
                              obj.find("li.jstree-open").andSelf().each(function () { _this.close_node(this, !do_animation); });
699
                             this.__callback({ "obj" : obj });
700
                      },
701
                     clean_node	: function (obj) {
702
                          obj = obj && obj != -1 ? $(obj) : this.get_container_ul();
703
                             obj = obj.is("li") ? obj.find("li").andSelf() : obj.find("li");
704
                                obj.removeClass("jstree-last")
705
                                 .filter("li:last-child").addClass("jstree-last").end()
706
                                 .filter(":has(li)")
707
                                            .not(".jstree-open").removeClass("jstree-leaf").addClass("jstree-closed");
708
                             obj.not(".jstree-open, .jstree-closed").addClass("jstree-leaf").children("ul").remove();
709
                               this.__callback({ "obj" : obj });
710
                      },
711
                     // rollback
712
                    get_rollback : function () {
713
                           this.__callback();
714
                             return { i : this.get_index(), h : this.get_container().children("ul").clone(true), d : this.data };
715
                   },
716
                     set_rollback : function (html, data) {
717
                         this.get_container().empty().append(html);
718
                             this.data = data;
719
                              this.__callback();
720
                     },
721
                     // Dummy functions to be overwritten by any datastore plugin included
722
                  load_node	: function (obj, s_call, e_call) { this.__callback({ "obj" : obj }); },
723
                      _is_loaded	: function (obj) { return true; },
724
725
                 // Basic operations: create
726
                    create_node	: function (obj, position, js, callback, is_loaded) {
727
                              obj = this._get_node(obj);
728
                             position = typeof position === "undefined" ? "last" : position;
729
                                var d = $("<li />"),
730
                                   s = this._get_settings().core,
731
                                 tmp;
732
733
                          if(obj !== -1 && !obj.length) { return false; }
734
                                if(!is_loaded && !this._is_loaded(obj)) { this.load_node(obj, function () { this.create_node(obj, position, js, callback, true); }); return false; }
735
736
                          this.__rollback();
737
738
                            if(typeof js === "string") { js = { "data" : js }; }
739
                           if(!js) { js = {}; }
740
                           if(js.attr) { d.attr(js.attr); }
741
                               if(js.metadata) { d.data(js.metadata); }
742
                               if(js.state) { d.addClass("jstree-" + js.state); }
743
                             if(!js.data) { js.data = this._get_string("new_node"); }
744
                               if(!$.isArray(js.data)) { tmp = js.data; js.data = []; js.data.push(tmp); }
745
                            $.each(js.data, function (i, m) {
746
                                      tmp = $("<a />");
747
                                      if($.isFunction(m)) { m = m.call(this, js); }
748
                                  if(typeof m == "string") { tmp.attr('href','#')[ s.html_titles ? "html" : "text" ](m); }
749
                                       else {
750
                                         if(!m.attr) { m.attr = {}; }
751
                                           if(!m.attr.href) { m.attr.href = '#'; }
752
                                                tmp.attr(m.attr)[ s.html_titles ? "html" : "text" ](m.title);
753
                                          if(m.language) { tmp.addClass(m.language); }
754
                                   }
755
                                      tmp.prepend("<ins class='jstree-icon'>&#160;</ins>");
756
                                  if(!m.icon && js.icon) { m.icon = js.icon; }
757
                                   if(m.icon) {
758
                                           if(m.icon.indexOf("/") === -1) { tmp.children("ins").addClass(m.icon); }
759
                                               else { tmp.children("ins").css("background","url('" + m.icon + "') center center no-repeat"); }
760
                                        }
761
                                      d.append(tmp);
762
                         });
763
                            d.prepend("<ins class='jstree-icon'>&#160;</ins>");
764
                            if(obj === -1) {
765
                                       obj = this.get_container();
766
                                    if(position === "before") { position = "first"; }
767
                                      if(position === "after") { position = "last"; }
768
                                }
769
                              switch(position) {
770
                                     case "before": obj.before(d); tmp = this._get_parent(obj); break;
771
                                      case "after" : obj.after(d);  tmp = this._get_parent(obj); break;
772
                                      case "inside":
773
                                 case "first" :
774
                                         if(!obj.children("ul").length) { obj.append("<ul />"); }
775
                                               obj.children("ul").prepend(d);
776
                                         tmp = obj;
777
                                             break;
778
                                 case "last":
779
                                           if(!obj.children("ul").length) { obj.append("<ul />"); }
780
                                               obj.children("ul").append(d);
781
                                          tmp = obj;
782
                                             break;
783
                                 default:
784
                                               if(!obj.children("ul").length) { obj.append("<ul />"); }
785
                                               if(!position) { position = 0; }
786
                                                tmp = obj.children("ul").children("li").eq(position);
787
                                          if(tmp.length) { tmp.before(d); }
788
                                              else { obj.children("ul").append(d); }
789
                                         tmp = obj;
790
                                             break;
791
                         }
792
                              if(tmp === -1 || tmp.get(0) === this.get_container().get(0)) { tmp = -1; }
793
                             this.clean_node(tmp);
794
                          this.__callback({ "obj" : d, "parent" : tmp });
795
                                if(callback) { callback.call(this, d); }
796
                               return d;
797
                      },
798
                     // Basic operations: rename (deal with text)
799
                   get_text	: function (obj) {
800
                            obj = this._get_node(obj);
801
                             if(!obj.length) { return false; }
802
                              var s = this._get_settings().core.html_titles;
803
                         obj = obj.children("a:eq(0)");
804
                         if(s) {
805
                                        obj = obj.clone();
806
                                     obj.children("INS").remove();
807
                                  return obj.html();
808
                             }
809
                              else {
810
                                 obj = obj.contents().filter(function() { return this.nodeType == 3; })[0];
811
                                     return obj.nodeValue;
812
                          }
813
                      },
814
                     set_text	: function (obj, val) {
815
                               obj = this._get_node(obj);
816
                             if(!obj.length) { return false; }
817
                              obj = obj.children("a:eq(0)");
818
                         if(this._get_settings().core.html_titles) {
819
                                    var tmp = obj.children("INS").clone();
820
                                 obj.html(val).prepend(tmp);
821
                                    this.__callback({ "obj" : obj, "name" : val });
822
                                        return true;
823
                           }
824
                              else {
825
                                 obj = obj.contents().filter(function() { return this.nodeType == 3; })[0];
826
                                     this.__callback({ "obj" : obj, "name" : val });
827
                                        return (obj.nodeValue = val);
828
                          }
829
                      },
830
                     rename_node : function (obj, val) {
831
                            obj = this._get_node(obj);
832
                             this.__rollback();
833
                             if(obj && obj.length && this.set_text.apply(this, Array.prototype.slice.call(arguments))) { this.__callback({ "obj" : obj, "name" : val }); }
834
                  },
835
                     // Basic operations: deleting nodes
836
                    delete_node : function (obj) {
837
                         obj = this._get_node(obj);
838
                             if(!obj.length) { return false; }
839
                              this.__rollback();
840
                             var p = this._get_parent(obj), prev = $([]), t = this;
841
                         obj.each(function () {
842
                                 prev = prev.add(t._get_prev(this));
843
                            });
844
                            obj = obj.detach();
845
                            if(p !== -1 && p.find("> ul > li").length === 0) {
846
                                     p.removeClass("jstree-open jstree-closed").addClass("jstree-leaf");
847
                            }
848
                              this.clean_node(p);
849
                            this.__callback({ "obj" : obj, "prev" : prev, "parent" : p });
850
                         return obj;
851
                    },
852
                     prepare_move : function (o, r, pos, cb, is_cb) {
853
                               var p = {};
854
855
                           p.ot = $.jstree._reference(o) || this;
856
                         p.o = p.ot._get_node(o);
857
                               p.r = r === - 1 ? -1 : this._get_node(r);
858
                              p.p = (typeof pos === "undefined" || pos === false) ? "last" : pos; // TODO: move to a setting
859
                         if(!is_cb && prepared_move.o && prepared_move.o[0] === p.o[0] && prepared_move.r[0] === p.r[0] && prepared_move.p === p.p) {
860
                                   this.__callback(prepared_move);
861
                                        if(cb) { cb.call(this, prepared_move); }
862
                                       return;
863
                                }
864
                              p.ot = $.jstree._reference(p.o) || this;
865
                               p.rt = $.jstree._reference(p.r) || this; // r === -1 ? p.ot : $.jstree._reference(p.r) || this
866
                         if(p.r === -1 || !p.r) {
867
                                       p.cr = -1;
868
                                     switch(p.p) {
869
                                          case "first":
870
                                          case "before":
871
                                         case "inside":
872
                                                 p.cp = 0;
873
                                                      break;
874
                                         case "after":
875
                                          case "last":
876
                                                   p.cp = p.rt.get_container().find(" > ul > li").length;
877
                                                 break;
878
                                         default:
879
                                                       p.cp = p.p;
880
                                                    break;
881
                                 }
882
                              }
883
                              else {
884
                                 if(!/^(before|after)$/.test(p.p) && !this._is_loaded(p.r)) {
885
                                           return this.load_node(p.r, function () { this.prepare_move(o, r, pos, cb, true); });
886
                                   }
887
                                      switch(p.p) {
888
                                          case "before":
889
                                                 p.cp = p.r.index();
890
                                                    p.cr = p.rt._get_parent(p.r);
891
                                                  break;
892
                                         case "after":
893
                                                  p.cp = p.r.index() + 1;
894
                                                        p.cr = p.rt._get_parent(p.r);
895
                                                  break;
896
                                         case "inside":
897
                                         case "first":
898
                                                  p.cp = 0;
899
                                                      p.cr = p.r;
900
                                                    break;
901
                                         case "last":
902
                                                   p.cp = p.r.find(" > ul > li").length;
903
                                                  p.cr = p.r;
904
                                                    break;
905
                                         default:
906
                                                       p.cp = p.p;
907
                                                    p.cr = p.r;
908
                                                    break;
909
                                 }
910
                              }
911
                              p.np = p.cr == -1 ? p.rt.get_container() : p.cr;
912
                               p.op = p.ot._get_parent(p.o);
913
                          p.cop = p.o.index();
914
                           if(p.op === -1) { p.op = p.ot ? p.ot.get_container() : this.get_container(); }
915
                         if(!/^(before|after)$/.test(p.p) && p.op && p.np && p.op[0] === p.np[0] && p.o.index() < p.cp) { p.cp++; }
916
                             //if(p.p === "before" && p.op && p.np && p.op[0] === p.np[0] && p.o.index() < p.cp) { p.cp--; }
917
                                p.or = p.np.find(" > ul > li:nth-child(" + (p.cp + 1) + ")");
918
                          prepared_move = p;
919
                             this.__callback(prepared_move);
920
                                if(cb) { cb.call(this, prepared_move); }
921
                       },
922
                     check_move : function () {
923
                             var obj = prepared_move, ret = true, r = obj.r === -1 ? this.get_container() : obj.r;
924
                          if(!obj || !obj.o || obj.or[0] === obj.o[0]) { return false; }
925
                         if(obj.op && obj.np && obj.op[0] === obj.np[0] && obj.cp - 1 === obj.o.index()) { return false; }
926
                              obj.o.each(function () {
927
                                       if(r.parentsUntil(".jstree", "li").andSelf().index(this) !== -1) { ret = false; return false; }
928
                                });
929
                            return ret;
930
                    },
931
                     move_node : function (obj, ref, position, is_copy, is_prepared, skip_check) {
932
                          if(!is_prepared) {
933
                                     return this.prepare_move(obj, ref, position, function (p) {
934
                                            this.move_node(p, false, false, is_copy, true, skip_check);
935
                                    });
936
                            }
937
                              if(is_copy) {
938
                                  prepared_move.cy = true;
939
                               }
940
                              if(!skip_check && !this.check_move()) { return false; }
941
942
                               this.__rollback();
943
                             var o = false;
944
                         if(is_copy) {
945
                                  o = obj.o.clone(true);
946
                                 o.find("*[id]").andSelf().each(function () {
947
                                           if(this.id) { this.id = "copy_" + this.id; }
948
                                   });
949
                            }
950
                              else { o = obj.o; }
951
952
                           if(obj.or.length) { obj.or.before(o); }
953
                                else {
954
                                 if(!obj.np.children("ul").length) { $("<ul />").appendTo(obj.np); }
955
                                    obj.np.children("ul:eq(0)").append(o);
956
                         }
957
958
                             try {
959
                                  obj.ot.clean_node(obj.op);
960
                                     obj.rt.clean_node(obj.np);
961
                                     if(!obj.op.find("> ul > li").length) {
962
                                         obj.op.removeClass("jstree-open jstree-closed").addClass("jstree-leaf").children("ul").remove();
963
                                       }
964
                              } catch (e) { }
965
966
                               if(is_copy) {
967
                                  prepared_move.cy = true;
968
                                       prepared_move.oc = o;
969
                          }
970
                              this.__callback(prepared_move);
971
                                return prepared_move;
972
                  },
973
                     _get_move : function () { return prepared_move; }
974
              }
975
      });
976
})(jQuery);
977
//*/
978
979
/*
980
 * jsTree ui plugin
981
 * This plugins handles selecting/deselecting/hovering/dehovering nodes
982
 */
983
(function ($) {
984
       var scrollbar_width, e1, e2;
985
   $(function() {
986
         if (/msie/.test(navigator.userAgent.toLowerCase())) {
987
                  e1 = $('<textarea cols="10" rows="2"></textarea>').css({ position: 'absolute', top: -1000, left: 0 }).appendTo('body');
988
                        e2 = $('<textarea cols="10" rows="2" style="overflow: hidden;"></textarea>').css({ position: 'absolute', top: -1000, left: 0 }).appendTo('body');
989
                      scrollbar_width = e1.width() - e2.width();
990
                     e1.add(e2).remove();
991
           }
992
              else {
993
                 e1 = $('<div />').css({ width: 100, height: 100, overflow: 'auto', position: 'absolute', top: -1000, left: 0 })
994
                                        .prependTo('body').append('<div />').find('div').css({ width: '100%', height: 200 });
995
                  scrollbar_width = 100 - e1.width();
996
                    e1.parent().remove();
997
          }
998
      });
999
    $.jstree.plugin("ui", {
1000
                __init : function () {
1001
                 this.data.ui.selected = $();
1002
                   this.data.ui.last_selected = false;
1003
                    this.data.ui.hovered = null;
1004
                   this.data.ui.to_select = this.get_settings().ui.initially_select;
1005
1006
                     this.get_container()
1007
                           .delegate("a", "click.jstree", $.proxy(function (event) {
1008
                                              event.preventDefault();
1009
                                                event.currentTarget.blur();
1010
                                            if(!$(event.currentTarget).hasClass("jstree-loading")) {
1011
                                                       this.select_node(event.currentTarget, true, event);
1012
                                            }
1013
                                      }, this))
1014
                              .delegate("a", "mouseenter.jstree", $.proxy(function (event) {
1015
                                         if(!$(event.currentTarget).hasClass("jstree-loading")) {
1016
                                                       this.hover_node(event.target);
1017
                                         }
1018
                                      }, this))
1019
                              .delegate("a", "mouseleave.jstree", $.proxy(function (event) {
1020
                                         if(!$(event.currentTarget).hasClass("jstree-loading")) {
1021
                                                       this.dehover_node(event.target);
1022
                                               }
1023
                                      }, this))
1024
                              .bind("reopen.jstree", $.proxy(function () {
1025
                                           this.reselect();
1026
                                       }, this))
1027
                              .bind("get_rollback.jstree", $.proxy(function () {
1028
                                             this.dehover_node();
1029
                                           this.save_selected();
1030
                                  }, this))
1031
                              .bind("set_rollback.jstree", $.proxy(function () {
1032
                                             this.reselect();
1033
                                       }, this))
1034
                              .bind("close_node.jstree", $.proxy(function (event, data) {
1035
                                            var s = this._get_settings().ui,
1036
                                                       obj = this._get_node(data.rslt.obj),
1037
                                                   clk = (obj && obj.length) ? obj.children("ul").find("a.jstree-clicked") : $(),
1038
                                                 _this = this;
1039
                                          if(s.selected_parent_close === false || !clk.length) { return; }
1040
                                               clk.each(function () {
1041
                                                 _this.deselect_node(this);
1042
                                                     if(s.selected_parent_close === "select_parent") { _this.select_node(obj); }
1043
                                            });
1044
                                    }, this))
1045
                              .bind("delete_node.jstree", $.proxy(function (event, data) {
1046
                                           var s = this._get_settings().ui.select_prev_on_delete,
1047
                                                 obj = this._get_node(data.rslt.obj),
1048
                                                   clk = (obj && obj.length) ? obj.find("a.jstree-clicked") : [],
1049
                                                 _this = this;
1050
                                          clk.each(function () { _this.deselect_node(this); });
1051
                                          if(s && clk.length) {
1052
                                                  data.rslt.prev.each(function () {
1053
                                                              if(this.parentNode) { _this.select_node(this); return false; /* if return false is removed all prev nodes will be selected */}
1054
                                                 });
1055
                                            }
1056
                                      }, this))
1057
                              .bind("move_node.jstree", $.proxy(function (event, data) {
1058
                                             if(data.rslt.cy) {
1059
                                                     data.rslt.oc.find("a.jstree-clicked").removeClass("jstree-clicked");
1060
                                           }
1061
                                      }, this));
1062
             },
1063
             defaults : {
1064
                   select_limit : -1, // 0, 1, 2 ... or -1 for unlimited
1065
                  select_multiple_modifier : "ctrl", // on, or ctrl, shift, alt
1066
                  select_range_modifier : "shift",
1067
                       selected_parent_close : "select_parent", // false, "deselect", "select_parent"
1068
                 selected_parent_open : true,
1069
                   select_prev_on_delete : true,
1070
                  disable_selecting_children : false,
1071
                    initially_select : []
1072
          },
1073
             _fn : {
1074
                        _get_node : function (obj, allow_multiple) {
1075
                           if(typeof obj === "undefined" || obj === null) { return allow_multiple ? this.data.ui.selected : this.data.ui.last_selected; }
1076
                         var $obj = $(obj, this.get_container());
1077
                               if($obj.is(".jstree") || obj == -1) { return -1; }
1078
                             $obj = $obj.closest("li", this.get_container());
1079
                               return $obj.length ? $obj : false;
1080
                     },
1081
                     _ui_notify : function (n, data) {
1082
                              if(data.selected) {
1083
                                    this.select_node(n, false);
1084
                            }
1085
                      },
1086
                     save_selected : function () {
1087
                          var _this = this;
1088
                              this.data.ui.to_select = [];
1089
                           this.data.ui.selected.each(function () { if(this.id) { _this.data.ui.to_select.push("#" + this.id.toString().replace(/^#/,"").replace(/\\\//g,"/").replace(/\//g,"\\\/").replace(/\\\./g,".").replace(/\./g,"\\.").replace(/\:/g,"\\:")); } });
1090
                                this.__callback(this.data.ui.to_select);
1091
                       },
1092
                     reselect : function () {
1093
                               var _this = this,
1094
                                      s = this.data.ui.to_select;
1095
                            s = $.map($.makeArray(s), function (n) { return "#" + n.toString().replace(/^#/,"").replace(/\\\//g,"/").replace(/\//g,"\\\/").replace(/\\\./g,".").replace(/\./g,"\\.").replace(/\:/g,"\\:"); });
1096
                             // this.deselect_all(); WHY deselect, breaks plugin state notifier?
1097
                            $.each(s, function (i, val) { if(val && val !== "#") { _this.select_node(val); } });
1098
                           this.data.ui.selected = this.data.ui.selected.filter(function () { return this.parentNode; });
1099
                         this.__callback();
1100
                     },
1101
                     refresh : function (obj) {
1102
                             this.save_selected();
1103
                          return this.__call_old();
1104
                      },
1105
                     hover_node : function (obj) {
1106
                          obj = this._get_node(obj);
1107
                             if(!obj.length) { return false; }
1108
                              //if(this.data.ui.hovered && obj.get(0) === this.data.ui.hovered.get(0)) { return; }
1109
                           if(!obj.hasClass("jstree-hovered")) { this.dehover_node(); }
1110
                           this.data.ui.hovered = obj.children("a").addClass("jstree-hovered").parent();
1111
                          this._fix_scroll(obj);
1112
                         this.__callback({ "obj" : obj });
1113
                      },
1114
                     dehover_node : function () {
1115
                           var obj = this.data.ui.hovered, p;
1116
                             if(!obj || !obj.length) { return false; }
1117
                              p = obj.children("a").removeClass("jstree-hovered").parent();
1118
                          if(this.data.ui.hovered[0] === p[0]) { this.data.ui.hovered = null; }
1119
                          this.__callback({ "obj" : obj });
1120
                      },
1121
                     select_node : function (obj, check, e) {
1122
                               obj = this._get_node(obj);
1123
                             if(obj == -1 || !obj || !obj.length) { return false; }
1124
                         var s = this._get_settings().ui,
1125
                                       is_multiple = (s.select_multiple_modifier == "on" || (s.select_multiple_modifier !== false && e && e[s.select_multiple_modifier + "Key"])),
1126
                                    is_range = (s.select_range_modifier !== false && e && e[s.select_range_modifier + "Key"] && this.data.ui.last_selected && this.data.ui.last_selected[0] !== obj[0] && this.data.ui.last_selected.parent()[0] === obj.parent()[0]),
1127
                                     is_selected = this.is_selected(obj),
1128
                                   proceed = true,
1129
                                        t = this;
1130
                              if(check) {
1131
                                    if(s.disable_selecting_children && is_multiple &&
1132
                                              (
1133
                                                      (obj.parentsUntil(".jstree","li").children("a.jstree-clicked").length) ||
1134
                                                      (obj.children("ul").find("a.jstree-clicked:eq(0)").length)
1135
                                             )
1136
                                      ) {
1137
                                            return false;
1138
                                  }
1139
                                      proceed = false;
1140
                                       switch(!0) {
1141
                                           case (is_range):
1142
                                                       this.data.ui.last_selected.addClass("jstree-last-selected");
1143
                                                   obj = obj[ obj.index() < this.data.ui.last_selected.index() ? "nextUntil" : "prevUntil" ](".jstree-last-selected").andSelf();
1144
                                                  if(s.select_limit == -1 || obj.length < s.select_limit) {
1145
                                                              this.data.ui.last_selected.removeClass("jstree-last-selected");
1146
                                                                this.data.ui.selected.each(function () {
1147
                                                                       if(this !== t.data.ui.last_selected[0]) { t.deselect_node(this); }
1148
                                                             });
1149
                                                            is_selected = false;
1150
                                                           proceed = true;
1151
                                                        }
1152
                                                      else {
1153
                                                         proceed = false;
1154
                                                       }
1155
                                                      break;
1156
                                         case (is_selected && !is_multiple):
1157
                                                    this.deselect_all();
1158
                                                   is_selected = false;
1159
                                                   proceed = true;
1160
                                                        break;
1161
                                         case (!is_selected && !is_multiple):
1162
                                                   if(s.select_limit == -1 || s.select_limit > 0) {
1163
                                                               this.deselect_all();
1164
                                                           proceed = true;
1165
                                                        }
1166
                                                      break;
1167
                                         case (is_selected && is_multiple):
1168
                                                     this.deselect_node(obj);
1169
                                                       break;
1170
                                         case (!is_selected && is_multiple):
1171
                                                    if(s.select_limit == -1 || this.data.ui.selected.length + 1 <= s.select_limit) {
1172
                                                               proceed = true;
1173
                                                        }
1174
                                                      break;
1175
                                 }
1176
                              }
1177
                              if(proceed && !is_selected) {
1178
                                  if(!is_range) { this.data.ui.last_selected = obj; }
1179
                                    obj.children("a").addClass("jstree-clicked");
1180
                                  if(s.selected_parent_open) {
1181
                                           obj.parents(".jstree-closed").each(function () { t.open_node(this, false, true); });
1182
                                   }
1183
                                      this.data.ui.selected = this.data.ui.selected.add(obj);
1184
                                        this._fix_scroll(obj.eq(0));
1185
                                   this.__callback({ "obj" : obj, "e" : e });
1186
                             }
1187
                      },
1188
                     _fix_scroll : function (obj) {
1189
                         var c = this.get_container()[0], t;
1190
                            if(c.scrollHeight > c.offsetHeight) {
1191
                                  obj = this._get_node(obj);
1192
                                     if(!obj || obj === -1 || !obj.length || !obj.is(":visible")) { return; }
1193
                                       t = obj.offset().top - this.get_container().offset().top;
1194
                                      if(t < 0) {
1195
                                            c.scrollTop = c.scrollTop + t - 1;
1196
                                     }
1197
                                      if(t + this.data.core.li_height + (c.scrollWidth > c.offsetWidth ? scrollbar_width : 0) > c.offsetHeight) {
1198
                                            c.scrollTop = c.scrollTop + (t - c.offsetHeight + this.data.core.li_height + 1 + (c.scrollWidth > c.offsetWidth ? scrollbar_width : 0));
1199
                                       }
1200
                              }
1201
                      },
1202
                     deselect_node : function (obj) {
1203
                               obj = this._get_node(obj);
1204
                             if(!obj.length) { return false; }
1205
                              if(this.is_selected(obj)) {
1206
                                    obj.children("a").removeClass("jstree-clicked");
1207
                                       this.data.ui.selected = this.data.ui.selected.not(obj);
1208
                                        if(this.data.ui.last_selected.get(0) === obj.get(0)) { this.data.ui.last_selected = this.data.ui.selected.eq(0); }
1209
                                     this.__callback({ "obj" : obj });
1210
                              }
1211
                      },
1212
                     toggle_select : function (obj) {
1213
                               obj = this._get_node(obj);
1214
                             if(!obj.length) { return false; }
1215
                              if(this.is_selected(obj)) { this.deselect_node(obj); }
1216
                         else { this.select_node(obj); }
1217
                        },
1218
                     is_selected : function (obj) { return this.data.ui.selected.index(this._get_node(obj)) >= 0; },
1219
                        get_selected : function (context) {
1220
                            return context ? $(context).find("a.jstree-clicked").parent() : this.data.ui.selected;
1221
                 },
1222
                     deselect_all : function (context) {
1223
                            var ret = context ? $(context).find("a.jstree-clicked").parent() : this.get_container().find("a.jstree-clicked").parent();
1224
                             ret.children("a.jstree-clicked").removeClass("jstree-clicked");
1225
                                this.data.ui.selected = $([]);
1226
                         this.data.ui.last_selected = false;
1227
                            this.__callback({ "obj" : ret });
1228
                      }
1229
              }
1230
      });
1231
    // include the selection plugin by default
1232
     $.jstree.defaults.plugins.push("ui");
1233
})(jQuery);
1234
//*/
1235
1236
/*
1237
 * jsTree CRRM plugin
1238
 * Handles creating/renaming/removing/moving nodes by user interaction.
1239
 */
1240
(function ($) {
1241
   $.jstree.plugin("crrm", {
1242
              __init : function () {
1243
                 this.get_container()
1244
                           .bind("move_node.jstree", $.proxy(function (e, data) {
1245
                                 if(this._get_settings().crrm.move.open_onmove) {
1246
                                               var t = this;
1247
                                          data.rslt.np.parentsUntil(".jstree").andSelf().filter(".jstree-closed").each(function () {
1248
                                                     t.open_node(this, false, true);
1249
                                                });
1250
                                    }
1251
                              }, this));
1252
             },
1253
             defaults : {
1254
                   input_width_limit : 200,
1255
                       move : {
1256
                               always_copy			: false, // false, true or "multitree"
1257
                           open_onmove			: true,
1258
                          default_position	: "last",
1259
                             check_move			: function (m) { return true; }
1260
                   }
1261
              },
1262
             _fn : {
1263
                        _show_input : function (obj, callback) {
1264
                               obj = this._get_node(obj);
1265
                             var rtl = this._get_settings().core.rtl,
1266
                                       w = this._get_settings().crrm.input_width_limit,
1267
                                       w1 = obj.children("ins").width(),
1268
                                      w2 = obj.find("> a:visible > ins").width() * obj.find("> a:visible > ins").length,
1269
                                     t = this.get_text(obj),
1270
                                        h1 = $("<div />", { css : { "position" : "absolute", "top" : "-200px", "left" : (rtl ? "0px" : "-1000px"), "visibility" : "hidden" } }).appendTo("body"),
1271
                                      h2 = obj.css("position","relative").append(
1272
                                    $("<input />", {
1273
                                               "value" : t,
1274
                                           "class" : "jstree-rename-input",
1275
                                               // "size" : t.length,
1276
                                          "css" : {
1277
                                                      "padding" : "0",
1278
                                                       "border" : "1px solid silver",
1279
                                                 "position" : "absolute",
1280
                                                       "left"  : (rtl ? "auto" : (w1 + w2 + 4) + "px"),
1281
                                                       "right" : (rtl ? (w1 + w2 + 4) + "px" : "auto"),
1282
                                                       "top" : "0px",
1283
                                                 "height" : (this.data.core.li_height - 2) + "px",
1284
                                                      "lineHeight" : (this.data.core.li_height - 2) + "px",
1285
                                                  "width" : "150px" // will be set a bit further down
1286
                                            },
1287
                                             "blur" : $.proxy(function () {
1288
                                                 var i = obj.children(".jstree-rename-input"),
1289
                                                          v = i.val();
1290
                                                   if(v === "") { v = t; }
1291
                                                        h1.remove();
1292
                                                   i.remove(); // rollback purposes
1293
                                                       this.set_text(obj,t); // rollback purposes
1294
                                                     this.rename_node(obj, v);
1295
                                                      callback.call(this, obj, v, t);
1296
                                                        obj.css("position","");
1297
                                                }, this),
1298
                                              "keyup" : function (event) {
1299
                                                   var key = event.keyCode || event.which;
1300
                                                        if(key == 27) { this.value = t; this.blur(); return; }
1301
                                                 else if(key == 13) { this.blur(); return; }
1302
                                                    else {
1303
                                                         h2.width(Math.min(h1.text("pW" + this.value).width(),w));
1304
                                                      }
1305
                                              },
1306
                                             "keypress" : function(event) {
1307
                                                 var key = event.keyCode || event.which;
1308
                                                        if(key == 13) { return false; }
1309
                                                }
1310
                                      })
1311
                             ).children(".jstree-rename-input");
1312
                            this.set_text(obj, "");
1313
                                h1.css({
1314
                                               fontFamily		: h2.css('fontFamily')		|| '',
1315
                                             fontSize		: h2.css('fontSize')		|| '',
1316
                                         fontWeight		: h2.css('fontWeight')		|| '',
1317
                                             fontStyle		: h2.css('fontStyle')		|| '',
1318
                                               fontStretch		: h2.css('fontStretch')		|| '',
1319
                                           fontVariant		: h2.css('fontVariant')		|| '',
1320
                                           letterSpacing	: h2.css('letterSpacing')	|| '',
1321
                                         wordSpacing		: h2.css('wordSpacing')		|| ''
1322
                            });
1323
                            h2.width(Math.min(h1.text("pW" + h2[0].value).width(),w))[0].select();
1324
                 },
1325
                     rename : function (obj) {
1326
                              obj = this._get_node(obj);
1327
                             this.__rollback();
1328
                             var f = this.__callback;
1329
                               this._show_input(obj, function (obj, new_name, old_name) {
1330
                                     f.call(this, { "obj" : obj, "new_name" : new_name, "old_name" : old_name });
1331
                           });
1332
                    },
1333
                     create : function (obj, position, js, callback, skip_rename) {
1334
                         var t, _this = this;
1335
                           obj = this._get_node(obj);
1336
                             if(!obj) { obj = -1; }
1337
                         this.__rollback();
1338
                             t = this.create_node(obj, position, js, function (t) {
1339
                                 var p = this._get_parent(t),
1340
                                           pos = $(t).index();
1341
                                    if(callback) { callback.call(this, t); }
1342
                                       if(p.length && p.hasClass("jstree-closed")) { this.open_node(p, false, true); }
1343
                                        if(!skip_rename) {
1344
                                             this._show_input(t, function (obj, new_name, old_name) {
1345
                                                       _this.__callback({ "obj" : obj, "name" : new_name, "parent" : p, "position" : pos });
1346
                                          });
1347
                                    }
1348
                                      else { _this.__callback({ "obj" : t, "name" : this.get_text(t), "parent" : p, "position" : pos }); }
1349
                           });
1350
                            return t;
1351
                      },
1352
                     remove : function (obj) {
1353
                              obj = this._get_node(obj, true);
1354
                               var p = this._get_parent(obj), prev = this._get_prev(obj);
1355
                             this.__rollback();
1356
                             obj = this.delete_node(obj);
1357
                           if(obj !== false) { this.__callback({ "obj" : obj, "prev" : prev, "parent" : p }); }
1358
                   },
1359
                     check_move : function () {
1360
                             if(!this.__call_old()) { return false; }
1361
                               var s = this._get_settings().crrm.move;
1362
                                if(!s.check_move.call(this, this._get_move())) { return false; }
1363
                               return true;
1364
                   },
1365
                     move_node : function (obj, ref, position, is_copy, is_prepared, skip_check) {
1366
                          var s = this._get_settings().crrm.move;
1367
                                if(!is_prepared) {
1368
                                     if(typeof position === "undefined") { position = s.default_position; }
1369
                                 if(position === "inside" && !s.default_position.match(/^(before|after)$/)) { position = s.default_position; }
1370
                                  return this.__call_old(true, obj, ref, position, is_copy, false, skip_check);
1371
                          }
1372
                              // if the move is already prepared
1373
                             if(s.always_copy === true || (s.always_copy === "multitree" && obj.rt.get_index() !== obj.ot.get_index() )) {
1374
                                  is_copy = true;
1375
                                }
1376
                              this.__call_old(true, obj, ref, position, is_copy, true, skip_check);
1377
                  },
1378
1379
                    cut : function (obj) {
1380
                         obj = this._get_node(obj, true);
1381
                               if(!obj || !obj.length) { return false; }
1382
                              this.data.crrm.cp_nodes = false;
1383
                               this.data.crrm.ct_nodes = obj;
1384
                         this.__callback({ "obj" : obj });
1385
                      },
1386
                     copy : function (obj) {
1387
                                obj = this._get_node(obj, true);
1388
                               if(!obj || !obj.length) { return false; }
1389
                              this.data.crrm.ct_nodes = false;
1390
                               this.data.crrm.cp_nodes = obj;
1391
                         this.__callback({ "obj" : obj });
1392
                      },
1393
                     paste : function (obj) {
1394
                               obj = this._get_node(obj);
1395
                             if(!obj || !obj.length) { return false; }
1396
                              var nodes = this.data.crrm.ct_nodes ? this.data.crrm.ct_nodes : this.data.crrm.cp_nodes;
1397
                               if(!this.data.crrm.ct_nodes && !this.data.crrm.cp_nodes) { return false; }
1398
                             if(this.data.crrm.ct_nodes) { this.move_node(this.data.crrm.ct_nodes, obj); this.data.crrm.ct_nodes = false; }
1399
                         if(this.data.crrm.cp_nodes) { this.move_node(this.data.crrm.cp_nodes, obj, false, true); }
1400
                             this.__callback({ "obj" : obj, "nodes" : nodes });
1401
                     }
1402
              }
1403
      });
1404
    // include the crr plugin by default
1405
   // $.jstree.defaults.plugins.push("crrm");
1406
})(jQuery);
1407
//*/
1408
1409
/*
1410
 * jsTree themes plugin
1411
 * Handles loading and setting themes, as well as detecting path to themes, etc.
1412
 */
1413
(function ($) {
1414
   var themes_loaded = [];
1415
        // this variable stores the path to the themes folder - if left as false - it will be autodetected
1416
     $.jstree._themes = false;
1417
      $.jstree.plugin("themes", {
1418
            __init : function () {
1419
                 this.get_container()
1420
                           .bind("init.jstree", $.proxy(function () {
1421
                                             var s = this._get_settings().themes;
1422
                                           this.data.themes.dots = s.dots;
1423
                                                this.data.themes.icons = s.icons;
1424
                                              this.set_theme(s.theme, s.url);
1425
                                        }, this))
1426
                              .bind("loaded.jstree", $.proxy(function () {
1427
                                           // bound here too, as simple HTML tree's won't honor dots & icons otherwise
1428
                                            if(!this.data.themes.dots) { this.hide_dots(); }
1429
                                               else { this.show_dots(); }
1430
                                             if(!this.data.themes.icons) { this.hide_icons(); }
1431
                                             else { this.show_icons(); }
1432
                                    }, this));
1433
             },
1434
             defaults : {
1435
                   theme : "default",
1436
                     url : false,
1437
                   dots : true,
1438
                   icons : true
1439
           },
1440
             _fn : {
1441
                        set_theme : function (theme_name, theme_url) {
1442
                         if(!theme_name) { return false; }
1443
                              if(!theme_url) { theme_url = $.jstree._themes + theme_name + '/style.css'; }
1444
                           if($.inArray(theme_url, themes_loaded) == -1) {
1445
                                        $.vakata.css.add_sheet({ "url" : theme_url });
1446
                                 themes_loaded.push(theme_url);
1447
                         }
1448
                              if(this.data.themes.theme != theme_name) {
1449
                                     this.get_container().removeClass('jstree-' + this.data.themes.theme);
1450
                                  this.data.themes.theme = theme_name;
1451
                           }
1452
                              this.get_container().addClass('jstree-' + theme_name);
1453
                         if(!this.data.themes.dots) { this.hide_dots(); }
1454
                               else { this.show_dots(); }
1455
                             if(!this.data.themes.icons) { this.hide_icons(); }
1456
                             else { this.show_icons(); }
1457
                            this.__callback();
1458
                     },
1459
                     get_theme	: function () { return this.data.themes.theme; },
1460
1461
                   show_dots	: function () { this.data.themes.dots = true; this.get_container().children("ul").removeClass("jstree-no-dots"); },
1462
                  hide_dots	: function () { this.data.themes.dots = false; this.get_container().children("ul").addClass("jstree-no-dots"); },
1463
                    toggle_dots	: function () { if(this.data.themes.dots) { this.hide_dots(); } else { this.show_dots(); } },
1464
1465
                     show_icons	: function () { this.data.themes.icons = true; this.get_container().children("ul").removeClass("jstree-no-icons"); },
1466
                       hide_icons	: function () { this.data.themes.icons = false; this.get_container().children("ul").addClass("jstree-no-icons"); },
1467
                 toggle_icons: function () { if(this.data.themes.icons) { this.hide_icons(); } else { this.show_icons(); } }
1468
            }
1469
      });
1470
    // autodetect themes path
1471
      $(function () {
1472
                if($.jstree._themes === false) {
1473
                       $("script").each(function () {
1474
                         if(this.src.toString().match(/jquery\.jstree[^\/]*?\.js(\?.*)?$/)) {
1475
                                   $.jstree._themes = this.src.toString().replace(/jquery\.jstree[^\/]*?\.js(\?.*)?$/, "") + 'themes/';
1476
                                   return false;
1477
                          }
1478
                      });
1479
            }
1480
              if($.jstree._themes === false) { $.jstree._themes = "themes/"; }
1481
       });
1482
    // include the themes plugin by default
1483
        $.jstree.defaults.plugins.push("themes");
1484
})(jQuery);
1485
//*/
1486
1487
/*
1488
 * jsTree hotkeys plugin
1489
 * Enables keyboard navigation for all tree instances
1490
 * Depends on the jstree ui & jquery hotkeys plugins
1491
 */
1492
(function ($) {
1493
 var bound = [];
1494
        function exec(i, event) {
1495
              var f = $.jstree._focused(), tmp;
1496
              if(f && f.data && f.data.hotkeys && f.data.hotkeys.enabled) {
1497
                  tmp = f._get_settings().hotkeys[i];
1498
                    if(tmp) { return tmp.call(f, event); }
1499
         }
1500
      }
1501
      $.jstree.plugin("hotkeys", {
1502
           __init : function () {
1503
                 if(typeof $.hotkeys === "undefined") { throw "jsTree hotkeys: jQuery hotkeys plugin not included."; }
1504
                  if(!this.data.ui) { throw "jsTree hotkeys: jsTree UI plugin not included."; }
1505
                  $.each(this._get_settings().hotkeys, function (i, v) {
1506
                         if(v !== false && $.inArray(i, bound) == -1) {
1507
                                 $(document).bind("keydown", i, function (event) { return exec(i, event); });
1508
                                   bound.push(i);
1509
                         }
1510
                      });
1511
                    this.get_container()
1512
                           .bind("lock.jstree", $.proxy(function () {
1513
                                             if(this.data.hotkeys.enabled) { this.data.hotkeys.enabled = false; this.data.hotkeys.revert = true; }
1514
                                  }, this))
1515
                              .bind("unlock.jstree", $.proxy(function () {
1516
                                           if(this.data.hotkeys.revert) { this.data.hotkeys.enabled = true; }
1517
                                     }, this));
1518
                     this.enable_hotkeys();
1519
         },
1520
             defaults : {
1521
                   "up" : function () {
1522
                           var o = this.data.ui.hovered || this.data.ui.last_selected || -1;
1523
                              this.hover_node(this._get_prev(o));
1524
                            return false;
1525
                  },
1526
                     "ctrl+up" : function () {
1527
                              var o = this.data.ui.hovered || this.data.ui.last_selected || -1;
1528
                              this.hover_node(this._get_prev(o));
1529
                            return false;
1530
                  },
1531
                     "shift+up" : function () {
1532
                             var o = this.data.ui.hovered || this.data.ui.last_selected || -1;
1533
                              this.hover_node(this._get_prev(o));
1534
                            return false;
1535
                  },
1536
                     "down" : function () {
1537
                         var o = this.data.ui.hovered || this.data.ui.last_selected || -1;
1538
                              this.hover_node(this._get_next(o));
1539
                            return false;
1540
                  },
1541
                     "ctrl+down" : function () {
1542
                            var o = this.data.ui.hovered || this.data.ui.last_selected || -1;
1543
                              this.hover_node(this._get_next(o));
1544
                            return false;
1545
                  },
1546
                     "shift+down" : function () {
1547
                           var o = this.data.ui.hovered || this.data.ui.last_selected || -1;
1548
                              this.hover_node(this._get_next(o));
1549
                            return false;
1550
                  },
1551
                     "left" : function () {
1552
                         var o = this.data.ui.hovered || this.data.ui.last_selected;
1553
                            if(o) {
1554
                                        if(o.hasClass("jstree-open")) { this.close_node(o); }
1555
                                  else { this.hover_node(this._get_prev(o)); }
1556
                           }
1557
                              return false;
1558
                  },
1559
                     "ctrl+left" : function () {
1560
                            var o = this.data.ui.hovered || this.data.ui.last_selected;
1561
                            if(o) {
1562
                                        if(o.hasClass("jstree-open")) { this.close_node(o); }
1563
                                  else { this.hover_node(this._get_prev(o)); }
1564
                           }
1565
                              return false;
1566
                  },
1567
                     "shift+left" : function () {
1568
                           var o = this.data.ui.hovered || this.data.ui.last_selected;
1569
                            if(o) {
1570
                                        if(o.hasClass("jstree-open")) { this.close_node(o); }
1571
                                  else { this.hover_node(this._get_prev(o)); }
1572
                           }
1573
                              return false;
1574
                  },
1575
                     "right" : function () {
1576
                                var o = this.data.ui.hovered || this.data.ui.last_selected;
1577
                            if(o && o.length) {
1578
                                    if(o.hasClass("jstree-closed")) { this.open_node(o); }
1579
                                 else { this.hover_node(this._get_next(o)); }
1580
                           }
1581
                              return false;
1582
                  },
1583
                     "ctrl+right" : function () {
1584
                           var o = this.data.ui.hovered || this.data.ui.last_selected;
1585
                            if(o && o.length) {
1586
                                    if(o.hasClass("jstree-closed")) { this.open_node(o); }
1587
                                 else { this.hover_node(this._get_next(o)); }
1588
                           }
1589
                              return false;
1590
                  },
1591
                     "shift+right" : function () {
1592
                          var o = this.data.ui.hovered || this.data.ui.last_selected;
1593
                            if(o && o.length) {
1594
                                    if(o.hasClass("jstree-closed")) { this.open_node(o); }
1595
                                 else { this.hover_node(this._get_next(o)); }
1596
                           }
1597
                              return false;
1598
                  },
1599
                     "space" : function () {
1600
                                if(this.data.ui.hovered) { this.data.ui.hovered.children("a:eq(0)").click(); }
1601
                         return false;
1602
                  },
1603
                     "ctrl+space" : function (event) {
1604
                              event.type = "click";
1605
                          if(this.data.ui.hovered) { this.data.ui.hovered.children("a:eq(0)").trigger(event); }
1606
                          return false;
1607
                  },
1608
                     "shift+space" : function (event) {
1609
                             event.type = "click";
1610
                          if(this.data.ui.hovered) { this.data.ui.hovered.children("a:eq(0)").trigger(event); }
1611
                          return false;
1612
                  },
1613
                     "f2" : function () { this.rename(this.data.ui.hovered || this.data.ui.last_selected); },
1614
                       "del" : function () { this.remove(this.data.ui.hovered || this._get_node(null)); }
1615
             },
1616
             _fn : {
1617
                        enable_hotkeys : function () {
1618
                         this.data.hotkeys.enabled = true;
1619
                      },
1620
                     disable_hotkeys : function () {
1621
                                this.data.hotkeys.enabled = false;
1622
                     }
1623
              }
1624
      });
1625
})(jQuery);
1626
//*/
1627
1628
/*
1629
 * jsTree JSON plugin
1630
 * The JSON data store. Datastores are build by overriding the `load_node` and `_is_loaded` functions.
1631
 */
1632
(function ($) {
1633
      $.jstree.plugin("json_data", {
1634
         __init : function() {
1635
                  var s = this._get_settings().json_data;
1636
                        if(s.progressive_unload) {
1637
                             this.get_container().bind("after_close.jstree", function (e, data) {
1638
                                   data.rslt.obj.children("ul").remove();
1639
                         });
1640
                    }
1641
              },
1642
             defaults : {
1643
                   // `data` can be a function:
1644
                   //  * accepts two arguments - node being loaded and a callback to pass the result to
1645
                   //  * will be executed in the current tree's scope & ajax won't be supported
1646
                   data : false,
1647
                  ajax : false,
1648
                  correct_state : true,
1649
                  progressive_render : false,
1650
                    progressive_unload : false
1651
             },
1652
             _fn : {
1653
                        load_node : function (obj, s_call, e_call) { var _this = this; this.load_node_json(obj, function () { _this.__callback({ "obj" : _this._get_node(obj) }); s_call.call(this); }, e_call); },
1654
                    _is_loaded : function (obj) {
1655
                          var s = this._get_settings().json_data;
1656
                                obj = this._get_node(obj);
1657
                             return obj == -1 || !obj || (!s.ajax && !s.progressive_render && !$.isFunction(s.data)) || obj.is(".jstree-open, .jstree-leaf") || obj.children("ul").children("li").length > 0;
1658
                       },
1659
                     refresh : function (obj) {
1660
                             obj = this._get_node(obj);
1661
                             var s = this._get_settings().json_data;
1662
                                if(obj && obj !== -1 && s.progressive_unload && ($.isFunction(s.data) || !!s.ajax)) {
1663
                                  obj.removeData("jstree_children");
1664
                             }
1665
                              return this.__call_old();
1666
                      },
1667
                     load_node_json : function (obj, s_call, e_call) {
1668
                              var s = this.get_settings().json_data, d,
1669
                                      error_func = function () {},
1670
                                   success_func = function () {};
1671
                         obj = this._get_node(obj);
1672
1673
                            if(obj && obj !== -1 && (s.progressive_render || s.progressive_unload) && !obj.is(".jstree-open, .jstree-leaf") && obj.children("ul").children("li").length === 0 && obj.data("jstree_children")) {
1674
                                    d = this._parse_json(obj.data("jstree_children"), obj);
1675
                                        if(d) {
1676
                                                obj.append(d);
1677
                                         if(!s.progressive_unload) { obj.removeData("jstree_children"); }
1678
                                       }
1679
                                      this.clean_node(obj);
1680
                                  if(s_call) { s_call.call(this); }
1681
                                      return;
1682
                                }
1683
1684
                             if(obj && obj !== -1) {
1685
                                        if(obj.data("jstree_is_loading")) { return; }
1686
                                  else { obj.data("jstree_is_loading",true); }
1687
                           }
1688
                              switch(!0) {
1689
                                   case (!s.data && !s.ajax): throw "Neither data nor ajax settings supplied.";
1690
                                   // function option added here for easier model integration (also supporting async - see callback)
1691
                                      case ($.isFunction(s.data)):
1692
                                           s.data.call(this, obj, $.proxy(function (d) {
1693
                                                  d = this._parse_json(d, obj);
1694
                                                  if(!d) {
1695
                                                               if(obj === -1 || !obj) {
1696
                                                                       if(s.correct_state) { this.get_container().children("ul").empty(); }
1697
                                                           }
1698
                                                              else {
1699
                                                                 obj.children("a.jstree-loading").removeClass("jstree-loading");
1700
                                                                        obj.removeData("jstree_is_loading");
1701
                                                                   if(s.correct_state) { this.correct_state(obj); }
1702
                                                               }
1703
                                                              if(e_call) { e_call.call(this); }
1704
                                                      }
1705
                                                      else {
1706
                                                         if(obj === -1 || !obj) { this.get_container().children("ul").empty().append(d.children()); }
1707
                                                           else { obj.append(d).children("a.jstree-loading").removeClass("jstree-loading"); obj.removeData("jstree_is_loading"); }
1708
                                                                this.clean_node(obj);
1709
                                                          if(s_call) { s_call.call(this); }
1710
                                                      }
1711
                                              }, this));
1712
                                             break;
1713
                                 case (!!s.data && !s.ajax) || (!!s.data && !!s.ajax && (!obj || obj === -1)):
1714
                                          if(!obj || obj == -1) {
1715
                                                        d = this._parse_json(s.data, obj);
1716
                                                     if(d) {
1717
                                                                this.get_container().children("ul").empty().append(d.children());
1718
                                                              this.clean_node();
1719
                                                     }
1720
                                                      else {
1721
                                                         if(s.correct_state) { this.get_container().children("ul").empty(); }
1722
                                                   }
1723
                                              }
1724
                                              if(s_call) { s_call.call(this); }
1725
                                              break;
1726
                                 case (!s.data && !!s.ajax) || (!!s.data && !!s.ajax && obj && obj !== -1):
1727
                                             error_func = function (x, t, e) {
1728
                                                      var ef = this.get_settings().json_data.ajax.error;
1729
                                                     if(ef) { ef.call(this, x, t, e); }
1730
                                                     if(obj != -1 && obj.length) {
1731
                                                          obj.children("a.jstree-loading").removeClass("jstree-loading");
1732
                                                                obj.removeData("jstree_is_loading");
1733
                                                           if(t === "success" && s.correct_state) { this.correct_state(obj); }
1734
                                                    }
1735
                                                      else {
1736
                                                         if(t === "success" && s.correct_state) { this.get_container().children("ul").empty(); }
1737
                                                        }
1738
                                                      if(e_call) { e_call.call(this); }
1739
                                              };
1740
                                             success_func = function (d, t, x) {
1741
                                                    var sf = this.get_settings().json_data.ajax.success;
1742
                                                   if(sf) { d = sf.call(this,d,t,x) || d; }
1743
                                                       if(d === "" || (d && d.toString && d.toString().replace(/^[\s\n]+$/,"") === "") || (!$.isArray(d) && !$.isPlainObject(d))) {
1744
                                                           return error_func.call(this, x, t, "");
1745
                                                        }
1746
                                                      d = this._parse_json(d, obj);
1747
                                                  if(d) {
1748
                                                                if(obj === -1 || !obj) { this.get_container().children("ul").empty().append(d.children()); }
1749
                                                           else { obj.append(d).children("a.jstree-loading").removeClass("jstree-loading"); obj.removeData("jstree_is_loading"); }
1750
                                                                this.clean_node(obj);
1751
                                                          if(s_call) { s_call.call(this); }
1752
                                                      }
1753
                                                      else {
1754
                                                         if(obj === -1 || !obj) {
1755
                                                                       if(s.correct_state) {
1756
                                                                          this.get_container().children("ul").empty();
1757
                                                                           if(s_call) { s_call.call(this); }
1758
                                                                      }
1759
                                                              }
1760
                                                              else {
1761
                                                                 obj.children("a.jstree-loading").removeClass("jstree-loading");
1762
                                                                        obj.removeData("jstree_is_loading");
1763
                                                                   if(s.correct_state) {
1764
                                                                          this.correct_state(obj);
1765
                                                                               if(s_call) { s_call.call(this); }
1766
                                                                      }
1767
                                                              }
1768
                                                      }
1769
                                              };
1770
                                             s.ajax.context = this;
1771
                                         s.ajax.error = error_func;
1772
                                             s.ajax.success = success_func;
1773
                                         if(!s.ajax.dataType) { s.ajax.dataType = "json"; }
1774
                                             if($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, obj); }
1775
                                              if($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, obj); }
1776
                                           $.ajax(s.ajax);
1777
                                                break;
1778
                         }
1779
                      },
1780
                     _parse_json : function (js, obj, is_callback) {
1781
                                var d = false,
1782
                                 p = this._get_settings(),
1783
                                      s = p.json_data,
1784
                                       t = p.core.html_titles,
1785
                                        tmp, i, j, ul1, ul2;
1786
1787
                          if(!js) { return d; }
1788
                          if(s.progressive_unload && obj && obj !== -1) {
1789
                                        obj.data("jstree_children", d);
1790
                                }
1791
                              if($.isArray(js)) {
1792
                                    d = $();
1793
                                       if(!js.length) { return false; }
1794
                                       for(i = 0, j = js.length; i < j; i++) {
1795
                                                tmp = this._parse_json(js[i], obj, true);
1796
                                              if(tmp.length) { d = d.add(tmp); }
1797
                                     }
1798
                              }
1799
                              else {
1800
                                 if(typeof js == "string") { js = { data : js }; }
1801
                                      if(!js.data && js.data !== "") { return d; }
1802
                                   d = $("<li />");
1803
                                       if(js.attr) { d.attr(js.attr); }
1804
                                       if(js.metadata) { d.data(js.metadata); }
1805
                                       if(js.state) { d.addClass("jstree-" + js.state); }
1806
                                     if(!$.isArray(js.data)) { tmp = js.data; js.data = []; js.data.push(tmp); }
1807
                                    $.each(js.data, function (i, m) {
1808
                                              tmp = $("<a />");
1809
                                              if($.isFunction(m)) { m = m.call(this, js); }
1810
                                          if(typeof m == "string") { tmp.attr('href','#')[ t ? "html" : "text" ](m); }
1811
                                           else {
1812
                                                 if(!m.attr) { m.attr = {}; }
1813
                                                   if(!m.attr.href) { m.attr.href = '#'; }
1814
                                                        tmp.attr(m.attr)[ t ? "html" : "text" ](m.title);
1815
                                                      if(m.language) { tmp.addClass(m.language); }
1816
                                           }
1817
                                              tmp.prepend("<ins class='jstree-icon'>&#160;</ins>");
1818
                                          if(!m.icon && js.icon) { m.icon = js.icon; }
1819
                                           if(m.icon) {
1820
                                                   if(m.icon.indexOf("/") === -1) { tmp.children("ins").addClass(m.icon); }
1821
                                                       else { tmp.children("ins").css("background","url('" + m.icon + "') center center no-repeat"); }
1822
                                                }
1823
                                              d.append(tmp);
1824
                                 });
1825
                                    d.prepend("<ins class='jstree-icon'>&#160;</ins>");
1826
                                    if(js.children) {
1827
                                              if(s.progressive_render && js.state !== "open") {
1828
                                                      d.addClass("jstree-closed").data("jstree_children", js.children);
1829
                                              }
1830
                                              else {
1831
                                                 if(s.progressive_unload) { d.data("jstree_children", js.children); }
1832
                                                   if($.isArray(js.children) && js.children.length) {
1833
                                                             tmp = this._parse_json(js.children, obj, true);
1834
                                                                if(tmp.length) {
1835
                                                                       ul2 = $("<ul />");
1836
                                                                     ul2.append(tmp);
1837
                                                                       d.append(ul2);
1838
                                                         }
1839
                                                      }
1840
                                              }
1841
                                      }
1842
                              }
1843
                              if(!is_callback) {
1844
                                     ul1 = $("<ul />");
1845
                                     ul1.append(d);
1846
                                 d = ul1;
1847
                               }
1848
                              return d;
1849
                      },
1850
                     get_json : function (obj, li_attr, a_attr, is_callback) {
1851
                              var result = [],
1852
                                       s = this._get_settings(),
1853
                                      _this = this,
1854
                                  tmp1, tmp2, li, a, t, lang;
1855
                            obj = this._get_node(obj);
1856
                             if(!obj || obj === -1) { obj = this.get_container().find("> ul > li"); }
1857
                               li_attr = $.isArray(li_attr) ? li_attr : [ "id", "class" ];
1858
                            if(!is_callback && this.data.types) { li_attr.push(s.types.type_attr); }
1859
                               a_attr = $.isArray(a_attr) ? a_attr : [ ];
1860
1861
                            obj.each(function () {
1862
                                 li = $(this);
1863
                                  tmp1 = { data : [] };
1864
                                  if(li_attr.length) { tmp1.attr = { }; }
1865
                                        $.each(li_attr, function (i, v) {
1866
                                              tmp2 = li.attr(v);
1867
                                             if(tmp2 && tmp2.length && tmp2.replace(/jstree[^ ]*/ig,'').length) {
1868
                                                   tmp1.attr[v] = (" " + tmp2).replace(/ jstree[^ ]*/ig,'').replace(/\s+$/ig," ").replace(/^ /,"").replace(/ $/,"");
1869
                                              }
1870
                                      });
1871
                                    if(li.hasClass("jstree-open")) { tmp1.state = "open"; }
1872
                                        if(li.hasClass("jstree-closed")) { tmp1.state = "closed"; }
1873
                                    if(li.data()) { tmp1.metadata = li.data(); }
1874
                                   a = li.children("a");
1875
                                  a.each(function () {
1876
                                           t = $(this);
1877
                                           if(
1878
                                                    a_attr.length ||
1879
                                                       $.inArray("languages", s.plugins) !== -1 ||
1880
                                                    t.children("ins").get(0).style.backgroundImage.length ||
1881
                                                       (t.children("ins").get(0).className && t.children("ins").get(0).className.replace(/jstree[^ ]*|$/ig,'').length)
1882
                                                ) {
1883
                                                    lang = false;
1884
                                                  if($.inArray("languages", s.plugins) !== -1 && $.isArray(s.languages) && s.languages.length) {
1885
                                                         $.each(s.languages, function (l, lv) {
1886
                                                                 if(t.hasClass(lv)) {
1887
                                                                           lang = lv;
1888
                                                                             return false;
1889
                                                                  }
1890
                                                              });
1891
                                                    }
1892
                                                      tmp2 = { attr : { }, title : _this.get_text(t, lang) };
1893
                                                        $.each(a_attr, function (k, z) {
1894
                                                               tmp2.attr[z] = (" " + (t.attr(z) || "")).replace(/ jstree[^ ]*/ig,'').replace(/\s+$/ig," ").replace(/^ /,"").replace(/ $/,"");
1895
                                                 });
1896
                                                    if($.inArray("languages", s.plugins) !== -1 && $.isArray(s.languages) && s.languages.length) {
1897
                                                         $.each(s.languages, function (k, z) {
1898
                                                                  if(t.hasClass(z)) { tmp2.language = z; return true; }
1899
                                                          });
1900
                                                    }
1901
                                                      if(t.children("ins").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/^\s+$/ig,"").length) {
1902
                                                            tmp2.icon = t.children("ins").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/\s+$/ig," ").replace(/^ /,"").replace(/ $/,"");
1903
                                                  }
1904
                                                      if(t.children("ins").get(0).style.backgroundImage.length) {
1905
                                                            tmp2.icon = t.children("ins").get(0).style.backgroundImage.replace("url(","").replace(")","");
1906
                                                 }
1907
                                              }
1908
                                              else {
1909
                                                 tmp2 = _this.get_text(t);
1910
                                              }
1911
                                              if(a.length > 1) { tmp1.data.push(tmp2); }
1912
                                             else { tmp1.data = tmp2; }
1913
                                     });
1914
                                    li = li.find("> ul > li");
1915
                                     if(li.length) { tmp1.children = _this.get_json(li, li_attr, a_attr, true); }
1916
                                   result.push(tmp1);
1917
                             });
1918
                            return result;
1919
                 }
1920
              }
1921
      });
1922
})(jQuery);
1923
//*/
1924
1925
/*
1926
 * jsTree languages plugin
1927
 * Adds support for multiple language versions in one tree
1928
 * This basically allows for many titles coexisting in one node, but only one of them being visible at any given time
1929
 * This is useful for maintaining the same structure in many languages (hence the name of the plugin)
1930
 */
1931
(function ($) {
1932
 $.jstree.plugin("languages", {
1933
         __init : function () { this._load_css();  },
1934
           defaults : [],
1935
         _fn : {
1936
                        set_lang : function (i) {
1937
                              var langs = this._get_settings().languages,
1938
                                    st = false,
1939
                                    selector = ".jstree-" + this.get_index() + ' a';
1940
                               if(!$.isArray(langs) || langs.length === 0) { return false; }
1941
                          if($.inArray(i,langs) == -1) {
1942
                                 if(!!langs[i]) { i = langs[i]; }
1943
                                       else { return false; }
1944
                         }
1945
                              if(i == this.data.languages.current_language) { return true; }
1946
                         st = $.vakata.css.get_css(selector + "." + this.data.languages.current_language, false, this.data.languages.language_css);
1947
                             if(st !== false) { st.style.display = "none"; }
1948
                                st = $.vakata.css.get_css(selector + "." + i, false, this.data.languages.language_css);
1949
                                if(st !== false) { st.style.display = ""; }
1950
                            this.data.languages.current_language = i;
1951
                              this.__callback(i);
1952
                            return true;
1953
                   },
1954
                     get_lang : function () {
1955
                               return this.data.languages.current_language;
1956
                   },
1957
                     _get_string : function (key, lang) {
1958
                           var langs = this._get_settings().languages,
1959
                                    s = this._get_settings().core.strings;
1960
                         if($.isArray(langs) && langs.length) {
1961
                                 lang = (lang && $.inArray(lang,langs) != -1) ? lang : this.data.languages.current_language;
1962
                            }
1963
                              if(s[lang] && s[lang][key]) { return s[lang][key]; }
1964
                           if(s[key]) { return s[key]; }
1965
                          return key;
1966
                    },
1967
                     get_text : function (obj, lang) {
1968
                              obj = this._get_node(obj) || this.data.ui.last_selected;
1969
                               if(!obj.size()) { return false; }
1970
                              var langs = this._get_settings().languages,
1971
                                    s = this._get_settings().core.html_titles;
1972
                             if($.isArray(langs) && langs.length) {
1973
                                 lang = (lang && $.inArray(lang,langs) != -1) ? lang : this.data.languages.current_language;
1974
                                    obj = obj.children("a." + lang);
1975
                               }
1976
                              else { obj = obj.children("a:eq(0)"); }
1977
                                if(s) {
1978
                                        obj = obj.clone();
1979
                                     obj.children("INS").remove();
1980
                                  return obj.html();
1981
                             }
1982
                              else {
1983
                                 obj = obj.contents().filter(function() { return this.nodeType == 3; })[0];
1984
                                     return obj.nodeValue;
1985
                          }
1986
                      },
1987
                     set_text : function (obj, val, lang) {
1988
                         obj = this._get_node(obj) || this.data.ui.last_selected;
1989
                               if(!obj.size()) { return false; }
1990
                              var langs = this._get_settings().languages,
1991
                                    s = this._get_settings().core.html_titles,
1992
                                     tmp;
1993
                           if($.isArray(langs) && langs.length) {
1994
                                 lang = (lang && $.inArray(lang,langs) != -1) ? lang : this.data.languages.current_language;
1995
                                    obj = obj.children("a." + lang);
1996
                               }
1997
                              else { obj = obj.children("a:eq(0)"); }
1998
                                if(s) {
1999
                                        tmp = obj.children("INS").clone();
2000
                                     obj.html(val).prepend(tmp);
2001
                                    this.__callback({ "obj" : obj, "name" : val, "lang" : lang });
2002
                                 return true;
2003
                           }
2004
                              else {
2005
                                 obj = obj.contents().filter(function() { return this.nodeType == 3; })[0];
2006
                                     this.__callback({ "obj" : obj, "name" : val, "lang" : lang });
2007
                                 return (obj.nodeValue = val);
2008
                          }
2009
                      },
2010
                     _load_css : function () {
2011
                              var langs = this._get_settings().languages,
2012
                                    str = "/* languages css */",
2013
                                   selector = ".jstree-" + this.get_index() + ' a',
2014
                                       ln;
2015
                            if($.isArray(langs) && langs.length) {
2016
                                 this.data.languages.current_language = langs[0];
2017
                                       for(ln = 0; ln < langs.length; ln++) {
2018
                                         str += selector + "." + langs[ln] + " {";
2019
                                              if(langs[ln] != this.data.languages.current_language) { str += " display:none; "; }
2020
                                            str += " } ";
2021
                                  }
2022
                                      this.data.languages.language_css = $.vakata.css.add_sheet({ 'str' : str, 'title' : "jstree-languages" });
2023
                              }
2024
                      },
2025
                     create_node : function (obj, position, js, callback) {
2026
                         var t = this.__call_old(true, obj, position, js, function (t) {
2027
                                        var langs = this._get_settings().languages,
2028
                                            a = t.children("a"),
2029
                                           ln;
2030
                                    if($.isArray(langs) && langs.length) {
2031
                                         for(ln = 0; ln < langs.length; ln++) {
2032
                                                 if(!a.is("." + langs[ln])) {
2033
                                                           t.append(a.eq(0).clone().removeClass(langs.join(" ")).addClass(langs[ln]));
2034
                                                    }
2035
                                              }
2036
                                              a.not("." + langs.join(", .")).remove();
2037
                                       }
2038
                                      if(callback) { callback.call(this, t); }
2039
                               });
2040
                            return t;
2041
                      }
2042
              }
2043
      });
2044
})(jQuery);
2045
//*/
2046
2047
/*
2048
 * jsTree cookies plugin
2049
 * Stores the currently opened/selected nodes in a cookie and then restores them
2050
 * Depends on the jquery.cookie plugin
2051
 */
2052
(function ($) {
2053
  $.jstree.plugin("cookies", {
2054
           __init : function () {
2055
                 if(typeof $.cookie === "undefined") { throw "jsTree cookie: jQuery cookie plugin not included."; }
2056
2057
                    var s = this._get_settings().cookies,
2058
                          tmp;
2059
                   if(!!s.save_loaded) {
2060
                          tmp = $.cookie(s.save_loaded);
2061
                         if(tmp && tmp.length) { this.data.core.to_load = tmp.split(","); }
2062
                     }
2063
                      if(!!s.save_opened) {
2064
                          tmp = $.cookie(s.save_opened);
2065
                         if(tmp && tmp.length) { this.data.core.to_open = tmp.split(","); }
2066
                     }
2067
                      if(!!s.save_selected) {
2068
                                tmp = $.cookie(s.save_selected);
2069
                               if(tmp && tmp.length && this.data.ui) { this.data.ui.to_select = tmp.split(","); }
2070
                     }
2071
                      this.get_container()
2072
                           .one( ( this.data.ui ? "reselect" : "reopen" ) + ".jstree", $.proxy(function () {
2073
                                      this.get_container()
2074
                                           .bind("open_node.jstree close_node.jstree select_node.jstree deselect_node.jstree", $.proxy(function (e) {
2075
                                                             if(this._get_settings().cookies.auto_save) { this.save_cookie((e.handleObj.namespace + e.handleObj.type).replace("jstree","")); }
2076
                                                      }, this));
2077
                             }, this));
2078
             },
2079
             defaults : {
2080
                   save_loaded		: "jstree_load",
2081
                  save_opened		: "jstree_open",
2082
                  save_selected	: "jstree_select",
2083
                       auto_save		: true,
2084
                     cookie_options	: {}
2085
            },
2086
             _fn : {
2087
                        save_cookie : function (c) {
2088
                           if(this.data.core.refreshing) { return; }
2089
                              var s = this._get_settings().cookies;
2090
                          if(!c) { // if called manually and not by event
2091
                                        if(s.save_loaded) {
2092
                                            this.save_loaded();
2093
                                            $.cookie(s.save_loaded, this.data.core.to_load.join(","), s.cookie_options);
2094
                                   }
2095
                                      if(s.save_opened) {
2096
                                            this.save_opened();
2097
                                            $.cookie(s.save_opened, this.data.core.to_open.join(","), s.cookie_options);
2098
                                   }
2099
                                      if(s.save_selected && this.data.ui) {
2100
                                          this.save_selected();
2101
                                          $.cookie(s.save_selected, this.data.ui.to_select.join(","), s.cookie_options);
2102
                                 }
2103
                                      return;
2104
                                }
2105
                              switch(c) {
2106
                                    case "open_node":
2107
                                      case "close_node":
2108
                                             if(!!s.save_opened) {
2109
                                                  this.save_opened();
2110
                                                    $.cookie(s.save_opened, this.data.core.to_open.join(","), s.cookie_options);
2111
                                           }
2112
                                              if(!!s.save_loaded) {
2113
                                                  this.save_loaded();
2114
                                                    $.cookie(s.save_loaded, this.data.core.to_load.join(","), s.cookie_options);
2115
                                           }
2116
                                              break;
2117
                                 case "select_node":
2118
                                    case "deselect_node":
2119
                                          if(!!s.save_selected && this.data.ui) {
2120
                                                        this.save_selected();
2121
                                                  $.cookie(s.save_selected, this.data.ui.to_select.join(","), s.cookie_options);
2122
                                         }
2123
                                              break;
2124
                         }
2125
                      }
2126
              }
2127
      });
2128
    // include cookies by default
2129
  // $.jstree.defaults.plugins.push("cookies");
2130
})(jQuery);
2131
//*/
2132
2133
/*
2134
 * jsTree sort plugin
2135
 * Sorts items alphabetically (or using any other function)
2136
 */
2137
(function ($) {
2138
       $.jstree.plugin("sort", {
2139
              __init : function () {
2140
                 this.get_container()
2141
                           .bind("load_node.jstree", $.proxy(function (e, data) {
2142
                                         var obj = this._get_node(data.rslt.obj);
2143
                                               obj = obj === -1 ? this.get_container().children("ul") : obj.children("ul");
2144
                                           this.sort(obj);
2145
                                        }, this))
2146
                              .bind("rename_node.jstree create_node.jstree create.jstree", $.proxy(function (e, data) {
2147
                                              this.sort(data.rslt.obj.parent());
2148
                                     }, this))
2149
                              .bind("move_node.jstree", $.proxy(function (e, data) {
2150
                                         var m = data.rslt.np == -1 ? this.get_container() : data.rslt.np;
2151
                                              this.sort(m.children("ul"));
2152
                                   }, this));
2153
             },
2154
             defaults : function (a, b) { return this.get_text(a) > this.get_text(b) ? 1 : -1; },
2155
           _fn : {
2156
                        sort : function (obj) {
2157
                                var s = this._get_settings().sort,
2158
                                     t = this;
2159
                              obj.append($.makeArray(obj.children("li")).sort($.proxy(s, t)));
2160
                               obj.find("> li > ul").each(function() { t.sort($(this)); });
2161
                           this.clean_node(obj);
2162
                  }
2163
              }
2164
      });
2165
})(jQuery);
2166
//*/
2167
2168
/*
2169
 * jsTree DND plugin
2170
 * Drag and drop plugin for moving/copying nodes
2171
 */
2172
(function ($) {
2173
     var o = false,
2174
         r = false,
2175
             m = false,
2176
             ml = false,
2177
            sli = false,
2178
           sti = false,
2179
           dir1 = false,
2180
          dir2 = false,
2181
          last_pos = false;
2182
      $.vakata.dnd = {
2183
               is_down : false,
2184
               is_drag : false,
2185
               helper : false,
2186
                scroll_spd : 10,
2187
               init_x : 0,
2188
            init_y : 0,
2189
            threshold : 5,
2190
         helper_left : 5,
2191
               helper_top : 10,
2192
               user_data : {},
2193
2194
               drag_start : function (e, data, html) {
2195
                        if($.vakata.dnd.is_drag) { $.vakata.drag_stop({}); }
2196
                   try {
2197
                          e.currentTarget.unselectable = "on";
2198
                           e.currentTarget.onselectstart = function() { return false; };
2199
                          if(e.currentTarget.style) { e.currentTarget.style.MozUserSelect = "none"; }
2200
                    } catch(err) { }
2201
                       $.vakata.dnd.init_x = e.pageX;
2202
                 $.vakata.dnd.init_y = e.pageY;
2203
                 $.vakata.dnd.user_data = data;
2204
                 $.vakata.dnd.is_down = true;
2205
                   $.vakata.dnd.helper = $("<div id='vakata-dragged' />").html(html); //.fadeTo(10,0.25);
2206
                 $(document).bind("mousemove", $.vakata.dnd.drag);
2207
                      $(document).bind("mouseup", $.vakata.dnd.drag_stop);
2208
                   return false;
2209
          },
2210
             drag : function (e) {
2211
                  if(!$.vakata.dnd.is_down) { return; }
2212
                  if(!$.vakata.dnd.is_drag) {
2213
                            if(Math.abs(e.pageX - $.vakata.dnd.init_x) > 5 || Math.abs(e.pageY - $.vakata.dnd.init_y) > 5) {
2214
                                       $.vakata.dnd.helper.appendTo("body");
2215
                                  $.vakata.dnd.is_drag = true;
2216
                                   $(document).triggerHandler("drag_start.vakata", { "event" : e, "data" : $.vakata.dnd.user_data });
2217
                             }
2218
                              else { return; }
2219
                       }
2220
2221
                     // maybe use a scrolling parent element instead of document?
2222
                   if(e.type === "mousemove") { // thought of adding scroll in order to move the helper, but mouse poisition is n/a
2223
                               var d = $(document), t = d.scrollTop(), l = d.scrollLeft();
2224
                            if(e.pageY - t < 20) {
2225
                                 if(sti && dir1 === "down") { clearInterval(sti); sti = false; }
2226
                                        if(!sti) { dir1 = "up"; sti = setInterval(function () { $(document).scrollTop($(document).scrollTop() - $.vakata.dnd.scroll_spd); }, 150); }
2227
                           }
2228
                              else {
2229
                                 if(sti && dir1 === "up") { clearInterval(sti); sti = false; }
2230
                          }
2231
                              if($(window).height() - (e.pageY - t) < 20) {
2232
                                  if(sti && dir1 === "up") { clearInterval(sti); sti = false; }
2233
                                  if(!sti) { dir1 = "down"; sti = setInterval(function () { $(document).scrollTop($(document).scrollTop() + $.vakata.dnd.scroll_spd); }, 150); }
2234
                         }
2235
                              else {
2236
                                 if(sti && dir1 === "down") { clearInterval(sti); sti = false; }
2237
                                }
2238
2239
                             if(e.pageX - l < 20) {
2240
                                 if(sli && dir2 === "right") { clearInterval(sli); sli = false; }
2241
                                       if(!sli) { dir2 = "left"; sli = setInterval(function () { $(document).scrollLeft($(document).scrollLeft() - $.vakata.dnd.scroll_spd); }, 150); }
2242
                               }
2243
                              else {
2244
                                 if(sli && dir2 === "left") { clearInterval(sli); sli = false; }
2245
                                }
2246
                              if($(window).width() - (e.pageX - l) < 20) {
2247
                                   if(sli && dir2 === "left") { clearInterval(sli); sli = false; }
2248
                                        if(!sli) { dir2 = "right"; sli = setInterval(function () { $(document).scrollLeft($(document).scrollLeft() + $.vakata.dnd.scroll_spd); }, 150); }
2249
                              }
2250
                              else {
2251
                                 if(sli && dir2 === "right") { clearInterval(sli); sli = false; }
2252
                               }
2253
                      }
2254
2255
                     $.vakata.dnd.helper.css({ left : (e.pageX + $.vakata.dnd.helper_left) + "px", top : (e.pageY + $.vakata.dnd.helper_top) + "px" });
2256
                     $(document).triggerHandler("drag.vakata", { "event" : e, "data" : $.vakata.dnd.user_data });
2257
           },
2258
             drag_stop : function (e) {
2259
                     if(sli) { clearInterval(sli); }
2260
                        if(sti) { clearInterval(sti); }
2261
                        $(document).unbind("mousemove", $.vakata.dnd.drag);
2262
                    $(document).unbind("mouseup", $.vakata.dnd.drag_stop);
2263
                 $(document).triggerHandler("drag_stop.vakata", { "event" : e, "data" : $.vakata.dnd.user_data });
2264
                      $.vakata.dnd.helper.remove();
2265
                  $.vakata.dnd.init_x = 0;
2266
                       $.vakata.dnd.init_y = 0;
2267
                       $.vakata.dnd.user_data = {};
2268
                   $.vakata.dnd.is_down = false;
2269
                  $.vakata.dnd.is_drag = false;
2270
          }
2271
      };
2272
     $(function() {
2273
         var css_string = '#vakata-dragged { display:block; margin:0 0 0 0; padding:4px 4px 4px 24px; position:absolute; top:-2000px; line-height:16px; z-index:10000; } ';
2274
             $.vakata.css.add_sheet({ str : css_string, title : "vakata" });
2275
        });
2276
2277
   $.jstree.plugin("dnd", {
2278
               __init : function () {
2279
                 this.data.dnd = {
2280
                              active : false,
2281
                                after : false,
2282
                         inside : false,
2283
                                before : false,
2284
                                off : false,
2285
                           prepared : false,
2286
                              w : 0,
2287
                         to1 : false,
2288
                           to2 : false,
2289
                           cof : false,
2290
                           cw : false,
2291
                            ch : false,
2292
                            i1 : false,
2293
                            i2 : false,
2294
                            mto : false
2295
                    };
2296
                     this.get_container()
2297
                           .bind("mouseenter.jstree", $.proxy(function (e) {
2298
                                              if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {
2299
                                                    if(this.data.themes) {
2300
                                                         m.attr("class", "jstree-" + this.data.themes.theme);
2301
                                                           if(ml) { ml.attr("class", "jstree-" + this.data.themes.theme); }
2302
                                                               $.vakata.dnd.helper.attr("class", "jstree-dnd-helper jstree-" + this.data.themes.theme);
2303
                                                       }
2304
                                                      //if($(e.currentTarget).find("> ul > li").length === 0) {
2305
                                                      if(e.currentTarget === e.target && $.vakata.dnd.user_data.obj && $($.vakata.dnd.user_data.obj).length && $($.vakata.dnd.user_data.obj).parents(".jstree:eq(0)")[0] !== e.target) { // node should not be from the same tree
2306
                                                            var tr = $.jstree._reference(e.target), dc;
2307
                                                            if(tr.data.dnd.foreign) {
2308
                                                                      dc = tr._get_settings().dnd.drag_check.call(this, { "o" : o, "r" : tr.get_container(), is_root : true });
2309
                                                                      if(dc === true || dc.inside === true || dc.before === true || dc.after === true) {
2310
                                                                             $.vakata.dnd.helper.children("ins").attr("class","jstree-ok");
2311
                                                                 }
2312
                                                              }
2313
                                                              else {
2314
                                                                 tr.prepare_move(o, tr.get_container(), "last");
2315
                                                                        if(tr.check_move()) {
2316
                                                                          $.vakata.dnd.helper.children("ins").attr("class","jstree-ok");
2317
                                                                 }
2318
                                                              }
2319
                                                      }
2320
                                              }
2321
                                      }, this))
2322
                              .bind("mouseup.jstree", $.proxy(function (e) {
2323
                                         //if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree && $(e.currentTarget).find("> ul > li").length === 0) {
2324
                                             if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree && e.currentTarget === e.target && $.vakata.dnd.user_data.obj && $($.vakata.dnd.user_data.obj).length && $($.vakata.dnd.user_data.obj).parents(".jstree:eq(0)")[0] !== e.target) { // node should not be from the same tree
2325
                                                   var tr = $.jstree._reference(e.currentTarget), dc;
2326
                                                     if(tr.data.dnd.foreign) {
2327
                                                              dc = tr._get_settings().dnd.drag_check.call(this, { "o" : o, "r" : tr.get_container(), is_root : true });
2328
                                                              if(dc === true || dc.inside === true || dc.before === true || dc.after === true) {
2329
                                                                     tr._get_settings().dnd.drag_finish.call(this, { "o" : o, "r" : tr.get_container(), is_root : true });
2330
                                                          }
2331
                                                      }
2332
                                                      else {
2333
                                                         tr.move_node(o, tr.get_container(), "last", e[tr._get_settings().dnd.copy_modifier + "Key"]);
2334
                                                  }
2335
                                              }
2336
                                      }, this))
2337
                              .bind("mouseleave.jstree", $.proxy(function (e) {
2338
                                              if(e.relatedTarget && e.relatedTarget.id && e.relatedTarget.id === "jstree-marker-line") {
2339
                                                     return false;
2340
                                          }
2341
                                              if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {
2342
                                                    if(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }
2343
                                                      if(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }
2344
                                                      if(this.data.dnd.to1) { clearTimeout(this.data.dnd.to1); }
2345
                                                     if(this.data.dnd.to2) { clearTimeout(this.data.dnd.to2); }
2346
                                                     if($.vakata.dnd.helper.children("ins").hasClass("jstree-ok")) {
2347
                                                                $.vakata.dnd.helper.children("ins").attr("class","jstree-invalid");
2348
                                                    }
2349
                                              }
2350
                                      }, this))
2351
                              .bind("mousemove.jstree", $.proxy(function (e) {
2352
                                               if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {
2353
                                                    var cnt = this.get_container()[0];
2354
2355
                                                    // Horizontal scroll
2356
                                                   if(e.pageX + 24 > this.data.dnd.cof.left + this.data.dnd.cw) {
2357
                                                         if(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }
2358
                                                              this.data.dnd.i1 = setInterval($.proxy(function () { this.scrollLeft += $.vakata.dnd.scroll_spd; }, cnt), 100);
2359
                                                        }
2360
                                                      else if(e.pageX - 24 < this.data.dnd.cof.left) {
2361
                                                               if(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }
2362
                                                              this.data.dnd.i1 = setInterval($.proxy(function () { this.scrollLeft -= $.vakata.dnd.scroll_spd; }, cnt), 100);
2363
                                                        }
2364
                                                      else {
2365
                                                         if(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }
2366
                                                      }
2367
2368
                                                     // Vertical scroll
2369
                                                     if(e.pageY + 24 > this.data.dnd.cof.top + this.data.dnd.ch) {
2370
                                                          if(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }
2371
                                                              this.data.dnd.i2 = setInterval($.proxy(function () { this.scrollTop += $.vakata.dnd.scroll_spd; }, cnt), 100);
2372
                                                 }
2373
                                                      else if(e.pageY - 24 < this.data.dnd.cof.top) {
2374
                                                                if(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }
2375
                                                              this.data.dnd.i2 = setInterval($.proxy(function () { this.scrollTop -= $.vakata.dnd.scroll_spd; }, cnt), 100);
2376
                                                 }
2377
                                                      else {
2378
                                                         if(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }
2379
                                                      }
2380
2381
                                             }
2382
                                      }, this))
2383
                              .bind("scroll.jstree", $.proxy(function (e) {
2384
                                          if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree && m && ml) {
2385
                                                 m.hide();
2386
                                                      ml.hide();
2387
                                             }
2388
                                      }, this))
2389
                              .delegate("a", "mousedown.jstree", $.proxy(function (e) {
2390
                                              if(e.which === 1) {
2391
                                                    this.start_drag(e.currentTarget, e);
2392
                                                   return false;
2393
                                          }
2394
                                      }, this))
2395
                              .delegate("a", "mouseenter.jstree", $.proxy(function (e) {
2396
                                             if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {
2397
                                                    this.dnd_enter(e.currentTarget);
2398
                                               }
2399
                                      }, this))
2400
                              .delegate("a", "mousemove.jstree", $.proxy(function (e) {
2401
                                              if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {
2402
                                                    if(!r || !r.length || r.children("a")[0] !== e.currentTarget) {
2403
                                                                this.dnd_enter(e.currentTarget);
2404
                                                       }
2405
                                                      if(typeof this.data.dnd.off.top === "undefined") { this.data.dnd.off = $(e.target).offset(); }
2406
                                                 this.data.dnd.w = (e.pageY - (this.data.dnd.off.top || 0)) % this.data.core.li_height;
2407
                                                 if(this.data.dnd.w < 0) { this.data.dnd.w += this.data.core.li_height; }
2408
                                                       this.dnd_show();
2409
                                               }
2410
                                      }, this))
2411
                              .delegate("a", "mouseleave.jstree", $.proxy(function (e) {
2412
                                             if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {
2413
                                                    if(e.relatedTarget && e.relatedTarget.id && e.relatedTarget.id === "jstree-marker-line") {
2414
                                                             return false;
2415
                                                  }
2416
                                                              if(m) { m.hide(); }
2417
                                                            if(ml) { ml.hide(); }
2418
                                                  /*
2419
                                                     var ec = $(e.currentTarget).closest("li"),
2420
                                                             er = $(e.relatedTarget).closest("li");
2421
                                                 if(er[0] !== ec.prev()[0] && er[0] !== ec.next()[0]) {
2422
                                                         if(m) { m.hide(); }
2423
                                                            if(ml) { ml.hide(); }
2424
                                                  }
2425
                                                      */
2426
                                                     this.data.dnd.mto = setTimeout(
2427
                                                                (function (t) { return function () { t.dnd_leave(e); }; })(this),
2428
                                                      0);
2429
                                            }
2430
                                      }, this))
2431
                              .delegate("a", "mouseup.jstree", $.proxy(function (e) {
2432
                                                if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree) {
2433
                                                    this.dnd_finish(e);
2434
                                            }
2435
                                      }, this));
2436
2437
                    $(document)
2438
                            .bind("drag_stop.vakata", $.proxy(function () {
2439
                                                if(this.data.dnd.to1) { clearTimeout(this.data.dnd.to1); }
2440
                                             if(this.data.dnd.to2) { clearTimeout(this.data.dnd.to2); }
2441
                                             if(this.data.dnd.i1) { clearInterval(this.data.dnd.i1); }
2442
                                              if(this.data.dnd.i2) { clearInterval(this.data.dnd.i2); }
2443
                                              this.data.dnd.after		= false;
2444
                                          this.data.dnd.before	= false;
2445
                                          this.data.dnd.inside	= false;
2446
                                          this.data.dnd.off		= false;
2447
                                            this.data.dnd.prepared	= false;
2448
                                                this.data.dnd.w			= false;
2449
                                             this.data.dnd.to1		= false;
2450
                                            this.data.dnd.to2		= false;
2451
                                            this.data.dnd.i1		= false;
2452
                                             this.data.dnd.i2		= false;
2453
                                             this.data.dnd.active	= false;
2454
                                          this.data.dnd.foreign	= false;
2455
                                         if(m) { m.css({ "top" : "-2000px" }); }
2456
                                                if(ml) { ml.css({ "top" : "-2000px" }); }
2457
                                      }, this))
2458
                              .bind("drag_start.vakata", $.proxy(function (e, data) {
2459
                                                if(data.data.jstree) {
2460
                                                 var et = $(data.event.target);
2461
                                                 if(et.closest(".jstree").hasClass("jstree-" + this.get_index())) {
2462
                                                             this.dnd_enter(et);
2463
                                                    }
2464
                                              }
2465
                                      }, this));
2466
                             /*
2467
                             .bind("keydown.jstree-" + this.get_index() + " keyup.jstree-" + this.get_index(), $.proxy(function(e) {
2468
                                                if($.vakata.dnd.is_drag && $.vakata.dnd.user_data.jstree && !this.data.dnd.foreign) {
2469
                                                  var h = $.vakata.dnd.helper.children("ins");
2470
                                                   if(e[this._get_settings().dnd.copy_modifier + "Key"] && h.hasClass("jstree-ok")) {
2471
                                                             h.parent().html(h.parent().html().replace(/ \(Copy\)$/, "") + " (Copy)");
2472
                                                      }
2473
                                                      else {
2474
                                                         h.parent().html(h.parent().html().replace(/ \(Copy\)$/, ""));
2475
                                                  }
2476
                                              }
2477
                                      }, this)); */
2478
2479
2480
2481
                       var s = this._get_settings().dnd;
2482
                      if(s.drag_target) {
2483
                            $(document)
2484
                                    .delegate(s.drag_target, "mousedown.jstree-" + this.get_index(), $.proxy(function (e) {
2485
                                                o = e.target;
2486
                                          $.vakata.dnd.drag_start(e, { jstree : true, obj : e.target }, "<ins class='jstree-icon'></ins>" + $(e.target).text() );
2487
                                                if(this.data.themes) {
2488
                                                 if(m) { m.attr("class", "jstree-" + this.data.themes.theme); }
2489
                                                 if(ml) { ml.attr("class", "jstree-" + this.data.themes.theme); }
2490
                                                       $.vakata.dnd.helper.attr("class", "jstree-dnd-helper jstree-" + this.data.themes.theme);
2491
                                               }
2492
                                              $.vakata.dnd.helper.children("ins").attr("class","jstree-invalid");
2493
                                            var cnt = this.get_container();
2494
                                                this.data.dnd.cof = cnt.offset();
2495
                                              this.data.dnd.cw = parseInt(cnt.width(),10);
2496
                                           this.data.dnd.ch = parseInt(cnt.height(),10);
2497
                                          this.data.dnd.foreign = true;
2498
                                          e.preventDefault();
2499
                                    }, this));
2500
                     }
2501
                      if(s.drop_target) {
2502
                            $(document)
2503
                                    .delegate(s.drop_target, "mouseenter.jstree-" + this.get_index(), $.proxy(function (e) {
2504
                                                       if(this.data.dnd.active && this._get_settings().dnd.drop_check.call(this, { "o" : o, "r" : $(e.target), "e" : e })) {
2505
                                                          $.vakata.dnd.helper.children("ins").attr("class","jstree-ok");
2506
                                                 }
2507
                                              }, this))
2508
                                      .delegate(s.drop_target, "mouseleave.jstree-" + this.get_index(), $.proxy(function (e) {
2509
                                                       if(this.data.dnd.active) {
2510
                                                             $.vakata.dnd.helper.children("ins").attr("class","jstree-invalid");
2511
                                                    }
2512
                                              }, this))
2513
                                      .delegate(s.drop_target, "mouseup.jstree-" + this.get_index(), $.proxy(function (e) {
2514
                                                  if(this.data.dnd.active && $.vakata.dnd.helper.children("ins").hasClass("jstree-ok")) {
2515
                                                                this._get_settings().dnd.drop_finish.call(this, { "o" : o, "r" : $(e.target), "e" : e });
2516
                                                      }
2517
                                              }, this));
2518
                     }
2519
              },
2520
             defaults : {
2521
                   copy_modifier	: "ctrl",
2522
                        check_timeout	: 100,
2523
                   open_timeout	: 500,
2524
                    drop_target		: ".jstree-drop",
2525
                 drop_check		: function (data) { return true; },
2526
                        drop_finish		: $.noop,
2527
                 drag_target		: ".jstree-draggable",
2528
                    drag_finish		: $.noop,
2529
                 drag_check		: function (data) { return { after : false, before : false, inside : true }; }
2530
             },
2531
             _fn : {
2532
                        dnd_prepare : function () {
2533
                            if(!r || !r.length) { return; }
2534
                                this.data.dnd.off = r.offset();
2535
                                if(this._get_settings().core.rtl) {
2536
                                    this.data.dnd.off.right = this.data.dnd.off.left + r.width();
2537
                          }
2538
                              if(this.data.dnd.foreign) {
2539
                                    var a = this._get_settings().dnd.drag_check.call(this, { "o" : o, "r" : r });
2540
                                  this.data.dnd.after = a.after;
2541
                                 this.data.dnd.before = a.before;
2542
                                       this.data.dnd.inside = a.inside;
2543
                                       this.data.dnd.prepared = true;
2544
                                 return this.dnd_show();
2545
                                }
2546
                              this.prepare_move(o, r, "before");
2547
                             this.data.dnd.before = this.check_move();
2548
                              this.prepare_move(o, r, "after");
2549
                              this.data.dnd.after = this.check_move();
2550
                               if(this._is_loaded(r)) {
2551
                                       this.prepare_move(o, r, "inside");
2552
                                     this.data.dnd.inside = this.check_move();
2553
                              }
2554
                              else {
2555
                                 this.data.dnd.inside = false;
2556
                          }
2557
                              this.data.dnd.prepared = true;
2558
                         return this.dnd_show();
2559
                        },
2560
                     dnd_show : function () {
2561
                               if(!this.data.dnd.prepared) { return; }
2562
                                var o = ["before","inside","after"],
2563
                                   r = false,
2564
                                     rtl = this._get_settings().core.rtl,
2565
                                   pos;
2566
                           if(this.data.dnd.w < this.data.core.li_height/3) { o = ["before","inside","after"]; }
2567
                          else if(this.data.dnd.w <= this.data.core.li_height*2/3) {
2568
                                     o = this.data.dnd.w < this.data.core.li_height/2 ? ["inside","before","after"] : ["inside","after","before"];
2569
                          }
2570
                              else { o = ["after","inside","before"]; }
2571
                              $.each(o, $.proxy(function (i, val) {
2572
                                  if(this.data.dnd[val]) {
2573
                                               $.vakata.dnd.helper.children("ins").attr("class","jstree-ok");
2574
                                         r = val;
2575
                                               return false;
2576
                                  }
2577
                              }, this));
2578
                             if(r === false) { $.vakata.dnd.helper.children("ins").attr("class","jstree-invalid"); }
2579
2580
                               pos = rtl ? (this.data.dnd.off.right - 18) : (this.data.dnd.off.left + 10);
2581
                            switch(r) {
2582
                                    case "before":
2583
                                         m.css({ "left" : pos + "px", "top" : (this.data.dnd.off.top - 6) + "px" }).show();
2584
                                             if(ml) { ml.css({ "left" : (pos + 8) + "px", "top" : (this.data.dnd.off.top - 1) + "px" }).show(); }
2585
                                           break;
2586
                                 case "after":
2587
                                          m.css({ "left" : pos + "px", "top" : (this.data.dnd.off.top + this.data.core.li_height - 6) + "px" }).show();
2588
                                          if(ml) { ml.css({ "left" : (pos + 8) + "px", "top" : (this.data.dnd.off.top + this.data.core.li_height - 1) + "px" }).show(); }
2589
                                                break;
2590
                                 case "inside":
2591
                                         m.css({ "left" : pos + ( rtl ? -4 : 4) + "px", "top" : (this.data.dnd.off.top + this.data.core.li_height/2 - 5) + "px" }).show();
2592
                                              if(ml) { ml.hide(); }
2593
                                          break;
2594
                                 default:
2595
                                               m.hide();
2596
                                              if(ml) { ml.hide(); }
2597
                                          break;
2598
                         }
2599
                              last_pos = r;
2600
                          return r;
2601
                      },
2602
                     dnd_open : function () {
2603
                               this.data.dnd.to2 = false;
2604
                             this.open_node(r, $.proxy(this.dnd_prepare,this), true);
2605
                       },
2606
                     dnd_finish : function (e) {
2607
                            if(this.data.dnd.foreign) {
2608
                                    if(this.data.dnd.after || this.data.dnd.before || this.data.dnd.inside) {
2609
                                              this._get_settings().dnd.drag_finish.call(this, { "o" : o, "r" : r, "p" : last_pos });
2610
                                 }
2611
                              }
2612
                              else {
2613
                                 this.dnd_prepare();
2614
                                    this.move_node(o, r, last_pos, e[this._get_settings().dnd.copy_modifier + "Key"]);
2615
                             }
2616
                              o = false;
2617
                             r = false;
2618
                             m.hide();
2619
                              if(ml) { ml.hide(); }
2620
                  },
2621
                     dnd_enter : function (obj) {
2622
                           if(this.data.dnd.mto) {
2623
                                        clearTimeout(this.data.dnd.mto);
2624
                                       this.data.dnd.mto = false;
2625
                             }
2626
                              var s = this._get_settings().dnd;
2627
                              this.data.dnd.prepared = false;
2628
                                r = this._get_node(obj);
2629
                               if(s.check_timeout) {
2630
                                  // do the calculations after a minimal timeout (users tend to drag quickly to the desired location)
2631
                                    if(this.data.dnd.to1) { clearTimeout(this.data.dnd.to1); }
2632
                                     this.data.dnd.to1 = setTimeout($.proxy(this.dnd_prepare, this), s.check_timeout);
2633
                              }
2634
                              else {
2635
                                 this.dnd_prepare();
2636
                            }
2637
                              if(s.open_timeout) {
2638
                                   if(this.data.dnd.to2) { clearTimeout(this.data.dnd.to2); }
2639
                                     if(r && r.length && r.hasClass("jstree-closed")) {
2640
                                             // if the node is closed - open it, then recalculate
2641
                                           this.data.dnd.to2 = setTimeout($.proxy(this.dnd_open, this), s.open_timeout);
2642
                                  }
2643
                              }
2644
                              else {
2645
                                 if(r && r.length && r.hasClass("jstree-closed")) {
2646
                                             this.dnd_open();
2647
                                       }
2648
                              }
2649
                      },
2650
                     dnd_leave : function (e) {
2651
                             this.data.dnd.after		= false;
2652
                          this.data.dnd.before	= false;
2653
                          this.data.dnd.inside	= false;
2654
                          $.vakata.dnd.helper.children("ins").attr("class","jstree-invalid");
2655
                            m.hide();
2656
                              if(ml) { ml.hide(); }
2657
                          if(r && r[0] === e.target.parentNode) {
2658
                                        if(this.data.dnd.to1) {
2659
                                                clearTimeout(this.data.dnd.to1);
2660
                                               this.data.dnd.to1 = false;
2661
                                     }
2662
                                      if(this.data.dnd.to2) {
2663
                                                clearTimeout(this.data.dnd.to2);
2664
                                               this.data.dnd.to2 = false;
2665
                                     }
2666
                              }
2667
                      },
2668
                     start_drag : function (obj, e) {
2669
                               o = this._get_node(obj);
2670
                               if(this.data.ui && this.is_selected(o)) { o = this._get_node(null, true); }
2671
                            var dt = o.length > 1 ? this._get_string("multiple_selection") : this.get_text(o),
2672
                                     cnt = this.get_container();
2673
                            if(!this._get_settings().core.html_titles) { dt = dt.replace(/</ig,"&lt;").replace(/>/ig,"&gt;"); }
2674
                            $.vakata.dnd.drag_start(e, { jstree : true, obj : o }, "<ins class='jstree-icon'></ins>" + dt );
2675
                               if(this.data.themes) {
2676
                                 if(m) { m.attr("class", "jstree-" + this.data.themes.theme); }
2677
                                 if(ml) { ml.attr("class", "jstree-" + this.data.themes.theme); }
2678
                                       $.vakata.dnd.helper.attr("class", "jstree-dnd-helper jstree-" + this.data.themes.theme);
2679
                               }
2680
                              this.data.dnd.cof = cnt.offset();
2681
                              this.data.dnd.cw = parseInt(cnt.width(),10);
2682
                           this.data.dnd.ch = parseInt(cnt.height(),10);
2683
                          this.data.dnd.active = true;
2684
                   }
2685
              }
2686
      });
2687
    $(function() {
2688
         var css_string = '' +
2689
                  '#vakata-dragged ins { display:block; text-decoration:none; width:16px; height:16px; margin:0 0 0 0; padding:0; position:absolute; top:4px; left:4px; ' +
2690
                      ' -moz-border-radius:4px; border-radius:4px; -webkit-border-radius:4px; ' +
2691
                    '} ' +
2692
                 '#vakata-dragged .jstree-ok { background:green; } ' +
2693
                  '#vakata-dragged .jstree-invalid { background:red; } ' +
2694
                       '#jstree-marker { padding:0; margin:0; font-size:12px; overflow:hidden; height:12px; width:8px; position:absolute; top:-30px; z-index:10001; background-repeat:no-repeat; display:none; background-color:transparent; text-shadow:1px 1px 1px white; color:black; line-height:10px; } ' +
2695
                      '#jstree-marker-line { padding:0; margin:0; line-height:0%; font-size:1px; overflow:hidden; height:1px; width:100px; position:absolute; top:-30px; z-index:10000; background-repeat:no-repeat; display:none; background-color:#456c43; ' +
2696
                     ' cursor:pointer; border:1px solid #eeeeee; border-left:0; -moz-box-shadow: 0px 0px 2px #666; -webkit-box-shadow: 0px 0px 2px #666; box-shadow: 0px 0px 2px #666; ' +
2697
                  ' -moz-border-radius:1px; border-radius:1px; -webkit-border-radius:1px; ' +
2698
                    '}' +
2699
                  '';
2700
            $.vakata.css.add_sheet({ str : css_string, title : "jstree" });
2701
                m = $("<div />").attr({ id : "jstree-marker" }).hide().html("&raquo;")
2702
                 .bind("mouseleave mouseenter", function (e) {
2703
                          m.hide();
2704
                              ml.hide();
2705
                             e.preventDefault();
2706
                            e.stopImmediatePropagation();
2707
                          return false;
2708
                  })
2709
                     .appendTo("body");
2710
             ml = $("<div />").attr({ id : "jstree-marker-line" }).hide()
2711
                   .bind("mouseup", function (e) {
2712
                                if(r && r.length) {
2713
                                    r.children("a").trigger(e);
2714
                                    e.preventDefault();
2715
                                    e.stopImmediatePropagation();
2716
                                  return false;
2717
                          }
2718
                      })
2719
                     .bind("mouseleave", function (e) {
2720
                             var rt = $(e.relatedTarget);
2721
                           if(rt.is(".jstree") || rt.closest(".jstree").length === 0) {
2722
                                   if(r && r.length) {
2723
                                            r.children("a").trigger(e);
2724
                                            m.hide();
2725
                                              ml.hide();
2726
                                             e.preventDefault();
2727
                                            e.stopImmediatePropagation();
2728
                                          return false;
2729
                                  }
2730
                              }
2731
                      })
2732
                     .appendTo("body");
2733
             $(document).bind("drag_start.vakata", function (e, data) {
2734
                     if(data.data.jstree) { m.show(); if(ml) { ml.show(); } }
2735
               });
2736
            $(document).bind("drag_stop.vakata", function (e, data) {
2737
                      if(data.data.jstree) { m.hide(); if(ml) { ml.hide(); } }
2738
               });
2739
    });
2740
})(jQuery);
2741
//*/
2742
2743
/*
2744
 * jsTree checkbox plugin
2745
 * Inserts checkboxes in front of every node
2746
 * Depends on the ui plugin
2747
 * DOES NOT WORK NICELY WITH MULTITREE DRAG'N'DROP
2748
 */
2749
(function ($) {
2750
     $.jstree.plugin("checkbox", {
2751
          __init : function () {
2752
                 this.data.checkbox.noui = this._get_settings().checkbox.override_ui;
2753
                   if(this.data.ui && this.data.checkbox.noui) {
2754
                          this.select_node = this.deselect_node = this.deselect_all = $.noop;
2755
                            this.get_selected = this.get_checked;
2756
                  }
2757
2758
                     this.get_container()
2759
                           .bind("open_node.jstree create_node.jstree clean_node.jstree refresh.jstree", $.proxy(function (e, data) {
2760
                                             this._prepare_checkboxes(data.rslt.obj);
2761
                                       }, this))
2762
                              .bind("loaded.jstree", $.proxy(function (e) {
2763
                                          this._prepare_checkboxes();
2764
                                    }, this))
2765
                              .delegate( (this.data.ui && this.data.checkbox.noui ? "a" : "ins.jstree-checkbox") , "click.jstree", $.proxy(function (e) {
2766
                                            e.preventDefault();
2767
                                            if(this._get_node(e.target).hasClass("jstree-checked")) { this.uncheck_node(e.target); }
2768
                                               else { this.check_node(e.target); }
2769
                                            if(this.data.ui && this.data.checkbox.noui) {
2770
                                                  this.save_selected();
2771
                                                  if(this.data.cookies) { this.save_cookie("select_node"); }
2772
                                             }
2773
                                              else {
2774
                                                 e.stopImmediatePropagation();
2775
                                                  return false;
2776
                                          }
2777
                                      }, this));
2778
             },
2779
             defaults : {
2780
                   override_ui : false,
2781
                   two_state : false,
2782
                     real_checkboxes : false,
2783
                       checked_parent_open : true,
2784
                    real_checkboxes_names : function (n) { return [ ("check_" + (n[0].id || Math.ceil(Math.random() * 10000))) , 1]; }
2785
             },
2786
             __destroy : function () {
2787
                      this.get_container()
2788
                           .find("input.jstree-real-checkbox").removeClass("jstree-real-checkbox").end()
2789
                          .find("ins.jstree-checkbox").remove();
2790
         },
2791
             _fn : {
2792
                        _checkbox_notify : function (n, data) {
2793
                                if(data.checked) {
2794
                                     this.check_node(n, false);
2795
                             }
2796
                      },
2797
                     _prepare_checkboxes : function (obj) {
2798
                         obj = !obj || obj == -1 ? this.get_container().find("> ul > li") : this._get_node(obj);
2799
                                if(obj === false) { return; } // added for removing root nodes
2800
                         var c, _this = this, t, ts = this._get_settings().checkbox.two_state, rc = this._get_settings().checkbox.real_checkboxes, rcn = this._get_settings().checkbox.real_checkboxes_names;
2801
                           obj.each(function () {
2802
                                 t = $(this);
2803
                                   c = t.is("li") && (t.hasClass("jstree-checked") || (rc && t.children(":checked").length)) ? "jstree-checked" : "jstree-unchecked";
2804
                                     t.find("li").andSelf().each(function () {
2805
                                              var $t = $(this), nm;
2806
                                          $t.children("a" + (_this.data.languages ? "" : ":eq(0)") ).not(":has(.jstree-checkbox)").prepend("<ins class='jstree-checkbox'>&#160;</ins>").parent().not(".jstree-checked, .jstree-unchecked").addClass( ts ? "jstree-unchecked" : c );
2807
                                              if(rc) {
2808
                                                       if(!$t.children(":checkbox").length) {
2809
                                                         nm = rcn.call(_this, $t);
2810
                                                              $t.prepend("<input type='checkbox' class='jstree-real-checkbox' id='" + nm[0] + "' name='" + nm[0] + "' value='" + nm[1] + "' />");
2811
                                                    }
2812
                                                      else {
2813
                                                         $t.children(":checkbox").addClass("jstree-real-checkbox");
2814
                                                     }
2815
                                              }
2816
                                              if(!ts) {
2817
                                                      if(c === "jstree-checked" || $t.hasClass("jstree-checked") || $t.children(':checked').length) {
2818
                                                                $t.find("li").andSelf().addClass("jstree-checked").children(":checkbox").prop("checked", true);
2819
                                                        }
2820
                                              }
2821
                                              else {
2822
                                                 if($t.hasClass("jstree-checked") || $t.children(':checked').length) {
2823
                                                          $t.addClass("jstree-checked").children(":checkbox").prop("checked", true);
2824
                                                     }
2825
                                              }
2826
                                      });
2827
                            });
2828
                            if(!ts) {
2829
                                      obj.find(".jstree-checked").parent().parent().each(function () { _this._repair_state(this); });
2830
                                }
2831
                      },
2832
                     change_state : function (obj, state) {
2833
                         obj = this._get_node(obj);
2834
                             var coll = false, rc = this._get_settings().checkbox.real_checkboxes;
2835
                          if(!obj || obj === -1) { return false; }
2836
                               state = (state === false || state === true) ? state : obj.hasClass("jstree-checked");
2837
                          if(this._get_settings().checkbox.two_state) {
2838
                                  if(state) {
2839
                                            obj.removeClass("jstree-checked").addClass("jstree-unchecked");
2840
                                                if(rc) { obj.children(":checkbox").prop("checked", false); }
2841
                                   }
2842
                                      else {
2843
                                         obj.removeClass("jstree-unchecked").addClass("jstree-checked");
2844
                                                if(rc) { obj.children(":checkbox").prop("checked", true); }
2845
                                    }
2846
                              }
2847
                              else {
2848
                                 if(state) {
2849
                                            coll = obj.find("li").andSelf();
2850
                                               if(!coll.filter(".jstree-checked, .jstree-undetermined").length) { return false; }
2851
                                             coll.removeClass("jstree-checked jstree-undetermined").addClass("jstree-unchecked");
2852
                                           if(rc) { coll.children(":checkbox").prop("checked", false); }
2853
                                  }
2854
                                      else {
2855
                                         coll = obj.find("li").andSelf();
2856
                                               if(!coll.filter(".jstree-unchecked, .jstree-undetermined").length) { return false; }
2857
                                           coll.removeClass("jstree-unchecked jstree-undetermined").addClass("jstree-checked");
2858
                                           if(rc) { coll.children(":checkbox").prop("checked", true); }
2859
                                           if(this.data.ui) { this.data.ui.last_selected = obj; }
2860
                                         this.data.checkbox.last_selected = obj;
2861
                                        }
2862
                                      obj.parentsUntil(".jstree", "li").each(function () {
2863
                                           var $this = $(this);
2864
                                           if(state) {
2865
                                                    if($this.children("ul").children("li.jstree-checked, li.jstree-undetermined").length) {
2866
                                                                $this.parentsUntil(".jstree", "li").andSelf().removeClass("jstree-checked jstree-unchecked").addClass("jstree-undetermined");
2867
                                                          if(rc) { $this.parentsUntil(".jstree", "li").andSelf().children(":checkbox").prop("checked", false); }
2868
                                                         return false;
2869
                                                  }
2870
                                                      else {
2871
                                                         $this.removeClass("jstree-checked jstree-undetermined").addClass("jstree-unchecked");
2872
                                                          if(rc) { $this.children(":checkbox").prop("checked", false); }
2873
                                                 }
2874
                                              }
2875
                                              else {
2876
                                                 if($this.children("ul").children("li.jstree-unchecked, li.jstree-undetermined").length) {
2877
                                                              $this.parentsUntil(".jstree", "li").andSelf().removeClass("jstree-checked jstree-unchecked").addClass("jstree-undetermined");
2878
                                                          if(rc) { $this.parentsUntil(".jstree", "li").andSelf().children(":checkbox").prop("checked", false); }
2879
                                                         return false;
2880
                                                  }
2881
                                                      else {
2882
                                                         $this.removeClass("jstree-unchecked jstree-undetermined").addClass("jstree-checked");
2883
                                                          if(rc) { $this.children(":checkbox").prop("checked", true); }
2884
                                                  }
2885
                                              }
2886
                                      });
2887
                            }
2888
                              if(this.data.ui && this.data.checkbox.noui) { this.data.ui.selected = this.get_checked(); }
2889
                            this.__callback(obj);
2890
                          return true;
2891
                   },
2892
                     check_node : function (obj) {
2893
                          if(this.change_state(obj, false)) {
2894
                                    obj = this._get_node(obj);
2895
                                     if(this._get_settings().checkbox.checked_parent_open) {
2896
                                                var t = this;
2897
                                          obj.parents(".jstree-closed").each(function () { t.open_node(this, false, true); });
2898
                                   }
2899
                                      this.__callback({ "obj" : obj });
2900
                              }
2901
                      },
2902
                     uncheck_node : function (obj) {
2903
                                if(this.change_state(obj, true)) { this.__callback({ "obj" : this._get_node(obj) }); }
2904
                 },
2905
                     check_all : function () {
2906
                              var _this = this,
2907
                                      coll = this._get_settings().checkbox.two_state ? this.get_container_ul().find("li") : this.get_container_ul().children("li");
2908
                          coll.each(function () {
2909
                                        _this.change_state(this, false);
2910
                               });
2911
                            this.__callback();
2912
                     },
2913
                     uncheck_all : function () {
2914
                            var _this = this,
2915
                                      coll = this._get_settings().checkbox.two_state ? this.get_container_ul().find("li") : this.get_container_ul().children("li");
2916
                          coll.each(function () {
2917
                                        _this.change_state(this, true);
2918
                                });
2919
                            this.__callback();
2920
                     },
2921
2922
                    is_checked : function(obj) {
2923
                           obj = this._get_node(obj);
2924
                             return obj.length ? obj.is(".jstree-checked") : false;
2925
                 },
2926
                     get_checked : function (obj, get_all) {
2927
                                obj = !obj || obj === -1 ? this.get_container() : this._get_node(obj);
2928
                         return get_all || this._get_settings().checkbox.two_state ? obj.find(".jstree-checked") : obj.find("> ul > .jstree-checked, .jstree-undetermined > ul > .jstree-checked");
2929
                     },
2930
                     get_unchecked : function (obj, get_all) {
2931
                              obj = !obj || obj === -1 ? this.get_container() : this._get_node(obj);
2932
                         return get_all || this._get_settings().checkbox.two_state ? obj.find(".jstree-unchecked") : obj.find("> ul > .jstree-unchecked, .jstree-undetermined > ul > .jstree-unchecked");
2933
                       },
2934
2935
                    show_checkboxes : function () { this.get_container().children("ul").removeClass("jstree-no-checkboxes"); },
2936
                    hide_checkboxes : function () { this.get_container().children("ul").addClass("jstree-no-checkboxes"); },
2937
2938
                      _repair_state : function (obj) {
2939
                               obj = this._get_node(obj);
2940
                             if(!obj.length) { return; }
2941
                            if(this._get_settings().checkbox.two_state) {
2942
                                  obj.find('li').andSelf().not('.jstree-checked').removeClass('jstree-undetermined').addClass('jstree-unchecked').children(':checkbox').prop('checked', true);
2943
                                   return;
2944
                                }
2945
                              var rc = this._get_settings().checkbox.real_checkboxes,
2946
                                        a = obj.find("> ul > .jstree-checked").length,
2947
                                 b = obj.find("> ul > .jstree-undetermined").length,
2948
                                    c = obj.find("> ul > li").length;
2949
                              if(c === 0) { if(obj.hasClass("jstree-undetermined")) { this.change_state(obj, false); } }
2950
                             else if(a === 0 && b === 0) { this.change_state(obj, true); }
2951
                          else if(a === c) { this.change_state(obj, false); }
2952
                            else {
2953
                                 obj.parentsUntil(".jstree","li").andSelf().removeClass("jstree-checked jstree-unchecked").addClass("jstree-undetermined");
2954
                                     if(rc) { obj.parentsUntil(".jstree", "li").andSelf().children(":checkbox").prop("checked", false); }
2955
                           }
2956
                      },
2957
                     reselect : function () {
2958
                               if(this.data.ui && this.data.checkbox.noui) {
2959
                                  var _this = this,
2960
                                              s = this.data.ui.to_select;
2961
                                    s = $.map($.makeArray(s), function (n) { return "#" + n.toString().replace(/^#/,"").replace(/\\\//g,"/").replace(/\//g,"\\\/").replace(/\\\./g,".").replace(/\./g,"\\.").replace(/\:/g,"\\:"); });
2962
                                     this.deselect_all();
2963
                                   $.each(s, function (i, val) { _this.check_node(val); });
2964
                                       this.__callback();
2965
                             }
2966
                              else {
2967
                                 this.__call_old();
2968
                             }
2969
                      },
2970
                     save_loaded : function () {
2971
                            var _this = this;
2972
                              this.data.core.to_load = [];
2973
                           this.get_container_ul().find("li.jstree-closed.jstree-undetermined").each(function () {
2974
                                        if(this.id) { _this.data.core.to_load.push("#" + this.id); }
2975
                           });
2976
                    }
2977
              }
2978
      });
2979
    $(function() {
2980
         var css_string = '.jstree .jstree-real-checkbox { display:none; } ';
2981
           $.vakata.css.add_sheet({ str : css_string, title : "jstree" });
2982
        });
2983
})(jQuery);
2984
//*/
2985
2986
/*
2987
 * jsTree XML plugin
2988
 * The XML data store. Datastores are build by overriding the `load_node` and `_is_loaded` functions.
2989
 */
2990
(function ($) {
2991
        $.vakata.xslt = function (xml, xsl, callback) {
2992
                var rs = "", xm, xs, processor, support;
2993
               // TODO: IE9 no XSLTProcessor, no document.recalc
2994
              if(document.recalc) {
2995
                  xm = document.createElement('xml');
2996
                    xs = document.createElement('xml');
2997
                    xm.innerHTML = xml;
2998
                    xs.innerHTML = xsl;
2999
                    $("body").append(xm).append(xs);
3000
                       setTimeout( (function (xm, xs, callback) {
3001
                             return function () {
3002
                                   callback.call(null, xm.transformNode(xs.XMLDocument));
3003
                                 setTimeout( (function (xm, xs) { return function () { $(xm).remove(); $(xs).remove(); }; })(xm, xs), 200);
3004
                             };
3005
                     })(xm, xs, callback), 100);
3006
                    return true;
3007
           }
3008
              if(typeof window.DOMParser !== "undefined" && typeof window.XMLHttpRequest !== "undefined" && typeof window.XSLTProcessor === "undefined") {
3009
                   xml = new DOMParser().parseFromString(xml, "text/xml");
3010
                        xsl = new DOMParser().parseFromString(xsl, "text/xml");
3011
                        // alert(xml.transformNode());
3012
                 // callback.call(null, new XMLSerializer().serializeToString(rs));
3013
3014
            }
3015
              if(typeof window.DOMParser !== "undefined" && typeof window.XMLHttpRequest !== "undefined" && typeof window.XSLTProcessor !== "undefined") {
3016
                   processor = new XSLTProcessor();
3017
                       support = $.isFunction(processor.transformDocument) ? (typeof window.XMLSerializer !== "undefined") : true;
3018
                    if(!support) { return false; }
3019
                 xml = new DOMParser().parseFromString(xml, "text/xml");
3020
                        xsl = new DOMParser().parseFromString(xsl, "text/xml");
3021
                        if($.isFunction(processor.transformDocument)) {
3022
                                rs = document.implementation.createDocument("", "", null);
3023
                             processor.transformDocument(xml, xsl, rs, null);
3024
                               callback.call(null, new XMLSerializer().serializeToString(rs));
3025
                                return true;
3026
                   }
3027
                      else {
3028
                         processor.importStylesheet(xsl);
3029
                               rs = processor.transformToFragment(xml, document);
3030
                             callback.call(null, $("<div />").append(rs).html());
3031
                           return true;
3032
                   }
3033
              }
3034
              return false;
3035
  };
3036
     var xsl = {
3037
            'nest' : '<' + '?xml version="1.0" encoding="utf-8" ?>' +
3038
                      '<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >' +
3039
                   '<xsl:output method="html" encoding="utf-8" omit-xml-declaration="yes" standalone="no" indent="no" media-type="text/html" />' +
3040
                        '<xsl:template match="/">' +
3041
                   '	<xsl:call-template name="nodes">' +
3042
                  '		<xsl:with-param name="node" select="/root" />' +
3043
                    '	</xsl:call-template>' +
3044
                      '</xsl:template>' +
3045
                    '<xsl:template name="nodes">' +
3046
                        '	<xsl:param name="node" />' +
3047
                 '	<ul>' +
3048
                      '	<xsl:for-each select="$node/item">' +
3049
                        '		<xsl:variable name="children" select="count(./item) &gt; 0" />' +
3050
                   '		<li>' +
3051
                     '			<xsl:attribute name="class">' +
3052
                    '				<xsl:if test="position() = last()">jstree-last </xsl:if>' +
3053
                       '				<xsl:choose>' +
3054
                   '					<xsl:when test="@state = \'open\'">jstree-open </xsl:when>' +
3055
                    '					<xsl:when test="$children or @hasChildren or @state = \'closed\'">jstree-closed </xsl:when>' +
3056
                   '					<xsl:otherwise>jstree-leaf </xsl:otherwise>' +
3057
                   '				</xsl:choose>' +
3058
                  '				<xsl:value-of select="@class" />' +
3059
                       '			</xsl:attribute>' +
3060
                        '			<xsl:for-each select="@*">' +
3061
                      '				<xsl:if test="name() != \'class\' and name() != \'state\' and name() != \'hasChildren\'">' +
3062
                      '					<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>' +
3063
                    '				</xsl:if>' +
3064
                      '			</xsl:for-each>' +
3065
                 '	<ins class="jstree-icon"><xsl:text>&#xa0;</xsl:text></ins>' +
3066
                        '			<xsl:for-each select="content/name">' +
3067
                    '				<a>' +
3068
                    '				<xsl:attribute name="href">' +
3069
                    '					<xsl:choose>' +
3070
                  '					<xsl:when test="@href"><xsl:value-of select="@href" /></xsl:when>' +
3071
                     '					<xsl:otherwise>#</xsl:otherwise>' +
3072
                      '					</xsl:choose>' +
3073
                 '				</xsl:attribute>' +
3074
                       '				<xsl:attribute name="class"><xsl:value-of select="@lang" /> <xsl:value-of select="@class" /></xsl:attribute>' +
3075
                   '				<xsl:attribute name="style"><xsl:value-of select="@style" /></xsl:attribute>' +
3076
                   '				<xsl:for-each select="@*">' +
3077
                     '					<xsl:if test="name() != \'style\' and name() != \'class\' and name() != \'href\'">' +
3078
                    '						<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>' +
3079
                   '					</xsl:if>' +
3080
                     '				</xsl:for-each>' +
3081
                        '					<ins>' +
3082
                 '						<xsl:attribute name="class">jstree-icon ' +
3083
                     '							<xsl:if test="string-length(attribute::icon) > 0 and not(contains(@icon,\'/\'))"><xsl:value-of select="@icon" /></xsl:if>' +
3084
                   '						</xsl:attribute>' +
3085
                     '						<xsl:if test="string-length(attribute::icon) > 0 and contains(@icon,\'/\')"><xsl:attribute name="style">background:url(<xsl:value-of select="@icon" />) center center no-repeat;</xsl:attribute></xsl:if>' +
3086
                    '						<xsl:text>&#xa0;</xsl:text>' +
3087
                  '					</ins>' +
3088
                        '					<xsl:copy-of select="./child::node()" />' +
3089
                      '				</a>' +
3090
                   '			</xsl:for-each>' +
3091
                 '			<xsl:if test="$children or @hasChildren"><xsl:call-template name="nodes"><xsl:with-param name="node" select="current()" /></xsl:call-template></xsl:if>' +
3092
                 '		</li>' +
3093
                    '	</xsl:for-each>' +
3094
                   '	</ul>' +
3095
                     '</xsl:template>' +
3096
                    '</xsl:stylesheet>',
3097
3098
          'flat' : '<' + '?xml version="1.0" encoding="utf-8" ?>' +
3099
                      '<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >' +
3100
                   '<xsl:output method="html" encoding="utf-8" omit-xml-declaration="yes" standalone="no" indent="no" media-type="text/xml" />' +
3101
                 '<xsl:template match="/">' +
3102
                   '	<ul>' +
3103
                      '	<xsl:for-each select="//item[not(@parent_id) or @parent_id=0 or not(@parent_id = //item/@id)]">' + /* the last `or` may be removed */
3104
                        '		<xsl:call-template name="nodes">' +
3105
                 '			<xsl:with-param name="node" select="." />' +
3106
                       '			<xsl:with-param name="is_last" select="number(position() = last())" />' +
3107
                  '		</xsl:call-template>' +
3108
                     '	</xsl:for-each>' +
3109
                   '	</ul>' +
3110
                     '</xsl:template>' +
3111
                    '<xsl:template name="nodes">' +
3112
                        '	<xsl:param name="node" />' +
3113
                 '	<xsl:param name="is_last" />' +
3114
                      '	<xsl:variable name="children" select="count(//item[@parent_id=$node/attribute::id]) &gt; 0" />' +
3115
                    '	<li>' +
3116
                      '	<xsl:attribute name="class">' +
3117
                      '		<xsl:if test="$is_last = true()">jstree-last </xsl:if>' +
3118
                   '		<xsl:choose>' +
3119
                     '			<xsl:when test="@state = \'open\'">jstree-open </xsl:when>' +
3120
                      '			<xsl:when test="$children or @hasChildren or @state = \'closed\'">jstree-closed </xsl:when>' +
3121
                     '			<xsl:otherwise>jstree-leaf </xsl:otherwise>' +
3122
                     '		</xsl:choose>' +
3123
                    '		<xsl:value-of select="@class" />' +
3124
                 '	</xsl:attribute>' +
3125
                  '	<xsl:for-each select="@*">' +
3126
                        '		<xsl:if test="name() != \'parent_id\' and name() != \'hasChildren\' and name() != \'class\' and name() != \'state\'">' +
3127
                    '		<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>' +
3128
                       '		</xsl:if>' +
3129
                        '	</xsl:for-each>' +
3130
                   '	<ins class="jstree-icon"><xsl:text>&#xa0;</xsl:text></ins>' +
3131
                        '	<xsl:for-each select="content/name">' +
3132
                      '		<a>' +
3133
                      '		<xsl:attribute name="href">' +
3134
                      '			<xsl:choose>' +
3135
                    '			<xsl:when test="@href"><xsl:value-of select="@href" /></xsl:when>' +
3136
                       '			<xsl:otherwise>#</xsl:otherwise>' +
3137
                        '			</xsl:choose>' +
3138
                   '		</xsl:attribute>' +
3139
                 '		<xsl:attribute name="class"><xsl:value-of select="@lang" /> <xsl:value-of select="@class" /></xsl:attribute>' +
3140
                     '		<xsl:attribute name="style"><xsl:value-of select="@style" /></xsl:attribute>' +
3141
                     '		<xsl:for-each select="@*">' +
3142
                       '			<xsl:if test="name() != \'style\' and name() != \'class\' and name() != \'href\'">' +
3143
                      '				<xsl:attribute name="{name()}"><xsl:value-of select="." /></xsl:attribute>' +
3144
                     '			</xsl:if>' +
3145
                       '		</xsl:for-each>' +
3146
                  '			<ins>' +
3147
                   '				<xsl:attribute name="class">jstree-icon ' +
3148
                       '					<xsl:if test="string-length(attribute::icon) > 0 and not(contains(@icon,\'/\'))"><xsl:value-of select="@icon" /></xsl:if>' +
3149
                     '				</xsl:attribute>' +
3150
                       '				<xsl:if test="string-length(attribute::icon) > 0 and contains(@icon,\'/\')"><xsl:attribute name="style">background:url(<xsl:value-of select="@icon" />) center center no-repeat;</xsl:attribute></xsl:if>' +
3151
                      '				<xsl:text>&#xa0;</xsl:text>' +
3152
                    '			</ins>' +
3153
                  '			<xsl:copy-of select="./child::node()" />' +
3154
                        '		</a>' +
3155
                     '	</xsl:for-each>' +
3156
                   '	<xsl:if test="$children">' +
3157
                 '		<ul>' +
3158
                     '		<xsl:for-each select="//item[@parent_id=$node/attribute::id]">' +
3159
                   '			<xsl:call-template name="nodes">' +
3160
                        '				<xsl:with-param name="node" select="." />' +
3161
                      '				<xsl:with-param name="is_last" select="number(position() = last())" />' +
3162
                 '			</xsl:call-template>' +
3163
                    '		</xsl:for-each>' +
3164
                  '		</ul>' +
3165
                    '	</xsl:if>' +
3166
                 '	</li>' +
3167
                     '</xsl:template>' +
3168
                    '</xsl:stylesheet>'
3169
    },
3170
     escape_xml = function(string) {
3171
                return string
3172
                  .toString()
3173
                    .replace(/&/g, '&amp;')
3174
                        .replace(/</g, '&lt;')
3175
                 .replace(/>/g, '&gt;')
3176
                 .replace(/"/g, '&quot;')
3177
                       .replace(/'/g, '&apos;');
3178
      };
3179
     $.jstree.plugin("xml_data", {
3180
          defaults : {
3181
                   data : false,
3182
                  ajax : false,
3183
                  xsl : "flat",
3184
                  clean_node : false,
3185
                    correct_state : true,
3186
                  get_skip_empty : false,
3187
                        get_include_preamble : true
3188
            },
3189
             _fn : {
3190
                        load_node : function (obj, s_call, e_call) { var _this = this; this.load_node_xml(obj, function () { _this.__callback({ "obj" : _this._get_node(obj) }); s_call.call(this); }, e_call); },
3191
                     _is_loaded : function (obj) {
3192
                          var s = this._get_settings().xml_data;
3193
                         obj = this._get_node(obj);
3194
                             return obj == -1 || !obj || (!s.ajax && !$.isFunction(s.data)) || obj.is(".jstree-open, .jstree-leaf") || obj.children("ul").children("li").size() > 0;
3195
                        },
3196
                     load_node_xml : function (obj, s_call, e_call) {
3197
                               var s = this.get_settings().xml_data,
3198
                                  error_func = function () {},
3199
                                   success_func = function () {};
3200
3201
                                obj = this._get_node(obj);
3202
                             if(obj && obj !== -1) {
3203
                                        if(obj.data("jstree_is_loading")) { return; }
3204
                                  else { obj.data("jstree_is_loading",true); }
3205
                           }
3206
                              switch(!0) {
3207
                                   case (!s.data && !s.ajax): throw "Neither data nor ajax settings supplied.";
3208
                                   case ($.isFunction(s.data)):
3209
                                           s.data.call(this, obj, $.proxy(function (d) {
3210
                                                  this.parse_xml(d, $.proxy(function (d) {
3211
                                                               if(d) {
3212
                                                                        d = d.replace(/ ?xmlns="[^"]*"/ig, "");
3213
                                                                        if(d.length > 10) {
3214
                                                                            d = $(d);
3215
                                                                              if(obj === -1 || !obj) { this.get_container().children("ul").empty().append(d.children()); }
3216
                                                                           else { obj.children("a.jstree-loading").removeClass("jstree-loading"); obj.append(d); obj.removeData("jstree_is_loading"); }
3217
                                                                           if(s.clean_node) { this.clean_node(obj); }
3218
                                                                             if(s_call) { s_call.call(this); }
3219
                                                                      }
3220
                                                                      else {
3221
                                                                         if(obj && obj !== -1) {
3222
                                                                                        obj.children("a.jstree-loading").removeClass("jstree-loading");
3223
                                                                                        obj.removeData("jstree_is_loading");
3224
                                                                                   if(s.correct_state) {
3225
                                                                                          this.correct_state(obj);
3226
                                                                                               if(s_call) { s_call.call(this); }
3227
                                                                                      }
3228
                                                                              }
3229
                                                                              else {
3230
                                                                                 if(s.correct_state) {
3231
                                                                                          this.get_container().children("ul").empty();
3232
                                                                                           if(s_call) { s_call.call(this); }
3233
                                                                                      }
3234
                                                                              }
3235
                                                                      }
3236
                                                              }
3237
                                                      }, this));
3238
                                             }, this));
3239
                                             break;
3240
                                 case (!!s.data && !s.ajax) || (!!s.data && !!s.ajax && (!obj || obj === -1)):
3241
                                          if(!obj || obj == -1) {
3242
                                                        this.parse_xml(s.data, $.proxy(function (d) {
3243
                                                          if(d) {
3244
                                                                        d = d.replace(/ ?xmlns="[^"]*"/ig, "");
3245
                                                                        if(d.length > 10) {
3246
                                                                            d = $(d);
3247
                                                                              this.get_container().children("ul").empty().append(d.children());
3248
                                                                              if(s.clean_node) { this.clean_node(obj); }
3249
                                                                             if(s_call) { s_call.call(this); }
3250
                                                                      }
3251
                                                              }
3252
                                                              else {
3253
                                                                 if(s.correct_state) {
3254
                                                                          this.get_container().children("ul").empty();
3255
                                                                           if(s_call) { s_call.call(this); }
3256
                                                                      }
3257
                                                              }
3258
                                                      }, this));
3259
                                             }
3260
                                              break;
3261
                                 case (!s.data && !!s.ajax) || (!!s.data && !!s.ajax && obj && obj !== -1):
3262
                                             error_func = function (x, t, e) {
3263
                                                      var ef = this.get_settings().xml_data.ajax.error;
3264
                                                      if(ef) { ef.call(this, x, t, e); }
3265
                                                     if(obj !== -1 && obj.length) {
3266
                                                         obj.children("a.jstree-loading").removeClass("jstree-loading");
3267
                                                                obj.removeData("jstree_is_loading");
3268
                                                           if(t === "success" && s.correct_state) { this.correct_state(obj); }
3269
                                                    }
3270
                                                      else {
3271
                                                         if(t === "success" && s.correct_state) { this.get_container().children("ul").empty(); }
3272
                                                        }
3273
                                                      if(e_call) { e_call.call(this); }
3274
                                              };
3275
                                             success_func = function (d, t, x) {
3276
                                                    d = x.responseText;
3277
                                                    var sf = this.get_settings().xml_data.ajax.success;
3278
                                                    if(sf) { d = sf.call(this,d,t,x) || d; }
3279
                                                       if(d === "" || (d && d.toString && d.toString().replace(/^[\s\n]+$/,"") === "")) {
3280
                                                             return error_func.call(this, x, t, "");
3281
                                                        }
3282
                                                      this.parse_xml(d, $.proxy(function (d) {
3283
                                                               if(d) {
3284
                                                                        d = d.replace(/ ?xmlns="[^"]*"/ig, "");
3285
                                                                        if(d.length > 10) {
3286
                                                                            d = $(d);
3287
                                                                              if(obj === -1 || !obj) { this.get_container().children("ul").empty().append(d.children()); }
3288
                                                                           else { obj.children("a.jstree-loading").removeClass("jstree-loading"); obj.append(d); obj.removeData("jstree_is_loading"); }
3289
                                                                           if(s.clean_node) { this.clean_node(obj); }
3290
                                                                             if(s_call) { s_call.call(this); }
3291
                                                                      }
3292
                                                                      else {
3293
                                                                         if(obj && obj !== -1) {
3294
                                                                                        obj.children("a.jstree-loading").removeClass("jstree-loading");
3295
                                                                                        obj.removeData("jstree_is_loading");
3296
                                                                                   if(s.correct_state) {
3297
                                                                                          this.correct_state(obj);
3298
                                                                                               if(s_call) { s_call.call(this); }
3299
                                                                                      }
3300
                                                                              }
3301
                                                                              else {
3302
                                                                                 if(s.correct_state) {
3303
                                                                                          this.get_container().children("ul").empty();
3304
                                                                                           if(s_call) { s_call.call(this); }
3305
                                                                                      }
3306
                                                                              }
3307
                                                                      }
3308
                                                              }
3309
                                                      }, this));
3310
                                             };
3311
                                             s.ajax.context = this;
3312
                                         s.ajax.error = error_func;
3313
                                             s.ajax.success = success_func;
3314
                                         if(!s.ajax.dataType) { s.ajax.dataType = "xml"; }
3315
                                              if($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, obj); }
3316
                                              if($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, obj); }
3317
                                           $.ajax(s.ajax);
3318
                                                break;
3319
                         }
3320
                      },
3321
                     parse_xml : function (xml, callback) {
3322
                         var s = this._get_settings().xml_data;
3323
                         $.vakata.xslt(xml, xsl[s.xsl], callback);
3324
                      },
3325
                     get_xml : function (tp, obj, li_attr, a_attr, is_callback) {
3326
                           var result = "",
3327
                                       s = this._get_settings(),
3328
                                      _this = this,
3329
                                  tmp1, tmp2, li, a, lang;
3330
                               if(!tp) { tp = "flat"; }
3331
                               if(!is_callback) { is_callback = 0; }
3332
                          obj = this._get_node(obj);
3333
                             if(!obj || obj === -1) { obj = this.get_container().find("> ul > li"); }
3334
                               li_attr = $.isArray(li_attr) ? li_attr : [ "id", "class" ];
3335
                            if(!is_callback && this.data.types && $.inArray(s.types.type_attr, li_attr) === -1) { li_attr.push(s.types.type_attr); }
3336
3337
                              a_attr = $.isArray(a_attr) ? a_attr : [ ];
3338
3339
                            if(!is_callback) {
3340
                                     if(s.xml_data.get_include_preamble) {
3341
                                          result += '<' + '?xml version="1.0" encoding="UTF-8"?' + '>';
3342
                                  }
3343
                                      result += "<root>";
3344
                            }
3345
                              obj.each(function () {
3346
                                 result += "<item";
3347
                                     li = $(this);
3348
                                  $.each(li_attr, function (i, v) {
3349
                                              var t = li.attr(v);
3350
                                            if(!s.xml_data.get_skip_empty || typeof t !== "undefined") {
3351
                                                   result += " " + v + "=\"" + escape_xml((" " + (t || "")).replace(/ jstree[^ ]*/ig,'').replace(/\s+$/ig," ").replace(/^ /,"").replace(/ $/,"")) + "\"";
3352
                                         }
3353
                                      });
3354
                                    if(li.hasClass("jstree-open")) { result += " state=\"open\""; }
3355
                                        if(li.hasClass("jstree-closed")) { result += " state=\"closed\""; }
3356
                                    if(tp === "flat") { result += " parent_id=\"" + escape_xml(is_callback) + "\""; }
3357
                                      result += ">";
3358
                                 result += "<content>";
3359
                                 a = li.children("a");
3360
                                  a.each(function () {
3361
                                           tmp1 = $(this);
3362
                                                lang = false;
3363
                                          result += "<name";
3364
                                             if($.inArray("languages", s.plugins) !== -1) {
3365
                                                 $.each(s.languages, function (k, z) {
3366
                                                          if(tmp1.hasClass(z)) { result += " lang=\"" + escape_xml(z) + "\""; lang = z; return false; }
3367
                                                  });
3368
                                            }
3369
                                              if(a_attr.length) {
3370
                                                    $.each(a_attr, function (k, z) {
3371
                                                               var t = tmp1.attr(z);
3372
                                                          if(!s.xml_data.get_skip_empty || typeof t !== "undefined") {
3373
                                                                   result += " " + z + "=\"" + escape_xml((" " + t || "").replace(/ jstree[^ ]*/ig,'').replace(/\s+$/ig," ").replace(/^ /,"").replace(/ $/,"")) + "\"";
3374
                                                           }
3375
                                                      });
3376
                                            }
3377
                                              if(tmp1.children("ins").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/^\s+$/ig,"").length) {
3378
                                                 result += ' icon="' + escape_xml(tmp1.children("ins").get(0).className.replace(/jstree[^ ]*|$/ig,'').replace(/\s+$/ig," ").replace(/^ /,"").replace(/ $/,"")) + '"';
3379
                                           }
3380
                                              if(tmp1.children("ins").get(0).style.backgroundImage.length) {
3381
                                                 result += ' icon="' + escape_xml(tmp1.children("ins").get(0).style.backgroundImage.replace("url(","").replace(")","").replace(/'/ig,"").replace(/"/ig,"")) + '"';
3382
                                              }
3383
                                              result += ">";
3384
                                         result += "<![CDATA[" + _this.get_text(tmp1, lang) + "]]>";
3385
                                            result += "</name>";
3386
                                   });
3387
                                    result += "</content>";
3388
                                        tmp2 = li[0].id || true;
3389
                                       li = li.find("> ul > li");
3390
                                     if(li.length) { tmp2 = _this.get_xml(tp, li, li_attr, a_attr, tmp2); }
3391
                                 else { tmp2 = ""; }
3392
                                    if(tp == "nest") { result += tmp2; }
3393
                                   result += "</item>";
3394
                                   if(tp == "flat") { result += tmp2; }
3395
                           });
3396
                            if(!is_callback) { result += "</root>"; }
3397
                              return result;
3398
                 }
3399
              }
3400
      });
3401
})(jQuery);
3402
//*/
3403
3404
/*
3405
 * jsTree search plugin
3406
 * Enables both sync and async search on the tree
3407
 * DOES NOT WORK WITH JSON PROGRESSIVE RENDER
3408
 */
3409
(function ($) {
3410
   $.expr[':'].jstree_contains = function(a,i,m){
3411
         return (a.textContent || a.innerText || "").toLowerCase().indexOf(m[3].toLowerCase())>=0;
3412
      };
3413
     $.expr[':'].jstree_title_contains = function(a,i,m) {
3414
          return (a.getAttribute("title") || "").toLowerCase().indexOf(m[3].toLowerCase())>=0;
3415
   };
3416
     $.jstree.plugin("search", {
3417
            __init : function () {
3418
                 this.data.search.str = "";
3419
                     this.data.search.result = $();
3420
                 if(this._get_settings().search.show_only_matches) {
3421
                            this.get_container()
3422
                                   .bind("search.jstree", function (e, data) {
3423
                                            $(this).children("ul").find("li").hide().removeClass("jstree-last");
3424
                                           data.rslt.nodes.parentsUntil(".jstree").andSelf().show()
3425
                                                       .filter("ul").each(function () { $(this).children("li:visible").eq(-1).addClass("jstree-last"); });
3426
                                    })
3427
                                     .bind("clear_search.jstree", function () {
3428
                                             $(this).children("ul").find("li").css("display","").end().end().jstree("clean_node", -1);
3429
                                      });
3430
                    }
3431
              },
3432
             defaults : {
3433
                   ajax : false,
3434
                  search_method : "jstree_contains", // for case insensitive - jstree_contains
3435
                   show_only_matches : false
3436
              },
3437
             _fn : {
3438
                        search : function (str, skip_async) {
3439
                          if($.trim(str) === "") { this.clear_search(); return; }
3440
                                var s = this.get_settings().search,
3441
                                    t = this,
3442
                                      error_func = function () { },
3443
                                  success_func = function () { };
3444
                                this.data.search.str = str;
3445
3446
                           if(!skip_async && s.ajax !== false && this.get_container_ul().find("li.jstree-closed:not(:has(ul)):eq(0)").length > 0) {
3447
                                       this.search.supress_callback = true;
3448
                                   error_func = function () { };
3449
                                  success_func = function (d, t, x) {
3450
                                            var sf = this.get_settings().search.ajax.success;
3451
                                              if(sf) { d = sf.call(this,d,t,x) || d; }
3452
                                               this.data.search.to_open = d;
3453
                                          this._search_open();
3454
                                   };
3455
                                     s.ajax.context = this;
3456
                                 s.ajax.error = error_func;
3457
                                     s.ajax.success = success_func;
3458
                                 if($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, str); }
3459
                                      if($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, str); }
3460
                                   if(!s.ajax.data) { s.ajax.data = { "search_string" : str }; }
3461
                                  if(!s.ajax.dataType || /^json/.exec(s.ajax.dataType)) { s.ajax.dataType = "json"; }
3462
                                    $.ajax(s.ajax);
3463
                                        return;
3464
                                }
3465
                              if(this.data.search.result.length) { this.clear_search(); }
3466
                            this.data.search.result = this.get_container().find("a" + (this.data.languages ? "." + this.get_lang() : "" ) + ":" + (s.search_method) + "(" + this.data.search.str + ")");
3467
                           this.data.search.result.addClass("jstree-search").parent().parents(".jstree-closed").each(function () {
3468
                                        t.open_node(this, false, true);
3469
                                });
3470
                            this.__callback({ nodes : this.data.search.result, str : str });
3471
                       },
3472
                     clear_search : function (str) {
3473
                                this.data.search.result.removeClass("jstree-search");
3474
                          this.__callback(this.data.search.result);
3475
                              this.data.search.result = $();
3476
                 },
3477
                     _search_open : function (is_callback) {
3478
                                var _this = this,
3479
                                      done = true,
3480
                                   current = [],
3481
                                  remaining = [];
3482
                                if(this.data.search.to_open.length) {
3483
                                  $.each(this.data.search.to_open, function (i, val) {
3484
                                           if(val == "#") { return true; }
3485
                                                if($(val).length && $(val).is(".jstree-closed")) { current.push(val); }
3486
                                                else { remaining.push(val); }
3487
                                  });
3488
                                    if(current.length) {
3489
                                           this.data.search.to_open = remaining;
3490
                                          $.each(current, function (i, val) {
3491
                                                    _this.open_node(val, function () { _this._search_open(true); });
3492
                                               });
3493
                                            done = false;
3494
                                  }
3495
                              }
3496
                              if(done) { this.search(this.data.search.str, true); }
3497
                  }
3498
              }
3499
      });
3500
})(jQuery);
3501
//*/
3502
3503
/*
3504
 * jsTree contextmenu plugin
3505
 */
3506
(function ($) {
3507
      $.vakata.context = {
3508
           hide_on_mouseleave : false,
3509
3510
           cnt		: $("<div id='vakata-contextmenu' />"),
3511
           vis		: false,
3512
          tgt		: false,
3513
          par		: false,
3514
          func	: false,
3515
          data	: false,
3516
          rtl		: false,
3517
          show	: function (s, t, x, y, d, p, rtl) {
3518
                      $.vakata.context.rtl = !!rtl;
3519
                  var html = $.vakata.context.parse(s), h, w;
3520
                    if(!html) { return; }
3521
                  $.vakata.context.vis = true;
3522
                   $.vakata.context.tgt = t;
3523
                      $.vakata.context.par = p || t || null;
3524
                 $.vakata.context.data = d || null;
3525
                     $.vakata.context.cnt
3526
                           .html(html)
3527
                            .css({ "visibility" : "hidden", "display" : "block", "left" : 0, "top" : 0 });
3528
3529
                        if($.vakata.context.hide_on_mouseleave) {
3530
                              $.vakata.context.cnt
3531
                                   .one("mouseleave", function(e) { $.vakata.context.hide(); });
3532
                  }
3533
3534
                     h = $.vakata.context.cnt.height();
3535
                     w = $.vakata.context.cnt.width();
3536
                      if(x + w > $(document).width()) {
3537
                              x = $(document).width() - (w + 5);
3538
                             $.vakata.context.cnt.find("li > ul").addClass("right");
3539
                        }
3540
                      if(y + h > $(document).height()) {
3541
                             y = y - (h + t[0].offsetHeight);
3542
                               $.vakata.context.cnt.find("li > ul").addClass("bottom");
3543
                       }
3544
3545
                     $.vakata.context.cnt
3546
                           .css({ "left" : x, "top" : y })
3547
                                .find("li:has(ul)")
3548
                                    .bind("mouseenter", function (e) {
3549
                                             var w = $(document).width(),
3550
                                                   h = $(document).height(),
3551
                                                      ul = $(this).children("ul").show();
3552
                                            if(w !== $(document).width()) { ul.toggleClass("right"); }
3553
                                             if(h !== $(document).height()) { ul.toggleClass("bottom"); }
3554
                                   })
3555
                                     .bind("mouseleave", function (e) {
3556
                                             $(this).children("ul").hide();
3557
                                 })
3558
                                     .end()
3559
                         .css({ "visibility" : "visible" })
3560
                             .show();
3561
                       $(document).triggerHandler("context_show.vakata");
3562
             },
3563
             hide	: function () {
3564
                   $.vakata.context.vis = false;
3565
                  $.vakata.context.cnt.attr("class","").css({ "visibility" : "hidden" });
3566
                        $(document).triggerHandler("context_hide.vakata");
3567
             },
3568
             parse	: function (s, is_callback) {
3569
                    if(!s) { return false; }
3570
                       var str = "",
3571
                          tmp = false,
3572
                           was_sep = true;
3573
                        if(!is_callback) { $.vakata.context.func = {}; }
3574
                       str += "<ul>";
3575
                 $.each(s, function (i, val) {
3576
                          if(!val) { return true; }
3577
                              $.vakata.context.func[i] = val.action;
3578
                         if(!was_sep && val.separator_before) {
3579
                                 str += "<li class='vakata-separator vakata-separator-before'></li>";
3580
                           }
3581
                              was_sep = false;
3582
                               str += "<li class='" + (val._class || "") + (val._disabled ? " jstree-contextmenu-disabled " : "") + "'><ins ";
3583
                                if(val.icon && val.icon.indexOf("/") === -1) { str += " class='" + val.icon + "' "; }
3584
                          if(val.icon && val.icon.indexOf("/") !== -1) { str += " style='background:url(" + val.icon + ") center center no-repeat;' "; }
3585
                         str += ">&#160;</ins><a href='#' rel='" + i + "'>";
3586
                            if(val.submenu) {
3587
                                      str += "<span style='float:" + ($.vakata.context.rtl ? "left" : "right") + ";'>&raquo;</span>";
3588
                                }
3589
                              str += val.label + "</a>";
3590
                             if(val.submenu) {
3591
                                      tmp = $.vakata.context.parse(val.submenu, true);
3592
                                       if(tmp) { str += tmp; }
3593
                                }
3594
                              str += "</li>";
3595
                                if(val.separator_after) {
3596
                                      str += "<li class='vakata-separator vakata-separator-after'></li>";
3597
                                    was_sep = true;
3598
                                }
3599
                      });
3600
                    str = str.replace(/<li class\='vakata-separator vakata-separator-after'\><\/li\>$/,"");
3601
                        str += "</ul>";
3602
                        $(document).triggerHandler("context_parse.vakata");
3603
                    return str.length > 10 ? str : false;
3604
          },
3605
             exec	: function (i) {
3606
                  if($.isFunction($.vakata.context.func[i])) {
3607
                           // if is string - eval and call it!
3608
                            $.vakata.context.func[i].call($.vakata.context.data, $.vakata.context.par);
3609
                            return true;
3610
                   }
3611
                      else { return false; }
3612
         }
3613
      };
3614
     $(function () {
3615
                var css_string = '' +
3616
                  '#vakata-contextmenu { display:block; visibility:hidden; left:0; top:-200px; position:absolute; margin:0; padding:0; min-width:180px; background:#ebebeb; border:1px solid silver; z-index:10000; *width:180px; } ' +
3617
                  '#vakata-contextmenu ul { min-width:180px; *width:180px; } ' +
3618
                 '#vakata-contextmenu ul, #vakata-contextmenu li { margin:0; padding:0; list-style-type:none; display:block; } ' +
3619
                      '#vakata-contextmenu li { line-height:20px; min-height:20px; position:relative; padding:0px; } ' +
3620
                     '#vakata-contextmenu li a { padding:1px 6px; line-height:17px; display:block; text-decoration:none; margin:1px 1px 0 1px; } ' +
3621
                        '#vakata-contextmenu li ins { float:left; width:16px; height:16px; text-decoration:none; margin-right:2px; } ' +
3622
                       '#vakata-contextmenu li a:hover, #vakata-contextmenu li.vakata-hover > a { background:gray; color:white; } ' +
3623
                 '#vakata-contextmenu li ul { display:none; position:absolute; top:-2px; left:100%; background:#ebebeb; border:1px solid gray; } ' +
3624
                    '#vakata-contextmenu .right { right:100%; left:auto; } ' +
3625
                     '#vakata-contextmenu .bottom { bottom:-1px; top:auto; } ' +
3626
                    '#vakata-contextmenu li.vakata-separator { min-height:0; height:1px; line-height:1px; font-size:1px; overflow:hidden; margin:0 2px; background:silver; /* border-top:1px solid #fefefe; */ padding:0; } ';
3627
             $.vakata.css.add_sheet({ str : css_string, title : "vakata" });
3628
                $.vakata.context.cnt
3629
                   .delegate("a","click", function (e) { e.preventDefault(); })
3630
                   .delegate("a","mouseup", function (e) {
3631
                                if(!$(this).parent().hasClass("jstree-contextmenu-disabled") && $.vakata.context.exec($(this).attr("rel"))) {
3632
                                  $.vakata.context.hide();
3633
                               }
3634
                              else { $(this).blur(); }
3635
                       })
3636
                     .delegate("a","mouseover", function () {
3637
                               $.vakata.context.cnt.find(".vakata-hover").removeClass("vakata-hover");
3638
                        })
3639
                     .appendTo("body");
3640
             $(document).bind("mousedown", function (e) { if($.vakata.context.vis && !$.contains($.vakata.context.cnt[0], e.target)) { $.vakata.context.hide(); } });
3641
               if(typeof $.hotkeys !== "undefined") {
3642
                 $(document)
3643
                            .bind("keydown", "up", function (e) {
3644
                                  if($.vakata.context.vis) {
3645
                                             var o = $.vakata.context.cnt.find("ul:visible").last().children(".vakata-hover").removeClass("vakata-hover").prevAll("li:not(.vakata-separator)").first();
3646
                                             if(!o.length) { o = $.vakata.context.cnt.find("ul:visible").last().children("li:not(.vakata-separator)").last(); }
3647
                                             o.addClass("vakata-hover");
3648
                                            e.stopImmediatePropagation();
3649
                                          e.preventDefault();
3650
                                    }
3651
                              })
3652
                             .bind("keydown", "down", function (e) {
3653
                                        if($.vakata.context.vis) {
3654
                                             var o = $.vakata.context.cnt.find("ul:visible").last().children(".vakata-hover").removeClass("vakata-hover").nextAll("li:not(.vakata-separator)").first();
3655
                                             if(!o.length) { o = $.vakata.context.cnt.find("ul:visible").last().children("li:not(.vakata-separator)").first(); }
3656
                                            o.addClass("vakata-hover");
3657
                                            e.stopImmediatePropagation();
3658
                                          e.preventDefault();
3659
                                    }
3660
                              })
3661
                             .bind("keydown", "right", function (e) {
3662
                                       if($.vakata.context.vis) {
3663
                                             $.vakata.context.cnt.find(".vakata-hover").children("ul").show().children("li:not(.vakata-separator)").removeClass("vakata-hover").first().addClass("vakata-hover");
3664
                                           e.stopImmediatePropagation();
3665
                                          e.preventDefault();
3666
                                    }
3667
                              })
3668
                             .bind("keydown", "left", function (e) {
3669
                                        if($.vakata.context.vis) {
3670
                                             $.vakata.context.cnt.find(".vakata-hover").children("ul").hide().children(".vakata-separator").removeClass("vakata-hover");
3671
                                            e.stopImmediatePropagation();
3672
                                          e.preventDefault();
3673
                                    }
3674
                              })
3675
                             .bind("keydown", "esc", function (e) {
3676
                                 $.vakata.context.hide();
3677
                                       e.preventDefault();
3678
                            })
3679
                             .bind("keydown", "space", function (e) {
3680
                                       $.vakata.context.cnt.find(".vakata-hover").last().children("a").click();
3681
                                       e.preventDefault();
3682
                            });
3683
            }
3684
      });
3685
3686
   $.jstree.plugin("contextmenu", {
3687
               __init : function () {
3688
                 this.get_container()
3689
                           .delegate("a", "contextmenu.jstree", $.proxy(function (e) {
3690
                                            e.preventDefault();
3691
                                            if(!$(e.currentTarget).hasClass("jstree-loading")) {
3692
                                                   this.show_contextmenu(e.currentTarget, e.pageX, e.pageY);
3693
                                              }
3694
                                      }, this))
3695
                              .delegate("a", "click.jstree", $.proxy(function (e) {
3696
                                          if(this.data.contextmenu) {
3697
                                                    $.vakata.context.hide();
3698
                                               }
3699
                                      }, this))
3700
                              .bind("destroy.jstree", $.proxy(function () {
3701
                                          // TODO: move this to descruct method
3702
                                          if(this.data.contextmenu) {
3703
                                                    $.vakata.context.hide();
3704
                                               }
3705
                                      }, this));
3706
                     $(document).bind("context_hide.vakata", $.proxy(function () { this.data.contextmenu = false; }, this));
3707
                },
3708
             defaults : {
3709
                   select_node : false, // requires UI plugin
3710
                     show_at_node : true,
3711
                   items : { // Could be a function that should return an object like this one
3712
                            "create" : {
3713
                                   "separator_before"	: false,
3714
                                    "separator_after"	: true,
3715
                                      "label"				: "Create",
3716
                                 "action"			: function (obj) { this.create(obj); }
3717
                              },
3718
                             "rename" : {
3719
                                   "separator_before"	: false,
3720
                                    "separator_after"	: false,
3721
                                     "label"				: "Rename",
3722
                                 "action"			: function (obj) { this.rename(obj); }
3723
                              },
3724
                             "remove" : {
3725
                                   "separator_before"	: false,
3726
                                    "icon"				: false,
3727
                                     "separator_after"	: false,
3728
                                     "label"				: "Delete",
3729
                                 "action"			: function (obj) { if(this.is_selected(obj)) { this.remove(); } else { this.remove(obj); } }
3730
                                },
3731
                             "ccp" : {
3732
                                      "separator_before"	: true,
3733
                                     "icon"				: false,
3734
                                     "separator_after"	: false,
3735
                                     "label"				: "Edit",
3736
                                   "action"			: false,
3737
                                    "submenu" : {
3738
                                          "cut" : {
3739
                                                      "separator_before"	: false,
3740
                                                    "separator_after"	: false,
3741
                                                     "label"				: "Cut",
3742
                                                    "action"			: function (obj) { this.cut(obj); }
3743
                                         },
3744
                                             "copy" : {
3745
                                                     "separator_before"	: false,
3746
                                                    "icon"				: false,
3747
                                                     "separator_after"	: false,
3748
                                                     "label"				: "Copy",
3749
                                                   "action"			: function (obj) { this.copy(obj); }
3750
                                                },
3751
                                             "paste" : {
3752
                                                    "separator_before"	: false,
3753
                                                    "icon"				: false,
3754
                                                     "separator_after"	: false,
3755
                                                     "label"				: "Paste",
3756
                                                  "action"			: function (obj) { this.paste(obj); }
3757
                                               }
3758
                                      }
3759
                              }
3760
                      }
3761
              },
3762
             _fn : {
3763
                        show_contextmenu : function (obj, x, y) {
3764
                              obj = this._get_node(obj);
3765
                             var s = this.get_settings().contextmenu,
3766
                                       a = obj.children("a:visible:eq(0)"),
3767
                                   o = false,
3768
                                     i = false;
3769
                             if(s.select_node && this.data.ui && !this.is_selected(obj)) {
3770
                                  this.deselect_all();
3771
                                   this.select_node(obj, true);
3772
                           }
3773
                              if(s.show_at_node || typeof x === "undefined" || typeof y === "undefined") {
3774
                                   o = a.offset();
3775
                                        x = o.left;
3776
                                    y = o.top + this.data.core.li_height;
3777
                          }
3778
                              i = obj.data("jstree") && obj.data("jstree").contextmenu ? obj.data("jstree").contextmenu : s.items;
3779
                           if($.isFunction(i)) { i = i.call(this, obj); }
3780
                         this.data.contextmenu = true;
3781
                          $.vakata.context.show(i, a, x, y, this, obj, this._get_settings().core.rtl);
3782
                           if(this.data.themes) { $.vakata.context.cnt.attr("class", "jstree-" + this.data.themes.theme + "-context"); }
3783
                  }
3784
              }
3785
      });
3786
})(jQuery);
3787
//*/
3788
3789
/*
3790
 * jsTree types plugin
3791
 * Adds support types of nodes
3792
 * You can set an attribute on each li node, that represents its type.
3793
 * According to the type setting the node may get custom icon/validation rules
3794
 */
3795
(function ($) {
3796
       $.jstree.plugin("types", {
3797
             __init : function () {
3798
                 var s = this._get_settings().types;
3799
                    this.data.types.attach_to = [];
3800
                        this.get_container()
3801
                           .bind("init.jstree", $.proxy(function () {
3802
                                             var types = s.types,
3803
                                                   attr  = s.type_attr,
3804
                                                   icons_css = "",
3805
                                                        _this = this;
3806
3807
                                         $.each(types, function (i, tp) {
3808
                                                       $.each(tp, function (k, v) {
3809
                                                           if(!/^(max_depth|max_children|icon|valid_children)$/.test(k)) { _this.data.types.attach_to.push(k); }
3810
                                                  });
3811
                                                    if(!tp.icon) { return true; }
3812
                                                  if( tp.icon.image || tp.icon.position) {
3813
                                                               if(i == "default")	{ icons_css += '.jstree-' + _this.get_index() + ' a > .jstree-icon { '; }
3814
                                                           else				{ icons_css += '.jstree-' + _this.get_index() + ' li[' + attr + '="' + i + '"] > a > .jstree-icon { '; }
3815
                                                               if(tp.icon.image)	{ icons_css += ' background-image:url(' + tp.icon.image + '); '; }
3816
                                                           if(tp.icon.position){ icons_css += ' background-position:' + tp.icon.position + '; '; }
3817
                                                                else				{ icons_css += ' background-position:0 0; '; }
3818
                                                         icons_css += '} ';
3819
                                                     }
3820
                                              });
3821
                                            if(icons_css !== "") { $.vakata.css.add_sheet({ 'str' : icons_css, title : "jstree-types" }); }
3822
                                        }, this))
3823
                              .bind("before.jstree", $.proxy(function (e, data) {
3824
                                            var s, t,
3825
                                                      o = this._get_settings().types.use_data ? this._get_node(data.args[0]) : false,
3826
                                                        d = o && o !== -1 && o.length ? o.data("jstree") : false;
3827
                                              if(d && d.types && d.types[data.func] === false) { e.stopImmediatePropagation(); return false; }
3828
                                               if($.inArray(data.func, this.data.types.attach_to) !== -1) {
3829
                                                   if(!data.args[0] || (!data.args[0].tagName && !data.args[0].jquery)) { return; }
3830
                                                       s = this._get_settings().types.types;
3831
                                                  t = this._get_type(data.args[0]);
3832
                                                      if(
3833
                                                            (
3834
                                                                      (s[t] && typeof s[t][data.func] !== "undefined") ||
3835
                                                                    (s["default"] && typeof s["default"][data.func] !== "undefined")
3836
                                                               ) && this._check(data.func, data.args[0]) === false
3837
                                                    ) {
3838
                                                            e.stopImmediatePropagation();
3839
                                                          return false;
3840
                                                  }
3841
                                              }
3842
                                      }, this));
3843
                     if(is_ie6) {
3844
                           this.get_container()
3845
                                   .bind("load_node.jstree set_type.jstree", $.proxy(function (e, data) {
3846
                                                 var r = data && data.rslt && data.rslt.obj && data.rslt.obj !== -1 ? this._get_node(data.rslt.obj).parent() : this.get_container_ul(),
3847
                                                         c = false,
3848
                                                             s = this._get_settings().types;
3849
                                                        $.each(s.types, function (i, tp) {
3850
                                                             if(tp.icon && (tp.icon.image || tp.icon.position)) {
3851
                                                                   c = i === "default" ? r.find("li > a > .jstree-icon") : r.find("li[" + s.type_attr + "='" + i + "'] > a > .jstree-icon");
3852
                                                                      if(tp.icon.image) { c.css("backgroundImage","url(" + tp.icon.image + ")"); }
3853
                                                                   c.css("backgroundPosition", tp.icon.position || "0 0");
3854
                                                                }
3855
                                                      });
3856
                                            }, this));
3857
                     }
3858
              },
3859
             defaults : {
3860
                   // defines maximum number of root nodes (-1 means unlimited, -2 means disable max_children checking)
3861
                   max_children		: -1,
3862
                    // defines the maximum depth of the tree (-1 means unlimited, -2 means disable max_depth checking)
3863
                     max_depth			: -1,
3864
                      // defines valid node types for the root nodes
3865
                 valid_children		: "all",
3866
3867
                      // whether to use $.data
3868
                       use_data : false,
3869
                      // where is the type stores (the rel attribute of the LI element)
3870
                      type_attr : "rel",
3871
                     // a list of types
3872
                     types : {
3873
                              // the default type
3874
                            "default" : {
3875
                                  "max_children"	: -1,
3876
                                   "max_depth"		: -1,
3877
                                     "valid_children": "all"
3878
3879
                                       // Bound functions - you can bind any other function here (using boolean or function)
3880
                                  //"select_node"	: true
3881
                         }
3882
                      }
3883
              },
3884
             _fn : {
3885
                        _types_notify : function (n, data) {
3886
                           if(data.type && this._get_settings().types.use_data) {
3887
                                 this.set_type(data.type, n);
3888
                           }
3889
                      },
3890
                     _get_type : function (obj) {
3891
                           obj = this._get_node(obj);
3892
                             return (!obj || !obj.length) ? false : obj.attr(this._get_settings().types.type_attr) || "default";
3893
                    },
3894
                     set_type : function (str, obj) {
3895
                               obj = this._get_node(obj);
3896
                             var ret = (!obj.length || !str) ? false : obj.attr(this._get_settings().types.type_attr, str);
3897
                         if(ret) { this.__callback({ obj : obj, type : str}); }
3898
                         return ret;
3899
                    },
3900
                     _check : function (rule, obj, opts) {
3901
                          obj = this._get_node(obj);
3902
                             var v = false, t = this._get_type(obj), d = 0, _this = this, s = this._get_settings().types, data = false;
3903
                             if(obj === -1) {
3904
                                       if(!!s[rule]) { v = s[rule]; }
3905
                                 else { return; }
3906
                               }
3907
                              else {
3908
                                 if(t === false) { return; }
3909
                                    data = s.use_data ? obj.data("jstree") : false;
3910
                                        if(data && data.types && typeof data.types[rule] !== "undefined") { v = data.types[rule]; }
3911
                                    else if(!!s.types[t] && typeof s.types[t][rule] !== "undefined") { v = s.types[t][rule]; }
3912
                                     else if(!!s.types["default"] && typeof s.types["default"][rule] !== "undefined") { v = s.types["default"][rule]; }
3913
                             }
3914
                              if($.isFunction(v)) { v = v.call(this, obj); }
3915
                         if(rule === "max_depth" && obj !== -1 && opts !== false && s.max_depth !== -2 && v !== 0) {
3916
                                    // also include the node itself - otherwise if root node it is not checked
3917
                                     obj.children("a:eq(0)").parentsUntil(".jstree","li").each(function (i) {
3918
                                               // check if current depth already exceeds global tree depth
3919
                                            if(s.max_depth !== -1 && s.max_depth - (i + 1) <= 0) { v = 0; return false; }
3920
                                          d = (i === 0) ? v : _this._check(rule, this, false);
3921
                                           // check if current node max depth is already matched or exceeded
3922
                                              if(d !== -1 && d - (i + 1) <= 0) { v = 0; return false; }
3923
                                              // otherwise - set the max depth to the current value minus current depth
3924
                                              if(d >= 0 && (d - (i + 1) < v || v < 0) ) { v = d - (i + 1); }
3925
                                         // if the global tree depth exists and it minus the nodes calculated so far is less than `v` or `v` is unlimited
3926
                                               if(s.max_depth >= 0 && (s.max_depth - (i + 1) < v || v < 0) ) { v = s.max_depth - (i + 1); }
3927
                                   });
3928
                            }
3929
                              return v;
3930
                      },
3931
                     check_move : function () {
3932
                             if(!this.__call_old()) { return false; }
3933
                               var m  = this._get_move(),
3934
                                     s  = m.rt._get_settings().types,
3935
                                       mc = m.rt._check("max_children", m.cr),
3936
                                        md = m.rt._check("max_depth", m.cr),
3937
                                   vc = m.rt._check("valid_children", m.cr),
3938
                                      ch = 0, d = 1, t;
3939
3940
                             if(vc === "none") { return false; }
3941
                            if($.isArray(vc) && m.ot && m.ot._get_type) {
3942
                                  m.o.each(function () {
3943
                                         if($.inArray(m.ot._get_type(this), vc) === -1) { d = false; return false; }
3944
                                    });
3945
                                    if(d === false) { return false; }
3946
                              }
3947
                              if(s.max_children !== -2 && mc !== -1) {
3948
                                       ch = m.cr === -1 ? this.get_container().find("> ul > li").not(m.o).length : m.cr.find("> ul > li").not(m.o).length;
3949
                                    if(ch + m.o.length > mc) { return false; }
3950
                             }
3951
                              if(s.max_depth !== -2 && md !== -1) {
3952
                                  d = 0;
3953
                                 if(md === 0) { return false; }
3954
                                 if(typeof m.o.d === "undefined") {
3955
                                             // TODO: deal with progressive rendering and async when checking max_depth (how to know the depth of the moved node)
3956
                                           t = m.o;
3957
                                               while(t.length > 0) {
3958
                                                  t = t.find("> ul > li");
3959
                                                       d ++;
3960
                                          }
3961
                                              m.o.d = d;
3962
                                     }
3963
                                      if(md - m.o.d < 0) { return false; }
3964
                           }
3965
                              return true;
3966
                   },
3967
                     create_node : function (obj, position, js, callback, is_loaded, skip_check) {
3968
                          if(!skip_check && (is_loaded || this._is_loaded(obj))) {
3969
                                       var p  = (typeof position == "string" && position.match(/^before|after$/i) && obj !== -1) ? this._get_parent(obj) : this._get_node(obj),
3970
                                               s  = this._get_settings().types,
3971
                                               mc = this._check("max_children", p),
3972
                                           md = this._check("max_depth", p),
3973
                                              vc = this._check("valid_children", p),
3974
                                         ch;
3975
                                    if(typeof js === "string") { js = { data : js }; }
3976
                                     if(!js) { js = {}; }
3977
                                   if(vc === "none") { return false; }
3978
                                    if($.isArray(vc)) {
3979
                                            if(!js.attr || !js.attr[s.type_attr]) {
3980
                                                        if(!js.attr) { js.attr = {}; }
3981
                                                 js.attr[s.type_attr] = vc[0];
3982
                                          }
3983
                                              else {
3984
                                                 if($.inArray(js.attr[s.type_attr], vc) === -1) { return false; }
3985
                                               }
3986
                                      }
3987
                                      if(s.max_children !== -2 && mc !== -1) {
3988
                                               ch = p === -1 ? this.get_container().find("> ul > li").length : p.find("> ul > li").length;
3989
                                            if(ch + 1 > mc) { return false; }
3990
                                      }
3991
                                      if(s.max_depth !== -2 && md !== -1 && (md - 1) < 0) { return false; }
3992
                          }
3993
                              return this.__call_old(true, obj, position, js, callback, is_loaded, skip_check);
3994
                      }
3995
              }
3996
      });
3997
})(jQuery);
3998
//*/
3999
4000
/*
4001
 * jsTree HTML plugin
4002
 * The HTML data store. Datastores are build by replacing the `load_node` and `_is_loaded` functions.
4003
 */
4004
(function ($) {
4005
       $.jstree.plugin("html_data", {
4006
         __init : function () {
4007
                 // this used to use html() and clean the whitespace, but this way any attached data was lost
4008
                   this.data.html_data.original_container_html = this.get_container().find(" > ul > li").clone(true);
4009
                     // remove white space from LI node - otherwise nodes appear a bit to the right
4010
                 this.data.html_data.original_container_html.find("li").andSelf().contents().filter(function() { return this.nodeType == 3; }).remove();
4011
                },
4012
             defaults : {
4013
                   data : false,
4014
                  ajax : false,
4015
                  correct_state : true
4016
           },
4017
             _fn : {
4018
                        load_node : function (obj, s_call, e_call) { var _this = this; this.load_node_html(obj, function () { _this.__callback({ "obj" : _this._get_node(obj) }); s_call.call(this); }, e_call); },
4019
                    _is_loaded : function (obj) {
4020
                          obj = this._get_node(obj);
4021
                             return obj == -1 || !obj || (!this._get_settings().html_data.ajax && !$.isFunction(this._get_settings().html_data.data)) || obj.is(".jstree-open, .jstree-leaf") || obj.children("ul").children("li").size() > 0;
4022
                      },
4023
                     load_node_html : function (obj, s_call, e_call) {
4024
                              var d,
4025
                                 s = this.get_settings().html_data,
4026
                                     error_func = function () {},
4027
                                   success_func = function () {};
4028
                         obj = this._get_node(obj);
4029
                             if(obj && obj !== -1) {
4030
                                        if(obj.data("jstree_is_loading")) { return; }
4031
                                  else { obj.data("jstree_is_loading",true); }
4032
                           }
4033
                              switch(!0) {
4034
                                   case ($.isFunction(s.data)):
4035
                                           s.data.call(this, obj, $.proxy(function (d) {
4036
                                                  if(d && d !== "" && d.toString && d.toString().replace(/^[\s\n]+$/,"") !== "") {
4037
                                                               d = $(d);
4038
                                                              if(!d.is("ul")) { d = $("<ul />").append(d); }
4039
                                                         if(obj == -1 || !obj) { this.get_container().children("ul").empty().append(d.children()).find("li, a").filter(function () { return !this.firstChild || !this.firstChild.tagName || this.firstChild.tagName !== "INS"; }).prepend("<ins class='jstree-icon'>&#160;</ins>").end().filter("a").children("ins:first-child").not(".jstree-icon").addClass("jstree-icon"); }
4040
                                                         else { obj.children("a.jstree-loading").removeClass("jstree-loading"); obj.append(d).children("ul").find("li, a").filter(function () { return !this.firstChild || !this.firstChild.tagName || this.firstChild.tagName !== "INS"; }).prepend("<ins class='jstree-icon'>&#160;</ins>").end().filter("a").children("ins:first-child").not(".jstree-icon").addClass("jstree-icon"); obj.removeData("jstree_is_loading"); }
4041
                                                         this.clean_node(obj);
4042
                                                          if(s_call) { s_call.call(this); }
4043
                                                      }
4044
                                                      else {
4045
                                                         if(obj && obj !== -1) {
4046
                                                                        obj.children("a.jstree-loading").removeClass("jstree-loading");
4047
                                                                        obj.removeData("jstree_is_loading");
4048
                                                                   if(s.correct_state) {
4049
                                                                          this.correct_state(obj);
4050
                                                                               if(s_call) { s_call.call(this); }
4051
                                                                      }
4052
                                                              }
4053
                                                              else {
4054
                                                                 if(s.correct_state) {
4055
                                                                          this.get_container().children("ul").empty();
4056
                                                                           if(s_call) { s_call.call(this); }
4057
                                                                      }
4058
                                                              }
4059
                                                      }
4060
                                              }, this));
4061
                                             break;
4062
                                 case (!s.data && !s.ajax):
4063
                                             if(!obj || obj == -1) {
4064
                                                        this.get_container()
4065
                                                           .children("ul").empty()
4066
                                                                .append(this.data.html_data.original_container_html)
4067
                                                           .find("li, a").filter(function () { return !this.firstChild || !this.firstChild.tagName || this.firstChild.tagName !== "INS"; }).prepend("<ins class='jstree-icon'>&#160;</ins>").end()
4068
                                                                .filter("a").children("ins:first-child").not(".jstree-icon").addClass("jstree-icon");
4069
                                                  this.clean_node();
4070
                                             }
4071
                                              if(s_call) { s_call.call(this); }
4072
                                              break;
4073
                                 case (!!s.data && !s.ajax) || (!!s.data && !!s.ajax && (!obj || obj === -1)):
4074
                                          if(!obj || obj == -1) {
4075
                                                        d = $(s.data);
4076
                                                 if(!d.is("ul")) { d = $("<ul />").append(d); }
4077
                                                 this.get_container()
4078
                                                           .children("ul").empty().append(d.children())
4079
                                                           .find("li, a").filter(function () { return !this.firstChild || !this.firstChild.tagName || this.firstChild.tagName !== "INS"; }).prepend("<ins class='jstree-icon'>&#160;</ins>").end()
4080
                                                                .filter("a").children("ins:first-child").not(".jstree-icon").addClass("jstree-icon");
4081
                                                  this.clean_node();
4082
                                             }
4083
                                              if(s_call) { s_call.call(this); }
4084
                                              break;
4085
                                 case (!s.data && !!s.ajax) || (!!s.data && !!s.ajax && obj && obj !== -1):
4086
                                             obj = this._get_node(obj);
4087
                                             error_func = function (x, t, e) {
4088
                                                      var ef = this.get_settings().html_data.ajax.error;
4089
                                                     if(ef) { ef.call(this, x, t, e); }
4090
                                                     if(obj != -1 && obj.length) {
4091
                                                          obj.children("a.jstree-loading").removeClass("jstree-loading");
4092
                                                                obj.removeData("jstree_is_loading");
4093
                                                           if(t === "success" && s.correct_state) { this.correct_state(obj); }
4094
                                                    }
4095
                                                      else {
4096
                                                         if(t === "success" && s.correct_state) { this.get_container().children("ul").empty(); }
4097
                                                        }
4098
                                                      if(e_call) { e_call.call(this); }
4099
                                              };
4100
                                             success_func = function (d, t, x) {
4101
                                                    var sf = this.get_settings().html_data.ajax.success;
4102
                                                   if(sf) { d = sf.call(this,d,t,x) || d; }
4103
                                                       if(d === "" || (d && d.toString && d.toString().replace(/^[\s\n]+$/,"") === "")) {
4104
                                                             return error_func.call(this, x, t, "");
4105
                                                        }
4106
                                                      if(d) {
4107
                                                                d = $(d);
4108
                                                              if(!d.is("ul")) { d = $("<ul />").append(d); }
4109
                                                         if(obj == -1 || !obj) { this.get_container().children("ul").empty().append(d.children()).find("li, a").filter(function () { return !this.firstChild || !this.firstChild.tagName || this.firstChild.tagName !== "INS"; }).prepend("<ins class='jstree-icon'>&#160;</ins>").end().filter("a").children("ins:first-child").not(".jstree-icon").addClass("jstree-icon"); }
4110
                                                         else { obj.children("a.jstree-loading").removeClass("jstree-loading"); obj.append(d).children("ul").find("li, a").filter(function () { return !this.firstChild || !this.firstChild.tagName || this.firstChild.tagName !== "INS"; }).prepend("<ins class='jstree-icon'>&#160;</ins>").end().filter("a").children("ins:first-child").not(".jstree-icon").addClass("jstree-icon"); obj.removeData("jstree_is_loading"); }
4111
                                                         this.clean_node(obj);
4112
                                                          if(s_call) { s_call.call(this); }
4113
                                                      }
4114
                                                      else {
4115
                                                         if(obj && obj !== -1) {
4116
                                                                        obj.children("a.jstree-loading").removeClass("jstree-loading");
4117
                                                                        obj.removeData("jstree_is_loading");
4118
                                                                   if(s.correct_state) {
4119
                                                                          this.correct_state(obj);
4120
                                                                               if(s_call) { s_call.call(this); }
4121
                                                                      }
4122
                                                              }
4123
                                                              else {
4124
                                                                 if(s.correct_state) {
4125
                                                                          this.get_container().children("ul").empty();
4126
                                                                           if(s_call) { s_call.call(this); }
4127
                                                                      }
4128
                                                              }
4129
                                                      }
4130
                                              };
4131
                                             s.ajax.context = this;
4132
                                         s.ajax.error = error_func;
4133
                                             s.ajax.success = success_func;
4134
                                         if(!s.ajax.dataType) { s.ajax.dataType = "html"; }
4135
                                             if($.isFunction(s.ajax.url)) { s.ajax.url = s.ajax.url.call(this, obj); }
4136
                                              if($.isFunction(s.ajax.data)) { s.ajax.data = s.ajax.data.call(this, obj); }
4137
                                           $.ajax(s.ajax);
4138
                                                break;
4139
                         }
4140
                      }
4141
              }
4142
      });
4143
    // include the HTML data plugin by default
4144
     $.jstree.defaults.plugins.push("html_data");
4145
})(jQuery);
4146
//*/
4147
4148
/*
4149
 * jsTree themeroller plugin
4150
 * Adds support for jQuery UI themes. Include this at the end of your plugins list, also make sure "themes" is not included.
4151
 */
4152
(function ($) {
4153
        $.jstree.plugin("themeroller", {
4154
               __init : function () {
4155
                 var s = this._get_settings().themeroller;
4156
                      this.get_container()
4157
                           .addClass("ui-widget-content")
4158
                         .addClass("jstree-themeroller")
4159
                                .delegate("a","mouseenter.jstree", function (e) {
4160
                                      if(!$(e.currentTarget).hasClass("jstree-loading")) {
4161
                                           $(this).addClass(s.item_h);
4162
                                    }
4163
                              })
4164
                             .delegate("a","mouseleave.jstree", function () {
4165
                                       $(this).removeClass(s.item_h);
4166
                         })
4167
                             .bind("init.jstree", $.proxy(function (e, data) {
4168
                                              data.inst.get_container().find("> ul > li > .jstree-loading > ins").addClass("ui-icon-refresh");
4169
                                               this._themeroller(data.inst.get_container().find("> ul > li"));
4170
                                        }, this))
4171
                              .bind("open_node.jstree create_node.jstree", $.proxy(function (e, data) {
4172
                                              this._themeroller(data.rslt.obj);
4173
                                      }, this))
4174
                              .bind("loaded.jstree refresh.jstree", $.proxy(function (e) {
4175
                                           this._themeroller();
4176
                                   }, this))
4177
                              .bind("close_node.jstree", $.proxy(function (e, data) {
4178
                                                this._themeroller(data.rslt.obj);
4179
                                      }, this))
4180
                              .bind("delete_node.jstree", $.proxy(function (e, data) {
4181
                                               this._themeroller(data.rslt.parent);
4182
                                   }, this))
4183
                              .bind("correct_state.jstree", $.proxy(function (e, data) {
4184
                                             data.rslt.obj
4185
                                                  .children("ins.jstree-icon").removeClass(s.opened + " " + s.closed + " ui-icon").end()
4186
                                                 .find("> a > ins.ui-icon")
4187
                                                             .filter(function() {
4188
                                                                   return this.className.toString()
4189
                                                                               .replace(s.item_clsd,"").replace(s.item_open,"").replace(s.item_leaf,"")
4190
                                                                               .indexOf("ui-icon-") === -1;
4191
                                                           }).removeClass(s.item_open + " " + s.item_clsd).addClass(s.item_leaf || "jstree-no-icon");
4192
                                     }, this))
4193
                              .bind("select_node.jstree", $.proxy(function (e, data) {
4194
                                               data.rslt.obj.children("a").addClass(s.item_a);
4195
                                        }, this))
4196
                              .bind("deselect_node.jstree deselect_all.jstree", $.proxy(function (e, data) {
4197
                                         this.get_container()
4198
                                                   .find("a." + s.item_a).removeClass(s.item_a).end()
4199
                                                     .find("a.jstree-clicked").addClass(s.item_a);
4200
                                  }, this))
4201
                              .bind("dehover_node.jstree", $.proxy(function (e, data) {
4202
                                              data.rslt.obj.children("a").removeClass(s.item_h);
4203
                                     }, this))
4204
                              .bind("hover_node.jstree", $.proxy(function (e, data) {
4205
                                                this.get_container()
4206
                                                   .find("a." + s.item_h).not(data.rslt.obj).removeClass(s.item_h);
4207
                                               data.rslt.obj.children("a").addClass(s.item_h);
4208
                                        }, this))
4209
                              .bind("move_node.jstree", $.proxy(function (e, data) {
4210
                                         this._themeroller(data.rslt.o);
4211
                                                this._themeroller(data.rslt.op);
4212
                                       }, this));
4213
             },
4214
             __destroy : function () {
4215
                      var s = this._get_settings().themeroller,
4216
                              c = [ "ui-icon" ];
4217
                     $.each(s, function (i, v) {
4218
                            v = v.split(" ");
4219
                              if(v.length) { c = c.concat(v); }
4220
                      });
4221
                    this.get_container()
4222
                           .removeClass("ui-widget-content")
4223
                              .find("." + c.join(", .")).removeClass(c.join(" "));
4224
           },
4225
             _fn : {
4226
                        _themeroller : function (obj) {
4227
                                var s = this._get_settings().themeroller;
4228
                              obj = !obj || obj == -1 ? this.get_container_ul() : this._get_node(obj).parent();
4229
                              obj
4230
                                    .find("li.jstree-closed")
4231
                                              .children("ins.jstree-icon").removeClass(s.opened).addClass("ui-icon " + s.closed).end()
4232
                                               .children("a").addClass(s.item)
4233
                                                        .children("ins.jstree-icon").addClass("ui-icon")
4234
                                                               .filter(function() {
4235
                                                                   return this.className.toString()
4236
                                                                               .replace(s.item_clsd,"").replace(s.item_open,"").replace(s.item_leaf,"")
4237
                                                                               .indexOf("ui-icon-") === -1;
4238
                                                           }).removeClass(s.item_leaf + " " + s.item_open).addClass(s.item_clsd || "jstree-no-icon")
4239
                                                              .end()
4240
                                                 .end()
4241
                                         .end()
4242
                                 .end()
4243
                                 .find("li.jstree-open")
4244
                                                .children("ins.jstree-icon").removeClass(s.closed).addClass("ui-icon " + s.opened).end()
4245
                                               .children("a").addClass(s.item)
4246
                                                        .children("ins.jstree-icon").addClass("ui-icon")
4247
                                                               .filter(function() {
4248
                                                                   return this.className.toString()
4249
                                                                               .replace(s.item_clsd,"").replace(s.item_open,"").replace(s.item_leaf,"")
4250
                                                                               .indexOf("ui-icon-") === -1;
4251
                                                           }).removeClass(s.item_leaf + " " + s.item_clsd).addClass(s.item_open || "jstree-no-icon")
4252
                                                              .end()
4253
                                                 .end()
4254
                                         .end()
4255
                                 .end()
4256
                                 .find("li.jstree-leaf")
4257
                                                .children("ins.jstree-icon").removeClass(s.closed + " ui-icon " + s.opened).end()
4258
                                              .children("a").addClass(s.item)
4259
                                                        .children("ins.jstree-icon").addClass("ui-icon")
4260
                                                               .filter(function() {
4261
                                                                   return this.className.toString()
4262
                                                                               .replace(s.item_clsd,"").replace(s.item_open,"").replace(s.item_leaf,"")
4263
                                                                               .indexOf("ui-icon-") === -1;
4264
                                                           }).removeClass(s.item_clsd + " " + s.item_open).addClass(s.item_leaf || "jstree-no-icon");
4265
                     }
4266
              },
4267
             defaults : {
4268
                   "opened"	: "ui-icon-triangle-1-se",
4269
                    "closed"	: "ui-icon-triangle-1-e",
4270
                     "item"		: "ui-state-default",
4271
                  "item_h"	: "ui-state-hover",
4272
                   "item_a"	: "ui-state-active",
4273
                  "item_open"	: "ui-icon-folder-open",
4274
                   "item_clsd"	: "ui-icon-folder-collapsed",
4275
                      "item_leaf"	: "ui-icon-document"
4276
               }
4277
      });
4278
    $(function() {
4279
         var css_string = '' +
4280
                  '.jstree-themeroller .ui-icon { overflow:visible; } ' +
4281
                        '.jstree-themeroller a { padding:0 2px; } ' +
4282
                  '.jstree-themeroller .jstree-no-icon { display:none; }';
4283
               $.vakata.css.add_sheet({ str : css_string, title : "jstree" });
4284
        });
4285
})(jQuery);
4286
//*/
4287
4288
/*
4289
 * jsTree unique plugin
4290
 * Forces different names amongst siblings (still a bit experimental)
4291
 * NOTE: does not check language versions (it will not be possible to have nodes with the same title, even in different languages)
4292
 */
4293
(function ($) {
4294
  $.jstree.plugin("unique", {
4295
            __init : function () {
4296
                 this.get_container()
4297
                           .bind("before.jstree", $.proxy(function (e, data) {
4298
                                            var nms = [], res = true, p, t;
4299
                                                if(data.func == "move_node") {
4300
                                                 // obj, ref, position, is_copy, is_prepared, skip_check
4301
                                                        if(data.args[4] === true) {
4302
                                                            if(data.args[0].o && data.args[0].o.length) {
4303
                                                                  data.args[0].o.children("a").each(function () { nms.push($(this).text().replace(/^\s+/g,"")); });
4304
                                                                      res = this._check_unique(nms, data.args[0].np.find("> ul > li").not(data.args[0].o), "move_node");
4305
                                                             }
4306
                                                      }
4307
                                              }
4308
                                              if(data.func == "create_node") {
4309
                                                       // obj, position, js, callback, is_loaded
4310
                                                      if(data.args[4] || this._is_loaded(data.args[0])) {
4311
                                                            p = this._get_node(data.args[0]);
4312
                                                              if(data.args[1] && (data.args[1] === "before" || data.args[1] === "after")) {
4313
                                                                  p = this._get_parent(data.args[0]);
4314
                                                                    if(!p || p === -1) { p = this.get_container(); }
4315
                                                               }
4316
                                                              if(typeof data.args[2] === "string") { nms.push(data.args[2]); }
4317
                                                               else if(!data.args[2] || !data.args[2].data) { nms.push(this._get_string("new_node")); }
4318
                                                               else { nms.push(data.args[2].data); }
4319
                                                          res = this._check_unique(nms, p.find("> ul > li"), "create_node");
4320
                                                     }
4321
                                              }
4322
                                              if(data.func == "rename_node") {
4323
                                                       // obj, val
4324
                                                    nms.push(data.args[1]);
4325
                                                        t = this._get_node(data.args[0]);
4326
                                                      p = this._get_parent(t);
4327
                                                       if(!p || p === -1) { p = this.get_container(); }
4328
                                                       res = this._check_unique(nms, p.find("> ul > li").not(t), "rename_node");
4329
                                              }
4330
                                              if(!res) {
4331
                                                     e.stopPropagation();
4332
                                                   return false;
4333
                                          }
4334
                                      }, this));
4335
             },
4336
             defaults : {
4337
                   error_callback : $.noop
4338
                },
4339
             _fn : {
4340
                        _check_unique : function (nms, p, func) {
4341
                              var cnms = [];
4342
                         p.children("a").each(function () { cnms.push($(this).text().replace(/^\s+/g,"")); });
4343
                          if(!cnms.length || !nms.length) { return true; }
4344
                               cnms = cnms.sort().join(",,").replace(/(,|^)([^,]+)(,,\2)+(,|$)/g,"$1$2$4").replace(/,,+/g,",").replace(/,$/,"").split(",");
4345
                           if((cnms.length + nms.length) != cnms.concat(nms).sort().join(",,").replace(/(,|^)([^,]+)(,,\2)+(,|$)/g,"$1$2$4").replace(/,,+/g,",").replace(/,$/,"").split(",").length) {
4346
                                    this._get_settings().unique.error_callback.call(null, nms, p, func);
4347
                                   return false;
4348
                          }
4349
                              return true;
4350
                   },
4351
                     check_move : function () {
4352
                             if(!this.__call_old()) { return false; }
4353
                               var p = this._get_move(), nms = [];
4354
                            if(p.o && p.o.length) {
4355
                                        p.o.children("a").each(function () { nms.push($(this).text().replace(/^\s+/g,"")); });
4356
                                 return this._check_unique(nms, p.np.find("> ul > li").not(p.o), "check_move");
4357
                         }
4358
                              return true;
4359
                   }
4360
              }
4361
      });
4362
})(jQuery);
4363
//*/
4364
4365
/*
4366
 * jsTree wholerow plugin
4367
 * Makes select and hover work on the entire width of the node
4368
 * MAY BE HEAVY IN LARGE DOM
4369
 */
4370
(function ($) {
4371
     $.jstree.plugin("wholerow", {
4372
          __init : function () {
4373
                 if(!this.data.ui) { throw "jsTree wholerow: jsTree UI plugin not included."; }
4374
                 this.data.wholerow.html = false;
4375
                       this.data.wholerow.to = false;
4376
                 this.get_container()
4377
                           .bind("init.jstree", $.proxy(function (e, data) {
4378
                                              this._get_settings().core.animation = 0;
4379
                                       }, this))
4380
                              .bind("open_node.jstree create_node.jstree clean_node.jstree loaded.jstree", $.proxy(function (e, data) {
4381
                                              this._prepare_wholerow_span( data && data.rslt && data.rslt.obj ? data.rslt.obj : -1 );
4382
                                        }, this))
4383
                              .bind("search.jstree clear_search.jstree reopen.jstree after_open.jstree after_close.jstree create_node.jstree delete_node.jstree clean_node.jstree", $.proxy(function (e, data) {
4384
                                             if(this.data.to) { clearTimeout(this.data.to); }
4385
                                               this.data.to = setTimeout( (function (t, o) { return function() { t._prepare_wholerow_ul(o); }; })(this,  data && data.rslt && data.rslt.obj ? data.rslt.obj : -1), 0);
4386
                                        }, this))
4387
                              .bind("deselect_all.jstree", $.proxy(function (e, data) {
4388
                                              this.get_container().find(" > .jstree-wholerow .jstree-clicked").removeClass("jstree-clicked " + (this.data.themeroller ? this._get_settings().themeroller.item_a : "" ));
4389
                                     }, this))
4390
                              .bind("select_node.jstree deselect_node.jstree ", $.proxy(function (e, data) {
4391
                                         data.rslt.obj.each(function () {
4392
                                                       var ref = data.inst.get_container().find(" > .jstree-wholerow li:visible:eq(" + ( parseInt((($(this).offset().top - data.inst.get_container().offset().top + data.inst.get_container()[0].scrollTop) / data.inst.data.core.li_height),10)) + ")");
4393
                                                     // ref.children("a")[e.type === "select_node" ? "addClass" : "removeClass"]("jstree-clicked");
4394
                                                 ref.children("a").attr("class",data.rslt.obj.children("a").attr("class"));
4395
                                             });
4396
                                    }, this))
4397
                              .bind("hover_node.jstree dehover_node.jstree", $.proxy(function (e, data) {
4398
                                            this.get_container().find(" > .jstree-wholerow .jstree-hovered").removeClass("jstree-hovered " + (this.data.themeroller ? this._get_settings().themeroller.item_h : "" ));
4399
                                             if(e.type === "hover_node") {
4400
                                                  var ref = this.get_container().find(" > .jstree-wholerow li:visible:eq(" + ( parseInt(((data.rslt.obj.offset().top - this.get_container().offset().top + this.get_container()[0].scrollTop) / this.data.core.li_height),10)) + ")");
4401
                                                   // ref.children("a").addClass("jstree-hovered");
4402
                                                       ref.children("a").attr("class",data.rslt.obj.children(".jstree-hovered").attr("class"));
4403
                                               }
4404
                                      }, this))
4405
                              .delegate(".jstree-wholerow-span, ins.jstree-icon, li", "click.jstree", function (e) {
4406
                                         var n = $(e.currentTarget);
4407
                                            if(e.target.tagName === "A" || (e.target.tagName === "INS" && n.closest("li").is(".jstree-open, .jstree-closed"))) { return; }
4408
                                         n.closest("li").children("a:visible:eq(0)").click();
4409
                                           e.stopImmediatePropagation();
4410
                                  })
4411
                             .delegate("li", "mouseover.jstree", $.proxy(function (e) {
4412
                                             e.stopImmediatePropagation();
4413
                                          if($(e.currentTarget).children(".jstree-hovered, .jstree-clicked").length) { return false; }
4414
                                           this.hover_node(e.currentTarget);
4415
                                              return false;
4416
                                  }, this))
4417
                              .delegate("li", "mouseleave.jstree", $.proxy(function (e) {
4418
                                            if($(e.currentTarget).children("a").hasClass("jstree-hovered").length) { return; }
4419
                                             this.dehover_node(e.currentTarget);
4420
                                    }, this));
4421
                     if(is_ie7 || is_ie6) {
4422
                         $.vakata.css.add_sheet({ str : ".jstree-" + this.get_index() + " { position:relative; } ", title : "jstree" });
4423
                        }
4424
              },
4425
             defaults : {
4426
           },
4427
             __destroy : function () {
4428
                      this.get_container().children(".jstree-wholerow").remove();
4429
                    this.get_container().find(".jstree-wholerow-span").remove();
4430
           },
4431
             _fn : {
4432
                        _prepare_wholerow_span : function (obj) {
4433
                              obj = !obj || obj == -1 ? this.get_container().find("> ul > li") : this._get_node(obj);
4434
                                if(obj === false) { return; } // added for removing root nodes
4435
                         obj.each(function () {
4436
                                 $(this).find("li").andSelf().each(function () {
4437
                                                var $t = $(this);
4438
                                              if($t.children(".jstree-wholerow-span").length) { return true; }
4439
                                               $t.prepend("<span class='jstree-wholerow-span' style='width:" + ($t.parentsUntil(".jstree","li").length * 18) + "px;'>&#160;</span>");
4440
                                 });
4441
                            });
4442
                    },
4443
                     _prepare_wholerow_ul : function () {
4444
                           var o = this.get_container().children("ul").eq(0), h = o.html();
4445
                               o.addClass("jstree-wholerow-real");
4446
                            if(this.data.wholerow.last_html !== h) {
4447
                                       this.data.wholerow.last_html = h;
4448
                                      this.get_container().children(".jstree-wholerow").remove();
4449
                                    this.get_container().append(
4450
                                           o.clone().removeClass("jstree-wholerow-real")
4451
                                                  .wrapAll("<div class='jstree-wholerow' />").parent()
4452
                                                   .width(o.parent()[0].scrollWidth)
4453
                                                      .css("top", (o.height() + ( is_ie7 ? 5 : 0)) * -1 )
4454
                                                    .find("li[id]").each(function () { this.removeAttribute("id"); }).end()
4455
                                        );
4456
                             }
4457
                      }
4458
              }
4459
      });
4460
    $(function() {
4461
         var css_string = '' +
4462
                  '.jstree .jstree-wholerow-real { position:relative; z-index:1; } ' +
4463
                   '.jstree .jstree-wholerow-real li { cursor:pointer; } ' +
4464
                      '.jstree .jstree-wholerow-real a { border-left-color:transparent !important; border-right-color:transparent !important; } ' +
4465
                  '.jstree .jstree-wholerow { position:relative; z-index:0; height:0; } ' +
4466
                      '.jstree .jstree-wholerow ul, .jstree .jstree-wholerow li { width:100%; } ' +
4467
                  '.jstree .jstree-wholerow, .jstree .jstree-wholerow ul, .jstree .jstree-wholerow li, .jstree .jstree-wholerow a { margin:0 !important; padding:0 !important; } ' +
4468
                     '.jstree .jstree-wholerow, .jstree .jstree-wholerow ul, .jstree .jstree-wholerow li { background:transparent !important; }' +
4469
                  '.jstree .jstree-wholerow ins, .jstree .jstree-wholerow span, .jstree .jstree-wholerow input { display:none !important; }' +
4470
                   '.jstree .jstree-wholerow a, .jstree .jstree-wholerow a:hover { text-indent:-9999px; !important; width:100%; padding:0 !important; border-right-width:0px !important; border-left-width:0px !important; } ' +
4471
                  '.jstree .jstree-wholerow-span { position:absolute; left:0; margin:0px; padding:0; height:18px; border-width:0; padding:0; z-index:0; }';
4472
              if(is_ff2) {
4473
                   css_string += '' +
4474
                             '.jstree .jstree-wholerow a { display:block; height:18px; margin:0; padding:0; border:0; } ' +
4475
                         '.jstree .jstree-wholerow-real a { border-color:transparent !important; } ';
4476
           }
4477
              if(is_ie7 || is_ie6) {
4478
                 css_string += '' +
4479
                             '.jstree .jstree-wholerow, .jstree .jstree-wholerow li, .jstree .jstree-wholerow ul, .jstree .jstree-wholerow a { margin:0; padding:0; line-height:18px; } ' +
4480
                         '.jstree .jstree-wholerow a { display:block; height:18px; line-height:18px; overflow:hidden; } ';
4481
              }
4482
              $.vakata.css.add_sheet({ str : css_string, title : "jstree" });
4483
        });
4484
})(jQuery);
4485
//*/
4486
4487
/*
4488
* jsTree model plugin
4489
* This plugin gets jstree to use a class model to retrieve data, creating great dynamism
4490
*/
4491
(function ($) {
4492
     var nodeInterface = ["getChildren","getChildrenCount","getAttr","getName","getProps"],
4493
         validateInterface = function(obj, inter) {
4494
                     var valid = true;
4495
                      obj = obj || {};
4496
                       inter = [].concat(inter);
4497
                      $.each(inter, function (i, v) {
4498
                                if(!$.isFunction(obj[v])) { valid = false; return false; }
4499
                     });
4500
                    return valid;
4501
          };
4502
     $.jstree.plugin("model", {
4503
             __init : function () {
4504
                 if(!this.data.json_data) { throw "jsTree model: jsTree json_data plugin not included."; }
4505
                      this._get_settings().json_data.data = function (n, b) {
4506
                                var obj = (n == -1) ? this._get_settings().model.object : n.data("jstree_model");
4507
                              if(!validateInterface(obj, nodeInterface)) { return b.call(null, false); }
4508
                             if(this._get_settings().model.async) {
4509
                                 obj.getChildren($.proxy(function (data) {
4510
                                              this.model_done(data, b);
4511
                                      }, this));
4512
                             }
4513
                              else {
4514
                                 this.model_done(obj.getChildren(), b);
4515
                         }
4516
                      };
4517
             },
4518
             defaults : {
4519
                   object : false,
4520
                        id_prefix : false,
4521
                     async : false
4522
          },
4523
             _fn : {
4524
                        model_done : function (data, callback) {
4525
                               var ret = [],
4526
                                  s = this._get_settings(),
4527
                                      _this = this;
4528
4529
                         if(!$.isArray(data)) { data = [data]; }
4530
                                $.each(data, function (i, nd) {
4531
                                        var r = nd.getProps() || {};
4532
                                   r.attr = nd.getAttr() || {};
4533
                                   if(nd.getChildrenCount()) { r.state = "closed"; }
4534
                                      r.data = nd.getName();
4535
                                 if(!$.isArray(r.data)) { r.data = [r.data]; }
4536
                                  if(_this.data.types && $.isFunction(nd.getType)) {
4537
                                             r.attr[s.types.type_attr] = nd.getType();
4538
                                      }
4539
                                      if(r.attr.id && s.model.id_prefix) { r.attr.id = s.model.id_prefix + r.attr.id; }
4540
                                      if(!r.metadata) { r.metadata = { }; }
4541
                                  r.metadata.jstree_model = nd;
4542
                                  ret.push(r);
4543
                           });
4544
                            callback.call(null, ret);
4545
                      }
4546
              }
4547
      });
4548
})(jQuery);
4549
//*/
4550
4551
})();
(-)a/koha-tmpl/opac-tmpl/lib/jquery/plugins/jstree/jstree-3.3.12.min.js (+6 lines)
Line 0 Link Here
1
/*! jsTree - v3.3.12 - 2021-09-03 - (MIT) */
2
!function(a){"use strict";"function"==typeof define&&define.amd?define(["jquery"],a):"undefined"!=typeof module&&module.exports?module.exports=a(require("jquery")):a(jQuery)}(function(a,b){"use strict";if(!a.jstree){var c=0,d=!1,e=!1,f=!1,g=[],h=a("script:last").attr("src"),i=window.document,j=window.setImmediate,k=window.Promise;!j&&k&&(j=function(a,b){k.resolve(b).then(a)}),a.jstree={version:"3.3.12",defaults:{plugins:[]},plugins:{},path:h&&-1!==h.indexOf("/")?h.replace(/\/[^\/]+$/,""):"",idregex:/[\\:&!^|()\[\]<>@*'+~#";.,=\- \/${}%?`]/g,root:"#"},a.jstree.create=function(b,d){var e=new a.jstree.core(++c),f=d;return d=a.extend(!0,{},a.jstree.defaults,d),f&&f.plugins&&(d.plugins=f.plugins),a.each(d.plugins,function(a,b){"core"!==a&&(e=e.plugin(b,d[b]))}),a(b).data("jstree",e),e.init(b,d),e},a.jstree.destroy=function(){a(".jstree:jstree").jstree("destroy"),a(i).off(".jstree")},a.jstree.core=function(a){this._id=a,this._cnt=0,this._wrk=null,this._data={core:{themes:{name:!1,dots:!1,icons:!1,ellipsis:!1},selected:[],last_error:{},working:!1,worker_queue:[],focused:null}}},a.jstree.reference=function(b){var c=null,d=null;if(!b||!b.id||b.tagName&&b.nodeType||(b=b.id),!d||!d.length)try{d=a(b)}catch(e){}if(!d||!d.length)try{d=a("#"+b.replace(a.jstree.idregex,"\\$&"))}catch(e){}return d&&d.length&&(d=d.closest(".jstree")).length&&(d=d.data("jstree"))?c=d:a(".jstree").each(function(){var d=a(this).data("jstree");return d&&d._model.data[b]?(c=d,!1):void 0}),c},a.fn.jstree=function(c){var d="string"==typeof c,e=Array.prototype.slice.call(arguments,1),f=null;return c!==!0||this.length?(this.each(function(){var g=a.jstree.reference(this),h=d&&g?g[c]:null;return f=d&&h?h.apply(g,e):null,g||d||c!==b&&!a.isPlainObject(c)||a.jstree.create(this,c),(g&&!d||c===!0)&&(f=g||!1),null!==f&&f!==b?!1:void 0}),null!==f&&f!==b?f:this):!1},a.expr.pseudos.jstree=a.expr.createPseudo(function(c){return function(c){return a(c).hasClass("jstree")&&a(c).data("jstree")!==b}}),a.jstree.defaults.core={data:!1,strings:!1,check_callback:!1,error:a.noop,animation:200,multiple:!0,themes:{name:!1,url:!1,dir:!1,dots:!0,icons:!0,ellipsis:!1,stripes:!1,variant:!1,responsive:!1},expand_selected_onload:!0,worker:!0,force_text:!1,dblclick_toggle:!0,loaded_state:!1,restore_focus:!0,compute_elements_positions:!1,keyboard:{"ctrl-space":function(b){b.type="click",a(b.currentTarget).trigger(b)},enter:function(b){b.type="click",a(b.currentTarget).trigger(b)},left:function(b){if(b.preventDefault(),this.is_open(b.currentTarget))this.close_node(b.currentTarget);else{var c=this.get_parent(b.currentTarget);c&&c.id!==a.jstree.root&&this.get_node(c,!0).children(".jstree-anchor").trigger("focus")}},up:function(a){a.preventDefault();var b=this.get_prev_dom(a.currentTarget);b&&b.length&&b.children(".jstree-anchor").trigger("focus")},right:function(b){if(b.preventDefault(),this.is_closed(b.currentTarget))this.open_node(b.currentTarget,function(a){this.get_node(a,!0).children(".jstree-anchor").trigger("focus")});else if(this.is_open(b.currentTarget)){var c=this.get_node(b.currentTarget,!0).children(".jstree-children")[0];c&&a(this._firstChild(c)).children(".jstree-anchor").trigger("focus")}},down:function(a){a.preventDefault();var b=this.get_next_dom(a.currentTarget);b&&b.length&&b.children(".jstree-anchor").trigger("focus")},"*":function(a){this.open_all()},home:function(b){b.preventDefault();var c=this._firstChild(this.get_container_ul()[0]);c&&a(c).children(".jstree-anchor").filter(":visible").trigger("focus")},end:function(a){a.preventDefault(),this.element.find(".jstree-anchor").filter(":visible").last().trigger("focus")},f2:function(a){a.preventDefault(),this.edit(a.currentTarget)}}},a.jstree.core.prototype={plugin:function(b,c){var d=a.jstree.plugins[b];return d?(this._data[b]={},d.prototype=this,new d(c,this)):this},init:function(b,c){this._model={data:{},changed:[],force_full_redraw:!1,redraw_timeout:!1,default_state:{loaded:!0,opened:!1,selected:!1,disabled:!1}},this._model.data[a.jstree.root]={id:a.jstree.root,parent:null,parents:[],children:[],children_d:[],state:{loaded:!1}},this.element=a(b).addClass("jstree jstree-"+this._id),this.settings=c,this._data.core.ready=!1,this._data.core.loaded=!1,this._data.core.rtl="rtl"===this.element.css("direction"),this.element[this._data.core.rtl?"addClass":"removeClass"]("jstree-rtl"),this.element.attr("role","tree"),this.settings.core.multiple&&this.element.attr("aria-multiselectable",!0),this.element.attr("tabindex")||this.element.attr("tabindex","0"),this.bind(),this.trigger("init"),this._data.core.original_container_html=this.element.find(" > ul > li").clone(!0),this._data.core.original_container_html.find("li").addBack().contents().filter(function(){return 3===this.nodeType&&(!this.nodeValue||/^\s+$/.test(this.nodeValue))}).remove(),this.element.html("<ul class='jstree-container-ul jstree-children' role='group'><li id='j"+this._id+"_loading' class='jstree-initial-node jstree-loading jstree-leaf jstree-last' role='none'><i class='jstree-icon jstree-ocl'></i><a class='jstree-anchor' role='treeitem' href='#'><i class='jstree-icon jstree-themeicon-hidden'></i>"+this.get_string("Loading ...")+"</a></li></ul>"),this.element.attr("aria-activedescendant","j"+this._id+"_loading"),this._data.core.li_height=this.get_container_ul().children("li").first().outerHeight()||24,this._data.core.node=this._create_prototype_node(),this.trigger("loading"),this.load_node(a.jstree.root)},destroy:function(a){if(this.trigger("destroy"),this._wrk)try{window.URL.revokeObjectURL(this._wrk),this._wrk=null}catch(b){}a||this.element.empty(),this.teardown()},_create_prototype_node:function(){var a=i.createElement("LI"),b,c;return a.setAttribute("role","none"),b=i.createElement("I"),b.className="jstree-icon jstree-ocl",b.setAttribute("role","presentation"),a.appendChild(b),b=i.createElement("A"),b.className="jstree-anchor",b.setAttribute("href","#"),b.setAttribute("tabindex","-1"),b.setAttribute("role","treeitem"),c=i.createElement("I"),c.className="jstree-icon jstree-themeicon",c.setAttribute("role","presentation"),b.appendChild(c),a.appendChild(b),b=c=null,a},_kbevent_to_func:function(a){var b={8:"Backspace",9:"Tab",13:"Enter",19:"Pause",27:"Esc",32:"Space",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"Left",38:"Up",39:"Right",40:"Down",44:"Print",45:"Insert",46:"Delete",96:"Numpad0",97:"Numpad1",98:"Numpad2",99:"Numpad3",100:"Numpad4",101:"Numpad5",102:"Numpad6",103:"Numpad7",104:"Numpad8",105:"Numpad9","-13":"NumpadEnter",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"Numlock",145:"Scrolllock",16:"Shift",17:"Ctrl",18:"Alt",48:"0",49:"1",50:"2",51:"3",52:"4",53:"5",54:"6",55:"7",56:"8",57:"9",59:";",61:"=",65:"a",66:"b",67:"c",68:"d",69:"e",70:"f",71:"g",72:"h",73:"i",74:"j",75:"k",76:"l",77:"m",78:"n",79:"o",80:"p",81:"q",82:"r",83:"s",84:"t",85:"u",86:"v",87:"w",88:"x",89:"y",90:"z",107:"+",109:"-",110:".",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'",111:"/",106:"*",173:"-"},c=[];if(a.ctrlKey&&c.push("ctrl"),a.altKey&&c.push("alt"),a.shiftKey&&c.push("shift"),c.push(b[a.which]||a.which),c=c.sort().join("-").toLowerCase(),"shift-shift"===c||"ctrl-ctrl"===c||"alt-alt"===c)return null;var d=this.settings.core.keyboard,e,f;for(e in d)if(d.hasOwnProperty(e)&&(f=e,"-"!==f&&"+"!==f&&(f=f.replace("--","-MINUS").replace("+-","-MINUS").replace("++","-PLUS").replace("-+","-PLUS"),f=f.split(/-|\+/).sort().join("-").replace("MINUS","-").replace("PLUS","+").toLowerCase()),f===c))return d[e];return null},teardown:function(){this.unbind(),this.element.removeClass("jstree").removeData("jstree").find("[class^='jstree']").addBack().attr("class",function(){return this.className.replace(/jstree[^ ]*|$/gi,"")}),this.element=null},bind:function(){var b="",c=null,d=0;this.element.on("dblclick.jstree",function(a){if(a.target.tagName&&"input"===a.target.tagName.toLowerCase())return!0;if(i.selection&&i.selection.empty)i.selection.empty();else if(window.getSelection){var b=window.getSelection();try{b.removeAllRanges(),b.collapse()}catch(c){}}}).on("mousedown.jstree",function(a){a.target===this.element[0]&&(a.preventDefault(),d=+new Date)}.bind(this)).on("mousedown.jstree",".jstree-ocl",function(a){a.preventDefault()}).on("click.jstree",".jstree-ocl",function(a){this.toggle_node(a.target)}.bind(this)).on("dblclick.jstree",".jstree-anchor",function(a){return a.target.tagName&&"input"===a.target.tagName.toLowerCase()?!0:void(this.settings.core.dblclick_toggle&&this.toggle_node(a.target))}.bind(this)).on("click.jstree",".jstree-anchor",function(b){b.preventDefault(),b.currentTarget!==i.activeElement&&a(b.currentTarget).trigger("focus"),this.activate_node(b.currentTarget,b)}.bind(this)).on("keydown.jstree",".jstree-anchor",function(a){if(a.target.tagName&&"input"===a.target.tagName.toLowerCase())return!0;this._data.core.rtl&&(37===a.which?a.which=39:39===a.which&&(a.which=37));var b=this._kbevent_to_func(a);if(b){var c=b.call(this,a);if(c===!1||c===!0)return c}}.bind(this)).on("load_node.jstree",function(b,c){c.status&&(c.node.id!==a.jstree.root||this._data.core.loaded||(this._data.core.loaded=!0,this._firstChild(this.get_container_ul()[0])&&this.element.attr("aria-activedescendant",this._firstChild(this.get_container_ul()[0]).id),this.trigger("loaded")),this._data.core.ready||setTimeout(function(){if(this.element&&!this.get_container_ul().find(".jstree-loading").length){if(this._data.core.ready=!0,this._data.core.selected.length){if(this.settings.core.expand_selected_onload){var b=[],c,d;for(c=0,d=this._data.core.selected.length;d>c;c++)b=b.concat(this._model.data[this._data.core.selected[c]].parents);for(b=a.vakata.array_unique(b),c=0,d=b.length;d>c;c++)this.open_node(b[c],!1,0)}this.trigger("changed",{action:"ready",selected:this._data.core.selected})}this.trigger("ready")}}.bind(this),0))}.bind(this)).on("keypress.jstree",function(d){if(d.target.tagName&&"input"===d.target.tagName.toLowerCase())return!0;c&&clearTimeout(c),c=setTimeout(function(){b=""},500);var e=String.fromCharCode(d.which).toLowerCase(),f=this.element.find(".jstree-anchor").filter(":visible"),g=f.index(i.activeElement)||0,h=!1;if(b+=e,b.length>1){if(f.slice(g).each(function(c,d){return 0===a(d).text().toLowerCase().indexOf(b)?(a(d).trigger("focus"),h=!0,!1):void 0}.bind(this)),h)return;if(f.slice(0,g).each(function(c,d){return 0===a(d).text().toLowerCase().indexOf(b)?(a(d).trigger("focus"),h=!0,!1):void 0}.bind(this)),h)return}if(new RegExp("^"+e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")+"+$").test(b)){if(f.slice(g+1).each(function(b,c){return a(c).text().toLowerCase().charAt(0)===e?(a(c).trigger("focus"),h=!0,!1):void 0}.bind(this)),h)return;if(f.slice(0,g+1).each(function(b,c){return a(c).text().toLowerCase().charAt(0)===e?(a(c).trigger("focus"),h=!0,!1):void 0}.bind(this)),h)return}}.bind(this)).on("init.jstree",function(){var a=this.settings.core.themes;this._data.core.themes.dots=a.dots,this._data.core.themes.stripes=a.stripes,this._data.core.themes.icons=a.icons,this._data.core.themes.ellipsis=a.ellipsis,this.set_theme(a.name||"default",a.url),this.set_theme_variant(a.variant)}.bind(this)).on("loading.jstree",function(){this[this._data.core.themes.dots?"show_dots":"hide_dots"](),this[this._data.core.themes.icons?"show_icons":"hide_icons"](),this[this._data.core.themes.stripes?"show_stripes":"hide_stripes"](),this[this._data.core.themes.ellipsis?"show_ellipsis":"hide_ellipsis"]()}.bind(this)).on("blur.jstree",".jstree-anchor",function(b){this._data.core.focused=null,a(b.currentTarget).filter(".jstree-hovered").trigger("mouseleave"),this.element.attr("tabindex","0")}.bind(this)).on("focus.jstree",".jstree-anchor",function(b){var c=this.get_node(b.currentTarget);c&&c.id&&(this._data.core.focused=c.id),this.element.find(".jstree-hovered").not(b.currentTarget).trigger("mouseleave"),a(b.currentTarget).trigger("mouseenter"),this.element.attr("tabindex","-1")}.bind(this)).on("focus.jstree",function(){if(+new Date-d>500&&!this._data.core.focused&&this.settings.core.restore_focus){d=0;var a=this.get_node(this.element.attr("aria-activedescendant"),!0);a&&a.find("> .jstree-anchor").trigger("focus")}}.bind(this)).on("mouseenter.jstree",".jstree-anchor",function(a){this.hover_node(a.currentTarget)}.bind(this)).on("mouseleave.jstree",".jstree-anchor",function(a){this.dehover_node(a.currentTarget)}.bind(this))},unbind:function(){this.element.off(".jstree"),a(i).off(".jstree-"+this._id)},trigger:function(a,b){b||(b={}),b.instance=this,this.element.triggerHandler(a.replace(".jstree","")+".jstree",b)},get_container:function(){return this.element},get_container_ul:function(){return this.element.children(".jstree-children").first()},get_string:function(b){var c=this.settings.core.strings;return a.vakata.is_function(c)?c.call(this,b):c&&c[b]?c[b]:b},_firstChild:function(a){a=a?a.firstChild:null;while(null!==a&&1!==a.nodeType)a=a.nextSibling;return a},_nextSibling:function(a){a=a?a.nextSibling:null;while(null!==a&&1!==a.nodeType)a=a.nextSibling;return a},_previousSibling:function(a){a=a?a.previousSibling:null;while(null!==a&&1!==a.nodeType)a=a.previousSibling;return a},get_node:function(b,c){b&&b.id&&(b=b.id),b instanceof a&&b.length&&b[0].id&&(b=b[0].id);var d;try{if(this._model.data[b])b=this._model.data[b];else if("string"==typeof b&&this._model.data[b.replace(/^#/,"")])b=this._model.data[b.replace(/^#/,"")];else if("string"==typeof b&&(d=a("#"+b.replace(a.jstree.idregex,"\\$&"),this.element)).length&&this._model.data[d.closest(".jstree-node").attr("id")])b=this._model.data[d.closest(".jstree-node").attr("id")];else if((d=this.element.find(b)).length&&this._model.data[d.closest(".jstree-node").attr("id")])b=this._model.data[d.closest(".jstree-node").attr("id")];else{if(!(d=this.element.find(b)).length||!d.hasClass("jstree"))return!1;b=this._model.data[a.jstree.root]}return c&&(b=b.id===a.jstree.root?this.element:a("#"+b.id.replace(a.jstree.idregex,"\\$&"),this.element)),b}catch(e){return!1}},get_path:function(b,c,d){if(b=b.parents?b:this.get_node(b),!b||b.id===a.jstree.root||!b.parents)return!1;var e,f,g=[];for(g.push(d?b.id:b.text),e=0,f=b.parents.length;f>e;e++)g.push(d?b.parents[e]:this.get_text(b.parents[e]));return g=g.reverse().slice(1),c?g.join(c):g},get_next_dom:function(b,c){var d;if(b=this.get_node(b,!0),b[0]===this.element[0]){d=this._firstChild(this.get_container_ul()[0]);while(d&&0===d.offsetHeight)d=this._nextSibling(d);return d?a(d):!1}if(!b||!b.length)return!1;if(c){d=b[0];do d=this._nextSibling(d);while(d&&0===d.offsetHeight);return d?a(d):!1}if(b.hasClass("jstree-open")){d=this._firstChild(b.children(".jstree-children")[0]);while(d&&0===d.offsetHeight)d=this._nextSibling(d);if(null!==d)return a(d)}d=b[0];do d=this._nextSibling(d);while(d&&0===d.offsetHeight);return null!==d?a(d):b.parentsUntil(".jstree",".jstree-node").nextAll(".jstree-node:visible").first()},get_prev_dom:function(b,c){var d;if(b=this.get_node(b,!0),b[0]===this.element[0]){d=this.get_container_ul()[0].lastChild;while(d&&0===d.offsetHeight)d=this._previousSibling(d);return d?a(d):!1}if(!b||!b.length)return!1;if(c){d=b[0];do d=this._previousSibling(d);while(d&&0===d.offsetHeight);return d?a(d):!1}d=b[0];do d=this._previousSibling(d);while(d&&0===d.offsetHeight);if(null!==d){b=a(d);while(b.hasClass("jstree-open"))b=b.children(".jstree-children").first().children(".jstree-node:visible:last");return b}return d=b[0].parentNode.parentNode,d&&d.className&&-1!==d.className.indexOf("jstree-node")?a(d):!1},get_parent:function(b){return b=this.get_node(b),b&&b.id!==a.jstree.root?b.parent:!1},get_children_dom:function(a){return a=this.get_node(a,!0),a[0]===this.element[0]?this.get_container_ul().children(".jstree-node"):a&&a.length?a.children(".jstree-children").children(".jstree-node"):!1},is_parent:function(a){return a=this.get_node(a),a&&(a.state.loaded===!1||a.children.length>0)},is_loaded:function(a){return a=this.get_node(a),a&&a.state.loaded},is_loading:function(a){return a=this.get_node(a),a&&a.state&&a.state.loading},is_open:function(a){return a=this.get_node(a),a&&a.state.opened},is_closed:function(a){return a=this.get_node(a),a&&this.is_parent(a)&&!a.state.opened},is_leaf:function(a){return!this.is_parent(a)},load_node:function(b,c){var d,e,f,g,h;if(a.vakata.is_array(b))return this._load_nodes(b.slice(),c),!0;if(b=this.get_node(b),!b)return c&&c.call(this,b,!1),!1;if(b.state.loaded){for(b.state.loaded=!1,f=0,g=b.parents.length;g>f;f++)this._model.data[b.parents[f]].children_d=a.vakata.array_filter(this._model.data[b.parents[f]].children_d,function(c){return-1===a.inArray(c,b.children_d)});for(d=0,e=b.children_d.length;e>d;d++)this._model.data[b.children_d[d]].state.selected&&(h=!0),delete this._model.data[b.children_d[d]];h&&(this._data.core.selected=a.vakata.array_filter(this._data.core.selected,function(c){return-1===a.inArray(c,b.children_d)})),b.children=[],b.children_d=[],h&&this.trigger("changed",{action:"load_node",node:b,selected:this._data.core.selected})}return b.state.failed=!1,b.state.loading=!0,this.get_node(b,!0).addClass("jstree-loading").attr("aria-busy",!0),this._load_node(b,function(a){b=this._model.data[b.id],b.state.loading=!1,b.state.loaded=a,b.state.failed=!b.state.loaded;var d=this.get_node(b,!0),e=0,f=0,g=this._model.data,h=!1;for(e=0,f=b.children.length;f>e;e++)if(g[b.children[e]]&&!g[b.children[e]].state.hidden){h=!0;break}b.state.loaded&&d&&d.length&&(d.removeClass("jstree-closed jstree-open jstree-leaf"),h?"#"!==b.id&&d.addClass(b.state.opened?"jstree-open":"jstree-closed"):d.addClass("jstree-leaf")),d.removeClass("jstree-loading").attr("aria-busy",!1),this.trigger("load_node",{node:b,status:a}),c&&c.call(this,b,a)}.bind(this)),!0},_load_nodes:function(a,b,c,d){var e=!0,f=function(){this._load_nodes(a,b,!0)},g=this._model.data,h,i,j=[];for(h=0,i=a.length;i>h;h++)g[a[h]]&&(!g[a[h]].state.loaded&&!g[a[h]].state.failed||!c&&d)&&(this.is_loading(a[h])||this.load_node(a[h],f),e=!1);if(e){for(h=0,i=a.length;i>h;h++)g[a[h]]&&g[a[h]].state.loaded&&j.push(a[h]);b&&!b.done&&(b.call(this,j),b.done=!0)}},load_all:function(b,c){if(b||(b=a.jstree.root),b=this.get_node(b),!b)return!1;var d=[],e=this._model.data,f=e[b.id].children_d,g,h;for(b.state&&!b.state.loaded&&d.push(b.id),g=0,h=f.length;h>g;g++)e[f[g]]&&e[f[g]].state&&!e[f[g]].state.loaded&&d.push(f[g]);d.length?this._load_nodes(d,function(){this.load_all(b,c)}):(c&&c.call(this,b),this.trigger("load_all",{node:b}))},_load_node:function(b,c){var d=this.settings.core.data,e,f=function g(){return 3!==this.nodeType&&8!==this.nodeType};return d?a.vakata.is_function(d)?d.call(this,b,function(d){d===!1?c.call(this,!1):this["string"==typeof d?"_append_html_data":"_append_json_data"](b,"string"==typeof d?a(a.parseHTML(d)).filter(f):d,function(a){c.call(this,a)})}.bind(this)):"object"==typeof d?d.url?(d=a.extend(!0,{},d),a.vakata.is_function(d.url)&&(d.url=d.url.call(this,b)),a.vakata.is_function(d.data)&&(d.data=d.data.call(this,b)),a.ajax(d).done(function(d,e,g){var h=g.getResponseHeader("Content-Type");return h&&-1!==h.indexOf("json")||"object"==typeof d?this._append_json_data(b,d,function(a){c.call(this,a)}):h&&-1!==h.indexOf("html")||"string"==typeof d?this._append_html_data(b,a(a.parseHTML(d)).filter(f),function(a){c.call(this,a)}):(this._data.core.last_error={error:"ajax",plugin:"core",id:"core_04",reason:"Could not load node",data:JSON.stringify({id:b.id,xhr:g})},this.settings.core.error.call(this,this._data.core.last_error),c.call(this,!1))}.bind(this)).fail(function(a){this._data.core.last_error={error:"ajax",plugin:"core",id:"core_04",reason:"Could not load node",data:JSON.stringify({id:b.id,xhr:a})},c.call(this,!1),this.settings.core.error.call(this,this._data.core.last_error)}.bind(this))):(e=a.vakata.is_array(d)?a.extend(!0,[],d):a.isPlainObject(d)?a.extend(!0,{},d):d,b.id===a.jstree.root?this._append_json_data(b,e,function(a){c.call(this,a)}):(this._data.core.last_error={error:"nodata",plugin:"core",id:"core_05",reason:"Could not load node",data:JSON.stringify({id:b.id})},this.settings.core.error.call(this,this._data.core.last_error),c.call(this,!1))):"string"==typeof d?b.id===a.jstree.root?this._append_html_data(b,a(a.parseHTML(d)).filter(f),function(a){c.call(this,a)}):(this._data.core.last_error={error:"nodata",plugin:"core",id:"core_06",reason:"Could not load node",data:JSON.stringify({id:b.id})},this.settings.core.error.call(this,this._data.core.last_error),c.call(this,!1)):c.call(this,!1):b.id===a.jstree.root?this._append_html_data(b,this._data.core.original_container_html.clone(!0),function(a){c.call(this,a)}):c.call(this,!1)},_node_changed:function(b){b=this.get_node(b),b&&-1===a.inArray(b.id,this._model.changed)&&this._model.changed.push(b.id)},_append_html_data:function(b,c,d){b=this.get_node(b),b.children=[],b.children_d=[];var e=c.is("ul")?c.children():c,f=b.id,g=[],h=[],i=this._model.data,j=i[f],k=this._data.core.selected.length,l,m,n;for(e.each(function(b,c){l=this._parse_model_from_html(a(c),f,j.parents.concat()),l&&(g.push(l),h.push(l),i[l].children_d.length&&(h=h.concat(i[l].children_d)))}.bind(this)),j.children=g,j.children_d=h,m=0,n=j.parents.length;n>m;m++)i[j.parents[m]].children_d=i[j.parents[m]].children_d.concat(h);this.trigger("model",{nodes:h,parent:f}),f!==a.jstree.root?(this._node_changed(f),this.redraw()):(this.get_container_ul().children(".jstree-initial-node").remove(),this.redraw(!0)),this._data.core.selected.length!==k&&this.trigger("changed",{action:"model",selected:this._data.core.selected}),d.call(this,!0)},_append_json_data:function(b,c,d,e){if(null!==this.element){b=this.get_node(b),b.children=[],b.children_d=[],c.d&&(c=c.d,"string"==typeof c&&(c=JSON.parse(c))),a.vakata.is_array(c)||(c=[c]);var f=null,g={df:this._model.default_state,dat:c,par:b.id,m:this._model.data,t_id:this._id,t_cnt:this._cnt,sel:this._data.core.selected},h=this,i=function(a,b){a.data&&(a=a.data);var c=a.dat,d=a.par,e=[],f=[],g=[],i=a.df,j=a.t_id,k=a.t_cnt,l=a.m,m=l[d],n=a.sel,o,p,q,r,s=function(a,c,d){d=d?d.concat():[],c&&d.unshift(c);var e=a.id.toString(),f,h,j,k,m={id:e,text:a.text||"",icon:a.icon!==b?a.icon:!0,parent:c,parents:d,children:a.children||[],children_d:a.children_d||[],data:a.data,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1};for(f in i)i.hasOwnProperty(f)&&(m.state[f]=i[f]);if(a&&a.data&&a.data.jstree&&a.data.jstree.icon&&(m.icon=a.data.jstree.icon),(m.icon===b||null===m.icon||""===m.icon)&&(m.icon=!0),a&&a.data&&(m.data=a.data,a.data.jstree))for(f in a.data.jstree)a.data.jstree.hasOwnProperty(f)&&(m.state[f]=a.data.jstree[f]);if(a&&"object"==typeof a.state)for(f in a.state)a.state.hasOwnProperty(f)&&(m.state[f]=a.state[f]);if(a&&"object"==typeof a.li_attr)for(f in a.li_attr)a.li_attr.hasOwnProperty(f)&&(m.li_attr[f]=a.li_attr[f]);if(m.li_attr.id||(m.li_attr.id=e),a&&"object"==typeof a.a_attr)for(f in a.a_attr)a.a_attr.hasOwnProperty(f)&&(m.a_attr[f]=a.a_attr[f]);for(a&&a.children&&a.children===!0&&(m.state.loaded=!1,m.children=[],m.children_d=[]),l[m.id]=m,f=0,h=m.children.length;h>f;f++)j=s(l[m.children[f]],m.id,d),k=l[j],m.children_d.push(j),k.children_d.length&&(m.children_d=m.children_d.concat(k.children_d));return delete a.data,delete a.children,l[m.id].original=a,m.state.selected&&g.push(m.id),m.id},t=function(a,c,d){d=d?d.concat():[],c&&d.unshift(c);var e=!1,f,h,m,n,o;do e="j"+j+"_"+ ++k;while(l[e]);o={id:!1,text:"string"==typeof a?a:"",icon:"object"==typeof a&&a.icon!==b?a.icon:!0,parent:c,parents:d,children:[],children_d:[],data:null,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1};for(f in i)i.hasOwnProperty(f)&&(o.state[f]=i[f]);if(a&&a.id&&(o.id=a.id.toString()),a&&a.text&&(o.text=a.text),a&&a.data&&a.data.jstree&&a.data.jstree.icon&&(o.icon=a.data.jstree.icon),(o.icon===b||null===o.icon||""===o.icon)&&(o.icon=!0),a&&a.data&&(o.data=a.data,a.data.jstree))for(f in a.data.jstree)a.data.jstree.hasOwnProperty(f)&&(o.state[f]=a.data.jstree[f]);if(a&&"object"==typeof a.state)for(f in a.state)a.state.hasOwnProperty(f)&&(o.state[f]=a.state[f]);if(a&&"object"==typeof a.li_attr)for(f in a.li_attr)a.li_attr.hasOwnProperty(f)&&(o.li_attr[f]=a.li_attr[f]);if(o.li_attr.id&&!o.id&&(o.id=o.li_attr.id.toString()),o.id||(o.id=e),o.li_attr.id||(o.li_attr.id=o.id),a&&"object"==typeof a.a_attr)for(f in a.a_attr)a.a_attr.hasOwnProperty(f)&&(o.a_attr[f]=a.a_attr[f]);if(a&&a.children&&a.children.length){for(f=0,h=a.children.length;h>f;f++)m=t(a.children[f],o.id,d),n=l[m],o.children.push(m),n.children_d.length&&(o.children_d=o.children_d.concat(n.children_d));o.children_d=o.children_d.concat(o.children)}return a&&a.children&&a.children===!0&&(o.state.loaded=!1,o.children=[],o.children_d=[]),delete a.data,delete a.children,o.original=a,l[o.id]=o,o.state.selected&&g.push(o.id),o.id};if(c.length&&c[0].id!==b&&c[0].parent!==b){for(p=0,q=c.length;q>p;p++)c[p].children||(c[p].children=[]),c[p].state||(c[p].state={}),l[c[p].id.toString()]=c[p];for(p=0,q=c.length;q>p;p++)l[c[p].parent.toString()]?(l[c[p].parent.toString()].children.push(c[p].id.toString()),m.children_d.push(c[p].id.toString())):"undefined"!=typeof h&&(h._data.core.last_error={error:"parse",plugin:"core",id:"core_07",reason:"Node with invalid parent",data:JSON.stringify({id:c[p].id.toString(),parent:c[p].parent.toString()})},h.settings.core.error.call(h,h._data.core.last_error));for(p=0,q=m.children.length;q>p;p++)o=s(l[m.children[p]],d,m.parents.concat()),f.push(o),l[o].children_d.length&&(f=f.concat(l[o].children_d));for(p=0,q=m.parents.length;q>p;p++)l[m.parents[p]].children_d=l[m.parents[p]].children_d.concat(f);r={cnt:k,mod:l,sel:n,par:d,dpc:f,add:g}}else{for(p=0,q=c.length;q>p;p++)o=t(c[p],d,m.parents.concat()),o&&(e.push(o),f.push(o),l[o].children_d.length&&(f=f.concat(l[o].children_d)));for(m.children=e,m.children_d=f,p=0,q=m.parents.length;q>p;p++)l[m.parents[p]].children_d=l[m.parents[p]].children_d.concat(f);r={cnt:k,mod:l,sel:n,par:d,dpc:f,add:g}}return"undefined"!=typeof window&&"undefined"!=typeof window.document?r:void postMessage(r)},k=function(b,c){if(null!==this.element){this._cnt=b.cnt;var e,f=this._model.data;for(e in f)f.hasOwnProperty(e)&&f[e].state&&f[e].state.loading&&b.mod[e]&&(b.mod[e].state.loading=!0);if(this._model.data=b.mod,c){var g,i=b.add,k=b.sel,l=this._data.core.selected.slice();if(f=this._model.data,k.length!==l.length||a.vakata.array_unique(k.concat(l)).length!==k.length){for(e=0,g=k.length;g>e;e++)-1===a.inArray(k[e],i)&&-1===a.inArray(k[e],l)&&(f[k[e]].state.selected=!1);for(e=0,g=l.length;g>e;e++)-1===a.inArray(l[e],k)&&(f[l[e]].state.selected=!0)}}b.add.length&&(this._data.core.selected=this._data.core.selected.concat(b.add)),this.trigger("model",{nodes:b.dpc,parent:b.par}),b.par!==a.jstree.root?(this._node_changed(b.par),this.redraw()):this.redraw(!0),b.add.length&&this.trigger("changed",{action:"model",selected:this._data.core.selected}),!c&&j?j(function(){d.call(h,!0)}):d.call(h,!0)}};if(this.settings.core.worker&&window.Blob&&window.URL&&window.Worker)try{null===this._wrk&&(this._wrk=window.URL.createObjectURL(new window.Blob(["self.onmessage = "+i.toString()],{type:"text/javascript"}))),!this._data.core.working||e?(this._data.core.working=!0,f=new window.Worker(this._wrk),f.onmessage=function(a){k.call(this,a.data,!0);try{f.terminate(),f=null}catch(b){}this._data.core.worker_queue.length?this._append_json_data.apply(this,this._data.core.worker_queue.shift()):this._data.core.working=!1}.bind(this),g.par?f.postMessage(g):this._data.core.worker_queue.length?this._append_json_data.apply(this,this._data.core.worker_queue.shift()):this._data.core.working=!1):this._data.core.worker_queue.push([b,c,d,!0])}catch(l){k.call(this,i(g),!1),this._data.core.worker_queue.length?this._append_json_data.apply(this,this._data.core.worker_queue.shift()):this._data.core.working=!1}else k.call(this,i(g),!1)}},_parse_model_from_html:function(c,d,e){e=e?[].concat(e):[],d&&e.unshift(d);var f,g,h=this._model.data,i={id:!1,text:!1,icon:!0,parent:d,parents:e,children:[],children_d:[],data:null,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1},j,k,l;for(j in this._model.default_state)this._model.default_state.hasOwnProperty(j)&&(i.state[j]=this._model.default_state[j]);if(k=a.vakata.attributes(c,!0),a.each(k,function(b,c){return c=a.vakata.trim(c),c.length?(i.li_attr[b]=c,void("id"===b&&(i.id=c.toString()))):!0}),k=c.children("a").first(),k.length&&(k=a.vakata.attributes(k,!0),a.each(k,function(b,c){c=a.vakata.trim(c),c.length&&(i.a_attr[b]=c)})),k=c.children("a").first().length?c.children("a").first().clone():c.clone(),k.children("ins, i, ul").remove(),k=k.html(),k=a("<div></div>").html(k),i.text=this.settings.core.force_text?k.text():k.html(),k=c.data(),i.data=k?a.extend(!0,{},k):null,i.state.opened=c.hasClass("jstree-open"),i.state.selected=c.children("a").hasClass("jstree-clicked"),i.state.disabled=c.children("a").hasClass("jstree-disabled"),i.data&&i.data.jstree)for(j in i.data.jstree)i.data.jstree.hasOwnProperty(j)&&(i.state[j]=i.data.jstree[j]);k=c.children("a").children(".jstree-themeicon"),k.length&&(i.icon=k.hasClass("jstree-themeicon-hidden")?!1:k.attr("rel")),i.state.icon!==b&&(i.icon=i.state.icon),(i.icon===b||null===i.icon||""===i.icon)&&(i.icon=!0),k=c.children("ul").children("li");do l="j"+this._id+"_"+ ++this._cnt;while(h[l]);return i.id=i.li_attr.id?i.li_attr.id.toString():l,k.length?(k.each(function(b,c){f=this._parse_model_from_html(a(c),i.id,e),g=this._model.data[f],i.children.push(f),g.children_d.length&&(i.children_d=i.children_d.concat(g.children_d))}.bind(this)),i.children_d=i.children_d.concat(i.children)):c.hasClass("jstree-closed")&&(i.state.loaded=!1),i.li_attr["class"]&&(i.li_attr["class"]=i.li_attr["class"].replace("jstree-closed","").replace("jstree-open","")),i.a_attr["class"]&&(i.a_attr["class"]=i.a_attr["class"].replace("jstree-clicked","").replace("jstree-disabled","")),h[i.id]=i,i.state.selected&&this._data.core.selected.push(i.id),i.id},_parse_model_from_flat_json:function(a,c,d){d=d?d.concat():[],c&&d.unshift(c);var e=a.id.toString(),f=this._model.data,g=this._model.default_state,h,i,j,k,l={id:e,text:a.text||"",icon:a.icon!==b?a.icon:!0,parent:c,parents:d,children:a.children||[],children_d:a.children_d||[],data:a.data,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1};for(h in g)g.hasOwnProperty(h)&&(l.state[h]=g[h]);if(a&&a.data&&a.data.jstree&&a.data.jstree.icon&&(l.icon=a.data.jstree.icon),(l.icon===b||null===l.icon||""===l.icon)&&(l.icon=!0),a&&a.data&&(l.data=a.data,a.data.jstree))for(h in a.data.jstree)a.data.jstree.hasOwnProperty(h)&&(l.state[h]=a.data.jstree[h]);if(a&&"object"==typeof a.state)for(h in a.state)a.state.hasOwnProperty(h)&&(l.state[h]=a.state[h]);if(a&&"object"==typeof a.li_attr)for(h in a.li_attr)a.li_attr.hasOwnProperty(h)&&(l.li_attr[h]=a.li_attr[h]);if(l.li_attr.id||(l.li_attr.id=e),a&&"object"==typeof a.a_attr)for(h in a.a_attr)a.a_attr.hasOwnProperty(h)&&(l.a_attr[h]=a.a_attr[h]);for(a&&a.children&&a.children===!0&&(l.state.loaded=!1,l.children=[],l.children_d=[]),f[l.id]=l,h=0,i=l.children.length;i>h;h++)j=this._parse_model_from_flat_json(f[l.children[h]],l.id,d),k=f[j],l.children_d.push(j),k.children_d.length&&(l.children_d=l.children_d.concat(k.children_d));return delete a.data,delete a.children,f[l.id].original=a,l.state.selected&&this._data.core.selected.push(l.id),l.id},_parse_model_from_json:function(a,c,d){d=d?d.concat():[],c&&d.unshift(c);var e=!1,f,g,h,i,j=this._model.data,k=this._model.default_state,l;do e="j"+this._id+"_"+ ++this._cnt;while(j[e]);l={id:!1,text:"string"==typeof a?a:"",icon:"object"==typeof a&&a.icon!==b?a.icon:!0,parent:c,parents:d,children:[],children_d:[],data:null,state:{},li_attr:{id:!1},a_attr:{href:"#"},original:!1};for(f in k)k.hasOwnProperty(f)&&(l.state[f]=k[f]);if(a&&a.id&&(l.id=a.id.toString()),a&&a.text&&(l.text=a.text),a&&a.data&&a.data.jstree&&a.data.jstree.icon&&(l.icon=a.data.jstree.icon),(l.icon===b||null===l.icon||""===l.icon)&&(l.icon=!0),
3
a&&a.data&&(l.data=a.data,a.data.jstree))for(f in a.data.jstree)a.data.jstree.hasOwnProperty(f)&&(l.state[f]=a.data.jstree[f]);if(a&&"object"==typeof a.state)for(f in a.state)a.state.hasOwnProperty(f)&&(l.state[f]=a.state[f]);if(a&&"object"==typeof a.li_attr)for(f in a.li_attr)a.li_attr.hasOwnProperty(f)&&(l.li_attr[f]=a.li_attr[f]);if(l.li_attr.id&&!l.id&&(l.id=l.li_attr.id.toString()),l.id||(l.id=e),l.li_attr.id||(l.li_attr.id=l.id),a&&"object"==typeof a.a_attr)for(f in a.a_attr)a.a_attr.hasOwnProperty(f)&&(l.a_attr[f]=a.a_attr[f]);if(a&&a.children&&a.children.length){for(f=0,g=a.children.length;g>f;f++)h=this._parse_model_from_json(a.children[f],l.id,d),i=j[h],l.children.push(h),i.children_d.length&&(l.children_d=l.children_d.concat(i.children_d));l.children_d=l.children.concat(l.children_d)}return a&&a.children&&a.children===!0&&(l.state.loaded=!1,l.children=[],l.children_d=[]),delete a.data,delete a.children,l.original=a,j[l.id]=l,l.state.selected&&this._data.core.selected.push(l.id),l.id},_redraw:function(){var b=this._model.force_full_redraw?this._model.data[a.jstree.root].children.concat([]):this._model.changed.concat([]),c=i.createElement("UL"),d,e,f,g=this._data.core.focused;for(e=0,f=b.length;f>e;e++)d=this.redraw_node(b[e],!0,this._model.force_full_redraw),d&&this._model.force_full_redraw&&c.appendChild(d);this._model.force_full_redraw&&(c.className=this.get_container_ul()[0].className,c.setAttribute("role","group"),this.element.empty().append(c)),null!==g&&this.settings.core.restore_focus&&(d=this.get_node(g,!0),d&&d.length&&d.children(".jstree-anchor")[0]!==i.activeElement?d.children(".jstree-anchor").trigger("focus"):this._data.core.focused=null),this._model.force_full_redraw=!1,this._model.changed=[],this.trigger("redraw",{nodes:b})},redraw:function(a){a&&(this._model.force_full_redraw=!0),this._redraw()},draw_children:function(b){var c=this.get_node(b),d=!1,e=!1,f=!1,g=i;if(!c)return!1;if(c.id===a.jstree.root)return this.redraw(!0);if(b=this.get_node(b,!0),!b||!b.length)return!1;if(b.children(".jstree-children").remove(),b=b[0],c.children.length&&c.state.loaded){for(f=g.createElement("UL"),f.setAttribute("role","group"),f.className="jstree-children",d=0,e=c.children.length;e>d;d++)f.appendChild(this.redraw_node(c.children[d],!0,!0));b.appendChild(f)}},redraw_node:function(b,c,d,e){var f=this.get_node(b),g=!1,h=!1,j=!1,k=!1,l=!1,m=!1,n="",o=i,p=this._model.data,q=!1,r=!1,s=null,t=0,u=0,v=!1,w=!1;if(!f)return!1;if(f.id===a.jstree.root)return this.redraw(!0);if(c=c||0===f.children.length,b=i.querySelector?this.element[0].querySelector("#"+(-1!=="0123456789".indexOf(f.id[0])?"\\3"+f.id[0]+" "+f.id.substr(1).replace(a.jstree.idregex,"\\$&"):f.id.replace(a.jstree.idregex,"\\$&"))):i.getElementById(f.id))b=a(b),d||(g=b.parent().parent()[0],g===this.element[0]&&(g=null),h=b.index()),c||!f.children.length||b.children(".jstree-children").length||(c=!0),c||(j=b.children(".jstree-children")[0]),q=b.children(".jstree-anchor")[0]===i.activeElement,b.remove();else if(c=!0,!d){if(g=f.parent!==a.jstree.root?a("#"+f.parent.replace(a.jstree.idregex,"\\$&"),this.element)[0]:null,!(null===g||g&&p[f.parent].state.opened))return!1;h=a.inArray(f.id,null===g?p[a.jstree.root].children:p[f.parent].children)}b=this._data.core.node.cloneNode(!0),n="jstree-node ";for(k in f.li_attr)if(f.li_attr.hasOwnProperty(k)){if("id"===k)continue;"class"!==k?b.setAttribute(k,f.li_attr[k]):n+=f.li_attr[k]}for(f.a_attr.id||(f.a_attr.id=f.id+"_anchor"),b.childNodes[1].setAttribute("aria-selected",!!f.state.selected),b.childNodes[1].setAttribute("aria-level",f.parents.length),this.settings.core.compute_elements_positions&&(b.childNodes[1].setAttribute("aria-setsize",p[f.parent].children.length),b.childNodes[1].setAttribute("aria-posinset",p[f.parent].children.indexOf(f.id)+1)),f.state.disabled&&b.childNodes[1].setAttribute("aria-disabled",!0),k=0,l=f.children.length;l>k;k++)if(!p[f.children[k]].state.hidden){v=!0;break}if(null!==f.parent&&p[f.parent]&&!f.state.hidden&&(k=a.inArray(f.id,p[f.parent].children),w=f.id,-1!==k))for(k++,l=p[f.parent].children.length;l>k;k++)if(p[p[f.parent].children[k]].state.hidden||(w=p[f.parent].children[k]),w!==f.id)break;f.state.hidden&&(n+=" jstree-hidden"),f.state.loading&&(n+=" jstree-loading"),f.state.loaded&&!v?n+=" jstree-leaf":(n+=f.state.opened&&f.state.loaded?" jstree-open":" jstree-closed",b.childNodes[1].setAttribute("aria-expanded",f.state.opened&&f.state.loaded)),w===f.id&&(n+=" jstree-last"),b.id=f.id,b.className=n,n=(f.state.selected?" jstree-clicked":"")+(f.state.disabled?" jstree-disabled":"");for(l in f.a_attr)if(f.a_attr.hasOwnProperty(l)){if("href"===l&&"#"===f.a_attr[l])continue;"class"!==l?b.childNodes[1].setAttribute(l,f.a_attr[l]):n+=" "+f.a_attr[l]}if(n.length&&(b.childNodes[1].className="jstree-anchor "+n),(f.icon&&f.icon!==!0||f.icon===!1)&&(f.icon===!1?b.childNodes[1].childNodes[0].className+=" jstree-themeicon-hidden":-1===f.icon.indexOf("/")&&-1===f.icon.indexOf(".")?b.childNodes[1].childNodes[0].className+=" "+f.icon+" jstree-themeicon-custom":(b.childNodes[1].childNodes[0].style.backgroundImage='url("'+f.icon+'")',b.childNodes[1].childNodes[0].style.backgroundPosition="center center",b.childNodes[1].childNodes[0].style.backgroundSize="auto",b.childNodes[1].childNodes[0].className+=" jstree-themeicon-custom")),this.settings.core.force_text?b.childNodes[1].appendChild(o.createTextNode(f.text)):b.childNodes[1].innerHTML+=f.text,c&&f.children.length&&(f.state.opened||e)&&f.state.loaded){for(m=o.createElement("UL"),m.setAttribute("role","group"),m.className="jstree-children",k=0,l=f.children.length;l>k;k++)m.appendChild(this.redraw_node(f.children[k],c,!0));b.appendChild(m)}if(j&&b.appendChild(j),!d){for(g||(g=this.element[0]),k=0,l=g.childNodes.length;l>k;k++)if(g.childNodes[k]&&g.childNodes[k].className&&-1!==g.childNodes[k].className.indexOf("jstree-children")){s=g.childNodes[k];break}s||(s=o.createElement("UL"),s.setAttribute("role","group"),s.className="jstree-children",g.appendChild(s)),g=s,h<g.childNodes.length?g.insertBefore(b,g.childNodes[h]):g.appendChild(b),q&&(t=this.element[0].scrollTop,u=this.element[0].scrollLeft,b.childNodes[1].focus(),this.element[0].scrollTop=t,this.element[0].scrollLeft=u)}return f.state.opened&&!f.state.loaded&&(f.state.opened=!1,setTimeout(function(){this.open_node(f.id,!1,0)}.bind(this),0)),b},open_node:function(c,d,e){var f,g,h,i;if(a.vakata.is_array(c)){for(c=c.slice(),f=0,g=c.length;g>f;f++)this.open_node(c[f],d,e);return!0}return c=this.get_node(c),c&&c.id!==a.jstree.root?(e=e===b?this.settings.core.animation:e,this.is_closed(c)?this.is_loaded(c)?(h=this.get_node(c,!0),i=this,h.length&&(e&&h.children(".jstree-children").length&&h.children(".jstree-children").stop(!0,!0),c.children.length&&!this._firstChild(h.children(".jstree-children")[0])&&this.draw_children(c),e?(this.trigger("before_open",{node:c}),h.children(".jstree-children").css("display","none").end().removeClass("jstree-closed").addClass("jstree-open").children(".jstree-anchor").attr("aria-expanded",!0).end().children(".jstree-children").stop(!0,!0).slideDown(e,function(){this.style.display="",i.element&&i.trigger("after_open",{node:c})})):(this.trigger("before_open",{node:c}),h[0].className=h[0].className.replace("jstree-closed","jstree-open"),h[0].childNodes[1].setAttribute("aria-expanded",!0))),c.state.opened=!0,d&&d.call(this,c,!0),h.length||this.trigger("before_open",{node:c}),this.trigger("open_node",{node:c}),e&&h.length||this.trigger("after_open",{node:c}),!0):this.is_loading(c)?setTimeout(function(){this.open_node(c,d,e)}.bind(this),500):void this.load_node(c,function(a,b){return b?this.open_node(a,d,e):d?d.call(this,a,!1):!1}):(d&&d.call(this,c,!1),!1)):!1},_open_to:function(b){if(b=this.get_node(b),!b||b.id===a.jstree.root)return!1;var c,d,e=b.parents;for(c=0,d=e.length;d>c;c+=1)c!==a.jstree.root&&this.open_node(e[c],!1,0);return a("#"+b.id.replace(a.jstree.idregex,"\\$&"),this.element)},close_node:function(c,d){var e,f,g,h;if(a.vakata.is_array(c)){for(c=c.slice(),e=0,f=c.length;f>e;e++)this.close_node(c[e],d);return!0}return c=this.get_node(c),c&&c.id!==a.jstree.root?this.is_closed(c)?!1:(d=d===b?this.settings.core.animation:d,g=this,h=this.get_node(c,!0),c.state.opened=!1,this.trigger("close_node",{node:c}),void(h.length?d?h.children(".jstree-children").attr("style","display:block !important").end().removeClass("jstree-open").addClass("jstree-closed").children(".jstree-anchor").attr("aria-expanded",!1).end().children(".jstree-children").stop(!0,!0).slideUp(d,function(){this.style.display="",h.children(".jstree-children").remove(),g.element&&g.trigger("after_close",{node:c})}):(h[0].className=h[0].className.replace("jstree-open","jstree-closed"),h.children(".jstree-anchor").attr("aria-expanded",!1),h.children(".jstree-children").remove(),this.trigger("after_close",{node:c})):this.trigger("after_close",{node:c}))):!1},toggle_node:function(b){var c,d;if(a.vakata.is_array(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.toggle_node(b[c]);return!0}return this.is_closed(b)?this.open_node(b):this.is_open(b)?this.close_node(b):void 0},open_all:function(b,c,d){if(b||(b=a.jstree.root),b=this.get_node(b),!b)return!1;var e=b.id===a.jstree.root?this.get_container_ul():this.get_node(b,!0),f,g,h;if(!e.length){for(f=0,g=b.children_d.length;g>f;f++)this.is_closed(this._model.data[b.children_d[f]])&&(this._model.data[b.children_d[f]].state.opened=!0);return this.trigger("open_all",{node:b})}d=d||e,h=this,e=this.is_closed(b)?e.find(".jstree-closed").addBack():e.find(".jstree-closed"),e.each(function(){h.open_node(this,function(a,b){b&&this.is_parent(a)&&this.open_all(a,c,d)},c||0)}),0===d.find(".jstree-closed").length&&this.trigger("open_all",{node:this.get_node(d)})},close_all:function(b,c){if(b||(b=a.jstree.root),b=this.get_node(b),!b)return!1;var d=b.id===a.jstree.root?this.get_container_ul():this.get_node(b,!0),e=this,f,g;for(d.length&&(d=this.is_open(b)?d.find(".jstree-open").addBack():d.find(".jstree-open"),a(d.get().reverse()).each(function(){e.close_node(this,c||0)})),f=0,g=b.children_d.length;g>f;f++)this._model.data[b.children_d[f]].state.opened=!1;this.trigger("close_all",{node:b})},is_disabled:function(a){return a=this.get_node(a),a&&a.state&&a.state.disabled},enable_node:function(b){var c,d;if(a.vakata.is_array(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.enable_node(b[c]);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(b.state.disabled=!1,this.get_node(b,!0).children(".jstree-anchor").removeClass("jstree-disabled").attr("aria-disabled",!1),void this.trigger("enable_node",{node:b})):!1},disable_node:function(b){var c,d;if(a.vakata.is_array(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.disable_node(b[c]);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(b.state.disabled=!0,this.get_node(b,!0).children(".jstree-anchor").addClass("jstree-disabled").attr("aria-disabled",!0),void this.trigger("disable_node",{node:b})):!1},is_hidden:function(a){return a=this.get_node(a),a.state.hidden===!0},hide_node:function(b,c){var d,e;if(a.vakata.is_array(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.hide_node(b[d],!0);return c||this.redraw(),!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?void(b.state.hidden||(b.state.hidden=!0,this._node_changed(b.parent),c||this.redraw(),this.trigger("hide_node",{node:b}))):!1},show_node:function(b,c){var d,e;if(a.vakata.is_array(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.show_node(b[d],!0);return c||this.redraw(),!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?void(b.state.hidden&&(b.state.hidden=!1,this._node_changed(b.parent),c||this.redraw(),this.trigger("show_node",{node:b}))):!1},hide_all:function(b){var c,d=this._model.data,e=[];for(c in d)d.hasOwnProperty(c)&&c!==a.jstree.root&&!d[c].state.hidden&&(d[c].state.hidden=!0,e.push(c));return this._model.force_full_redraw=!0,b||this.redraw(),this.trigger("hide_all",{nodes:e}),e},show_all:function(b){var c,d=this._model.data,e=[];for(c in d)d.hasOwnProperty(c)&&c!==a.jstree.root&&d[c].state.hidden&&(d[c].state.hidden=!1,e.push(c));return this._model.force_full_redraw=!0,b||this.redraw(),this.trigger("show_all",{nodes:e}),e},activate_node:function(a,c){if(this.is_disabled(a))return!1;if(c&&"object"==typeof c||(c={}),this._data.core.last_clicked=this._data.core.last_clicked&&this._data.core.last_clicked.id!==b?this.get_node(this._data.core.last_clicked.id):null,this._data.core.last_clicked&&!this._data.core.last_clicked.state.selected&&(this._data.core.last_clicked=null),!this._data.core.last_clicked&&this._data.core.selected.length&&(this._data.core.last_clicked=this.get_node(this._data.core.selected[this._data.core.selected.length-1])),this.settings.core.multiple&&(c.metaKey||c.ctrlKey||c.shiftKey)&&(!c.shiftKey||this._data.core.last_clicked&&this.get_parent(a)&&this.get_parent(a)===this._data.core.last_clicked.parent))if(c.shiftKey){var d=this.get_node(a).id,e=this._data.core.last_clicked.id,f=this.get_node(this._data.core.last_clicked.parent).children,g=!1,h,i;for(h=0,i=f.length;i>h;h+=1)f[h]===d&&(g=!g),f[h]===e&&(g=!g),this.is_disabled(f[h])||!g&&f[h]!==d&&f[h]!==e?this.deselect_node(f[h],!0,c):this.is_hidden(f[h])||this.select_node(f[h],!0,!1,c);this.trigger("changed",{action:"select_node",node:this.get_node(a),selected:this._data.core.selected,event:c})}else this.is_selected(a)?this.deselect_node(a,!1,c):this.select_node(a,!1,!1,c);else!this.settings.core.multiple&&(c.metaKey||c.ctrlKey||c.shiftKey)&&this.is_selected(a)?this.deselect_node(a,!1,c):(this.deselect_all(!0),this.select_node(a,!1,!1,c),this._data.core.last_clicked=this.get_node(a));this.trigger("activate_node",{node:this.get_node(a),event:c})},hover_node:function(a){if(a=this.get_node(a,!0),!a||!a.length||a.children(".jstree-hovered").length)return!1;var b=this.element.find(".jstree-hovered"),c=this.element;b&&b.length&&this.dehover_node(b),a.children(".jstree-anchor").addClass("jstree-hovered"),this.trigger("hover_node",{node:this.get_node(a)}),setTimeout(function(){c.attr("aria-activedescendant",a[0].id)},0)},dehover_node:function(a){return a=this.get_node(a,!0),a&&a.length&&a.children(".jstree-hovered").length?(a.children(".jstree-anchor").removeClass("jstree-hovered"),void this.trigger("dehover_node",{node:this.get_node(a)})):!1},select_node:function(b,c,d,e){var f,g,h,i;if(a.vakata.is_array(b)){for(b=b.slice(),g=0,h=b.length;h>g;g++)this.select_node(b[g],c,d,e);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(f=this.get_node(b,!0),void(b.state.selected||(b.state.selected=!0,this._data.core.selected.push(b.id),d||(f=this._open_to(b)),f&&f.length&&f.children(".jstree-anchor").addClass("jstree-clicked").attr("aria-selected",!0),this.trigger("select_node",{node:b,selected:this._data.core.selected,event:e}),c||this.trigger("changed",{action:"select_node",node:b,selected:this._data.core.selected,event:e})))):!1},deselect_node:function(b,c,d){var e,f,g;if(a.vakata.is_array(b)){for(b=b.slice(),e=0,f=b.length;f>e;e++)this.deselect_node(b[e],c,d);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(g=this.get_node(b,!0),void(b.state.selected&&(b.state.selected=!1,this._data.core.selected=a.vakata.array_remove_item(this._data.core.selected,b.id),g.length&&g.children(".jstree-anchor").removeClass("jstree-clicked").attr("aria-selected",!1),this.trigger("deselect_node",{node:b,selected:this._data.core.selected,event:d}),c||this.trigger("changed",{action:"deselect_node",node:b,selected:this._data.core.selected,event:d})))):!1},select_all:function(b){var c=this._data.core.selected.concat([]),d,e;for(this._data.core.selected=this._model.data[a.jstree.root].children_d.concat(),d=0,e=this._data.core.selected.length;e>d;d++)this._model.data[this._data.core.selected[d]]&&(this._model.data[this._data.core.selected[d]].state.selected=!0);this.redraw(!0),this.trigger("select_all",{selected:this._data.core.selected}),b||this.trigger("changed",{action:"select_all",selected:this._data.core.selected,old_selection:c})},deselect_all:function(a){var b=this._data.core.selected.concat([]),c,d;for(c=0,d=this._data.core.selected.length;d>c;c++)this._model.data[this._data.core.selected[c]]&&(this._model.data[this._data.core.selected[c]].state.selected=!1);this._data.core.selected=[],this.element.find(".jstree-clicked").removeClass("jstree-clicked").attr("aria-selected",!1),this.trigger("deselect_all",{selected:this._data.core.selected,node:b}),a||this.trigger("changed",{action:"deselect_all",selected:this._data.core.selected,old_selection:b})},is_selected:function(b){return b=this.get_node(b),b&&b.id!==a.jstree.root?b.state.selected:!1},get_selected:function(b){return b?a.map(this._data.core.selected,function(a){return this.get_node(a)}.bind(this)):this._data.core.selected.slice()},get_top_selected:function(b){var c=this.get_selected(!0),d={},e,f,g,h;for(e=0,f=c.length;f>e;e++)d[c[e].id]=c[e];for(e=0,f=c.length;f>e;e++)for(g=0,h=c[e].children_d.length;h>g;g++)d[c[e].children_d[g]]&&delete d[c[e].children_d[g]];c=[];for(e in d)d.hasOwnProperty(e)&&c.push(e);return b?a.map(c,function(a){return this.get_node(a)}.bind(this)):c},get_bottom_selected:function(b){var c=this.get_selected(!0),d=[],e,f;for(e=0,f=c.length;f>e;e++)c[e].children.length||d.push(c[e].id);return b?a.map(d,function(a){return this.get_node(a)}.bind(this)):d},get_state:function(){var b={core:{open:[],loaded:[],scroll:{left:this.element.scrollLeft(),top:this.element.scrollTop()},selected:[]}},c;for(c in this._model.data)this._model.data.hasOwnProperty(c)&&c!==a.jstree.root&&(this._model.data[c].state.loaded&&this.settings.core.loaded_state&&b.core.loaded.push(c),this._model.data[c].state.opened&&b.core.open.push(c),this._model.data[c].state.selected&&b.core.selected.push(c));return b},set_state:function(c,d){if(c){if(c.core&&c.core.selected&&c.core.initial_selection===b&&(c.core.initial_selection=this._data.core.selected.concat([]).sort().join(",")),c.core){var e,f,g,h,i;if(c.core.loaded)return this.settings.core.loaded_state&&a.vakata.is_array(c.core.loaded)&&c.core.loaded.length?this._load_nodes(c.core.loaded,function(a){delete c.core.loaded,this.set_state(c,d)}):(delete c.core.loaded,this.set_state(c,d)),!1;if(c.core.open)return a.vakata.is_array(c.core.open)&&c.core.open.length?this._load_nodes(c.core.open,function(a){this.open_node(a,!1,0),delete c.core.open,this.set_state(c,d)}):(delete c.core.open,this.set_state(c,d)),!1;if(c.core.scroll)return c.core.scroll&&c.core.scroll.left!==b&&this.element.scrollLeft(c.core.scroll.left),c.core.scroll&&c.core.scroll.top!==b&&this.element.scrollTop(c.core.scroll.top),delete c.core.scroll,this.set_state(c,d),!1;if(c.core.selected)return h=this,(c.core.initial_selection===b||c.core.initial_selection===this._data.core.selected.concat([]).sort().join(","))&&(this.deselect_all(),a.each(c.core.selected,function(a,b){h.select_node(b,!1,!0)})),delete c.core.initial_selection,delete c.core.selected,this.set_state(c,d),!1;for(i in c)c.hasOwnProperty(i)&&"core"!==i&&-1===a.inArray(i,this.settings.plugins)&&delete c[i];if(a.isEmptyObject(c.core))return delete c.core,this.set_state(c,d),!1}return a.isEmptyObject(c)?(c=null,d&&d.call(this),this.trigger("set_state"),!1):!0}return!1},refresh:function(b,c){this._data.core.state=c===!0?{}:this.get_state(),c&&a.vakata.is_function(c)&&(this._data.core.state=c.call(this,this._data.core.state)),this._cnt=0,this._model.data={},this._model.data[a.jstree.root]={id:a.jstree.root,parent:null,parents:[],children:[],children_d:[],state:{loaded:!1}},this._data.core.selected=[],this._data.core.last_clicked=null,this._data.core.focused=null;var d=this.get_container_ul()[0].className;b||(this.element.html("<ul class='"+d+"' role='group'><li class='jstree-initial-node jstree-loading jstree-leaf jstree-last' role='none' id='j"+this._id+"_loading'><i class='jstree-icon jstree-ocl'></i><a class='jstree-anchor' role='treeitem' href='#'><i class='jstree-icon jstree-themeicon-hidden'></i>"+this.get_string("Loading ...")+"</a></li></ul>"),this.element.attr("aria-activedescendant","j"+this._id+"_loading")),this.load_node(a.jstree.root,function(b,c){c&&(this.get_container_ul()[0].className=d,this._firstChild(this.get_container_ul()[0])&&this.element.attr("aria-activedescendant",this._firstChild(this.get_container_ul()[0]).id),this.set_state(a.extend(!0,{},this._data.core.state),function(){this.trigger("refresh")})),this._data.core.state=null})},refresh_node:function(b){if(b=this.get_node(b),!b||b.id===a.jstree.root)return!1;var c=[],d=[],e=this._data.core.selected.concat([]);d.push(b.id),b.state.opened===!0&&c.push(b.id),this.get_node(b,!0).find(".jstree-open").each(function(){d.push(this.id),c.push(this.id)}),this._load_nodes(d,function(a){this.open_node(c,!1,0),this.select_node(e),this.trigger("refresh_node",{node:b,nodes:a})}.bind(this),!1,!0)},set_id:function(b,c){if(b=this.get_node(b),!b||b.id===a.jstree.root)return!1;var d,e,f=this._model.data,g=b.id;for(c=c.toString(),f[b.parent].children[a.inArray(b.id,f[b.parent].children)]=c,d=0,e=b.parents.length;e>d;d++)f[b.parents[d]].children_d[a.inArray(b.id,f[b.parents[d]].children_d)]=c;for(d=0,e=b.children.length;e>d;d++)f[b.children[d]].parent=c;for(d=0,e=b.children_d.length;e>d;d++)f[b.children_d[d]].parents[a.inArray(b.id,f[b.children_d[d]].parents)]=c;return d=a.inArray(b.id,this._data.core.selected),-1!==d&&(this._data.core.selected[d]=c),d=this.get_node(b.id,!0),d&&(d.attr("id",c),this.element.attr("aria-activedescendant")===b.id&&this.element.attr("aria-activedescendant",c)),delete f[b.id],b.id=c,b.li_attr.id=c,f[c]=b,this.trigger("set_id",{node:b,"new":b.id,old:g}),!0},get_text:function(b){return b=this.get_node(b),b&&b.id!==a.jstree.root?b.text:!1},set_text:function(b,c){var d,e;if(a.vakata.is_array(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.set_text(b[d],c);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(b.text=c,this.get_node(b,!0).length&&this.redraw_node(b.id),this.trigger("set_text",{obj:b,text:c}),!0):!1},get_json:function(b,c,d){if(b=this.get_node(b||a.jstree.root),!b)return!1;c&&c.flat&&!d&&(d=[]);var e={id:b.id,text:b.text,icon:this.get_icon(b),li_attr:a.extend(!0,{},b.li_attr),a_attr:a.extend(!0,{},b.a_attr),state:{},data:c&&c.no_data?!1:a.extend(!0,a.vakata.is_array(b.data)?[]:{},b.data)},f,g;if(c&&c.flat?e.parent=b.parent:e.children=[],c&&c.no_state)delete e.state;else for(f in b.state)b.state.hasOwnProperty(f)&&(e.state[f]=b.state[f]);if(c&&c.no_li_attr&&delete e.li_attr,c&&c.no_a_attr&&delete e.a_attr,c&&c.no_id&&(delete e.id,e.li_attr&&e.li_attr.id&&delete e.li_attr.id,e.a_attr&&e.a_attr.id&&delete e.a_attr.id),c&&c.flat&&b.id!==a.jstree.root&&d.push(e),!c||!c.no_children)for(f=0,g=b.children.length;g>f;f++)c&&c.flat?this.get_json(b.children[f],c,d):e.children.push(this.get_json(b.children[f],c));return c&&c.flat?d:b.id===a.jstree.root?e.children:e},create_node:function(c,d,e,f,g){if(null===c&&(c=a.jstree.root),c=this.get_node(c),!c)return!1;if(e=e===b?"last":e,!e.toString().match(/^(before|after)$/)&&!g&&!this.is_loaded(c))return this.load_node(c,function(){this.create_node(c,d,e,f,!0)});d||(d={text:this.get_string("New node")}),d="string"==typeof d?{text:d}:a.extend(!0,{},d),d.text===b&&(d.text=this.get_string("New node"));var h,i,j,k;switch(c.id===a.jstree.root&&("before"===e&&(e="first"),"after"===e&&(e="last")),e){case"before":h=this.get_node(c.parent),e=a.inArray(c.id,h.children),c=h;break;case"after":h=this.get_node(c.parent),e=a.inArray(c.id,h.children)+1,c=h;break;case"inside":case"first":e=0;break;case"last":e=c.children.length;break;default:e||(e=0)}if(e>c.children.length&&(e=c.children.length),d.id||(d.id=!0),!this.check("create_node",d,c,e))return this.settings.core.error.call(this,this._data.core.last_error),!1;if(d.id===!0&&delete d.id,d=this._parse_model_from_json(d,c.id,c.parents.concat()),!d)return!1;for(h=this.get_node(d),i=[],i.push(d),i=i.concat(h.children_d),this.trigger("model",{nodes:i,parent:c.id}),c.children_d=c.children_d.concat(i),j=0,k=c.parents.length;k>j;j++)this._model.data[c.parents[j]].children_d=this._model.data[c.parents[j]].children_d.concat(i);for(d=h,h=[],j=0,k=c.children.length;k>j;j++)h[j>=e?j+1:j]=c.children[j];return h[e]=d.id,c.children=h,this.redraw_node(c,!0),this.trigger("create_node",{node:this.get_node(d),parent:c.id,position:e}),f&&f.call(this,this.get_node(d)),d.id},rename_node:function(b,c){var d,e,f;if(a.vakata.is_array(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.rename_node(b[d],c);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(f=b.text,this.check("rename_node",b,this.get_parent(b),c)?(this.set_text(b,c),this.trigger("rename_node",{node:b,text:c,old:f}),!0):(this.settings.core.error.call(this,this._data.core.last_error),!1)):!1},delete_node:function(b){var c,d,e,f,g,h,i,j,k,l,m,n;if(a.vakata.is_array(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.delete_node(b[c]);return!0}if(b=this.get_node(b),!b||b.id===a.jstree.root)return!1;if(e=this.get_node(b.parent),f=a.inArray(b.id,e.children),l=!1,!this.check("delete_node",b,e,f))return this.settings.core.error.call(this,this._data.core.last_error),!1;for(-1!==f&&(e.children=a.vakata.array_remove(e.children,f)),g=b.children_d.concat([]),g.push(b.id),h=0,i=b.parents.length;i>h;h++)this._model.data[b.parents[h]].children_d=a.vakata.array_filter(this._model.data[b.parents[h]].children_d,function(b){return-1===a.inArray(b,g)});for(j=0,k=g.length;k>j;j++)if(this._model.data[g[j]].state.selected){l=!0;break}for(l&&(this._data.core.selected=a.vakata.array_filter(this._data.core.selected,function(b){return-1===a.inArray(b,g)})),this.trigger("delete_node",{node:b,parent:e.id}),l&&this.trigger("changed",{action:"delete_node",node:b,selected:this._data.core.selected,parent:e.id}),j=0,k=g.length;k>j;j++)delete this._model.data[g[j]];return-1!==a.inArray(this._data.core.focused,g)&&(this._data.core.focused=null,m=this.element[0].scrollTop,n=this.element[0].scrollLeft,e.id===a.jstree.root?this._model.data[a.jstree.root].children[0]&&this.get_node(this._model.data[a.jstree.root].children[0],!0).children(".jstree-anchor").triger("focus"):this.get_node(e,!0).children(".jstree-anchor").trigger("focus"),this.element[0].scrollTop=m,this.element[0].scrollLeft=n),this.redraw_node(e,!0),!0},check:function(b,c,d,e,f){c=c&&c.id?c:this.get_node(c),d=d&&d.id?d:this.get_node(d);var g=b.match(/^move_node|copy_node|create_node$/i)?d:c,h=this.settings.core.check_callback;if("move_node"===b||"copy_node"===b){if(!(f&&f.is_multi||"move_node"!==b||a.inArray(c.id,d.children)!==e))return this._data.core.last_error={error:"check",plugin:"core",id:"core_08",reason:"Moving node to its current position",data:JSON.stringify({chk:b,pos:e,obj:c&&c.id?c.id:!1,par:d&&d.id?d.id:!1})},!1;if(!(f&&f.is_multi||c.id!==d.id&&("move_node"!==b||a.inArray(c.id,d.children)!==e)&&-1===a.inArray(d.id,c.children_d)))return this._data.core.last_error={error:"check",plugin:"core",id:"core_01",reason:"Moving parent inside child",data:JSON.stringify({chk:b,pos:e,obj:c&&c.id?c.id:!1,par:d&&d.id?d.id:!1})},!1}return g&&g.data&&(g=g.data),g&&g.functions&&(g.functions[b]===!1||g.functions[b]===!0)?(g.functions[b]===!1&&(this._data.core.last_error={error:"check",plugin:"core",id:"core_02",reason:"Node data prevents function: "+b,data:JSON.stringify({chk:b,pos:e,obj:c&&c.id?c.id:!1,par:d&&d.id?d.id:!1})}),g.functions[b]):h===!1||a.vakata.is_function(h)&&h.call(this,b,c,d,e,f)===!1||h&&h[b]===!1?(this._data.core.last_error={error:"check",plugin:"core",id:"core_03",reason:"User config for core.check_callback prevents function: "+b,data:JSON.stringify({chk:b,pos:e,obj:c&&c.id?c.id:!1,par:d&&d.id?d.id:!1})},!1):!0},last_error:function(){return this._data.core.last_error},move_node:function(c,d,e,f,g,h,i){var j,k,l,m,n,o,p,q,r,s,t,u,v,w;if(d=this.get_node(d),e=e===b?0:e,!d)return!1;if(!e.toString().match(/^(before|after)$/)&&!g&&!this.is_loaded(d))return this.load_node(d,function(){this.move_node(c,d,e,f,!0,!1,i)});if(a.vakata.is_array(c)){if(1!==c.length){for(j=0,k=c.length;k>j;j++)(r=this.move_node(c[j],d,e,f,g,!1,i))&&(d=r,e="after");return this.redraw(),!0}c=c[0]}if(c=c&&c.id?c:this.get_node(c),!c||c.id===a.jstree.root)return!1;if(l=(c.parent||a.jstree.root).toString(),n=e.toString().match(/^(before|after)$/)&&d.id!==a.jstree.root?this.get_node(d.parent):d,o=i?i:this._model.data[c.id]?this:a.jstree.reference(c.id),p=!o||!o._id||this._id!==o._id,m=o&&o._id&&l&&o._model.data[l]&&o._model.data[l].children?a.inArray(c.id,o._model.data[l].children):-1,o&&o._id&&(c=o._model.data[c.id]),p)return(r=this.copy_node(c,d,e,f,g,!1,i))?(o&&o.delete_node(c),r):!1;switch(d.id===a.jstree.root&&("before"===e&&(e="first"),"after"===e&&(e="last")),e){case"before":e=a.inArray(d.id,n.children);break;case"after":e=a.inArray(d.id,n.children)+1;break;case"inside":case"first":e=0;break;case"last":e=n.children.length;break;default:e||(e=0)}if(e>n.children.length&&(e=n.children.length),!this.check("move_node",c,n,e,{core:!0,origin:i,is_multi:o&&o._id&&o._id!==this._id,is_foreign:!o||!o._id}))return this.settings.core.error.call(this,this._data.core.last_error),!1;if(c.parent===n.id){for(q=n.children.concat(),r=a.inArray(c.id,q),-1!==r&&(q=a.vakata.array_remove(q,r),e>r&&e--),r=[],s=0,t=q.length;t>s;s++)r[s>=e?s+1:s]=q[s];r[e]=c.id,n.children=r,this._node_changed(n.id),this.redraw(n.id===a.jstree.root)}else{for(r=c.children_d.concat(),r.push(c.id),s=0,t=c.parents.length;t>s;s++){for(q=[],w=o._model.data[c.parents[s]].children_d,u=0,v=w.length;v>u;u++)-1===a.inArray(w[u],r)&&q.push(w[u]);o._model.data[c.parents[s]].children_d=q}for(o._model.data[l].children=a.vakata.array_remove_item(o._model.data[l].children,c.id),s=0,t=n.parents.length;t>s;s++)this._model.data[n.parents[s]].children_d=this._model.data[n.parents[s]].children_d.concat(r);for(q=[],s=0,t=n.children.length;t>s;s++)q[s>=e?s+1:s]=n.children[s];for(q[e]=c.id,n.children=q,n.children_d.push(c.id),n.children_d=n.children_d.concat(c.children_d),c.parent=n.id,r=n.parents.concat(),r.unshift(n.id),w=c.parents.length,c.parents=r,r=r.concat(),s=0,t=c.children_d.length;t>s;s++)this._model.data[c.children_d[s]].parents=this._model.data[c.children_d[s]].parents.slice(0,-1*w),Array.prototype.push.apply(this._model.data[c.children_d[s]].parents,r);(l===a.jstree.root||n.id===a.jstree.root)&&(this._model.force_full_redraw=!0),this._model.force_full_redraw||(this._node_changed(l),this._node_changed(n.id)),h||this.redraw()}return f&&f.call(this,c,n,e),this.trigger("move_node",{node:c,parent:n.id,position:e,old_parent:l,old_position:m,is_multi:o&&o._id&&o._id!==this._id,is_foreign:!o||!o._id,old_instance:o,new_instance:this}),c.id},copy_node:function(c,d,e,f,g,h,i){var j,k,l,m,n,o,p,q,r,s,t;if(d=this.get_node(d),e=e===b?0:e,!d)return!1;if(!e.toString().match(/^(before|after)$/)&&!g&&!this.is_loaded(d))return this.load_node(d,function(){this.copy_node(c,d,e,f,!0,!1,i)});if(a.vakata.is_array(c)){if(1!==c.length){for(j=0,k=c.length;k>j;j++)(m=this.copy_node(c[j],d,e,f,g,!0,i))&&(d=m,e="after");return this.redraw(),!0}c=c[0]}if(c=c&&c.id?c:this.get_node(c),!c||c.id===a.jstree.root)return!1;switch(q=(c.parent||a.jstree.root).toString(),r=e.toString().match(/^(before|after)$/)&&d.id!==a.jstree.root?this.get_node(d.parent):d,s=i?i:this._model.data[c.id]?this:a.jstree.reference(c.id),t=!s||!s._id||this._id!==s._id,s&&s._id&&(c=s._model.data[c.id]),d.id===a.jstree.root&&("before"===e&&(e="first"),"after"===e&&(e="last")),e){case"before":e=a.inArray(d.id,r.children);break;case"after":e=a.inArray(d.id,r.children)+1;break;case"inside":case"first":e=0;break;case"last":e=r.children.length;break;default:e||(e=0)}if(e>r.children.length&&(e=r.children.length),!this.check("copy_node",c,r,e,{core:!0,origin:i,is_multi:s&&s._id&&s._id!==this._id,is_foreign:!s||!s._id}))return this.settings.core.error.call(this,this._data.core.last_error),!1;if(p=s?s.get_json(c,{no_id:!0,no_data:!0,no_state:!0}):c,!p)return!1;if(p.id===!0&&delete p.id,p=this._parse_model_from_json(p,r.id,r.parents.concat()),
4
!p)return!1;for(m=this.get_node(p),c&&c.state&&c.state.loaded===!1&&(m.state.loaded=!1),l=[],l.push(p),l=l.concat(m.children_d),this.trigger("model",{nodes:l,parent:r.id}),n=0,o=r.parents.length;o>n;n++)this._model.data[r.parents[n]].children_d=this._model.data[r.parents[n]].children_d.concat(l);for(l=[],n=0,o=r.children.length;o>n;n++)l[n>=e?n+1:n]=r.children[n];return l[e]=m.id,r.children=l,r.children_d.push(m.id),r.children_d=r.children_d.concat(m.children_d),r.id===a.jstree.root&&(this._model.force_full_redraw=!0),this._model.force_full_redraw||this._node_changed(r.id),h||this.redraw(r.id===a.jstree.root),f&&f.call(this,m,r,e),this.trigger("copy_node",{node:m,original:c,parent:r.id,position:e,old_parent:q,old_position:s&&s._id&&q&&s._model.data[q]&&s._model.data[q].children?a.inArray(c.id,s._model.data[q].children):-1,is_multi:s&&s._id&&s._id!==this._id,is_foreign:!s||!s._id,old_instance:s,new_instance:this}),m.id},cut:function(b){if(b||(b=this._data.core.selected.concat()),a.vakata.is_array(b)||(b=[b]),!b.length)return!1;var c=[],g,h,i;for(h=0,i=b.length;i>h;h++)g=this.get_node(b[h]),g&&g.id&&g.id!==a.jstree.root&&c.push(g);return c.length?(d=c,f=this,e="move_node",void this.trigger("cut",{node:b})):!1},copy:function(b){if(b||(b=this._data.core.selected.concat()),a.vakata.is_array(b)||(b=[b]),!b.length)return!1;var c=[],g,h,i;for(h=0,i=b.length;i>h;h++)g=this.get_node(b[h]),g&&g.id&&g.id!==a.jstree.root&&c.push(g);return c.length?(d=c,f=this,e="copy_node",void this.trigger("copy",{node:b})):!1},get_buffer:function(){return{mode:e,node:d,inst:f}},can_paste:function(){return e!==!1&&d!==!1},paste:function(a,b){return a=this.get_node(a),a&&e&&e.match(/^(copy_node|move_node)$/)&&d?(this[e](d,a,b,!1,!1,!1,f)&&this.trigger("paste",{parent:a.id,node:d,mode:e}),d=!1,e=!1,void(f=!1)):!1},clear_buffer:function(){d=!1,e=!1,f=!1,this.trigger("clear_buffer")},edit:function(b,c,d){var e,f,g,h,j,k,l,m,n,o=!1;return(b=this.get_node(b))?this.check("edit",b,this.get_parent(b))?(n=b,c="string"==typeof c?c:b.text,this.set_text(b,""),b=this._open_to(b),n.text=c,e=this._data.core.rtl,f=this.element.width(),this._data.core.focused=n.id,g=b.children(".jstree-anchor").trigger("focus"),h=a("<span></span>"),j=c,k=a("<div></div>",{css:{position:"absolute",top:"-200px",left:e?"0px":"-1000px",visibility:"hidden"}}).appendTo(i.body),l=a("<input />",{value:j,"class":"jstree-rename-input",css:{padding:"0",border:"1px solid silver","box-sizing":"border-box",display:"inline-block",height:this._data.core.li_height+"px",lineHeight:this._data.core.li_height+"px",width:"150px"},blur:function(c){c.stopImmediatePropagation(),c.preventDefault();var e=h.children(".jstree-rename-input"),f=e.val(),i=this.settings.core.force_text,m;""===f&&(f=j),k.remove(),h.replaceWith(g),h.remove(),j=i?j:a("<div></div>").append(a.parseHTML(j)).html(),b=this.get_node(b),this.set_text(b,j),m=!!this.rename_node(b,i?a("<div></div>").text(f).text():a("<div></div>").append(a.parseHTML(f)).html()),m||this.set_text(b,j),this._data.core.focused=n.id,setTimeout(function(){var a=this.get_node(n.id,!0);a.length&&(this._data.core.focused=n.id,a.children(".jstree-anchor").trigger("focus"))}.bind(this),0),d&&d.call(this,n,m,o,f),l=null}.bind(this),keydown:function(a){var b=a.which;27===b&&(o=!0,this.value=j),(27===b||13===b||37===b||38===b||39===b||40===b||32===b)&&a.stopImmediatePropagation(),(27===b||13===b)&&(a.preventDefault(),this.blur())},click:function(a){a.stopImmediatePropagation()},mousedown:function(a){a.stopImmediatePropagation()},keyup:function(a){l.width(Math.min(k.text("pW"+this.value).width(),f))},keypress:function(a){return 13===a.which?!1:void 0}}),m={fontFamily:g.css("fontFamily")||"",fontSize:g.css("fontSize")||"",fontWeight:g.css("fontWeight")||"",fontStyle:g.css("fontStyle")||"",fontStretch:g.css("fontStretch")||"",fontVariant:g.css("fontVariant")||"",letterSpacing:g.css("letterSpacing")||"",wordSpacing:g.css("wordSpacing")||""},h.attr("class",g.attr("class")).append(g.contents().clone()).append(l),g.replaceWith(h),k.css(m),l.css(m).width(Math.min(k.text("pW"+l[0].value).width(),f))[0].select(),void a(i).one("mousedown.jstree touchstart.jstree dnd_start.vakata",function(b){l&&b.target!==l&&a(l).trigger("blur")})):(this.settings.core.error.call(this,this._data.core.last_error),!1):!1},set_theme:function(b,c){if(!b)return!1;if(c===!0){var d=this.settings.core.themes.dir;d||(d=a.jstree.path+"/themes"),c=d+"/"+b+"/style.css"}c&&-1===a.inArray(c,g)&&(a("head").append('<link rel="stylesheet" href="'+c+'" type="text/css" />'),g.push(c)),this._data.core.themes.name&&this.element.removeClass("jstree-"+this._data.core.themes.name),this._data.core.themes.name=b,this.element.addClass("jstree-"+b),this.element[this.settings.core.themes.responsive?"addClass":"removeClass"]("jstree-"+b+"-responsive"),this.trigger("set_theme",{theme:b})},get_theme:function(){return this._data.core.themes.name},set_theme_variant:function(a){this._data.core.themes.variant&&this.element.removeClass("jstree-"+this._data.core.themes.name+"-"+this._data.core.themes.variant),this._data.core.themes.variant=a,a&&this.element.addClass("jstree-"+this._data.core.themes.name+"-"+this._data.core.themes.variant)},get_theme_variant:function(){return this._data.core.themes.variant},show_stripes:function(){this._data.core.themes.stripes=!0,this.get_container_ul().addClass("jstree-striped"),this.trigger("show_stripes")},hide_stripes:function(){this._data.core.themes.stripes=!1,this.get_container_ul().removeClass("jstree-striped"),this.trigger("hide_stripes")},toggle_stripes:function(){this._data.core.themes.stripes?this.hide_stripes():this.show_stripes()},show_dots:function(){this._data.core.themes.dots=!0,this.get_container_ul().removeClass("jstree-no-dots"),this.trigger("show_dots")},hide_dots:function(){this._data.core.themes.dots=!1,this.get_container_ul().addClass("jstree-no-dots"),this.trigger("hide_dots")},toggle_dots:function(){this._data.core.themes.dots?this.hide_dots():this.show_dots()},show_icons:function(){this._data.core.themes.icons=!0,this.get_container_ul().removeClass("jstree-no-icons"),this.trigger("show_icons")},hide_icons:function(){this._data.core.themes.icons=!1,this.get_container_ul().addClass("jstree-no-icons"),this.trigger("hide_icons")},toggle_icons:function(){this._data.core.themes.icons?this.hide_icons():this.show_icons()},show_ellipsis:function(){this._data.core.themes.ellipsis=!0,this.get_container_ul().addClass("jstree-ellipsis"),this.trigger("show_ellipsis")},hide_ellipsis:function(){this._data.core.themes.ellipsis=!1,this.get_container_ul().removeClass("jstree-ellipsis"),this.trigger("hide_ellipsis")},toggle_ellipsis:function(){this._data.core.themes.ellipsis?this.hide_ellipsis():this.show_ellipsis()},set_icon:function(c,d){var e,f,g,h;if(a.vakata.is_array(c)){for(c=c.slice(),e=0,f=c.length;f>e;e++)this.set_icon(c[e],d);return!0}return c=this.get_node(c),c&&c.id!==a.jstree.root?(h=c.icon,c.icon=d===!0||null===d||d===b||""===d?!0:d,g=this.get_node(c,!0).children(".jstree-anchor").children(".jstree-themeicon"),d===!1?(g.removeClass("jstree-themeicon-custom "+h).css("background","").removeAttr("rel"),this.hide_icon(c)):d===!0||null===d||d===b||""===d?(g.removeClass("jstree-themeicon-custom "+h).css("background","").removeAttr("rel"),h===!1&&this.show_icon(c)):-1===d.indexOf("/")&&-1===d.indexOf(".")?(g.removeClass(h).css("background",""),g.addClass(d+" jstree-themeicon-custom").attr("rel",d),h===!1&&this.show_icon(c)):(g.removeClass(h).css("background",""),g.addClass("jstree-themeicon-custom").css("background","url('"+d+"') center center no-repeat").attr("rel",d),h===!1&&this.show_icon(c)),!0):!1},get_icon:function(b){return b=this.get_node(b),b&&b.id!==a.jstree.root?b.icon:!1},hide_icon:function(b){var c,d;if(a.vakata.is_array(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.hide_icon(b[c]);return!0}return b=this.get_node(b),b&&b!==a.jstree.root?(b.icon=!1,this.get_node(b,!0).children(".jstree-anchor").children(".jstree-themeicon").addClass("jstree-themeicon-hidden"),!0):!1},show_icon:function(b){var c,d,e;if(a.vakata.is_array(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.show_icon(b[c]);return!0}return b=this.get_node(b),b&&b!==a.jstree.root?(e=this.get_node(b,!0),b.icon=e.length?e.children(".jstree-anchor").children(".jstree-themeicon").attr("rel"):!0,b.icon||(b.icon=!0),e.children(".jstree-anchor").children(".jstree-themeicon").removeClass("jstree-themeicon-hidden"),!0):!1}},a.vakata={},a.vakata.attributes=function(b,c){b=a(b)[0];var d=c?{}:[];return b&&b.attributes&&a.each(b.attributes,function(b,e){-1===a.inArray(e.name.toLowerCase(),["style","contenteditable","hasfocus","tabindex"])&&null!==e.value&&""!==a.vakata.trim(e.value)&&(c?d[e.name]=e.value:d.push(e.name))}),d},a.vakata.array_unique=function(a){var c=[],d,e,f,g={};for(d=0,f=a.length;f>d;d++)g[a[d]]===b&&(c.push(a[d]),g[a[d]]=!0);return c},a.vakata.array_remove=function(a,b){return a.splice(b,1),a},a.vakata.array_remove_item=function(b,c){var d=a.inArray(c,b);return-1!==d?a.vakata.array_remove(b,d):b},a.vakata.array_filter=function(a,b,c,d,e){if(a.filter)return a.filter(b,c);d=[];for(e in a)~~e+""==e+""&&e>=0&&b.call(c,a[e],+e,a)&&d.push(a[e]);return d},a.vakata.trim=function(a){return String.prototype.trim?String.prototype.trim.call(a.toString()):a.toString().replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")},a.vakata.is_function=function(a){return"function"==typeof a&&"number"!=typeof a.nodeType},a.vakata.is_array=Array.isArray||function(a){return"[object Array]"===Object.prototype.toString.call(a)},Function.prototype.bind||(Function.prototype.bind=function(){var a=this,b=arguments[0],c=Array.prototype.slice.call(arguments,1);if("function"!=typeof a)throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable");return function(){var d=c.concat(Array.prototype.slice.call(arguments));return a.apply(b,d)}}),a.jstree.plugins.changed=function(a,b){var c=[];this.trigger=function(a,d){var e,f;if(d||(d={}),"changed"===a.replace(".jstree","")){d.changed={selected:[],deselected:[]};var g={};for(e=0,f=c.length;f>e;e++)g[c[e]]=1;for(e=0,f=d.selected.length;f>e;e++)g[d.selected[e]]?g[d.selected[e]]=2:d.changed.selected.push(d.selected[e]);for(e=0,f=c.length;f>e;e++)1===g[c[e]]&&d.changed.deselected.push(c[e]);c=d.selected.slice()}b.trigger.call(this,a,d)},this.refresh=function(a,d){return c=[],b.refresh.apply(this,arguments)}};var l=i.createElement("I");l.className="jstree-icon jstree-checkbox",l.setAttribute("role","presentation"),a.jstree.defaults.checkbox={visible:!0,three_state:!0,whole_node:!0,keep_selected_style:!0,cascade:"",tie_selection:!0,cascade_to_disabled:!0,cascade_to_hidden:!0},a.jstree.plugins.checkbox=function(c,d){this.bind=function(){d.bind.call(this),this._data.checkbox.uto=!1,this._data.checkbox.selected=[],this.settings.checkbox.three_state&&(this.settings.checkbox.cascade="up+down+undetermined"),this.element.on("init.jstree",function(){this._data.checkbox.visible=this.settings.checkbox.visible,this.settings.checkbox.keep_selected_style||this.element.addClass("jstree-checkbox-no-clicked"),this.settings.checkbox.tie_selection&&this.element.addClass("jstree-checkbox-selection")}.bind(this)).on("loading.jstree",function(){this[this._data.checkbox.visible?"show_checkboxes":"hide_checkboxes"]()}.bind(this)),-1!==this.settings.checkbox.cascade.indexOf("undetermined")&&this.element.on("changed.jstree uncheck_node.jstree check_node.jstree uncheck_all.jstree check_all.jstree move_node.jstree copy_node.jstree redraw.jstree open_node.jstree",function(){this._data.checkbox.uto&&clearTimeout(this._data.checkbox.uto),this._data.checkbox.uto=setTimeout(this._undetermined.bind(this),50)}.bind(this)),this.settings.checkbox.tie_selection||this.element.on("model.jstree",function(a,b){var c=this._model.data,d=c[b.parent],e=b.nodes,f,g;for(f=0,g=e.length;g>f;f++)c[e[f]].state.checked=c[e[f]].state.checked||c[e[f]].original&&c[e[f]].original.state&&c[e[f]].original.state.checked,c[e[f]].state.checked&&this._data.checkbox.selected.push(e[f])}.bind(this)),(-1!==this.settings.checkbox.cascade.indexOf("up")||-1!==this.settings.checkbox.cascade.indexOf("down"))&&this.element.on("model.jstree",function(b,c){var d=this._model.data,e=d[c.parent],f=c.nodes,g=[],h,i,j,k,l,m,n=this.settings.checkbox.cascade,o=this.settings.checkbox.tie_selection;if(-1!==n.indexOf("down"))if(e.state[o?"selected":"checked"]){for(i=0,j=f.length;j>i;i++)d[f[i]].state[o?"selected":"checked"]=!0;this._data[o?"core":"checkbox"].selected=this._data[o?"core":"checkbox"].selected.concat(f)}else for(i=0,j=f.length;j>i;i++)if(d[f[i]].state[o?"selected":"checked"]){for(k=0,l=d[f[i]].children_d.length;l>k;k++)d[d[f[i]].children_d[k]].state[o?"selected":"checked"]=!0;this._data[o?"core":"checkbox"].selected=this._data[o?"core":"checkbox"].selected.concat(d[f[i]].children_d)}if(-1!==n.indexOf("up")){for(i=0,j=e.children_d.length;j>i;i++)d[e.children_d[i]].children.length||g.push(d[e.children_d[i]].parent);for(g=a.vakata.array_unique(g),k=0,l=g.length;l>k;k++){e=d[g[k]];while(e&&e.id!==a.jstree.root){for(h=0,i=0,j=e.children.length;j>i;i++)h+=d[e.children[i]].state[o?"selected":"checked"];if(h!==j)break;e.state[o?"selected":"checked"]=!0,this._data[o?"core":"checkbox"].selected.push(e.id),m=this.get_node(e,!0),m&&m.length&&m.attr("aria-selected",!0).children(".jstree-anchor").addClass(o?"jstree-clicked":"jstree-checked"),e=this.get_node(e.parent)}}}this._data[o?"core":"checkbox"].selected=a.vakata.array_unique(this._data[o?"core":"checkbox"].selected)}.bind(this)).on(this.settings.checkbox.tie_selection?"select_node.jstree":"check_node.jstree",function(b,c){var d=this,e=c.node,f=this._model.data,g=this.get_node(e.parent),h,i,j,k,l=this.settings.checkbox.cascade,m=this.settings.checkbox.tie_selection,n={},o=this._data[m?"core":"checkbox"].selected;for(h=0,i=o.length;i>h;h++)n[o[h]]=!0;if(-1!==l.indexOf("down")){var p=this._cascade_new_checked_state(e.id,!0),q=e.children_d.concat(e.id);for(h=0,i=q.length;i>h;h++)p.indexOf(q[h])>-1?n[q[h]]=!0:delete n[q[h]]}if(-1!==l.indexOf("up"))while(g&&g.id!==a.jstree.root){for(j=0,h=0,i=g.children.length;i>h;h++)j+=f[g.children[h]].state[m?"selected":"checked"];if(j!==i)break;g.state[m?"selected":"checked"]=!0,n[g.id]=!0,k=this.get_node(g,!0),k&&k.length&&k.attr("aria-selected",!0).children(".jstree-anchor").addClass(m?"jstree-clicked":"jstree-checked"),g=this.get_node(g.parent)}o=[];for(h in n)n.hasOwnProperty(h)&&o.push(h);this._data[m?"core":"checkbox"].selected=o}.bind(this)).on(this.settings.checkbox.tie_selection?"deselect_all.jstree":"uncheck_all.jstree",function(b,c){var d=this.get_node(a.jstree.root),e=this._model.data,f,g,h;for(f=0,g=d.children_d.length;g>f;f++)h=e[d.children_d[f]],h&&h.original&&h.original.state&&h.original.state.undetermined&&(h.original.state.undetermined=!1)}.bind(this)).on(this.settings.checkbox.tie_selection?"deselect_node.jstree":"uncheck_node.jstree",function(b,c){var d=this,e=c.node,f=this.get_node(e,!0),g,h,i,j=this.settings.checkbox.cascade,k=this.settings.checkbox.tie_selection,l=this._data[k?"core":"checkbox"].selected,m={},n=[],o=e.children_d.concat(e.id);if(-1!==j.indexOf("down")){var p=this._cascade_new_checked_state(e.id,!1);l=a.vakata.array_filter(l,function(a){return-1===o.indexOf(a)||p.indexOf(a)>-1})}if(-1!==j.indexOf("up")&&-1===l.indexOf(e.id)){for(g=0,h=e.parents.length;h>g;g++)i=this._model.data[e.parents[g]],i.state[k?"selected":"checked"]=!1,i&&i.original&&i.original.state&&i.original.state.undetermined&&(i.original.state.undetermined=!1),i=this.get_node(e.parents[g],!0),i&&i.length&&i.attr("aria-selected",!1).children(".jstree-anchor").removeClass(k?"jstree-clicked":"jstree-checked");l=a.vakata.array_filter(l,function(a){return-1===e.parents.indexOf(a)})}this._data[k?"core":"checkbox"].selected=l}.bind(this)),-1!==this.settings.checkbox.cascade.indexOf("up")&&this.element.on("delete_node.jstree",function(b,c){var d=this.get_node(c.parent),e=this._model.data,f,g,h,i,j=this.settings.checkbox.tie_selection;while(d&&d.id!==a.jstree.root&&!d.state[j?"selected":"checked"]){for(h=0,f=0,g=d.children.length;g>f;f++)h+=e[d.children[f]].state[j?"selected":"checked"];if(!(g>0&&h===g))break;d.state[j?"selected":"checked"]=!0,this._data[j?"core":"checkbox"].selected.push(d.id),i=this.get_node(d,!0),i&&i.length&&i.attr("aria-selected",!0).children(".jstree-anchor").addClass(j?"jstree-clicked":"jstree-checked"),d=this.get_node(d.parent)}}.bind(this)).on("move_node.jstree",function(b,c){var d=c.is_multi,e=c.old_parent,f=this.get_node(c.parent),g=this._model.data,h,i,j,k,l,m=this.settings.checkbox.tie_selection;if(!d){h=this.get_node(e);while(h&&h.id!==a.jstree.root&&!h.state[m?"selected":"checked"]){for(i=0,j=0,k=h.children.length;k>j;j++)i+=g[h.children[j]].state[m?"selected":"checked"];if(!(k>0&&i===k))break;h.state[m?"selected":"checked"]=!0,this._data[m?"core":"checkbox"].selected.push(h.id),l=this.get_node(h,!0),l&&l.length&&l.attr("aria-selected",!0).children(".jstree-anchor").addClass(m?"jstree-clicked":"jstree-checked"),h=this.get_node(h.parent)}}h=f;while(h&&h.id!==a.jstree.root){for(i=0,j=0,k=h.children.length;k>j;j++)i+=g[h.children[j]].state[m?"selected":"checked"];if(i===k)h.state[m?"selected":"checked"]||(h.state[m?"selected":"checked"]=!0,this._data[m?"core":"checkbox"].selected.push(h.id),l=this.get_node(h,!0),l&&l.length&&l.attr("aria-selected",!0).children(".jstree-anchor").addClass(m?"jstree-clicked":"jstree-checked"));else{if(!h.state[m?"selected":"checked"])break;h.state[m?"selected":"checked"]=!1,this._data[m?"core":"checkbox"].selected=a.vakata.array_remove_item(this._data[m?"core":"checkbox"].selected,h.id),l=this.get_node(h,!0),l&&l.length&&l.attr("aria-selected",!1).children(".jstree-anchor").removeClass(m?"jstree-clicked":"jstree-checked")}h=this.get_node(h.parent)}}.bind(this))},this.get_undetermined=function(c){if(-1===this.settings.checkbox.cascade.indexOf("undetermined"))return[];var d,e,f,g,h={},i=this._model.data,j=this.settings.checkbox.tie_selection,k=this._data[j?"core":"checkbox"].selected,l=[],m=this,n=[];for(d=0,e=k.length;e>d;d++)if(i[k[d]]&&i[k[d]].parents)for(f=0,g=i[k[d]].parents.length;g>f;f++){if(h[i[k[d]].parents[f]]!==b)break;i[k[d]].parents[f]!==a.jstree.root&&(h[i[k[d]].parents[f]]=!0,l.push(i[k[d]].parents[f]))}for(this.element.find(".jstree-closed").not(":has(.jstree-children)").each(function(){var c=m.get_node(this),j;if(c)if(c.state.loaded){for(d=0,e=c.children_d.length;e>d;d++)if(j=i[c.children_d[d]],!j.state.loaded&&j.original&&j.original.state&&j.original.state.undetermined&&j.original.state.undetermined===!0)for(h[j.id]===b&&j.id!==a.jstree.root&&(h[j.id]=!0,l.push(j.id)),f=0,g=j.parents.length;g>f;f++)h[j.parents[f]]===b&&j.parents[f]!==a.jstree.root&&(h[j.parents[f]]=!0,l.push(j.parents[f]))}else if(c.original&&c.original.state&&c.original.state.undetermined&&c.original.state.undetermined===!0)for(h[c.id]===b&&c.id!==a.jstree.root&&(h[c.id]=!0,l.push(c.id)),f=0,g=c.parents.length;g>f;f++)h[c.parents[f]]===b&&c.parents[f]!==a.jstree.root&&(h[c.parents[f]]=!0,l.push(c.parents[f]))}),d=0,e=l.length;e>d;d++)i[l[d]].state[j?"selected":"checked"]||n.push(c?i[l[d]]:l[d]);return n},this._undetermined=function(){if(null!==this.element){var a=this.get_undetermined(!1),b,c,d;for(this.element.find(".jstree-undetermined").removeClass("jstree-undetermined"),b=0,c=a.length;c>b;b++)d=this.get_node(a[b],!0),d&&d.length&&d.children(".jstree-anchor").children(".jstree-checkbox").addClass("jstree-undetermined")}},this.redraw_node=function(a,b,c,e){if(a=d.redraw_node.apply(this,arguments)){var f,g,h=null,i=null;for(f=0,g=a.childNodes.length;g>f;f++)if(a.childNodes[f]&&a.childNodes[f].className&&-1!==a.childNodes[f].className.indexOf("jstree-anchor")){h=a.childNodes[f];break}h&&(!this.settings.checkbox.tie_selection&&this._model.data[a.id].state.checked&&(h.className+=" jstree-checked"),i=l.cloneNode(!1),this._model.data[a.id].state.checkbox_disabled&&(i.className+=" jstree-checkbox-disabled"),h.insertBefore(i,h.childNodes[0]))}return c||-1===this.settings.checkbox.cascade.indexOf("undetermined")||(this._data.checkbox.uto&&clearTimeout(this._data.checkbox.uto),this._data.checkbox.uto=setTimeout(this._undetermined.bind(this),50)),a},this.show_checkboxes=function(){this._data.core.themes.checkboxes=!0,this.get_container_ul().removeClass("jstree-no-checkboxes")},this.hide_checkboxes=function(){this._data.core.themes.checkboxes=!1,this.get_container_ul().addClass("jstree-no-checkboxes")},this.toggle_checkboxes=function(){this._data.core.themes.checkboxes?this.hide_checkboxes():this.show_checkboxes()},this.is_undetermined=function(b){b=this.get_node(b);var c=this.settings.checkbox.cascade,d,e,f=this.settings.checkbox.tie_selection,g=this._data[f?"core":"checkbox"].selected,h=this._model.data;if(!b||b.state[f?"selected":"checked"]===!0||-1===c.indexOf("undetermined")||-1===c.indexOf("down")&&-1===c.indexOf("up"))return!1;if(!b.state.loaded&&b.original.state.undetermined===!0)return!0;for(d=0,e=b.children_d.length;e>d;d++)if(-1!==a.inArray(b.children_d[d],g)||!h[b.children_d[d]].state.loaded&&h[b.children_d[d]].original.state.undetermined)return!0;return!1},this.disable_checkbox=function(b){var c,d,e;if(a.vakata.is_array(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.disable_checkbox(b[c]);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(e=this.get_node(b,!0),void(b.state.checkbox_disabled||(b.state.checkbox_disabled=!0,e&&e.length&&e.children(".jstree-anchor").children(".jstree-checkbox").addClass("jstree-checkbox-disabled"),this.trigger("disable_checkbox",{node:b})))):!1},this.enable_checkbox=function(b){var c,d,e;if(a.vakata.is_array(b)){for(b=b.slice(),c=0,d=b.length;d>c;c++)this.enable_checkbox(b[c]);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(e=this.get_node(b,!0),void(b.state.checkbox_disabled&&(b.state.checkbox_disabled=!1,e&&e.length&&e.children(".jstree-anchor").children(".jstree-checkbox").removeClass("jstree-checkbox-disabled"),this.trigger("enable_checkbox",{node:b})))):!1},this.activate_node=function(b,c){return a(c.target).hasClass("jstree-checkbox-disabled")?!1:(this.settings.checkbox.tie_selection&&(this.settings.checkbox.whole_node||a(c.target).hasClass("jstree-checkbox"))&&(c.ctrlKey=!0),this.settings.checkbox.tie_selection||!this.settings.checkbox.whole_node&&!a(c.target).hasClass("jstree-checkbox")?d.activate_node.call(this,b,c):this.is_disabled(b)?!1:(this.is_checked(b)?this.uncheck_node(b,c):this.check_node(b,c),void this.trigger("activate_node",{node:this.get_node(b)})))},this._cascade_new_checked_state=function(a,b){var c=this,d=this.settings.checkbox.tie_selection,e=this._model.data[a],f=[],g=[],h,i,j;if(!this.settings.checkbox.cascade_to_disabled&&e.state.disabled||!this.settings.checkbox.cascade_to_hidden&&e.state.hidden)j=this.get_checked_descendants(a),e.state[d?"selected":"checked"]&&j.push(e.id),f=f.concat(j);else{if(e.children)for(h=0,i=e.children.length;i>h;h++){var k=e.children[h];j=c._cascade_new_checked_state(k,b),f=f.concat(j),j.indexOf(k)>-1&&g.push(k)}var l=c.get_node(e,!0),m=g.length>0&&g.length<e.children.length;e.original&&e.original.state&&e.original.state.undetermined&&(e.original.state.undetermined=m),m?(e.state[d?"selected":"checked"]=!1,l.attr("aria-selected",!1).children(".jstree-anchor").removeClass(d?"jstree-clicked":"jstree-checked")):b&&g.length===e.children.length?(e.state[d?"selected":"checked"]=b,f.push(e.id),l.attr("aria-selected",!0).children(".jstree-anchor").addClass(d?"jstree-clicked":"jstree-checked")):(e.state[d?"selected":"checked"]=!1,l.attr("aria-selected",!1).children(".jstree-anchor").removeClass(d?"jstree-clicked":"jstree-checked"))}return f},this.get_checked_descendants=function(b){var c=this,d=c.settings.checkbox.tie_selection,e=c._model.data[b];return a.vakata.array_filter(e.children_d,function(a){return c._model.data[a].state[d?"selected":"checked"]})},this.check_node=function(b,c){if(this.settings.checkbox.tie_selection)return this.select_node(b,!1,!0,c);var d,e,f,g;if(a.vakata.is_array(b)){for(b=b.slice(),e=0,f=b.length;f>e;e++)this.check_node(b[e],c);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(d=this.get_node(b,!0),void(b.state.checked||(b.state.checked=!0,this._data.checkbox.selected.push(b.id),d&&d.length&&d.children(".jstree-anchor").addClass("jstree-checked"),this.trigger("check_node",{node:b,selected:this._data.checkbox.selected,event:c})))):!1},this.uncheck_node=function(b,c){if(this.settings.checkbox.tie_selection)return this.deselect_node(b,!1,c);var d,e,f;if(a.vakata.is_array(b)){for(b=b.slice(),d=0,e=b.length;e>d;d++)this.uncheck_node(b[d],c);return!0}return b=this.get_node(b),b&&b.id!==a.jstree.root?(f=this.get_node(b,!0),void(b.state.checked&&(b.state.checked=!1,this._data.checkbox.selected=a.vakata.array_remove_item(this._data.checkbox.selected,b.id),f.length&&f.children(".jstree-anchor").removeClass("jstree-checked"),this.trigger("uncheck_node",{node:b,selected:this._data.checkbox.selected,event:c})))):!1},this.check_all=function(){if(this.settings.checkbox.tie_selection)return this.select_all();var b=this._data.checkbox.selected.concat([]),c,d;for(this._data.checkbox.selected=this._model.data[a.jstree.root].children_d.concat(),c=0,d=this._data.checkbox.selected.length;d>c;c++)this._model.data[this._data.checkbox.selected[c]]&&(this._model.data[this._data.checkbox.selected[c]].state.checked=!0);this.redraw(!0),this.trigger("check_all",{selected:this._data.checkbox.selected})},this.uncheck_all=function(){if(this.settings.checkbox.tie_selection)return this.deselect_all();var a=this._data.checkbox.selected.concat([]),b,c;for(b=0,c=this._data.checkbox.selected.length;c>b;b++)this._model.data[this._data.checkbox.selected[b]]&&(this._model.data[this._data.checkbox.selected[b]].state.checked=!1);this._data.checkbox.selected=[],this.element.find(".jstree-checked").removeClass("jstree-checked"),this.trigger("uncheck_all",{selected:this._data.checkbox.selected,node:a})},this.is_checked=function(b){return this.settings.checkbox.tie_selection?this.is_selected(b):(b=this.get_node(b),b&&b.id!==a.jstree.root?b.state.checked:!1)},this.get_checked=function(b){return this.settings.checkbox.tie_selection?this.get_selected(b):b?a.map(this._data.checkbox.selected,function(a){return this.get_node(a)}.bind(this)):this._data.checkbox.selected.slice()},this.get_top_checked=function(b){if(this.settings.checkbox.tie_selection)return this.get_top_selected(b);var c=this.get_checked(!0),d={},e,f,g,h;for(e=0,f=c.length;f>e;e++)d[c[e].id]=c[e];for(e=0,f=c.length;f>e;e++)for(g=0,h=c[e].children_d.length;h>g;g++)d[c[e].children_d[g]]&&delete d[c[e].children_d[g]];c=[];for(e in d)d.hasOwnProperty(e)&&c.push(e);return b?a.map(c,function(a){return this.get_node(a)}.bind(this)):c},this.get_bottom_checked=function(b){if(this.settings.checkbox.tie_selection)return this.get_bottom_selected(b);var c=this.get_checked(!0),d=[],e,f;for(e=0,f=c.length;f>e;e++)c[e].children.length||d.push(c[e].id);return b?a.map(d,function(a){return this.get_node(a)}.bind(this)):d},this.load_node=function(b,c){var e,f,g,h,i,j;if(!a.vakata.is_array(b)&&!this.settings.checkbox.tie_selection&&(j=this.get_node(b),j&&j.state.loaded))for(e=0,f=j.children_d.length;f>e;e++)this._model.data[j.children_d[e]].state.checked&&(i=!0,this._data.checkbox.selected=a.vakata.array_remove_item(this._data.checkbox.selected,j.children_d[e]));return d.load_node.apply(this,arguments)},this.get_state=function(){var a=d.get_state.apply(this,arguments);return this.settings.checkbox.tie_selection?a:(a.checkbox=this._data.checkbox.selected.slice(),a)},this.set_state=function(b,c){var e=d.set_state.apply(this,arguments);if(e&&b.checkbox){if(!this.settings.checkbox.tie_selection){this.uncheck_all();var f=this;a.each(b.checkbox,function(a,b){f.check_node(b)})}return delete b.checkbox,this.set_state(b,c),!1}return e},this.refresh=function(a,b){return this.settings.checkbox.tie_selection&&(this._data.checkbox.selected=[]),d.refresh.apply(this,arguments)}},a.jstree.defaults.conditionalselect=function(){return!0},a.jstree.plugins.conditionalselect=function(a,b){this.activate_node=function(a,c){return this.settings.conditionalselect.call(this,this.get_node(a),c)?b.activate_node.call(this,a,c):void 0}},a.jstree.defaults.contextmenu={select_node:!0,show_at_node:!0,items:function(b,c){return{create:{separator_before:!1,separator_after:!0,_disabled:!1,label:"Create",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.create_node(d,{},"last",function(a){try{c.edit(a)}catch(b){setTimeout(function(){c.edit(a)},0)}})}},rename:{separator_before:!1,separator_after:!1,_disabled:!1,label:"Rename",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.edit(d)}},remove:{separator_before:!1,icon:!1,separator_after:!1,_disabled:!1,label:"Delete",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.is_selected(d)?c.delete_node(c.get_selected()):c.delete_node(d)}},ccp:{separator_before:!0,icon:!1,separator_after:!1,label:"Edit",action:!1,submenu:{cut:{separator_before:!1,separator_after:!1,label:"Cut",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.is_selected(d)?c.cut(c.get_top_selected()):c.cut(d)}},copy:{separator_before:!1,icon:!1,separator_after:!1,label:"Copy",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.is_selected(d)?c.copy(c.get_top_selected()):c.copy(d)}},paste:{separator_before:!1,icon:!1,_disabled:function(b){return!a.jstree.reference(b.reference).can_paste()},separator_after:!1,label:"Paste",action:function(b){var c=a.jstree.reference(b.reference),d=c.get_node(b.reference);c.paste(d)}}}}}}},a.jstree.plugins.contextmenu=function(c,d){this.bind=function(){d.bind.call(this);var b=0,c=null,e,f;this.element.on("init.jstree loading.jstree ready.jstree",function(){this.get_container_ul().addClass("jstree-contextmenu")}.bind(this)).on("contextmenu.jstree",".jstree-anchor",function(a,d){"input"!==a.target.tagName.toLowerCase()&&(a.preventDefault(),b=a.ctrlKey?+new Date:0,(d||c)&&(b=+new Date+1e4),c&&clearTimeout(c),this.is_loading(a.currentTarget)||this.show_contextmenu(a.currentTarget,a.pageX,a.pageY,a))}.bind(this)).on("click.jstree",".jstree-anchor",function(c){this._data.contextmenu.visible&&(!b||+new Date-b>250)&&a.vakata.context.hide(),b=0}.bind(this)).on("touchstart.jstree",".jstree-anchor",function(b){b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(e=b.originalEvent.changedTouches[0].clientX,f=b.originalEvent.changedTouches[0].clientY,c=setTimeout(function(){a(b.currentTarget).trigger("contextmenu",!0)},750))}).on("touchmove.vakata.jstree",function(b){c&&b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(Math.abs(e-b.originalEvent.changedTouches[0].clientX)>10||Math.abs(f-b.originalEvent.changedTouches[0].clientY)>10)&&(clearTimeout(c),a.vakata.context.hide())}).on("touchend.vakata.jstree",function(a){c&&clearTimeout(c)}),a(i).on("context_hide.vakata.jstree",function(b,c){this._data.contextmenu.visible=!1,a(c.reference).removeClass("jstree-context")}.bind(this))},this.teardown=function(){this._data.contextmenu.visible&&a.vakata.context.hide(),a(i).off("context_hide.vakata.jstree"),d.teardown.call(this)},this.show_contextmenu=function(c,d,e,f){if(c=this.get_node(c),!c||c.id===a.jstree.root)return!1;var g=this.settings.contextmenu,h=this.get_node(c,!0),i=h.children(".jstree-anchor"),j=!1,k=!1;(g.show_at_node||d===b||e===b)&&(j=i.offset(),d=j.left,e=j.top+this._data.core.li_height),this.settings.contextmenu.select_node&&!this.is_selected(c)&&this.activate_node(c,f),k=g.items,a.vakata.is_function(k)&&(k=k.call(this,c,function(a){this._show_contextmenu(c,d,e,a)}.bind(this))),a.isPlainObject(k)&&this._show_contextmenu(c,d,e,k)},this._show_contextmenu=function(b,c,d,e){
5
var f=this.get_node(b,!0),g=f.children(".jstree-anchor");a(i).one("context_show.vakata.jstree",function(b,c){var d="jstree-contextmenu jstree-"+this.get_theme()+"-contextmenu";a(c.element).addClass(d),g.addClass("jstree-context")}.bind(this)),this._data.contextmenu.visible=!0,a.vakata.context.show(g,{x:c,y:d},e),this.trigger("show_contextmenu",{node:b,x:c,y:d})}},function(a){var b=!1,c={element:!1,reference:!1,position_x:0,position_y:0,items:[],html:"",is_visible:!1};a.vakata.context={settings:{hide_onmouseleave:0,icons:!0},_trigger:function(b){a(i).triggerHandler("context_"+b+".vakata",{reference:c.reference,element:c.element,position:{x:c.position_x,y:c.position_y}})},_execute:function(b){return b=c.items[b],b&&(!b._disabled||a.vakata.is_function(b._disabled)&&!b._disabled({item:b,reference:c.reference,element:c.element}))&&b.action?b.action.call(null,{item:b,reference:c.reference,element:c.element,position:{x:c.position_x,y:c.position_y}}):!1},_parse:function(b,d){if(!b)return!1;d||(c.html="",c.items=[]);var e="",f=!1,g;return d&&(e+="<ul>"),a.each(b,function(b,d){return d?(c.items.push(d),!f&&d.separator_before&&(e+="<li class='vakata-context-separator'><a href='#' "+(a.vakata.context.settings.icons?"":'class="vakata-context-no-icons"')+">&#160;</a></li>"),f=!1,e+="<li class='"+(d._class||"")+(d._disabled===!0||a.vakata.is_function(d._disabled)&&d._disabled({item:d,reference:c.reference,element:c.element})?" vakata-contextmenu-disabled ":"")+"' "+(d.shortcut?" data-shortcut='"+d.shortcut+"' ":"")+">",e+="<a href='#' rel='"+(c.items.length-1)+"' "+(d.title?"title='"+d.title+"'":"")+">",a.vakata.context.settings.icons&&(e+="<i ",d.icon&&(e+=-1!==d.icon.indexOf("/")||-1!==d.icon.indexOf(".")?" style='background:url(\""+d.icon+"\") center center no-repeat' ":" class='"+d.icon+"' "),e+="></i><span class='vakata-contextmenu-sep'>&#160;</span>"),e+=(a.vakata.is_function(d.label)?d.label({item:b,reference:c.reference,element:c.element}):d.label)+(d.shortcut?' <span class="vakata-contextmenu-shortcut vakata-contextmenu-shortcut-'+d.shortcut+'">'+(d.shortcut_label||"")+"</span>":"")+"</a>",d.submenu&&(g=a.vakata.context._parse(d.submenu,!0),g&&(e+=g)),e+="</li>",void(d.separator_after&&(e+="<li class='vakata-context-separator'><a href='#' "+(a.vakata.context.settings.icons?"":'class="vakata-context-no-icons"')+">&#160;</a></li>",f=!0))):!0}),e=e.replace(/<li class\='vakata-context-separator'\><\/li\>$/,""),d&&(e+="</ul>"),d||(c.html=e,a.vakata.context._trigger("parse")),e.length>10?e:!1},_show_submenu:function(c){if(c=a(c),c.length&&c.children("ul").length){var d=c.children("ul"),e=c.offset().left,f=e+c.outerWidth(),g=c.offset().top,h=d.width(),i=d.height(),j=a(window).width()+a(window).scrollLeft(),k=a(window).height()+a(window).scrollTop();b?c[f-(h+10+c.outerWidth())<0?"addClass":"removeClass"]("vakata-context-left"):c[f+h>j&&e>j-f?"addClass":"removeClass"]("vakata-context-right"),g+i+10>k&&d.css("bottom","-1px"),c.hasClass("vakata-context-right")?h>e&&d.css("margin-right",e-h):h>j-f&&d.css("margin-left",j-f-h),d.show()}},show:function(d,e,f){var g,h,j,k,l,m,n,o,p=!0;switch(c.element&&c.element.length&&c.element.width(""),p){case!e&&!d:return!1;case!!e&&!!d:c.reference=d,c.position_x=e.x,c.position_y=e.y;break;case!e&&!!d:c.reference=d,g=d.offset(),c.position_x=g.left+d.outerHeight(),c.position_y=g.top;break;case!!e&&!d:c.position_x=e.x,c.position_y=e.y}d&&!f&&a(d).data("vakata_contextmenu")&&(f=a(d).data("vakata_contextmenu")),a.vakata.context._parse(f)&&c.element.html(c.html),c.items.length&&(c.element.appendTo(i.body),h=c.element,j=c.position_x,k=c.position_y,l=h.width(),m=h.height(),n=a(window).width()+a(window).scrollLeft(),o=a(window).height()+a(window).scrollTop(),b&&(j-=h.outerWidth()-a(d).outerWidth(),j<a(window).scrollLeft()+20&&(j=a(window).scrollLeft()+20)),j+l+20>n&&(j=n-(l+20)),k+m+20>o&&(k=o-(m+20)),c.element.css({left:j,top:k}).show().find("a").first().trigger("focus").parent().addClass("vakata-context-hover"),c.is_visible=!0,a.vakata.context._trigger("show"))},hide:function(){c.is_visible&&(c.element.hide().find("ul").hide().end().find(":focus").trigger("blur").end().detach(),c.is_visible=!1,a.vakata.context._trigger("hide"))}},a(function(){b="rtl"===a(i.body).css("direction");var d=!1;c.element=a("<ul class='vakata-context'></ul>"),c.element.on("mouseenter","li",function(b){b.stopImmediatePropagation(),a.contains(this,b.relatedTarget)||(d&&clearTimeout(d),c.element.find(".vakata-context-hover").removeClass("vakata-context-hover").end(),a(this).siblings().find("ul").hide().end().end().parentsUntil(".vakata-context","li").addBack().addClass("vakata-context-hover"),a.vakata.context._show_submenu(this))}).on("mouseleave","li",function(b){a.contains(this,b.relatedTarget)||a(this).find(".vakata-context-hover").addBack().removeClass("vakata-context-hover")}).on("mouseleave",function(b){a(this).find(".vakata-context-hover").removeClass("vakata-context-hover"),a.vakata.context.settings.hide_onmouseleave&&(d=setTimeout(function(b){return function(){a.vakata.context.hide()}}(this),a.vakata.context.settings.hide_onmouseleave))}).on("click","a",function(b){b.preventDefault(),a(this).trigger("blur").parent().hasClass("vakata-context-disabled")||a.vakata.context._execute(a(this).attr("rel"))===!1||a.vakata.context.hide()}).on("keydown","a",function(b){var d=null;switch(b.which){case 13:case 32:b.type="click",b.preventDefault(),a(b.currentTarget).trigger(b);break;case 37:c.is_visible&&(c.element.find(".vakata-context-hover").last().closest("li").first().find("ul").hide().find(".vakata-context-hover").removeClass("vakata-context-hover").end().end().children("a").trigger("focus"),b.stopImmediatePropagation(),b.preventDefault());break;case 38:c.is_visible&&(d=c.element.find("ul:visible").addBack().last().children(".vakata-context-hover").removeClass("vakata-context-hover").prevAll("li:not(.vakata-context-separator)").first(),d.length||(d=c.element.find("ul:visible").addBack().last().children("li:not(.vakata-context-separator)").last()),d.addClass("vakata-context-hover").children("a").trigger("focus"),b.stopImmediatePropagation(),b.preventDefault());break;case 39:c.is_visible&&(c.element.find(".vakata-context-hover").last().children("ul").show().children("li:not(.vakata-context-separator)").removeClass("vakata-context-hover").first().addClass("vakata-context-hover").children("a").trigger("focus"),b.stopImmediatePropagation(),b.preventDefault());break;case 40:c.is_visible&&(d=c.element.find("ul:visible").addBack().last().children(".vakata-context-hover").removeClass("vakata-context-hover").nextAll("li:not(.vakata-context-separator)").first(),d.length||(d=c.element.find("ul:visible").addBack().last().children("li:not(.vakata-context-separator)").first()),d.addClass("vakata-context-hover").children("a").trigger("focus"),b.stopImmediatePropagation(),b.preventDefault());break;case 27:a.vakata.context.hide(),b.preventDefault()}}).on("keydown",function(a){a.preventDefault();var b=c.element.find(".vakata-contextmenu-shortcut-"+a.which).parent();b.parent().not(".vakata-context-disabled")&&b.trigger("click")}),a(i).on("mousedown.vakata.jstree",function(b){c.is_visible&&c.element[0]!==b.target&&!a.contains(c.element[0],b.target)&&a.vakata.context.hide()}).on("context_show.vakata.jstree",function(a,d){c.element.find("li:has(ul)").children("a").addClass("vakata-context-parent"),b&&c.element.addClass("vakata-context-rtl").css("direction","rtl"),c.element.find("ul").hide().end()})})}(a),a.jstree.defaults.dnd={copy:!0,open_timeout:500,is_draggable:!0,check_while_dragging:!0,always_copy:!1,inside_pos:0,drag_selection:!0,touch:!0,large_drop_target:!1,large_drag_target:!1,use_html5:!1};var m,n;a.jstree.plugins.dnd=function(b,c){this.init=function(a,b){c.init.call(this,a,b),this.settings.dnd.use_html5=this.settings.dnd.use_html5&&"draggable"in i.createElement("span")},this.bind=function(){c.bind.call(this),this.element.on(this.settings.dnd.use_html5?"dragstart.jstree":"mousedown.jstree touchstart.jstree",this.settings.dnd.large_drag_target?".jstree-node":".jstree-anchor",function(b){if(this.settings.dnd.large_drag_target&&a(b.target).closest(".jstree-node")[0]!==b.currentTarget)return!0;if("touchstart"===b.type&&(!this.settings.dnd.touch||"selected"===this.settings.dnd.touch&&!a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").hasClass("jstree-clicked")))return!0;var c=this.get_node(b.target),d=this.is_selected(c)&&this.settings.dnd.drag_selection?this.get_top_selected().length:1,e=d>1?d+" "+this.get_string("nodes"):this.get_text(b.currentTarget);if(this.settings.core.force_text&&(e=a.vakata.html.escape(e)),c&&c.id&&c.id!==a.jstree.root&&(1===b.which||"touchstart"===b.type||"dragstart"===b.type)&&(this.settings.dnd.is_draggable===!0||a.vakata.is_function(this.settings.dnd.is_draggable)&&this.settings.dnd.is_draggable.call(this,d>1?this.get_top_selected(!0):[c],b))){if(m={jstree:!0,origin:this,obj:this.get_node(c,!0),nodes:d>1?this.get_top_selected():[c.id]},n=b.currentTarget,!this.settings.dnd.use_html5)return this.element.trigger("mousedown.jstree"),a.vakata.dnd.start(b,m,'<div id="jstree-dnd" class="jstree-'+this.get_theme()+" jstree-"+this.get_theme()+"-"+this.get_theme_variant()+" "+(this.settings.core.themes.responsive?" jstree-dnd-responsive":"")+'"><i class="jstree-icon jstree-er"></i>'+e+'<ins class="jstree-copy">+</ins></div>');a.vakata.dnd._trigger("start",b,{helper:a(),element:n,data:m})}}.bind(this)),this.settings.dnd.use_html5&&this.element.on("dragover.jstree",function(b){return b.preventDefault(),a.vakata.dnd._trigger("move",b,{helper:a(),element:n,data:m}),!1}).on("drop.jstree",function(b){return b.preventDefault(),a.vakata.dnd._trigger("stop",b,{helper:a(),element:n,data:m}),!1}.bind(this))},this.redraw_node=function(a,b,d,e){if(a=c.redraw_node.apply(this,arguments),a&&this.settings.dnd.use_html5)if(this.settings.dnd.large_drag_target)a.setAttribute("draggable",!0);else{var f,g,h=null;for(f=0,g=a.childNodes.length;g>f;f++)if(a.childNodes[f]&&a.childNodes[f].className&&-1!==a.childNodes[f].className.indexOf("jstree-anchor")){h=a.childNodes[f];break}h&&h.setAttribute("draggable",!0)}return a}},a(function(){var c=!1,d=!1,e=!1,f=!1,g=a('<div id="jstree-marker">&#160;</div>').hide();a(i).on("dragover.vakata.jstree",function(b){n&&a.vakata.dnd._trigger("move",b,{helper:a(),element:n,data:m})}).on("drop.vakata.jstree",function(b){n&&(a.vakata.dnd._trigger("stop",b,{helper:a(),element:n,data:m}),n=null,m=null)}).on("dnd_start.vakata.jstree",function(a,b){c=!1,e=!1,b&&b.data&&b.data.jstree&&g.appendTo(i.body)}).on("dnd_move.vakata.jstree",function(h,i){var j=i.event.target!==e.target;if(f&&(!i.event||"dragover"!==i.event.type||j)&&clearTimeout(f),i&&i.data&&i.data.jstree&&(!i.event.target.id||"jstree-marker"!==i.event.target.id)){e=i.event;var k=a.jstree.reference(i.event.target),l=!1,m=!1,n=!1,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F;if(k&&k._data&&k._data.dnd)if(g.attr("class","jstree-"+k.get_theme()+(k.settings.core.themes.responsive?" jstree-dnd-responsive":"")),D=i.data.origin&&(i.data.origin.settings.dnd.always_copy||i.data.origin.settings.dnd.copy&&(i.event.metaKey||i.event.ctrlKey)),i.helper.children().attr("class","jstree-"+k.get_theme()+" jstree-"+k.get_theme()+"-"+k.get_theme_variant()+" "+(k.settings.core.themes.responsive?" jstree-dnd-responsive":"")).find(".jstree-copy").first()[D?"show":"hide"](),i.event.target!==k.element[0]&&i.event.target!==k.get_container_ul()[0]||0!==k.get_container_ul().children().length){if(l=k.settings.dnd.large_drop_target?a(i.event.target).closest(".jstree-node").children(".jstree-anchor"):a(i.event.target).closest(".jstree-anchor"),l&&l.length&&l.parent().is(".jstree-closed, .jstree-open, .jstree-leaf")&&(m=l.offset(),n=(i.event.pageY!==b?i.event.pageY:i.event.originalEvent.pageY)-m.top,r=l.outerHeight(),u=r/3>n?["b","i","a"]:n>r-r/3?["a","i","b"]:n>r/2?["i","a","b"]:["i","b","a"],a.each(u,function(b,e){switch(e){case"b":p=m.left-6,q=m.top,s=k.get_parent(l),t=l.parent().index(),F="jstree-below";break;case"i":B=k.settings.dnd.inside_pos,C=k.get_node(l.parent()),p=m.left-2,q=m.top+r/2+1,s=C.id,t="first"===B?0:"last"===B?C.children.length:Math.min(B,C.children.length),F="jstree-inside";break;case"a":p=m.left-6,q=m.top+r,s=k.get_parent(l),t=l.parent().index()+1,F="jstree-above"}for(v=!0,w=0,x=i.data.nodes.length;x>w;w++)if(y=i.data.origin&&(i.data.origin.settings.dnd.always_copy||i.data.origin.settings.dnd.copy&&(i.event.metaKey||i.event.ctrlKey))?"copy_node":"move_node",z=t,"move_node"===y&&"a"===e&&i.data.origin&&i.data.origin===k&&s===k.get_parent(i.data.nodes[w])&&(A=k.get_node(s),z>a.inArray(i.data.nodes[w],A.children)&&(z-=1)),v=v&&(k&&k.settings&&k.settings.dnd&&k.settings.dnd.check_while_dragging===!1||k.check(y,i.data.origin&&i.data.origin!==k?i.data.origin.get_node(i.data.nodes[w]):i.data.nodes[w],s,z,{dnd:!0,ref:k.get_node(l.parent()),pos:e,origin:i.data.origin,is_multi:i.data.origin&&i.data.origin!==k,is_foreign:!i.data.origin})),!v){k&&k.last_error&&(d=k.last_error());break}return"i"===e&&l.parent().is(".jstree-closed")&&k.settings.dnd.open_timeout&&(!i.event||"dragover"!==i.event.type||j)&&(f&&clearTimeout(f),f=setTimeout(function(a,b){return function(){a.open_node(b)}}(k,l),k.settings.dnd.open_timeout)),v?(E=k.get_node(s,!0),E.hasClass(".jstree-dnd-parent")||(a(".jstree-dnd-parent").removeClass("jstree-dnd-parent"),E.addClass("jstree-dnd-parent")),c={ins:k,par:s,pos:"i"!==e||"last"!==B||0!==t||k.is_loaded(C)?t:"last"},g.css({left:p+"px",top:q+"px"}).show(),g.removeClass("jstree-above jstree-inside jstree-below").addClass(F),i.helper.find(".jstree-icon").first().removeClass("jstree-er").addClass("jstree-ok"),i.event.originalEvent&&i.event.originalEvent.dataTransfer&&(i.event.originalEvent.dataTransfer.dropEffect=D?"copy":"move"),d={},u=!0,!1):void 0}),u===!0))return}else{for(v=!0,w=0,x=i.data.nodes.length;x>w;w++)if(v=v&&k.check(i.data.origin&&(i.data.origin.settings.dnd.always_copy||i.data.origin.settings.dnd.copy&&(i.event.metaKey||i.event.ctrlKey))?"copy_node":"move_node",i.data.origin&&i.data.origin!==k?i.data.origin.get_node(i.data.nodes[w]):i.data.nodes[w],a.jstree.root,"last",{dnd:!0,ref:k.get_node(a.jstree.root),pos:"i",origin:i.data.origin,is_multi:i.data.origin&&i.data.origin!==k,is_foreign:!i.data.origin}),!v)break;if(v)return c={ins:k,par:a.jstree.root,pos:"last"},g.hide(),i.helper.find(".jstree-icon").first().removeClass("jstree-er").addClass("jstree-ok"),void(i.event.originalEvent&&i.event.originalEvent.dataTransfer&&(i.event.originalEvent.dataTransfer.dropEffect=D?"copy":"move"))}a(".jstree-dnd-parent").removeClass("jstree-dnd-parent"),c=!1,i.helper.find(".jstree-icon").removeClass("jstree-ok").addClass("jstree-er"),i.event.originalEvent&&i.event.originalEvent.dataTransfer,g.hide()}}).on("dnd_scroll.vakata.jstree",function(a,b){b&&b.data&&b.data.jstree&&(g.hide(),c=!1,e=!1,b.helper.find(".jstree-icon").first().removeClass("jstree-ok").addClass("jstree-er"))}).on("dnd_stop.vakata.jstree",function(b,h){if(a(".jstree-dnd-parent").removeClass("jstree-dnd-parent"),f&&clearTimeout(f),h&&h.data&&h.data.jstree){g.hide().detach();var i,j,k=[];if(c){for(i=0,j=h.data.nodes.length;j>i;i++)k[i]=h.data.origin?h.data.origin.get_node(h.data.nodes[i]):h.data.nodes[i];c.ins[h.data.origin&&(h.data.origin.settings.dnd.always_copy||h.data.origin.settings.dnd.copy&&(h.event.metaKey||h.event.ctrlKey))?"copy_node":"move_node"](k,c.par,c.pos,!1,!1,!1,h.data.origin)}else i=a(h.event.target).closest(".jstree"),i.length&&d&&d.error&&"check"===d.error&&(i=i.jstree(!0),i&&i.settings.core.error.call(this,d));e=!1,c=!1}}).on("keyup.jstree keydown.jstree",function(b,h){h=a.vakata.dnd._get(),h&&h.data&&h.data.jstree&&("keyup"===b.type&&27===b.which?(f&&clearTimeout(f),c=!1,d=!1,e=!1,f=!1,g.hide().detach(),a.vakata.dnd._clean()):(h.helper.find(".jstree-copy").first()[h.data.origin&&(h.data.origin.settings.dnd.always_copy||h.data.origin.settings.dnd.copy&&(b.metaKey||b.ctrlKey))?"show":"hide"](),e&&(e.metaKey=b.metaKey,e.ctrlKey=b.ctrlKey,a.vakata.dnd._trigger("move",e))))})}),function(a){a.vakata.html={div:a("<div></div>"),escape:function(b){return a.vakata.html.div.text(b).html()},strip:function(b){return a.vakata.html.div.empty().append(a.parseHTML(b)).text()}};var c={element:!1,target:!1,is_down:!1,is_drag:!1,helper:!1,helper_w:0,data:!1,init_x:0,init_y:0,scroll_l:0,scroll_t:0,scroll_e:!1,scroll_i:!1,is_touch:!1};a.vakata.dnd={settings:{scroll_speed:10,scroll_proximity:20,helper_left:5,helper_top:10,threshold:5,threshold_touch:10},_trigger:function(c,d,e){e===b&&(e=a.vakata.dnd._get()),e.event=d,a(i).triggerHandler("dnd_"+c+".vakata",e)},_get:function(){return{data:c.data,element:c.element,helper:c.helper}},_clean:function(){c.helper&&c.helper.remove(),c.scroll_i&&(clearInterval(c.scroll_i),c.scroll_i=!1),c={element:!1,target:!1,is_down:!1,is_drag:!1,helper:!1,helper_w:0,data:!1,init_x:0,init_y:0,scroll_l:0,scroll_t:0,scroll_e:!1,scroll_i:!1,is_touch:!1},n=null,a(i).off("mousemove.vakata.jstree touchmove.vakata.jstree",a.vakata.dnd.drag),a(i).off("mouseup.vakata.jstree touchend.vakata.jstree",a.vakata.dnd.stop)},_scroll:function(b){if(!c.scroll_e||!c.scroll_l&&!c.scroll_t)return c.scroll_i&&(clearInterval(c.scroll_i),c.scroll_i=!1),!1;if(!c.scroll_i)return c.scroll_i=setInterval(a.vakata.dnd._scroll,100),!1;if(b===!0)return!1;var d=c.scroll_e.scrollTop(),e=c.scroll_e.scrollLeft();c.scroll_e.scrollTop(d+c.scroll_t*a.vakata.dnd.settings.scroll_speed),c.scroll_e.scrollLeft(e+c.scroll_l*a.vakata.dnd.settings.scroll_speed),(d!==c.scroll_e.scrollTop()||e!==c.scroll_e.scrollLeft())&&a.vakata.dnd._trigger("scroll",c.scroll_e)},start:function(b,d,e){"touchstart"===b.type&&b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(b.pageX=b.originalEvent.changedTouches[0].pageX,b.pageY=b.originalEvent.changedTouches[0].pageY,b.target=i.elementFromPoint(b.originalEvent.changedTouches[0].pageX-window.pageXOffset,b.originalEvent.changedTouches[0].pageY-window.pageYOffset)),c.is_drag&&a.vakata.dnd.stop({});try{b.currentTarget.unselectable="on",b.currentTarget.onselectstart=function(){return!1},b.currentTarget.style&&(b.currentTarget.style.touchAction="none",b.currentTarget.style.msTouchAction="none",b.currentTarget.style.MozUserSelect="none")}catch(f){}return c.init_x=b.pageX,c.init_y=b.pageY,c.data=d,c.is_down=!0,c.element=b.currentTarget,c.target=b.target,c.is_touch="touchstart"===b.type,e!==!1&&(c.helper=a("<div id='vakata-dnd'></div>").html(e).css({display:"block",margin:"0",padding:"0",position:"absolute",top:"-2000px",lineHeight:"16px",zIndex:"10000"})),a(i).on("mousemove.vakata.jstree touchmove.vakata.jstree",a.vakata.dnd.drag),a(i).on("mouseup.vakata.jstree touchend.vakata.jstree",a.vakata.dnd.stop),!1},drag:function(b){if("touchmove"===b.type&&b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(b.pageX=b.originalEvent.changedTouches[0].pageX,b.pageY=b.originalEvent.changedTouches[0].pageY,b.target=i.elementFromPoint(b.originalEvent.changedTouches[0].pageX-window.pageXOffset,b.originalEvent.changedTouches[0].pageY-window.pageYOffset)),c.is_down){if(!c.is_drag){if(!(Math.abs(b.pageX-c.init_x)>(c.is_touch?a.vakata.dnd.settings.threshold_touch:a.vakata.dnd.settings.threshold)||Math.abs(b.pageY-c.init_y)>(c.is_touch?a.vakata.dnd.settings.threshold_touch:a.vakata.dnd.settings.threshold)))return;c.helper&&(c.helper.appendTo(i.body),c.helper_w=c.helper.outerWidth()),c.is_drag=!0,a(c.target).one("click.vakata",!1),a.vakata.dnd._trigger("start",b)}var d=!1,e=!1,f=!1,g=!1,h=!1,j=!1,k=!1,l=!1,m=!1,n=!1;return c.scroll_t=0,c.scroll_l=0,c.scroll_e=!1,a(a(b.target).parentsUntil("body").addBack().get().reverse()).filter(function(){return/^auto|scroll$/.test(a(this).css("overflow"))&&(this.scrollHeight>this.offsetHeight||this.scrollWidth>this.offsetWidth)}).each(function(){var d=a(this),e=d.offset();return this.scrollHeight>this.offsetHeight&&(e.top+d.height()-b.pageY<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_t=1),b.pageY-e.top<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_t=-1)),this.scrollWidth>this.offsetWidth&&(e.left+d.width()-b.pageX<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_l=1),b.pageX-e.left<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_l=-1)),c.scroll_t||c.scroll_l?(c.scroll_e=a(this),!1):void 0}),c.scroll_e||(d=a(i),e=a(window),f=d.height(),g=e.height(),h=d.width(),j=e.width(),k=d.scrollTop(),l=d.scrollLeft(),f>g&&b.pageY-k<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_t=-1),f>g&&g-(b.pageY-k)<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_t=1),h>j&&b.pageX-l<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_l=-1),h>j&&j-(b.pageX-l)<a.vakata.dnd.settings.scroll_proximity&&(c.scroll_l=1),(c.scroll_t||c.scroll_l)&&(c.scroll_e=d)),c.scroll_e&&a.vakata.dnd._scroll(!0),c.helper&&(m=parseInt(b.pageY+a.vakata.dnd.settings.helper_top,10),n=parseInt(b.pageX+a.vakata.dnd.settings.helper_left,10),f&&m+25>f&&(m=f-50),h&&n+c.helper_w>h&&(n=h-(c.helper_w+2)),c.helper.css({left:n+"px",top:m+"px"})),a.vakata.dnd._trigger("move",b),!1}},stop:function(b){if("touchend"===b.type&&b.originalEvent&&b.originalEvent.changedTouches&&b.originalEvent.changedTouches[0]&&(b.pageX=b.originalEvent.changedTouches[0].pageX,b.pageY=b.originalEvent.changedTouches[0].pageY,b.target=i.elementFromPoint(b.originalEvent.changedTouches[0].pageX-window.pageXOffset,b.originalEvent.changedTouches[0].pageY-window.pageYOffset)),c.is_drag)b.target!==c.target&&a(c.target).off("click.vakata"),a.vakata.dnd._trigger("stop",b);else if("touchend"===b.type&&b.target===c.target){var d=setTimeout(function(){a(b.target).trigger("click")},100);a(b.target).one("click",function(){d&&clearTimeout(d)})}return a.vakata.dnd._clean(),!1}}}(a),a.jstree.defaults.massload=null,a.jstree.plugins.massload=function(b,c){this.init=function(a,b){this._data.massload={},c.init.call(this,a,b)},this._load_nodes=function(b,d,e,f){var g=this.settings.massload,h=[],i=this._model.data,j,k,l;if(!e){for(j=0,k=b.length;k>j;j++)(!i[b[j]]||!i[b[j]].state.loaded&&!i[b[j]].state.failed||f)&&(h.push(b[j]),l=this.get_node(b[j],!0),l&&l.length&&l.addClass("jstree-loading").attr("aria-busy",!0));if(this._data.massload={},h.length){if(a.vakata.is_function(g))return g.call(this,h,function(a){var g,h;if(a)for(g in a)a.hasOwnProperty(g)&&(this._data.massload[g]=a[g]);for(g=0,h=b.length;h>g;g++)l=this.get_node(b[g],!0),l&&l.length&&l.removeClass("jstree-loading").attr("aria-busy",!1);c._load_nodes.call(this,b,d,e,f)}.bind(this));if("object"==typeof g&&g&&g.url)return g=a.extend(!0,{},g),a.vakata.is_function(g.url)&&(g.url=g.url.call(this,h)),a.vakata.is_function(g.data)&&(g.data=g.data.call(this,h)),a.ajax(g).done(function(a,g,h){var i,j;if(a)for(i in a)a.hasOwnProperty(i)&&(this._data.massload[i]=a[i]);for(i=0,j=b.length;j>i;i++)l=this.get_node(b[i],!0),l&&l.length&&l.removeClass("jstree-loading").attr("aria-busy",!1);c._load_nodes.call(this,b,d,e,f)}.bind(this)).fail(function(a){c._load_nodes.call(this,b,d,e,f)}.bind(this))}}return c._load_nodes.call(this,b,d,e,f)},this._load_node=function(b,d){var e=this._data.massload[b.id],f=null,g;return e?(f=this["string"==typeof e?"_append_html_data":"_append_json_data"](b,"string"==typeof e?a(a.parseHTML(e)).filter(function(){return 3!==this.nodeType}):e,function(a){d.call(this,a)}),g=this.get_node(b.id,!0),g&&g.length&&g.removeClass("jstree-loading").attr("aria-busy",!1),delete this._data.massload[b.id],f):c._load_node.call(this,b,d)}},a.jstree.defaults.search={ajax:!1,fuzzy:!1,case_sensitive:!1,show_only_matches:!1,show_only_matches_children:!1,close_opened_onclear:!0,search_leaves_only:!1,search_callback:!1},a.jstree.plugins.search=function(c,d){this.bind=function(){d.bind.call(this),this._data.search.str="",this._data.search.dom=a(),this._data.search.res=[],this._data.search.opn=[],this._data.search.som=!1,this._data.search.smc=!1,this._data.search.hdn=[],this.element.on("search.jstree",function(b,c){if(this._data.search.som&&c.res.length){var d=this._model.data,e,f,g=[],h,i;for(e=0,f=c.res.length;f>e;e++)if(d[c.res[e]]&&!d[c.res[e]].state.hidden&&(g.push(c.res[e]),g=g.concat(d[c.res[e]].parents),this._data.search.smc))for(h=0,i=d[c.res[e]].children_d.length;i>h;h++)d[d[c.res[e]].children_d[h]]&&!d[d[c.res[e]].children_d[h]].state.hidden&&g.push(d[c.res[e]].children_d[h]);g=a.vakata.array_remove_item(a.vakata.array_unique(g),a.jstree.root),this._data.search.hdn=this.hide_all(!0),this.show_node(g,!0),this.redraw(!0)}}.bind(this)).on("clear_search.jstree",function(a,b){this._data.search.som&&b.res.length&&(this.show_node(this._data.search.hdn,!0),this.redraw(!0))}.bind(this))},this.search=function(c,d,e,f,g,h){if(c===!1||""===a.vakata.trim(c.toString()))return this.clear_search();f=this.get_node(f),f=f&&f.id?f.id:null,c=c.toString();var i=this.settings.search,j=i.ajax?i.ajax:!1,k=this._model.data,l=null,m=[],n=[],o,p;if(this._data.search.res.length&&!g&&this.clear_search(),e===b&&(e=i.show_only_matches),h===b&&(h=i.show_only_matches_children),!d&&j!==!1)return a.vakata.is_function(j)?j.call(this,c,function(b){b&&b.d&&(b=b.d),this._load_nodes(a.vakata.is_array(b)?a.vakata.array_unique(b):[],function(){this.search(c,!0,e,f,g,h)})}.bind(this),f):(j=a.extend({},j),j.data||(j.data={}),j.data.str=c,f&&(j.data.inside=f),this._data.search.lastRequest&&this._data.search.lastRequest.abort(),this._data.search.lastRequest=a.ajax(j).fail(function(){this._data.core.last_error={error:"ajax",plugin:"search",id:"search_01",reason:"Could not load search parents",data:JSON.stringify(j)},this.settings.core.error.call(this,this._data.core.last_error)}.bind(this)).done(function(b){b&&b.d&&(b=b.d),this._load_nodes(a.vakata.is_array(b)?a.vakata.array_unique(b):[],function(){this.search(c,!0,e,f,g,h)})}.bind(this)),this._data.search.lastRequest);if(g||(this._data.search.str=c,this._data.search.dom=a(),this._data.search.res=[],this._data.search.opn=[],this._data.search.som=e,this._data.search.smc=h),l=new a.vakata.search(c,!0,{caseSensitive:i.case_sensitive,fuzzy:i.fuzzy}),a.each(k[f?f:a.jstree.root].children_d,function(a,b){var d=k[b];d.text&&!d.state.hidden&&(!i.search_leaves_only||d.state.loaded&&0===d.children.length)&&(i.search_callback&&i.search_callback.call(this,c,d)||!i.search_callback&&l.search(d.text).isMatch)&&(m.push(b),n=n.concat(d.parents))}),m.length){for(n=a.vakata.array_unique(n),o=0,p=n.length;p>o;o++)n[o]!==a.jstree.root&&k[n[o]]&&this.open_node(n[o],null,0)===!0&&this._data.search.opn.push(n[o]);g?(this._data.search.dom=this._data.search.dom.add(a(this.element[0].querySelectorAll("#"+a.map(m,function(b){return-1!=="0123456789".indexOf(b[0])?"\\3"+b[0]+" "+b.substr(1).replace(a.jstree.idregex,"\\$&"):b.replace(a.jstree.idregex,"\\$&")}).join(", #")))),this._data.search.res=a.vakata.array_unique(this._data.search.res.concat(m))):(this._data.search.dom=a(this.element[0].querySelectorAll("#"+a.map(m,function(b){return-1!=="0123456789".indexOf(b[0])?"\\3"+b[0]+" "+b.substr(1).replace(a.jstree.idregex,"\\$&"):b.replace(a.jstree.idregex,"\\$&")}).join(", #"))),this._data.search.res=m),this._data.search.dom.children(".jstree-anchor").addClass("jstree-search")}this.trigger("search",{nodes:this._data.search.dom,str:c,res:this._data.search.res,show_only_matches:e})},this.clear_search=function(){this.settings.search.close_opened_onclear&&this.close_node(this._data.search.opn,0),this.trigger("clear_search",{nodes:this._data.search.dom,str:this._data.search.str,res:this._data.search.res}),this._data.search.res.length&&(this._data.search.dom=a(this.element[0].querySelectorAll("#"+a.map(this._data.search.res,function(b){return-1!=="0123456789".indexOf(b[0])?"\\3"+b[0]+" "+b.substr(1).replace(a.jstree.idregex,"\\$&"):b.replace(a.jstree.idregex,"\\$&")}).join(", #"))),this._data.search.dom.children(".jstree-anchor").removeClass("jstree-search")),this._data.search.str="",this._data.search.res=[],this._data.search.opn=[],this._data.search.dom=a()},this.redraw_node=function(b,c,e,f){if(b=d.redraw_node.apply(this,arguments),b&&-1!==a.inArray(b.id,this._data.search.res)){var g,h,i=null;for(g=0,h=b.childNodes.length;h>g;g++)if(b.childNodes[g]&&b.childNodes[g].className&&-1!==b.childNodes[g].className.indexOf("jstree-anchor")){i=b.childNodes[g];break}i&&(i.className+=" jstree-search")}return b}},function(a){a.vakata.search=function(b,c,d){d=d||{},d=a.extend({},a.vakata.search.defaults,d),d.fuzzy!==!1&&(d.fuzzy=!0),b=d.caseSensitive?b:b.toLowerCase();var e=d.location,f=d.distance,g=d.threshold,h=b.length,i,j,k,l;return h>32&&(d.fuzzy=!1),d.fuzzy&&(i=1<<h-1,j=function(){var a={},c=0;for(c=0;h>c;c++)a[b.charAt(c)]=0;for(c=0;h>c;c++)a[b.charAt(c)]|=1<<h-c-1;return a}(),k=function(a,b){var c=a/h,d=Math.abs(e-b);return f?c+d/f:d?1:c}),l=function(a){if(a=d.caseSensitive?a:a.toLowerCase(),b===a||-1!==a.indexOf(b))return{isMatch:!0,score:0};if(!d.fuzzy)return{isMatch:!1,score:1};var c,f,l=a.length,m=g,n=a.indexOf(b,e),o,p,q=h+l,r,s,t,u,v,w=1,x=[];for(-1!==n&&(m=Math.min(k(0,n),m),n=a.lastIndexOf(b,e+h),-1!==n&&(m=Math.min(k(0,n),m))),n=-1,c=0;h>c;c++){o=0,p=q;while(p>o)k(c,e+p)<=m?o=p:q=p,p=Math.floor((q-o)/2+o);for(q=p,s=Math.max(1,e-p+1),t=Math.min(e+p,l)+h,u=new Array(t+2),u[t+1]=(1<<c)-1,f=t;f>=s;f--)if(v=j[a.charAt(f-1)],0===c?u[f]=(u[f+1]<<1|1)&v:u[f]=(u[f+1]<<1|1)&v|((r[f+1]|r[f])<<1|1)|r[f+1],u[f]&i&&(w=k(c,f-1),m>=w)){if(m=w,n=f-1,x.push(n),!(n>e))break;s=Math.max(1,2*e-n)}if(k(c+1,e)>m)break;r=u}return{isMatch:n>=0,score:w}},c===!0?{search:l}:l(c)},a.vakata.search.defaults={location:0,distance:100,threshold:.6,fuzzy:!1,caseSensitive:!1}}(a),a.jstree.defaults.sort=function(a,b){return this.get_text(a)>this.get_text(b)?1:-1},a.jstree.plugins.sort=function(a,b){this.bind=function(){b.bind.call(this),this.element.on("model.jstree",function(a,b){this.sort(b.parent,!0)}.bind(this)).on("rename_node.jstree create_node.jstree",function(a,b){this.sort(b.parent||b.node.parent,!1),this.redraw_node(b.parent||b.node.parent,!0)}.bind(this)).on("move_node.jstree copy_node.jstree",function(a,b){this.sort(b.parent,!1),this.redraw_node(b.parent,!0)}.bind(this))},this.sort=function(a,b){var c,d;if(a=this.get_node(a),a&&a.children&&a.children.length&&(a.children.sort(this.settings.sort.bind(this)),b))for(c=0,d=a.children_d.length;d>c;c++)this.sort(a.children_d[c],!1)}};var o=!1;a.jstree.defaults.state={key:"jstree",events:"changed.jstree open_node.jstree close_node.jstree check_node.jstree uncheck_node.jstree",ttl:!1,filter:!1,preserve_loaded:!1},a.jstree.plugins.state=function(b,c){this.bind=function(){c.bind.call(this);var a=function(){this.element.on(this.settings.state.events,function(){o&&clearTimeout(o),o=setTimeout(function(){this.save_state()}.bind(this),100)}.bind(this)),this.trigger("state_ready")}.bind(this);this.element.on("ready.jstree",function(b,c){this.element.one("restore_state.jstree",a),this.restore_state()||a()}.bind(this))},this.save_state=function(){var b=this.get_state();this.settings.state.preserve_loaded||delete b.core.loaded;var c={state:b,ttl:this.settings.state.ttl,sec:+new Date};a.vakata.storage.set(this.settings.state.key,JSON.stringify(c))},this.restore_state=function(){var b=a.vakata.storage.get(this.settings.state.key);if(b)try{b=JSON.parse(b)}catch(c){return!1}return b&&b.ttl&&b.sec&&+new Date-b.sec>b.ttl?!1:(b&&b.state&&(b=b.state),b&&a.vakata.is_function(this.settings.state.filter)&&(b=this.settings.state.filter.call(this,b)),b?(this.settings.state.preserve_loaded||delete b.core.loaded,this.element.one("set_state.jstree",function(c,d){d.instance.trigger("restore_state",{state:a.extend(!0,{},b)})}),this.set_state(b),!0):!1)},this.clear_state=function(){return a.vakata.storage.del(this.settings.state.key)}},function(a,b){a.vakata.storage={set:function(a,b){return window.localStorage.setItem(a,b)},get:function(a){return window.localStorage.getItem(a)},del:function(a){return window.localStorage.removeItem(a)}}}(a),a.jstree.defaults.types={
6
"default":{}},a.jstree.defaults.types[a.jstree.root]={},a.jstree.plugins.types=function(c,d){this.init=function(c,e){var f,g;if(e&&e.types&&e.types["default"])for(f in e.types)if("default"!==f&&f!==a.jstree.root&&e.types.hasOwnProperty(f))for(g in e.types["default"])e.types["default"].hasOwnProperty(g)&&e.types[f][g]===b&&(e.types[f][g]=e.types["default"][g]);d.init.call(this,c,e),this._model.data[a.jstree.root].type=a.jstree.root},this.refresh=function(b,c){d.refresh.call(this,b,c),this._model.data[a.jstree.root].type=a.jstree.root},this.bind=function(){this.element.on("model.jstree",function(c,d){var e=this._model.data,f=d.nodes,g=this.settings.types,h,i,j="default",k;for(h=0,i=f.length;i>h;h++){if(j="default",e[f[h]].original&&e[f[h]].original.type&&g[e[f[h]].original.type]&&(j=e[f[h]].original.type),e[f[h]].data&&e[f[h]].data.jstree&&e[f[h]].data.jstree.type&&g[e[f[h]].data.jstree.type]&&(j=e[f[h]].data.jstree.type),e[f[h]].type=j,e[f[h]].icon===!0&&g[j].icon!==b&&(e[f[h]].icon=g[j].icon),g[j].li_attr!==b&&"object"==typeof g[j].li_attr)for(k in g[j].li_attr)if(g[j].li_attr.hasOwnProperty(k)){if("id"===k)continue;e[f[h]].li_attr[k]===b?e[f[h]].li_attr[k]=g[j].li_attr[k]:"class"===k&&(e[f[h]].li_attr["class"]=g[j].li_attr["class"]+" "+e[f[h]].li_attr["class"])}if(g[j].a_attr!==b&&"object"==typeof g[j].a_attr)for(k in g[j].a_attr)if(g[j].a_attr.hasOwnProperty(k)){if("id"===k)continue;e[f[h]].a_attr[k]===b?e[f[h]].a_attr[k]=g[j].a_attr[k]:"href"===k&&"#"===e[f[h]].a_attr[k]?e[f[h]].a_attr.href=g[j].a_attr.href:"class"===k&&(e[f[h]].a_attr["class"]=g[j].a_attr["class"]+" "+e[f[h]].a_attr["class"])}}e[a.jstree.root].type=a.jstree.root}.bind(this)),d.bind.call(this)},this.get_json=function(b,c,e){var f,g,h=this._model.data,i=c?a.extend(!0,{},c,{no_id:!1}):{},j=d.get_json.call(this,b,i,e);if(j===!1)return!1;if(a.vakata.is_array(j))for(f=0,g=j.length;g>f;f++)j[f].type=j[f].id&&h[j[f].id]&&h[j[f].id].type?h[j[f].id].type:"default",c&&c.no_id&&(delete j[f].id,j[f].li_attr&&j[f].li_attr.id&&delete j[f].li_attr.id,j[f].a_attr&&j[f].a_attr.id&&delete j[f].a_attr.id);else j.type=j.id&&h[j.id]&&h[j.id].type?h[j.id].type:"default",c&&c.no_id&&(j=this._delete_ids(j));return j},this._delete_ids=function(b){if(a.vakata.is_array(b)){for(var c=0,d=b.length;d>c;c++)b[c]=this._delete_ids(b[c]);return b}return delete b.id,b.li_attr&&b.li_attr.id&&delete b.li_attr.id,b.a_attr&&b.a_attr.id&&delete b.a_attr.id,b.children&&a.vakata.is_array(b.children)&&(b.children=this._delete_ids(b.children)),b},this.check=function(c,e,f,g,h){if(d.check.call(this,c,e,f,g,h)===!1)return!1;e=e&&e.id?e:this.get_node(e),f=f&&f.id?f:this.get_node(f);var i=e&&e.id?h&&h.origin?h.origin:a.jstree.reference(e.id):null,j,k,l,m;switch(i=i&&i._model&&i._model.data?i._model.data:null,c){case"create_node":case"move_node":case"copy_node":if("move_node"!==c||-1===a.inArray(e.id,f.children)){if(j=this.get_rules(f),j.max_children!==b&&-1!==j.max_children&&j.max_children===f.children.length)return this._data.core.last_error={error:"check",plugin:"types",id:"types_01",reason:"max_children prevents function: "+c,data:JSON.stringify({chk:c,pos:g,obj:e&&e.id?e.id:!1,par:f&&f.id?f.id:!1})},!1;if(j.valid_children!==b&&-1!==j.valid_children&&-1===a.inArray(e.type||"default",j.valid_children))return this._data.core.last_error={error:"check",plugin:"types",id:"types_02",reason:"valid_children prevents function: "+c,data:JSON.stringify({chk:c,pos:g,obj:e&&e.id?e.id:!1,par:f&&f.id?f.id:!1})},!1;if(i&&e.children_d&&e.parents){for(k=0,l=0,m=e.children_d.length;m>l;l++)k=Math.max(k,i[e.children_d[l]].parents.length);k=k-e.parents.length+1}(0>=k||k===b)&&(k=1);do{if(j.max_depth!==b&&-1!==j.max_depth&&j.max_depth<k)return this._data.core.last_error={error:"check",plugin:"types",id:"types_03",reason:"max_depth prevents function: "+c,data:JSON.stringify({chk:c,pos:g,obj:e&&e.id?e.id:!1,par:f&&f.id?f.id:!1})},!1;f=this.get_node(f.parent),j=this.get_rules(f),k++}while(f)}}return!0},this.get_rules=function(a){if(a=this.get_node(a),!a)return!1;var c=this.get_type(a,!0);return c.max_depth===b&&(c.max_depth=-1),c.max_children===b&&(c.max_children=-1),c.valid_children===b&&(c.valid_children=-1),c},this.get_type=function(b,c){return b=this.get_node(b),b?c?a.extend({type:b.type},this.settings.types[b.type]):b.type:!1},this.set_type=function(c,d){var e=this._model.data,f,g,h,i,j,k,l,m;if(a.vakata.is_array(c)){for(c=c.slice(),g=0,h=c.length;h>g;g++)this.set_type(c[g],d);return!0}if(f=this.settings.types,c=this.get_node(c),!f[d]||!c)return!1;if(l=this.get_node(c,!0),l&&l.length&&(m=l.children(".jstree-anchor")),i=c.type,j=this.get_icon(c),c.type=d,(j===!0||!f[i]||f[i].icon!==b&&j===f[i].icon)&&this.set_icon(c,f[d].icon!==b?f[d].icon:!0),f[i]&&f[i].li_attr!==b&&"object"==typeof f[i].li_attr)for(k in f[i].li_attr)if(f[i].li_attr.hasOwnProperty(k)){if("id"===k)continue;"class"===k?(e[c.id].li_attr["class"]=(e[c.id].li_attr["class"]||"").replace(f[i].li_attr[k],""),l&&l.removeClass(f[i].li_attr[k])):e[c.id].li_attr[k]===f[i].li_attr[k]&&(e[c.id].li_attr[k]=null,l&&l.removeAttr(k))}if(f[i]&&f[i].a_attr!==b&&"object"==typeof f[i].a_attr)for(k in f[i].a_attr)if(f[i].a_attr.hasOwnProperty(k)){if("id"===k)continue;"class"===k?(e[c.id].a_attr["class"]=(e[c.id].a_attr["class"]||"").replace(f[i].a_attr[k],""),m&&m.removeClass(f[i].a_attr[k])):e[c.id].a_attr[k]===f[i].a_attr[k]&&("href"===k?(e[c.id].a_attr[k]="#",m&&m.attr("href","#")):(delete e[c.id].a_attr[k],m&&m.removeAttr(k)))}if(f[d].li_attr!==b&&"object"==typeof f[d].li_attr)for(k in f[d].li_attr)if(f[d].li_attr.hasOwnProperty(k)){if("id"===k)continue;e[c.id].li_attr[k]===b?(e[c.id].li_attr[k]=f[d].li_attr[k],l&&("class"===k?l.addClass(f[d].li_attr[k]):l.attr(k,f[d].li_attr[k]))):"class"===k&&(e[c.id].li_attr["class"]=f[d].li_attr[k]+" "+e[c.id].li_attr["class"],l&&l.addClass(f[d].li_attr[k]))}if(f[d].a_attr!==b&&"object"==typeof f[d].a_attr)for(k in f[d].a_attr)if(f[d].a_attr.hasOwnProperty(k)){if("id"===k)continue;e[c.id].a_attr[k]===b?(e[c.id].a_attr[k]=f[d].a_attr[k],m&&("class"===k?m.addClass(f[d].a_attr[k]):m.attr(k,f[d].a_attr[k]))):"href"===k&&"#"===e[c.id].a_attr[k]?(e[c.id].a_attr.href=f[d].a_attr.href,m&&m.attr("href",f[d].a_attr.href)):"class"===k&&(e[c.id].a_attr["class"]=f[d].a_attr["class"]+" "+e[c.id].a_attr["class"],m&&m.addClass(f[d].a_attr[k]))}return!0}},a.jstree.defaults.unique={case_sensitive:!1,trim_whitespace:!1,duplicate:function(a,b){return a+" ("+b+")"}},a.jstree.plugins.unique=function(c,d){this.check=function(b,c,e,f,g){if(d.check.call(this,b,c,e,f,g)===!1)return!1;if(c=c&&c.id?c:this.get_node(c),e=e&&e.id?e:this.get_node(e),!e||!e.children)return!0;var h="rename_node"===b?f:c.text,i=[],j=this.settings.unique.case_sensitive,k=this.settings.unique.trim_whitespace,l=this._model.data,m,n,o;for(m=0,n=e.children.length;n>m;m++)o=l[e.children[m]].text,j||(o=o.toLowerCase()),k&&(o=o.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")),i.push(o);switch(j||(h=h.toLowerCase()),k&&(h=h.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")),b){case"delete_node":return!0;case"rename_node":return o=c.text||"",j||(o=o.toLowerCase()),k&&(o=o.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")),m=-1===a.inArray(h,i)||c.text&&o===h,m||(this._data.core.last_error={error:"check",plugin:"unique",id:"unique_01",reason:"Child with name "+h+" already exists. Preventing: "+b,data:JSON.stringify({chk:b,pos:f,obj:c&&c.id?c.id:!1,par:e&&e.id?e.id:!1})}),m;case"create_node":return m=-1===a.inArray(h,i),m||(this._data.core.last_error={error:"check",plugin:"unique",id:"unique_04",reason:"Child with name "+h+" already exists. Preventing: "+b,data:JSON.stringify({chk:b,pos:f,obj:c&&c.id?c.id:!1,par:e&&e.id?e.id:!1})}),m;case"copy_node":return m=-1===a.inArray(h,i),m||(this._data.core.last_error={error:"check",plugin:"unique",id:"unique_02",reason:"Child with name "+h+" already exists. Preventing: "+b,data:JSON.stringify({chk:b,pos:f,obj:c&&c.id?c.id:!1,par:e&&e.id?e.id:!1})}),m;case"move_node":return m=c.parent===e.id&&(!g||!g.is_multi)||-1===a.inArray(h,i),m||(this._data.core.last_error={error:"check",plugin:"unique",id:"unique_03",reason:"Child with name "+h+" already exists. Preventing: "+b,data:JSON.stringify({chk:b,pos:f,obj:c&&c.id?c.id:!1,par:e&&e.id?e.id:!1})}),m}return!0},this.create_node=function(c,e,f,g,h){if(!e||e.text===b){if(null===c&&(c=a.jstree.root),c=this.get_node(c),!c)return d.create_node.call(this,c,e,f,g,h);if(f=f===b?"last":f,!f.toString().match(/^(before|after)$/)&&!h&&!this.is_loaded(c))return d.create_node.call(this,c,e,f,g,h);e||(e={});var i,j,k,l,m,n=this._model.data,o=this.settings.unique.case_sensitive,p=this.settings.unique.trim_whitespace,q=this.settings.unique.duplicate,r;for(j=i=this.get_string("New node"),k=[],l=0,m=c.children.length;m>l;l++)r=n[c.children[l]].text,o||(r=r.toLowerCase()),p&&(r=r.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")),k.push(r);l=1,r=j,o||(r=r.toLowerCase()),p&&(r=r.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""));while(-1!==a.inArray(r,k))j=q.call(this,i,++l).toString(),r=j,o||(r=r.toLowerCase()),p&&(r=r.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""));e.text=j}return d.create_node.call(this,c,e,f,g,h)}};var p=i.createElement("DIV");if(p.setAttribute("unselectable","on"),p.setAttribute("role","presentation"),p.className="jstree-wholerow",p.innerHTML="&#160;",a.jstree.plugins.wholerow=function(b,c){this.bind=function(){c.bind.call(this),this.element.on("ready.jstree set_state.jstree",function(){this.hide_dots()}.bind(this)).on("init.jstree loading.jstree ready.jstree",function(){this.get_container_ul().addClass("jstree-wholerow-ul")}.bind(this)).on("deselect_all.jstree",function(a,b){this.element.find(".jstree-wholerow-clicked").removeClass("jstree-wholerow-clicked")}.bind(this)).on("changed.jstree",function(a,b){this.element.find(".jstree-wholerow-clicked").removeClass("jstree-wholerow-clicked");var c=!1,d,e;for(d=0,e=b.selected.length;e>d;d++)c=this.get_node(b.selected[d],!0),c&&c.length&&c.children(".jstree-wholerow").addClass("jstree-wholerow-clicked")}.bind(this)).on("open_node.jstree",function(a,b){this.get_node(b.node,!0).find(".jstree-clicked").parent().children(".jstree-wholerow").addClass("jstree-wholerow-clicked")}.bind(this)).on("hover_node.jstree dehover_node.jstree",function(a,b){"hover_node"===a.type&&this.is_disabled(b.node)||this.get_node(b.node,!0).children(".jstree-wholerow")["hover_node"===a.type?"addClass":"removeClass"]("jstree-wholerow-hovered")}.bind(this)).on("contextmenu.jstree",".jstree-wholerow",function(b){if(this._data.contextmenu){b.preventDefault();var c=a.Event("contextmenu",{metaKey:b.metaKey,ctrlKey:b.ctrlKey,altKey:b.altKey,shiftKey:b.shiftKey,pageX:b.pageX,pageY:b.pageY});a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").first().trigger(c)}}.bind(this)).on("click.jstree",".jstree-wholerow",function(b){b.stopImmediatePropagation();var c=a.Event("click",{metaKey:b.metaKey,ctrlKey:b.ctrlKey,altKey:b.altKey,shiftKey:b.shiftKey});a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").first().trigger(c).trigger("focus")}).on("dblclick.jstree",".jstree-wholerow",function(b){b.stopImmediatePropagation();var c=a.Event("dblclick",{metaKey:b.metaKey,ctrlKey:b.ctrlKey,altKey:b.altKey,shiftKey:b.shiftKey});a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").first().trigger(c).trigger("focus")}).on("click.jstree",".jstree-leaf > .jstree-ocl",function(b){b.stopImmediatePropagation();var c=a.Event("click",{metaKey:b.metaKey,ctrlKey:b.ctrlKey,altKey:b.altKey,shiftKey:b.shiftKey});a(b.currentTarget).closest(".jstree-node").children(".jstree-anchor").first().trigger(c).trigger("focus")}.bind(this)).on("mouseover.jstree",".jstree-wholerow, .jstree-icon",function(a){return a.stopImmediatePropagation(),this.is_disabled(a.currentTarget)||this.hover_node(a.currentTarget),!1}.bind(this)).on("mouseleave.jstree",".jstree-node",function(a){this.dehover_node(a.currentTarget)}.bind(this))},this.teardown=function(){this.settings.wholerow&&this.element.find(".jstree-wholerow").remove(),c.teardown.call(this)},this.redraw_node=function(b,d,e,f){if(b=c.redraw_node.apply(this,arguments)){var g=p.cloneNode(!0);-1!==a.inArray(b.id,this._data.core.selected)&&(g.className+=" jstree-wholerow-clicked"),this._data.core.focused&&this._data.core.focused===b.id&&(g.className+=" jstree-wholerow-hovered"),b.insertBefore(g,b.childNodes[0])}return b}},window.customElements&&Object&&Object.create){var q=Object.create(HTMLElement.prototype);q.createdCallback=function(){var b={core:{},plugins:[]},c;for(c in a.jstree.plugins)a.jstree.plugins.hasOwnProperty(c)&&this.attributes[c]&&(b.plugins.push(c),this.getAttribute(c)&&JSON.parse(this.getAttribute(c))&&(b[c]=JSON.parse(this.getAttribute(c))));for(c in a.jstree.defaults.core)a.jstree.defaults.core.hasOwnProperty(c)&&this.attributes[c]&&(b.core[c]=JSON.parse(this.getAttribute(c))||this.getAttribute(c));a(this).jstree(b)};try{window.customElements.define("vakata-jstree",function(){},{prototype:q})}catch(r){}}}});
(-)a/koha-tmpl/opac-tmpl/lib/jquery/plugins/jstree/themes/default/style.css (+1106 lines)
Line 0 Link Here
1
/* jsTree default theme */
2
.jstree-node,
3
.jstree-children,
4
.jstree-container-ul {
5
  display: block;
6
  margin: 0;
7
  padding: 0;
8
  list-style-type: none;
9
  list-style-image: none;
10
}
11
.jstree-node {
12
  white-space: nowrap;
13
}
14
.jstree-anchor {
15
  display: inline-block;
16
  color: black;
17
  white-space: nowrap;
18
  padding: 0 4px 0 1px;
19
  margin: 0;
20
  vertical-align: top;
21
}
22
.jstree-anchor:focus {
23
  outline: 0;
24
}
25
.jstree-anchor,
26
.jstree-anchor:link,
27
.jstree-anchor:visited,
28
.jstree-anchor:hover,
29
.jstree-anchor:active {
30
  text-decoration: none;
31
  color: inherit;
32
}
33
.jstree-icon {
34
  display: inline-block;
35
  text-decoration: none;
36
  margin: 0;
37
  padding: 0;
38
  vertical-align: top;
39
  text-align: center;
40
}
41
.jstree-icon:empty {
42
  display: inline-block;
43
  text-decoration: none;
44
  margin: 0;
45
  padding: 0;
46
  vertical-align: top;
47
  text-align: center;
48
}
49
.jstree-ocl {
50
  cursor: pointer;
51
}
52
.jstree-leaf > .jstree-ocl {
53
  cursor: default;
54
}
55
.jstree .jstree-open > .jstree-children {
56
  display: block;
57
}
58
.jstree .jstree-closed > .jstree-children,
59
.jstree .jstree-leaf > .jstree-children {
60
  display: none;
61
}
62
.jstree-anchor > .jstree-themeicon {
63
  margin-right: 2px;
64
}
65
.jstree-no-icons .jstree-themeicon,
66
.jstree-anchor > .jstree-themeicon-hidden {
67
  display: none;
68
}
69
.jstree-hidden,
70
.jstree-node.jstree-hidden {
71
  display: none;
72
}
73
.jstree-rtl .jstree-anchor {
74
  padding: 0 1px 0 4px;
75
}
76
.jstree-rtl .jstree-anchor > .jstree-themeicon {
77
  margin-left: 2px;
78
  margin-right: 0;
79
}
80
.jstree-rtl .jstree-node {
81
  margin-left: 0;
82
}
83
.jstree-rtl .jstree-container-ul > .jstree-node {
84
  margin-right: 0;
85
}
86
.jstree-wholerow-ul {
87
  position: relative;
88
  display: inline-block;
89
  min-width: 100%;
90
}
91
.jstree-wholerow-ul .jstree-leaf > .jstree-ocl {
92
  cursor: pointer;
93
}
94
.jstree-wholerow-ul .jstree-anchor,
95
.jstree-wholerow-ul .jstree-icon {
96
  position: relative;
97
}
98
.jstree-wholerow-ul .jstree-wholerow {
99
  width: 100%;
100
  cursor: pointer;
101
  position: absolute;
102
  left: 0;
103
  -webkit-user-select: none;
104
  -moz-user-select: none;
105
  -ms-user-select: none;
106
  user-select: none;
107
}
108
.jstree-contextmenu .jstree-anchor {
109
  -webkit-user-select: none;
110
  /* disable selection/Copy of UIWebView */
111
  -webkit-touch-callout: none;
112
  /* disable the IOS popup when long-press on a link */
113
  user-select: none;
114
}
115
.vakata-context {
116
  display: none;
117
}
118
.vakata-context,
119
.vakata-context ul {
120
  margin: 0;
121
  padding: 2px;
122
  position: absolute;
123
  background: #f5f5f5;
124
  border: 1px solid #979797;
125
  box-shadow: 2px 2px 2px #999999;
126
}
127
.vakata-context ul {
128
  list-style: none;
129
  left: 100%;
130
  margin-top: -2.7em;
131
  margin-left: -4px;
132
}
133
.vakata-context .vakata-context-right ul {
134
  left: auto;
135
  right: 100%;
136
  margin-left: auto;
137
  margin-right: -4px;
138
}
139
.vakata-context li {
140
  list-style: none;
141
}
142
.vakata-context li > a {
143
  display: block;
144
  padding: 0 2em 0 2em;
145
  text-decoration: none;
146
  width: auto;
147
  color: black;
148
  white-space: nowrap;
149
  line-height: 2.4em;
150
  text-shadow: 1px 1px 0 white;
151
  border-radius: 1px;
152
}
153
.vakata-context li > a:hover {
154
  position: relative;
155
  background-color: #e8eff7;
156
  box-shadow: 0 0 2px #0a6aa1;
157
}
158
.vakata-context li > a.vakata-context-parent {
159
  background-image: url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAIORI4JlrqN1oMSnmmZDQUAOw==");
160
  background-position: right center;
161
  background-repeat: no-repeat;
162
}
163
.vakata-context li > a:focus {
164
  outline: 0;
165
}
166
.vakata-context .vakata-context-no-icons {
167
  margin-left: 0;
168
}
169
.vakata-context .vakata-context-hover > a {
170
  position: relative;
171
  background-color: #e8eff7;
172
  box-shadow: 0 0 2px #0a6aa1;
173
}
174
.vakata-context .vakata-context-separator > a,
175
.vakata-context .vakata-context-separator > a:hover {
176
  background: white;
177
  border: 0;
178
  border-top: 1px solid #e2e3e3;
179
  height: 1px;
180
  min-height: 1px;
181
  max-height: 1px;
182
  padding: 0;
183
  margin: 0 0 0 2.4em;
184
  border-left: 1px solid #e0e0e0;
185
  text-shadow: 0 0 0 transparent;
186
  box-shadow: 0 0 0 transparent;
187
  border-radius: 0;
188
}
189
.vakata-context .vakata-contextmenu-disabled a,
190
.vakata-context .vakata-contextmenu-disabled a:hover {
191
  color: silver;
192
  background-color: transparent;
193
  border: 0;
194
  box-shadow: 0 0 0;
195
}
196
.vakata-context .vakata-contextmenu-disabled > a > i {
197
  filter: grayscale(100%);
198
}
199
.vakata-context li > a > i {
200
  text-decoration: none;
201
  display: inline-block;
202
  width: 2.4em;
203
  height: 2.4em;
204
  background: transparent;
205
  margin: 0 0 0 -2em;
206
  vertical-align: top;
207
  text-align: center;
208
  line-height: 2.4em;
209
}
210
.vakata-context li > a > i:empty {
211
  width: 2.4em;
212
  line-height: 2.4em;
213
}
214
.vakata-context li > a .vakata-contextmenu-sep {
215
  display: inline-block;
216
  width: 1px;
217
  height: 2.4em;
218
  background: white;
219
  margin: 0 0.5em 0 0;
220
  border-left: 1px solid #e2e3e3;
221
}
222
.vakata-context .vakata-contextmenu-shortcut {
223
  font-size: 0.8em;
224
  color: silver;
225
  opacity: 0.5;
226
  display: none;
227
}
228
.vakata-context-rtl ul {
229
  left: auto;
230
  right: 100%;
231
  margin-left: auto;
232
  margin-right: -4px;
233
}
234
.vakata-context-rtl li > a.vakata-context-parent {
235
  background-image: url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAINjI+AC7rWHIsPtmoxLAA7");
236
  background-position: left center;
237
  background-repeat: no-repeat;
238
}
239
.vakata-context-rtl .vakata-context-separator > a {
240
  margin: 0 2.4em 0 0;
241
  border-left: 0;
242
  border-right: 1px solid #e2e3e3;
243
}
244
.vakata-context-rtl .vakata-context-left ul {
245
  right: auto;
246
  left: 100%;
247
  margin-left: -4px;
248
  margin-right: auto;
249
}
250
.vakata-context-rtl li > a > i {
251
  margin: 0 -2em 0 0;
252
}
253
.vakata-context-rtl li > a .vakata-contextmenu-sep {
254
  margin: 0 0 0 0.5em;
255
  border-left-color: white;
256
  background: #e2e3e3;
257
}
258
#jstree-marker {
259
  position: absolute;
260
  top: 0;
261
  left: 0;
262
  margin: -5px 0 0 0;
263
  padding: 0;
264
  border-right: 0;
265
  border-top: 5px solid transparent;
266
  border-bottom: 5px solid transparent;
267
  border-left: 5px solid;
268
  width: 0;
269
  height: 0;
270
  font-size: 0;
271
  line-height: 0;
272
}
273
#jstree-dnd {
274
  line-height: 16px;
275
  margin: 0;
276
  padding: 4px;
277
}
278
#jstree-dnd .jstree-icon,
279
#jstree-dnd .jstree-copy {
280
  display: inline-block;
281
  text-decoration: none;
282
  margin: 0 2px 0 0;
283
  padding: 0;
284
  width: 16px;
285
  height: 16px;
286
}
287
#jstree-dnd .jstree-ok {
288
  background: green;
289
}
290
#jstree-dnd .jstree-er {
291
  background: red;
292
}
293
#jstree-dnd .jstree-copy {
294
  margin: 0 2px 0 2px;
295
}
296
.jstree-default .jstree-node,
297
.jstree-default .jstree-icon {
298
  background-repeat: no-repeat;
299
  background-color: transparent;
300
}
301
.jstree-default .jstree-anchor,
302
.jstree-default .jstree-animated,
303
.jstree-default .jstree-wholerow {
304
  transition: background-color 0.15s, box-shadow 0.15s;
305
}
306
.jstree-default .jstree-hovered {
307
  background: #e7f4f9;
308
  border-radius: 2px;
309
  box-shadow: inset 0 0 1px #cccccc;
310
}
311
.jstree-default .jstree-context {
312
  background: #e7f4f9;
313
  border-radius: 2px;
314
  box-shadow: inset 0 0 1px #cccccc;
315
}
316
.jstree-default .jstree-clicked {
317
  background: #beebff;
318
  border-radius: 2px;
319
  box-shadow: inset 0 0 1px #999999;
320
}
321
.jstree-default .jstree-no-icons .jstree-anchor > .jstree-themeicon {
322
  display: none;
323
}
324
.jstree-default .jstree-disabled {
325
  background: transparent;
326
  color: #666666;
327
}
328
.jstree-default .jstree-disabled.jstree-hovered {
329
  background: transparent;
330
  box-shadow: none;
331
}
332
.jstree-default .jstree-disabled.jstree-clicked {
333
  background: #efefef;
334
}
335
.jstree-default .jstree-disabled > .jstree-icon {
336
  opacity: 0.8;
337
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");
338
  /* Firefox 10+ */
339
  filter: gray;
340
  /* IE6-9 */
341
  -webkit-filter: grayscale(100%);
342
  /* Chrome 19+ & Safari 6+ */
343
}
344
.jstree-default .jstree-search {
345
  font-style: italic;
346
  color: #8b0000;
347
  font-weight: bold;
348
}
349
.jstree-default .jstree-no-checkboxes .jstree-checkbox {
350
  display: none !important;
351
}
352
.jstree-default.jstree-checkbox-no-clicked .jstree-clicked {
353
  background: transparent;
354
  box-shadow: none;
355
}
356
.jstree-default.jstree-checkbox-no-clicked .jstree-clicked.jstree-hovered {
357
  background: #e7f4f9;
358
}
359
.jstree-default.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked {
360
  background: transparent;
361
}
362
.jstree-default.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked.jstree-wholerow-hovered {
363
  background: #e7f4f9;
364
}
365
.jstree-default > .jstree-striped {
366
  min-width: 100%;
367
  display: inline-block;
368
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAkCAMAAAB/qqA+AAAABlBMVEUAAAAAAAClZ7nPAAAAAnRSTlMNAMM9s3UAAAAXSURBVHjajcEBAQAAAIKg/H/aCQZ70AUBjAATb6YPDgAAAABJRU5ErkJggg==") left top repeat;
369
}
370
.jstree-default > .jstree-wholerow-ul .jstree-hovered,
371
.jstree-default > .jstree-wholerow-ul .jstree-clicked {
372
  background: transparent;
373
  box-shadow: none;
374
  border-radius: 0;
375
}
376
.jstree-default .jstree-wholerow {
377
  -moz-box-sizing: border-box;
378
  -webkit-box-sizing: border-box;
379
  box-sizing: border-box;
380
}
381
.jstree-default .jstree-wholerow-hovered {
382
  background: #e7f4f9;
383
}
384
.jstree-default .jstree-wholerow-clicked {
385
  background: #beebff;
386
  background: -webkit-linear-gradient(top, #beebff 0%, #a8e4ff 100%);
387
  background: linear-gradient(to bottom, #beebff 0%, #a8e4ff 100%);
388
}
389
.jstree-default .jstree-node {
390
  min-height: 24px;
391
  line-height: 24px;
392
  margin-left: 24px;
393
  min-width: 24px;
394
}
395
.jstree-default .jstree-anchor {
396
  line-height: 24px;
397
  height: 24px;
398
}
399
.jstree-default .jstree-icon {
400
  width: 24px;
401
  height: 24px;
402
  line-height: 24px;
403
}
404
.jstree-default .jstree-icon:empty {
405
  width: 24px;
406
  height: 24px;
407
  line-height: 24px;
408
}
409
.jstree-default.jstree-rtl .jstree-node {
410
  margin-right: 24px;
411
}
412
.jstree-default .jstree-wholerow {
413
  height: 24px;
414
}
415
.jstree-default .jstree-node,
416
.jstree-default .jstree-icon {
417
  background-image: url("32px.png");
418
}
419
.jstree-default .jstree-node {
420
  background-position: -292px -4px;
421
  background-repeat: repeat-y;
422
}
423
.jstree-default .jstree-last {
424
  background: transparent;
425
}
426
.jstree-default .jstree-open > .jstree-ocl {
427
  background-position: -132px -4px;
428
}
429
.jstree-default .jstree-closed > .jstree-ocl {
430
  background-position: -100px -4px;
431
}
432
.jstree-default .jstree-leaf > .jstree-ocl {
433
  background-position: -68px -4px;
434
}
435
.jstree-default .jstree-themeicon {
436
  background-position: -260px -4px;
437
}
438
.jstree-default > .jstree-no-dots .jstree-node,
439
.jstree-default > .jstree-no-dots .jstree-leaf > .jstree-ocl {
440
  background: transparent;
441
}
442
.jstree-default > .jstree-no-dots .jstree-open > .jstree-ocl {
443
  background-position: -36px -4px;
444
}
445
.jstree-default > .jstree-no-dots .jstree-closed > .jstree-ocl {
446
  background-position: -4px -4px;
447
}
448
.jstree-default .jstree-disabled {
449
  background: transparent;
450
}
451
.jstree-default .jstree-disabled.jstree-hovered {
452
  background: transparent;
453
}
454
.jstree-default .jstree-disabled.jstree-clicked {
455
  background: #efefef;
456
}
457
.jstree-default .jstree-checkbox {
458
  background-position: -164px -4px;
459
}
460
.jstree-default .jstree-checkbox:hover {
461
  background-position: -164px -36px;
462
}
463
.jstree-default.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
464
.jstree-default .jstree-checked > .jstree-checkbox {
465
  background-position: -228px -4px;
466
}
467
.jstree-default.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
468
.jstree-default .jstree-checked > .jstree-checkbox:hover {
469
  background-position: -228px -36px;
470
}
471
.jstree-default .jstree-anchor > .jstree-undetermined {
472
  background-position: -196px -4px;
473
}
474
.jstree-default .jstree-anchor > .jstree-undetermined:hover {
475
  background-position: -196px -36px;
476
}
477
.jstree-default .jstree-checkbox-disabled {
478
  opacity: 0.8;
479
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");
480
  /* Firefox 10+ */
481
  filter: gray;
482
  /* IE6-9 */
483
  -webkit-filter: grayscale(100%);
484
  /* Chrome 19+ & Safari 6+ */
485
}
486
.jstree-default > .jstree-striped {
487
  background-size: auto 48px;
488
}
489
.jstree-default.jstree-rtl .jstree-node {
490
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
491
  background-position: 100% 1px;
492
  background-repeat: repeat-y;
493
}
494
.jstree-default.jstree-rtl .jstree-last {
495
  background: transparent;
496
}
497
.jstree-default.jstree-rtl .jstree-open > .jstree-ocl {
498
  background-position: -132px -36px;
499
}
500
.jstree-default.jstree-rtl .jstree-closed > .jstree-ocl {
501
  background-position: -100px -36px;
502
}
503
.jstree-default.jstree-rtl .jstree-leaf > .jstree-ocl {
504
  background-position: -68px -36px;
505
}
506
.jstree-default.jstree-rtl > .jstree-no-dots .jstree-node,
507
.jstree-default.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl {
508
  background: transparent;
509
}
510
.jstree-default.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl {
511
  background-position: -36px -36px;
512
}
513
.jstree-default.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl {
514
  background-position: -4px -36px;
515
}
516
.jstree-default .jstree-themeicon-custom {
517
  background-color: transparent;
518
  background-image: none;
519
  background-position: 0 0;
520
}
521
.jstree-default > .jstree-container-ul .jstree-loading > .jstree-ocl {
522
  background: url("throbber.gif") center center no-repeat;
523
}
524
.jstree-default .jstree-file {
525
  background: url("32px.png") -100px -68px no-repeat;
526
}
527
.jstree-default .jstree-folder {
528
  background: url("32px.png") -260px -4px no-repeat;
529
}
530
.jstree-default > .jstree-container-ul > .jstree-node {
531
  margin-left: 0;
532
  margin-right: 0;
533
}
534
#jstree-dnd.jstree-default {
535
  line-height: 24px;
536
  padding: 0 4px;
537
}
538
#jstree-dnd.jstree-default .jstree-ok,
539
#jstree-dnd.jstree-default .jstree-er {
540
  background-image: url("32px.png");
541
  background-repeat: no-repeat;
542
  background-color: transparent;
543
}
544
#jstree-dnd.jstree-default i {
545
  background: transparent;
546
  width: 24px;
547
  height: 24px;
548
  line-height: 24px;
549
}
550
#jstree-dnd.jstree-default .jstree-ok {
551
  background-position: -4px -68px;
552
}
553
#jstree-dnd.jstree-default .jstree-er {
554
  background-position: -36px -68px;
555
}
556
.jstree-default .jstree-ellipsis {
557
  overflow: hidden;
558
}
559
.jstree-default .jstree-ellipsis .jstree-anchor {
560
  width: calc(100% - 29px);
561
  text-overflow: ellipsis;
562
  overflow: hidden;
563
}
564
.jstree-default.jstree-rtl .jstree-node {
565
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
566
}
567
.jstree-default.jstree-rtl .jstree-last {
568
  background: transparent;
569
}
570
.jstree-default-small .jstree-node {
571
  min-height: 18px;
572
  line-height: 18px;
573
  margin-left: 18px;
574
  min-width: 18px;
575
}
576
.jstree-default-small .jstree-anchor {
577
  line-height: 18px;
578
  height: 18px;
579
}
580
.jstree-default-small .jstree-icon {
581
  width: 18px;
582
  height: 18px;
583
  line-height: 18px;
584
}
585
.jstree-default-small .jstree-icon:empty {
586
  width: 18px;
587
  height: 18px;
588
  line-height: 18px;
589
}
590
.jstree-default-small.jstree-rtl .jstree-node {
591
  margin-right: 18px;
592
}
593
.jstree-default-small .jstree-wholerow {
594
  height: 18px;
595
}
596
.jstree-default-small .jstree-node,
597
.jstree-default-small .jstree-icon {
598
  background-image: url("32px.png");
599
}
600
.jstree-default-small .jstree-node {
601
  background-position: -295px -7px;
602
  background-repeat: repeat-y;
603
}
604
.jstree-default-small .jstree-last {
605
  background: transparent;
606
}
607
.jstree-default-small .jstree-open > .jstree-ocl {
608
  background-position: -135px -7px;
609
}
610
.jstree-default-small .jstree-closed > .jstree-ocl {
611
  background-position: -103px -7px;
612
}
613
.jstree-default-small .jstree-leaf > .jstree-ocl {
614
  background-position: -71px -7px;
615
}
616
.jstree-default-small .jstree-themeicon {
617
  background-position: -263px -7px;
618
}
619
.jstree-default-small > .jstree-no-dots .jstree-node,
620
.jstree-default-small > .jstree-no-dots .jstree-leaf > .jstree-ocl {
621
  background: transparent;
622
}
623
.jstree-default-small > .jstree-no-dots .jstree-open > .jstree-ocl {
624
  background-position: -39px -7px;
625
}
626
.jstree-default-small > .jstree-no-dots .jstree-closed > .jstree-ocl {
627
  background-position: -7px -7px;
628
}
629
.jstree-default-small .jstree-disabled {
630
  background: transparent;
631
}
632
.jstree-default-small .jstree-disabled.jstree-hovered {
633
  background: transparent;
634
}
635
.jstree-default-small .jstree-disabled.jstree-clicked {
636
  background: #efefef;
637
}
638
.jstree-default-small .jstree-checkbox {
639
  background-position: -167px -7px;
640
}
641
.jstree-default-small .jstree-checkbox:hover {
642
  background-position: -167px -39px;
643
}
644
.jstree-default-small.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
645
.jstree-default-small .jstree-checked > .jstree-checkbox {
646
  background-position: -231px -7px;
647
}
648
.jstree-default-small.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
649
.jstree-default-small .jstree-checked > .jstree-checkbox:hover {
650
  background-position: -231px -39px;
651
}
652
.jstree-default-small .jstree-anchor > .jstree-undetermined {
653
  background-position: -199px -7px;
654
}
655
.jstree-default-small .jstree-anchor > .jstree-undetermined:hover {
656
  background-position: -199px -39px;
657
}
658
.jstree-default-small .jstree-checkbox-disabled {
659
  opacity: 0.8;
660
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");
661
  /* Firefox 10+ */
662
  filter: gray;
663
  /* IE6-9 */
664
  -webkit-filter: grayscale(100%);
665
  /* Chrome 19+ & Safari 6+ */
666
}
667
.jstree-default-small > .jstree-striped {
668
  background-size: auto 36px;
669
}
670
.jstree-default-small.jstree-rtl .jstree-node {
671
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
672
  background-position: 100% 1px;
673
  background-repeat: repeat-y;
674
}
675
.jstree-default-small.jstree-rtl .jstree-last {
676
  background: transparent;
677
}
678
.jstree-default-small.jstree-rtl .jstree-open > .jstree-ocl {
679
  background-position: -135px -39px;
680
}
681
.jstree-default-small.jstree-rtl .jstree-closed > .jstree-ocl {
682
  background-position: -103px -39px;
683
}
684
.jstree-default-small.jstree-rtl .jstree-leaf > .jstree-ocl {
685
  background-position: -71px -39px;
686
}
687
.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-node,
688
.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl {
689
  background: transparent;
690
}
691
.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl {
692
  background-position: -39px -39px;
693
}
694
.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl {
695
  background-position: -7px -39px;
696
}
697
.jstree-default-small .jstree-themeicon-custom {
698
  background-color: transparent;
699
  background-image: none;
700
  background-position: 0 0;
701
}
702
.jstree-default-small > .jstree-container-ul .jstree-loading > .jstree-ocl {
703
  background: url("throbber.gif") center center no-repeat;
704
}
705
.jstree-default-small .jstree-file {
706
  background: url("32px.png") -103px -71px no-repeat;
707
}
708
.jstree-default-small .jstree-folder {
709
  background: url("32px.png") -263px -7px no-repeat;
710
}
711
.jstree-default-small > .jstree-container-ul > .jstree-node {
712
  margin-left: 0;
713
  margin-right: 0;
714
}
715
#jstree-dnd.jstree-default-small {
716
  line-height: 18px;
717
  padding: 0 4px;
718
}
719
#jstree-dnd.jstree-default-small .jstree-ok,
720
#jstree-dnd.jstree-default-small .jstree-er {
721
  background-image: url("32px.png");
722
  background-repeat: no-repeat;
723
  background-color: transparent;
724
}
725
#jstree-dnd.jstree-default-small i {
726
  background: transparent;
727
  width: 18px;
728
  height: 18px;
729
  line-height: 18px;
730
}
731
#jstree-dnd.jstree-default-small .jstree-ok {
732
  background-position: -7px -71px;
733
}
734
#jstree-dnd.jstree-default-small .jstree-er {
735
  background-position: -39px -71px;
736
}
737
.jstree-default-small .jstree-ellipsis {
738
  overflow: hidden;
739
}
740
.jstree-default-small .jstree-ellipsis .jstree-anchor {
741
  width: calc(100% - 23px);
742
  text-overflow: ellipsis;
743
  overflow: hidden;
744
}
745
.jstree-default-small.jstree-rtl .jstree-node {
746
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAACAQMAAABv1h6PAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMHBgAAiABBI4gz9AAAAABJRU5ErkJggg==");
747
}
748
.jstree-default-small.jstree-rtl .jstree-last {
749
  background: transparent;
750
}
751
.jstree-default-large .jstree-node {
752
  min-height: 32px;
753
  line-height: 32px;
754
  margin-left: 32px;
755
  min-width: 32px;
756
}
757
.jstree-default-large .jstree-anchor {
758
  line-height: 32px;
759
  height: 32px;
760
}
761
.jstree-default-large .jstree-icon {
762
  width: 32px;
763
  height: 32px;
764
  line-height: 32px;
765
}
766
.jstree-default-large .jstree-icon:empty {
767
  width: 32px;
768
  height: 32px;
769
  line-height: 32px;
770
}
771
.jstree-default-large.jstree-rtl .jstree-node {
772
  margin-right: 32px;
773
}
774
.jstree-default-large .jstree-wholerow {
775
  height: 32px;
776
}
777
.jstree-default-large .jstree-node,
778
.jstree-default-large .jstree-icon {
779
  background-image: url("32px.png");
780
}
781
.jstree-default-large .jstree-node {
782
  background-position: -288px 0px;
783
  background-repeat: repeat-y;
784
}
785
.jstree-default-large .jstree-last {
786
  background: transparent;
787
}
788
.jstree-default-large .jstree-open > .jstree-ocl {
789
  background-position: -128px 0px;
790
}
791
.jstree-default-large .jstree-closed > .jstree-ocl {
792
  background-position: -96px 0px;
793
}
794
.jstree-default-large .jstree-leaf > .jstree-ocl {
795
  background-position: -64px 0px;
796
}
797
.jstree-default-large .jstree-themeicon {
798
  background-position: -256px 0px;
799
}
800
.jstree-default-large > .jstree-no-dots .jstree-node,
801
.jstree-default-large > .jstree-no-dots .jstree-leaf > .jstree-ocl {
802
  background: transparent;
803
}
804
.jstree-default-large > .jstree-no-dots .jstree-open > .jstree-ocl {
805
  background-position: -32px 0px;
806
}
807
.jstree-default-large > .jstree-no-dots .jstree-closed > .jstree-ocl {
808
  background-position: 0px 0px;
809
}
810
.jstree-default-large .jstree-disabled {
811
  background: transparent;
812
}
813
.jstree-default-large .jstree-disabled.jstree-hovered {
814
  background: transparent;
815
}
816
.jstree-default-large .jstree-disabled.jstree-clicked {
817
  background: #efefef;
818
}
819
.jstree-default-large .jstree-checkbox {
820
  background-position: -160px 0px;
821
}
822
.jstree-default-large .jstree-checkbox:hover {
823
  background-position: -160px -32px;
824
}
825
.jstree-default-large.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
826
.jstree-default-large .jstree-checked > .jstree-checkbox {
827
  background-position: -224px 0px;
828
}
829
.jstree-default-large.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
830
.jstree-default-large .jstree-checked > .jstree-checkbox:hover {
831
  background-position: -224px -32px;
832
}
833
.jstree-default-large .jstree-anchor > .jstree-undetermined {
834
  background-position: -192px 0px;
835
}
836
.jstree-default-large .jstree-anchor > .jstree-undetermined:hover {
837
  background-position: -192px -32px;
838
}
839
.jstree-default-large .jstree-checkbox-disabled {
840
  opacity: 0.8;
841
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");
842
  /* Firefox 10+ */
843
  filter: gray;
844
  /* IE6-9 */
845
  -webkit-filter: grayscale(100%);
846
  /* Chrome 19+ & Safari 6+ */
847
}
848
.jstree-default-large > .jstree-striped {
849
  background-size: auto 64px;
850
}
851
.jstree-default-large.jstree-rtl .jstree-node {
852
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
853
  background-position: 100% 1px;
854
  background-repeat: repeat-y;
855
}
856
.jstree-default-large.jstree-rtl .jstree-last {
857
  background: transparent;
858
}
859
.jstree-default-large.jstree-rtl .jstree-open > .jstree-ocl {
860
  background-position: -128px -32px;
861
}
862
.jstree-default-large.jstree-rtl .jstree-closed > .jstree-ocl {
863
  background-position: -96px -32px;
864
}
865
.jstree-default-large.jstree-rtl .jstree-leaf > .jstree-ocl {
866
  background-position: -64px -32px;
867
}
868
.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-node,
869
.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl {
870
  background: transparent;
871
}
872
.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl {
873
  background-position: -32px -32px;
874
}
875
.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl {
876
  background-position: 0px -32px;
877
}
878
.jstree-default-large .jstree-themeicon-custom {
879
  background-color: transparent;
880
  background-image: none;
881
  background-position: 0 0;
882
}
883
.jstree-default-large > .jstree-container-ul .jstree-loading > .jstree-ocl {
884
  background: url("throbber.gif") center center no-repeat;
885
}
886
.jstree-default-large .jstree-file {
887
  background: url("32px.png") -96px -64px no-repeat;
888
}
889
.jstree-default-large .jstree-folder {
890
  background: url("32px.png") -256px 0px no-repeat;
891
}
892
.jstree-default-large > .jstree-container-ul > .jstree-node {
893
  margin-left: 0;
894
  margin-right: 0;
895
}
896
#jstree-dnd.jstree-default-large {
897
  line-height: 32px;
898
  padding: 0 4px;
899
}
900
#jstree-dnd.jstree-default-large .jstree-ok,
901
#jstree-dnd.jstree-default-large .jstree-er {
902
  background-image: url("32px.png");
903
  background-repeat: no-repeat;
904
  background-color: transparent;
905
}
906
#jstree-dnd.jstree-default-large i {
907
  background: transparent;
908
  width: 32px;
909
  height: 32px;
910
  line-height: 32px;
911
}
912
#jstree-dnd.jstree-default-large .jstree-ok {
913
  background-position: 0px -64px;
914
}
915
#jstree-dnd.jstree-default-large .jstree-er {
916
  background-position: -32px -64px;
917
}
918
.jstree-default-large .jstree-ellipsis {
919
  overflow: hidden;
920
}
921
.jstree-default-large .jstree-ellipsis .jstree-anchor {
922
  width: calc(100% - 37px);
923
  text-overflow: ellipsis;
924
  overflow: hidden;
925
}
926
.jstree-default-large.jstree-rtl .jstree-node {
927
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAACAQMAAAAD0EyKAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjgIIGBgABCgCBvVLXcAAAAABJRU5ErkJggg==");
928
}
929
.jstree-default-large.jstree-rtl .jstree-last {
930
  background: transparent;
931
}
932
@media (max-width: 768px) {
933
  #jstree-dnd.jstree-dnd-responsive {
934
    line-height: 40px;
935
    font-weight: bold;
936
    font-size: 1.1em;
937
    text-shadow: 1px 1px white;
938
  }
939
  #jstree-dnd.jstree-dnd-responsive > i {
940
    background: transparent;
941
    width: 40px;
942
    height: 40px;
943
  }
944
  #jstree-dnd.jstree-dnd-responsive > .jstree-ok {
945
    background-image: url("40px.png");
946
    background-position: 0 -200px;
947
    background-size: 120px 240px;
948
  }
949
  #jstree-dnd.jstree-dnd-responsive > .jstree-er {
950
    background-image: url("40px.png");
951
    background-position: -40px -200px;
952
    background-size: 120px 240px;
953
  }
954
  #jstree-marker.jstree-dnd-responsive {
955
    border-left-width: 10px;
956
    border-top-width: 10px;
957
    border-bottom-width: 10px;
958
    margin-top: -10px;
959
  }
960
}
961
@media (max-width: 768px) {
962
  .jstree-default-responsive {
963
    /*
964
	.jstree-open > .jstree-ocl,
965
	.jstree-closed > .jstree-ocl { border-radius:20px; background-color:white; }
966
	*/
967
  }
968
  .jstree-default-responsive .jstree-icon {
969
    background-image: url("40px.png");
970
  }
971
  .jstree-default-responsive .jstree-node,
972
  .jstree-default-responsive .jstree-leaf > .jstree-ocl {
973
    background: transparent;
974
  }
975
  .jstree-default-responsive .jstree-node {
976
    min-height: 40px;
977
    line-height: 40px;
978
    margin-left: 40px;
979
    min-width: 40px;
980
    white-space: nowrap;
981
  }
982
  .jstree-default-responsive .jstree-anchor {
983
    line-height: 40px;
984
    height: 40px;
985
  }
986
  .jstree-default-responsive .jstree-icon,
987
  .jstree-default-responsive .jstree-icon:empty {
988
    width: 40px;
989
    height: 40px;
990
    line-height: 40px;
991
  }
992
  .jstree-default-responsive > .jstree-container-ul > .jstree-node {
993
    margin-left: 0;
994
  }
995
  .jstree-default-responsive.jstree-rtl .jstree-node {
996
    margin-left: 0;
997
    margin-right: 40px;
998
    background: transparent;
999
  }
1000
  .jstree-default-responsive.jstree-rtl .jstree-container-ul > .jstree-node {
1001
    margin-right: 0;
1002
  }
1003
  .jstree-default-responsive .jstree-ocl,
1004
  .jstree-default-responsive .jstree-themeicon,
1005
  .jstree-default-responsive .jstree-checkbox {
1006
    background-size: 120px 240px;
1007
  }
1008
  .jstree-default-responsive .jstree-leaf > .jstree-ocl,
1009
  .jstree-default-responsive.jstree-rtl .jstree-leaf > .jstree-ocl {
1010
    background: transparent;
1011
  }
1012
  .jstree-default-responsive .jstree-open > .jstree-ocl {
1013
    background-position: 0 0 !important;
1014
  }
1015
  .jstree-default-responsive .jstree-closed > .jstree-ocl {
1016
    background-position: 0 -40px !important;
1017
  }
1018
  .jstree-default-responsive.jstree-rtl .jstree-closed > .jstree-ocl {
1019
    background-position: -40px 0 !important;
1020
  }
1021
  .jstree-default-responsive .jstree-themeicon {
1022
    background-position: -40px -40px;
1023
  }
1024
  .jstree-default-responsive .jstree-checkbox,
1025
  .jstree-default-responsive .jstree-checkbox:hover {
1026
    background-position: -40px -80px;
1027
  }
1028
  .jstree-default-responsive.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
1029
  .jstree-default-responsive.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
1030
  .jstree-default-responsive .jstree-checked > .jstree-checkbox,
1031
  .jstree-default-responsive .jstree-checked > .jstree-checkbox:hover {
1032
    background-position: 0 -80px;
1033
  }
1034
  .jstree-default-responsive .jstree-anchor > .jstree-undetermined,
1035
  .jstree-default-responsive .jstree-anchor > .jstree-undetermined:hover {
1036
    background-position: 0 -120px;
1037
  }
1038
  .jstree-default-responsive .jstree-anchor {
1039
    font-weight: bold;
1040
    font-size: 1.1em;
1041
    text-shadow: 1px 1px white;
1042
  }
1043
  .jstree-default-responsive > .jstree-striped {
1044
    background: transparent;
1045
  }
1046
  .jstree-default-responsive .jstree-wholerow {
1047
    border-top: 1px solid rgba(255, 255, 255, 0.7);
1048
    border-bottom: 1px solid rgba(64, 64, 64, 0.2);
1049
    background: #ebebeb;
1050
    height: 40px;
1051
  }
1052
  .jstree-default-responsive .jstree-wholerow-hovered {
1053
    background: #e7f4f9;
1054
  }
1055
  .jstree-default-responsive .jstree-wholerow-clicked {
1056
    background: #beebff;
1057
  }
1058
  .jstree-default-responsive .jstree-children .jstree-last > .jstree-wholerow {
1059
    box-shadow: inset 0 -6px 3px -5px #666666;
1060
  }
1061
  .jstree-default-responsive .jstree-children .jstree-open > .jstree-wholerow {
1062
    box-shadow: inset 0 6px 3px -5px #666666;
1063
    border-top: 0;
1064
  }
1065
  .jstree-default-responsive .jstree-children .jstree-open + .jstree-open {
1066
    box-shadow: none;
1067
  }
1068
  .jstree-default-responsive .jstree-node,
1069
  .jstree-default-responsive .jstree-icon,
1070
  .jstree-default-responsive .jstree-node > .jstree-ocl,
1071
  .jstree-default-responsive .jstree-themeicon,
1072
  .jstree-default-responsive .jstree-checkbox {
1073
    background-image: url("40px.png");
1074
    background-size: 120px 240px;
1075
  }
1076
  .jstree-default-responsive .jstree-node {
1077
    background-position: -80px 0;
1078
    background-repeat: repeat-y;
1079
  }
1080
  .jstree-default-responsive .jstree-last {
1081
    background: transparent;
1082
  }
1083
  .jstree-default-responsive .jstree-leaf > .jstree-ocl {
1084
    background-position: -40px -120px;
1085
  }
1086
  .jstree-default-responsive .jstree-last > .jstree-ocl {
1087
    background-position: -40px -160px;
1088
  }
1089
  .jstree-default-responsive .jstree-themeicon-custom {
1090
    background-color: transparent;
1091
    background-image: none;
1092
    background-position: 0 0;
1093
  }
1094
  .jstree-default-responsive .jstree-file {
1095
    background: url("40px.png") 0 -160px no-repeat;
1096
    background-size: 120px 240px;
1097
  }
1098
  .jstree-default-responsive .jstree-folder {
1099
    background: url("40px.png") -40px -40px no-repeat;
1100
    background-size: 120px 240px;
1101
  }
1102
  .jstree-default-responsive > .jstree-container-ul > .jstree-node {
1103
    margin-left: 0;
1104
    margin-right: 0;
1105
  }
1106
}
(-)a/koha-tmpl/opac-tmpl/lib/jquery/plugins/jstree/themes/default/style.min.css (+1 lines)
Line 0 Link Here
1
.jstree-node,.jstree-children,.jstree-container-ul{display:block;margin:0;padding:0;list-style-type:none;list-style-image:none}.jstree-node{white-space:nowrap}.jstree-anchor{display:inline-block;color:black;white-space:nowrap;padding:0 4px 0 1px;margin:0;vertical-align:top}.jstree-anchor:focus{outline:0}.jstree-anchor,.jstree-anchor:link,.jstree-anchor:visited,.jstree-anchor:hover,.jstree-anchor:active{text-decoration:none;color:inherit}.jstree-icon{display:inline-block;text-decoration:none;margin:0;padding:0;vertical-align:top;text-align:center}.jstree-icon:empty{display:inline-block;text-decoration:none;margin:0;padding:0;vertical-align:top;text-align:center}.jstree-ocl{cursor:pointer}.jstree-leaf>.jstree-ocl{cursor:default}.jstree .jstree-open>.jstree-children{display:block}.jstree .jstree-closed>.jstree-children,.jstree .jstree-leaf>.jstree-children{display:none}.jstree-anchor>.jstree-themeicon{margin-right:2px}.jstree-no-icons .jstree-themeicon,.jstree-anchor>.jstree-themeicon-hidden{display:none}.jstree-hidden,.jstree-node.jstree-hidden{display:none}.jstree-rtl .jstree-anchor{padding:0 1px 0 4px}.jstree-rtl .jstree-anchor>.jstree-themeicon{margin-left:2px;margin-right:0}.jstree-rtl .jstree-node{margin-left:0}.jstree-rtl .jstree-container-ul>.jstree-node{margin-right:0}.jstree-wholerow-ul{position:relative;display:inline-block;min-width:100%}.jstree-wholerow-ul .jstree-leaf>.jstree-ocl{cursor:pointer}.jstree-wholerow-ul .jstree-anchor,.jstree-wholerow-ul .jstree-icon{position:relative}.jstree-wholerow-ul .jstree-wholerow{width:100%;cursor:pointer;position:absolute;left:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.jstree-contextmenu .jstree-anchor{-webkit-user-select:none;-webkit-touch-callout:none;user-select:none}.vakata-context{display:none}.vakata-context,.vakata-context ul{margin:0;padding:2px;position:absolute;background:#f5f5f5;border:1px solid #979797;box-shadow:2px 2px 2px #999999}.vakata-context ul{list-style:none;left:100%;margin-top:-2.7em;margin-left:-4px}.vakata-context .vakata-context-right ul{left:auto;right:100%;margin-left:auto;margin-right:-4px}.vakata-context li{list-style:none}.vakata-context li>a{display:block;padding:0 2em 0 2em;text-decoration:none;width:auto;color:black;white-space:nowrap;line-height:2.4em;text-shadow:1px 1px 0 white;border-radius:1px}.vakata-context li>a:hover{position:relative;background-color:#e8eff7;box-shadow:0 0 2px #0a6aa1}.vakata-context li>a.vakata-context-parent{background-image:url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAIORI4JlrqN1oMSnmmZDQUAOw==");background-position:right center;background-repeat:no-repeat}.vakata-context li>a:focus{outline:0}.vakata-context .vakata-context-no-icons{margin-left:0}.vakata-context .vakata-context-hover>a{position:relative;background-color:#e8eff7;box-shadow:0 0 2px #0a6aa1}.vakata-context .vakata-context-separator>a,.vakata-context .vakata-context-separator>a:hover{background:white;border:0;border-top:1px solid #e2e3e3;height:1px;min-height:1px;max-height:1px;padding:0;margin:0 0 0 2.4em;border-left:1px solid #e0e0e0;text-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent;border-radius:0}.vakata-context .vakata-contextmenu-disabled a,.vakata-context .vakata-contextmenu-disabled a:hover{color:silver;background-color:transparent;border:0;box-shadow:0 0 0}.vakata-context .vakata-contextmenu-disabled>a>i{filter:grayscale(100%)}.vakata-context li>a>i{text-decoration:none;display:inline-block;width:2.4em;height:2.4em;background:transparent;margin:0 0 0 -2em;vertical-align:top;text-align:center;line-height:2.4em}.vakata-context li>a>i:empty{width:2.4em;line-height:2.4em}.vakata-context li>a .vakata-contextmenu-sep{display:inline-block;width:1px;height:2.4em;background:white;margin:0 .5em 0 0;border-left:1px solid #e2e3e3}.vakata-context .vakata-contextmenu-shortcut{font-size:.8em;color:silver;opacity:.5;display:none}.vakata-context-rtl ul{left:auto;right:100%;margin-left:auto;margin-right:-4px}.vakata-context-rtl li>a.vakata-context-parent{background-image:url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAINjI+AC7rWHIsPtmoxLAA7");background-position:left center;background-repeat:no-repeat}.vakata-context-rtl .vakata-context-separator>a{margin:0 2.4em 0 0;border-left:0;border-right:1px solid #e2e3e3}.vakata-context-rtl .vakata-context-left ul{right:auto;left:100%;margin-left:-4px;margin-right:auto}.vakata-context-rtl li>a>i{margin:0 -2em 0 0}.vakata-context-rtl li>a .vakata-contextmenu-sep{margin:0 0 0 .5em;border-left-color:white;background:#e2e3e3}#jstree-marker{position:absolute;top:0;left:0;margin:-5px 0 0 0;padding:0;border-right:0;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid;width:0;height:0;font-size:0;line-height:0}#jstree-dnd{line-height:16px;margin:0;padding:4px}#jstree-dnd .jstree-icon,#jstree-dnd .jstree-copy{display:inline-block;text-decoration:none;margin:0 2px 0 0;padding:0;width:16px;height:16px}#jstree-dnd .jstree-ok{background:green}#jstree-dnd .jstree-er{background:red}#jstree-dnd .jstree-copy{margin:0 2px 0 2px}.jstree-default .jstree-node,.jstree-default .jstree-icon{background-repeat:no-repeat;background-color:transparent}.jstree-default .jstree-anchor,.jstree-default .jstree-animated,.jstree-default .jstree-wholerow{transition:background-color .15s,box-shadow .15s}.jstree-default .jstree-hovered{background:#e7f4f9;border-radius:2px;box-shadow:inset 0 0 1px #cccccc}.jstree-default .jstree-context{background:#e7f4f9;border-radius:2px;box-shadow:inset 0 0 1px #cccccc}.jstree-default .jstree-clicked{background:#beebff;border-radius:2px;box-shadow:inset 0 0 1px #999999}.jstree-default .jstree-no-icons .jstree-anchor>.jstree-themeicon{display:none}.jstree-default .jstree-disabled{background:transparent;color:#666666}.jstree-default .jstree-disabled.jstree-hovered{background:transparent;box-shadow:none}.jstree-default .jstree-disabled.jstree-clicked{background:#efefef}.jstree-default .jstree-disabled>.jstree-icon{opacity:.8;filter:url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)}.jstree-default .jstree-search{font-style:italic;color:#8b0000;font-weight:bold}.jstree-default .jstree-no-checkboxes .jstree-checkbox{display:none !important}.jstree-default.jstree-checkbox-no-clicked .jstree-clicked{background:transparent;box-shadow:none}.jstree-default.jstree-checkbox-no-clicked .jstree-clicked.jstree-hovered{background:#e7f4f9}.jstree-default.jstree-checkbox-no-clicked>.jstree-wholerow-ul .jstree-wholerow-clicked{background:transparent}.jstree-default.jstree-checkbox-no-clicked>.jstree-wholerow-ul .jstree-wholerow-clicked.jstree-wholerow-hovered{background:#e7f4f9}.jstree-default>.jstree-striped{min-width:100%;display:inline-block;background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAkCAMAAAB/qqA+AAAABlBMVEUAAAAAAAClZ7nPAAAAAnRSTlMNAMM9s3UAAAAXSURBVHjajcEBAQAAAIKg/H/aCQZ70AUBjAATb6YPDgAAAABJRU5ErkJggg==") left top repeat}.jstree-default>.jstree-wholerow-ul .jstree-hovered,.jstree-default>.jstree-wholerow-ul .jstree-clicked{background:transparent;box-shadow:none;border-radius:0}.jstree-default .jstree-wholerow{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.jstree-default .jstree-wholerow-hovered{background:#e7f4f9}.jstree-default .jstree-wholerow-clicked{background:#beebff;background:-webkit-linear-gradient(top, #beebff 0, #a8e4ff 100%);background:linear-gradient(to bottom, #beebff 0, #a8e4ff 100%)}.jstree-default .jstree-node{min-height:24px;line-height:24px;margin-left:24px;min-width:24px}.jstree-default .jstree-anchor{line-height:24px;height:24px}.jstree-default .jstree-icon{width:24px;height:24px;line-height:24px}.jstree-default .jstree-icon:empty{width:24px;height:24px;line-height:24px}.jstree-default.jstree-rtl .jstree-node{margin-right:24px}.jstree-default .jstree-wholerow{height:24px}.jstree-default .jstree-node,.jstree-default .jstree-icon{background-image:url("32px.png")}.jstree-default .jstree-node{background-position:-292px -4px;background-repeat:repeat-y}.jstree-default .jstree-last{background:transparent}.jstree-default .jstree-open>.jstree-ocl{background-position:-132px -4px}.jstree-default .jstree-closed>.jstree-ocl{background-position:-100px -4px}.jstree-default .jstree-leaf>.jstree-ocl{background-position:-68px -4px}.jstree-default .jstree-themeicon{background-position:-260px -4px}.jstree-default>.jstree-no-dots .jstree-node,.jstree-default>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-36px -4px}.jstree-default>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-4px -4px}.jstree-default .jstree-disabled{background:transparent}.jstree-default .jstree-disabled.jstree-hovered{background:transparent}.jstree-default .jstree-disabled.jstree-clicked{background:#efefef}.jstree-default .jstree-checkbox{background-position:-164px -4px}.jstree-default .jstree-checkbox:hover{background-position:-164px -36px}.jstree-default.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox,.jstree-default .jstree-checked>.jstree-checkbox{background-position:-228px -4px}.jstree-default.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover,.jstree-default .jstree-checked>.jstree-checkbox:hover{background-position:-228px -36px}.jstree-default .jstree-anchor>.jstree-undetermined{background-position:-196px -4px}.jstree-default .jstree-anchor>.jstree-undetermined:hover{background-position:-196px -36px}.jstree-default .jstree-checkbox-disabled{opacity:.8;filter:url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)}.jstree-default>.jstree-striped{background-size:auto 48px}.jstree-default.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");background-position:100% 1px;background-repeat:repeat-y}.jstree-default.jstree-rtl .jstree-last{background:transparent}.jstree-default.jstree-rtl .jstree-open>.jstree-ocl{background-position:-132px -36px}.jstree-default.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-100px -36px}.jstree-default.jstree-rtl .jstree-leaf>.jstree-ocl{background-position:-68px -36px}.jstree-default.jstree-rtl>.jstree-no-dots .jstree-node,.jstree-default.jstree-rtl>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default.jstree-rtl>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-36px -36px}.jstree-default.jstree-rtl>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-4px -36px}.jstree-default .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0}.jstree-default>.jstree-container-ul .jstree-loading>.jstree-ocl{background:url("throbber.gif") center center no-repeat}.jstree-default .jstree-file{background:url("32px.png") -100px -68px no-repeat}.jstree-default .jstree-folder{background:url("32px.png") -260px -4px no-repeat}.jstree-default>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0}#jstree-dnd.jstree-default{line-height:24px;padding:0 4px}#jstree-dnd.jstree-default .jstree-ok,#jstree-dnd.jstree-default .jstree-er{background-image:url("32px.png");background-repeat:no-repeat;background-color:transparent}#jstree-dnd.jstree-default i{background:transparent;width:24px;height:24px;line-height:24px}#jstree-dnd.jstree-default .jstree-ok{background-position:-4px -68px}#jstree-dnd.jstree-default .jstree-er{background-position:-36px -68px}.jstree-default .jstree-ellipsis{overflow:hidden}.jstree-default .jstree-ellipsis .jstree-anchor{width:calc(100% - 29px);text-overflow:ellipsis;overflow:hidden}.jstree-default.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==")}.jstree-default.jstree-rtl .jstree-last{background:transparent}.jstree-default-small .jstree-node{min-height:18px;line-height:18px;margin-left:18px;min-width:18px}.jstree-default-small .jstree-anchor{line-height:18px;height:18px}.jstree-default-small .jstree-icon{width:18px;height:18px;line-height:18px}.jstree-default-small .jstree-icon:empty{width:18px;height:18px;line-height:18px}.jstree-default-small.jstree-rtl .jstree-node{margin-right:18px}.jstree-default-small .jstree-wholerow{height:18px}.jstree-default-small .jstree-node,.jstree-default-small .jstree-icon{background-image:url("32px.png")}.jstree-default-small .jstree-node{background-position:-295px -7px;background-repeat:repeat-y}.jstree-default-small .jstree-last{background:transparent}.jstree-default-small .jstree-open>.jstree-ocl{background-position:-135px -7px}.jstree-default-small .jstree-closed>.jstree-ocl{background-position:-103px -7px}.jstree-default-small .jstree-leaf>.jstree-ocl{background-position:-71px -7px}.jstree-default-small .jstree-themeicon{background-position:-263px -7px}.jstree-default-small>.jstree-no-dots .jstree-node,.jstree-default-small>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-small>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-39px -7px}.jstree-default-small>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-7px -7px}.jstree-default-small .jstree-disabled{background:transparent}.jstree-default-small .jstree-disabled.jstree-hovered{background:transparent}.jstree-default-small .jstree-disabled.jstree-clicked{background:#efefef}.jstree-default-small .jstree-checkbox{background-position:-167px -7px}.jstree-default-small .jstree-checkbox:hover{background-position:-167px -39px}.jstree-default-small.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox,.jstree-default-small .jstree-checked>.jstree-checkbox{background-position:-231px -7px}.jstree-default-small.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover,.jstree-default-small .jstree-checked>.jstree-checkbox:hover{background-position:-231px -39px}.jstree-default-small .jstree-anchor>.jstree-undetermined{background-position:-199px -7px}.jstree-default-small .jstree-anchor>.jstree-undetermined:hover{background-position:-199px -39px}.jstree-default-small .jstree-checkbox-disabled{opacity:.8;filter:url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)}.jstree-default-small>.jstree-striped{background-size:auto 36px}.jstree-default-small.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");background-position:100% 1px;background-repeat:repeat-y}.jstree-default-small.jstree-rtl .jstree-last{background:transparent}.jstree-default-small.jstree-rtl .jstree-open>.jstree-ocl{background-position:-135px -39px}.jstree-default-small.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-103px -39px}.jstree-default-small.jstree-rtl .jstree-leaf>.jstree-ocl{background-position:-71px -39px}.jstree-default-small.jstree-rtl>.jstree-no-dots .jstree-node,.jstree-default-small.jstree-rtl>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-small.jstree-rtl>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-39px -39px}.jstree-default-small.jstree-rtl>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-7px -39px}.jstree-default-small .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0}.jstree-default-small>.jstree-container-ul .jstree-loading>.jstree-ocl{background:url("throbber.gif") center center no-repeat}.jstree-default-small .jstree-file{background:url("32px.png") -103px -71px no-repeat}.jstree-default-small .jstree-folder{background:url("32px.png") -263px -7px no-repeat}.jstree-default-small>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0}#jstree-dnd.jstree-default-small{line-height:18px;padding:0 4px}#jstree-dnd.jstree-default-small .jstree-ok,#jstree-dnd.jstree-default-small .jstree-er{background-image:url("32px.png");background-repeat:no-repeat;background-color:transparent}#jstree-dnd.jstree-default-small i{background:transparent;width:18px;height:18px;line-height:18px}#jstree-dnd.jstree-default-small .jstree-ok{background-position:-7px -71px}#jstree-dnd.jstree-default-small .jstree-er{background-position:-39px -71px}.jstree-default-small .jstree-ellipsis{overflow:hidden}.jstree-default-small .jstree-ellipsis .jstree-anchor{width:calc(100% - 23px);text-overflow:ellipsis;overflow:hidden}.jstree-default-small.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAACAQMAAABv1h6PAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMHBgAAiABBI4gz9AAAAABJRU5ErkJggg==")}.jstree-default-small.jstree-rtl .jstree-last{background:transparent}.jstree-default-large .jstree-node{min-height:32px;line-height:32px;margin-left:32px;min-width:32px}.jstree-default-large .jstree-anchor{line-height:32px;height:32px}.jstree-default-large .jstree-icon{width:32px;height:32px;line-height:32px}.jstree-default-large .jstree-icon:empty{width:32px;height:32px;line-height:32px}.jstree-default-large.jstree-rtl .jstree-node{margin-right:32px}.jstree-default-large .jstree-wholerow{height:32px}.jstree-default-large .jstree-node,.jstree-default-large .jstree-icon{background-image:url("32px.png")}.jstree-default-large .jstree-node{background-position:-288px 0;background-repeat:repeat-y}.jstree-default-large .jstree-last{background:transparent}.jstree-default-large .jstree-open>.jstree-ocl{background-position:-128px 0}.jstree-default-large .jstree-closed>.jstree-ocl{background-position:-96px 0}.jstree-default-large .jstree-leaf>.jstree-ocl{background-position:-64px 0}.jstree-default-large .jstree-themeicon{background-position:-256px 0}.jstree-default-large>.jstree-no-dots .jstree-node,.jstree-default-large>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-large>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-32px 0}.jstree-default-large>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:0 0}.jstree-default-large .jstree-disabled{background:transparent}.jstree-default-large .jstree-disabled.jstree-hovered{background:transparent}.jstree-default-large .jstree-disabled.jstree-clicked{background:#efefef}.jstree-default-large .jstree-checkbox{background-position:-160px 0}.jstree-default-large .jstree-checkbox:hover{background-position:-160px -32px}.jstree-default-large.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox,.jstree-default-large .jstree-checked>.jstree-checkbox{background-position:-224px 0}.jstree-default-large.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover,.jstree-default-large .jstree-checked>.jstree-checkbox:hover{background-position:-224px -32px}.jstree-default-large .jstree-anchor>.jstree-undetermined{background-position:-192px 0}.jstree-default-large .jstree-anchor>.jstree-undetermined:hover{background-position:-192px -32px}.jstree-default-large .jstree-checkbox-disabled{opacity:.8;filter:url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)}.jstree-default-large>.jstree-striped{background-size:auto 64px}.jstree-default-large.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");background-position:100% 1px;background-repeat:repeat-y}.jstree-default-large.jstree-rtl .jstree-last{background:transparent}.jstree-default-large.jstree-rtl .jstree-open>.jstree-ocl{background-position:-128px -32px}.jstree-default-large.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-96px -32px}.jstree-default-large.jstree-rtl .jstree-leaf>.jstree-ocl{background-position:-64px -32px}.jstree-default-large.jstree-rtl>.jstree-no-dots .jstree-node,.jstree-default-large.jstree-rtl>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-large.jstree-rtl>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-32px -32px}.jstree-default-large.jstree-rtl>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:0 -32px}.jstree-default-large .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0}.jstree-default-large>.jstree-container-ul .jstree-loading>.jstree-ocl{background:url("throbber.gif") center center no-repeat}.jstree-default-large .jstree-file{background:url("32px.png") -96px -64px no-repeat}.jstree-default-large .jstree-folder{background:url("32px.png") -256px 0 no-repeat}.jstree-default-large>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0}#jstree-dnd.jstree-default-large{line-height:32px;padding:0 4px}#jstree-dnd.jstree-default-large .jstree-ok,#jstree-dnd.jstree-default-large .jstree-er{background-image:url("32px.png");background-repeat:no-repeat;background-color:transparent}#jstree-dnd.jstree-default-large i{background:transparent;width:32px;height:32px;line-height:32px}#jstree-dnd.jstree-default-large .jstree-ok{background-position:0 -64px}#jstree-dnd.jstree-default-large .jstree-er{background-position:-32px -64px}.jstree-default-large .jstree-ellipsis{overflow:hidden}.jstree-default-large .jstree-ellipsis .jstree-anchor{width:calc(100% - 37px);text-overflow:ellipsis;overflow:hidden}.jstree-default-large.jstree-rtl .jstree-node{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAACAQMAAAAD0EyKAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjgIIGBgABCgCBvVLXcAAAAABJRU5ErkJggg==")}.jstree-default-large.jstree-rtl .jstree-last{background:transparent}@media (max-width:768px){#jstree-dnd.jstree-dnd-responsive{line-height:40px;font-weight:bold;font-size:1.1em;text-shadow:1px 1px white}#jstree-dnd.jstree-dnd-responsive>i{background:transparent;width:40px;height:40px}#jstree-dnd.jstree-dnd-responsive>.jstree-ok{background-image:url("40px.png");background-position:0 -200px;background-size:120px 240px}#jstree-dnd.jstree-dnd-responsive>.jstree-er{background-image:url("40px.png");background-position:-40px -200px;background-size:120px 240px}#jstree-marker.jstree-dnd-responsive{border-left-width:10px;border-top-width:10px;border-bottom-width:10px;margin-top:-10px}}@media (max-width:768px){.jstree-default-responsive .jstree-icon{background-image:url("40px.png")}.jstree-default-responsive .jstree-node,.jstree-default-responsive .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-responsive .jstree-node{min-height:40px;line-height:40px;margin-left:40px;min-width:40px;white-space:nowrap}.jstree-default-responsive .jstree-anchor{line-height:40px;height:40px}.jstree-default-responsive .jstree-icon,.jstree-default-responsive .jstree-icon:empty{width:40px;height:40px;line-height:40px}.jstree-default-responsive>.jstree-container-ul>.jstree-node{margin-left:0}.jstree-default-responsive.jstree-rtl .jstree-node{margin-left:0;margin-right:40px;background:transparent}.jstree-default-responsive.jstree-rtl .jstree-container-ul>.jstree-node{margin-right:0}.jstree-default-responsive .jstree-ocl,.jstree-default-responsive .jstree-themeicon,.jstree-default-responsive .jstree-checkbox{background-size:120px 240px}.jstree-default-responsive .jstree-leaf>.jstree-ocl,.jstree-default-responsive.jstree-rtl .jstree-leaf>.jstree-ocl{background:transparent}.jstree-default-responsive .jstree-open>.jstree-ocl{background-position:0 0 !important}.jstree-default-responsive .jstree-closed>.jstree-ocl{background-position:0 -40px !important}.jstree-default-responsive.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-40px 0 !important}.jstree-default-responsive .jstree-themeicon{background-position:-40px -40px}.jstree-default-responsive .jstree-checkbox,.jstree-default-responsive .jstree-checkbox:hover{background-position:-40px -80px}.jstree-default-responsive.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox,.jstree-default-responsive.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover,.jstree-default-responsive .jstree-checked>.jstree-checkbox,.jstree-default-responsive .jstree-checked>.jstree-checkbox:hover{background-position:0 -80px}.jstree-default-responsive .jstree-anchor>.jstree-undetermined,.jstree-default-responsive .jstree-anchor>.jstree-undetermined:hover{background-position:0 -120px}.jstree-default-responsive .jstree-anchor{font-weight:bold;font-size:1.1em;text-shadow:1px 1px white}.jstree-default-responsive>.jstree-striped{background:transparent}.jstree-default-responsive .jstree-wholerow{border-top:1px solid rgba(255,255,255,0.7);border-bottom:1px solid rgba(64,64,64,0.2);background:#ebebeb;height:40px}.jstree-default-responsive .jstree-wholerow-hovered{background:#e7f4f9}.jstree-default-responsive .jstree-wholerow-clicked{background:#beebff}.jstree-default-responsive .jstree-children .jstree-last>.jstree-wholerow{box-shadow:inset 0 -6px 3px -5px #666666}.jstree-default-responsive .jstree-children .jstree-open>.jstree-wholerow{box-shadow:inset 0 6px 3px -5px #666666;border-top:0}.jstree-default-responsive .jstree-children .jstree-open+.jstree-open{box-shadow:none}.jstree-default-responsive .jstree-node,.jstree-default-responsive .jstree-icon,.jstree-default-responsive .jstree-node>.jstree-ocl,.jstree-default-responsive .jstree-themeicon,.jstree-default-responsive .jstree-checkbox{background-image:url("40px.png");background-size:120px 240px}.jstree-default-responsive .jstree-node{background-position:-80px 0;background-repeat:repeat-y}.jstree-default-responsive .jstree-last{background:transparent}.jstree-default-responsive .jstree-leaf>.jstree-ocl{background-position:-40px -120px}.jstree-default-responsive .jstree-last>.jstree-ocl{background-position:-40px -160px}.jstree-default-responsive .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0}.jstree-default-responsive .jstree-file{background:url("40px.png") 0 -160px no-repeat;background-size:120px 240px}.jstree-default-responsive .jstree-folder{background:url("40px.png") -40px -40px no-repeat;background-size:120px 240px}.jstree-default-responsive>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0}}
(-)a/koha-tmpl/opac-tmpl/lib/jquery/plugins/themes/classic/style.css (-77 lines)
Lines 1-77 Link Here
1
/*
2
 * jsTree classic theme 1.0
3
 * Supported features: dots/no-dots, icons/no-icons, focused, loading
4
 * Supported plugins: ui (hovered, clicked), checkbox, contextmenu, search
5
 */
6
7
.jstree-classic li,
8
.jstree-classic ins { background-image:url("d.png"); background-repeat:no-repeat; background-color:transparent; }
9
.jstree-classic li { background-position:-90px 0; background-repeat:repeat-y;  }
10
.jstree-classic li.jstree-last { background:transparent; }
11
.jstree-classic .jstree-open > ins { background-position:-72px 0; }
12
.jstree-classic .jstree-closed > ins { background-position:-54px 0; }
13
.jstree-classic .jstree-leaf > ins { background-position:-36px 0; }
14
15
.jstree-classic .jstree-hovered { background:#e7f4f9; border:1px solid #e7f4f9; padding:0 2px 0 1px; }
16
.jstree-classic .jstree-clicked { background:navy; border:1px solid navy; padding:0 2px 0 1px; color:white; }
17
.jstree-classic a .jstree-icon { background-position:-56px -19px; }
18
.jstree-classic .jstree-open > a .jstree-icon { background-position:-56px -36px; }
19
.jstree-classic a.jstree-loading .jstree-icon { background:url("throbber.gif") center center no-repeat !important; }
20
21
.jstree-classic.jstree-focused { background:white; }
22
23
.jstree-classic .jstree-no-dots li,
24
.jstree-classic .jstree-no-dots .jstree-leaf > ins { background:transparent; }
25
.jstree-classic .jstree-no-dots .jstree-open > ins { background-position:-18px 0; }
26
.jstree-classic .jstree-no-dots .jstree-closed > ins { background-position:0 0; }
27
28
.jstree-classic .jstree-no-icons a .jstree-icon { display:none; }
29
30
.jstree-classic .jstree-search { font-style:italic; }
31
32
.jstree-classic .jstree-no-icons .jstree-checkbox { display:inline-block; }
33
.jstree-classic .jstree-no-checkboxes .jstree-checkbox { display:none !important; }
34
.jstree-classic .jstree-checked > a > .jstree-checkbox { background-position:-38px -19px; }
35
.jstree-classic .jstree-unchecked > a > .jstree-checkbox { background-position:-2px -19px; }
36
.jstree-classic .jstree-undetermined > a > .jstree-checkbox { background-position:-20px -19px; }
37
.jstree-classic .jstree-checked > a > .jstree-checkbox:hover { background-position:-38px -37px; }
38
.jstree-classic .jstree-unchecked > a > .jstree-checkbox:hover { background-position:-2px -37px; }
39
.jstree-classic .jstree-undetermined > a > .jstree-checkbox:hover { background-position:-20px -37px; }
40
41
#vakata-dragged.jstree-classic ins { background:transparent !important; }
42
#vakata-dragged.jstree-classic .jstree-ok { background:url("d.png") -2px -53px no-repeat !important; }
43
#vakata-dragged.jstree-classic .jstree-invalid { background:url("d.png") -18px -53px no-repeat !important; }
44
#jstree-marker.jstree-classic { background:url("d.png") -41px -57px no-repeat !important; text-indent:-100px; }
45
46
.jstree-classic a.jstree-search { color:aqua; }
47
.jstree-classic .jstree-locked a { color:silver; cursor:default; }
48
49
#vakata-contextmenu.jstree-classic-context,
50
#vakata-contextmenu.jstree-classic-context li ul { background:#f0f0f0; border:1px solid #979797; -moz-box-shadow: 1px 1px 2px #999; -webkit-box-shadow: 1px 1px 2px #999; box-shadow: 1px 1px 2px #999; }
51
#vakata-contextmenu.jstree-classic-context li { }
52
#vakata-contextmenu.jstree-classic-context a { color:black; }
53
#vakata-contextmenu.jstree-classic-context a:hover,
54
#vakata-contextmenu.jstree-classic-context .vakata-hover > a { padding:0 5px; background:#e8eff7; border:1px solid #aecff7; color:black; -moz-border-radius:2px; -webkit-border-radius:2px; border-radius:2px; }
55
#vakata-contextmenu.jstree-classic-context li.jstree-contextmenu-disabled a,
56
#vakata-contextmenu.jstree-classic-context li.jstree-contextmenu-disabled a:hover { color:silver; background:transparent; border:0; padding:1px 4px; }
57
#vakata-contextmenu.jstree-classic-context li.vakata-separator { background:white; border-top:1px solid #e0e0e0; margin:0; }
58
#vakata-contextmenu.jstree-classic-context li ul { margin-left:-4px; }
59
60
/* IE6 BEGIN */
61
.jstree-classic li,
62
.jstree-classic ins,
63
#vakata-dragged.jstree-classic .jstree-invalid,
64
#vakata-dragged.jstree-classic .jstree-ok,
65
#jstree-marker.jstree-classic { _background-image:url("d.gif"); }
66
.jstree-classic .jstree-open ins { _background-position:-72px 0; }
67
.jstree-classic .jstree-closed ins { _background-position:-54px 0; }
68
.jstree-classic .jstree-leaf ins { _background-position:-36px 0; }
69
.jstree-classic .jstree-open a ins.jstree-icon { _background-position:-56px -36px; }
70
.jstree-classic .jstree-closed a ins.jstree-icon { _background-position:-56px -19px; }
71
.jstree-classic .jstree-leaf a ins.jstree-icon { _background-position:-56px -19px; }
72
#vakata-contextmenu.jstree-classic-context ins { _display:none; }
73
#vakata-contextmenu.jstree-classic-context li { _zoom:1; }
74
.jstree-classic .jstree-undetermined a .jstree-checkbox { _background-position:-20px -19px; }
75
.jstree-classic .jstree-checked a .jstree-checkbox { _background-position:-38px -19px; }
76
.jstree-classic .jstree-unchecked a .jstree-checkbox { _background-position:-2px -19px; }
77
/* IE6 END */

Return to bug 11873