annotate client/digitallibrary/xul/install.html @ 514:e91d6050f27d

zoom and pan marks in red prettier js
author robcast
date Thu, 03 Sep 2009 15:39:18 +0200
parents 004a9467b4ec
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
d6a76e2fcb21 Installation of XUL-Buttons in chrome
engler
parents:
diff changeset
1 <html>
135
68e88c3bc575 unified scripts, nice xul sidebar, bugfixes
luginbue
parents: 111
diff changeset
2 <head>
68e88c3bc575 unified scripts, nice xul sidebar, bugfixes
luginbue
parents: 111
diff changeset
3
248
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
4 <title>Install Alcatraz for Firefox</title>
135
68e88c3bc575 unified scripts, nice xul sidebar, bugfixes
luginbue
parents: 111
diff changeset
5
68e88c3bc575 unified scripts, nice xul sidebar, bugfixes
luginbue
parents: 111
diff changeset
6 <script type="application/x-javascript">
68e88c3bc575 unified scripts, nice xul sidebar, bugfixes
luginbue
parents: 111
diff changeset
7
248
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
8 function dynamicButtons() {
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
9 return "google|google()";
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
10 }
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
11
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
12 function google() {
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
13 top.location = "http://www.google.com";
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
14 }
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
15
135
68e88c3bc575 unified scripts, nice xul sidebar, bugfixes
luginbue
parents: 111
diff changeset
16 function install() {
68e88c3bc575 unified scripts, nice xul sidebar, bugfixes
luginbue
parents: 111
diff changeset
17 InstallTrigger.install ( {'alcatraz' : 'alcatraz.xpi'} );
248
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
18 InstallTrigger.install ( {'jslib' : 'http://downloads.mozdev.org/jslib/xpi/jslib_current.xpi'} );
135
68e88c3bc575 unified scripts, nice xul sidebar, bugfixes
luginbue
parents: 111
diff changeset
19 }
111
d6a76e2fcb21 Installation of XUL-Buttons in chrome
engler
parents:
diff changeset
20
135
68e88c3bc575 unified scripts, nice xul sidebar, bugfixes
luginbue
parents: 111
diff changeset
21 </script>
68e88c3bc575 unified scripts, nice xul sidebar, bugfixes
luginbue
parents: 111
diff changeset
22
68e88c3bc575 unified scripts, nice xul sidebar, bugfixes
luginbue
parents: 111
diff changeset
23 </head>
68e88c3bc575 unified scripts, nice xul sidebar, bugfixes
luginbue
parents: 111
diff changeset
24 <body>
111
d6a76e2fcb21 Installation of XUL-Buttons in chrome
engler
parents:
diff changeset
25
248
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
26 <h3>Alcatraz XUL Package for Firefox</h3>
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
27 <p>Contains a sidebar, a toolbar and the <a href="http://jslib.mozdev.org">jslib-package</a> from mozdev</p>
135
68e88c3bc575 unified scripts, nice xul sidebar, bugfixes
luginbue
parents: 111
diff changeset
28 <h4>Installation:</h4>
248
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
29 <ul>
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
30 <li>press the &quot;install alcatraz&quot; button
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
31 <input type="button" name="install alcatraz" value="install alcatraz" onClick="install();">
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
32 </li>
135
68e88c3bc575 unified scripts, nice xul sidebar, bugfixes
luginbue
parents: 111
diff changeset
33
248
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
34 <li>Restart Firefox and you will find the new toolbar installed. The sidebar can be enabled anytime under View -&gt; Sidebar or with the shortcut [Ctrl]-[a].</li>
135
68e88c3bc575 unified scripts, nice xul sidebar, bugfixes
luginbue
parents: 111
diff changeset
35
248
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
36 </ul>
204
37a697fd8ec6 original-size working now - probably
luginbue
parents: 135
diff changeset
37
135
68e88c3bc575 unified scripts, nice xul sidebar, bugfixes
luginbue
parents: 111
diff changeset
38 <hr>
68e88c3bc575 unified scripts, nice xul sidebar, bugfixes
luginbue
parents: 111
diff changeset
39
68e88c3bc575 unified scripts, nice xul sidebar, bugfixes
luginbue
parents: 111
diff changeset
40 <address><a href="mailto:luginbuehl@student.unibe.ch">Christian Luginbuehl</a></address>
248
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
41 <script type="text/javascript">
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
42 <!--
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
43 document.write("Last modified: " + document.lastModified)
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
44 -->
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
45 </script>
004a9467b4ec new sidebar version working with rewritten client code
luginbue
parents: 204
diff changeset
46 </body>
111
d6a76e2fcb21 Installation of XUL-Buttons in chrome
engler
parents:
diff changeset
47 </html>