spree_core 0.30.2 → 0.40.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (104) hide show
  1. data/app/controllers/admin/base_controller.rb +0 -31
  2. data/app/controllers/admin/orders_controller.rb +10 -9
  3. data/app/controllers/admin/overview_controller.rb +1 -1
  4. data/app/controllers/admin/products_controller.rb +8 -8
  5. data/app/controllers/admin/properties_controller.rb +1 -1
  6. data/app/controllers/admin/shipments_controller.rb +6 -3
  7. data/app/controllers/admin/shipping_methods_controller.rb +1 -1
  8. data/app/controllers/admin/tax_rates_controller.rb +2 -2
  9. data/app/controllers/admin/taxons_controller.rb +1 -2
  10. data/app/controllers/admin/users_controller.rb +7 -8
  11. data/app/controllers/admin/variants_controller.rb +2 -2
  12. data/app/controllers/countries_controller.rb +1 -1
  13. data/app/controllers/locale_controller.rb +1 -1
  14. data/app/controllers/spree/base_controller.rb +1 -117
  15. data/app/controllers/states_controller.rb +1 -1
  16. data/app/helpers/spree/base_helper.rb +1 -7
  17. data/app/helpers/taxons_helper.rb +2 -2
  18. data/app/models/app_configuration.rb +0 -3
  19. data/app/models/calculator/flat_percent_item_total.rb +2 -1
  20. data/app/models/calculator/vat.rb +1 -1
  21. data/app/models/creditcard.rb +1 -1
  22. data/app/models/gateway/authorize_net.rb +13 -2
  23. data/app/models/gateway/authorize_net_cim.rb +11 -0
  24. data/app/models/gateway/beanstream.rb +30 -7
  25. data/app/models/inventory_unit.rb +21 -31
  26. data/app/models/line_item.rb +7 -8
  27. data/app/models/order.rb +4 -1
  28. data/app/models/product_group.rb +4 -8
  29. data/app/models/property.rb +1 -3
  30. data/app/models/return_authorization.rb +6 -1
  31. data/app/models/state_event.rb +3 -3
  32. data/app/models/state_monitor.rb +16 -16
  33. data/app/models/taxon.rb +6 -7
  34. data/app/models/user.rb +4 -0
  35. data/app/views/admin/general_settings/edit.html.erb +0 -8
  36. data/app/views/admin/general_settings/show.html.erb +5 -10
  37. data/app/views/admin/images/_form.html.erb +1 -1
  38. data/app/views/admin/images/index.html.erb +1 -1
  39. data/app/views/admin/option_types/new.html.erb +1 -1
  40. data/app/views/admin/orders/_add_product.html.erb +3 -3
  41. data/app/views/admin/orders/_form.html.erb +3 -0
  42. data/app/views/admin/orders/_user_form.html.erb +1 -1
  43. data/app/views/admin/orders/index.html.erb +2 -2
  44. data/app/views/admin/orders/show.html.erb +3 -8
  45. data/app/views/admin/orders/user.html.erb +1 -1
  46. data/app/views/admin/product_groups/index.html.erb +1 -1
  47. data/app/views/admin/product_groups/show.html.erb +1 -1
  48. data/app/views/admin/products/index.html.erb +1 -1
  49. data/app/views/admin/return_authorizations/_form.html.erb +3 -1
  50. data/app/views/admin/shared/_address_form.html.erb +1 -1
  51. data/app/views/admin/shared/_configuration_menu.html.erb +11 -11
  52. data/app/views/admin/shared/_order_tabs.html.erb +12 -12
  53. data/app/views/admin/shared/_product_tabs.html.erb +6 -6
  54. data/app/views/admin/states/_state_list.html.erb +2 -2
  55. data/app/views/admin/taxonomies/_js_head.html.erb +6 -8
  56. data/app/views/admin/taxonomies/edit.html.erb +11 -11
  57. data/app/views/admin/taxonomies/get_children.json.erb +5 -5
  58. data/app/views/admin/taxons/available.js.erb +10 -10
  59. data/app/views/admin/taxons/selected.html.erb +13 -13
  60. data/app/views/admin/variants/index.html.erb +1 -1
  61. data/app/views/checkout/_address.html.erb +2 -2
  62. data/app/views/layouts/admin.html.erb +1 -2
  63. data/app/views/layouts/spree_application.html.erb +1 -2
  64. data/app/views/shared/_admin_head.html.erb +3 -3
  65. data/app/views/shared/_doc_and_xmlns.html.erb +2 -0
  66. data/app/views/shared/_filters.html.erb +3 -28
  67. data/app/views/taxons/show.html.erb +7 -5
  68. data/config/initializers/spree.rb +1 -19
  69. data/config/locales/en.yml +0 -2
  70. data/config/routes.rb +3 -5
  71. data/db/migrate/20091007134354_change_taxons_to_nested_set.rb +2 -2
  72. data/lib/product_filters.rb +10 -11
  73. data/lib/scopes/product.rb +15 -0
  74. data/lib/spree/mail_settings.rb +2 -4
  75. data/lib/spree/preference_access.rb +3 -3
  76. data/lib/spree_base.rb +116 -0
  77. data/lib/spree_core.rb +3 -1
  78. data/lib/spree_core/preferences/model_hooks.rb +1 -1
  79. data/lib/tasks/install.rake +0 -1
  80. data/public/javascripts/admin.js +0 -6
  81. data/public/javascripts/admin/checkouts/edit.js +41 -40
  82. data/public/javascripts/admin/orders/edit_form.js +5 -4
  83. data/public/javascripts/jquery.cookie.js +96 -0
  84. data/public/javascripts/jquery.delayedobserver.js +35 -0
  85. data/public/javascripts/jsTree/jquery.jstree.js +3510 -0
  86. data/public/javascripts/jsTree/themes/apple/d.png +0 -0
  87. data/public/javascripts/jsTree/themes/apple/style.css +60 -34
  88. data/public/javascripts/jsTree/themes/apple/throbber.gif +0 -0
  89. data/public/javascripts/taxonomy.js +150 -149
  90. data/public/stylesheets/admin/admin.css +0 -34
  91. metadata +36 -43
  92. data/app/controllers/password_resets_controller.rb +0 -48
  93. data/app/helpers/users_helper.rb +0 -13
  94. data/app/models/spree/alert.rb +0 -13
  95. data/app/views/admin/shared/_alert.html.erb +0 -6
  96. data/app/views/shared/_login.html.erb +0 -21
  97. data/app/views/shared/_user_form.html.erb +0 -17
  98. data/lib/spree/i18n_utils.rb +0 -47
  99. data/public/javascripts/jquery.js +0 -19
  100. data/public/javascripts/jrails.autocomplete.js +0 -274
  101. data/public/javascripts/jrails.js +0 -1
  102. data/public/javascripts/jsTree/jquery.tree.js +0 -2058
  103. data/public/javascripts/jsTree/plugins/jquery.tree.contextmenu.js +0 -129
  104. data/public/javascripts/jsTree/themes/apple/icons.png +0 -0
