ben%netscape.com 795923769a some search changes, r=rjc,don,johng
git-svn-id: svn://10.0.0.236/trunk@61042 18797224-902f-48f8-a5cc-f745e15eee43
2000-02-16 03:40:47 +00:00

86 lines
2.3 KiB
JavaScript

function OpenURL(event,node)
{
var url = node.getAttribute('id');
if (node.getAttribute('container') == "true")
{
return(false);
}
var rdf = Components.classes["component://netscape/rdf/rdf-service"].getService();
if (rdf) rdf = rdf.QueryInterface(Components.interfaces.nsIRDFService);
if (rdf)
{
var fileSys = rdf.GetDataSource("rdf:internetsearch");
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;
}
}
// Ignore "NC:" urls.
if (url.substring(0, 3) == "NC:")
return(false);
dump("Opening URL: " + url + "\n");
if( top.content )
top.content.location.href = url;
return true;
}
/* Note: doSort() does NOT support natural order sorting! */
function doSort(sortColName)
{
var node = document.getElementById(sortColName);
// determine column resource to sort on
var sortResource = node.getAttribute('resource');
if (!sortResource) return(false);
var sortDirection="ascending";
var isSortActive = node.getAttribute('sortActive');
if (isSortActive == "true")
{
var currentDirection = node.getAttribute('sortDirection');
if (currentDirection == "ascending")
sortDirection = "descending";
else sortDirection = "ascending";
}
var isupports = Components.classes["component://netscape/rdf/xul-sort-service"].getService();
if (!isupports) return(false);
var xulSortService = isupports.QueryInterface(Components.interfaces.nsIXULSortService);
if (!xulSortService) return(false);
xulSortService.Sort(node, sortResource, sortDirection);
return(true);
}
function setInitialSort(node, sortDirection)
{
// determine column resource to sort on
var sortResource = node.getAttribute('resource');
if (!sortResource) return(false);
try
{
var isupports = Components.classes["component://netscape/rdf/xul-sort-service"].getService();
if (!isupports) return(false);
var xulSortService = isupports.QueryInterface(Components.interfaces.nsIXULSortService);
if (!xulSortService) return(false);
xulSortService.Sort(node, sortResource, sortDirection);
}
catch(ex)
{
}
return(true);
}