1999-06-11 02:50:47 +00:00
|
|
|
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* NPL.
|
|
|
|
*
|
|
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
Script for the bookmarks properties window
|
|
|
|
*/
|
|
|
|
|
|
|
|
function BookmarkProperties()
|
|
|
|
{
|
|
|
|
var tree = document.getElementById('bookmarksTree');
|
|
|
|
var select_list = tree.getElementsByAttribute("selected", "true");
|
|
|
|
|
|
|
|
if (select_list.length >= 1) {
|
1999-07-20 01:38:01 +00:00
|
|
|
|
|
|
|
// don't bother showing properties on bookmark separators
|
|
|
|
var type = select_list[0].getAttribute('type');
|
|
|
|
if (type != "http://home.netscape.com/NC-rdf#BookmarkSeparator")
|
|
|
|
{
|
1999-08-05 19:49:39 +00:00
|
|
|
var props = window.open("chrome://bookmarks/content/bm-props.xul",
|
1999-08-07 02:51:03 +00:00
|
|
|
"BookmarkProperties", "chrome,menubar,resizable");
|
1999-07-20 01:38:01 +00:00
|
|
|
props.BookmarkURL = select_list[0].getAttribute("id");
|
|
|
|
}
|
1999-06-11 02:50:47 +00:00
|
|
|
} else {
|
|
|
|
dump("nothing selected!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-07-14 21:15:35 +00:00
|
|
|
function OpenURL(event, node)
|
1999-06-11 02:50:47 +00:00
|
|
|
{
|
1999-07-15 23:06:58 +00:00
|
|
|
// clear any single-click/edit timeouts
|
|
|
|
if (timerID != null)
|
|
|
|
{
|
|
|
|
gEditNode = null;
|
|
|
|
clearTimeout(timerID);
|
|
|
|
timerID = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (node.getAttribute('container') == "true")
|
|
|
|
{
|
|
|
|
return(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
var url = node.getAttribute('id');
|
|
|
|
|
1999-08-05 01:43:19 +00:00
|
|
|
// Ignore "NC:" urls.
|
|
|
|
if (url.substring(0, 3) == "NC:")
|
|
|
|
{
|
|
|
|
return(false);
|
|
|
|
}
|
|
|
|
|
1999-07-22 22:11:21 +00:00
|
|
|
try
|
|
|
|
{
|
1999-08-05 01:43:19 +00:00
|
|
|
// add support for IE favorites under Win32, and NetPositive URLs under BeOS
|
|
|
|
if (url.indexOf("file://") == 0)
|
1999-07-22 22:11:21 +00:00
|
|
|
{
|
1999-08-05 01:43:19 +00:00
|
|
|
var rdf = Components.classes["component://netscape/rdf/rdf-service"].getService();
|
|
|
|
if (rdf) rdf = rdf.QueryInterface(Components.interfaces.nsIRDFService);
|
|
|
|
if (rdf)
|
1999-07-22 22:11:21 +00:00
|
|
|
{
|
1999-08-05 01:43:19 +00:00
|
|
|
var fileSys = rdf.GetDataSource("rdf:files");
|
|
|
|
if (fileSys)
|
|
|
|
{
|
|
|
|
var src = rdf.GetResource(url, true);
|
|
|
|
var prop = rdf.GetResource("http://home.netscape.com/NC-rdf#URL", true);
|
|
|
|
var target = fileSys.GetTarget(src, prop, true);
|
|
|
|
if (target) target = target.QueryInterface(Components.interfaces.nsIRDFLiteral);
|
|
|
|
if (target) target = target.Value;
|
|
|
|
if (target) url = target;
|
|
|
|
|
|
|
|
}
|
1999-07-22 22:11:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch(ex)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
1999-07-15 23:06:58 +00:00
|
|
|
window.open(url,'bookmarks');
|
|
|
|
dump("OpenURL(" + url + ")\n");
|
|
|
|
|
|
|
|
return(true);
|
1999-07-14 21:15:35 +00:00
|
|
|
}
|
|
|
|
|
1999-07-15 23:06:58 +00:00
|
|
|
var htmlInput = null;
|
|
|
|
var saveNode = null;
|
|
|
|
var newValue = "";
|
|
|
|
var timerID = null;
|
|
|
|
var gEditNode = null;
|
1999-07-14 21:15:35 +00:00
|
|
|
|
|
|
|
function DoSingleClick(event, node)
|
|
|
|
{
|
1999-07-15 23:06:58 +00:00
|
|
|
var type = node.parentNode.parentNode.getAttribute('type');
|
|
|
|
var selected = node.parentNode.parentNode.getAttribute('selected');
|
|
|
|
|
|
|
|
if (gEditNode == node) {
|
|
|
|
// Only start an inline edit if it is the second consecutive click
|
|
|
|
// on the same node that is not already editing or a separator.
|
|
|
|
if (!htmlInput &&
|
|
|
|
type != "http://home.netscape.com/NC-rdf#BookmarkSeparator") {
|
|
|
|
// Edit node if we don't get a double-click in less than 1/2 second
|
|
|
|
timerID = setTimeout("OpenEditNode()", 500);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (htmlInput) {
|
|
|
|
// Clicked during an edit
|
|
|
|
// Save the changes and move on
|
|
|
|
CloseEditNode(true);
|
|
|
|
}
|
|
|
|
gEditNode = node;
|
|
|
|
}
|
|
|
|
return false;
|
1999-07-14 21:15:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function OpenEditNode()
|
|
|
|
{
|
1999-07-15 23:06:58 +00:00
|
|
|
dump("OpenEditNode entered.\n");
|
|
|
|
|
|
|
|
// clear any single-click/edit timeouts
|
|
|
|
if (timerID != null)
|
|
|
|
{
|
|
|
|
clearTimeout(timerID);
|
|
|
|
timerID = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX uncomment the following line to replace the whole input row we do this
|
|
|
|
// (and, therefore, only allow editing on the name column) until we can
|
|
|
|
// arbitrarily change the content model (bugs prevent this at the moment)
|
|
|
|
gEditNode = gEditNode.parentNode;
|
|
|
|
|
|
|
|
var name = gEditNode.parentNode.getAttribute("Name");
|
|
|
|
dump("Single click on '" + name + "'\n");
|
|
|
|
|
|
|
|
var theParent = gEditNode.parentNode;
|
|
|
|
dump("Parent node is a " + theParent.nodeName + "\n\n");
|
|
|
|
|
|
|
|
saveNode = gEditNode;
|
|
|
|
|
|
|
|
// unselect all nodes!
|
|
|
|
var select_list = document.getElementsByAttribute("selected", "true");
|
|
|
|
dump("# of Nodes selected: " + select_list.length + "\n\n");
|
|
|
|
for (var nodeIndex=0; nodeIndex<select_list.length; nodeIndex++)
|
|
|
|
{
|
|
|
|
var node = select_list[nodeIndex];
|
|
|
|
if (node)
|
|
|
|
{
|
|
|
|
dump("Unselecting node "+node.getAttribute("Name") + "\n");
|
|
|
|
node.removeAttribute("selected");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX for now, just remove the child from the parent
|
|
|
|
// optimally, we'd like to not remove the child-parent relationship
|
|
|
|
// and instead just set a "display: none;" attribute on the child node
|
|
|
|
|
|
|
|
// gEditNode.setAttribute("style", "display: none;");
|
|
|
|
// dump("gEditNode hidden.\n");
|
|
|
|
theParent.removeChild(gEditNode);
|
|
|
|
gEditNode = null;
|
|
|
|
dump("gEditNode removed.\n");
|
|
|
|
|
|
|
|
// create the html:input node
|
|
|
|
htmlInput = document.createElement("html:input");
|
|
|
|
htmlInput.setAttribute("value", name);
|
|
|
|
htmlInput.setAttribute("onkeydown", "return EditNodeKeyDown(event)");
|
|
|
|
htmlInput.setAttribute("onkeyup", "return EditNodeKeyUp(event)");
|
|
|
|
|
|
|
|
theParent.appendChild(htmlInput);
|
|
|
|
dump("html:input node added.\n");
|
|
|
|
|
|
|
|
htmlInput.focus();
|
|
|
|
|
|
|
|
dump("OpenEditNode done.\n");
|
|
|
|
return(true);
|
1999-07-14 21:15:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function CloseEditNode(saveChangeFlag)
|
|
|
|
{
|
1999-07-15 23:06:58 +00:00
|
|
|
dump("CloseEditNode entered.\n");
|
|
|
|
|
|
|
|
if (htmlInput)
|
|
|
|
{
|
|
|
|
if (saveChangeFlag)
|
|
|
|
{
|
|
|
|
newValue = htmlInput.value;
|
|
|
|
}
|
|
|
|
dump(" Got html input: "+newValue+" \n");
|
|
|
|
|
|
|
|
var theParent = htmlInput.parentNode;
|
|
|
|
theParent.removeChild(htmlInput);
|
|
|
|
theParent.appendChild(saveNode);
|
|
|
|
dump(" child node appended.\n");
|
|
|
|
|
1999-07-18 03:55:20 +00:00
|
|
|
if (saveNode && saveChangeFlag)
|
1999-07-15 23:06:58 +00:00
|
|
|
{
|
|
|
|
var RDF = Components.classes["component://netscape/rdf/rdf-service"].getService();
|
|
|
|
RDF = RDF.QueryInterface(Components.interfaces.nsIRDFService);
|
|
|
|
var Bookmarks = RDF.GetDataSource("rdf:bookmarks");
|
|
|
|
dump("Got bookmarks datasource.\n");
|
|
|
|
|
|
|
|
// XXX once we support multi-column editing, get the property
|
|
|
|
// from the column in the content model
|
|
|
|
var propertyName = "http://home.netscape.com/NC-rdf#Name";
|
|
|
|
var propertyNode = RDF.GetResource(propertyName, true);
|
|
|
|
dump(" replacing value of property '" + propertyName + "'\n");
|
|
|
|
|
|
|
|
// get the URI
|
1999-07-18 03:55:20 +00:00
|
|
|
var theNode = saveNode;
|
1999-07-15 23:06:58 +00:00
|
|
|
var bookmarkURL = "";
|
|
|
|
while(true)
|
|
|
|
{
|
|
|
|
var tag = theNode.nodeName;
|
|
|
|
if (tag == "treeitem")
|
|
|
|
{
|
|
|
|
bookmarkURL = theNode.getAttribute("id");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
theNode = theNode.parentNode;
|
|
|
|
}
|
|
|
|
dump(" uri is '" + bookmarkURL + "'\n");
|
|
|
|
|
|
|
|
if (bookmarkURL == "") return(false);
|
|
|
|
var bookmarkNode = RDF.GetResource(bookmarkURL, true);
|
|
|
|
|
|
|
|
|
|
|
|
dump(" newValue = '" + newValue + "'\n");
|
|
|
|
newValue = (newValue != "") ? RDF.GetLiteral(newValue) : null;
|
|
|
|
|
|
|
|
var oldValue = Bookmarks.GetTarget(bookmarkNode, propertyNode, true);
|
|
|
|
if (oldValue)
|
|
|
|
{
|
|
|
|
oldValue = oldValue.QueryInterface(Components.interfaces.nsIRDFLiteral);
|
|
|
|
dump(" oldValue = '" + oldValue + "'\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (oldValue != newValue)
|
|
|
|
{
|
|
|
|
if (oldValue && !newValue)
|
|
|
|
{
|
|
|
|
Bookmarks.Unassert(bookmarkNode, propertyNode, oldValue);
|
|
|
|
dump(" Unassert used.\n");
|
|
|
|
}
|
|
|
|
else if (!oldValue && newValue)
|
|
|
|
{
|
|
|
|
Bookmarks.Assert(bookmarkNode, propertyNode, newValue, true);
|
|
|
|
dump(" Assert used.\n");
|
|
|
|
}
|
|
|
|
else if (oldValue && newValue)
|
|
|
|
{
|
|
|
|
Bookmarks.Change(bookmarkNode, propertyNode, oldValue, newValue);
|
|
|
|
dump(" Change used.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
dump("re-writing bookmarks.html\n");
|
|
|
|
var remote = Bookmarks.QueryInterface(Components.interfaces.nsIRDFRemoteDataSource);
|
|
|
|
remote.Flush();
|
|
|
|
}
|
|
|
|
|
|
|
|
newValue = "";
|
|
|
|
saveNode = null;
|
|
|
|
}
|
|
|
|
else dump("saveNode was null?\n");
|
|
|
|
htmlInput = null;
|
|
|
|
}
|
|
|
|
else dump("htmlInput was null?\n");
|
|
|
|
|
|
|
|
dump("CloseEditNode done.\n");
|
1999-07-14 21:15:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function EditNodeKeyDown(event)
|
|
|
|
{
|
1999-07-15 23:06:58 +00:00
|
|
|
if (event.which == 27)
|
|
|
|
{
|
|
|
|
CloseEditNode(false);
|
|
|
|
return(false);
|
|
|
|
}
|
|
|
|
return(true);
|
1999-07-14 21:15:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function EditNodeKeyUp(event)
|
|
|
|
{
|
1999-07-15 23:06:58 +00:00
|
|
|
if (event.which == 13 || event.which == 10)
|
|
|
|
{
|
|
|
|
CloseEditNode(true);
|
|
|
|
return(false);
|
|
|
|
}
|
|
|
|
return(true);
|
1999-06-11 02:50:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function doSort(sortColName)
|
|
|
|
{
|
|
|
|
var node = document.getElementById(sortColName);
|
|
|
|
// determine column resource to sort on
|
|
|
|
var sortResource = node.getAttribute('resource');
|
|
|
|
if (!node) return(false);
|
|
|
|
|
|
|
|
var sortDirection="ascending";
|
|
|
|
var isSortActive = node.getAttribute('sortActive');
|
|
|
|
if (isSortActive == "true") {
|
|
|
|
var currentDirection = node.getAttribute('sortDirection');
|
|
|
|
if (currentDirection == "ascending")
|
|
|
|
sortDirection = "descending";
|
|
|
|
else if (currentDirection == "descending")
|
|
|
|
sortDirection = "natural";
|
|
|
|
else
|
|
|
|
sortDirection = "ascending";
|
|
|
|
}
|
|
|
|
|
|
|
|
// get RDF Core service
|
|
|
|
var rdfCore = XPAppCoresManager.Find("RDFCore");
|
|
|
|
if (!rdfCore) {
|
|
|
|
rdfCore = new RDFCore();
|
|
|
|
if (!rdfCore) {
|
|
|
|
return(false);
|
|
|
|
}
|
|
|
|
rdfCore.Init("RDFCore");
|
|
|
|
// XPAppCoresManager.Add(rdfCore);
|
|
|
|
}
|
|
|
|
// sort!!!
|
|
|
|
rdfCore.doSort(node, sortResource, sortDirection);
|
|
|
|
return(false);
|
|
|
|
}
|
1999-06-26 04:38:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
function fillContextMenu(name)
|
|
|
|
{
|
1999-07-15 23:06:58 +00:00
|
|
|
if (!name) return(false);
|
|
|
|
var popupNode = document.getElementById(name);
|
|
|
|
if (!popupNode) return(false);
|
|
|
|
|
|
|
|
// remove the menu node (which tosses all of its kids);
|
|
|
|
// do this in case any old command nodes are hanging around
|
|
|
|
var menuNode = popupNode.childNodes[0];
|
|
|
|
popupNode.removeChild(menuNode);
|
|
|
|
|
|
|
|
// create a new menu node
|
|
|
|
menuNode = document.createElement("menu");
|
|
|
|
popupNode.appendChild(menuNode);
|
|
|
|
|
|
|
|
var treeNode = document.getElementById("bookmarksTree");
|
|
|
|
if (!treeNode) return(false);
|
|
|
|
var db = treeNode.database;
|
|
|
|
if (!db) return(false);
|
|
|
|
|
|
|
|
var compositeDB = db.QueryInterface(Components.interfaces.nsIRDFDataSource);
|
|
|
|
if (!compositeDB) return(false);
|
|
|
|
|
|
|
|
var isupports = Components.classes["component://netscape/rdf/rdf-service"].getService();
|
|
|
|
if (!isupports) return(false);
|
|
|
|
var rdf = isupports.QueryInterface(Components.interfaces.nsIRDFService);
|
|
|
|
if (!rdf) return(false);
|
|
|
|
|
|
|
|
var select_list = treeNode.getElementsByAttribute("selected", "true");
|
|
|
|
if (select_list.length < 1) return(false);
|
|
|
|
|
|
|
|
dump("# of Nodes selected: " + select_list.length + "\n\n");
|
|
|
|
|
|
|
|
// perform intersection of commands over selected nodes
|
|
|
|
var cmdArray = new Array();
|
|
|
|
|
|
|
|
for (var nodeIndex=0; nodeIndex<select_list.length; nodeIndex++)
|
|
|
|
{
|
|
|
|
var node = select_list[nodeIndex];
|
|
|
|
if (!node) break;
|
|
|
|
var id = node.getAttribute("id");
|
|
|
|
if (!id) break;
|
|
|
|
var rdfNode = rdf.GetResource(id);
|
|
|
|
if (!rdfNode) break;
|
|
|
|
var cmdEnum = db.GetAllCmds(rdfNode);
|
|
|
|
if (!cmdEnum) break;
|
|
|
|
|
|
|
|
var nextCmdArray = new Array();
|
|
|
|
while (cmdEnum.HasMoreElements())
|
|
|
|
{
|
|
|
|
var cmd = cmdEnum.GetNext();
|
|
|
|
if (!cmd) break;
|
|
|
|
if (nodeIndex == 0)
|
|
|
|
{
|
|
|
|
cmdArray[cmdArray.length] = cmd;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nextCmdArray[cmdArray.length] = cmd;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (nodeIndex > 0)
|
|
|
|
{
|
|
|
|
// perform command intersection calculation
|
|
|
|
for (var cmdIndex = 0; cmdIndex < cmdArray.length; cmdIndex++)
|
|
|
|
{
|
|
|
|
var cmdFound = false;
|
|
|
|
for (var nextCmdIndex = 0; nextCmdIndex < nextCmdArray.length; nextCmdIndex++)
|
|
|
|
{
|
|
|
|
if (nextCmdArray[nextCmdIndex] == cmdArray[cmdIndex])
|
|
|
|
{
|
|
|
|
cmdFound = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (cmdFound == false)
|
|
|
|
{
|
|
|
|
cmdArray[cmdIndex] = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// need a resource to ask RDF for each command's name
|
|
|
|
var rdfNameResource = rdf.GetResource("http://home.netscape.com/NC-rdf#Name");
|
|
|
|
if (!rdfNameResource) return(false);
|
|
|
|
|
|
|
|
// build up menu items
|
|
|
|
if (cmdArray.length < 1) return(false);
|
|
|
|
|
|
|
|
for (var cmdIndex = 0; cmdIndex < cmdArray.length; cmdIndex++)
|
|
|
|
{
|
|
|
|
var cmd = cmdArray[cmdIndex];
|
|
|
|
if (!cmd) continue;
|
|
|
|
var cmdResource = cmd.QueryInterface(Components.interfaces.nsIRDFResource);
|
|
|
|
if (!cmdResource) break;
|
|
|
|
var cmdNameNode = compositeDB.GetTarget(cmdResource, rdfNameResource, true);
|
|
|
|
if (!cmdNameNode) break;
|
|
|
|
cmdNameLiteral = cmdNameNode.QueryInterface(Components.interfaces.nsIRDFLiteral);
|
|
|
|
if (!cmdNameLiteral) break;
|
|
|
|
cmdName = cmdNameLiteral.Value;
|
|
|
|
if (!cmdName) break;
|
|
|
|
|
|
|
|
dump("Command #" + cmdIndex + ": id='" + cmdResource.Value + "' name='" + cmdName + "'\n\n");
|
|
|
|
|
|
|
|
var menuItem = document.createElement("menuitem");
|
|
|
|
menuItem.setAttribute("name", cmdName);
|
|
|
|
menuItem.setAttribute("onclick", "return doContextCmd('" + cmdResource.Value + "');");
|
|
|
|
|
|
|
|
menuNode.appendChild(menuItem);
|
|
|
|
}
|
|
|
|
|
|
|
|
return(true);
|
1999-06-26 04:38:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function doContextCmd(cmdName)
|
|
|
|
{
|
1999-07-18 03:55:20 +00:00
|
|
|
dump("doContextCmd start: cmd='" + cmdName + "'\n");
|
|
|
|
|
|
|
|
var treeNode = document.getElementById("bookmarksTree");
|
|
|
|
if (!treeNode) return(false);
|
|
|
|
var db = treeNode.database;
|
|
|
|
if (!db) return(false);
|
|
|
|
|
|
|
|
var compositeDB = db.QueryInterface(Components.interfaces.nsIRDFDataSource);
|
|
|
|
if (!compositeDB) return(false);
|
|
|
|
|
|
|
|
var isupports = Components.classes["component://netscape/rdf/rdf-service"].getService();
|
|
|
|
if (!isupports) return(false);
|
|
|
|
var rdf = isupports.QueryInterface(Components.interfaces.nsIRDFService);
|
|
|
|
if (!rdf) return(false);
|
|
|
|
|
|
|
|
// need a resource for the command
|
|
|
|
var cmdResource = rdf.GetResource(cmdName);
|
|
|
|
if (!cmdResource) return(false);
|
|
|
|
cmdResource = cmdResource.QueryInterface(Components.interfaces.nsIRDFResource);
|
|
|
|
if (!cmdResource) return(false);
|
|
|
|
|
|
|
|
var select_list = treeNode.getElementsByAttribute("selected", "true");
|
|
|
|
if (select_list.length < 1) return(false);
|
|
|
|
|
|
|
|
dump("# of Nodes selected: " + select_list.length + "\n\n");
|
|
|
|
|
|
|
|
// set up selection nsISupportsArray
|
|
|
|
var selectionInstance = Components.classes["component://netscape/supports-array"].createInstance();
|
|
|
|
var selectionArray = selectionInstance.QueryInterface(Components.interfaces.nsISupportsArray);
|
|
|
|
|
|
|
|
// set up arguments nsISupportsArray
|
|
|
|
var argumentsInstance = Components.classes["component://netscape/supports-array"].createInstance();
|
|
|
|
var argumentsArray = argumentsInstance.QueryInterface(Components.interfaces.nsISupportsArray);
|
|
|
|
|
|
|
|
// get argument (parent)
|
|
|
|
var parentArc = rdf.GetResource("http://home.netscape.com/NC-rdf#parent");
|
|
|
|
if (!parentArc) return(false);
|
|
|
|
|
|
|
|
for (var nodeIndex=0; nodeIndex<select_list.length; nodeIndex++)
|
|
|
|
{
|
|
|
|
var node = select_list[nodeIndex];
|
|
|
|
if (!node) break;
|
|
|
|
var uri = node.getAttribute("ref");
|
|
|
|
if ((uri) || (uri == ""))
|
|
|
|
{
|
|
|
|
uri = node.getAttribute("id");
|
|
|
|
}
|
|
|
|
if (!uri) return(false);
|
|
|
|
|
|
|
|
var rdfNode = rdf.GetResource(uri);
|
|
|
|
if (!rdfNode) break;
|
|
|
|
|
|
|
|
// add node into selection array
|
|
|
|
selectionArray.AppendElement(rdfNode);
|
|
|
|
|
|
|
|
// get the parent's URI
|
|
|
|
var parentURI="";
|
|
|
|
var theParent = node;
|
|
|
|
while (theParent)
|
|
|
|
{
|
|
|
|
theParent = theParent.parentNode;
|
|
|
|
|
|
|
|
parentURI = theParent.getAttribute("ref");
|
|
|
|
if ((!parentURI) || (parentURI == ""))
|
|
|
|
{
|
|
|
|
parentURI = theParent.getAttribute("id");
|
|
|
|
}
|
|
|
|
if (parentURI != "") break;
|
|
|
|
}
|
|
|
|
if (parentURI == "") return(false);
|
|
|
|
|
|
|
|
var parentNode = rdf.GetResource(parentURI, true);
|
|
|
|
if (!parentNode) return(false);
|
|
|
|
|
|
|
|
// add parent arc and node into arguments array
|
|
|
|
argumentsArray.AppendElement(parentArc);
|
|
|
|
argumentsArray.AppendElement(parentNode);
|
|
|
|
}
|
|
|
|
|
|
|
|
// do the command
|
|
|
|
compositeDB.DoCommand( selectionArray, cmdResource, argumentsArray );
|
|
|
|
|
|
|
|
dump("doContextCmd ends.\n\n");
|
|
|
|
return(true);
|
1999-06-26 04:38:48 +00:00
|
|
|
}
|