[LON-CAPA-cvs] cvs: loncom /interface loncommon.pm rat lonratedt.pm

albertel lon-capa-cvs@mail.lon-capa.org
Thu, 20 Jul 2006 04:17:55 -0000


albertel		Thu Jul 20 00:17:55 2006 EDT

  Modified files:              
    /rat	lonratedt.pm 
    /loncom/interface	loncommon.pm 
  Log:
  - adding location info in so you cans ee where you are and change it BUG#4774
  
  
Index: rat/lonratedt.pm
diff -u rat/lonratedt.pm:1.81 rat/lonratedt.pm:1.82
--- rat/lonratedt.pm:1.81	Mon Jun 26 18:47:35 2006
+++ rat/lonratedt.pm	Thu Jul 20 00:17:45 2006
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # Edit Handler for RAT Maps
 #
-# $Id: lonratedt.pm,v 1.81 2006/06/26 22:47:35 albertel Exp $
+# $Id: lonratedt.pm,v 1.82 2006/07/20 04:17:45 albertel Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -757,7 +757,7 @@
         }
         url += 'element=' + elementname + '';
         var title = 'Browser';
-        var options = 'scrollbars=1,resizable=1,menubar=0';
+        var options = 'scrollbars=1,resizable=1,menubar=0,toolbar=1,location=1';
         options += ',width=700,height=600';
         editbrowser = open(url,title,options,'1');
         editbrowser.focus();
Index: loncom/interface/loncommon.pm
diff -u loncom/interface/loncommon.pm:1.434 loncom/interface/loncommon.pm:1.435
--- loncom/interface/loncommon.pm:1.434	Wed Jul 19 07:30:36 2006
+++ loncom/interface/loncommon.pm	Thu Jul 20 00:17:55 2006
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # a pile of common routines
 #
-# $Id: loncommon.pm,v 1.434 2006/07/19 11:30:36 albertel Exp $
+# $Id: loncommon.pm,v 1.435 2006/07/20 04:17:55 albertel Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -285,7 +285,7 @@
 	}
         url += 'element=' + elementname + '';
         var title = 'Browser';
-        var options = 'scrollbars=1,resizable=1,menubar=1,location=1';
+        var options = 'scrollbars=1,resizable=1,menubar=0,toolbar=1,location=1';
         options += ',width=700,height=600';
         editbrowser = open(url,title,options,'1');
         editbrowser.focus();
@@ -306,7 +306,7 @@
 	}
         url += 'element=' + elementname + '';
         var title = 'Search';
-        var options = 'scrollbars=1,resizable=1,menubar=0';
+        var options = 'scrollbars=1,resizable=1,menubar=0,toolbar=1,location=1';
         options += ',width=700,height=600';
         editsearcher = open(url,title,options,'1');
         editsearcher.focus();