]> granicus.if.org Git - docbook-dsssl/commitdiff
webhelp: Removing some unnecessary JQuery JS files
authorKasun Gajasinghe <kasunbg@gmail.com>
Sat, 4 Dec 2010 12:19:08 +0000 (12:19 +0000)
committerKasun Gajasinghe <kasunbg@gmail.com>
Sat, 4 Dec 2010 12:19:08 +0000 (12:19 +0000)
xsl/webhelp/template/common/images/loading.gif
xsl/webhelp/template/common/jquery/treeview/jquery.treeview.async.js [deleted file]
xsl/webhelp/template/common/jquery/treeview/jquery.treeview.js [deleted file]
xsl/webhelp/template/common/jquery/treeview/jquery.treeview.pack.js [deleted file]

index 6a56815b224f865a176ee02259209bbe734a7c66..085ccaecaf5fa5c34bc14cd2c2ed5cbbd8e25dcb 100755 (executable)
Binary files a/xsl/webhelp/template/common/images/loading.gif and b/xsl/webhelp/template/common/images/loading.gif differ
diff --git a/xsl/webhelp/template/common/jquery/treeview/jquery.treeview.async.js b/xsl/webhelp/template/common/jquery/treeview/jquery.treeview.async.js
deleted file mode 100755 (executable)
index 2597dde..0000000
+++ /dev/null
@@ -1,72 +0,0 @@
-/*\r
- * Async Treeview 0.1 - Lazy-loading extension for Treeview\r
- * \r
- * http://bassistance.de/jquery-plugins/jquery-plugin-treeview/\r
- *\r
- * Copyright (c) 2007 Jörn Zaefferer\r
- *\r
- * Dual licensed under the MIT and GPL licenses:\r
- *   http://www.opensource.org/licenses/mit-license.php\r
- *   http://www.gnu.org/licenses/gpl.html\r
- *\r
- * Revision: $Id$\r
- *\r
- */\r
-\r
-;(function($) {\r
-\r
-function load(settings, root, child, container) {\r
-       $.getJSON(settings.url, {root: root}, function(response) {\r
-               function createNode(parent) {\r
-                       var current = $("<li/>").attr("id", this.id || "").html("<span>" + this.text + "</span>").appendTo(parent);\r
-                       if (this.classes) {\r
-                               current.children("span").addClass(this.classes);\r
-                       }\r
-                       if (this.expanded) {\r
-                               current.addClass("open");\r
-                       }\r
-                       if (this.hasChildren || this.children && this.children.length) {\r
-                               var branch = $("<ul/>").appendTo(current);\r
-                               if (this.hasChildren) {\r
-                                       current.addClass("hasChildren");\r
-                                       createNode.call({\r
-                                               text:"placeholder",\r
-                                               id:"placeholder",\r
-                                               children:[]\r
-                                       }, branch);\r
-                               }\r
-                               if (this.children && this.children.length) {\r
-                                       $.each(this.children, createNode, [branch])\r
-                               }\r
-                       }\r
-               }\r
-               $.each(response, createNode, [child]);\r
-        $(container).treeview({add: child});\r
-    });\r
-}\r
-\r
-var proxied = $.fn.treeview;\r
-$.fn.treeview = function(settings) {\r
-       if (!settings.url) {\r
-               return proxied.apply(this, arguments);\r
-       }\r
-       var container = this;\r
-       load(settings, "source", this, container);\r
-       var userToggle = settings.toggle;\r
-       return proxied.call(this, $.extend({}, settings, {\r
-               collapsed: true,\r
-               toggle: function() {\r
-                       var $this = $(this);\r
-                       if ($this.hasClass("hasChildren")) {\r
-                               var childList = $this.removeClass("hasChildren").find("ul");\r
-                               childList.empty();\r
-                               load(settings, this.id, childList, container);\r
-                       }\r
-                       if (userToggle) {\r
-                               userToggle.apply(this, arguments);\r
-                       }\r
-               }\r
-       }));\r
-};\r
-\r
-})(jQuery);
\ No newline at end of file
diff --git a/xsl/webhelp/template/common/jquery/treeview/jquery.treeview.js b/xsl/webhelp/template/common/jquery/treeview/jquery.treeview.js
deleted file mode 100755 (executable)
index 248e725..0000000
+++ /dev/null
@@ -1,255 +0,0 @@
-/*
- * Treeview 1.4 - jQuery plugin to hide and show branches of a tree
- * 
- * http://bassistance.de/jquery-plugins/jquery-plugin-treeview/
- * http://docs.jquery.com/Plugins/Treeview
- *
- * Copyright (c) 2007 Jörn Zaefferer
- *
- * Dual licensed under the MIT and GPL licenses:
- *   http://www.opensource.org/licenses/mit-license.php
- *   http://www.gnu.org/licenses/gpl.html
- *
- * Revision: $Id: jquery.treeview.js 4684 2008-02-07 19:08:06Z joern.zaefferer $
- *
- */
-
-;(function($) {
-
-       $.extend($.fn, {
-               swapClass: function(c1, c2) {
-                       var c1Elements = this.filter('.' + c1);
-                       this.filter('.' + c2).removeClass(c2).addClass(c1);
-                       c1Elements.removeClass(c1).addClass(c2);
-                       return this;
-               },
-               replaceClass: function(c1, c2) {
-                       return this.filter('.' + c1).removeClass(c1).addClass(c2).end();
-               },
-               hoverClass: function(className) {
-                       className = className || "hover";
-                       return this.hover(function() {
-                               $(this).addClass(className);
-                       }, function() {
-                               $(this).removeClass(className);
-                       });
-               },
-               heightToggle: function(animated, callback) {
-                       animated ?
-                               this.animate({ height: "toggle" }, animated, callback) :
-                               this.each(function(){
-                                       jQuery(this)[ jQuery(this).is(":hidden") ? "show" : "hide" ]();
-                                       if(callback)
-                                               callback.apply(this, arguments);
-                               });
-               },
-               heightHide: function(animated, callback) {
-                       if (animated) {
-                               this.animate({ height: "hide" }, animated, callback);
-                       } else {
-                               this.hide();
-                               if (callback)
-                                       this.each(callback);                            
-                       }
-               },
-               prepareBranches: function(settings) {
-                       if (!settings.prerendered) {
-                               // mark last tree items
-                               this.filter(":last-child:not(ul)").addClass(CLASSES.last);
-                               // collapse whole tree, or only those marked as closed, anyway except those marked as open
-                               this.filter((settings.collapsed ? "" : "." + CLASSES.closed) + ":not(." + CLASSES.open + ")").find(">ul").hide();
-                       }
-                       // return all items with sublists
-                       return this.filter(":has(>ul)");
-               },
-               applyClasses: function(settings, toggler) {
-                       this.filter(":has(>ul):not(:has(>a))").find(">span").click(function(event) {
-                               toggler.apply($(this).next());
-                       }).add( $("a", this) ).hoverClass();
-                       
-                       if (!settings.prerendered) {
-                               // handle closed ones first
-                               this.filter(":has(>ul:hidden)")
-                                               .addClass(CLASSES.expandable)
-                                               .replaceClass(CLASSES.last, CLASSES.lastExpandable);
-                                               
-                               // handle open ones
-                               this.not(":has(>ul:hidden)")
-                                               .addClass(CLASSES.collapsable)
-                                               .replaceClass(CLASSES.last, CLASSES.lastCollapsable);
-                                               
-                   // create hitarea
-                               this.prepend("<div class=\"" + CLASSES.hitarea + "\"/>").find("div." + CLASSES.hitarea).each(function() {
-                                       var classes = "";
-                                       $.each($(this).parent().attr("class").split(" "), function() {
-                                               classes += this + "-hitarea ";
-                                       });
-                                       $(this).addClass( classes );
-                               });
-                       }
-                       
-                       // apply event to hitarea
-                       this.find("div." + CLASSES.hitarea).click( toggler );
-               },
-               treeview: function(settings) {
-
-            if(typeof(window.treeCookieId) !== 'undefined' || window.treeCookieId === ""){
-                treeCookieId = "treeview";
-            }
-
-                       settings = $.extend({
-                               cookieId: treeCookieId
-                       }, settings);
-                       
-                       if (settings.add) {
-                               return this.trigger("add", [settings.add]);
-                       }
-                       
-                       if ( settings.toggle ) {
-                               var callback = settings.toggle;
-                               settings.toggle = function() {
-                                       return callback.apply($(this).parent()[0], arguments);
-                               };
-                       }
-               
-                       // factory for treecontroller
-                       function treeController(tree, control) {
-                               // factory for click handlers
-                               function handler(filter) {
-                                       return function() {
-                                               // reuse toggle event handler, applying the elements to toggle
-                                               // start searching for all hitareas
-                                               toggler.apply( $("div." + CLASSES.hitarea, tree).filter(function() {
-                                                       // for plain toggle, no filter is provided, otherwise we need to check the parent element
-                                                       return filter ? $(this).parent("." + filter).length : true;
-                                               }) );
-                                               return false;
-                                       };
-                               }
-                               // click on first element to collapse tree
-                               $("a:eq(0)", control).click( handler(CLASSES.collapsable) );
-                               // click on second to expand tree
-                               $("a:eq(1)", control).click( handler(CLASSES.expandable) );
-                               // click on third to toggle tree
-                               $("a:eq(2)", control).click( handler() ); 
-                       }
-               
-                       // handle toggle event
-                       function toggler() {
-                               $(this)
-                                       .parent()
-                                       // swap classes for hitarea
-                                       .find(">.hitarea")
-                                               .swapClass( CLASSES.collapsableHitarea, CLASSES.expandableHitarea )
-                                               .swapClass( CLASSES.lastCollapsableHitarea, CLASSES.lastExpandableHitarea )
-                                       .end()
-                                       // swap classes for parent li
-                                       .swapClass( CLASSES.collapsable, CLASSES.expandable )
-                                       .swapClass( CLASSES.lastCollapsable, CLASSES.lastExpandable )
-                                       // find child lists
-                                       .find( ">ul" )
-                                       // toggle them
-                                       .heightToggle( settings.animated, settings.toggle );
-                               if ( settings.unique ) {
-                                       $(this).parent()
-                                               .siblings()
-                                               // swap classes for hitarea
-                                               .find(">.hitarea")
-                                                       .replaceClass( CLASSES.collapsableHitarea, CLASSES.expandableHitarea )
-                                                       .replaceClass( CLASSES.lastCollapsableHitarea, CLASSES.lastExpandableHitarea )
-                                               .end()
-                                               .replaceClass( CLASSES.collapsable, CLASSES.expandable )
-                                               .replaceClass( CLASSES.lastCollapsable, CLASSES.lastExpandable )
-                                               .find( ">ul" )
-                                               .heightHide( settings.animated, settings.toggle );
-                               }
-                       }
-                       //Cookie Persistence
-                       function serialize() {
-                               function binary(arg) {
-                                       return arg ? 1 : 0;
-                               }
-                               var data = [];
-                               branches.each(function(i, e) {
-                                       data[i] = $(e).is(":has(>ul:visible)") ? 1 : 0;
-                               });
-                               $.cookie(settings.cookieId, data.join("") );
-                       }
-                       
-                       function deserialize() {
-                               var stored = $.cookie(settings.cookieId);
-                               if ( stored ) {
-                                       var data = stored.split("");
-                                       branches.each(function(i, e) {
-                                               $(e).find(">ul")[ parseInt(data[i]) ? "show" : "hide" ]();
-                                       });
-                               }
-                       }
-                       
-                       // add treeview class to activate styles
-                       this.addClass("treeview");
-                       
-                       // prepare branches and find all tree items with child lists
-                       var branches = this.find("li").prepareBranches(settings);
-                       
-                       switch(settings.persist) {
-                       case "cookie":
-                               var toggleCallback = settings.toggle;
-                               settings.toggle = function() {
-                                       serialize();
-                                       if (toggleCallback) {
-                                               toggleCallback.apply(this, arguments);
-                                       }
-                               };
-                               deserialize();
-                               break;
-                       case "location":
-                               var current = this.find("a").filter(function() { return this.href.toLowerCase() == location.href.toLowerCase(); });
-                               if ( current.length ) {
-                                       current.addClass("selected").parents("ul, li").add( current.next() ).show();
-                               }
-                               break;
-                       }
-                       
-                       branches.applyClasses(settings, toggler);
-                               
-                       // if control option is set, create the treecontroller and show it
-                       if ( settings.control ) {
-                               treeController(this, settings.control);
-                               $(settings.control).show();
-                       }
-                       
-                       return this.bind("add", function(event, branches) {
-                               $(branches).prev()
-                                       .removeClass(CLASSES.last)
-                                       .removeClass(CLASSES.lastCollapsable)
-                                       .removeClass(CLASSES.lastExpandable)
-                               .find(">.hitarea")
-                                       .removeClass(CLASSES.lastCollapsableHitarea)
-                                       .removeClass(CLASSES.lastExpandableHitarea);
-                               $(branches).find("li").andSelf().prepareBranches(settings).applyClasses(settings, toggler);
-                       });
-               }
-       });
-       
-       // classes used by the plugin
-       // need to be styled via external stylesheet, see first example
-       var CLASSES = $.fn.treeview.classes = {
-               open: "open",
-               closed: "closed",
-               expandable: "expandable",
-               expandableHitarea: "expandable-hitarea",
-               lastExpandableHitarea: "lastExpandable-hitarea",
-               collapsable: "collapsable",
-               collapsableHitarea: "collapsable-hitarea",
-               lastCollapsableHitarea: "lastCollapsable-hitarea",
-               lastCollapsable: "lastCollapsable",
-               lastExpandable: "lastExpandable",
-               last: "last",
-               hitarea: "hitarea"
-       };
-       
-       // provide backwards compability
-       $.fn.Treeview = $.fn.treeview;
-       
-})(jQuery);
\ No newline at end of file
diff --git a/xsl/webhelp/template/common/jquery/treeview/jquery.treeview.pack.js b/xsl/webhelp/template/common/jquery/treeview/jquery.treeview.pack.js
deleted file mode 100755 (executable)
index eddac49..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
- * Treeview 1.4 - jQuery plugin to hide and show branches of a tree
- * 
- * http://bassistance.de/jquery-plugins/jquery-plugin-treeview/
- * http://docs.jquery.com/Plugins/Treeview
- *
- * Copyright (c) 2007 Jörn Zaefferer
- *
- * Dual licensed under the MIT and GPL licenses:
- *   http://www.opensource.org/licenses/mit-license.php
- *   http://www.gnu.org/licenses/gpl.html
- *
- * Revision: $Id: jquery.treeview.js 4684 2008-02-07 19:08:06Z joern.zaefferer $
- *
- */
-eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}(';(4($){$.1l($.F,{E:4(b,c){l a=3.n(\'.\'+b);3.n(\'.\'+c).o(c).m(b);a.o(b).m(c);8 3},s:4(a,b){8 3.n(\'.\'+a).o(a).m(b).P()},1n:4(a){a=a||"1j";8 3.1j(4(){$(3).m(a)},4(){$(3).o(a)})},1h:4(b,a){b?3.1g({1e:"p"},b,a):3.x(4(){T(3)[T(3).1a(":U")?"H":"D"]();7(a)a.A(3,O)})},12:4(b,a){7(b){3.1g({1e:"D"},b,a)}1L{3.D();7(a)3.x(a)}},11:4(a){7(!a.1k){3.n(":r-1H:G(9)").m(k.r);3.n((a.1F?"":"."+k.X)+":G(."+k.W+")").6(">9").D()}8 3.n(":y(>9)")},S:4(b,c){3.n(":y(>9):G(:y(>a))").6(">1z").C(4(a){c.A($(3).19())}).w($("a",3)).1n();7(!b.1k){3.n(":y(>9:U)").m(k.q).s(k.r,k.t);3.G(":y(>9:U)").m(k.u).s(k.r,k.v);3.1r("<J 14=\\""+k.5+"\\"/>").6("J."+k.5).x(4(){l a="";$.x($(3).B().1o("14").13(" "),4(){a+=3+"-5 "});$(3).m(a)})}3.6("J."+k.5).C(c)},z:4(g){g=$.1l({N:"z"},g);7(g.w){8 3.1K("w",[g.w])}7(g.p){l d=g.p;g.p=4(){8 d.A($(3).B()[0],O)}}4 1m(b,c){4 L(a){8 4(){K.A($("J."+k.5,b).n(4(){8 a?$(3).B("."+a).1i:1I}));8 1G}}$("a:10(0)",c).C(L(k.u));$("a:10(1)",c).C(L(k.q));$("a:10(2)",c).C(L())}4 K(){$(3).B().6(">.5").E(k.Z,k.Y).E(k.I,k.M).P().E(k.u,k.q).E(k.v,k.t).6(">9").1h(g.1f,g.p);7(g.1E){$(3).B().1D().6(">.5").s(k.Z,k.Y).s(k.I,k.M).P().s(k.u,k.q).s(k.v,k.t).6(">9").12(g.1f,g.p)}}4 1d(){4 1C(a){8 a?1:0}l b=[];j.x(4(i,e){b[i]=$(e).1a(":y(>9:1B)")?1:0});$.V(g.N,b.1A(""))}4 1c(){l b=$.V(g.N);7(b){l a=b.13("");j.x(4(i,e){$(e).6(">9")[1y(a[i])?"H":"D"]()})}}3.m("z");l j=3.6("Q").11(g);1x(g.1w){18"V":l h=g.p;g.p=4(){1d();7(h){h.A(3,O)}};1c();17;18"1b":l f=3.6("a").n(4(){8 3.16.15()==1b.16.15()});7(f.1i){f.m("1v").1u("9, Q").w(f.19()).H()}17}j.S(g,K);7(g.R){1m(3,g.R);$(g.R).H()}8 3.1t("w",4(a,b){$(b).1s().o(k.r).o(k.v).o(k.t).6(">.5").o(k.I).o(k.M);$(b).6("Q").1q().11(g).S(g,K)})}});l k=$.F.z.1J={W:"W",X:"X",q:"q",Y:"q-5",M:"t-5",u:"u",Z:"u-5",I:"v-5",v:"v",t:"t",r:"r",5:"5"};$.F.1p=$.F.z})(T);',62,110,'|||this|function|hitarea|find|if|return|ul||||||||||||var|addClass|filter|removeClass|toggle|expandable|last|replaceClass|lastExpandable|collapsable|lastCollapsable|add|each|has|treeview|apply|parent|click|hide|swapClass|fn|not|show|lastCollapsableHitarea|div|toggler|handler|lastExpandableHitarea|cookieId|arguments|end|li|control|applyClasses|jQuery|hidden|cookie|open|closed|expandableHitarea|collapsableHitarea|eq|prepareBranches|heightHide|split|class|toLowerCase|href|break|case|next|is|location|deserialize|serialize|height|animated|animate|heightToggle|length|hover|prerendered|extend|treeController|hoverClass|attr|Treeview|andSelf|prepend|prev|bind|parents|selected|persist|switch|parseInt|span|join|visible|binary|siblings|unique|collapsed|false|child|true|classes|trigger|else'.split('|'),0,{}))
\ No newline at end of file