203
|
1 <?xml version="1.0"?>
|
|
2
|
|
3 <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
|
|
4
|
|
5 <dialog id="donothing" title="tool path"
|
|
6 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
7 buttons="accept,cancel"
|
|
8 ondialogaccept="return doOK();"
|
|
9 ondialogcancel="return doCancel();">
|
|
10
|
|
11 <label control="digilib_path" value="tool path (where you can find digilib.jsp)"/>
|
|
12 <textbox id="digilib_path"/>
|
|
13 <script>
|
|
14 document.getElementById('digilib_path').value=window.arguments[0];
|
|
15
|
|
16 function doOK()
|
|
17 {
|
|
18 window.arguments[1](document.getElementById('digilib_path').value);
|
|
19 return true;
|
|
20 }
|
|
21
|
|
22 function doCancel()
|
|
23 {
|
|
24 return true;
|
|
25 }
|
|
26
|
|
27 </script>
|
|
28
|
|
29 </dialog>
|