Index: trunk/ippMonitor/def/autocode.php
===================================================================
--- trunk/ippMonitor/def/autocode.php	(revision 26171)
+++ trunk/ippMonitor/def/autocode.php	(revision 26456)
@@ -23,6 +23,14 @@
 echo "<form action=\"$FILE\" method=\"POST\">\n";
 
+$restricted = 0;
+
 // define restrictiosn to the queries
 // ** TABLE RESTRICTIONS **
+
+if ($restricted == 0) {
+  if ("$UNRESTRICTED" != "none") {
+    $WHERE = "$WHERE $UNRESTRICTED";
+  }
+}
 
 // get the result table count
Index: trunk/ippMonitor/def/warpStageSkyfileInputs.d
===================================================================
--- trunk/ippMonitor/def/warpStageSkyfileInputs.d	(revision 26171)
+++ trunk/ippMonitor/def/warpStageSkyfileInputs.d	(revision 26456)
@@ -11,4 +11,7 @@
 WHERE chipProcessedImfile.chip_id = chipRun.chip_id
 WHERE chipProcessedImfile.class_id = warpSkyCellMap.class_id
+
+# if no query restrictions are supplied, we want to limit the query or it is extremely long running:
+UNRESTRICTED AND warpRun.warp_id = 0
 
 ARGS  ARG1  rawImfile.exp_id=$rawExp.exp_id
Index: trunk/ippMonitor/raw/ipp.php
===================================================================
--- trunk/ippMonitor/raw/ipp.php	(revision 26171)
+++ trunk/ippMonitor/raw/ipp.php	(revision 26456)
@@ -17,5 +17,5 @@
     echo "Username: <input type=\"text\" name=\"username\"><br>\n";
   }
-  echo 'Password: <input type="text" name="password"><br>', "\n";
+  echo 'Password: <input type="password" name="password"><br>', "\n";
   echo '<input type="submit" name="login" value="login">', "\n";
   echo '</form>', "\n\n";
@@ -430,4 +430,8 @@
   }
   if ($value == "") { return $where; }
+
+  global $restricted;
+  $restricted = 1;
+
   if ($where) { 
     $where = $where . " AND"; 
Index: trunk/ippMonitor/scripts/generate
===================================================================
--- trunk/ippMonitor/scripts/generate	(revision 26171)
+++ trunk/ippMonitor/scripts/generate	(revision 26456)
@@ -28,4 +28,5 @@
     &init_key ("STYLE");
     &init_key ("MODE");
+    &init_key ("UNRESTRICTED");
     &init_key ("TABLE");
     &init_key ("TITLE");
@@ -121,4 +122,5 @@
     &check_key ("STYLE", "ipp.css");
     &check_key ("MODE", "basic");
+    &check_key ("UNRESTRICTED", "none");
     &check_key ("TABLE", "");
     &check_key ("TITLE", "");
