mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-18 14:56:07 +00:00
removing unused files.
This commit is contained in:
parent
0d8806d19c
commit
63de722f79
@ -1,220 +0,0 @@
|
||||
// the rdf service
|
||||
var RDF = Components.classes['component://netscape/rdf/rdf-service'].getService();
|
||||
RDF = RDF.QueryInterface(Components.interfaces.nsIRDFService);
|
||||
|
||||
function getAttr(registry,service,attr_name)
|
||||
{
|
||||
|
||||
var attr = registry.GetTarget(service,
|
||||
RDF.GetResource('http://home.netscape.com/NC-rdf#' + attr_name),
|
||||
true);
|
||||
if (attr)
|
||||
attr = attr.QueryInterface(Components.interfaces.nsIRDFLiteral);
|
||||
|
||||
if (attr)
|
||||
attr = attr.Value;
|
||||
return attr;
|
||||
}
|
||||
|
||||
// the location of the flash registry.
|
||||
|
||||
var localSoftwareUpdateRegistry = 'resource:/res/xpinstall/SoftwareUpdates.rdf';
|
||||
|
||||
|
||||
function Init()
|
||||
{
|
||||
dump("Software Notification!");
|
||||
var tree = document.getElementById('tree');
|
||||
|
||||
var mainRegistry;
|
||||
|
||||
try
|
||||
{
|
||||
// First try to construct a new one and load it
|
||||
// synchronously. nsIRDFService::GetDataSource() loads RDF/XML
|
||||
// asynchronously by default.
|
||||
|
||||
mainRegistry = Components.classes['component://netscape/rdf/datasource?name=xml-datasource'].createInstance();
|
||||
mainRegistry = mainRegistry.QueryInterface(Components.interfaces.nsIRDFDataSource);
|
||||
|
||||
var remote = mainRegistry.QueryInterface(Components.interfaces.nsIRDFRemoteDataSource);
|
||||
remote.Init(localSoftwareUpdateRegistry); // this will throw if it's already been opened and registered.
|
||||
|
||||
// read it in synchronously.
|
||||
remote.Refresh(true);
|
||||
}
|
||||
catch (ex)
|
||||
{
|
||||
// if we get here, then the RDF/XML has been opened and read
|
||||
// once. We just need to grab the datasource.
|
||||
mainRegistry = RDF.GetDataSource(localSoftwareUpdateRegistry);
|
||||
}
|
||||
|
||||
// Create a 'container' wrapper around the NC:SoftwareUpdateDataSources
|
||||
// resource so we can use some utility routines that make access a
|
||||
// bit easier.
|
||||
|
||||
var mainContainer = Components.classes['component://netscape/rdf/container'].createInstance();
|
||||
mainContainer = mainContainer.QueryInterface(Components.interfaces.nsIRDFContainer);
|
||||
|
||||
mainContainer.Init(mainRegistry, RDF.GetResource('NC:SoftwareUpdateDataSources'));
|
||||
|
||||
|
||||
// Now enumerate all of the softwareupdate datasources.
|
||||
var mainEnumerator = mainContainer.GetElements();
|
||||
while (mainEnumerator.HasMoreElements())
|
||||
{
|
||||
var aDistributor = mainEnumerator.GetNext();
|
||||
aDistributor = aDistributor.QueryInterface(Components.interfaces.nsIRDFResource);
|
||||
|
||||
dump('Contacting Distributor: "' + aDistributor.Value + '"...\n');
|
||||
|
||||
var distributorRegistry;
|
||||
|
||||
try
|
||||
{
|
||||
// First try to construct a new one and load it
|
||||
// synchronously. nsIRDFService::GetDataSource() loads RDF/XML
|
||||
// asynchronously by default.
|
||||
|
||||
distributorRegistry = Components.classes['component://netscape/rdf/datasource?name=xml-datasource'].createInstance();
|
||||
distributorRegistry = distributorRegistry.QueryInterface(Components.interfaces.nsIRDFDataSource);
|
||||
|
||||
var remote = distributorRegistry.QueryInterface(Components.interfaces.nsIRDFRemoteDataSource);
|
||||
remote.Init(aDistributor.Value); // this will throw if it's already been opened and registered.
|
||||
|
||||
// read it in synchronously.
|
||||
remote.Refresh(true);
|
||||
}
|
||||
catch (ex)
|
||||
{
|
||||
// if we get here, then the RDF/XML has been opened and read
|
||||
// once. We just need to grab the datasource.
|
||||
distributorRegistry = RDF.GetDataSource(aDistributor.Value);
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
// Create a 'container' wrapper around the NC:SoftwareUpdateRoot
|
||||
// resource so we can use some utility routines that make access a
|
||||
// bit easier.
|
||||
|
||||
var distributorContainer = Components.classes['component://netscape/rdf/container'].createInstance();
|
||||
distributorContainer = distributorContainer.QueryInterface(Components.interfaces.nsIRDFContainer);
|
||||
distributorContainer.Init(distributorRegistry, RDF.GetResource('NC:SoftwarePackages'));
|
||||
|
||||
|
||||
// Now enumerate all of the distributorContainer's packages.
|
||||
|
||||
var distributorEnumerator = distributorContainer.GetElements();
|
||||
|
||||
dump('Parsing "' + aDistributor.Value + '" \n');
|
||||
dump('Contatiner "' + distributorContainer + '" \n');
|
||||
dump('Enumerator "' + distributorEnumerator + '" \n');
|
||||
|
||||
while (distributorEnumerator.HasMoreElements())
|
||||
{
|
||||
// Create a new RDF/XML datasource.
|
||||
|
||||
var aPackage = distributorEnumerator.GetNext();
|
||||
aPackage = aPackage.QueryInterface(Components.interfaces.nsIRDFResource);
|
||||
|
||||
// remove any that we do not want.
|
||||
dump('package name "' + getAttr(distributorRegistry, aPackage, 'title') + '" \n');
|
||||
|
||||
// var InstallTrigger.CompareVersion(getAttr(distributorRegistry, aPackage, 'registryKey'),
|
||||
// getAttr(distributorRegistry, aPackage, 'version'));
|
||||
|
||||
|
||||
if (getAttr(distributorRegistry, aPackage, 'title') == "AOL AIM")
|
||||
{
|
||||
distributorContainer.RemoveElement(aPackage, true);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
tree.database.AddDataSource(distributorRegistry);
|
||||
|
||||
}
|
||||
catch (ex)
|
||||
{
|
||||
dump('an exception occurred trying to load "' + aDistributor.Value + '":\n');
|
||||
dump(ex + '\n');
|
||||
}
|
||||
|
||||
// TODO
|
||||
|
||||
// XXX hack to force the tree to rebuild
|
||||
tree.setAttribute('ref', 'NC:SoftwareUpdateRoot');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function OpenURL(event, node)
|
||||
{
|
||||
if (node.getAttribute('type') == "http://home.netscape.com/NC-rdf#SoftwarePackage")
|
||||
{
|
||||
url = node.getAttribute('url');
|
||||
|
||||
/*window.open(url,'bookmarks');*/
|
||||
|
||||
var toolkitCore = XPAppCoresManager.Find("ToolkitCore");
|
||||
if (!toolkitCore)
|
||||
{
|
||||
toolkitCore = new ToolkitCore();
|
||||
if (toolkitCore)
|
||||
{
|
||||
toolkitCore.Init("ToolkitCore");
|
||||
}
|
||||
}
|
||||
|
||||
if (toolkitCore)
|
||||
{
|
||||
toolkitCore.ShowWindow(url,window);
|
||||
}
|
||||
|
||||
dump("OpenURL(" + url + ")\n");
|
||||
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
function Reload(url, pollInterval)
|
||||
{
|
||||
// Reload the specified datasource and reschedule.
|
||||
dump('Reload(' + url + ', ' + pollInterval + ')\n');
|
||||
|
||||
var datasource = RDF.GetDataSource(url);
|
||||
datasource = datasource.QueryInterface(Components.interfaces.nsIRDFRemoteDataSource);
|
||||
|
||||
// Reload, asynchronously.
|
||||
datasource.Refresh(false);
|
||||
|
||||
// Reschedule
|
||||
Schedule(url, pollInterval);
|
||||
}
|
||||
|
||||
function Schedule(url, pollInterval)
|
||||
{
|
||||
setTimeout('Reload("' + url + '", ' + pollInterval + ')', pollInterval * 1000);
|
||||
}
|
||||
|
||||
|
||||
// To get around "window.onload" not working in viewer.
|
||||
function Boot()
|
||||
{
|
||||
var tree = document.getElementById('tree');
|
||||
|
||||
if (tree == null)
|
||||
{
|
||||
setTimeout(Boot, 0);
|
||||
}
|
||||
else
|
||||
{
|
||||
Init();
|
||||
}
|
||||
}
|
||||
|
||||
setTimeout('Boot()', 0);
|
||||
|
@ -1,73 +0,0 @@
|
||||
<?xml version="1.0"?> <!-- -*- Mode: SGML -*- -->
|
||||
<!--
|
||||
|
||||
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.
|
||||
|
||||
-->
|
||||
|
||||
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
||||
<?xml-stylesheet href="chrome://sidebar/skin/" type="text/css"?>
|
||||
<?xml-stylesheet href="resource:/res/xpinstall/SoftwareUpdate.css" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window
|
||||
[
|
||||
<!ENTITY tree.header.title.label "Title">
|
||||
<!ENTITY tree.header.description.label "Description">
|
||||
<!ENTITY tree.header.version.label "Version">
|
||||
]>
|
||||
|
||||
<window
|
||||
xmlns:html="http://www.w3.org/TR/REC-html40"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||
align="vertical">
|
||||
|
||||
<html:script src="SoftwareUpdate.js"/>
|
||||
|
||||
<tree id="tree"
|
||||
flex="100%"
|
||||
style="height: 100%"
|
||||
datasources="rdf:softwareupdates"
|
||||
onclick="OpenURL(event, event.target.parentNode);"
|
||||
ref="NC:SoftwareUpdateRoot">
|
||||
|
||||
<template>
|
||||
<treechildren>
|
||||
<treeitem uri="...">
|
||||
<treerow>
|
||||
<treecell><treeindentation/><titledbutton /><text value="rdf:http://home.netscape.com/NC-rdf#title"/></treecell>
|
||||
<treecell><text value="rdf:http://home.netscape.com/NC-rdf#description"/></treecell>
|
||||
<treecell><text value="rdf:http://home.netscape.com/NC-rdf#version"/></treecell>
|
||||
</treerow>
|
||||
</treeitem>
|
||||
</treechildren>
|
||||
</template>
|
||||
|
||||
|
||||
|
||||
<treecol rdf:resource="http://home.netscape.com/NC-rdf#title" />
|
||||
<treecol rdf:resource="http://home.netscape.com/NC-rdf#description" />
|
||||
<treecol rdf:resource="http://home.netscape.com/NC-rdf#version" />
|
||||
|
||||
<treehead>
|
||||
<treerow>
|
||||
<treecell>&tree.header.title.label;</treecell>
|
||||
<treecell>&tree.header.description.label;</treecell>
|
||||
<treecell>&tree.header.version.label;</treecell>
|
||||
</treerow>
|
||||
</treehead>
|
||||
</tree>
|
||||
</window>
|
Binary file not shown.
Before Width: | Height: | Size: 120 B |
Binary file not shown.
Before Width: | Height: | Size: 159 B |
Binary file not shown.
Before Width: | Height: | Size: 800 B |
Loading…
x
Reference in New Issue
Block a user