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>
|
BIN
arduino-0018-windows/java/lib/deploy/jqs/ie/jqs_plugin.dll
Normal file
BIN
arduino-0018-windows/java/lib/deploy/jqs/ie/jqs_plugin.dll
Normal file
Binary file not shown.
2228
arduino-0018-windows/java/lib/deploy/jqs/jqs.conf
Normal file
2228
arduino-0018-windows/java/lib/deploy/jqs/jqs.conf
Normal file
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,48 @@
|
|||
#
|
||||
# @(#)messages.properties 1.6 05/05/18
|
||||
#
|
||||
# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
|
||||
# SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
||||
#
|
||||
|
||||
message.jqs.registered = JQS service successfully installed.
|
||||
error.jqs.register = Unable to install JQS service.
|
||||
|
||||
message.jqs.unregistered = JQS service successfully removed.
|
||||
error.jqs.unregister = Unable to remove JQS service.
|
||||
|
||||
message.jqs.enabled = JQS service enabled successfully.
|
||||
error.jqs.enable = Unable to enable JQS service.
|
||||
|
||||
message.jqs.disabled = JQS service disabled successfully.
|
||||
error.jqs.disable = Unable to disable JQS service.
|
||||
|
||||
message.jqs.paused = JQS service paused successfully.
|
||||
error.jqs.pause = Unable to pause JQS service.
|
||||
|
||||
message.jqs.resumed = JQS service resumed successfully.
|
||||
error.jqs.resume = Unable to resume JQS service.
|
||||
|
||||
error.no.admin.privileges = JQS requires Administrator privileges.
|
||||
|
||||
|
||||
# JQS usage: '\' is a joining of two sentence, which are connected including
|
||||
# the invisible character '\n'.
|
||||
message.jqs.usage = Usage: jqs <mode> [<options>] \
|
||||
\
|
||||
The following modes are supported: \
|
||||
-help print this help message and exit \
|
||||
-register install JQS service and register browser startup detectors \
|
||||
-unregister uninstall JQS service and unregister startup detectors \
|
||||
-enable enable JQS service \
|
||||
-disable disable JQS service \
|
||||
-pause pause prefetching \
|
||||
-resume resume prefetching \
|
||||
-version print version of the associated Java Runtime \
|
||||
\
|
||||
Options include: \
|
||||
-config <config> set JQS configuration file \
|
||||
-profile <profile> set JQS profile file \
|
||||
-logfile <logfile> set JQS log file \
|
||||
-verbose <level> verbose operation \
|
||||
\n
|
Reference in a new issue