summaryrefslogtreecommitdiff
path: root/extensions/firefox-extension/chrome/content/indexLink.xul
blob: 3f2bfa99e303bf85d5befb8b1c9683f5a579845a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0"?>


<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>

<!DOCTYPE window SYSTEM "chrome://beagle/locale/beagle.dtd">

<window id="beagle-index-link"
    title="Beagle Index "
    style="width:400px" 
    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
    
<stringbundleset id="stringbundleset">
     <stringbundle id="beagleStrings"
         src="chrome://beagle/locale/beagle.properties"/>
</stringbundleset>

<script type="application/x-javascript" 
		src="chrome://beagle/content/i18n.js" />
<script type="application/x-javascript" 
		src="chrome://beagle/content/utils.js" />
<script type="application/x-javascript" 
		src="chrome://beagle/content/indexLink.js" />

<textbox id="beagle-index-link-status" readonly="true" value="" />
<hbox>
    <button id="beagle-index-link-start" label="&beagle.index.link.start.label;" 
        oncommand="beagleInvisibleBrowser.reload();" disabled="true"/>
    <button id="beagle-index-link-stop" label="&beagle.index.link.stop.label;"  
        oncommand="beagleInvisibleBrowser.stop();" />
</hbox>

<browser id="beagle-invisible-browser" type="content" collapsed="true"/>

</window>