diff xul/content/tools_dialog.xul @ 203:bf945fcf9105

restarting with version control of xul sidebar/toolbar
author luginbue
date Fri, 27 Feb 2004 11:24:53 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xul/content/tools_dialog.xul	Fri Feb 27 11:24:53 2004 +0100
@@ -0,0 +1,29 @@
+<?xml version="1.0"?>
+
+<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
+
+<dialog id="donothing" title="tool path"
+        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
+        buttons="accept,cancel"
+        ondialogaccept="return doOK();"
+        ondialogcancel="return doCancel();">
+
+<label control="digilib_path" value="tool path (where you can find digilib.jsp)"/>
+<textbox id="digilib_path"/>
+<script>
+document.getElementById('digilib_path').value=window.arguments[0];
+
+function doOK()
+{
+  window.arguments[1](document.getElementById('digilib_path').value);
+  return true;
+}
+
+function doCancel()
+{
+  return true;
+}
+
+</script>
+
+</dialog>