OSDN Git Service

git-svn-id: https://svn.sourceforge.jp/svnroot/nucleus-jp/plugin@785 1ca29b6e-896d...
authorshizuki <shizuki@1ca29b6e-896d-4ea0-84a5-967f57386b96>
Tue, 3 Feb 2009 00:08:25 +0000 (00:08 +0000)
committershizuki <shizuki@1ca29b6e-896d-4ea0-84a5-967f57386b96>
Tue, 3 Feb 2009 00:08:25 +0000 (00:08 +0000)
26 files changed:
NP_Dtree/trunk/dtree/dtree.php [new file with mode: 0644]
NP_Dtree/trunk/dtree/dtreedata.php [new file with mode: 0644]
NP_Dtree/trunk/dtree/dtreedata.php.org [new file with mode: 0644]
NP_Dtree/trunk/dtree/img/base.gif [new file with mode: 0644]
NP_Dtree/trunk/dtree/img/cd.gif [new file with mode: 0644]
NP_Dtree/trunk/dtree/img/empty.gif [new file with mode: 0644]
NP_Dtree/trunk/dtree/img/folder.gif [new file with mode: 0644]
NP_Dtree/trunk/dtree/img/folderopen.gif [new file with mode: 0644]
NP_Dtree/trunk/dtree/img/globe.gif [new file with mode: 0644]
NP_Dtree/trunk/dtree/img/imgfolder.gif [new file with mode: 0644]
NP_Dtree/trunk/dtree/img/join.gif [new file with mode: 0644]
NP_Dtree/trunk/dtree/img/joinbottom.gif [new file with mode: 0644]
NP_Dtree/trunk/dtree/img/line.gif [new file with mode: 0644]
NP_Dtree/trunk/dtree/img/minus.gif [new file with mode: 0644]
NP_Dtree/trunk/dtree/img/minusbottom.gif [new file with mode: 0644]
NP_Dtree/trunk/dtree/img/musicfolder.gif [new file with mode: 0644]
NP_Dtree/trunk/dtree/img/nolines_minus.gif [new file with mode: 0644]
NP_Dtree/trunk/dtree/img/nolines_plus.gif [new file with mode: 0644]
NP_Dtree/trunk/dtree/img/page.gif [new file with mode: 0644]
NP_Dtree/trunk/dtree/img/plus.gif [new file with mode: 0644]
NP_Dtree/trunk/dtree/img/plusbottom.gif [new file with mode: 0644]
NP_Dtree/trunk/dtree/img/question.gif [new file with mode: 0644]
NP_Dtree/trunk/dtree/img/trash.gif [new file with mode: 0644]
NP_Dtree/trunk/dtree/language/english.php [new file with mode: 0644]
NP_Dtree/trunk/dtree/language/japanese-euc.php [new file with mode: 0644]
NP_Dtree/trunk/dtree/language/japanese-utf8.php [new file with mode: 0644]

