annotate xul/content/sidebar/install.xul @ 407:21540fe26235

some general refactoring; added version number; add marks programmatically; heavy rework of "zoom area" code; added code to load the scaled image; added code to show an "about" div
author hertzhaft
date Tue, 13 Dec 2005 13:42:33 +0100
parents 49cb8a445126
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
199
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
1 <?xml version="1.0" ?>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
2 <?xml-stylesheet href="chrome://communicator/skin/" type="text/css" ?>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
3
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
4 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
5 xmlns:html="http://www.w3.org/1999/xhtml"
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
6 title="ALCATRAZ SIDEBAR INSTALLER"
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
7 orient="vertical">
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
8
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
9 <script src="chrome://alcatraz/content/sidebar/installer.js" />
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
10 <script>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
11 function install() {
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
12 var Installer = new MOZ_SidebarInstaller('Alcatraz', 'chrome://alcatraz/content/alcatraz.xul', ''); //no customization
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
13 Installer.setUp();
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
14 }
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
15 </script>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
16
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
17 <groupbox style="-moz-box-align: center; -moz-box-pack: center;">
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
18 <caption label="Alcatraz" />
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
19 <description>Click the button to install the Alcatraz-Sidebar panel</description>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
20 <button label="INSTALL Alcatraz Sidebar"
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
21 oncommand="install();"
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
22 flex="0" />
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
23 <description>Alcatraz uses Mozilla Java Script Library:</description>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
24 <description><html:a href='http://jslib.mozdev.org/installation.html' target='blank'> jslib http://jslib.mozdev.org/installation.html</html:a></description>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
25 </groupbox>
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
26
49cb8a445126 restarting with version control of xul sidebar/toolbar
luginbue
parents:
diff changeset
27 </window>