arduino-0018-windows
This commit is contained in:
parent
157fd6f1a1
commit
f39fc49523
5182 changed files with 950586 additions and 0 deletions
|
@ -0,0 +1,2 @@
|
|||
content jqs chrome/content/
|
||||
overlay chrome://browser/content/browser.xul chrome://jqs/content/overlay.xul
|
|
@ -0,0 +1,22 @@
|
|||
//
|
||||
// Copyright 2007 Sun Microsystems, Inc. All rights reserved.
|
||||
// SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
||||
//
|
||||
|
||||
// get the JQS extension directory
|
||||
const id = "jqs@sun.com";
|
||||
var ext = Components.classes["@mozilla.org/extensions/manager;1"]
|
||||
.getService(Components.interfaces.nsIExtensionManager)
|
||||
.getInstallLocation(id)
|
||||
.getItemLocation(id);
|
||||
|
||||
// create an nsILocalFile for the executable
|
||||
var file = Components.classes["@mozilla.org/file/local;1"]
|
||||
.createInstance(Components.interfaces.nsILocalFile);
|
||||
|
||||
// construct command line
|
||||
file.initWithPath(ext.path + "\\..\\..\\..\\..\\bin\\jqsnotify.exe");
|
||||
|
||||
// and launch it
|
||||
file.launch();
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0"?>
|
||||
<overlay id="jqs-overlay"
|
||||
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
||||
<script src="overlay.js"/>
|
||||
</overlay>
|
24
arduino-0018-windows/java/lib/deploy/jqs/ff/install.rdf
Normal file
24
arduino-0018-windows/java/lib/deploy/jqs/ff/install.rdf
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0"?>
|
||||
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:em="http://www.mozilla.org/2004/em-rdf#">
|
||||
|
||||
<Description about="urn:mozilla:install-manifest">
|
||||
|
||||
<em:id>jqs@sun.com</em:id>
|
||||
<em:name>Java Quick Starter</em:name>
|
||||
<em:version>1.0</em:version>
|
||||
<em:description></em:description>
|
||||
<em:creator></em:creator>
|
||||
|
||||
<!-- Firefox -->
|
||||
<em:targetApplication>
|
||||
<Description>
|
||||
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
|
||||
<em:minVersion>1.5</em:minVersion>
|
||||
<em:maxVersion>*</em:maxVersion>
|
||||
</Description>
|
||||
</em:targetApplication>
|
||||
|
||||
</Description>
|
||||
|
||||
</RDF>
|
Reference in a new issue