diff --git a/NP_Dtree/trunk/dtree/dtree.php b/NP_Dtree/trunk/dtree/dtree.php
new file mode 100644 (file)
index 0000000..1946ce5
--- /dev/null
@@ -0,0 +1,722 @@
+/*--------------------------------------------------|
+| dTree 2.05 | www.destroydrop.com/javascript/tree/ |
+|---------------------------------------------------|
+| Copyright (c) 2002-2003 Geir Landr\e$B!&\e(B              |
+|                                                   |
+| This script can be used freely as long as all     |
+| copyright messages are intact.                    |
+|                                                   |
+| Updated: 17.04.2003                               |
+|--------------------------------------------------*/
+
+
+<?php
+       $strRel = '../../../';
+       include($strRel . 'config.php');
+       include($DIR_LIBS . 'PLUGINADMIN.php');
+               $oPluginAdmin =  new PluginAdmin('Dtree');
+               $plug         =& $oPluginAdmin->plugin;
+               $imgpath      =  $plug->getAdminURL();
+//             $imgpath = 'nucleus/plugins/dtree/';
+
+               if ($plug->getOption('folderLinks') == 'yes') {
+                       $folderLinks = 'true,';
+               } else {
+                       $folderLinks = 'false,';
+               }
+               if ($plug->getOption('useSelection') == 'yes') {
+                       $useSelection = 'true,';
+               } else {
+                       $useSelection = 'false,';
+               }
+               if ($plug->getOption('useCookies') == 'yes') {
+                       $useCookies = 'true,';
+               } else {
+                       $useCookies = 'false,';
+               }
+               if ($plug->getOption('useLines') == 'yes') {
+                       $useLines = 'true,';
+               } else {
+                       $useLines = 'false,';
+               }
+               if ($plug->getOption('useIcons') == 'yes') {
+                       $useIcons = 'true,';
+               } else {
+                       $useIcons = 'false,';
+               }
+               if ($plug->getOption('useStatusText') == 'yes') {
+                       $useStatusText = 'true,';
+               } else {
+                       $useStatusText = 'false,';
+               }
+               if ($plug->getOption('closeSameLevel') == 'yes') {
+                       $closeSameLevel = 'true,';
+               } else {
+                       $closeSameLevel = 'false,';
+               }
+               if ($plug->getOption('inOrder') == 'yes') {
+                       $inOrder = 'true';
+               } else {
+                       $inOrder = 'false';
+               }
+
+?>
+// Node object
+
+var imgpath = "<?php echo $imgpath;?>";
+
+function Node(id, pid, name, url, title, target, icon, iconOpen, open) {
+
+       this.id = id;
+
+       this.pid = pid;
+
+       this.name = name;
+
+       this.url = url;
+
+       this.title = title;
+
+       this.target = target;
+
+       this.icon = icon;
+
+       this.iconOpen = iconOpen;
+
+       this._io = open || false;
+
+       this._is = false;
+
+       this._ls = false;
+
+       this._hc = false;
+
+       this._ai = 0;
+
+       this._p;
+
+};
+
+// Tree object
+
+function dTree(objName) {
+
+       this.config = {
+               target : null,
+
+               folderLinks             : <?php echo $folderLinks ?>
+               useSelection    : <?php echo $useSelection ?>
+               useCookies              : <?php echo $useCookies ?>
+               useLines                : <?php echo $useLines ?>
+               useIcons                : <?php echo $useIcons ?>
+               useStatusText   : <?php echo $useStatusText ?>
+               closeSameLevel  : <?php echo $closeSameLevel ?>
+               inOrder                 : <?php echo $inOrder ?>
+
+//             folderLinks                     : true,
+//             useSelection            : false,
+//             useCookies                      : false,
+//             useLines                                : false,
+//             useIcons                                : false,
+//             useStatusText           : true,
+//             closeSameLevel  : true,
+//             inOrder                                 : false
+       }
+
+       this.icon = {
+
+               root                    : imgpath + 'img/base.gif',
+               folder                  : imgpath + 'img/folder.gif',
+               folderOpen              : imgpath + 'img/folderopen.gif',
+//             node                    : imgpath + 'img/page.gif',
+               node                    : imgpath + 'img/folder.gif',
+               empty                   : imgpath + 'img/empty.gif',
+               line                    : imgpath + 'img/line.gif',
+               join                    : imgpath + 'img/join.gif',
+               joinBottom              : imgpath + 'img/joinbottom.gif',
+               plus                    : imgpath + 'img/plus.gif',
+               plusBottom              : imgpath + 'img/plusbottom.gif',
+               minus                   : imgpath + 'img/minus.gif',
+               minusBottom             : imgpath + 'img/minusbottom.gif',
+               nlPlus                  : imgpath + 'img/nolines_plus.gif',
+               nlMinus                 : imgpath + 'img/nolines_minus.gif'
+
+       };
+
+       this.obj = objName;
+
+       this.aNodes = [];
+
+       this.aIndent = [];
+
+       this.root = new Node(-1);
+
+       this.selectedNode = null;
+
+       this.selectedFound = false;
+
+       this.completed = false;
+
+};
+
+
+
+// Adds a new node to the node array
+
+dTree.prototype.add = function(id, pid, name, url, title, target, icon, iconOpen, open) {
+
+       this.aNodes[this.aNodes.length] = new Node(id, pid, name, url, title, target, icon, iconOpen, open);
+
+};
+
+
+
+// Open/close all nodes
+
+dTree.prototype.openAll = function() {
+
+       this.oAll(true);
+
+};
+
+dTree.prototype.closeAll = function() {
+
+       this.oAll(false);
+
+};
+
+
+
+// Outputs the tree to the page
+
+dTree.prototype.toString = function() {
+
+       var str = '<div class="dtree">\n';
+
+       if (document.getElementById) {
+
+               if (this.config.useCookies) this.selectedNode = this.getSelected();
+
+               str += this.addNode(this.root);
+
+       } else str += 'Browser not supported.';
+
+       str += '</div>';
+
+       if (!this.selectedFound) this.selectedNode = null;
+
+       this.completed = true;
+
+       return str;
+
+};
+
+
+
+// Creates the tree structure
+
+dTree.prototype.addNode = function(pNode) {
+
+       var str = '';
+
+       var n=0;
+
+       if (this.config.inOrder) n = pNode._ai;
+
+       for (n; n<this.aNodes.length; n++) {
+
+               if (this.aNodes[n].pid == pNode.id) {
+
+                       var cn = this.aNodes[n];
+
+                       cn._p = pNode;
+
+                       cn._ai = n;
+
+                       this.setCS(cn);
+
+                       if (!cn.target && this.config.target) cn.target = this.config.target;
+
+                       if (cn._hc && !cn._io && this.config.useCookies) cn._io = this.isOpen(cn.id);
+
+                       if (!this.config.folderLinks && cn._hc) cn.url = null;
+
+                       if (this.config.useSelection && cn.id == this.selectedNode && !this.selectedFound) {
+
+                                       cn._is = true;
+
+                                       this.selectedNode = n;
+
+                                       this.selectedFound = true;
+
+                       }
+
+                       str += this.node(cn, n);
+
+                       if (cn._ls) break;
+
+               }
+
+       }
+
+       return str;
+
+};
+
+
+
+// Creates the node icon, url and text
+
+dTree.prototype.node = function(node, nodeId) {
+
+       var str = '<div class="dTreeNode">' + this.indent(node, nodeId);
+
+       if (this.config.useIcons) {
+
+               if (!node.icon) node.icon = (this.root.id == node.pid) ? this.icon.root : ((node._hc) ? this.icon.folder : this.icon.node);
+
+               if (!node.iconOpen) node.iconOpen = (node._hc) ? this.icon.folderOpen : this.icon.node;
+
+               if (this.root.id == node.pid) {
+
+                       node.icon = this.icon.root;
+
+                       node.iconOpen = this.icon.root;
+
+               }
+
+               str += '\n<img id="i' + this.obj + nodeId + '" src="' + ((node._io) ? node.iconOpen : node.icon) + '" alt="" />\n';
+
+       }
+
+       if (node.url) {
+
+               str += '<a id="s' + this.obj + nodeId + '" class="' + ((this.config.useSelection) ? ((node._is ? 'nodeSel' : 'node')) : 'node') + '" href="' + node.url + '"';
+
+               if (node.title) str += ' title="' + node.title + '"';
+
+               if (node.target) str += ' target="' + node.target + '"';
+
+               if (this.config.useStatusText) str += ' onmouseover="window.status=\'' + node.name + '\';return true;" onmouseout="window.status=\'\';return true;" ';
+
+               if (this.config.useSelection && ((node._hc && this.config.folderLinks) || !node._hc))
+
+                       str += ' onclick="javascript: ' + this.obj + '.s(' + nodeId + ');"';
+
+               str += '>\n';
+
+       }
+
+       else if ((!this.config.folderLinks || !node.url) && node._hc && node.pid != this.root.id)
+
+               str += '<a href="javascript: ' + this.obj + '.o(' + nodeId + ');" class="node">';
+
+       str += node.name;
+
+       if (node.url || ((!this.config.folderLinks || !node.url) && node._hc)) str += '</a>\n';
+
+       str += '</div>\n';
+
+       if (node._hc) {
+
+               str += '<div id="d' + this.obj + nodeId + '" class="clip" style="display:' + ((this.root.id == node.pid || node._io) ? 'block' : 'none') + ';">\n';
+
+               str += this.addNode(node);
+
+               str += '</div>\n';
+
+       }
+
+       this.aIndent.pop();
+
+       return str;
+
+};
+
+
+
+// Adds the empty and line icons
+
+dTree.prototype.indent = function(node, nodeId) {
+
+       var str = '';
+
+       if (this.root.id != node.pid) {
+
+               for (var n=0; n<this.aIndent.length; n++)
+
+                       str += '\n<img src="' + ( (this.aIndent[n] == 1 && this.config.useLines) ? this.icon.line : this.icon.empty ) + '" alt="" />';
+
+               (node._ls) ? this.aIndent.push(0) : this.aIndent.push(1);
+
+               if (node._hc) {
+
+                       str += '<a href="javascript: ' + this.obj + '.o(' + nodeId + ');"><img id="j' + this.obj + nodeId + '" src="';
+
+                       if (!this.config.useLines) str += (node._io) ? this.icon.nlMinus : this.icon.nlPlus;
+
+                       else str += ( (node._io) ? ((node._ls && this.config.useLines) ? this.icon.minusBottom : this.icon.minus) : ((node._ls && this.config.useLines) ? this.icon.plusBottom : this.icon.plus ) );
+
+                       str += '" alt="" /></a>\n';
+
+               } else str += '<img src="' + ( (this.config.useLines) ? ((node._ls) ? this.icon.joinBottom : this.icon.join ) : this.icon.empty) + '" alt="" />\n';
+
+       }
+
+       return str;
+
+};
+
+
+
+// Checks if a node has any children and if it is the last sibling
+
+dTree.prototype.setCS = function(node) {
+
+       var lastId;
+
+       for (var n=0; n<this.aNodes.length; n++) {
+
+               if (this.aNodes[n].pid == node.id) node._hc = true;
+
+               if (this.aNodes[n].pid == node.pid) lastId = this.aNodes[n].id;
+
+       }
+
+       if (lastId==node.id) node._ls = true;
+
+};
+
+
+
+// Returns the selected node
+
+dTree.prototype.getSelected = function() {
+
+       var sn = this.getCookie('cs' + this.obj);
+
+       return (sn) ? sn : null;
+
+};
+
+
+
+// Highlights the selected node
+
+dTree.prototype.s = function(id) {
+
+       if (!this.config.useSelection) return;
+
+       var cn = this.aNodes[id];
+
+       if (cn._hc && !this.config.folderLinks) return;
+
+       if (this.selectedNode != id) {
+
+               if (this.selectedNode || this.selectedNode==0) {
+
+                       eOld = document.getElementById("s" + this.obj + this.selectedNode);
+
+                       eOld.className = "node";
+
+               }
+
+               eNew = document.getElementById("s" + this.obj + id);
+
+               eNew.className = "nodeSel";
+
+               this.selectedNode = id;
+
+               if (this.config.useCookies) this.setCookie('cs' + this.obj, cn.id);
+
+       }
+
+};
+
+
+
+// Toggle Open or close
+
+dTree.prototype.o = function(id) {
+
+       var cn = this.aNodes[id];
+
+       this.nodeStatus(!cn._io, id, cn._ls);
+
+       cn._io = !cn._io;
+
+       if (this.config.closeSameLevel) this.closeLevel(cn);
+
+       if (this.config.useCookies) this.updateCookie();
+
+};
+
+
+
+// Open or close all nodes
+
+dTree.prototype.oAll = function(status) {
+
+       for (var n=0; n<this.aNodes.length; n++) {
+
+               if (this.aNodes[n]._hc && this.aNodes[n].pid != this.root.id) {
+
+                       this.nodeStatus(status, n, this.aNodes[n]._ls)
+
+                       this.aNodes[n]._io = status;
+
+               }
+
+       }
+
+       if (this.config.useCookies) this.updateCookie();
+
+};
+
+
+
+// Opens the tree to a specific node
+
+dTree.prototype.openTo = function(nId, bSelect, bFirst) {
+
+       if (!bFirst) {
+
+               for (var n=0; n<this.aNodes.length; n++) {
+
+                       if (this.aNodes[n].id == nId) {
+
+                               nId=n;
+
+                               break;
+
+                       }
+
+               }
+
+       }
+
+       var cn=this.aNodes[nId];
+
+       if (cn.pid==this.root.id || !cn._p) return;
+
+       cn._io = true;
+
+       cn._is = bSelect;
+
+       if (this.completed && cn._hc) this.nodeStatus(true, cn._ai, cn._ls);
+
+       if (this.completed && bSelect) this.s(cn._ai);
+
+       else if (bSelect) this._sn=cn._ai;
+
+       this.openTo(cn._p._ai, false, true);
+
+};
+
+
+
+// Closes all nodes on the same level as certain node
+
+dTree.prototype.closeLevel = function(node) {
+
+       for (var n=0; n<this.aNodes.length; n++) {
+
+               if (this.aNodes[n].pid == node.pid && this.aNodes[n].id != node.id && this.aNodes[n]._hc) {
+
+                       this.nodeStatus(false, n, this.aNodes[n]._ls);
+
+                       this.aNodes[n]._io = false;
+
+                       this.closeAllChildren(this.aNodes[n]);
+
+               }
+
+       }
+
+}
+
+
+
+// Closes all children of a node
+
+dTree.prototype.closeAllChildren = function(node) {
+
+       for (var n=0; n<this.aNodes.length; n++) {
+
+               if (this.aNodes[n].pid == node.id && this.aNodes[n]._hc) {
+
+                       if (this.aNodes[n]._io) this.nodeStatus(false, n, this.aNodes[n]._ls);
+
+                       this.aNodes[n]._io = false;
+
+                       this.closeAllChildren(this.aNodes[n]);          
+
+               }
+
+       }
+
+}
+
+
+
+// Change the status of a node(open or closed)
+
+dTree.prototype.nodeStatus = function(status, id, bottom) {
+
+       eDiv    = document.getElementById('d' + this.obj + id);
+
+       eJoin   = document.getElementById('j' + this.obj + id);
+
+       if (this.config.useIcons) {
+
+               eIcon   = document.getElementById('i' + this.obj + id);
+
+               eIcon.src = (status) ? this.aNodes[id].iconOpen : this.aNodes[id].icon;
+
+       }
+
+       eJoin.src = (this.config.useLines)?
+
+       ((status)?((bottom)?this.icon.minusBottom:this.icon.minus):((bottom)?this.icon.plusBottom:this.icon.plus)):
+
+       ((status)?this.icon.nlMinus:this.icon.nlPlus);
+
+       eDiv.style.display = (status) ? 'block': 'none';
+
+};
+
+
+
+
+
+// [Cookie] Clears a cookie
+
+dTree.prototype.clearCookie = function() {
+
+       var now = new Date();
+
+       var yesterday = new Date(now.getTime() - 1000 * 60 * 60 * 24);
+
+       this.setCookie('co'+this.obj, 'cookieValue', yesterday);
+
+       this.setCookie('cs'+this.obj, 'cookieValue', yesterday);
+
+};
+
+
+
+// [Cookie] Sets value in a cookie
+
+dTree.prototype.setCookie = function(cookieName, cookieValue, expires, path, domain, secure) {
+
+       document.cookie =
+
+               escape(cookieName) + '=' + escape(cookieValue)
+
+               + (expires ? '; expires=' + expires.toGMTString() : '')
+
+               + (path ? '; path=' + path : '')
+
+               + (domain ? '; domain=' + domain : '')
+
+               + (secure ? '; secure' : '');
+
+};
+
+
+
+// [Cookie] Gets a value from a cookie
+
+dTree.prototype.getCookie = function(cookieName) {
+
+       var cookieValue = '';
+
+       var posName = document.cookie.indexOf(escape(cookieName) + '=');
+
+       if (posName != -1) {
+
+               var posValue = posName + (escape(cookieName) + '=').length;
+
+               var endPos = document.cookie.indexOf(';', posValue);
+
+               if (endPos != -1) cookieValue = unescape(document.cookie.substring(posValue, endPos));
+
+               else cookieValue = unescape(document.cookie.substring(posValue));
+
+       }
+
+       return (cookieValue);
+
+};
+
+
+
+// [Cookie] Returns ids of open nodes as a string
+
+dTree.prototype.updateCookie = function() {
+
+       var str = '';
+
+       for (var n=0; n<this.aNodes.length; n++) {
+
+               if (this.aNodes[n]._io && this.aNodes[n].pid != this.root.id) {
+
+                       if (str) str += '.';
+
+                       str += this.aNodes[n].id;
+
+               }
+
+       }
+
+       this.setCookie('co' + this.obj, str);
+
+};
+
+
+
+// [Cookie] Checks if a node id is in a cookie
+
+dTree.prototype.isOpen = function(id) {
+
+       var aOpen = this.getCookie('co' + this.obj).split('.');
+
+       for (var n=0; n<aOpen.length; n++)
+
+               if (aOpen[n] == id) return true;
+
+       return false;
+
+};
+
+
+
+// If Push and pop is not implemented by the browser
+
+if (!Array.prototype.push) {
+
+       Array.prototype.push = function array_push() {
+
+               for(var i=0;i<arguments.length;i++)
+
+                       this[this.length]=arguments[i];
+
+               return this.length;
+
+       }
+
+};
+
+if (!Array.prototype.pop) {
+
+       Array.prototype.pop = function array_pop() {
+
+               lastElement = this[this.length-1];
+
+               this.length = Math.max(this.length-1,0);
+
+               return lastElement;
+
+       }
+
+};
\ No newline at end of file
diff --git a/NP_Dtree/trunk/dtree/dtreedata.php b/NP_Dtree/trunk/dtree/dtreedata.php
new file mode 100644 (file)
index 0000000..bc08d1b
--- /dev/null
@@ -0,0 +1,224 @@
+<?php
+global $CONF, $manager;
+       $strRel = '../../../';
+       include($strRel . 'config.php');
+
+       $usePathInfo = ($CONF['URLMode'] == 'pathinfo');
+
+//  $objectId = requestVar('o');
+       $objectId    = 'tree' . preg_replace('|[^0-9a-f]|i', '', substr(requestVar('o'), 4));
+       $blogid      = intRequestVar('bid');
+       if (empty($blogid)) {
+               $blogid = intval($CONF['DefaultBlog']);
+       }
+       $blogname = getBlogNameFromID($blogid);
+
+       $b        =& $manager->getBlog($blogid);
+       $blogurl  =  $b->getURL();
+       if (!$blogurl) {
+               if($blog) {
+                       $b_tmp   =& $manager->getBlog($blogid);
+                       $blogurl =  $b_tmp->getURL();
+               }
+               if (!$blogurl) {
+                       $blogurl = $CONF['IndexURL'];
+                       if (!$usePathInfo) {
+                               if ($data['type'] == 'pageparser') {
+                                       $blogurl .= 'index.php';
+                               } else {
+                                       $blogurl  = $CONF['Self'];
+                               }
+                       }
+               }
+       }
+
+       if ($usePathInfo) {
+               if (substr($blogurl, -1) == '/') { 
+                       $blogurl = substr($blogurl, 0, -1);
+               }
+       }
+
+       $CONF['BlogURL']        = $blogurl;
+       $CONF['ItemURL']        = $blogurl;
+       $CONF['CategoryURL']    = $blogurl;
+       $CONF['ArchiveURL']     = $blogurl;
+       $CONF['ArchiveListURL'] = $blogurl;
+       $CONF['SearchURL']      = $blogurl;
+
+       $printData = $objectId . "=new dTree('" . $objectId . "');\n"
+                          . $objectId . ".add(0,-1,'"
+                          . htmlspecialchars($blogname, ENT_QUOTES, _CHARSET)
+                          . "');\n";
+       echo $printData;
+       unset($printData);
+       
+       $resq = 'SELECT * FROM %s WHERE cblog = %d';
+       $res  = sql_query(sprintf($resq, sql_table('category'), $blogid));
+       $n    = 1;
+       while ($o = mysql_fetch_object($res)) {
+               $catid                    = intval($o->catid);
+               $nodeArray['cat'][$catid] = $n;
+               $url                      = createCategoryLink($catid);
+               $printData                = $objectId
+                                                                 . ".add"
+                                                                 . "("
+                                                                 . $n . ","
+                                                                 . "0,"
+                                                                 . "'" . htmlspecialchars($o->cname, ENT_QUOTES, _CHARSET) . "',"
+//                                                               . "'" . htmlspecialchars($url,      ENT_QUOTES, _CHARSET) . "',"
+                                                                 . "'" . $url . "',"
+                                                                 . "'" . htmlspecialchars($o->cdesc, ENT_QUOTES, _CHARSET). "'"
+                                                                 . ");\n";
+               echo $printData;
+               $catFilter[] = $catid;
+               $n++;
+               unset($printData);
+       }
+       
+       if (!$manager->pluginInstalled('NP_MultipleCategories')) {
+               echo 'document.write(' . $objectId . ');';
+               if ($itemid = intRequestVar('id')) {
+                       $que       = 'SELECT icat as result FROM %s WHERE inumber = %d';
+                       $catid     = quickQuery(sprintf($que, sql_table('item'), $itemid));
+                       $catid     = intval($catid);
+                       $nodeId    = 's' . $objectId . $nodeArray['cat'][$catid];
+                       $printData = "document.getElementById('"
+                                          . htmlspecialchars($nodeId, ENT_QUOTES, _CHARSET)
+                                          . "').className = 'selectedNode';";
+                       echo $printData;
+                       unset($printData);
+               }
+               return;
+       }
+
+/*     if ($catFilter[1]) {
+               $catFilter = implode(', ', $catFilter);
+               $catFilter = ' IN (' . $catFilter . ')';
+       } else {
+               $catFilter = ' = ' . $catFilter;
+       }       //original*/
+
+       if (count($catFilter) == 1) {
+               $catFilter = ' = ' . $catFilter[0];
+       } elseif (count($catFilter) > 1) {
+               $catFilter = implode(', ', $catFilter);
+               $catFilter = ' IN (' . $catFilter . ')';
+       } else {
+               $catFilter = '';
+       }       // test
+
+       $scatTable   =  sql_table('plug_multiple_categories_sub');
+       $mcategories =& $manager->getPlugin('NP_MultipleCategories');
+       if (method_exists($mcategories, 'getRequestName')) {
+               $subrequest = $mcategories->getRequestName();
+       } else {
+               $subrequest = 'subcatid';
+       }
+//     $query = 'SELECT * FROM %s WHERE catid%s';
+       $query = 'SELECT * FROM %s WHERE catid%s ORDER BY parentid, catid, ordid';
+       $query = sprintf($query, $scatTable, $catFilter);
+       $res   = sql_query($query);
+       while ($o = mysql_fetch_object($res)) {
+               $scatid                       = intval($o->scatid);
+               $nodeArray['subcat'][$scatid] = $n;
+               $n++;
+//     }
+
+//     $query = 'SELECT * FROM %s WHERE catid%s';
+//     $query = sprintf($query, $scatTable, $catFilter);
+//     $res = sql_query($query);
+//     while ($u = mysql_fetch_object($res)) {
+//$u = $o;
+//             $scatid    = intval($o->scatid);
+               $parent_id = intval($o->parentid);
+               $cat_id    = intval($o->catid);
+               $linkParam = array(
+                                                  $subrequest => $scatid
+                                                 );
+               $url       = createCategoryLink($cat_id, $linkParam);
+
+               if (!empty($parent_id)) {
+                       $pnode = intval($nodeArray['subcat'][$parent_id]);
+               } else {
+                       $pnode = intval($nodeArray['cat'][$cat_id]);
+               }
+               $printData =  $objectId
+                                  . ".add"
+                                  . "("
+                                  . intval($nodeArray['subcat'][$scatid]) . ","
+                                  . $pnode . ","
+                                  . "'" . htmlspecialchars($o->sname, ENT_QUOTES, _CHARSET) . "',"
+//                                . "'" . htmlspecialchars($url,      ENT_QUOTES, _CHARSET) . "',"
+                                  . "'" . $url . "',"
+                                  . "'" . htmlspecialchars($o->sdesc, ENT_QUOTES, _CHARSET) . "'"
+                                  . ");\n";
+               echo $printData;
+               unset($printData);
+       }
+
+       echo "document.write(" . $objectId . ");\n";
+
+       if ($sid = intRequestVar('sid')) {
+               $nodeId    = 's' . $objectId . intval($nodeArray['subcat'][$sid]);
+               $printData = "document.getElementById('" . $nodeId . "')"
+                                  . ".className='urlselected';\n"
+                                  . $objectId
+                                  . ".openTo(" . intval($nodeArray['subcat'][$sid]) . ",true);\n";
+               echo $printData;
+               unset($printData);
+       } elseif ($cid = intRequestVar('cid')) {
+               $nodeId    = 's' . $objectId . intval($nodeArray['cat'][$cid]);
+               $printData = "document.getElementById('" . $nodeId . "')."
+                                  . "className='urlselected';\n"
+                                  . $objectId
+                                  . ".openTo(" . intval($nodeArray['cat'][$cid]) . ",true);\n";
+       }
+
+       if ($itemid = intRequestVar('id')) {
+               $que       = 'SELECT icat as result FROM %s WHERE inumber = %d';
+               $catid     = quickQuery($que, sql_table('item'), $itemid);
+               $catid     = intval($catid);
+               $nodeId    = 's' . $objectId . intval($nodeArray['cat'][$catid]);
+               $printData = "document.getElementById('" . $nodeId . "')"
+                                  . ".className='selectedNode';\n";
+               echo $printData;
+               unset($printData);
+               
+               //multi catid
+               $que    = 'SELECT categories as result FROM %s WHERE item_id = %d';
+               $que    = sprintf($que, sql_table('plug_multiple_categories'), $itemid);
+               $catids = quickQuery($que);
+               if ($catids) {
+                       $catids = explode(',', $catids);
+                       $cCount = count($catids);
+                       for ($i=0; $i < $cCount; $i++) {
+                               $catidTemp = intval($catids[$i]);
+                               if ($catidTemp != $catid) {
+                                       $nodeId   = 's' . $objectId . intval($nodeArray['cat'][$catidTemp]);
+                                       $prntData = "document.getElementById('" . $nodeId . "')"
+                                                         . ".className='selectedCatNode';\n";
+                                       echo $printData;
+                                       unset($printData);
+                               }
+                       }
+               }
+
+               //(multi) subcatid
+               $que     = 'SELECT subcategories as result FROM %s WHERE item_id = %d';
+               $que     = sprintf($que, sql_table('plug_multiple_categories'), $itemid);
+               $scatids = quickQuery($que);
+               if ($scatids) {
+                       $scatids = explode(',', $scatids);
+                       $scatCnt = count($scatids);
+                       for ($i=0; $i < $scatCnt; $i++) {
+                               $scatid    = intval($scatids[$i]);
+                               $nodeId    = 's' . $objectId . intval($nodeArray['subcat'][$scatid]);
+                               $printData = "document.getElementById('" . $nodeId . "')"
+                                                  . ".className='selectedScatNode';\n"
+                                                  . $objectId
+                                                  . ".openTo(" . intval($nodeArray['subcat'][$scatid]) . ",true);\n";
+                               echo $printData;
+                               unset($printData);
+                       }
+               }
+       }
diff --git a/NP_Dtree/trunk/dtree/dtreedata.php.org b/NP_Dtree/trunk/dtree/dtreedata.php.org
new file mode 100644 (file)
index 0000000..df310c2
--- /dev/null
@@ -0,0 +1,57 @@
+               d = new dTree('d');
+
+<?php
+       $strRel = '../../../';
+       include($strRel . 'config.php');
+
+       $blogid = requestVar('bid');
+       $blogname = getBlogNameFromID($blogid);
+       echo "d.add(0,-1,'".$blogname."');\n";
+       
+       $res = sql_query("SELECT * FROM ".sql_table('category')." WHERE cblog= ".$blogid);
+       $n = 1;
+       while($o = mysql_fetch_object($res)){
+               $catid = $o->catid;
+               $nodeArray[cat][$catid] = $n;
+               $url = createBlogidLink($blogid, array('catid'=>$catid));
+               echo "d.add(".$n.",0,'".$o->cname."','".$url."');\n";
+               $catFilter[] = $catid;
+               $n++;
+       }
+       
+       global $manager; 
+       if (!$manager->pluginInstalled('NP_MultipleCategories')){
+               echo 'document.write(d);';
+               return;
+       }
+
+       if($catFilter[1]){
+               $catFilter = @join(',',$catFilter);
+               $catFilter = ' IN ('.$catFilter.')';
+       }else{
+               $catFilter = '='.$catFilter;
+       }
+       
+       $query = "SELECT * FROM ".sql_table('plug_multiple_categories_sub')." WHERE catid".$catFilter;
+       $res = sql_query($query);
+       while($o = mysql_fetch_object($res)){
+               $scatid = $o->scatid;
+               $nodeArray[subcat][$scatid] = $n;
+               $n++;
+       }
+       $query = "SELECT * FROM ".sql_table('plug_multiple_categories_sub')." WHERE catid".$catFilter;
+       $res = sql_query($query);
+       while($u = mysql_fetch_object($res)){
+               $scatid = $u->scatid;
+               $url = createBlogidLink($blogid, array('catid'=>$u->catid, 'subcatid'=>$scatid));
+               $pnode = ($u->parentid)? $nodeArray[subcat][$u->parentid]: $nodeArray[cat][$u->catid];
+               echo "d.add(".$nodeArray[subcat][$u->scatid].",".$pnode.",'".$u->sname."','".$url."');\n";
+       }
+
+?>
+
+               document.write(d);
+               d.openTo(7, true);
+               document.getElementById('sd7').className = 'selectedNode';
+               d.openTo(15, true);
+               document.getElementById('sd15').className = 'selectedNode';
diff --git a/NP_Dtree/trunk/dtree/img/base.gif b/NP_Dtree/trunk/dtree/img/base.gif
new file mode 100644 (file)
index 0000000..9ac0b11
Binary files /dev/null and b/NP_Dtree/trunk/dtree/img/base.gif differ
diff --git a/NP_Dtree/trunk/dtree/img/cd.gif b/NP_Dtree/trunk/dtree/img/cd.gif
new file mode 100644 (file)
index 0000000..7503819
Binary files /dev/null and b/NP_Dtree/trunk/dtree/img/cd.gif differ
diff --git a/NP_Dtree/trunk/dtree/img/empty.gif b/NP_Dtree/trunk/dtree/img/empty.gif
new file mode 100644 (file)
index 0000000..b5cf523
Binary files /dev/null and b/NP_Dtree/trunk/dtree/img/empty.gif differ
diff --git a/NP_Dtree/trunk/dtree/img/folder.gif b/NP_Dtree/trunk/dtree/img/folder.gif
new file mode 100644 (file)
index 0000000..eb12976
Binary files /dev/null and b/NP_Dtree/trunk/dtree/img/folder.gif differ
diff --git a/NP_Dtree/trunk/dtree/img/folderopen.gif b/NP_Dtree/trunk/dtree/img/folderopen.gif
new file mode 100644 (file)
index 0000000..c5c3110
Binary files /dev/null and b/NP_Dtree/trunk/dtree/img/folderopen.gif differ
diff --git a/NP_Dtree/trunk/dtree/img/globe.gif b/NP_Dtree/trunk/dtree/img/globe.gif
new file mode 100644 (file)
index 0000000..57123d0
Binary files /dev/null and b/NP_Dtree/trunk/dtree/img/globe.gif differ
diff --git a/NP_Dtree/trunk/dtree/img/imgfolder.gif b/NP_Dtree/trunk/dtree/img/imgfolder.gif
new file mode 100644 (file)
index 0000000..e6d8803
Binary files /dev/null and b/NP_Dtree/trunk/dtree/img/imgfolder.gif differ
diff --git a/NP_Dtree/trunk/dtree/img/join.gif b/NP_Dtree/trunk/dtree/img/join.gif
new file mode 100644 (file)
index 0000000..34dd476
Binary files /dev/null and b/NP_Dtree/trunk/dtree/img/join.gif differ
diff --git a/NP_Dtree/trunk/dtree/img/joinbottom.gif b/NP_Dtree/trunk/dtree/img/joinbottom.gif
new file mode 100644 (file)
index 0000000..48b81c8
Binary files /dev/null and b/NP_Dtree/trunk/dtree/img/joinbottom.gif differ
diff --git a/NP_Dtree/trunk/dtree/img/line.gif b/NP_Dtree/trunk/dtree/img/line.gif
new file mode 100644 (file)
index 0000000..1a259ee
Binary files /dev/null and b/NP_Dtree/trunk/dtree/img/line.gif differ
diff --git a/NP_Dtree/trunk/dtree/img/minus.gif b/NP_Dtree/trunk/dtree/img/minus.gif
new file mode 100644 (file)
index 0000000..3d212a9
Binary files /dev/null and b/NP_Dtree/trunk/dtree/img/minus.gif differ
diff --git a/NP_Dtree/trunk/dtree/img/minusbottom.gif b/NP_Dtree/trunk/dtree/img/minusbottom.gif
new file mode 100644 (file)
index 0000000..dc3198b
Binary files /dev/null and b/NP_Dtree/trunk/dtree/img/minusbottom.gif differ
diff --git a/NP_Dtree/trunk/dtree/img/musicfolder.gif b/NP_Dtree/trunk/dtree/img/musicfolder.gif
new file mode 100644 (file)
index 0000000..f620789
Binary files /dev/null and b/NP_Dtree/trunk/dtree/img/musicfolder.gif differ
diff --git a/NP_Dtree/trunk/dtree/img/nolines_minus.gif b/NP_Dtree/trunk/dtree/img/nolines_minus.gif
new file mode 100644 (file)
index 0000000..2592ac2
Binary files /dev/null and b/NP_Dtree/trunk/dtree/img/nolines_minus.gif differ
diff --git a/NP_Dtree/trunk/dtree/img/nolines_plus.gif b/NP_Dtree/trunk/dtree/img/nolines_plus.gif
new file mode 100644 (file)
index 0000000..f258ce2
Binary files /dev/null and b/NP_Dtree/trunk/dtree/img/nolines_plus.gif differ
diff --git a/NP_Dtree/trunk/dtree/img/page.gif b/NP_Dtree/trunk/dtree/img/page.gif
new file mode 100644 (file)
index 0000000..42d7318
Binary files /dev/null and b/NP_Dtree/trunk/dtree/img/page.gif differ
diff --git a/NP_Dtree/trunk/dtree/img/plus.gif b/NP_Dtree/trunk/dtree/img/plus.gif
new file mode 100644 (file)
index 0000000..b2c9972
Binary files /dev/null and b/NP_Dtree/trunk/dtree/img/plus.gif differ
diff --git a/NP_Dtree/trunk/dtree/img/plusbottom.gif b/NP_Dtree/trunk/dtree/img/plusbottom.gif
new file mode 100644 (file)
index 0000000..b5671d8
Binary files /dev/null and b/NP_Dtree/trunk/dtree/img/plusbottom.gif differ
diff --git a/NP_Dtree/trunk/dtree/img/question.gif b/NP_Dtree/trunk/dtree/img/question.gif
new file mode 100644 (file)
index 0000000..dd4e685
Binary files /dev/null and b/NP_Dtree/trunk/dtree/img/question.gif differ
diff --git a/NP_Dtree/trunk/dtree/img/trash.gif b/NP_Dtree/trunk/dtree/img/trash.gif
new file mode 100644 (file)
index 0000000..cfa0f00
Binary files /dev/null and b/NP_Dtree/trunk/dtree/img/trash.gif differ
diff --git a/NP_Dtree/trunk/dtree/language/english.php b/NP_Dtree/trunk/dtree/language/english.php
new file mode 100644 (file)
index 0000000..d5e2eef
--- /dev/null
@@ -0,0 +1,13 @@
+<?php
+       define('_DTREE_DESCRIPTION',    'Show Navigation Tree. Usage: &lt;%Dtree()%&gt;');
+       define('_DTREE_DIR_LINK',               'Should folders be links.');
+       define('_DTREE_SELECTION',      'Nodes can be selected(highlighted).');
+       define('_DTREE_COOKIE',         'The tree uses cookies to rember it\'s state.');
+       define('_DTREE_LINE',                   'Tree is drawn with lines.');
+       define('_DTREE_ICON',                   'Tree is drawn with icons.');
+       define('_DTREE_ST_TEXT',                'Displays node names in the statusbar instead of the url.');
+       define('_DTREE_CL_SLEVEL',      'Only one node within a parent can be expanded at the same time. [Open All] and [Close All] functions do not work when this is enabled.');
+       define('_DTREE_IN_ORDER',               'If parent nodes are always added before children, setting this to true speeds up the tree.');
+       define('_DTREE_OPENALL',                'Open All');
+       define('_DTREE_CLOSEALL',               'Close All');
+?>
\ No newline at end of file
diff --git a/NP_Dtree/trunk/dtree/language/japanese-euc.php b/NP_Dtree/trunk/dtree/language/japanese-euc.php
new file mode 100644 (file)
index 0000000..148cfee
--- /dev/null
@@ -0,0 +1,13 @@
+<?php
+       define('_DTREE_DESCRIPTION',    '¥Ä¥ê¡¼É½¼¨¤Î¥«¥Æ¥´¥ê¡¦¥µ¥Ö¥«¥Æ¥´¥ê¥á¥Ë¥å¡¼<br />¥¹¥­¥ó¡¢¤Þ¤¿¤Ï¥Æ¥ó¥×¥ì¡¼¥È¤Ë[&lt;%Dtree()%&gt;]¤Èµ­½Ò');
+       define('_DTREE_DIR_LINK',               '¥Õ¥©¥ë¥À¡¼¤Î¥ê¥ó¥¯¤òÍ­¸ú¤Ë¤·¤Þ¤¹¤«¡©');
+       define('_DTREE_SELECTION',      'ÁªÂòÃæ¤Î¥«¥Æ¥´¥ê¡¦¥µ¥Ö¥«¥Æ¥´¥ê¤ò¥Ï¥¤¥é¥¤¥È¤·¤Þ¤¹¤«¡©');
+       define('_DTREE_COOKIE',         '¥¯¥Ã¥­¡¼¤ò»ÈÍѤ·¤Æ¥Ä¥ê¡¼¤Î¾õÂÖ¤òÊݸ¤·¤Þ¤¹¤«¡©');
+       define('_DTREE_LINE',                   '¥Ä¥ê¡¼¤Î¥é¥¤¥ó¤òɽ¼¨¤·¤Þ¤¹¤«¡©');
+       define('_DTREE_ICON',                   '¥¢¥¤¥³¥ó¤ò»ÈÍѤ·¤Þ¤¹¤«¡©');
+       define('_DTREE_ST_TEXT',                'URL¤ÎÂå¤ï¤ê¤Ë¥«¥Æ¥´¥ê¡¦¥µ¥Ö¥«¥Æ¥´¥ê̾¤ò¥¹¥Æ¡¼¥¿¥¹¥Ð¡¼¤Ëɽ¼¨¤·¤Þ¤¹¤«¡©');
+       define('_DTREE_CL_SLEVEL',      'Æó¤Ä°Ê¾å¤Î»Þ¤òƱ»þ¤ËŸ³«¤·¤Ê¤¤¤è¤¦¤Ë¤·¤Þ¤¹¤«¡©(\8e¢Á´¤Æ³«¤¯\8e£\8e¢Á´¤ÆÊĤ¸¤ë\8e£¤Ï¤³¤ÎÀßÄê¤Ë±Æ¶Á¤µ¤ì¤Þ¤»¤ó)');
+       define('_DTREE_IN_ORDER',               'If parent nodes are always added before children, setting this to true speeds up the tree.');
+       define('_DTREE_OPENALL',                'Á´¤Æ³«¤¯');
+       define('_DTREE_CLOSEALL',               'Á´¤ÆÊĤ¸¤ë');
+?>
\ No newline at end of file
diff --git a/NP_Dtree/trunk/dtree/language/japanese-utf8.php b/NP_Dtree/trunk/dtree/language/japanese-utf8.php
new file mode 100644 (file)
index 0000000..f2e484e
--- /dev/null
@@ -0,0 +1,13 @@
+<?php
+       define('_DTREE_DESCRIPTION',    'ツリー表示のカテゴリ・サブカテゴリメニュー<br />スキン、またはテンプレートに[&lt;%Dtree()%&gt;]と記述');
+       define('_DTREE_DIR_LINK',               'フォルダーのリンクを有効にしますか?');
+       define('_DTREE_SELECTION',      '選択中のカテゴリ・サブカテゴリをハイライトしますか?');
+       define('_DTREE_COOKIE',         'クッキーを使用してツリーの状態を保存しますか?');
+       define('_DTREE_LINE',                   'ツリーのラインを表示しますか?');
+       define('_DTREE_ICON',                   'アイコンを使用しますか?');
+       define('_DTREE_ST_TEXT',                'URLの代わりにカテゴリ・サブカテゴリ名をステータスバーに表示しますか?');
+       define('_DTREE_CL_SLEVEL',      '二つ以上の枝を同時に展開しないようにしますか?(「全て開く」「全て閉じる」はこの設定に影響されません)');
+       define('_DTREE_IN_ORDER',               'If parent nodes are always added before children, setting this to true speeds up the tree.');
+       define('_DTREE_OPENALL',                '全て開く');
+       define('_DTREE_CLOSEALL',               '全て閉じる');
+?>
\ No newline at end of file