@@ -1,19 +0,0 @@
1
- /*
2
- * jQuery JavaScript Library v1.3.2
3
- * http://jquery.com/
4
- *
5
- * Copyright (c) 2009 John Resig
6
- * Dual licensed under the MIT and GPL licenses.
7
- * http://docs.jquery.com/License
8
- *
9
- * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
10
- * Revision: 6246
11
- */
12
- (function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G))}else{E.text=G}F.insertBefore(E,F.firstChild);F.removeChild(E)}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase()},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F)}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H}})},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return !o.className.has(F,G)}).join(" "):""}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E}}return -1},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G}}}else{while((G=E[F++])!=null){H[I++]=G}}return H},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G])}}}catch(I){F=K}return F},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H])}}return G},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I}}return F.concat.apply([],F)}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode},parents:function(E){return o.dir(E,"parentNode")},next:function(E){return o.nth(E,2,"nextSibling")},prev:function(E){return o.nth(E,2,"previousSibling")},nextAll:function(E){return o.dir(E,"nextSibling")},prevAll:function(E){return o.dir(E,"previousSibling")},siblings:function(E){return o.sibling(E.parentNode.firstChild,E)},children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes)}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H)}return this.pushStack(o.unique(H),E,G)}});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}});
13
- /*
14
- * Sizzle CSS Selector Engine - v0.9.3
15
- * Copyright 2009, The Dojo Foundation
16
- * Released under the MIT, BSD, and GPL Licenses.
17
- * More information: http://sizzlejs.com/
18
- */
19
- (function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML=' <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G]}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||""}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"))}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none"}return this}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]()}):this.animate(t("toggle",3),G,F)},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F)},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this)}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow}}if(K.overflow!=null){this.style.overflow="hidden"}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G=o.timers;if(F){this.queue([])}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}},13)}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show()},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})();
@@ -1,274 +0,0 @@
1
- (function($) {
2
- function stopEvent(e) {
3
- e.preventDefault();
4
- e.stopPropagation();
5
- e.stopped = true;
6
- }
7
-
8
- function getFirstDifferencePos(newS, oldS) {
9
- var boundary = Math.min(newS.length, oldS.length);
10
- for (var index = 0; index < boundary; ++index)
11
- if (newS[index] != oldS[index]) return index;
12
- return boundary;
13
- }
14
-
15
- var AutoComplete = function(element, update, url, options) {
16
- var autocomplete = this;
17
-
18
- this.element = element;
19
- this.url = url;
20
- this.update = update;
21
- this.hasFocus = false;
22
- this.changed = false;
23
- this.active = false;
24
- this.index = 0;
25
- this.entryCount = 0;
26
- this.oldElementValue = this.element.value;
27
- this.observer = null;
28
- this.options = $.extend({
29
- paramName: this.element.name,
30
- type: 'GET',
31
- tokens: [],
32
- frequency: 0.4,
33
- minChars: 1,
34
- onShow: function(element, update) {
35
- if (!update.style.position || update.style.position == 'absolute') {
36
- var position = $(element).position();
37
- $(update).css({
38
- position: 'absolute',
39
- left: position.left + 'px',
40
- top: $(element).outerHeight() + position.top + 'px',
41
- width: $(element).outerWidth() + 'px'
42
- });
43
- }
44
- $(update).fadeIn();
45
- },
46
- onHide: function(element, update) {
47
- $(update).fadeOut();
48
- }
49
- }, options);
50
-
51
- if (typeof(this.options.tokens) == 'string') {
52
- this.options.tokens = new Array(this.options.tokens);
53
- }
54
- if (!$.inArray("\n", this.options.tokens)) {
55
- this.options.tokens.push("\n");
56
- }
57
-
58
- $(this.update).hide();
59
- $(this.element).attr('autocomplete', 'off')
60
- .blur(function(e) { autocomplete.onBlur(e); })
61
- .keypress(function(e) { autocomplete.onKeyPress(e); });
62
- }
63
- $.extend(AutoComplete.prototype, {
64
- show: function() {
65
- if ($(this.update).not(':visible')) this.options.onShow(this.element, this.update);
66
- },
67
- hide: function() {
68
- this.stopIndicator();
69
- if ($(this.update).is(':visible')) this.options.onHide(this.element, this.update);
70
- },
71
- startIndicator: function() {
72
- if (this.options.indicator) $('#' + this.options.indicator).show();
73
- },
74
- stopIndicator: function() {
75
- if (this.options.indicator) $('#' + this.options.indicator).hide();
76
- },
77
- onKeyPress: function(e) {
78
- var autocomplete = this;
79
-
80
- if (this.active) {
81
- switch (e.keyCode) {
82
- case 9: // tab
83
- case 13: // return
84
- this.selectEntry();
85
- stopEvent(e);
86
- case 27: // esc
87
- this.hide();
88
- this.active = false;
89
- stopEvent(e);
90
- case 37: // left
91
- case 39: // right
92
- return;
93
- case 38: // up
94
- this.markPrevious();
95
- this.render();
96
- stopEvent(e);
97
- return;
98
- case 40: // down
99
- this.markNext();
100
- this.render();
101
- stopEvent(e);
102
- return;
103
- }
104
- }
105
- else if (e.keyCode == 9 || e.keyCode == 13) return;
106
-
107
- this.changed = this.hasFocus = true;
108
- if (this.observer) clearTimeout(this.observer);
109
- this.observer = setTimeout(function() { autocomplete.onObserverEvent(); }, this.frequency * 1000);
110
- },
111
- activate: function() {
112
- this.changed = false;
113
- this.hasFocus = true;
114
- this.getUpdatedChoices();
115
- },
116
- onHover: function(e) {
117
- if (this.index != e.target.autocompleteIndex) {
118
- this.index = e.target.autocompleteIndex;
119
- this.render();
120
- }
121
- stopEvent(e);
122
- },
123
- onClick: function(e) {
124
- this.index = e.target.autocompleteIndex;
125
- this.selectEntry();
126
- this.hide();
127
- },
128
- onBlur: function(e) {
129
- var autocomplete = this;
130
- setTimeout(function() { autocomplete.hide(); }, 250);
131
- this.active = this.hasFocus = false;
132
- },
133
- render: function() {
134
- if (this.entryCount > 0) {
135
- for (var i = 0; i < this.entryCount; ++i) {
136
- $(this.getEntry(i))[this.index == i ? 'addClass' : 'removeClass']('selected');
137
- }
138
- if (this.hasFocus) {
139
- this.show();
140
- this.active = true;
141
- }
142
- }
143
- else {
144
- this.active = false;
145
- this.hide();
146
- }
147
- },
148
- markPrevious: function() {
149
- if (this.index > 0) --this.index;
150
- else this.index = this.entryCount - 1;
151
- },
152
- markNext: function() {
153
- if (this.index < this.entryCount - 1) ++this.index;
154
- else this.index = 0;
155
- },
156
- getEntry: function(i) {
157
- return $(this.update.firstChild).children('li').get(i);
158
- },
159
- getCurrentEntry: function() {
160
- return this.getEntry(this.index);
161
- },
162
- selectEntry: function() {
163
- this.active = false;
164
- this.updateElement(this.getCurrentEntry());
165
- },
166
- updateElement: function(element) {
167
- if (this.options.updateElement) {
168
- this.options.updateElement(element);
169
- return;
170
- }
171
-
172
- var value = $.trim(this.options.select ?
173
- $('.' + this.options.select, element).text() :
174
- $(element).text());
175
-
176
- var bounds = this.getTokenBounds();
177
- if (bounds[0] != -1) {
178
- var newValue = this.element.value.substr(0, bounds[0]);
179
- var whitespace = this.element.value.substr(bounds[0]).match(/^\s+/);
180
- if (whitespace) newValue += whitespace[0];
181
- this.element.value = newValue + value + this.element.value.substr(bounds[1]);
182
- }
183
- else {
184
- this.element.value = value;
185
- }
186
-
187
- this.oldElementValue = $(this.element).focus().val();
188
-
189
- if (this.options.afterUpdateElement) this.options.afterUpdateElement(this.element, element);
190
- },
191
- updateChoices: function(choices) {
192
- if (!this.changed && this.hasFocus) {
193
- $(this.update).html($.trim(choices));
194
- var i = 0, autocomplete = this;
195
- this.entryCount = $(this.update.firstChild).children('li').each(function() {
196
- this.autocompleteIndex = i++;
197
- autocomplete.addObservers(this);
198
- }).length;
199
- }
200
-
201
- this.stopIndicator();
202
- this.index = 0;
203
-
204
- if (this.entryCount == 1 && this.options.autoSelect) {
205
- this.selectEntry();
206
- this.hide();
207
- }
208
- else {
209
- this.render();
210
- }
211
- },
212
- addObservers: function(element) {
213
- var autocomplete = this;
214
- $(element)
215
- .mouseover(function(e) { autocomplete.onHover(e); })
216
- .click(function(e) { autocomplete.onClick(e); });
217
- },
218
- onObserverEvent: function() {
219
- this.changed = false;
220
- this.tokenBounds = null;
221
- if (this.getToken().length >= this.options.minChars) {
222
- this.getUpdatedChoices();
223
- }
224
- else {
225
- this.active = false;
226
- this.hide();
227
- }
228
- this.oldElementValue = this.element.value;
229
- },
230
- getToken: function() {
231
- var bounds = this.getTokenBounds();
232
- return $.trim(this.element.value.substring(bounds[0], bounds[1]));
233
- },
234
- getTokenBounds: function() {
235
- if (null != this.tokenBounds) return this.tokenBounds;
236
- var value = $.trim(this.element.value);
237
- if (!value.length) return [-1, 0];
238
- var diff = getFirstDifferencePos(value, this.oldElementValue);
239
- var offset = (diff == this.oldElementValue.length ? 1 : 0);
240
- var prevTokenPos = -1, nextTokenPos = value.length;
241
- for (var tp = null, index = 0, l = this.options.tokens.length; index < l; ++index) {
242
- tp = value.lastIndexOf(this.options.tokens[index], diff + offset - 1);
243
- if (tp > prevTokenPos) prevTokenPos = tp;
244
- tp = value.indexOf(this.options.tokens[index], diff + offset);
245
- if (-1 != tp && tp < nextTokenPos) nextTokenPos = tp;
246
- }
247
- return (this.tokenBounds = [prevTokenPos + 1, nextTokenPos]);
248
- },
249
- getUpdatedChoices: function() {
250
- this.startIndicator();
251
-
252
- var autocomplete = this, entry = encodeURIComponent(this.options.paramName) + '=' + encodeURIComponent(this.getToken());
253
- this.options.data = this.options.callback ? this.options.callback(this.element, entry) : entry;
254
-
255
- if (this.options.defaultParams) this.options.data += '&' + this.options.defaultParams;
256
- var ajaxOptions = $.extend({}, this.options, {
257
- url: this.url,
258
- success: function(data, status) {
259
- autocomplete.updateChoices(data);
260
- }
261
- });
262
- $.ajax(ajaxOptions);
263
- }
264
- });
265
-
266
- $.fn.autocomplete = function(options) {
267
- var update = $('#' + options.update).get(0), url = options.url;
268
- options.update = options.url = undefined;
269
- this.filter(':text').each(function() {
270
- new AutoComplete(this, update, url, options);
271
- });
272
- return this;
273
- }
274
- })(jQuery);
@@ -1 +0,0 @@
1
- (function($){$.ajaxSettings.accepts._default="text/javascript, text/html, application/xml, text/xml, */*"})(jQuery);(function($){$.fn.reset=function(){return this.each(function(){if(typeof this.reset=="function"||(typeof this.reset=="object"&&!this.reset.nodeType)){this.reset()}})};$.fn.enable=function(){return this.each(function(){this.disabled=false})};$.fn.disable=function(){return this.each(function(){this.disabled=true})}})(jQuery);(function($){$.extend({fieldEvent:function(el,obs){var field=el[0]||el,e="change";if(field.type=="radio"||field.type=="checkbox"){e="click"}else{if(obs&&(field.type=="text"||field.type=="textarea"||field.type=="password")){e="keyup"}}return e}});$.fn.extend({delayedObserver:function(delay,callback){var el=$(this);if(typeof window.delayedObserverStack=="undefined"){window.delayedObserverStack=[]}if(typeof window.delayedObserverCallback=="undefined"){window.delayedObserverCallback=function(stackPos){var observed=window.delayedObserverStack[stackPos];if(observed.timer){clearTimeout(observed.timer)}observed.timer=setTimeout(function(){observed.timer=null;observed.callback(observed.obj,observed.obj.formVal())},observed.delay*1000);observed.oldVal=observed.obj.formVal()}}window.delayedObserverStack.push({obj:el,timer:null,delay:delay,oldVal:el.formVal(),callback:callback});var stackPos=window.delayedObserverStack.length-1;if(el[0].tagName=="FORM"){$(":input",el).each(function(){var field=$(this);field.bind($.fieldEvent(field,delay),function(){var observed=window.delayedObserverStack[stackPos];if(observed.obj.formVal()==observed.oldVal){return}else{window.delayedObserverCallback(stackPos)}})})}else{el.bind($.fieldEvent(el,delay),function(){var observed=window.delayedObserverStack[stackPos];if(observed.obj.formVal()==observed.oldVal){return}else{window.delayedObserverCallback(stackPos)}})}},formVal:function(){var el=this[0];if(el.tagName=="FORM"){return this.serialize()}if(el.type=="checkbox"||el.type=="radio"){return this.filter("input:checked").val()||""}else{return this.val()}}})})(jQuery);(function($){$.fn.extend({visualEffect:function(o,options){if(options){speed=options.duration*1000}else{speed=null}e=o.replace(/\_(.)/g,function(m,l){return l.toUpperCase()});return eval("$(this)."+e+"("+speed+")")},appear:function(speed,callback){return this.fadeIn(speed,callback)},blindDown:function(speed,callback){return this.show("blind",{direction:"vertical"},speed,callback)},blindUp:function(speed,callback){return this.hide("blind",{direction:"vertical"},speed,callback)},blindRight:function(speed,callback){return this.show("blind",{direction:"horizontal"},speed,callback)},blindLeft:function(speed,callback){this.hide("blind",{direction:"horizontal"},speed,callback);return this},dropOut:function(speed,callback){return this.hide("drop",{direction:"down"},speed,callback)},dropIn:function(speed,callback){return this.show("drop",{direction:"up"},speed,callback)},fade:function(speed,callback){return this.fadeOut(speed,callback)},fadeToggle:function(speed,callback){return this.animate({opacity:"toggle"},speed,callback)},fold:function(speed,callback){return this.hide("fold",{},speed,callback)},foldOut:function(speed,callback){return this.show("fold",{},speed,callback)},grow:function(speed,callback){return this.show("scale",{},speed,callback)},highlight:function(speed,callback){return this.show("highlight",{},speed,callback)},puff:function(speed,callback){return this.hide("puff",{},speed,callback)},pulsate:function(speed,callback){return this.show("pulsate",{},speed,callback)},shake:function(speed,callback){return this.show("shake",{},speed,callback)},shrink:function(speed,callback){return this.hide("scale",{},speed,callback)},squish:function(speed,callback){return this.hide("scale",{origin:["top","left"]},speed,callback)},slideUp:function(speed,callback){return this.hide("slide",{direction:"up"},speed,callback)},slideDown:function(speed,callback){return this.show("slide",{direction:"up"},speed,callback)},switchOff:function(speed,callback){return this.hide("clip",{},speed,callback)},switchOn:function(speed,callback){return this.show("clip",{},speed,callback)}})})(jQuery);
@@ -1,2058 +0,0 @@
1
- /*
2
- * jsTree 0.9.9a
3
- * http://jstree.com/
4
- *
5
- * Copyright (c) 2009 Ivan Bozhanov (vakata.com)
6
- *
7
- * Dual licensed under the MIT and GPL licenses:
8
- * http://www.opensource.org/licenses/mit-license.php
9
- * http://www.gnu.org/licenses/gpl.html
10
- *
11
- * Date: 2009-10-06
12
- *
13
- */
14
-
15
- (function($) {
16
- // jQuery plugin
17
- $.tree = {
18
- datastores : { },
19
- plugins : { },
20
- defaults : {
21
- data : {
22
- async : false, // Are async requests used to load open_branch contents
23
- type : "html", // One of included datastores
24
- opts : { method: "GET", url: false } // Options passed to datastore
25
- },
26
- selected : false, // FALSE or STRING or ARRAY
27
- opened : [], // ARRAY OF INITIALLY OPENED NODES
28
- languages : [], // ARRAY of string values (which will be used as CSS classes - so they must be valid)
29
- ui : {
30
- dots : true, // BOOL - dots or no dots
31
- animation : 0, // INT - duration of open/close animations in miliseconds
32
- scroll_spd : 4,
33
- theme_path : false, // Path to the theme CSS file - if set to false and theme_name is not false - will lookup jstree-path-here/themes/theme-name-here/style.css
34
- theme_name : "default",// if set to false no theme will be loaded
35
- selected_parent_close : "select_parent", // false, "deselect", "select_parent"
36
- selected_delete : "select_previous" // false, "select_previous"
37
- },
38
- types : {
39
- "default" : {
40
- clickable : true, // can be function
41
- renameable : true, // can be function
42
- deletable : true, // can be function
43
- creatable : true, // can be function
44
- draggable : true, // can be function
45
- max_children : -1, // -1 - not set, 0 - no children, 1 - one child, etc // can be function
46
- max_depth : -1, // -1 - not set, 0 - no children, 1 - one level of children, etc // can be function
47
- valid_children : "all", // all, none, array of values // can be function
48
- icon : {
49
- image : false,
50
- position : false
51
- }
52
- }
53
- },
54
- rules : {
55
- multiple : false, // FALSE | CTRL | ON - multiple selection off/ with or without holding Ctrl
56
- multitree : "none", // all, none, array of tree IDs to accept from
57
- type_attr : "rel", // STRING attribute name (where is the type stored as string)
58
- createat : "bottom", // STRING (top or bottom) new nodes get inserted at top or bottom
59
- drag_copy : "ctrl", // FALSE | CTRL | ON - drag to copy off/ with or without holding Ctrl
60
- drag_button : "left", // left, right or both
61
- use_max_children : true,
62
- use_max_depth : true,
63
-
64
- max_children: -1,
65
- max_depth : -1,
66
- valid_children : "all"
67
- },
68
- lang : {
69
- new_node : "New folder",
70
- loading : "Loading ..."
71
- },
72
- callback : {
73
- beforechange: function(NODE,TREE_OBJ) { return true },
74
- beforeopen : function(NODE,TREE_OBJ) { return true },
75
- beforeclose : function(NODE,TREE_OBJ) { return true },
76
- beforemove : function(NODE,REF_NODE,TYPE,TREE_OBJ) { return true },
77
- beforecreate: function(NODE,REF_NODE,TYPE,TREE_OBJ) { return true },
78
- beforerename: function(NODE,LANG,TREE_OBJ) { return true },
79
- beforedelete: function(NODE,TREE_OBJ) { return true },
80
- beforedata : function(NODE,TREE_OBJ) { return { id : $(NODE).attr("id") || 0 } }, // PARAMETERS PASSED TO SERVER
81
- ondata : function(DATA,TREE_OBJ) { return DATA; }, // modify data before parsing it
82
- onparse : function(STR,TREE_OBJ) { return STR; }, // modify string before visualizing it
83
- onhover : function(NODE,TREE_OBJ) { }, // node hovered
84
- onselect : function(NODE,TREE_OBJ) { }, // node selected
85
- ondeselect : function(NODE,TREE_OBJ) { }, // node deselected
86
- onchange : function(NODE,TREE_OBJ) { }, // focus changed
87
- onrename : function(NODE,TREE_OBJ,RB) { }, // node renamed
88
- onmove : function(NODE,REF_NODE,TYPE,TREE_OBJ,RB) { }, // move completed
89
- oncopy : function(NODE,REF_NODE,TYPE,TREE_OBJ,RB) { }, // copy completed
90
- oncreate : function(NODE,REF_NODE,TYPE,TREE_OBJ,RB) { }, // node created
91
- ondelete : function(NODE,TREE_OBJ,RB) { }, // node deleted
92
- onopen : function(NODE,TREE_OBJ) { }, // node opened
93
- onopen_all : function(TREE_OBJ) { }, // all nodes opened
94
- onclose_all : function(TREE_OBJ) { }, // all nodes closed
95
- onclose : function(NODE,TREE_OBJ) { }, // node closed
96
- error : function(TEXT,TREE_OBJ) { }, // error occured
97
- ondblclk : function(NODE,TREE_OBJ) { TREE_OBJ.toggle_branch.call(TREE_OBJ, NODE); TREE_OBJ.select_branch.call(TREE_OBJ, NODE); },
98
- onrgtclk : function(NODE,TREE_OBJ,EV) { }, // right click - to prevent use: EV.preventDefault(); EV.stopPropagation(); return false
99
- onload : function(TREE_OBJ) { },
100
- oninit : function(TREE_OBJ) { },
101
- onfocus : function(TREE_OBJ) { },
102
- ondestroy : function(TREE_OBJ) { },
103
- onsearch : function(NODES, TREE_OBJ) { NODES.addClass("search"); },
104
- ondrop : function(NODE,REF_NODE,TYPE,TREE_OBJ) { },
105
- check : function(RULE,NODE,VALUE,TREE_OBJ) { return VALUE; },
106
- check_move : function(NODE,REF_NODE,TYPE,TREE_OBJ) { return true; }
107
- },
108
- plugins : { }
109
- },
110
-
111
- create : function () { return new tree_component(); },
112
- focused : function () { return tree_component.inst[tree_component.focused]; },
113
- reference : function (obj) {
114
- var o = $(obj);
115
- if(!o.size()) o = $("#" + obj);
116
- if(!o.size()) return null;
117
- o = (o.is(".tree")) ? o.attr("id") : o.parents(".tree:eq(0)").attr("id");
118
- return tree_component.inst[o] || null;
119
- },
120
- rollback : function (data) {
121
- for(var i in data) {
122
- if(!data.hasOwnProperty(i)) continue;
123
- var tmp = tree_component.inst[i];
124
- var lock = !tmp.locked;
125
-
126
- // if not locked - lock the tree
127
- if(lock) tmp.lock(true);
128
- // Cancel ongoing rename
129
- tmp.inp = false;
130
- tmp.container.html(data[i].html).find(".dragged").removeClass("dragged").end().find(".hover").removeClass("hover");
131
-
132
- if(data[i].selected) {
133
- tmp.selected = $("#" + data[i].selected);
134
- tmp.selected_arr = [];
135
- tmp.container
136
- .find("a.clicked").each( function () {
137
- tmp.selected_arr.push(tmp.get_node(this));
138
- });
139
- }
140
- // if this function set the lock - unlock
141
- if(lock) tmp.lock(false);
142
-
143
- delete lock;
144
- delete tmp;
145
- }
146
- },
147
- drop_mode : function (opts) {
148
- opts = $.extend(opts, { show : false, type : "default", str : "Foreign node" });
149
- tree_component.drag_drop.foreign = true;
150
- tree_component.drag_drop.isdown = true;
151
- tree_component.drag_drop.moving = true;
152
- tree_component.drag_drop.appended = false;
153
- tree_component.drag_drop.f_type = opts.type;
154
- tree_component.drag_drop.f_data = opts;
155
-
156
-
157
- if(!opts.show) {
158
- tree_component.drag_drop.drag_help = false;
159
- tree_component.drag_drop.drag_node = false;
160
- }
161
- else {
162
- tree_component.drag_drop.drag_help = $("<div id='jstree-dragged' class='tree tree-default'><ul><li class='last dragged foreign'><a href='#'><ins>&nbsp;</ins>" + opts.str + "</a></li></ul></div>");
163
- tree_component.drag_drop.drag_node = tree_component.drag_drop.drag_help.find("li:eq(0)");
164
- }
165
- if($.tree.drag_start !== false) $.tree.drag_start.call(null, false);
166
- },
167
- drag_start : false,
168
- drag : false,
169
- drag_end : false
170
- };
171
- $.fn.tree = function (opts) {
172
- return this.each(function() {
173
- var conf = $.extend({},opts);
174
- if(tree_component.inst && tree_component.inst[$(this).attr('id')]) tree_component.inst[$(this).attr('id')].destroy();
175
- if(conf !== false) new tree_component().init(this, conf);
176
- });
177
- };
178
-
179
- // core
180
- function tree_component () {
181
- return {
182
- cntr : ++tree_component.cntr,
183
- settings : $.extend({},$.tree.defaults),
184
-
185
- init : function(elem, conf) {
186
- var _this = this;
187
- this.container = $(elem);
188
- if(this.container.size == 0) return false;
189
- tree_component.inst[this.cntr] = this;
190
- if(!this.container.attr("id")) this.container.attr("id","jstree_" + this.cntr);
191
- tree_component.inst[this.container.attr("id")] = tree_component.inst[this.cntr];
192
- tree_component.focused = this.cntr;
193
- this.settings = $.extend(true, {}, this.settings, conf);
194
-
195
- // DEAL WITH LANGUAGE VERSIONS
196
- if(this.settings.languages && this.settings.languages.length) {
197
- this.current_lang = this.settings.languages[0];
198
- var st = false;
199
- var id = "#" + this.container.attr("id");
200
- for(var ln = 0; ln < this.settings.languages.length; ln++) {
201
- st = tree_component.add_css(id + " ." + this.settings.languages[ln]);
202
- if(st !== false) st.style.display = (this.settings.languages[ln] == this.current_lang) ? "" : "none";
203
- }
204
- }
205
- else this.current_lang = false;
206
- // THEMES
207
- this.container.addClass("tree");
208
- if(this.settings.ui.theme_name !== false) {
209
- if(this.settings.ui.theme_path === false) {
210
- $("script").each(function () {
211
- if(this.src.toString().match(/jquery\.tree.*?js$/)) { _this.settings.ui.theme_path = this.src.toString().replace(/jquery\.tree.*?js$/, "") + "themes/" + _this.settings.ui.theme_name + "/style.css"; return false; }
212
- });
213
- }
214
- if(this.settings.ui.theme_path != "" && $.inArray(this.settings.ui.theme_path, tree_component.themes) == -1) {
215
- tree_component.add_sheet({ url : this.settings.ui.theme_path });
216
- tree_component.themes.push(this.settings.ui.theme_path);
217
- }
218
- this.container.addClass("tree-" + this.settings.ui.theme_name);
219
- }
220
- // TYPE ICONS
221
- var type_icons = "";
222
- for(var t in this.settings.types) {
223
- if(!this.settings.types.hasOwnProperty(t)) continue;
224
- if(!this.settings.types[t].icon) continue;
225
- if( this.settings.types[t].icon.image || this.settings.types[t].icon.position) {
226
- if(t == "default") type_icons += "#" + this.container.attr("id") + " li > a ins { ";
227
- else type_icons += "#" + this.container.attr("id") + " li[rel=" + t + "] > a ins { ";
228
- if(this.settings.types[t].icon.image) type_icons += " background-image:url(" + this.settings.types[t].icon.image + "); ";
229
- if(this.settings.types[t].icon.position) type_icons += " background-position:" + this.settings.types[t].icon.position + "; ";
230
- type_icons += "} ";
231
- }
232
- }
233
- if(type_icons != "") tree_component.add_sheet({ str : type_icons });
234
-
235
- if(this.settings.rules.multiple) this.selected_arr = [];
236
- this.offset = false;
237
- this.hovered = false;
238
- this.locked = false;
239
-
240
- if(tree_component.drag_drop.marker === false) tree_component.drag_drop.marker = $("<div>").attr({ id : "jstree-marker" }).hide().appendTo("body");
241
- this.callback("oninit", [this]);
242
- this.refresh();
243
- this.attach_events();
244
- this.focus();
245
- },
246
- refresh : function (obj) {
247
- if(this.locked) return this.error("LOCKED");
248
- var _this = this;
249
- if(obj && !this.settings.data.async) obj = false;
250
- this.is_partial_refresh = obj ? true : false;
251
-
252
- // SAVE OPENED
253
- this.opened = Array();
254
- if(this.settings.opened != false) {
255
- $.each(this.settings.opened, function (i, item) {
256
- if(this.replace(/^#/,"").length > 0) { _this.opened.push("#" + this.replace(/^#/,"")); }
257
- });
258
- this.settings.opened = false;
259
- }
260
- else {
261
- this.container.find("li.open").each(function (i) { if(this.id) { _this.opened.push("#" + this.id); } });
262
- }
263
-
264
- // SAVE SELECTED
265
- if(this.selected) {
266
- this.settings.selected = Array();
267
- if(obj) {
268
- $(obj).find("li:has(a.clicked)").each(function () {
269
- if(this.id) _this.settings.selected.push("#" + this.id);
270
- });
271
- }
272
- else {
273
- if(this.selected_arr) {
274
- $.each(this.selected_arr, function () {
275
- if(this.attr("id")) _this.settings.selected.push("#" + this.attr("id"));
276
- });
277
- }
278
- else {
279
- if(this.selected.attr("id")) this.settings.selected.push("#" + this.selected.attr("id"));
280
- }
281
- }
282
- }
283
- else if(this.settings.selected !== false) {
284
- var tmp = Array();
285
- if((typeof this.settings.selected).toLowerCase() == "object") {
286
- $.each(this.settings.selected, function () {
287
- if(this.replace(/^#/,"").length > 0) tmp.push("#" + this.replace(/^#/,""));
288
- });
289
- }
290
- else {
291
- if(this.settings.selected.replace(/^#/,"").length > 0) tmp.push("#" + this.settings.selected.replace(/^#/,""));
292
- }
293
- this.settings.selected = tmp;
294
- }
295
-
296
- if(obj && this.settings.data.async) {
297
- this.opened = Array();
298
- obj = this.get_node(obj);
299
- obj.find("li.open").each(function (i) { _this.opened.push("#" + this.id); });
300
- if(obj.hasClass("open")) obj.removeClass("open").addClass("closed");
301
- if(obj.hasClass("leaf")) obj.removeClass("leaf");
302
- obj.children("ul:eq(0)").html("");
303
- return this.open_branch(obj, true, function () { _this.reselect.apply(_this); });
304
- }
305
-
306
- var _this = this;
307
- var _datastore = new $.tree.datastores[this.settings.data.type]();
308
- if(this.container.children("ul").size() == 0) {
309
- this.container.html("<ul class='ltr' style='direction:ltr;'><li class='last'><a class='loading' href='#'><ins>&nbsp;</ins>" + (this.settings.lang.loading || "Loading ...") + "</a></li></ul>");
310
- }
311
- _datastore.load(this.callback("beforedata",[false,this]),this,this.settings.data.opts,function(data) {
312
- data = _this.callback("ondata",[data, _this]);
313
- _datastore.parse(data,_this,_this.settings.data.opts,function(str) {
314
- str = _this.callback("onparse", [str, _this]);
315
- _this.container.empty().append($("<ul class='ltr'>").html(str));
316
- _this.container.find("li:last-child").addClass("last").end().find("li:has(ul)").not(".open").addClass("closed");
317
- _this.container.find("li").not(".open").not(".closed").addClass("leaf");
318
- _this.reselect();
319
- });
320
- });
321
- },
322
- reselect : function (is_callback) {
323
- var _this = this;
324
-
325
- if(!is_callback) this.cl_count = 0;
326
- else this.cl_count --;
327
- // REOPEN BRANCHES
328
- if(this.opened && this.opened.length) {
329
- var opn = false;
330
- for(var j = 0; this.opened && j < this.opened.length; j++) {
331
- if(this.settings.data.async) {
332
- var tmp = this.get_node(this.opened[j]);
333
- if(tmp.size() && tmp.hasClass("closed") > 0) {
334
- opn = true;
335
- var tmp = this.opened[j].toString().replace('/','\\/');
336
- delete this.opened[j];
337
- this.open_branch(tmp, true, function () { _this.reselect.apply(_this, [true]); } );
338
- this.cl_count ++;
339
- }
340
- }
341
- else this.open_branch(this.opened[j], true);
342
- }
343
- if(this.settings.data.async && opn) return;
344
- if(this.cl_count > 0) return;
345
- delete this.opened;
346
- }
347
- if(this.cl_count > 0) return;
348
-
349
- // DOTS and RIGHT TO LEFT
350
- this.container.css("direction","ltr").children("ul:eq(0)").addClass("ltr");
351
- if(this.settings.ui.dots == false) this.container.children("ul:eq(0)").addClass("no_dots");
352
-
353
- // REPOSITION SCROLL
354
- if(this.scrtop) {
355
- this.container.scrollTop(_this.scrtop);
356
- delete this.scrtop;
357
- }
358
- // RESELECT PREVIOUSLY SELECTED
359
- if(this.settings.selected !== false) {
360
- $.each(this.settings.selected, function (i) {
361
- if(_this.is_partial_refresh) _this.select_branch($(_this.settings.selected[i].toString().replace('/','\\/'), _this.container), (_this.settings.rules.multiple !== false) );
362
- else _this.select_branch($(_this.settings.selected[i].toString().replace('/','\\/'), _this.container), (_this.settings.rules.multiple !== false && i > 0) );
363
- });
364
- this.settings.selected = false;
365
- }
366
- this.callback("onload", [_this]);
367
- },
368
-
369
- get : function (obj, format, opts) {
370
- if(!format) format = this.settings.data.type;
371
- if(!opts) opts = this.settings.data.opts;
372
- return new $.tree.datastores[format]().get(obj, this, opts);
373
- },
374
-
375
- attach_events : function () {
376
- var _this = this;
377
-
378
- this.container
379
- .bind("mousedown.jstree", function (event) {
380
- if(tree_component.drag_drop.isdown) {
381
- tree_component.drag_drop.move_type = false;
382
- event.preventDefault();
383
- event.stopPropagation();
384
- event.stopImmediatePropagation();
385
- return false;
386
- }
387
- })
388
- .bind("mouseup.jstree", function (event) {
389
- setTimeout( function() { _this.focus.apply(_this); }, 5);
390
- })
391
- .bind("click.jstree", function (event) {
392
- //event.stopPropagation();
393
- return true;
394
- });
395
- $("#" + this.container.attr("id") + " li")
396
- .live("click", function(event) { // WHEN CLICK IS ON THE ARROW
397
- if(event.target.tagName != "LI") return true;
398
- _this.off_height();
399
- if(event.pageY - $(event.target).offset().top > _this.li_height) return true;
400
- _this.toggle_branch.apply(_this, [event.target]);
401
- event.stopPropagation();
402
- return false;
403
- });
404
- $("#" + this.container.attr("id") + " li a")
405
- .live("click.jstree", function (event) { // WHEN CLICK IS ON THE TEXT OR ICON
406
- if(event.which && event.which == 3) return true;
407
- if(_this.locked) {
408
- event.preventDefault();
409
- event.target.blur();
410
- return _this.error("LOCKED");
411
- }
412
- _this.select_branch.apply(_this, [event.target, event.ctrlKey || _this.settings.rules.multiple == "on"]);
413
- if(_this.inp) { _this.inp.blur(); }
414
- event.preventDefault();
415
- event.target.blur();
416
- return false;
417
- })
418
- .live("dblclick.jstree", function (event) { // WHEN DOUBLECLICK ON TEXT OR ICON
419
- if(_this.locked) {
420
- event.preventDefault();
421
- event.stopPropagation();
422
- event.target.blur();
423
- return _this.error("LOCKED");
424
- }
425
- _this.callback("ondblclk", [_this.get_node(event.target).get(0), _this]);
426
- event.preventDefault();
427
- event.stopPropagation();
428
- event.target.blur();
429
- })
430
- .live("contextmenu.jstree", function (event) {
431
- if(_this.locked) {
432
- event.target.blur();
433
- return _this.error("LOCKED");
434
- }
435
- return _this.callback("onrgtclk", [_this.get_node(event.target).get(0), _this, event]);
436
- })
437
- .live("mouseover.jstree", function (event) {
438
- if(_this.locked) {
439
- event.preventDefault();
440
- event.stopPropagation();
441
- return _this.error("LOCKED");
442
- }
443
- if(_this.hovered !== false && (event.target.tagName == "A" || event.target.tagName == "INS")) {
444
- _this.hovered.children("a").removeClass("hover");
445
- _this.hovered = false;
446
- }
447
- _this.callback("onhover",[_this.get_node(event.target).get(0), _this]);
448
- })
449
- .live("mousedown.jstree", function (event) {
450
- if(_this.settings.rules.drag_button == "left" && event.which && event.which != 1) return true;
451
- if(_this.settings.rules.drag_button == "right" && event.which && event.which != 3) return true;
452
- _this.focus.apply(_this);
453
- if(_this.locked) return _this.error("LOCKED");
454
- // SELECT LIST ITEM NODE
455
- var obj = _this.get_node(event.target);
456
- // IF ITEM IS DRAGGABLE
457
- if(_this.settings.rules.multiple != false && _this.selected_arr.length > 1 && obj.children("a:eq(0)").hasClass("clicked")) {
458
- var counter = 0;
459
- for(var i in _this.selected_arr) {
460
- if(!_this.selected_arr.hasOwnProperty(i)) continue;
461
- if(_this.check("draggable", _this.selected_arr[i])) {
462
- _this.selected_arr[i].addClass("dragged");
463
- tree_component.drag_drop.origin_tree = _this;
464
- counter ++;
465
- }
466
- }
467
- if(counter > 0) {
468
- if(_this.check("draggable", obj)) tree_component.drag_drop.drag_node = obj;
469
- else tree_component.drag_drop.drag_node = _this.container.find("li.dragged:eq(0)");
470
- tree_component.drag_drop.isdown = true;
471
- tree_component.drag_drop.drag_help = $("<div id='jstree-dragged' class='tree " + ( _this.settings.ui.theme_name != "" ? " tree-" + _this.settings.ui.theme_name : "" ) + "' />").append("<ul class='" + _this.container.children("ul:eq(0)").get(0).className + "' />");
472
- var tmp = tree_component.drag_drop.drag_node.clone();
473
- if(_this.settings.languages.length > 0) tmp.find("a").not("." + _this.current_lang).hide();
474
- tree_component.drag_drop.drag_help.children("ul:eq(0)").append(tmp);
475
- tree_component.drag_drop.drag_help.find("li:eq(0)").removeClass("last").addClass("last").children("a").html("<ins>&nbsp;</ins>Multiple selection").end().children("ul").remove();
476
-
477
- tree_component.drag_drop.dragged = _this.container.find("li.dragged");
478
- }
479
- }
480
- else {
481
- if(_this.check("draggable", obj)) {
482
- tree_component.drag_drop.drag_node = obj;
483
- tree_component.drag_drop.drag_help = $("<div id='jstree-dragged' class='tree " + ( _this.settings.ui.theme_name != "" ? " tree-" + _this.settings.ui.theme_name : "" ) + "' />").append("<ul class='" + _this.container.children("ul:eq(0)").get(0).className + "' />");
484
- var tmp = obj.clone();
485
- if(_this.settings.languages.length > 0) tmp.find("a").not("." + _this.current_lang).hide();
486
- tree_component.drag_drop.drag_help.children("ul:eq(0)").append(tmp);
487
- tree_component.drag_drop.drag_help.find("li:eq(0)").removeClass("last").addClass("last");
488
- tree_component.drag_drop.isdown = true;
489
- tree_component.drag_drop.foreign = false;
490
- tree_component.drag_drop.origin_tree = _this;
491
- obj.addClass("dragged");
492
-
493
- tree_component.drag_drop.dragged = _this.container.find("li.dragged");
494
- }
495
- }
496
- tree_component.drag_drop.init_x = event.pageX;
497
- tree_component.drag_drop.init_y = event.pageY;
498
- obj.blur();
499
- event.preventDefault();
500
- event.stopPropagation();
501
- return false;
502
- });
503
- },
504
- focus : function () {
505
- if(this.locked) return false;
506
- if(tree_component.focused != this.cntr) {
507
- tree_component.focused = this.cntr;
508
- this.callback("onfocus",[this]);
509
- }
510
- },
511
-
512
- off_height : function () {
513
- if(this.offset === false) {
514
- this.container.css({ position : "relative" });
515
- this.offset = this.container.offset();
516
- var tmp = 0;
517
- tmp = parseInt($.curCSS(this.container.get(0), "paddingTop", true),10);
518
- if(tmp) this.offset.top += tmp;
519
- tmp = parseInt($.curCSS(this.container.get(0), "borderTopWidth", true),10);
520
- if(tmp) this.offset.top += tmp;
521
- this.container.css({ position : "" });
522
- }
523
- if(!this.li_height) {
524
- var tmp = this.container.find("ul li.closed, ul li.leaf").eq(0);
525
- this.li_height = tmp.height();
526
- if(tmp.children("ul:eq(0)").size()) this.li_height -= tmp.children("ul:eq(0)").height();
527
- if(!this.li_height) this.li_height = 18;
528
- }
529
- },
530
- scroll_check : function (x,y) {
531
- var _this = this;
532
- var cnt = _this.container;
533
- var off = _this.container.offset();
534
-
535
- var st = cnt.scrollTop();
536
- var sl = cnt.scrollLeft();
537
- // DETECT HORIZONTAL SCROLL
538
- var h_cor = (cnt.get(0).scrollWidth > cnt.width()) ? 40 : 20;
539
-
540
- if(y - off.top < 20) cnt.scrollTop(Math.max( (st - _this.settings.ui.scroll_spd) ,0)); // NEAR TOP
541
- if(cnt.height() - (y - off.top) < h_cor) cnt.scrollTop(st + _this.settings.ui.scroll_spd); // NEAR BOTTOM
542
- if(x - off.left < 20) cnt.scrollLeft(Math.max( (sl - _this.settings.ui.scroll_spd),0)); // NEAR LEFT
543
- if(cnt.width() - (x - off.left) < 40) cnt.scrollLeft(sl + _this.settings.ui.scroll_spd); // NEAR RIGHT
544
-
545
- if(cnt.scrollLeft() != sl || cnt.scrollTop() != st) {
546
- tree_component.drag_drop.move_type = false;
547
- tree_component.drag_drop.ref_node = false;
548
- tree_component.drag_drop.marker.hide();
549
- }
550
- tree_component.drag_drop.scroll_time = setTimeout( function() { _this.scroll_check(x,y); }, 50);
551
- },
552
- scroll_into_view : function (obj) {
553
- obj = obj ? this.get_node(obj) : this.selected;
554
- if(!obj) return false;
555
- var off_t = obj.offset().top;
556
- var beg_t = this.container.offset().top;
557
- var end_t = beg_t + this.container.height();
558
- var h_cor = (this.container.get(0).scrollWidth > this.container.width()) ? 40 : 20;
559
- if(off_t + 5 < beg_t) this.container.scrollTop(this.container.scrollTop() - (beg_t - off_t + 5) );
560
- if(off_t + h_cor > end_t) this.container.scrollTop(this.container.scrollTop() + (off_t + h_cor - end_t) );
561
- },
562
-
563
- get_node : function (obj) {
564
- return $(obj).closest("li");
565
- },
566
- get_type : function (obj) {
567
- obj = !obj ? this.selected : this.get_node(obj);
568
- if(!obj) return;
569
- var tmp = obj.attr(this.settings.rules.type_attr);
570
- return tmp || "default";
571
- },
572
- set_type : function (str, obj) {
573
- obj = !obj ? this.selected : this.get_node(obj);
574
- if(!obj || !str) return;
575
- obj.attr(this.settings.rules.type_attr, str);
576
- },
577
- get_text : function (obj, lang) {
578
- obj = this.get_node(obj);
579
- if(!obj || obj.size() == 0) return "";
580
- if(this.settings.languages && this.settings.languages.length) {
581
- lang = lang ? lang : this.current_lang;
582
- obj = obj.children("a." + lang);
583
- }
584
- else obj = obj.children("a:visible");
585
- var val = "";
586
- obj.contents().each(function () {
587
- if(this.nodeType == 3) { val = this.data; return false; }
588
- });
589
- return val;
590
- },
591
-
592
- check : function (rule, obj) {
593
- if(this.locked) return false;
594
- var v = false;
595
- // if root node
596
- if(obj === -1) { if(typeof this.settings.rules[rule] != "undefined") v = this.settings.rules[rule]; }
597
- else {
598
- obj = !obj ? this.selected : this.get_node(obj);
599
- if(!obj) return;
600
- var t = this.get_type(obj);
601
- if(typeof this.settings.types[t] != "undefined" && typeof this.settings.types[t][rule] != "undefined") v = this.settings.types[t][rule];
602
- else if(typeof this.settings.types["default"] != "undefined" && typeof this.settings.types["default"][rule] != "undefined") v = this.settings.types["default"][rule];
603
- }
604
- if(typeof v == "function") v = v.call(null, obj, this);
605
- v = this.callback("check", [rule, obj, v, this]);
606
- return v;
607
- },
608
- check_move : function (nod, ref_node, how) {
609
- if(this.locked) return false;
610
- if($(ref_node).closest("li.dragged").size()) return false;
611
-
612
- var tree1 = nod.parents(".tree:eq(0)").get(0);
613
- var tree2 = ref_node.parents(".tree:eq(0)").get(0);
614
- // if different trees
615
- if(tree1 && tree1 != tree2) {
616
- var m = $.tree.reference(tree2.id).settings.rules.multitree;
617
- if(m == "none" || ($.isArray(m) && $.inArray(tree1.id, m) == -1)) return false;
618
- }
619
-
620
- var p = (how != "inside") ? this.parent(ref_node) : this.get_node(ref_node);
621
- nod = this.get_node(nod);
622
- if(p == false) return false;
623
- var r = {
624
- max_depth : this.settings.rules.use_max_depth ? this.check("max_depth", p) : -1,
625
- max_children : this.settings.rules.use_max_children ? this.check("max_children", p) : -1,
626
- valid_children : this.check("valid_children", p)
627
- };
628
- var nod_type = (typeof nod == "string") ? nod : this.get_type(nod);
629
- if(typeof r.valid_children != "undefined" && (r.valid_children == "none" || (typeof r.valid_children == "object" && $.inArray(nod_type, $.makeArray(r.valid_children)) == -1))) return false;
630
-
631
- if(this.settings.rules.use_max_children) {
632
- if(typeof r.max_children != "undefined" && r.max_children != -1) {
633
- if(r.max_children == 0) return false;
634
- var c_count = 1;
635
- if(tree_component.drag_drop.moving == true && tree_component.drag_drop.foreign == false) {
636
- c_count = tree_component.drag_drop.dragged.size();
637
- c_count = c_count - p.find('> ul > li.dragged').size();
638
- }
639
- if(r.max_children < p.find('> ul > li').size() + c_count) return false;
640
- }
641
- }
642
-
643
- if(this.settings.rules.use_max_depth) {
644
- if(typeof r.max_depth != "undefined" && r.max_depth === 0) return this.error("MOVE: MAX-DEPTH REACHED");
645
- // check for max_depth up the chain
646
- var mx = (r.max_depth > 0) ? r.max_depth : false;
647
- var i = 0;
648
- var t = p;
649
- while(t !== -1) {
650
- t = this.parent(t);
651
- i ++;
652
- var m = this.check("max_depth",t);
653
- if(m >= 0) {
654
- mx = (mx === false) ? (m - i) : Math.min(mx, m - i);
655
- }
656
- if(mx !== false && mx <= 0) return this.error("MOVE: MAX-DEPTH REACHED");
657
- }
658
- if(mx !== false && mx <= 0) return this.error("MOVE: MAX-DEPTH REACHED");
659
- if(mx !== false) {
660
- var incr = 1;
661
- if(typeof nod != "string") {
662
- var t = nod;
663
- // possible async problem - when nodes are not all loaded down the chain
664
- while(t.size() > 0) {
665
- if(mx - incr < 0) return this.error("MOVE: MAX-DEPTH REACHED");
666
- t = t.children("ul").children("li");
667
- incr ++;
668
- }
669
- }
670
- }
671
- }
672
- if(this.callback("check_move", [nod, ref_node, how, this]) == false) return false;
673
- return true;
674
- },
675
-
676
- hover_branch : function (obj) {
677
- if(this.locked) return this.error("LOCKED");
678
- var _this = this;
679
- var obj = _this.get_node(obj);
680
- if(!obj.size()) return this.error("HOVER: NOT A VALID NODE");
681
- if(!_this.check("clickable", obj)) return this.error("SELECT: NODE NOT SELECTABLE");
682
- if(this.hovered) this.hovered.children("A").removeClass("hover");
683
- this.hovered = obj;
684
- this.hovered.children("a").addClass("hover");
685
- this.scroll_into_view(this.hovered);
686
- },
687
- select_branch : function (obj, multiple) {
688
- if(this.locked) return this.error("LOCKED");
689
- if(!obj && this.hovered !== false) obj = this.hovered;
690
- var _this = this;
691
- obj = _this.get_node(obj);
692
- if(!obj.size()) return this.error("SELECT: NOT A VALID NODE");
693
- obj.children("a").removeClass("hover");
694
- // CHECK AGAINST RULES FOR SELECTABLE NODES
695
- if(!_this.check("clickable", obj)) return this.error("SELECT: NODE NOT SELECTABLE");
696
- if(_this.callback("beforechange",[obj.get(0),_this]) === false) return this.error("SELECT: STOPPED BY USER");
697
- // IF multiple AND obj IS ALREADY SELECTED - DESELECT IT
698
- if(this.settings.rules.multiple != false && multiple && obj.children("a.clicked").size() > 0) {
699
- return this.deselect_branch(obj);
700
- }
701
- if(this.settings.rules.multiple != false && multiple) {
702
- this.selected_arr.push(obj);
703
- }
704
- if(this.settings.rules.multiple != false && !multiple) {
705
- for(var i in this.selected_arr) {
706
- if(!this.selected_arr.hasOwnProperty(i)) continue;
707
- this.selected_arr[i].children("A").removeClass("clicked");
708
- this.callback("ondeselect", [this.selected_arr[i].get(0), _this]);
709
- }
710
- this.selected_arr = [];
711
- this.selected_arr.push(obj);
712
- if(this.selected && this.selected.children("A").hasClass("clicked")) {
713
- this.selected.children("A").removeClass("clicked");
714
- this.callback("ondeselect", [this.selected.get(0), _this]);
715
- }
716
- }
717
- if(!this.settings.rules.multiple) {
718
- if(this.selected) {
719
- this.selected.children("A").removeClass("clicked");
720
- this.callback("ondeselect", [this.selected.get(0), _this]);
721
- }
722
- }
723
- // SAVE NEWLY SELECTED
724
- this.selected = obj;
725
- if(this.hovered !== false) {
726
- this.hovered.children("A").removeClass("hover");
727
- this.hovered = obj;
728
- }
729
-
730
- // FOCUS NEW NODE AND OPEN ALL PARENT NODES IF CLOSED
731
- this.selected.children("a").addClass("clicked").end().parents("li.closed").each( function () { _this.open_branch(this, true); });
732
-
733
- // SCROLL SELECTED NODE INTO VIEW
734
- this.scroll_into_view(this.selected);
735
-
736
- this.callback("onselect", [this.selected.get(0), _this]);
737
- this.callback("onchange", [this.selected.get(0), _this]);
738
- },
739
- deselect_branch : function (obj) {
740
- if(this.locked) return this.error("LOCKED");
741
- var _this = this;
742
- var obj = this.get_node(obj);
743
- if(obj.children("a.clicked").size() == 0) return this.error("DESELECT: NODE NOT SELECTED");
744
-
745
- obj.children("a").removeClass("clicked");
746
- this.callback("ondeselect", [obj.get(0), _this]);
747
- if(this.settings.rules.multiple != false && this.selected_arr.length > 1) {
748
- this.selected_arr = [];
749
- this.container.find("a.clicked").filter(":first-child").parent().each(function () {
750
- _this.selected_arr.push($(this));
751
- });
752
- if(obj.get(0) == this.selected.get(0)) {
753
- this.selected = this.selected_arr[0];
754
- }
755
- }
756
- else {
757
- if(this.settings.rules.multiple != false) this.selected_arr = [];
758
- this.selected = false;
759
- }
760
- this.callback("onchange", [obj.get(0), _this]);
761
- },
762
- toggle_branch : function (obj) {
763
- if(this.locked) return this.error("LOCKED");
764
- var obj = this.get_node(obj);
765
- if(obj.hasClass("closed")) return this.open_branch(obj);
766
- if(obj.hasClass("open")) return this.close_branch(obj);
767
- },
768
- open_branch : function (obj, disable_animation, callback) {
769
- var _this = this;
770
-
771
- if(this.locked) return this.error("LOCKED");
772
- var obj = this.get_node(obj);
773
- if(!obj.size()) return this.error("OPEN: NO SUCH NODE");
774
- if(obj.hasClass("leaf")) return this.error("OPEN: OPENING LEAF NODE");
775
- if(this.settings.data.async && obj.find("li").size() == 0) {
776
-
777
- if(this.callback("beforeopen",[obj.get(0),this]) === false) return this.error("OPEN: STOPPED BY USER");
778
-
779
- obj.children("ul:eq(0)").remove().end().append("<ul><li class='last'><a class='loading' href='#'><ins>&nbsp;</ins>" + (_this.settings.lang.loading || "Loading ...") + "</a></li></ul>");
780
- obj.removeClass("closed").addClass("open");
781
-
782
- var _datastore = new $.tree.datastores[this.settings.data.type]();
783
- _datastore.load(this.callback("beforedata",[obj,this]),this,this.settings.data.opts,function(data){
784
- data = _this.callback("ondata", [data, _this]);
785
- if(!data || data.length == 0) {
786
- obj.removeClass("closed").removeClass("open").addClass("leaf").children("ul").remove();
787
- if(callback) callback.call();
788
- return;
789
- }
790
- _datastore.parse(data,_this,_this.settings.data.opts,function(str){
791
- str = _this.callback("onparse", [str, _this]);
792
- // if(obj.children('ul:eq(0)').children('li').size() > 1) obj.children("ul").find('.loaading').parent().replaceWith(str); else
793
- obj.children("ul:eq(0)").replaceWith($("<ul>").html(str));
794
- obj.find("li:last-child").addClass("last").end().find("li:has(ul)").not(".open").addClass("closed");
795
- obj.find("li").not(".open").not(".closed").addClass("leaf");
796
- _this.open_branch.apply(_this, [obj]);
797
- if(callback) callback.call();
798
- });
799
- });
800
- return true;
801
- }
802
- else {
803
- if(!this.settings.data.async) {
804
- if(this.callback("beforeopen",[obj.get(0),this]) === false) return this.error("OPEN: STOPPED BY USER");
805
- }
806
- if(parseInt(this.settings.ui.animation) > 0 && !disable_animation ) {
807
- obj.children("ul:eq(0)").css("display","none");
808
- obj.removeClass("closed").addClass("open");
809
- obj.children("ul:eq(0)").slideDown(parseInt(this.settings.ui.animation), function() {
810
- $(this).css("display","");
811
- if(callback) callback.call();
812
- });
813
- } else {
814
- obj.removeClass("closed").addClass("open");
815
- if(callback) callback.call();
816
- }
817
- this.callback("onopen", [obj.get(0), this]);
818
- return true;
819
- }
820
- },
821
- close_branch : function (obj, disable_animation) {
822
- if(this.locked) return this.error("LOCKED");
823
- var _this = this;
824
- var obj = this.get_node(obj);
825
- if(!obj.size()) return this.error("CLOSE: NO SUCH NODE");
826
- if(_this.callback("beforeclose",[obj.get(0),_this]) === false) return this.error("CLOSE: STOPPED BY USER");
827
- if(parseInt(this.settings.ui.animation) > 0 && !disable_animation && obj.children("ul:eq(0)").size() == 1) {
828
- obj.children("ul:eq(0)").slideUp(parseInt(this.settings.ui.animation), function() {
829
- if(obj.hasClass("open")) obj.removeClass("open").addClass("closed");
830
- $(this).css("display","");
831
- });
832
- }
833
- else {
834
- if(obj.hasClass("open")) obj.removeClass("open").addClass("closed");
835
- }
836
- if(this.selected && this.settings.ui.selected_parent_close !== false && obj.children("ul:eq(0)").find("a.clicked").size() > 0) {
837
- obj.find("li:has(a.clicked)").each(function() {
838
- _this.deselect_branch(this);
839
- });
840
- if(this.settings.ui.selected_parent_close == "select_parent" && obj.children("a.clicked").size() == 0) this.select_branch(obj, (this.settings.rules.multiple != false && this.selected_arr.length > 0) );
841
- }
842
- this.callback("onclose", [obj.get(0), this]);
843
- },
844
- open_all : function (obj, callback) {
845
- if(this.locked) return this.error("LOCKED");
846
- var _this = this;
847
- obj = obj ? this.get_node(obj) : this.container;
848
-
849
- var s = obj.find("li.closed").size();
850
- if(!callback) this.cl_count = 0;
851
- else this.cl_count --;
852
- if(s > 0) {
853
- this.cl_count += s;
854
- // maybe add .andSelf()
855
- obj.find("li.closed").each( function () { var __this = this; _this.open_branch.apply(_this, [this, true, function() { _this.open_all.apply(_this, [__this, true]); } ]); });
856
- }
857
- else if(this.cl_count == 0) this.callback("onopen_all",[this]);
858
- },
859
- close_all : function (obj) {
860
- if(this.locked) return this.error("LOCKED");
861
- var _this = this;
862
- obj = obj ? this.get_node(obj) : this.container;
863
- // maybe add .andSelf()
864
- obj.find("li.open").each( function () { _this.close_branch(this, true); });
865
- this.callback("onclose_all",[this]);
866
- },
867
-
868
- set_lang : function (i) {
869
- if(!$.isArray(this.settings.languages) || this.settings.languages.length == 0) return false;
870
- if(this.locked) return this.error("LOCKED");
871
- if(!$.inArray(i,this.settings.languages) && typeof this.settings.languages[i] != "undefined") i = this.settings.languages[i];
872
- if(typeof i == "undefined") return false;
873
- if(i == this.current_lang) return true;
874
- var st = false;
875
- var id = "#" + this.container.attr("id");
876
- st = tree_component.get_css(id + " ." + this.current_lang);
877
- if(st !== false) st.style.display = "none";
878
- st = tree_component.get_css(id + " ." + i);
879
- if(st !== false) st.style.display = "";
880
- this.current_lang = i;
881
- return true;
882
- },
883
- get_lang : function () {
884
- if(!$.isArray(this.settings.languages) || this.settings.languages.length == 0) return false;
885
- return this.current_lang;
886
- },
887
-
888
- create : function (obj, ref_node, position) {
889
- if(this.locked) return this.error("LOCKED");
890
-
891
- var root = false;
892
- if(ref_node == -1) { root = true; ref_node = this.container; }
893
- else ref_node = ref_node ? this.get_node(ref_node) : this.selected;
894
-
895
- if(!root && (!ref_node || !ref_node.size())) return this.error("CREATE: NO NODE SELECTED");
896
-
897
- var pos = position;
898
-
899
- var tmp = ref_node; // for type calculation
900
- if(position == "before") {
901
- position = ref_node.parent().children().index(ref_node);
902
- ref_node = ref_node.parents("li:eq(0)");
903
- }
904
- if(position == "after") {
905
- position = ref_node.parent().children().index(ref_node) + 1;
906
- ref_node = ref_node.parents("li:eq(0)");
907
- }
908
- if(!root && ref_node.size() == 0) { root = true; ref_node = this.container; }
909
-
910
- if(!root) {
911
- if(!this.check("creatable", ref_node)) return this.error("CREATE: CANNOT CREATE IN NODE");
912
- if(ref_node.hasClass("closed")) {
913
- if(this.settings.data.async && ref_node.children("ul").size() == 0) {
914
- var _this = this;
915
- return this.open_branch(ref_node, true, function () { _this.create.apply(_this, [obj, ref_node, position]); } );
916
- }
917
- else this.open_branch(ref_node, true);
918
- }
919
- }
920
-
921
- // creating new object to pass to parseJSON
922
- var torename = false;
923
- if(!obj) obj = {};
924
- else obj = $.extend(true, {}, obj);
925
- if(!obj.attributes) obj.attributes = {};
926
- if(!obj.attributes[this.settings.rules.type_attr]) obj.attributes[this.settings.rules.type_attr] = this.get_type(tmp) || "default";
927
- if(this.settings.languages.length) {
928
- if(!obj.data) { obj.data = {}; torename = true; }
929
- for(var i = 0; i < this.settings.languages.length; i++) {
930
- if(!obj.data[this.settings.languages[i]]) obj.data[this.settings.languages[i]] = ((typeof this.settings.lang.new_node).toLowerCase() != "string" && this.settings.lang.new_node[i]) ? this.settings.lang.new_node[i] : this.settings.lang.new_node;
931
- }
932
- }
933
- else {
934
- if(!obj.data) { obj.data = this.settings.lang.new_node; torename = true; }
935
- }
936
-
937
- obj = this.callback("ondata",[obj, this]);
938
- var obj_s = $.tree.datastores.json().parse(obj,this);
939
- obj_s = this.callback("onparse", [obj_s, this]);
940
- var $li = $(obj_s);
941
-
942
- if($li.children("ul").size()) {
943
- if(!$li.is(".open")) $li.addClass("closed");
944
- }
945
- else $li.addClass("leaf");
946
- $li.find("li:last-child").addClass("last").end().find("li:has(ul)").not(".open").addClass("closed");
947
- $li.find("li").not(".open").not(".closed").addClass("leaf");
948
-
949
- var r = {
950
- max_depth : this.settings.rules.use_max_depth ? this.check("max_depth", (root ? -1 : ref_node) ) : -1,
951
- max_children : this.settings.rules.use_max_children ? this.check("max_children", (root ? -1 : ref_node) ) : -1,
952
- valid_children : this.check("valid_children", (root ? -1 : ref_node) )
953
- };
954
- var nod_type = this.get_type($li);
955
- if(typeof r.valid_children != "undefined" && (r.valid_children == "none" || ($.isArray(r.valid_children) && $.inArray(nod_type, r.valid_children) == -1))) return this.error("CREATE: NODE NOT A VALID CHILD");
956
-
957
- if(this.settings.rules.use_max_children) {
958
- if(typeof r.max_children != "undefined" && r.max_children != -1 && r.max_children >= this.children(ref_node).size()) return this.error("CREATE: MAX_CHILDREN REACHED");
959
- }
960
-
961
- if(this.settings.rules.use_max_depth) {
962
- if(typeof r.max_depth != "undefined" && r.max_depth === 0) return this.error("CREATE: MAX-DEPTH REACHED");
963
- // check for max_depth up the chain
964
- var mx = (r.max_depth > 0) ? r.max_depth : false;
965
- var i = 0;
966
- var t = ref_node;
967
-
968
- while(t !== -1 && !root) {
969
- t = this.parent(t);
970
- i ++;
971
- var m = this.check("max_depth",t);
972
- if(m >= 0) {
973
- mx = (mx === false) ? (m - i) : Math.min(mx, m - i);
974
- }
975
- if(mx !== false && mx <= 0) return this.error("CREATE: MAX-DEPTH REACHED");
976
- }
977
- if(mx !== false && mx <= 0) return this.error("CREATE: MAX-DEPTH REACHED");
978
- if(mx !== false) {
979
- var incr = 1;
980
- var t = $li;
981
- while(t.size() > 0) {
982
- if(mx - incr < 0) return this.error("CREATE: MAX-DEPTH REACHED");
983
- t = t.children("ul").children("li");
984
- incr ++;
985
- }
986
- }
987
- }
988
-
989
- if((typeof position).toLowerCase() == "undefined" || position == "inside")
990
- position = (this.settings.rules.createat == "top") ? 0 : ref_node.children("ul:eq(0)").children("li").size();
991
- if(ref_node.children("ul").size() == 0 || (root == true && ref_node.children("ul").children("li").size() == 0) ) {
992
- if(!root) var a = this.moved($li,ref_node.children("a:eq(0)"),"inside", true);
993
- else var a = this.moved($li,this.container.children("ul:eq(0)"),"inside", true);
994
- }
995
- else if(pos == "before" && ref_node.children("ul:eq(0)").children("li:nth-child(" + (position + 1) + ")").size())
996
- var a = this.moved($li,ref_node.children("ul:eq(0)").children("li:nth-child(" + (position + 1) + ")").children("a:eq(0)"),"before", true);
997
- else if(pos == "after" && ref_node.children("ul:eq(0)").children("li:nth-child(" + (position) + ")").size())
998
- var a = this.moved($li,ref_node.children("ul:eq(0)").children("li:nth-child(" + (position) + ")").children("a:eq(0)"),"after", true);
999
- else if(ref_node.children("ul:eq(0)").children("li:nth-child(" + (position + 1) + ")").size())
1000
- var a = this.moved($li,ref_node.children("ul:eq(0)").children("li:nth-child(" + (position + 1) + ")").children("a:eq(0)"),"before", true);
1001
- else
1002
- var a = this.moved($li,ref_node.children("ul:eq(0)").children("li:last").children("a:eq(0)"),"after",true);
1003
-
1004
- if(a === false) return this.error("CREATE: ABORTED");
1005
-
1006
- if(torename) {
1007
- this.select_branch($li.children("a:eq(0)"));
1008
- this.rename();
1009
- }
1010
- return $li;
1011
- },
1012
- rename : function (obj, new_name) {
1013
- if(this.locked) return this.error("LOCKED");
1014
- obj = obj ? this.get_node(obj) : this.selected;
1015
- var _this = this;
1016
- if(!obj || !obj.size()) return this.error("RENAME: NO NODE SELECTED");
1017
- if(!this.check("renameable", obj)) return this.error("RENAME: NODE NOT RENAMABLE");
1018
- if(!this.callback("beforerename",[obj.get(0), _this.current_lang, _this])) return this.error("RENAME: STOPPED BY USER");
1019
-
1020
- obj.parents("li.closed").each(function () { _this.open_branch(this) });
1021
- if(this.current_lang) obj = obj.find("a." + this.current_lang);
1022
- else obj = obj.find("a:first");
1023
-
1024
- // Rollback
1025
- var rb = {};
1026
- rb[this.container.attr("id")] = this.get_rollback();
1027
-
1028
- var icn = obj.children("ins").clone();
1029
- if((typeof new_name).toLowerCase() == "string") {
1030
- obj.text(new_name).prepend(icn);
1031
- _this.callback("onrename", [_this.get_node(obj).get(0), _this, rb]);
1032
- }
1033
- else {
1034
- var last_value = "";
1035
- obj.contents().each(function () {
1036
- if(this.nodeType == 3) { last_value = this.data; return false; }
1037
- });
1038
- _this.inp = $("<input type='text' autocomplete='off' />");
1039
- _this.inp
1040
- .val(last_value.replace(/&amp;/g,"&").replace(/&gt;/g,">").replace(/&lt;/g,"<"))
1041
- .bind("mousedown", function (event) { event.stopPropagation(); })
1042
- .bind("mouseup", function (event) { event.stopPropagation(); })
1043
- .bind("click", function (event) { event.stopPropagation(); })
1044
- .bind("keyup", function (event) {
1045
- var key = event.keyCode || event.which;
1046
- if(key == 27) { this.value = last_value; this.blur(); return }
1047
- if(key == 13) { this.blur(); return; }
1048
- });
1049
- _this.inp.blur(function(event) {
1050
- if(this.value == "") this.value = last_value;
1051
- obj.text(this.value).prepend(icn);
1052
- obj.get(0).style.display = "";
1053
- obj.prevAll("span").remove();
1054
- _this.inp = false;
1055
- _this.callback("onrename", [_this.get_node(obj).get(0), _this, rb]);
1056
- });
1057
-
1058
- var spn = $("<span />").addClass(obj.attr("class")).append(icn).append(_this.inp);
1059
- obj.get(0).style.display = "none";
1060
- obj.parent().prepend(spn);
1061
- _this.inp.get(0).focus();
1062
- _this.inp.get(0).select();
1063
- }
1064
- },
1065
- remove : function(obj) {
1066
- if(this.locked) return this.error("LOCKED");
1067
- var _this = this;
1068
-
1069
- // Rollback
1070
- var rb = {};
1071
- rb[this.container.attr("id")] = this.get_rollback();
1072
-
1073
- if(obj && (!this.selected || this.get_node(obj).get(0) != this.selected.get(0) )) {
1074
- obj = this.get_node(obj);
1075
- if(obj.size()) {
1076
- if(!this.check("deletable", obj)) return this.error("DELETE: NODE NOT DELETABLE");
1077
- if(!this.callback("beforedelete",[obj.get(0), _this])) return this.error("DELETE: STOPPED BY USER");
1078
- $parent = obj.parent();
1079
- if(obj.find("a.clicked").size()) {
1080
- var reset_selected = false;
1081
- _this.selected_arr = [];
1082
- this.container.find("a.clicked").filter(":first-child").parent().each(function () {
1083
- if(!reset_selected && this == _this.selected.get(0)) reset_selected = true;
1084
- if($(this).parents().index(obj) != -1) return true;
1085
- _this.selected_arr.push($(this));
1086
- });
1087
- if(reset_selected) this.selected = this.selected_arr[0] || false;
1088
- }
1089
- obj = obj.remove();
1090
- $parent.children("li:last").addClass("last");
1091
- if($parent.children("li").size() == 0) {
1092
- $li = $parent.parents("li:eq(0)");
1093
- $li.removeClass("open").removeClass("closed").addClass("leaf").children("ul").remove();
1094
- }
1095
- this.callback("ondelete", [obj.get(0), this, rb]);
1096
- }
1097
- }
1098
- else if(this.selected) {
1099
- if(!this.check("deletable", this.selected)) return this.error("DELETE: NODE NOT DELETABLE");
1100
- if(!this.callback("beforedelete",[this.selected.get(0), _this])) return this.error("DELETE: STOPPED BY USER");
1101
- $parent = this.selected.parent();
1102
- var obj = this.selected;
1103
- if(this.settings.rules.multiple == false || this.selected_arr.length == 1) {
1104
- var stop = true;
1105
- var tmp = this.settings.ui.selected_delete == "select_previous" ? this.prev(this.selected) : false;
1106
- }
1107
- obj = obj.remove();
1108
- $parent.children("li:last").addClass("last");
1109
- if($parent.children("li").size() == 0) {
1110
- $li = $parent.parents("li:eq(0)");
1111
- $li.removeClass("open").removeClass("closed").addClass("leaf").children("ul").remove();
1112
- }
1113
- if(!stop && this.settings.rules.multiple != false) {
1114
- var _this = this;
1115
- this.selected_arr = [];
1116
- this.container.find("a.clicked").filter(":first-child").parent().each(function () {
1117
- _this.selected_arr.push($(this));
1118
- });
1119
- if(this.selected_arr.length > 0) {
1120
- this.selected = this.selected_arr[0];
1121
- this.remove();
1122
- }
1123
- }
1124
- if(stop && tmp) this.select_branch(tmp);
1125
- this.callback("ondelete", [obj.get(0), this, rb]);
1126
- }
1127
- else return this.error("DELETE: NO NODE SELECTED");
1128
- },
1129
-
1130
- next : function (obj, strict) {
1131
- obj = this.get_node(obj);
1132
- if(!obj.size()) return false;
1133
- if(strict) return (obj.nextAll("li").size() > 0) ? obj.nextAll("li:eq(0)") : false;
1134
-
1135
- if(obj.hasClass("open")) return obj.find("li:eq(0)");
1136
- else if(obj.nextAll("li").size() > 0) return obj.nextAll("li:eq(0)");
1137
- else return obj.parents("li").next("li").eq(0);
1138
- },
1139
- prev : function(obj, strict) {
1140
- obj = this.get_node(obj);
1141
- if(!obj.size()) return false;
1142
- if(strict) return (obj.prevAll("li").size() > 0) ? obj.prevAll("li:eq(0)") : false;
1143
-
1144
- if(obj.prev("li").size()) {
1145
- var obj = obj.prev("li").eq(0);
1146
- while(obj.hasClass("open")) obj = obj.children("ul:eq(0)").children("li:last");
1147
- return obj;
1148
- }
1149
- else return obj.parents("li:eq(0)").size() ? obj.parents("li:eq(0)") : false;
1150
- },
1151
- parent : function(obj) {
1152
- obj = this.get_node(obj);
1153
- if(!obj.size()) return false;
1154
- return obj.parents("li:eq(0)").size() ? obj.parents("li:eq(0)") : -1;
1155
- },
1156
- children : function(obj) {
1157
- if(obj === -1) return this.container.children("ul:eq(0)").children("li");
1158
-
1159
- obj = this.get_node(obj);
1160
- if(!obj.size()) return false;
1161
- return obj.children("ul:eq(0)").children("li");
1162
- },
1163
-
1164
- toggle_dots : function () {
1165
- if(this.settings.ui.dots) {
1166
- this.settings.ui.dots = false;
1167
- this.container.children("ul:eq(0)").addClass("no_dots");
1168
- }
1169
- else {
1170
- this.settings.ui.dots = true;
1171
- this.container.children("ul:eq(0)").removeClass("no_dots");
1172
- }
1173
- },
1174
-
1175
- callback : function (cb, args) {
1176
- var p = false;
1177
- var r = null;
1178
- for(var i in this.settings.plugins) {
1179
- if(typeof $.tree.plugins[i] != "object") continue;
1180
- p = $.tree.plugins[i];
1181
- if(p.callbacks && typeof p.callbacks[cb] == "function") r = p.callbacks[cb].apply(this, args);
1182
- if(typeof r !== "undefined" && r !== null) {
1183
- if(cb == "ondata" || cb == "onparse") args[0] = r; // keep the chain if data or parse
1184
- else return r;
1185
- }
1186
- }
1187
- p = this.settings.callback[cb];
1188
- if(typeof p == "function") return p.apply(null, args);
1189
- },
1190
- get_rollback : function () {
1191
- var rb = {};
1192
- rb.html = this.container.html();
1193
- rb.selected = this.selected ? this.selected.attr("id") : false;
1194
- return rb;
1195
- },
1196
- moved : function (what, where, how, is_new, is_copy, rb) {
1197
- var what = $(what);
1198
- var $parent = $(what).parents("ul:eq(0)");
1199
- var $where = $(where);
1200
- if($where.is("ins")) $where = $where.parent();
1201
-
1202
- // Rollback
1203
- if(!rb) {
1204
- var rb = {};
1205
- rb[this.container.attr("id")] = this.get_rollback();
1206
- if(!is_new) {
1207
- var tmp = what.size() > 1 ? what.eq(0).parents(".tree:eq(0)") : what.parents(".tree:eq(0)");
1208
- if(tmp.get(0) != this.container.get(0)) {
1209
- tmp = tree_component.inst[tmp.attr("id")];
1210
- rb[tmp.container.attr("id")] = tmp.get_rollback();
1211
- }
1212
- delete tmp;
1213
- }
1214
- }
1215
-
1216
- if(how == "inside" && this.settings.data.async) {
1217
- var _this = this;
1218
- if(this.get_node($where).hasClass("closed")) {
1219
- return this.open_branch(this.get_node($where), true, function () { _this.moved.apply(_this, [what, where, how, is_new, is_copy, rb]); });
1220
- }
1221
- if(this.get_node($where).find("> ul > li > a.loading").size() == 1) {
1222
- setTimeout(function () { _this.moved.apply(_this, [what, where, how, is_new, is_copy]); }, 200);
1223
- return;
1224
- }
1225
- }
1226
-
1227
-
1228
- // IF MULTIPLE
1229
- if(what.size() > 1) {
1230
- var _this = this;
1231
- var tmp = this.moved(what.eq(0), where, how, false, is_copy, rb);
1232
- what.each(function (i) {
1233
- if(i == 0) return;
1234
- if(tmp) { // if tmp is false - the previous move was a no-go
1235
- tmp = _this.moved(this, tmp.children("a:eq(0)"), "after", false, is_copy, rb);
1236
- }
1237
- });
1238
- return what;
1239
- }
1240
-
1241
- if(is_copy) {
1242
- _what = what.clone();
1243
- _what.each(function (i) {
1244
- this.id = this.id + "_copy";
1245
- $(this).find("li").each(function () {
1246
- this.id = this.id + "_copy";
1247
- });
1248
- $(this).removeClass("dragged").find("a.clicked").removeClass("clicked").end().find("li.dragged").removeClass("dragged");
1249
- });
1250
- }
1251
- else _what = what;
1252
- if(is_new) {
1253
- if(!this.callback("beforecreate", [this.get_node(what).get(0), this.get_node(where).get(0),how,this])) return false;
1254
- }
1255
- else {
1256
- if(!this.callback("beforemove", [this.get_node(what).get(0), this.get_node(where).get(0),how,this])) return false;
1257
- }
1258
-
1259
- if(!is_new) {
1260
- var tmp = what.parents(".tree:eq(0)");
1261
- // if different trees
1262
- if(tmp.get(0) != this.container.get(0)) {
1263
- tmp = tree_component.inst[tmp.attr("id")];
1264
-
1265
- // if there are languages - otherwise - no cleanup needed
1266
- if(tmp.settings.languages.length) {
1267
- var res = [];
1268
- // if new tree has no languages - use current visible
1269
- if(this.settings.languages.length == 0) res.push("." + tmp.current_lang);
1270
- else {
1271
- for(var i in this.settings.languages) {
1272
- if(!this.settings.languages.hasOwnProperty(i)) continue;
1273
- for(var j in tmp.settings.languages) {
1274
- if(!tmp.settings.languages.hasOwnProperty(j)) continue;
1275
- if(this.settings.languages[i] == tmp.settings.languages[j]) res.push("." + this.settings.languages[i]);
1276
- }
1277
- }
1278
- }
1279
- if(res.length == 0) return this.error("MOVE: NO COMMON LANGUAGES");
1280
- _what.find("a").not(res.join(",")).remove();
1281
- }
1282
- _what.find("a.clicked").removeClass("clicked");
1283
- }
1284
- }
1285
- what = _what;
1286
-
1287
- // ADD NODE TO NEW PLACE
1288
- switch(how) {
1289
- case "before":
1290
- $where.parents("ul:eq(0)").children("li.last").removeClass("last");
1291
- $where.parent().before(what.removeClass("last"));
1292
- $where.parents("ul:eq(0)").children("li:last").addClass("last");
1293
- break;
1294
- case "after":
1295
- $where.parents("ul:eq(0)").children("li.last").removeClass("last");
1296
- $where.parent().after(what.removeClass("last"));
1297
- $where.parents("ul:eq(0)").children("li:last").addClass("last");
1298
- break;
1299
- case "inside":
1300
- if($where.parent().children("ul:first").size()) {
1301
- if(this.settings.rules.createat == "top") {
1302
- $where.parent().children("ul:first").prepend(what.removeClass("last")).children("li:last").addClass("last");
1303
-
1304
- // restored this section
1305
- var tmp_node = $where.parent().children("ul:first").children("li:first");
1306
- if(tmp_node.size()) {
1307
- how = "before";
1308
- where = tmp_node;
1309
- }
1310
- }
1311
- else {
1312
- // restored this section
1313
- var tmp_node = $where.parent().children("ul:first").children(".last");
1314
- if(tmp_node.size()) {
1315
- how = "after";
1316
- where = tmp_node;
1317
- }
1318
-
1319
- $where.parent().children("ul:first").children(".last").removeClass("last").end().append(what.removeClass("last")).children("li:last").addClass("last");
1320
- }
1321
- }
1322
- else {
1323
- what.addClass("last");
1324
- $where.parent().removeClass("leaf").append("<ul/>");
1325
- if(!$where.parent().hasClass("open")) $where.parent().addClass("closed");
1326
- $where.parent().children("ul:first").prepend(what);
1327
- }
1328
- if($where.parent().hasClass("closed")) { this.open_branch($where); }
1329
- break;
1330
- default:
1331
- break;
1332
- }
1333
- // CLEANUP OLD PARENT
1334
- if($parent.find("li").size() == 0) {
1335
- var $li = $parent.parent();
1336
- $li.removeClass("open").removeClass("closed").addClass("leaf");
1337
- if(!$li.is(".tree")) $li.children("ul").remove();
1338
- $li.parents("ul:eq(0)").children("li.last").removeClass("last").end().children("li:last").addClass("last");
1339
- }
1340
- else {
1341
- $parent.children("li.last").removeClass("last");
1342
- $parent.children("li:last").addClass("last");
1343
- }
1344
-
1345
- // NO LONGER CORRECT WITH position PARAM - if(is_new && how != "inside") where = this.get_node(where).parents("li:eq(0)");
1346
- if(is_copy) this.callback("oncopy", [this.get_node(what).get(0), this.get_node(where).get(0), how, this, rb]);
1347
- else if(is_new) this.callback("oncreate", [this.get_node(what).get(0), ($where.is("ul") ? -1 : this.get_node(where).get(0) ), how, this, rb]);
1348
- else this.callback("onmove", [this.get_node(what).get(0), this.get_node(where).get(0), how, this, rb]);
1349
- return what;
1350
- },
1351
- error : function (code) {
1352
- this.callback("error",[code,this]);
1353
- return false;
1354
- },
1355
- lock : function (state) {
1356
- this.locked = state;
1357
- if(this.locked) this.container.children("ul:eq(0)").addClass("locked");
1358
- else this.container.children("ul:eq(0)").removeClass("locked");
1359
- },
1360
- cut : function (obj) {
1361
- if(this.locked) return this.error("LOCKED");
1362
- obj = obj ? this.get_node(obj) : this.container.find("a.clicked").filter(":first-child").parent();
1363
- if(!obj || !obj.size()) return this.error("CUT: NO NODE SELECTED");
1364
- tree_component.cut_copy.copy_nodes = false;
1365
- tree_component.cut_copy.cut_nodes = obj;
1366
- },
1367
- copy : function (obj) {
1368
- if(this.locked) return this.error("LOCKED");
1369
- obj = obj ? this.get_node(obj) : this.container.find("a.clicked").filter(":first-child").parent();
1370
- if(!obj || !obj.size()) return this.error("COPY: NO NODE SELECTED");
1371
- tree_component.cut_copy.copy_nodes = obj;
1372
- tree_component.cut_copy.cut_nodes = false;
1373
- },
1374
- paste : function (obj, position) {
1375
- if(this.locked) return this.error("LOCKED");
1376
-
1377
- var root = false;
1378
- if(obj == -1) { root = true; obj = this.container; }
1379
- else obj = obj ? this.get_node(obj) : this.selected;
1380
-
1381
- if(!root && (!obj || !obj.size())) return this.error("PASTE: NO NODE SELECTED");
1382
- if(!tree_component.cut_copy.copy_nodes && !tree_component.cut_copy.cut_nodes) return this.error("PASTE: NOTHING TO DO");
1383
-
1384
- var _this = this;
1385
-
1386
- var pos = position;
1387
-
1388
- if(position == "before") {
1389
- position = obj.parent().children().index(obj);
1390
- obj = obj.parents("li:eq(0)");
1391
- }
1392
- else if(position == "after") {
1393
- position = obj.parent().children().index(obj) + 1;
1394
- obj = obj.parents("li:eq(0)");
1395
- }
1396
- else if((typeof position).toLowerCase() == "undefined" || position == "inside") {
1397
- position = (this.settings.rules.createat == "top") ? 0 : obj.children("ul:eq(0)").children("li").size();
1398
- }
1399
- if(!root && obj.size() == 0) { root = true; obj = this.container; }
1400
-
1401
- if(tree_component.cut_copy.copy_nodes && tree_component.cut_copy.copy_nodes.size()) {
1402
- var ok = true;
1403
- if(!root && !this.check_move(tree_component.cut_copy.copy_nodes, obj.children("a:eq(0)"), "inside")) return false;
1404
-
1405
- if(obj.children("ul").size() == 0 || (root == true && obj.children("ul").children("li").size() == 0) ) {
1406
- if(!root) var a = this.moved(tree_component.cut_copy.copy_nodes,obj.children("a:eq(0)"),"inside", false, true);
1407
- else var a = this.moved(tree_component.cut_copy.copy_nodes,this.container.children("ul:eq(0)"),"inside", false, true);
1408
- }
1409
- else if(pos == "before" && obj.children("ul:eq(0)").children("li:nth-child(" + (position + 1) + ")").size())
1410
- var a = this.moved(tree_component.cut_copy.copy_nodes,obj.children("ul:eq(0)").children("li:nth-child(" + (position + 1) + ")").children("a:eq(0)"),"before", false, true);
1411
- else if(pos == "after" && obj.children("ul:eq(0)").children("li:nth-child(" + (position) + ")").size())
1412
- var a = this.moved(tree_component.cut_copy.copy_nodes,obj.children("ul:eq(0)").children("li:nth-child(" + (position) + ")").children("a:eq(0)"),"after", false, true);
1413
- else if(obj.children("ul:eq(0)").children("li:nth-child(" + (position + 1) + ")").size())
1414
- var a = this.moved(tree_component.cut_copy.copy_nodes,obj.children("ul:eq(0)").children("li:nth-child(" + (position + 1) + ")").children("a:eq(0)"),"before", false, true);
1415
- else
1416
- var a = this.moved(tree_component.cut_copy.copy_nodes,obj.children("ul:eq(0)").children("li:last").children("a:eq(0)"),"after", false, true);
1417
- tree_component.cut_copy.copy_nodes = false;
1418
- }
1419
- if(tree_component.cut_copy.cut_nodes && tree_component.cut_copy.cut_nodes.size()) {
1420
- var ok = true;
1421
- obj.parents().andSelf().each(function () {
1422
- if(tree_component.cut_copy.cut_nodes.index(this) != -1) {
1423
- ok = false;
1424
- return false;
1425
- }
1426
- });
1427
- if(!ok) return this.error("Invalid paste");
1428
- if(!root && !this.check_move(tree_component.cut_copy.cut_nodes, obj.children("a:eq(0)"), "inside")) return false;
1429
-
1430
- if(obj.children("ul").size() == 0 || (root == true && obj.children("ul").children("li").size() == 0) ) {
1431
- if(!root) var a = this.moved(tree_component.cut_copy.cut_nodes,obj.children("a:eq(0)"),"inside");
1432
- else var a = this.moved(tree_component.cut_copy.cut_nodes,this.container.children("ul:eq(0)"),"inside");
1433
- }
1434
- else if(pos == "before" && obj.children("ul:eq(0)").children("li:nth-child(" + (position + 1) + ")").size())
1435
- var a = this.moved(tree_component.cut_copy.cut_nodes,obj.children("ul:eq(0)").children("li:nth-child(" + (position + 1) + ")").children("a:eq(0)"),"before");
1436
- else if(pos == "after" && obj.children("ul:eq(0)").children("li:nth-child(" + (position) + ")").size())
1437
- var a = this.moved(tree_component.cut_copy.cut_nodes,obj.children("ul:eq(0)").children("li:nth-child(" + (position) + ")").children("a:eq(0)"),"after");
1438
- else if(obj.children("ul:eq(0)").children("li:nth-child(" + (position + 1) + ")").size())
1439
- var a = this.moved(tree_component.cut_copy.cut_nodes,obj.children("ul:eq(0)").children("li:nth-child(" + (position + 1) + ")").children("a:eq(0)"),"before");
1440
- else
1441
- var a = this.moved(tree_component.cut_copy.cut_nodes,obj.children("ul:eq(0)").children("li:last").children("a:eq(0)"),"after");
1442
- tree_component.cut_copy.cut_nodes = false;
1443
- }
1444
- },
1445
- search : function(str, func) {
1446
- var _this = this;
1447
- if(!str || (this.srch && str != this.srch) ) {
1448
- this.srch = "";
1449
- this.srch_opn = false;
1450
- this.container.find("a.search").removeClass("search");
1451
- }
1452
- this.srch = str;
1453
- if(!str) return;
1454
-
1455
- if(!func) func = "contains";
1456
- if(this.settings.data.async) {
1457
- if(!this.srch_opn) {
1458
- var dd = $.extend( { "search" : str } , this.callback("beforedata", [false, this] ) );
1459
- $.ajax({
1460
- type : this.settings.data.opts.method,
1461
- url : this.settings.data.opts.url,
1462
- data : dd,
1463
- dataType : "text",
1464
- success : function (data) {
1465
- _this.srch_opn = $.unique(data.split(","));
1466
- _this.search.apply(_this,[str, func]);
1467
- }
1468
- });
1469
- }
1470
- else if(this.srch_opn.length) {
1471
- if(this.srch_opn && this.srch_opn.length) {
1472
- var opn = false;
1473
- for(var j = 0; j < this.srch_opn.length; j++) {
1474
- if(this.get_node("#" + this.srch_opn[j]).size() > 0) {
1475
- opn = true;
1476
- var tmp = "#" + this.srch_opn[j];
1477
- delete this.srch_opn[j];
1478
- this.open_branch(tmp, true, function () { _this.search.apply(_this,[str, func]); } );
1479
- }
1480
- }
1481
- if(!opn) {
1482
- this.srch_opn = [];
1483
- _this.search.apply(_this,[str, func]);
1484
- }
1485
- }
1486
- }
1487
- else {
1488
- this.srch_opn = false;
1489
- var selector = "a";
1490
- // IF LANGUAGE VERSIONS
1491
- if(this.settings.languages.length) selector += "." + this.current_lang;
1492
- this.callback("onsearch", [this.container.find(selector + ":" + func + "('" + str + "')"), this]);
1493
- }
1494
- }
1495
- else {
1496
- var selector = "a";
1497
- // IF LANGUAGE VERSIONS
1498
- if(this.settings.languages.length) selector += "." + this.current_lang;
1499
- var nn = this.container.find(selector + ":" + func + "('" + str + "')");
1500
- nn.parents("li.closed").each( function () { _this.open_branch(this, true); });
1501
- this.callback("onsearch", [nn, this]);
1502
- }
1503
- },
1504
- add_sheet : tree_component.add_sheet,
1505
-
1506
- destroy : function() {
1507
- this.callback("ondestroy", [this]);
1508
-
1509
- this.container.unbind(".jstree");
1510
- $("#" + this.container.attr("id")).die("click.jstree").die("dblclick.jstree").die("mouseover.jstree").die("mouseout.jstree").die("mousedown.jstree");
1511
- this.container.removeClass("tree ui-widget ui-widget-content tree-default tree-" + this.settings.ui.theme_name).children("ul").removeClass("no_dots ltr locked").find("li").removeClass("leaf").removeClass("open").removeClass("closed").removeClass("last").children("a").removeClass("clicked hover search");
1512
-
1513
- if(this.cntr == tree_component.focused) {
1514
- for(var i in tree_component.inst) {
1515
- if(i != this.cntr && i != this.container.attr("id")) {
1516
- tree_component.inst[i].focus();
1517
- break;
1518
- }
1519
- }
1520
- }
1521
-
1522
- tree_component.inst[this.cntr] = false;
1523
- tree_component.inst[this.container.attr("id")] = false;
1524
- delete tree_component.inst[this.cntr];
1525
- delete tree_component.inst[this.container.attr("id")];
1526
- tree_component.cntr --;
1527
- }
1528
- }
1529
- };
1530
-
1531
- // instance manager
1532
- tree_component.cntr = 0;
1533
- tree_component.inst = {};
1534
-
1535
- // themes
1536
- tree_component.themes = [];
1537
-
1538
- // drag'n'drop stuff
1539
- tree_component.drag_drop = {
1540
- isdown : false, // Is there a drag
1541
- drag_node : false, // The actual node
1542
- drag_help : false, // The helper
1543
- dragged : false,
1544
-
1545
- init_x : false,
1546
- init_y : false,
1547
- moving : false,
1548
-
1549
- origin_tree : false,
1550
- marker : false,
1551
-
1552
- move_type : false, // before, after or inside
1553
- ref_node : false, // reference node
1554
- appended : false, // is helper appended
1555
-
1556
- foreign : false, // Is the dragged node a foreign one
1557
- droppable : [], // Array of classes that can be dropped onto the tree
1558
-
1559
- open_time : false, // Timeout for opening nodes
1560
- scroll_time : false // Timeout for scrolling
1561
- };
1562
- tree_component.mouseup = function(event) {
1563
- var tmp = tree_component.drag_drop;
1564
- if(tmp.open_time) clearTimeout(tmp.open_time);
1565
- if(tmp.scroll_time) clearTimeout(tmp.scroll_time);
1566
-
1567
- if(tmp.moving && $.tree.drag_end !== false) $.tree.drag_end.call(null, event, tmp);
1568
-
1569
- if(tmp.foreign === false && tmp.drag_node && tmp.drag_node.size()) {
1570
- tmp.drag_help.remove();
1571
- if(tmp.move_type) {
1572
- var tree1 = tree_component.inst[tmp.ref_node.parents(".tree:eq(0)").attr("id")];
1573
- if(tree1) tree1.moved(tmp.dragged, tmp.ref_node, tmp.move_type, false, (tmp.origin_tree.settings.rules.drag_copy == "on" || (tmp.origin_tree.settings.rules.drag_copy == "ctrl" && event.ctrlKey) ) );
1574
- }
1575
- tmp.move_type = false;
1576
- tmp.ref_node = false;
1577
- }
1578
- if(tmp.foreign !== false) {
1579
- if(tmp.drag_help) tmp.drag_help.remove();
1580
- if(tmp.move_type) {
1581
- var tree1 = tree_component.inst[tmp.ref_node.parents(".tree:eq(0)").attr("id")];
1582
- if(tree1) tree1.callback("ondrop",[tmp.f_data, tree1.get_node(tmp.ref_node).get(0), tmp.move_type, tree1]);
1583
- }
1584
- tmp.foreign = false;
1585
- tmp.move_type = false;
1586
- tmp.ref_node = false;
1587
- }
1588
- // RESET EVERYTHING
1589
- if(tree_component.drag_drop.marker) tree_component.drag_drop.marker.hide();
1590
- if(tmp.dragged && tmp.dragged.size()) tmp.dragged.removeClass("dragged");
1591
- tmp.dragged = false;
1592
- tmp.drag_help = false;
1593
- tmp.drag_node = false;
1594
- tmp.f_type = false;
1595
- tmp.f_data = false;
1596
- tmp.init_x = false;
1597
- tmp.init_y = false;
1598
- tmp.moving = false;
1599
- tmp.appended = false;
1600
- tmp.origin_tree = false;
1601
- if(tmp.isdown) {
1602
- tmp.isdown = false;
1603
- event.preventDefault();
1604
- event.stopPropagation();
1605
- return false;
1606
- }
1607
- };
1608
- tree_component.mousemove = function(event) {
1609
- var tmp = tree_component.drag_drop;
1610
- var is_start = false;
1611
-
1612
- if(tmp.isdown) {
1613
- if(!tmp.moving && Math.abs(tmp.init_x - event.pageX) < 5 && Math.abs(tmp.init_y - event.pageY) < 5) {
1614
- event.preventDefault();
1615
- event.stopPropagation();
1616
- return false;
1617
- }
1618
- else {
1619
- if(!tmp.moving) {
1620
- tree_component.drag_drop.moving = true;
1621
- is_start = true;
1622
- }
1623
- }
1624
-
1625
- if(tmp.open_time) clearTimeout(tmp.open_time);
1626
-
1627
- if(tmp.drag_help !== false) {
1628
- if(!tmp.appended) {
1629
- if(tmp.foreign !== false) tmp.origin_tree = $.tree.focused();
1630
- $("body").append(tmp.drag_help);
1631
- tmp.w = tmp.drag_help.width();
1632
- tmp.appended = true;
1633
- }
1634
- tmp.drag_help.css({ "left" : (event.pageX + 5 ), "top" : (event.pageY + 15) });
1635
- }
1636
-
1637
- if(is_start && $.tree.drag_start !== false) $.tree.drag_start.call(null, event, tmp);
1638
- if($.tree.drag !== false) $.tree.drag.call(null, event, tmp);
1639
-
1640
- if(event.target.tagName == "DIV" && event.target.id == "jstree-marker") return false;
1641
-
1642
- var et = $(event.target);
1643
- if(et.is("ins")) et = et.parent();
1644
- var cnt = et.is(".tree") ? et : et.parents(".tree:eq(0)");
1645
-
1646
- // if not moving over a tree
1647
- if(cnt.size() == 0 || !tree_component.inst[cnt.attr("id")]) {
1648
- if(tmp.scroll_time) clearTimeout(tmp.scroll_time);
1649
- if(tmp.drag_help !== false) tmp.drag_help.find("li:eq(0) ins").addClass("forbidden");
1650
- tmp.move_type = false;
1651
- tmp.ref_node = false;
1652
- tree_component.drag_drop.marker.hide();
1653
- return false;
1654
- }
1655
-
1656
- var tree2 = tree_component.inst[cnt.attr("id")];
1657
- tree2.off_height();
1658
-
1659
- if(tmp.scroll_time) clearTimeout(tmp.scroll_time);
1660
- tmp.scroll_time = setTimeout( function() { tree2.scroll_check(event.pageX,event.pageY); }, 50);
1661
-
1662
- var mov = false;
1663
- var st = cnt.scrollTop();
1664
-
1665
- if(event.target.tagName == "A" || event.target.tagName == "INS") {
1666
- // just in case if hover is over the draggable
1667
- if(et.is("#jstree-dragged")) return false;
1668
- if(tree2.get_node(event.target).hasClass("closed")) {
1669
- tmp.open_time = setTimeout( function () { tree2.open_branch(et); }, 500);
1670
- }
1671
-
1672
- var et_off = et.offset();
1673
- var goTo = {
1674
- x : (et_off.left - 1),
1675
- y : (event.pageY - et_off.top)
1676
- };
1677
-
1678
- var arr = [];
1679
- if(goTo.y < tree2.li_height/3 + 1 ) arr = ["before","inside","after"];
1680
- else if(goTo.y > tree2.li_height*2/3 - 1 ) arr = ["after","inside","before"];
1681
- else {
1682
- if(goTo.y < tree2.li_height/2) arr = ["inside","before","after"];
1683
- else arr = ["inside","after","before"];
1684
- }
1685
- var ok = false;
1686
- var nn = (tmp.foreign == false) ? tmp.origin_tree.container.find("li.dragged") : tmp.f_type;
1687
- $.each(arr, function(i, val) {
1688
- if(tree2.check_move(nn, et, val)) {
1689
- mov = val;
1690
- ok = true;
1691
- return false;
1692
- }
1693
- });
1694
- if(ok) {
1695
- switch(mov) {
1696
- case "before":
1697
- goTo.y = et_off.top - 2;
1698
- tree_component.drag_drop.marker.attr("class","marker");
1699
- break;
1700
- case "after":
1701
- goTo.y = et_off.top - 2 + tree2.li_height;
1702
- tree_component.drag_drop.marker.attr("class","marker");
1703
- break;
1704
- case "inside":
1705
- goTo.x -= 2;
1706
- goTo.y = et_off.top - 2 + tree2.li_height/2;
1707
- tree_component.drag_drop.marker.attr("class","marker_plus");
1708
- break;
1709
- }
1710
- tmp.move_type = mov;
1711
- tmp.ref_node = $(event.target);
1712
- if(tmp.drag_help !== false) tmp.drag_help.find(".forbidden").removeClass("forbidden");
1713
- tree_component.drag_drop.marker.css({ "left" : goTo.x , "top" : goTo.y }).show();
1714
- }
1715
- }
1716
-
1717
- if( (et.is(".tree") || et.is("ul") ) && et.find("li:eq(0)").size() == 0) {
1718
- var et_off = et.offset();
1719
- tmp.move_type = "inside";
1720
- tmp.ref_node = cnt.children("ul:eq(0)");
1721
- if(tmp.drag_help !== false) tmp.drag_help.find(".forbidden").removeClass("forbidden");
1722
- tree_component.drag_drop.marker.attr("class","marker_plus");
1723
- tree_component.drag_drop.marker.css({ "left" : (et_off.left + 10) , "top" : et_off.top + 15 }).show();
1724
- }
1725
- else if( (event.target.tagName != "A" && event.target.tagName != "INS") || !ok) {
1726
- if(tmp.drag_help !== false) tmp.drag_help.find("li:eq(0) ins").addClass("forbidden");
1727
- tmp.move_type = false;
1728
- tmp.ref_node = false;
1729
- tree_component.drag_drop.marker.hide();
1730
- }
1731
- event.preventDefault();
1732
- event.stopPropagation();
1733
- return false;
1734
- }
1735
- return true;
1736
- };
1737
- $(function () {
1738
- $(document).bind("mousemove.jstree", tree_component.mousemove);
1739
- $(document).bind("mouseup.jstree", tree_component.mouseup);
1740
- });
1741
-
1742
- // cut, copy, paste stuff
1743
- tree_component.cut_copy = {
1744
- copy_nodes : false,
1745
- cut_nodes : false
1746
- };
1747
-
1748
- // css stuff
1749
- tree_component.css = false;
1750
- tree_component.get_css = function(rule_name, delete_flag) {
1751
- rule_name = rule_name.toLowerCase();
1752
- var css_rules = tree_component.css.cssRules || tree_component.css.rules;
1753
- var j = 0;
1754
- do {
1755
- if(css_rules.length && j > css_rules.length + 5) return false;
1756
- if(css_rules[j].selectorText && css_rules[j].selectorText.toLowerCase() == rule_name) {
1757
- if(delete_flag == true) {
1758
- if(tree_component.css.removeRule) document.styleSheets[i].removeRule(j);
1759
- if(tree_component.css.deleteRule) document.styleSheets[i].deleteRule(j);
1760
- return true;
1761
- }
1762
- else return css_rules[j];
1763
- }
1764
- }
1765
- while (css_rules[++j]);
1766
- return false;
1767
- };
1768
- tree_component.add_css = function(rule_name) {
1769
- if(tree_component.get_css(rule_name)) return false;
1770
- (tree_component.css.insertRule) ? tree_component.css.insertRule(rule_name + ' { }', 0) : tree_component.css.addRule(rule_name, null, 0);
1771
- return tree_component.get_css(rule_name);
1772
- };
1773
- tree_component.remove_css = function(rule_name) {
1774
- return tree_component.get_css(rule_name, true);
1775
- };
1776
- tree_component.add_sheet = function(opts) {
1777
- if(opts.str) {
1778
- var tmp = document.createElement("style");
1779
- tmp.type = "text/css";
1780
- if(tmp.styleSheet) tmp.styleSheet.cssText = opts.str;
1781
- else tmp.appendChild(document.createTextNode(opts.str));
1782
- document.getElementsByTagName("head")[0].appendChild(tmp);
1783
- return tmp.sheet;
1784
- }
1785
- if(opts.url) {
1786
- if(document.createStyleSheet) {
1787
- try { document.createStyleSheet(opts.url); } catch (e) { };
1788
- }
1789
- else {
1790
- var newSS = document.createElement('link');
1791
- newSS.rel = 'stylesheet';
1792
- newSS.type = 'text/css';
1793
- newSS.media = "all";
1794
- newSS.href = opts.url;
1795
- // var styles = "@import url(' " + url + " ');";
1796
- // newSS.href ='data:text/css,'+escape(styles);
1797
- document.getElementsByTagName("head")[0].appendChild(newSS);
1798
- return newSS.styleSheet;
1799
- }
1800
- }
1801
- };
1802
- $(function () {
1803
- var u = navigator.userAgent.toLowerCase();
1804
- var v = (u.match( /.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/ ) || [0,'0'])[1];
1805
- var css = '/* TREE LAYOUT */ .tree ul { margin:0 0 0 5px; padding:0 0 0 0; list-style-type:none; } .tree li { display:block; min-height:18px; line-height:18px; padding:0 0 0 15px; margin:0 0 0 0; /* Background fix */ clear:both; } .tree li ul { display:none; } .tree li a, .tree li span { display:inline-block;line-height:16px;height:16px;color:black;white-space:nowrap;text-decoration:none;padding:1px 4px 1px 4px;margin:0; } .tree li a:focus { outline: none; } .tree li a input, .tree li span input { margin:0;padding:0 0;display:inline-block;height:12px !important;border:1px solid white;background:white;font-size:10px;font-family:Verdana; } .tree li a input:not([class="xxx"]), .tree li span input:not([class="xxx"]) { padding:1px 0; } /* FOR DOTS */ .tree .ltr li.last { float:left; } .tree > ul li.last { overflow:visible; } /* OPEN OR CLOSE */ .tree li.open ul { display:block; } .tree li.closed ul { display:none !important; } /* FOR DRAGGING */ #jstree-dragged { position:absolute; top:-10px; left:-10px; margin:0; padding:0; } #jstree-dragged ul ul ul { display:none; } #jstree-marker { padding:0; margin:0; line-height:5px; font-size:1px; overflow:hidden; height:5px; position:absolute; left:-45px; top:-30px; z-index:1000; background-color:transparent; background-repeat:no-repeat; display:none; } #jstree-marker.marker { width:45px; background-position:-32px top; } #jstree-marker.marker_plus { width:5px; background-position:right top; } /* BACKGROUND DOTS */ .tree li li { overflow:hidden; } .tree > .ltr > li { display:table; } /* ICONS */ .tree ul ins { display:inline-block; text-decoration:none; width:16px; height:16px; } .tree .ltr ins { margin:0 4px 0 0px; } ';
1806
- if(/msie/.test(u) && !/opera/.test(u)) {
1807
- if(parseInt(v) == 6) css += '.tree li { height:18px; zoom:1; } .tree li li { overflow:visible; } .tree .ltr li.last { margin-top: expression( (this.previousSibling && /open/.test(this.previousSibling.className) ) ? "-2px" : "0"); } .marker { width:45px; background-position:-32px top; } .marker_plus { width:5px; background-position:right top; }';
1808
- if(parseInt(v) == 7) css += '.tree li li { overflow:visible; } .tree .ltr li.last { margin-top: expression( (this.previousSibling && /open/.test(this.previousSibling.className) ) ? "-2px" : "0"); }';
1809
- }
1810
- if(/opera/.test(u)) css += '.tree > ul > li.last:after { content:"."; display: block; height:1px; clear:both; visibility:hidden; }';
1811
- if(/mozilla/.test(u) && !/(compatible|webkit)/.test(u) && v.indexOf("1.8") == 0) css += '.tree .ltr li a { display:inline; float:left; } .tree li ul { clear:both; }';
1812
- tree_component.css = tree_component.add_sheet({ str : css });
1813
- });
1814
- })(jQuery);
1815
-
1816
- // Datastores
1817
- // HTML and JSON are included here by default
1818
- (function ($) {
1819
- $.extend($.tree.datastores, {
1820
- "html" : function () {
1821
- return {
1822
- get : function(obj, tree, opts) {
1823
- return obj && $(obj).size() ? $('<div>').append(tree.get_node(obj).clone()).html() : tree.container.children("ul:eq(0)").html();
1824
- },
1825
- parse : function(data, tree, opts, callback) {
1826
- if(callback) callback.call(null, data);
1827
- return data;
1828
- },
1829
- load : function(data, tree, opts, callback) {
1830
- if(opts.url) {
1831
- $.ajax({
1832
- 'type' : opts.method,
1833
- 'url' : opts.url,
1834
- 'data' : data,
1835
- 'dataType' : "html",
1836
- 'success' : function (d, textStatus) {
1837
- callback.call(null, d);
1838
- },
1839
- 'error' : function (xhttp, textStatus, errorThrown) {
1840
- callback.call(null, false);
1841
- tree.error(errorThrown + " " + textStatus);
1842
- }
1843
- });
1844
- }
1845
- else {
1846
- callback.call(null, opts.static || tree.container.children("ul:eq(0)").html());
1847
- }
1848
- }
1849
- };
1850
- },
1851
- "json" : function () {
1852
- return {
1853
- get : function(obj, tree, opts) {
1854
- var _this = this;
1855
- if(!obj || $(obj).size() == 0) obj = tree.container.children("ul").children("li");
1856
- else obj = $(obj);
1857
-
1858
- if(!opts) opts = {};
1859
- if(!opts.outer_attrib) opts.outer_attrib = [ "id", "rel", "class" ];
1860
- if(!opts.inner_attrib) opts.inner_attrib = [ ];
1861
-
1862
- if(obj.size() > 1) {
1863
- var arr = [];
1864
- obj.each(function () {
1865
- arr.push(_this.get(this, tree, opts));
1866
- });
1867
- return arr;
1868
- }
1869
- if(obj.size() == 0) return [];
1870
-
1871
- var json = { attributes : {}, data : {} };
1872
- if(obj.hasClass("open")) json.data.state = "open";
1873
- if(obj.hasClass("closed")) json.data.state = "closed";
1874
-
1875
- for(var i in opts.outer_attrib) {
1876
- if(!opts.outer_attrib.hasOwnProperty(i)) continue;
1877
- var val = (opts.outer_attrib[i] == "class") ? obj.attr(opts.outer_attrib[i]).replace(/(^| )last( |$)/ig," ").replace(/(^| )(leaf|closed|open)( |$)/ig," ") : obj.attr(opts.outer_attrib[i]);
1878
- if(typeof val != "undefined" && val.toString().replace(" ","").length > 0) json.attributes[opts.outer_attrib[i]] = val;
1879
- delete val;
1880
- }
1881
-
1882
- if(tree.settings.languages.length) {
1883
- for(var i in tree.settings.languages) {
1884
- if(!tree.settings.languages.hasOwnProperty(i)) continue;
1885
- var a = obj.children("a." + tree.settings.languages[i]);
1886
- if(opts.force || opts.inner_attrib.length || a.children("ins").get(0).style.backgroundImage.toString().length || a.children("ins").get(0).className.length) {
1887
- json.data[tree.settings.languages[i]] = {};
1888
- json.data[tree.settings.languages[i]].title = tree.get_text(obj,tree.settings.languages[i]);
1889
- if(a.children("ins").get(0).style.className.length) {
1890
- json.data[tree.settings.languages[i]].icon = a.children("ins").get(0).style.className;
1891
- }
1892
- if(a.children("ins").get(0).style.backgroundImage.length) {
1893
- json.data[tree.settings.languages[i]].icon = a.children("ins").get(0).style.backgroundImage.replace("url(","").replace(")","");
1894
- }
1895
- if(opts.inner_attrib.length) {
1896
- json.data[tree.settings.languages[i]].attributes = {};
1897
- for(var j in opts.inner_attrib) {
1898
- if(!opts.inner_attrib.hasOwnProperty(j)) continue;
1899
- var val = a.attr(opts.inner_attrib[j]);
1900
- if(typeof val != "undefined" && val.toString().replace(" ","").length > 0) json.data[tree.settings.languages[i]].attributes[opts.inner_attrib[j]] = val;
1901
- delete val;
1902
- }
1903
- }
1904
- }
1905
- else {
1906
- json.data[tree.settings.languages[i]] = tree.get_text(obj,tree.settings.languages[i]);
1907
- }
1908
- }
1909
- }
1910
- else {
1911
- var a = obj.children("a");
1912
- json.data.title = tree.get_text(obj);
1913
-
1914
- if(a.children("ins").size() && a.children("ins").get(0).className.length) {
1915
- json.data.icon = a.children("ins").get(0).className;
1916
- }
1917
- if(a.children("ins").size() && a.children("ins").get(0).style.backgroundImage.length) {
1918
- json.data.icon = a.children("ins").get(0).style.backgroundImage.replace("url(","").replace(")","");
1919
- }
1920
-
1921
- if(opts.inner_attrib.length) {
1922
- json.data.attributes = {};
1923
- for(var j in opts.inner_attrib) {
1924
- if(!opts.inner_attrib.hasOwnProperty(j)) continue;
1925
- var val = a.attr(opts.inner_attrib[j]);
1926
- if(typeof val != "undefined" && val.toString().replace(" ","").length > 0) json.data.attributes[opts.inner_attrib[j]] = val;
1927
- delete val;
1928
- }
1929
- }
1930
- }
1931
-
1932
- if(obj.children("ul").size() > 0) {
1933
- json.children = [];
1934
- obj.children("ul").children("li").each(function () {
1935
- json.children.push(_this.get(this, tree, opts));
1936
- });
1937
- }
1938
- return json;
1939
- },
1940
- parse : function(data, tree, opts, callback) {
1941
- if(Object.prototype.toString.apply(data) === "[object Array]") {
1942
- var str = '';
1943
- for(var i = 0; i < data.length; i ++) {
1944
- if(typeof data[i] == "function") continue;
1945
- str += this.parse(data[i], tree, opts);
1946
- }
1947
- if(callback) callback.call(null, str);
1948
- return str;
1949
- }
1950
-
1951
- if(!data || !data.data) {
1952
- if(callback) callback.call(null, false);
1953
- return "";
1954
- }
1955
-
1956
- var str = '';
1957
- str += "<li ";
1958
- var cls = false;
1959
- if(data.attributes) {
1960
- for(var i in data.attributes) {
1961
- if(!data.attributes.hasOwnProperty(i)) continue;
1962
- if(i == "class") {
1963
- str += " class='" + data.attributes[i] + " ";
1964
- if(data.state == "closed" || data.state == "open") str += " " + data.state + " ";
1965
- str += "' ";
1966
- cls = true;
1967
- }
1968
- else str += " " + i + "='" + data.attributes[i] + "' ";
1969
- }
1970
- }
1971
- if(!cls && (data.state == "closed" || data.state == "open")) str += " class='" + data.state + "' ";
1972
- str += ">";
1973
-
1974
- if(tree.settings.languages.length) {
1975
- for(var i = 0; i < tree.settings.languages.length; i++) {
1976
- var attr = {};
1977
- attr["href"] = "";
1978
- attr["style"] = "";
1979
- attr["class"] = tree.settings.languages[i];
1980
- if(data.data[tree.settings.languages[i]] && (typeof data.data[tree.settings.languages[i]].attributes).toLowerCase() != "undefined") {
1981
- for(var j in data.data[tree.settings.languages[i]].attributes) {
1982
- if(!data.data[tree.settings.languages[i]].attributes.hasOwnProperty(j)) continue;
1983
- if(j == "style" || j == "class") attr[j] += " " + data.data[tree.settings.languages[i]].attributes[j];
1984
- else attr[j] = data.data[tree.settings.languages[i]].attributes[j];
1985
- }
1986
- }
1987
- str += "<a";
1988
- for(var j in attr) {
1989
- if(!attr.hasOwnProperty(j)) continue;
1990
- str += ' ' + j + '="' + attr[j] + '" ';
1991
- }
1992
- str += ">";
1993
- if(data.data[tree.settings.languages[i]] && data.data[tree.settings.languages[i]].icon) {
1994
- str += "<ins " + (data.data[tree.settings.languages[i]].icon.indexOf("/") == -1 ? " class='" + data.data[tree.settings.languages[i]].icon + "' " : " style='background-image:url(\"" + data.data[tree.settings.languages[i]].icon + "\");' " ) + ">&nbsp;</ins>";
1995
- }
1996
- else str += "<ins>&nbsp;</ins>";
1997
- str += ( (typeof data.data[tree.settings.languages[i]].title).toLowerCase() != "undefined" ? data.data[tree.settings.languages[i]].title : data.data[tree.settings.languages[i]] ) + "</a>";
1998
- }
1999
- }
2000
- else {
2001
- var attr = {};
2002
- attr["href"] = "";
2003
- attr["style"] = "";
2004
- attr["class"] = "";
2005
- if((typeof data.data.attributes).toLowerCase() != "undefined") {
2006
- for(var i in data.data.attributes) {
2007
- if(!data.data.attributes.hasOwnProperty(i)) continue;
2008
- if(i == "style" || i == "class") attr[i] += " " + data.data.attributes[i];
2009
- else attr[i] = data.data.attributes[i];
2010
- }
2011
- }
2012
- str += "<a";
2013
- for(var i in attr) {
2014
- if(!attr.hasOwnProperty(i)) continue;
2015
- str += ' ' + i + '="' + attr[i] + '" ';
2016
- }
2017
- str += ">";
2018
- if(data.data.icon) {
2019
- str += "<ins " + (data.data.icon.indexOf("/") == -1 ? " class='" + data.data.icon + "' " : " style='background-image:url(\"" + data.data.icon + "\");' " ) + ">&nbsp;</ins>";
2020
- }
2021
- else str += "<ins>&nbsp;</ins>";
2022
- str += ( (typeof data.data.title).toLowerCase() != "undefined" ? data.data.title : data.data ) + "</a>";
2023
- }
2024
- if(data.children && data.children.length) {
2025
- str += '<ul>';
2026
- for(var i = 0; i < data.children.length; i++) {
2027
- str += this.parse(data.children[i], tree, opts);
2028
- }
2029
- str += '</ul>';
2030
- }
2031
- str += "</li>";
2032
- if(callback) callback.call(null, str);
2033
- return str;
2034
- },
2035
- load : function(data, tree, opts, callback) {
2036
- if(opts.static) {
2037
- callback.call(null, opts.static);
2038
- }
2039
- else {
2040
- $.ajax({
2041
- 'type' : opts.method,
2042
- 'url' : opts.url,
2043
- 'data' : data,
2044
- 'dataType' : "json",
2045
- 'success' : function (d, textStatus) {
2046
- callback.call(null, d);
2047
- },
2048
- 'error' : function (xhttp, textStatus, errorThrown) {
2049
- callback.call(null, false);
2050
- tree.error(errorThrown + " " + textStatus);
2051
- }
2052
- });
2053
- }
2054
- }
2055
- }
2056
- }
2057
- });
2058
- })(jQuery);