From: Nick J. <nje...@us...> - 2002-02-01 03:50:29
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv25272 Modified Files: sandweb.cgi Log Message: * changed browse titlebar message to be lower case and removed the workd 'menu' from it. Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.144 retrieving revision 1.145 diff -U2 -r1.144 -r1.145 --- sandweb.cgi 2002/01/31 08:06:45 1.144 +++ sandweb.cgi 2002/02/01 03:50:26 1.145 @@ -257,7 +257,7 @@ print CGI::header; $ui->print_screen( - TITLE => 'SandWeb : Login', + TITLE => 'SandWeb : login', MENU_TITLE => 'SandWeb', - SUBMENU_TITLE => 'login menu', + SUBMENU_TITLE => 'login', FOOTER => '', CONTENT => $content, @@ -283,7 +283,7 @@ print CGI::header( -cookie => $ck_auth ); $ui->print_screen( - TITLE=> 'SandWeb : Main Menu', + TITLE=> 'SandWeb : main', MENU_TITLE => 'SandWeb', - SUBMENU_TITLE => 'main menu', + SUBMENU_TITLE => 'main', FOOTER => '', CONTENT => "hello " . $auth->get_userinfo('username'), @@ -318,7 +318,7 @@ print CGI::header( -cookie => $ck_auth ); $ui->print_screen( - TITLE=> 'SandWeb : Debug Menu', + TITLE=> 'SandWeb : debug', MENU_TITLE => 'SandWeb', - SUBMENU_TITLE => 'debug menu', + SUBMENU_TITLE => 'debug', FOOTER => '', CONTENT => $content, @@ -369,7 +369,7 @@ print CGI::header( -cookie => $ck_auth ); $ui->print_screen( - TITLE=> 'SandWeb : Sandbox Menu', + TITLE=> 'SandWeb : sandbox', MENU_TITLE => 'SandWeb', - SUBMENU_TITLE => 'sandbox menu', + SUBMENU_TITLE => 'sandbox', FOOTER => '', CONTENT => $content, @@ -461,7 +461,7 @@ print CGI::header( -cookie => $ck_auth ); $ui->print_screen( - TITLE=> 'SandWeb : Browse Module Menu', + TITLE=> 'SandWeb : browse module', MENU_TITLE => 'SandWeb', - SUBMENU_TITLE => 'browse module menu', + SUBMENU_TITLE => 'browse module', FOOTER => '', CONTENT => $content, @@ -619,5 +619,5 @@ print CGI::header( -cookie => $ck_auth ); $ui->print_screen( - TITLE=> 'SandWeb : View File', + TITLE=> 'SandWeb : view file', MENU_TITLE => 'SandWeb', SUBMENU_TITLE => 'view file', @@ -677,5 +677,5 @@ print CGI::header( -cookie => $ck_auth ); $ui->print_screen( - TITLE=> 'SandWeb : Edit File', + TITLE=> 'SandWeb : edit file', MENU_TITLE => 'SandWeb', SUBMENU_TITLE => 'edit file', @@ -706,5 +706,5 @@ print CGI::header( -cookie => $ck_auth ); $ui->print_screen( - TITLE=> 'SandWeb : Create File', + TITLE=> 'SandWeb : create file', MENU_TITLE => 'SandWeb', SUBMENU_TITLE => 'create file', @@ -733,5 +733,5 @@ print CGI::header( -cookie => $ck_auth ); $ui->print_screen( - TITLE => 'SandWeb : Create Folder', + TITLE => 'SandWeb : create folder', MENU_TITLE => 'SandWeb', SUBMENU_TITLE => 'create folder', @@ -772,5 +772,5 @@ print CGI::header( -cookie => $ck_auth ); $ui->print_screen( - TITLE=> 'SandWeb : Upload File', + TITLE=> 'SandWeb : upload file', MENU_TITLE => 'SandWeb', SUBMENU_TITLE => 'upload file', @@ -855,5 +855,5 @@ print CGI::header( -cookie => $ck_auth ); $ui->print_screen( - TITLE=> 'SandWeb : Checkout', + TITLE=> 'SandWeb : checkout file', MENU_TITLE => 'SandWeb', SUBMENU_TITLE => 'checkout file', @@ -905,5 +905,5 @@ print CGI::header( -cookie => $ck_auth ); $ui->print_screen( - TITLE=> 'SandWeb : Commit', + TITLE=> 'SandWeb : commit file(s)', MENU_TITLE => 'SandWeb', SUBMENU_TITLE => 'commit file(s)', @@ -971,7 +971,7 @@ print CGI::header( -cookie => $ck_auth ); $ui->print_screen( - TITLE=> 'SandWeb : Preferences Menu', + TITLE=> 'SandWeb : preferences', MENU_TITLE => 'SandWeb', - SUBMENU_TITLE => 'preferences menu', + SUBMENU_TITLE => 'preferences', FOOTER => '', CONTENT => $content, @@ -1040,7 +1040,7 @@ print CGI::header( -cookie => $ck_auth ); $ui->print_screen( - TITLE=> 'SandWeb : Repository Menu', + TITLE=> 'SandWeb : repository', MENU_TITLE => 'SandWeb', - SUBMENU_TITLE => 'repository menu', + SUBMENU_TITLE => 'repository', FOOTER => '', CONTENT => $content, @@ -1122,7 +1122,7 @@ print CGI::header( -cookie => $ck_auth ); $ui->print_screen( - TITLE=> 'SandWeb : Preferences Menu', + TITLE=> 'SandWeb : preferences', MENU_TITLE => 'SandWeb', - SUBMENU_TITLE => 'preferences menu', + SUBMENU_TITLE => 'preferences', FOOTER => '', CONTENT => $content, |