You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(28) |
Nov
(58) |
Dec
(85) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(125) |
Feb
(222) |
Mar
(274) |
Apr
(51) |
May
(22) |
Jun
(50) |
Jul
(15) |
Aug
(33) |
Sep
(11) |
Oct
(29) |
Nov
(17) |
Dec
(1) |
2003 |
Jan
(100) |
Feb
(21) |
Mar
(7) |
Apr
(45) |
May
|
Jun
(43) |
Jul
(27) |
Aug
(24) |
Sep
|
Oct
|
Nov
|
Dec
|
2004 |
Jan
(1) |
Feb
|
Mar
(13) |
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
(7) |
Sep
|
Oct
|
Nov
|
Dec
(4) |
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
From: Nick J. <nje...@us...> - 2002-01-31 05:50:38
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv30978/bin Modified Files: sandweb.cgi Log Message: * modified the menu layout again, turned repository stuff into it's own menu Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.141 retrieving revision 1.142 diff -U2 -r1.141 -r1.142 --- sandweb.cgi 2002/01/31 04:32:43 1.141 +++ sandweb.cgi 2002/01/31 05:50:34 1.142 @@ -209,6 +209,6 @@ ); } - elsif ( $action eq 'repository_settings_menu' ) { - repository_settings_menu( + elsif ( $action eq 'repository_menu' ) { + repository_menu( ck_auth => $ck_auth, ); @@ -277,8 +277,4 @@ exit 0; } - if (! load_prefs()) { - # no existing user config, forward to prefs menu - preferences_menu( ck_auth => $ck_auth ); - } $log->debug("auth cookie: '$ck_auth'"); @@ -984,5 +980,5 @@ } -sub repository_settings_menu { +sub repository_menu { my %args = @_; my $ck_auth = $args{'ck_auth'}; @@ -1033,5 +1029,5 @@ my $content = $ui->get_menu( - MENU => 'repository_settings', + MENU => 'repository', PROGNAME => $progname, LOOP_CONNECTION => \@loop_connection, @@ -1041,7 +1037,7 @@ print CGI::header( -cookie => $ck_auth ); $ui->print_screen( - TITLE=> 'SandWeb : Repository Settings Menu', + TITLE=> 'SandWeb : Repository Menu', MENU_TITLE => 'SandWeb', - SUBMENU_TITLE => 'repository settings menu', + SUBMENU_TITLE => 'repository menu', FOOTER => '', CONTENT => $content, @@ -1268,6 +1264,10 @@ set_error("unable to set authentication cookie: '$ck_auth'"); login_menu(); + } + if (! load_prefs()) { + # no existing user config, forward to prefs menu + preferences_menu( ck_auth => $ck_auth ); } - main_menu( ck_auth => $ck_auth ); + sandbox_menu( ck_auth => $ck_auth ); } else { @@ -1297,5 +1297,5 @@ } else { - $log->debug(shift); + $log->debug("ERROR: shift"); } return 1; |
From: Nick J. <nje...@us...> - 2002-01-31 05:50:37
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv30978/templates Modified Files: framework.html menu_bar.html sandbox.html Added Files: repository.html Log Message: * modified the menu layout again, turned repository stuff into it's own menu --- NEW FILE --- <form submit="<TMPL_VAR NAME=PROGNAME>"> <input type="hidden" name="action" value="preferences_menu" /> <table width="100%" align="center" border="0"> <tr> <td width="20%" align="right"> Name : </td> <td width="90%" align="left"> <input type="text" name="name" value="<TMPL_VAR NAME=NAME>" /> </td> </tr> <tr> <td width="20%" align="right"> Server Hostname : </td> <td width="90%" align="left"> <input type="text" name="server" value="<TMPL_VAR NAME=SERVER>" /> </td> </tr> <tr> <td width="20%" align="right"> Username : </td> <td width="90%" align="left"> <input type="text" name="name" value="<TMPL_VAR NAME=USERNAME>" /> </td> </tr> <tr> <td width="20%" align="right"> VCS Type : </td> <td width="90%" align="left"> <select name="repo_type"> <TMPL_LOOP NAME=LOOP_REPO_TYPE> <TMPL_VAR NAME=REPO_TYPE> </TMPL_LOOP> </td> </tr> <tr> <td width="20%" align="right"> Connection : </td> <td width="90%" align="left"> <select name="connection"> <TMPL_LOOP NAME=LOOP_CONNECTION> <TMPL_VAR NAME=CONNECTION> </TMPL_LOOP> </select> </td> </tr> <tr> <td width="20%" align="right"> Root : </td> <td width="90%" align="left"> <input type="text" name="root" value="<TMPL_VAR NAME=ROOT>" /> </td> <tr> </table> <table width="100%" align="center" border="0"> <td width="15%" align="center">   <br /> </td> <td width="10%" align="center"> <input type="submit" name="Submit" Value="Done" /> </td> <td width="75%" align="center">   <br /> </td> </tr> </table> </form> Index: framework.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/framework.html,v retrieving revision 1.9 retrieving revision 1.10 diff -U2 -r1.9 -r1.10 --- framework.html 2002/01/31 04:32:02 1.9 +++ framework.html 2002/01/31 05:50:34 1.10 @@ -23,8 +23,10 @@   <br /> </td> - <td width="40%" align="center"> + <td width="20%" align="right"> <font size="4"> - <b><TMPL_VAR NAME=MENU_TITLE></b> - </font> + <b><TMPL_VAR NAME=MENU_TITLE></b></font> + </td> + <td width="20%" align="left"> + : <TMPL_VAR NAME=SUBMENU_TITLE><br /> </td> <td width="30%"> @@ -33,5 +35,8 @@ </tr> <tr> - <td width="30%" valign="center" align="center" bgcolor="#000000"> + <td width="30%" align="center"> +   <br /> + </td> + <td width="40%" valign="center" align="center" bgcolor="#000000" colspan="2" <table border="0" width="100%" align="center"> <tr> @@ -42,7 +47,4 @@ </table> </td> - <td width="40%" align="center"> - <TMPL_VAR NAME=SUBMENU_TITLE><br /> - </td> <td width="30%">   <br/> @@ -72,4 +74,9 @@ <tr> <td width="100%" align="left"> + <TMPL_VAR NAME=FOOTER><br /> + </td> + </tr> + <tr> + <td width="100%" align="left"> <font color="#336633"> <TMPL_LOOP NAME="DEBUG"> @@ -78,9 +85,4 @@ </font> </td> - </tr> - <tr> - <td width="100%" align="left"> - <TMPL_VAR NAME=FOOTER><br /> - </td> </tr> </table> Index: menu_bar.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/menu_bar.html,v retrieving revision 1.10 retrieving revision 1.11 diff -U2 -r1.10 -r1.11 --- menu_bar.html 2002/01/31 04:32:02 1.10 +++ menu_bar.html 2002/01/31 05:50:34 1.11 @@ -3,5 +3,8 @@ <a href="<TMPL_VAR NAME=CGI_PATH>/<TMPL_VAR NAME=CGI_EXEC>?action=sandbox_menu">sandbox</a> -  |   <a href="<TMPL_VAR NAME=CGI_PATH>/<TMPL_VAR NAME=CGI_EXEC>?action=preferences_menu">prefs</a> -  |   <a href="<TMPL_VAR NAME=CGI_PATH>/<TMPL_VAR NAME=CGI_EXEC>?action=logout">logout</a><br /> +  <b>|</b>   <a href="<TMPL_VAR NAME=CGI_PATH>/<TMPL_VAR NAME=CGI_EXEC>?action=repository_menu">repository</a> + +  <b>|</b>   <a href="<TMPL_VAR NAME=CGI_PATH>/<TMPL_VAR NAME=CGI_EXEC>?action=preferences_menu">prefs</a> + +  <b>|</b>   <a href="<TMPL_VAR NAME=CGI_PATH>/<TMPL_VAR NAME=CGI_EXEC>?action=logout">logout</a><br /> Index: sandbox.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/sandbox.html,v retrieving revision 1.1 retrieving revision 1.2 diff -U2 -r1.1 -r1.2 --- sandbox.html 2002/01/31 04:32:02 1.1 +++ sandbox.html 2002/01/31 05:50:34 1.2 @@ -3,5 +3,5 @@ <table width="100%" align="left" border="0"> <tr> - <td width="100%" align="center"> +<!-- <td width="100%" align="center" colspan="2"> <table width="100%" align="left" border="0"> <tr> @@ -13,24 +13,17 @@ </td> </tr> - <tr> - <td width="80%" align="center" bgcolor="#CCCCCC"> - <a href="<TMPL_VAR NAME=PROGNAME>?action=module_checkout_menu">checkout a module</a> -   |   - <a href="<TMPL_VAR NAME=PROGNAME>?action=repository_settings_menu&repository_name=new">add a new repository</a> - </td> - <td width="20%" align="center"> -   - </td> - </tr> - </td> - </table> + </table> + </td> --> </tr> <tr> - <td width="100%" align="left"> - <TMPL_VAR NAME="NO_MODULES"><br> + <td width="80%" align="left"> + <TMPL_VAR NAME="NO_MODULES"><br /> + </td> + <td width="20%" align="center"> + [<a href="<TMPL_VAR NAME=PROGNAME>?action=module_checkout_menu">checkout a module</a>] </td> </tr> <tr> - <td width="100%" align="left"> + <td width="100%" align="left" colspan="2"> <table width="100%" align="left" border="1"> <tr> |
From: Nick J. <nje...@us...> - 2002-01-31 04:32:46
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv32192 Modified Files: sandweb.cgi Log Message: * made changes to move browse menu to sandbox menu Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.140 retrieving revision 1.141 diff -U2 -r1.140 -r1.141 --- sandweb.cgi 2002/01/29 22:13:50 1.140 +++ sandweb.cgi 2002/01/31 04:32:43 1.141 @@ -126,5 +126,5 @@ logout(); } - elsif ( $action eq 'browse_menu' ) { + elsif ( $action eq 'sandbox_menu' ) { # called sandbox viewer my $location = CGI::param('location'); @@ -132,5 +132,5 @@ $location = ""; } - browse_menu( + sandbox_menu( ck_auth => $ck_auth, location => $location, @@ -296,4 +296,11 @@ } +#put sword bag +#take flail bag +#wield flail +#take meat corpse +#look fido +#kill fido + # debug menu, dump all config objects sub debug_menu { @@ -324,8 +331,8 @@ } -# browse menu +# sandbox menu # -# main menu to browse section. -sub browse_menu { +# main menu to do stuff with sandbox section. +sub sandbox_menu { my %args = @_; my $ck_auth = $args{'ck_auth'}; @@ -334,5 +341,5 @@ my @module_loop = (); - $log->debug("entering browse_menu()"); + $log->debug("entering sandbox_menu()"); unless ($ck_auth) { &login_menu(); @@ -356,5 +363,5 @@ my $content = $ui->get_menu( - MENU => 'browse', + MENU => 'sandbox', PROGNAME => "$progname", NO_MODULES => ($no_modules) ? "No exisiting modules.\n" : "", @@ -365,7 +372,7 @@ print CGI::header( -cookie => $ck_auth ); $ui->print_screen( - TITLE=> 'SandWeb : Browse Menu', + TITLE=> 'SandWeb : Sandbox Menu', MENU_TITLE => 'SandWeb', - SUBMENU_TITLE => 'browse menu', + SUBMENU_TITLE => 'sandbox menu', FOOTER => '', CONTENT => $content, |
From: Nick J. <nje...@us...> - 2002-01-31 04:32:05
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv31576 Modified Files: framework.html menu_bar.html Added Files: sandbox.html Removed Files: browse.html Log Message: * heavily modified the UI, took out the left menu and replaced it with small little control menu. * renamed browse menu to sandbox menu, and made applicable changes --- NEW FILE --- <form submit="<TMPL_VAR NAME=PROGNAME>"> <input type="hidden" name="action" value="browse_menu" /> <table width="100%" align="left" border="0"> <tr> <td width="100%" align="center"> <table width="100%" align="left" border="0"> <tr> <td width="90%" align="center"> <b>Please select a module to browse.</b><br> </td> <td width="10%" align="center">   </td> </tr> <tr> <td width="80%" align="center" bgcolor="#CCCCCC"> <a href="<TMPL_VAR NAME=PROGNAME>?action=module_checkout_menu">checkout a module</a>   |   <a href="<TMPL_VAR NAME=PROGNAME>?action=repository_settings_menu&repository_name=new">add a new repository</a> </td> <td width="20%" align="center">   </td> </tr> </td> </table> </tr> <tr> <td width="100%" align="left"> <TMPL_VAR NAME="NO_MODULES"><br> </td> </tr> <tr> <td width="100%" align="left"> <table width="100%" align="left" border="1"> <tr> <td width="20%" align="center" bgcolor="#CCCCCC"> Module Name </td> <td width="40%" align="center" bgcolor="#CCCCCC"> Description </td> <td width="25%" align="center" bgcolor="#CCCCCC"> Repository </td> <td width="15%" align="center" bgcolor="#CCCCCC"> Function </td> </tr> <TMPL_LOOP NAME="MODULE_LOOP"> <tr> <td width="20%" align="left">   <a href="<TMPL_VAR NAME=PROGNAME>?action=browse_module_menu&module_name=<TMPL_VAR NAME="MODULE_NAME">"><TMPL_VAR NAME="MODULE_NAME"></a> </td> <td width="40%" align="left">   <TMPL_VAR NAME="MODULE_DESC"> </td> <td width="25%" align="center"> <TMPL_VAR NAME="REPOSITORY"> </td> <td width="15%" align="center">   <font size="2">[<a href="<TMPL_VAR NAME=PROGNAME>?action=module_delete_menu&module_name=<TMPL_VAR NAME="MODULE_NAME">">delete</a>]</font> </td> </tr> </TMPL_LOOP> </table> </td> </tr> </table> </form> Index: framework.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/framework.html,v retrieving revision 1.8 retrieving revision 1.9 diff -U2 -r1.8 -r1.9 --- framework.html 2002/01/27 01:26:40 1.8 +++ framework.html 2002/01/31 04:32:02 1.9 @@ -7,37 +7,60 @@ <title><TMPL_VAR NAME=TITLE></title> </head> - <body bgcolor="#EEEEEE" link="#5566CC" vlink="#5566CC"> - <table border="0" align="center" width="100%" cellpadding="0" cellspacing="0"> + <style> + <!-- + A:hover{color:#DD6644;} + A:link{text-decoration: none} + A:visited{text-decoration:none} + --> + </style> + <body bgcolor="#EEEEEE" link="#3344AA" vlink="#3344AA"> + <table border="0" align="center" width="100%" cellpadding="4" cellspacing="0"> <tr> - <td width="100%" align="center" colspan="2"> - <font size="4"> - <b><TMPL_VAR NAME=MENU_TITLE></b> - </font> - <br /> - <TMPL_VAR NAME=SUBMENU_TITLE><br /> - </td> - </tr> - <tr> - <td width="12%" valign="top" align="center" bgcolor="#CCCCCC"> - <table width="100%" align="center" cellspacing="4"> - <TMPL_VAR NAME=MENU_BAR><br /> + <td width="100%" align="center"> + <table width="100%" border="0"> + <tr> + <td width="30%"> +   <br /> + </td> + <td width="40%" align="center"> + <font size="4"> + <b><TMPL_VAR NAME=MENU_TITLE></b> + </font> + </td> + <td width="30%"> +   <br /> + </td> + </tr> + <tr> + <td width="30%" valign="center" align="center" bgcolor="#000000"> + <table border="0" width="100%" align="center"> + <tr> + <td width="100%" align="center" bgcolor="#CCDDCC"> + <TMPL_VAR NAME=MENU_BAR> + </td> + </tr> + </table> + </td> + <td width="40%" align="center"> + <TMPL_VAR NAME=SUBMENU_TITLE><br /> + </td> + <td width="30%"> +   <br/> + </td> + </tr> </table> </td> - <td width="88%" align="left" valign="top"> - <table width="100%" border="0" align="center"> + </tr> + <tr> + <td width="100%" align="center"> + <table width="100%" border="0" align="center" valign="top"> <tr> - <td width="5%" align="center"> -   <br /> - </td> - <td width="95%" align="left" valign="center"> + <td width="100%" align="left" valign="center"> <font color="#EE6666"><TMPL_VAR NAME=ERROR></font><br /> </td> </tr> <tr> - <td width="5%" align="center"> -   <br /> - </td> - <td width="95%" align="left" valign="top"> - <table width="100%" align="center" v> + <td width="100%" align="left" valign="top"> + <table width="100%" align="left" valign="top"> <TMPL_VAR NAME=CONTENT><br /> </table> @@ -48,5 +71,5 @@ </tr> <tr> - <td width="100%" align="left" colspan="2"> + <td width="100%" align="left"> <font color="#336633"> <TMPL_LOOP NAME="DEBUG"> @@ -57,5 +80,5 @@ </tr> <tr> - <td width="100%" align="center" colspan="2"> + <td width="100%" align="left"> <TMPL_VAR NAME=FOOTER><br /> </td> Index: menu_bar.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/menu_bar.html,v retrieving revision 1.9 retrieving revision 1.10 diff -U2 -r1.9 -r1.10 --- menu_bar.html 2001/09/28 19:03:59 1.9 +++ menu_bar.html 2002/01/31 04:32:02 1.10 @@ -1,8 +1,7 @@ -  <br /> -<a href="<TMPL_VAR NAME=CGI_PATH>/<TMPL_VAR NAME=CGI_EXEC>?action=main_menu">main</a><br /> -<a href="<TMPL_VAR NAME=CGI_PATH>/<TMPL_VAR NAME=CGI_EXEC>?action=debug_menu">debug</a><br /> -<a href="<TMPL_VAR NAME=CGI_PATH>/<TMPL_VAR NAME=CGI_EXEC>?action=browse_menu">browse</a><br /> -<a href="<TMPL_VAR NAME=CGI_PATH>/<TMPL_VAR NAME=CGI_EXEC>?action=preferences_menu">preferences</a><br /> - <br /> - <br /> -<a href="<TMPL_VAR NAME=CGI_PATH>/<TMPL_VAR NAME=CGI_EXEC>?action=logout">logout</a><br /> +<!--   <br /> <a href="<TMPL_VAR NAME=CGI_PATH>/<TMPL_VAR NAME=CGI_EXEC>?action=main_menu">main</a><br /> --> +<!-- <b><a href="<TMPL_VAR NAME=CGI_PATH>/<TMPL_VAR NAME=CGI_EXEC>?action=debug_menu">debug</a></b>   |   --> + +<a href="<TMPL_VAR NAME=CGI_PATH>/<TMPL_VAR NAME=CGI_EXEC>?action=sandbox_menu">sandbox</a> +  |   <a href="<TMPL_VAR NAME=CGI_PATH>/<TMPL_VAR NAME=CGI_EXEC>?action=preferences_menu">prefs</a> + +  |   <a href="<TMPL_VAR NAME=CGI_PATH>/<TMPL_VAR NAME=CGI_EXEC>?action=logout">logout</a><br /> --- browse.html DELETED --- |
From: Rob H. <for...@us...> - 2002-01-30 05:10:42
|
Update of /cvsroot/sandweb/sandweb/doc In directory usw-pr-cvs1:/tmp/cvs-serv26580/doc Modified Files: dependencies.list Log Message: er, this probably meant "perl 5.6" not "perl 6" :) Index: dependencies.list =================================================================== RCS file: /cvsroot/sandweb/sandweb/doc/dependencies.list,v retrieving revision 1.2 retrieving revision 1.3 diff -U2 -r1.2 -r1.3 --- dependencies.list 2002/01/29 21:52:45 1.2 +++ dependencies.list 2002/01/30 05:10:38 1.3 @@ -1,5 +1,5 @@ Sandweb has the following dependencies. -* perl 6 +* perl 5.6 perl modules: |
From: Rob H. <for...@us...> - 2002-01-29 22:13:53
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv29135 Modified Files: sandweb.cgi Log Message: should be "browse module menu" not "browse repository menu" Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.139 retrieving revision 1.140 diff -U2 -r1.139 -r1.140 --- sandweb.cgi 2002/01/29 06:18:40 1.139 +++ sandweb.cgi 2002/01/29 22:13:50 1.140 @@ -457,7 +457,7 @@ print CGI::header( -cookie => $ck_auth ); $ui->print_screen( - TITLE=> 'SandWeb : Browse Repository Menu', + TITLE=> 'SandWeb : Browse Module Menu', MENU_TITLE => 'SandWeb', - SUBMENU_TITLE => 'browse repository menu', + SUBMENU_TITLE => 'browse module menu', FOOTER => '', CONTENT => $content, |
From: Nick J. <nje...@us...> - 2002-01-29 21:52:49
|
Update of /cvsroot/sandweb/sandweb/ext_mods In directory usw-pr-cvs1:/tmp/cvs-serv20581/ext_mods Removed Files: modules.txt Log Message: * removing ext_mods/modules.txt because theres already a docs/dependencies.list which I've updated to include version info. --- modules.txt DELETED --- |
From: Nick J. <nje...@us...> - 2002-01-29 21:52:49
|
Update of /cvsroot/sandweb/sandweb/doc In directory usw-pr-cvs1:/tmp/cvs-serv20581/doc Modified Files: dependencies.list Log Message: * removing ext_mods/modules.txt because theres already a docs/dependencies.list which I've updated to include version info. Index: dependencies.list =================================================================== RCS file: /cvsroot/sandweb/sandweb/doc/dependencies.list,v retrieving revision 1.1 retrieving revision 1.2 diff -U2 -r1.1 -r1.2 --- dependencies.list 2001/12/21 22:13:50 1.1 +++ dependencies.list 2002/01/29 21:52:45 1.2 @@ -1,9 +1,10 @@ -Sandweb requires the following dependencies. +Sandweb has the following dependencies. -- perl modules: +* perl 6 - expat - XML::Parser - XML::Simple - HTML::Template +perl modules: +* expat (v1.95.1+) +* XML::Parser (v2.30+) +* XML::Simple (v1.05+) +* HTML::Template (v2.2+) |
From: Rob H. <for...@us...> - 2002-01-29 06:22:37
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv15918 Modified Files: browse_module.html Log Message: improved UI a teeny bit Index: browse_module.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/browse_module.html,v retrieving revision 1.3 retrieving revision 1.4 diff -U2 -r1.3 -r1.4 --- browse_module.html 2002/01/29 01:32:28 1.3 +++ browse_module.html 2002/01/29 06:22:35 1.4 @@ -36,6 +36,4 @@ <input type="submit" name="action" value="vcsaction" /> </td> - <td width="50%" align="center" bgcolor="#AAAAAA"> - </td> </tr> </table> |
From: Rob H. <for...@us...> - 2002-01-29 06:18:42
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv15501 Modified Files: sandweb.cgi Log Message: removing redundant line Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.138 retrieving revision 1.139 diff -U2 -r1.138 -r1.139 --- sandweb.cgi 2002/01/29 06:16:58 1.138 +++ sandweb.cgi 2002/01/29 06:18:40 1.139 @@ -985,5 +985,4 @@ } - #load_prefs(1); # load prefs and do not log error msg my $username = $auth->get_userinfo('username'); my $users_dir = $config->{'paths'}->{'users_dir'}; |
From: Rob H. <for...@us...> - 2002-01-29 06:17:02
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv15260 Modified Files: sandweb.cgi Log Message: repository_settings_menu now creates a Repository object so it can figure out what kind of repositories and connection types that we can accept Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.137 retrieving revision 1.138 diff -U2 -r1.137 -r1.138 --- sandweb.cgi 2002/01/29 04:29:33 1.137 +++ sandweb.cgi 2002/01/29 06:16:58 1.138 @@ -985,7 +985,50 @@ } + #load_prefs(1); # load prefs and do not log error msg + my $username = $auth->get_userinfo('username'); + my $users_dir = $config->{'paths'}->{'users_dir'}; + my $repo_type = $userprefs->{'repository'}->{'repo_type'}; + my $connection = $userprefs->{'repository'}->{'connection'}; + my $vcsroot; + + my $repository = SandWeb::Repository->new( + root => "", + repo_type => "", + sandbox => "$users_dir/$username", + ); + + my @connections = $repository->get_connections(); + my @repo_types = $repository->get_repo_types(); + + my @loop_connection = (); + my @loop_repo_type = (); + + foreach my $connection_loop (@connections) { + my %row_data; + if ($connection_loop eq $connection) { + $row_data{CONNECTION} = "<option selected>$connection_loop</option>"; + } + else { + $row_data{CONNECTION} = "<option>$connection_loop</option>"; + } + push (@loop_connection, \%row_data); + } + + foreach my $repo_type_loop (@repo_types) { + my %row_data; + if ($repo_type_loop eq $repo_type) { + $row_data{REPO_TYPE} = "<option selected>$repo_type_loop</option>"; + } + else { + $row_data{REPO_TYPE} = "<option>$repo_type_loop</option>"; + } + push (@loop_repo_type, \%row_data); + } + my $content = $ui->get_menu( MENU => 'repository_settings', PROGNAME => $progname, + LOOP_CONNECTION => \@loop_connection, + LOOP_REPO_TYPE => \@loop_repo_type, ); @@ -1037,5 +1080,5 @@ my @loop_connection = (); - my @loop_repo_type= (); + my @loop_repo_type = (); foreach my $connection_loop (@connections) { |
From: Rob H. <for...@us...> - 2002-01-29 04:29:45
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv27496 Modified Files: sandweb.cgi Log Message: oops, didn't test this enough apparently.. now file commands should work properly Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.136 retrieving revision 1.137 diff -U2 -r1.136 -r1.137 --- sandweb.cgi 2002/01/29 04:17:20 1.136 +++ sandweb.cgi 2002/01/29 04:29:33 1.137 @@ -151,8 +151,14 @@ # called file manipulator my @filename = (); + my $file_command; + if ( CGI::param('action_file') ) { + $file_command = CGI::param('action_file'); + } else { + $file_command = CGI::param('file_command'); + } @filename = CGI::param('filename'), file( ck_auth => $ck_auth, - => CGI::param('action_file'), + file_command => $file_command, filename => \@filename, location => CGI::param('location'), |
From: Rob H. <for...@us...> - 2002-01-29 04:17:25
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv25228/templates Modified Files: checkout.html Log Message: moved checkout command to vcsaction ( it was put in file from a _long_ time ago ;) and updated the template a bit. Put a test entry in there. The UI isn't very sweet, but it's there. Index: checkout.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/checkout.html,v retrieving revision 1.6 retrieving revision 1.7 diff -U2 -r1.6 -r1.7 --- checkout.html 2002/01/28 19:53:29 1.6 +++ checkout.html 2002/01/29 04:17:22 1.7 @@ -1,6 +1,7 @@ -<center> - Please enter module name to checkout to <TMPL_VAR NAME=LOCATION>: + Please enter module name to checkout from repository <select><option>My First Repo(tm)</option></select>: + <br /> <br /> <form submit="<TMPL_VAR NAME=PROGNAME>"> <input type="hidden" name="action" value="vcsaction" /> + <input type="hidden" name="location" value="<TMPL_VAR NAME=LOCATION>" /> <input type="hidden" name="vcs_command" value="checkout" /> <input name="fullpath" value="<TMPL_VAR NAME=FULLPATH>" type="hidden" /> @@ -9,3 +10,2 @@ <TMPL_VAR NAME=ERROR> </form> -</center> |
From: Rob H. <for...@us...> - 2002-01-29 04:17:24
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv25228/bin Modified Files: sandweb.cgi Log Message: moved checkout command to vcsaction ( it was put in file from a _long_ time ago ;) and updated the template a bit. Put a test entry in there. The UI isn't very sweet, but it's there. Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.135 retrieving revision 1.136 diff -U2 -r1.135 -r1.136 --- sandweb.cgi 2002/01/29 04:05:50 1.135 +++ sandweb.cgi 2002/01/29 04:17:20 1.136 @@ -154,5 +154,5 @@ file( ck_auth => $ck_auth, - file_command => CGI::param('action_file'), + => CGI::param('action_file'), filename => \@filename, location => CGI::param('location'), @@ -197,4 +197,10 @@ ); } + elsif ( $action eq 'module_checkout_menu' ) { + vcsaction( + ck_auth => $ck_auth, + vcs_command => 'checkout', + ); + } elsif ( $action eq 'repository_settings_menu' ) { repository_settings_menu( @@ -765,22 +771,4 @@ exit 0; } - elsif ( $file_command eq 'checkout' ) { - my $content = $ui->get_menu( - MENU => 'checkout', - LOCATION => $location, - PROGNAME => $progname, - FULLPATH => "$users_dir/$username/$location", - ); - print CGI::header( -cookie => $ck_auth ); - $ui->print_screen( - TITLE=> 'SandWeb : Checkout', - MENU_TITLE => 'SandWeb', - SUBMENU_TITLE => 'checkout file', - FOOTER => '', - CONTENT => $content, - ERROR => $error, - ); - exit 0; - } elsif ( $file_command eq 'download' ) { $file->download(); @@ -848,5 +836,23 @@ sandbox => "$users_dir/$username", ); - if ( $vcs_command eq 'commit' ) { + if ( $vcs_command eq 'checkout' ) { + my $content = $ui->get_menu( + MENU => 'checkout', + LOCATION => $location, + PROGNAME => $progname, + FULLPATH => "$users_dir/$username/$location", + ); + print CGI::header( -cookie => $ck_auth ); + $ui->print_screen( + TITLE=> 'SandWeb : Checkout', + MENU_TITLE => 'SandWeb', + SUBMENU_TITLE => 'checkout file', + FOOTER => '', + CONTENT => $content, + ERROR => $error, + ); + exit 0; + } + elsif ( $vcs_command eq 'commit' ) { if ($message) { # can't give the leading / to the VCS |
From: Rob H. <for...@us...> - 2002-01-29 04:05:56
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv22480 Modified Files: sandweb.cgi Log Message: added repository_settings_menu note: this just displays the template. Nothing else! :) Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.134 retrieving revision 1.135 diff -U2 -r1.134 -r1.135 --- sandweb.cgi 2002/01/29 01:32:27 1.134 +++ sandweb.cgi 2002/01/29 04:05:50 1.135 @@ -197,4 +197,9 @@ ); } + elsif ( $action eq 'repository_settings_menu' ) { + repository_settings_menu( + ck_auth => $ck_auth, + ); + } else { # called an invalid page @@ -959,4 +964,29 @@ exit 0; } + +sub repository_settings_menu { + my %args = @_; + my $ck_auth = $args{'ck_auth'}; + unless ($ck_auth) { + &login_menu(); + exit 0; + } + + my $content = $ui->get_menu( + MENU => 'repository_settings', + PROGNAME => $progname, + ); + + print CGI::header( -cookie => $ck_auth ); + $ui->print_screen( + TITLE=> 'SandWeb : Repository Settings Menu', + MENU_TITLE => 'SandWeb', + SUBMENU_TITLE => 'repository settings menu', + FOOTER => '', + CONTENT => $content, + ERROR => $error, + ); + exit 0; +} sub vcs_prefs_menu { |
From: Rob H. <for...@us...> - 2002-01-29 01:32:31
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv24638/templates Modified Files: browse_module.html Log Message: file actions are now implemented as a toolbar instead of a pulldown Index: browse_module.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/browse_module.html,v retrieving revision 1.2 retrieving revision 1.3 diff -U2 -r1.2 -r1.3 --- browse_module.html 2002/01/28 19:53:29 1.2 +++ browse_module.html 2002/01/29 01:32:28 1.3 @@ -19,4 +19,11 @@ <table border="0" width="100%" cellspacing="2" cellpadding="2"> <tr> + <input type="submit" name="action_file" value="create_file" /> + <input type="submit" name="action_file" value="create_folder" /> + <input type="submit" name="action_file" value="remove" /> + <input type="submit" name="action_file" value="rename" /> + <input type="submit" name="action_file" value="upload" /> + </tr> + <tr> <td width="50%" align="center" bgcolor="#AAAAAA"> <select name="vcs_command"> @@ -30,12 +37,4 @@ </td> <td width="50%" align="center" bgcolor="#AAAAAA"> - <select name="file_command"> - <option></option> - <TMPL_LOOP NAME="FILE_CMD_LOOP"> - <option><TMPL_VAR NAME="FILE_CMD"></option> - </TMPL_LOOP> - </select> -       - <input type="submit" name="action" value="file" /> </td> </tr> |
From: Rob H. <for...@us...> - 2002-01-29 01:32:30
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv24638/bin Modified Files: sandweb.cgi Log Message: file actions are now implemented as a toolbar instead of a pulldown Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.133 retrieving revision 1.134 diff -U2 -r1.133 -r1.134 --- sandweb.cgi 2002/01/28 19:11:33 1.133 +++ sandweb.cgi 2002/01/29 01:32:27 1.134 @@ -59,4 +59,9 @@ my $action = CGI::param('action'); + # catch file-specific actions + if ( CGI::param('action_file') ) { + $action = 'file'; + } + if ($action eq 'login') { # attempting login @@ -149,5 +154,5 @@ file( ck_auth => $ck_auth, - file_command => CGI::param('file_command'), + file_command => CGI::param('action_file'), filename => \@filename, location => CGI::param('location'), |
From: Rob H. <for...@us...> - 2002-01-29 01:32:30
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb In directory usw-pr-cvs1:/tmp/cvs-serv24638/lib/SandWeb Modified Files: Browse.pm Log Message: file actions are now implemented as a toolbar instead of a pulldown Index: Browse.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Browse.pm,v retrieving revision 1.36 retrieving revision 1.37 diff -U2 -r1.36 -r1.37 --- Browse.pm 2002/01/28 20:24:42 1.36 +++ Browse.pm 2002/01/29 01:32:27 1.37 @@ -196,13 +196,4 @@ $content->param( VCS_CMD_LOOP => \@loop_data ); - @loop_data = (); - - foreach my $file_command (@file_commands) { - my %row_data; - $row_data{FILE_CMD} = "$file_command"; - push (@loop_data, \%row_data); - } - $content->param( FILE_CMD_LOOP => \@loop_data ); - return $content->output; } |
From: Rob H. <for...@us...> - 2002-01-29 01:32:30
|
Update of /cvsroot/sandweb/sandweb/etc In directory usw-pr-cvs1:/tmp/cvs-serv24638/etc Modified Files: sandweb.cfg Log Message: file actions are now implemented as a toolbar instead of a pulldown Index: sandweb.cfg =================================================================== RCS file: /cvsroot/sandweb/sandweb/etc/sandweb.cfg,v retrieving revision 1.14 retrieving revision 1.15 diff -U2 -r1.14 -r1.15 --- sandweb.cfg 2002/01/27 00:10:21 1.14 +++ sandweb.cfg 2002/01/29 01:32:27 1.15 @@ -30,5 +30,5 @@ /> - <webserver mime-types_location="/etc/apache/conf" + <webserver mime-types_location="/usr/local/apache/conf" mime-types_file="mime.types" /> |
From: Rob H. <for...@us...> - 2002-01-28 20:24:44
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb In directory usw-pr-cvs1:/tmp/cvs-serv4995/lib/SandWeb Modified Files: Browse.pm Log Message: spaces were getting inserted into the location link for links that go three or more directories deep.. fixed Index: Browse.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Browse.pm,v retrieving revision 1.35 retrieving revision 1.36 diff -U2 -r1.35 -r1.36 --- Browse.pm 2002/01/27 01:48:04 1.35 +++ Browse.pm 2002/01/28 20:24:42 1.36 @@ -83,4 +83,6 @@ $row_data{LOCATION_LINK} = "$link"; my $data = join(" ", @location_full); + $data =~ s/\ /$1/; + if ($location_link[$count]) { push (@location_full, "/$location_link[$count]"); @@ -91,4 +93,5 @@ $count++; } + $content->param( PROGNAME => $progname, |
From: Rob H. <for...@us...> - 2002-01-28 20:00:10
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb In directory usw-pr-cvs1:/tmp/cvs-serv28222 Modified Files: File.pm Log Message: folders were being created with wonky perms Index: File.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/File.pm,v retrieving revision 1.37 retrieving revision 1.38 diff -U2 -r1.37 -r1.38 --- File.pm 2002/01/26 22:22:10 1.37 +++ File.pm 2002/01/28 20:00:06 1.38 @@ -205,5 +205,5 @@ $log->debug("creating folder : $location/$filename"); - if (mkdir( "$location/$filename", "0336" )) { + if (mkdir( "$location/$filename" )) { $return = 1; } else { |
From: Rob H. <for...@us...> - 2002-01-28 19:53:33
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv24013 Modified Files: browse_module.html checkout.html commit.html create_file.html create_folder.html edit_file.html tag.html upload_file.html vcs_output.html view_file.html Log Message: hidden input field "TMPL_VAR NAME=LOCATION" was not specified in the create_f*.html files. also, I removed all references of "TMPL_VAR NAME=MENU", since it's not going to be used ( cookies will be used instead ) and it doesn't do anything anyway :P Index: browse_module.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/browse_module.html,v retrieving revision 1.1 retrieving revision 1.2 diff -U2 -r1.1 -r1.2 --- browse_module.html 2002/01/27 01:48:04 1.1 +++ browse_module.html 2002/01/28 19:53:29 1.2 @@ -13,5 +13,4 @@ <table width="100%" border="0" cellspacing="0" cellpadding="2"> <form method="get" submit="<TMPL_VAR NAME=PROGNAME>" name="browse"> - <input type="hidden" name="menu" value="<TMPL_VAR NAME=MENU>" /> <input type="hidden" name="location" value="<TMPL_VAR NAME=LOCATION>" /> Index: checkout.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/checkout.html,v retrieving revision 1.5 retrieving revision 1.6 diff -U2 -r1.5 -r1.6 --- checkout.html 2002/01/27 00:04:22 1.5 +++ checkout.html 2002/01/28 19:53:29 1.6 @@ -4,5 +4,4 @@ <input type="hidden" name="action" value="vcsaction" /> <input type="hidden" name="vcs_command" value="checkout" /> - <input type="hidden" name="menu" value="<TMPL_VAR NAME=MENU>" /> <input name="fullpath" value="<TMPL_VAR NAME=FULLPATH>" type="hidden" /> <input type="text" name="filename" /> Index: commit.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/commit.html,v retrieving revision 1.5 retrieving revision 1.6 diff -U2 -r1.5 -r1.6 --- commit.html 2002/01/27 00:04:22 1.5 +++ commit.html 2002/01/28 19:53:29 1.6 @@ -4,5 +4,4 @@ <input type="hidden" name="action" value="vcsaction" /> <input type="hidden" name="vcs_command" value="commit" /> - <input type="hidden" name="menu" value="<TMPL_VAR NAME=MENU>" /> <input type="hidden" name="filename" value="<TMPL_VAR NAME=FILENAME>" /> <input type="hidden" name="location" value="<TMPL_VAR NAME=LOCATION>" /> Index: create_file.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/create_file.html,v retrieving revision 1.6 retrieving revision 1.7 diff -U2 -r1.6 -r1.7 --- create_file.html 2002/01/28 19:42:37 1.6 +++ create_file.html 2002/01/28 19:53:29 1.7 @@ -2,5 +2,5 @@ <input name="action" value="file" type="hidden" /> <input name="file_command" value="create_file" type="hidden" /> -<input name="menu" value="<TMPL_VAR NAME=MENU>" type="hidden" /> +<input name="location" value="<TMPL_VAR NAME=LOCATION>" type="hidden" /> <input name="fullpath" value="<TMPL_VAR NAME=FULLPATH>" type="hidden" /> Current location: Index: create_folder.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/create_folder.html,v retrieving revision 1.5 retrieving revision 1.6 diff -U2 -r1.5 -r1.6 --- create_folder.html 2002/01/28 19:42:37 1.5 +++ create_folder.html 2002/01/28 19:53:29 1.6 @@ -2,5 +2,5 @@ <input name="action" value="file" type="hidden" /> <input name="file_command" value="create_folder" type="hidden" /> -<input name="menu" value="<TMPL_VAR NAME=MENU>" type="hidden" /> +<input name="location" value="<TMPL_VAR NAME=LOCATION>" type="hidden" /> <input name="fullpath" value="<TMPL_VAR NAME=FULLPATH>" type="hidden" /> Current location: Index: edit_file.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/edit_file.html,v retrieving revision 1.16 retrieving revision 1.17 diff -U2 -r1.16 -r1.17 --- edit_file.html 2002/01/27 01:48:04 1.16 +++ edit_file.html 2002/01/28 19:53:29 1.17 @@ -8,5 +8,4 @@ <input name="action" value="file" type="hidden" /> <input name="file_command" value="edit" type="hidden" /> - <input type="hidden" name="menu" value="<TMPL_VAR NAME=MENU>" /> <input name="location" value="<TMPL_VAR NAME=LOCATION>" type="hidden" /> <input name="fullpath" value="<TMPL_VAR NAME=FULLPATH>" type="hidden" /> Index: tag.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/tag.html,v retrieving revision 1.2 retrieving revision 1.3 diff -U2 -r1.2 -r1.3 --- tag.html 2002/01/27 00:04:22 1.2 +++ tag.html 2002/01/28 19:53:29 1.3 @@ -3,5 +3,4 @@ <form submit="<TMPL_VAR NAME=FILENAME>" type="get"> <input type="hidden" name="action" value="tag" /> - <input type="hidden" name="menu" value="<TMPL_VAR NAME=MENU>" /> <input type="hidden" name="filename" value="<TMPL_VAR NAME=FILENAME>" /> <input type="hidden" name="location" value="<TMPL_VAR NAME=LOCATION>" /> Index: upload_file.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/upload_file.html,v retrieving revision 1.5 retrieving revision 1.6 diff -U2 -r1.5 -r1.6 --- upload_file.html 2002/01/28 19:38:30 1.5 +++ upload_file.html 2002/01/28 19:53:29 1.6 @@ -3,5 +3,4 @@ <input name="action" value="file" type="hidden" /> <input name="file_command" value="upload" type="hidden" /> -<input type="hidden" name="menu" value="<TMPL_VAR NAME=MENU>" /> <input name="location" value="<TMPL_VAR NAME=LOCATION>" type="hidden" /> <input name="fullpath" value="<TMPL_VAR NAME=FULLPATH>" type="hidden" /> Index: vcs_output.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/vcs_output.html,v retrieving revision 1.9 retrieving revision 1.10 diff -U2 -r1.9 -r1.10 --- vcs_output.html 2002/01/27 01:48:04 1.9 +++ vcs_output.html 2002/01/28 19:53:29 1.10 @@ -5,5 +5,4 @@ <br /> <form> - <input type="hidden" name="menu" value="<TMPL_VAR NAME=MENU>" /> <input name="<TMPL_VAR NAME=LOCATION>" type="hidden"> <input name="<TMPL_VAR NAME=FULLPATH>" type="hidden"> Index: view_file.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/view_file.html,v retrieving revision 1.24 retrieving revision 1.25 diff -U2 -r1.24 -r1.25 --- view_file.html 2002/01/27 01:48:04 1.24 +++ view_file.html 2002/01/28 19:53:29 1.25 @@ -2,5 +2,4 @@ <input type="hidden" name="filename" value="<TMPL_VAR NAME=FILENAME>" /> <input type="hidden" name="location" value="<TMPL_VAR NAME=LOCATION>" /> -<input type="hidden" name="menu" value="<TMPL_VAR NAME=MENU>" /> <table width="100%"> <tr> |
From: Rob H. <for...@us...> - 2002-01-28 19:42:40
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv19928 Modified Files: create_file.html create_folder.html Log Message: now have clickable "Current location"s Index: create_file.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/create_file.html,v retrieving revision 1.5 retrieving revision 1.6 diff -U2 -r1.5 -r1.6 --- create_file.html 2002/01/27 00:04:22 1.5 +++ create_file.html 2002/01/28 19:42:37 1.6 @@ -4,5 +4,6 @@ <input name="menu" value="<TMPL_VAR NAME=MENU>" type="hidden" /> <input name="fullpath" value="<TMPL_VAR NAME=FULLPATH>" type="hidden" /> -Current location: <TMPL_VAR NAME=LOCATION><br /> +Current location: +<a href="<TMPL_VAR NAME=PROGNAME>?action=browse_module_menu&location=<TMPL_VAR NAME=LOCATION>"><TMPL_VAR NAME=LOCATION></a><br /> <br /> Enter filename : Index: create_folder.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/create_folder.html,v retrieving revision 1.4 retrieving revision 1.5 diff -U2 -r1.4 -r1.5 --- create_folder.html 2002/01/27 00:04:22 1.4 +++ create_folder.html 2002/01/28 19:42:37 1.5 @@ -4,5 +4,7 @@ <input name="menu" value="<TMPL_VAR NAME=MENU>" type="hidden" /> <input name="fullpath" value="<TMPL_VAR NAME=FULLPATH>" type="hidden" /> -Location: <TMPL_VAR NAME=LOCATION><br /> +Current location: +<a href="<TMPL_VAR NAME=PROGNAME>?action=browse_module_menu&location=<TMPL_VAR NAME=LOCATION>"><TMPL_VAR NAME=LOCATION></a><br /> <br /> +Enter foldername:<br /> <input name="filename" type="text" /><br /> <input name="done" type="submit" value="Done" /><br /> |
From: Rob H. <for...@us...> - 2002-01-28 19:38:33
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv18209/templates Modified Files: upload_file.html Log Message: shows a clickable "current location" Index: upload_file.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/upload_file.html,v retrieving revision 1.4 retrieving revision 1.5 diff -U2 -r1.4 -r1.5 --- upload_file.html 2002/01/27 00:04:22 1.4 +++ upload_file.html 2002/01/28 19:38:30 1.5 @@ -7,4 +7,6 @@ <input name="fullpath" value="<TMPL_VAR NAME=FULLPATH>" type="hidden" /> <input name="filename" value="<TMPL_VAR NAME=FILENAME>" type="hidden" /> +Current location : +<a href="<TMPL_VAR NAME=PROGNAME>?action=browse_module_menu&location=<TMPL_VAR NAME=LOCATION>"><TMPL_VAR NAME=LOCATION></a><br /> <br /> Enter a file to upload:<br /> <TMPL_VAR NAME=ERROR> |
From: Nick J. <ni...@na...> - 2002-01-28 19:21:38
|
Ooops, I fixed this last night but forgot to check it in :) On Mon, Jan 28, 2002 at 11:11:36AM -0800, Rob Helmer wrote: > Update of /cvsroot/sandweb/sandweb/bin > In directory usw-pr-cvs1:/tmp/cvs-serv4918 > > Modified Files: > sandweb.cgi > Log Message: > noticed a bug with cookie handling; header was being > set with CGI::header( -ck_auth => $ck_auth ) > should be CGI::header( -cookie => $ck_auth ) > > > Index: sandweb.cgi > =================================================================== > RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v > retrieving revision 1.132 > retrieving revision 1.133 > diff -U2 -r1.132 -r1.133 > --- sandweb.cgi 2002/01/28 01:09:26 1.132 > +++ sandweb.cgi 2002/01/28 19:11:33 1.133 > @@ -290,5 +290,5 @@ > $content = "Data Dump<br /><pre>" . $content . "</pre>"; > > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> 'SandWeb : Debug Menu', > @@ -341,5 +341,5 @@ > > my $username = $auth->get_userinfo('username'); > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> 'SandWeb : Browse Menu', > @@ -433,5 +433,5 @@ > my $content = $browse->browse("$location", "$progname", "@vcs_commands", "@file_commands", $repo_type); > > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> 'SandWeb : Browse Repository Menu', > @@ -591,5 +591,5 @@ > ); > > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> 'SandWeb : View File', > @@ -649,5 +649,5 @@ > ); > > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> 'SandWeb : Edit File', > @@ -678,5 +678,5 @@ > ); > > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> 'SandWeb : Create File', > @@ -705,5 +705,5 @@ > FULLPATH => "$users_dir/$username/$location", > ); > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE => 'SandWeb : Create Folder', > @@ -744,5 +744,5 @@ > FULLPATH => "$users_dir/$username/$location", > ); > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> 'SandWeb : Upload File', > @@ -762,5 +762,5 @@ > FULLPATH => "$users_dir/$username/$location", > ); > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> 'SandWeb : Checkout', > @@ -859,5 +859,5 @@ > VCS_ERROR => "@vcs_error", > ); > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> "SandWeb : VCS $vcs_command", > @@ -877,5 +877,5 @@ > FILENAME => "@filename", > ); > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> 'SandWeb : Commit', > @@ -909,5 +909,5 @@ > VCS_ERROR => "@vcs_error", > ); > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> "SandWeb : VCS $vcs_command", > @@ -943,5 +943,5 @@ > ); > > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> 'SandWeb : Preferences Menu', > @@ -1025,5 +1025,5 @@ > ); > > - print CGI::header( -ck_auth => $ck_auth ); > + print CGI::header( -cookie => $ck_auth ); > $ui->print_screen( > TITLE=> 'SandWeb : Preferences Menu', > > > _______________________________________________ > Sandweb-commit mailing list > San...@li... > https://lists.sourceforge.net/lists/listinfo/sandweb-commit > -- Nick Jennings |