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: Rob H. <for...@us...> - 2002-02-03 03:45:08
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv22094/bin Modified Files: sandweb.cgi Log Message: edit is now implemented as a <TMPL_IF> instead of hard-coded HTML in the CGI. Also removed "FULLPATH" variable from CGI, that's old stuff from before the File object existed. Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.148 retrieving revision 1.149 diff -U2 -r1.148 -r1.149 --- sandweb.cgi 2002/02/03 03:24:44 1.148 +++ sandweb.cgi 2002/02/03 03:45:05 1.149 @@ -663,5 +663,5 @@ $file_content =~ s/>/>/g; - my $edit = ""; + my $edit = 0; if ( $file->get_file_type() ne "Text" ) { @@ -670,5 +670,5 @@ $file_content = ""; } else { - $edit = "\<a href\=\"$progname\/$filename\?action\=file\&file_command\=edit\&location\=$location\&filename\=$filename\"\>edit\<\/a\>" + $edit = 1; } @@ -740,5 +740,4 @@ LOCATION => $location, FILENAME => $filename, - FULLPATH => "$users_dir/$username/$location", ); @@ -769,5 +768,4 @@ PROGNAME => $progname, LOCATION => $location, - FULLPATH => "$users_dir/$username/$location", ); @@ -797,5 +795,4 @@ PROGNAME => $progname, LOCATION => $location, - FULLPATH => "$users_dir/$username/$location", ); print CGI::header( -cookie => $ck_auth ); @@ -836,5 +833,4 @@ PROGNAME => $progname, FILENAME => $filename, - FULLPATH => "$users_dir/$username/$location", ); print CGI::header( -cookie => $ck_auth ); @@ -930,5 +926,4 @@ LOCATION => $location, PROGNAME => $progname, - FULLPATH => "$users_dir/$username/$location", ); print CGI::header( -cookie => $ck_auth ); @@ -960,5 +955,4 @@ LOCATION => $location, PROGNAME => $progname, - FULLPATH => "$users_dir/$username/$location", VCS_OUTPUT => "@vcs_output", VCS_ERROR => "@vcs_error", @@ -979,5 +973,4 @@ LOCATION => $location, PROGNAME => $progname, - FULLPATH => "$users_dir/$username/$location", FILENAME => "@filename", ); @@ -1010,5 +1003,4 @@ FILENAME => "@filename", PROGNAME => $progname, - FULLPATH => "$users_dir/$username/$location", VCS_OUTPUT => "@vcs_output", VCS_ERROR => "@vcs_error", |
From: Rob H. <for...@us...> - 2002-02-03 03:24:46
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv18929 Modified Files: sandweb.cgi Log Message: made sure there were comments for every single subroutine. Also, made comment style for subroutines uniform. Listed all args for given subroutine in it's comments, as well as a list of objects that are created and used within. Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.147 retrieving revision 1.148 diff -U2 -r1.147 -r1.148 --- sandweb.cgi 2002/02/02 01:41:09 1.147 +++ sandweb.cgi 2002/02/03 03:24:44 1.148 @@ -56,4 +56,13 @@ my $prefs_config = 'prefs.cfg'; +############################################################################### +# main +# +# The main subroutine is called at every invocation of sandewb.cgi +# Processes user requests and calls the appropriate subroutine. +# +# Paramaters : +# action - name of the action the user has requested. +############################################################################### sub main { my $action = CGI::param('action'); @@ -260,6 +269,12 @@ ## -# print login template -# get user info +############################################################################### +# login menu +# +# the login_menu subroutine displays the login_menu template, which +# asks users for their username and password. +# +# No args. +############################################################################### sub login_menu { my %args = @_; @@ -284,5 +299,13 @@ } -# main menu, greet the user +############################################################################### +# main menu +# +# greet the user +# deprecated +# +# args : +# ck_auth - cookie data. +############################################################################### sub main_menu { my %args = @_; @@ -317,5 +340,12 @@ #kill fido -# debug menu, dump all config objects +############################################################################### +# debug menu +# +# dump all config objects +# +# args : +# ck_auth - cookie data. +############################################################################### sub debug_menu { my %args = @_; @@ -345,12 +375,15 @@ } -# +############################################################################### # sandbox menu -# -# main menu to do stuff with sandbox section. # -# ck_auth - cookie data. +# displays the sandbox_menu template which displays available checkouts to +# the user, as well as links to make new checkouts and change repository +# settings. # -# +# args : +# ck_auth - cookie data. +############################################################################### + sub sandbox_menu { my %args = @_; @@ -400,11 +433,15 @@ } -# -# calls the Browse object, for viewing/selecting files -# args: +############################################################################### +# browse module menu # -# location - scalar to specify where to browse. -# ck_auth - the sessions cookie +# This is for viewing/selecting files for VCS and File actions. +# A Browse object is created and used. +# A File object is created and used. # +# args: +# location - scalar to specify where to browse. +# ck_auth - the sessions cookie +############################################################################### sub browse_module_menu { my %args = @_; @@ -493,7 +530,16 @@ } +############################################################################### # file operations such as file/folder creation, viewing and editing -# happen in this subroutine. A file object is created and used. +# happen in this subroutine. +# A File object is created and used. # +# args: +# ck_auth - the sessions cookie +# file_command - name of the File object method to be invoked +# filename - name of the file(s) that the File object should +# be invoked with. NOTE: this is an array +# location - system path to the file(s) specified by filename +############################################################################### sub file { my %args = @_; @@ -815,8 +861,19 @@ } +############################################################################### +# vcsaction +# # all VCS actions are caught by this subroutine, and dealt -# with accordingly. The Repository object is created and used. +# with by calling the appropriate Repository method. # - +# A Repository object is created and used. +# +# args: +# ck_auth - the sessions cookie +# vcs_command - name of the Repository object method to be invoked +# filename - name of the file(s) that the vcs_command should +# be used with. NOTE: this is an array +# location - system path to the file(s) specified by filename +############################################################################### sub vcsaction { my %args = @_; @@ -970,5 +1027,12 @@ -# user prefs, this is the preferences menu for configuring the users prefs.cfg +############################################################################### +# preferences menu +# +# user prefs, this is the menu for configuring the users prefs.cfg +# +# args: +# ck_auth - the sessions cookie +############################################################################### sub preferences_menu { my %args = @_; @@ -1004,18 +1068,20 @@ +############################################################################### # repository menu # # manage repository information, add/delete/modify repositories -# -# ck_auth - cookie data -# repository_selected - name of selected repository -# repository_name - name of repository selected -# repo_name - name of repository -# server - name of repositories server -# usr_name - user name for repository -# repo_type - type of repository (CVS, RSH, arch, subversion etc). -# connection - connection type -# root - repository root # +# args : +# ck_auth - cookie data +# repository_selected - name of selected repository +# repository_name - name of repository selected +# repo_name - name of repository +# server - name of repositories server +# usr_name - user name for repository +# repo_type - type of repository (CVS, RSH, arch, SVN etc). +# connection - connection type +# root - root of VCS repository +############################################################################### sub repository_menu { my %args = @_; @@ -1166,4 +1232,13 @@ } +############################################################################### +# vcs prefs menu +# +# being replaced by reopsitory menu? +# deprecated +# +# args: +# ck_auth - the sessions cookie +############################################################################### sub vcs_prefs_menu { my %args = @_; @@ -1253,4 +1328,12 @@ ## +############################################################################### +# preferences commit +# +# Writes user preference data to user's config file. +# +# args: +# ck_auth - the sessions cookie +############################################################################### sub preferences_commit { my %args = @_; @@ -1312,7 +1395,14 @@ ## +############################################################################### +# load prefs +# # check user prefs config file, if it doesn't exist, # call the preferences menu to fill in required info. # if it does exist, load it. +# +# No args. +# +############################################################################### sub load_prefs { my $no_error = shift; @@ -1366,4 +1456,14 @@ } +############################################################################### +# login +# +# Processes login requests. If login is incorrect, the user +# is returned to the login_menu +# +# args: +# username - current user's attempted username +# password - current user's attempted password +############################################################################### sub login { @@ -1397,6 +1497,12 @@ } +############################################################################### +# logout +# +# Expires the user's session. +# +# No args. +############################################################################### sub logout { - my %args = @_; my $stat = $auth->logout(); @@ -1410,5 +1516,11 @@ } +############################################################################### +# set error +# # assign error message to global $error IF it's not yet set. +# +# No args. +############################################################################### sub set_error { if (! $error) { @@ -1421,3 +1533,6 @@ } +############################################################################### +# No subroutine was specified, call the main subroutine +############################################################################### &main(); |
From: Rob H. <for...@us...> - 2002-02-02 09:35:34
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb In directory usw-pr-cvs1:/tmp/cvs-serv29764/lib/SandWeb Modified Files: Browse.pm Log Message: oops, last checking broke "Current location" bar. this fixes it but good! Index: Browse.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Browse.pm,v retrieving revision 1.39 retrieving revision 1.40 diff -U2 -r1.39 -r1.40 --- Browse.pm 2002/02/02 09:30:50 1.39 +++ Browse.pm 2002/02/02 09:35:31 1.40 @@ -81,6 +81,7 @@ foreach my $link (@location_link) { my %row_data; - next unless ( $link ); - $row_data{LOCATION_LINK} = "[$link]"; + if ( $link ) { + $row_data{LOCATION_LINK} = "[$link]"; + } my $data = join(" ", @location_full); |
From: Rob H. <for...@us...> - 2002-02-02 09:30:53
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv28972/templates Modified Files: browse_module.html Log Message: * made "Current location" bar a little more readable by lightening the background although I still don't think it's *quite* right, it's better * put [] around directory names in "Current location" bar, makes it alot easier to read especially when there are dirs with spaces in them Index: browse_module.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/browse_module.html,v retrieving revision 1.7 retrieving revision 1.8 diff -U2 -r1.7 -r1.8 --- browse_module.html 2002/01/31 23:31:58 1.7 +++ browse_module.html 2002/02/02 09:30:50 1.8 @@ -45,5 +45,5 @@ </tr> <tr> - <td width="100%" bgcolor="#000000"> + <td width="100%" bgcolor="#CCCCCC"> <font color="#22DD22"> |
From: Rob H. <for...@us...> - 2002-02-02 09:30:53
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb In directory usw-pr-cvs1:/tmp/cvs-serv28972/lib/SandWeb Modified Files: Browse.pm Log Message: * made "Current location" bar a little more readable by lightening the background although I still don't think it's *quite* right, it's better * put [] around directory names in "Current location" bar, makes it alot easier to read especially when there are dirs with spaces in them Index: Browse.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Browse.pm,v retrieving revision 1.38 retrieving revision 1.39 diff -U2 -r1.38 -r1.39 --- Browse.pm 2002/02/02 09:15:08 1.38 +++ Browse.pm 2002/02/02 09:30:50 1.39 @@ -81,5 +81,6 @@ foreach my $link (@location_link) { my %row_data; - $row_data{LOCATION_LINK} = "$link"; + next unless ( $link ); + $row_data{LOCATION_LINK} = "[$link]"; my $data = join(" ", @location_full); |
From: Rob H. <for...@us...> - 2002-02-02 09:15:12
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb In directory usw-pr-cvs1:/tmp/cvs-serv26779 Modified Files: Browse.pm Log Message: fixed "current location" bug Index: Browse.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Browse.pm,v retrieving revision 1.37 retrieving revision 1.38 diff -U2 -r1.37 -r1.38 --- Browse.pm 2002/01/29 01:32:27 1.37 +++ Browse.pm 2002/02/02 09:15:08 1.38 @@ -83,5 +83,4 @@ $row_data{LOCATION_LINK} = "$link"; my $data = join(" ", @location_full); - $data =~ s/\ /$1/; if ($location_link[$count]) { |
From: Rob H. <for...@us...> - 2002-02-02 09:04:38
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb In directory usw-pr-cvs1:/tmp/cvs-serv25269/lib/SandWeb Modified Files: File.pm Log Message: fixed security prob with File, also removed old obsolete "fullpath" key Index: File.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/File.pm,v retrieving revision 1.38 retrieving revision 1.39 diff -U2 -r1.38 -r1.39 --- File.pm 2002/01/28 20:00:06 1.38 +++ File.pm 2002/02/02 09:04:34 1.39 @@ -16,4 +16,7 @@ my $filename = $args{'filename'}; + # Security check, no "/.." or "../" allowed mister! + $filename =~ s:/\.\.::g; + $filename =~ s:\.\./::g; my $log_obj = $args{'log_obj'}; my $config = $args{'config_obj'}; |
From: Rob H. <for...@us...> - 2002-02-02 09:04:38
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv25269/templates Modified Files: checkout.html commit.html create_file.html edit_file.html upload_file.html Log Message: fixed security prob with File, also removed old obsolete "fullpath" key Index: checkout.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/checkout.html,v retrieving revision 1.8 retrieving revision 1.9 diff -U2 -r1.8 -r1.9 --- checkout.html 2002/01/31 23:31:58 1.8 +++ checkout.html 2002/02/02 09:04:34 1.9 @@ -7,5 +7,4 @@ <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" /> <input type="text" name="filename" /> <input type="submit" name="checkout" value="Done" /> Index: commit.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/commit.html,v retrieving revision 1.7 retrieving revision 1.8 diff -U2 -r1.7 -r1.8 --- commit.html 2002/01/31 23:31:58 1.7 +++ commit.html 2002/02/02 09:04:34 1.8 @@ -7,5 +7,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="fullpath" value="<TMPL_VAR NAME=FULLPATH>" /> <input type="text" name="message" /> <input type="submit" name="commit" value="Done" /> Index: create_file.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/create_file.html,v retrieving revision 1.8 retrieving revision 1.9 diff -U2 -r1.8 -r1.9 --- create_file.html 2002/01/31 23:31:58 1.8 +++ create_file.html 2002/02/02 09:04:34 1.9 @@ -5,5 +5,4 @@ <input name="file_command" value="create_file" type="hidden" /> <input name="location" value="<TMPL_VAR NAME=LOCATION>" type="hidden" /> -<input name="fullpath" value="<TMPL_VAR NAME=FULLPATH>" 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 /> Index: edit_file.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/edit_file.html,v retrieving revision 1.18 retrieving revision 1.19 diff -U2 -r1.18 -r1.19 --- edit_file.html 2002/01/31 23:31:58 1.18 +++ edit_file.html 2002/02/02 09:04:34 1.19 @@ -9,5 +9,4 @@ <input name="file_command" value="edit" type="hidden" /> <input name="location" value="<TMPL_VAR NAME=LOCATION>" type="hidden" /> - <input name="fullpath" value="<TMPL_VAR NAME=FULLPATH>" type="hidden" /> <input name="filename" value="<TMPL_VAR NAME=FILENAME>" type="hidden" /> <input type="submit" name="save" value="Save" /> Index: upload_file.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/upload_file.html,v retrieving revision 1.7 retrieving revision 1.8 diff -U2 -r1.7 -r1.8 --- upload_file.html 2002/01/31 23:31:58 1.7 +++ upload_file.html 2002/02/02 09:04:34 1.8 @@ -6,5 +6,4 @@ <input name="file_command" value="upload" type="hidden" /> <input name="location" value="<TMPL_VAR NAME=LOCATION>" type="hidden" /> -<input name="fullpath" value="<TMPL_VAR NAME=FULLPATH>" type="hidden" /> <input name="filename" value="<TMPL_VAR NAME=FILENAME>" type="hidden" /> Current location : |
From: Nick J. <nje...@us...> - 2002-02-02 01:41:13
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv17875/bin Modified Files: sandweb.cgi Log Message: * lots of work done on the repository menu, it's still not operational but is comming along. There are lots of issues due to the fact that lots of development was done *before* multiple repositories were in place, so theres alot of code that will need to be changed. Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.146 retrieving revision 1.147 diff -U2 -r1.146 -r1.147 --- sandweb.cgi 2002/02/01 23:31:12 1.146 +++ sandweb.cgi 2002/02/02 01:41:09 1.147 @@ -210,6 +210,24 @@ } elsif ( $action eq 'repository_menu' ) { + my $rs = CGI::param('repository_selected'); + my $rn = CGI::param('repo_name'); + my $s = CGI::param('server'); + my $un = CGI::param('usr_name'); + my $rt = CGI::param('repo_type'); + my $c = CGI::param('connection'); + my $r = CGI::param('root'); + my $nr = CGI::param('new_repository'); + my $s = CGI::param('Submit'); repository_menu( ck_auth => $ck_auth, + repository_selected => $rs, + repo_name => $rn, + server => $s, + usr_name => $un, + repo_type => $rt, + connection => $c, + root => $r, + new_repository => $nr, + submit => $s, ); } @@ -991,22 +1009,79 @@ # # ck_auth - cookie data +# repository_selected - name of selected repository +# repository_name - name of repository selected +# repo_name - name of repository +# server - name of repositories server +# usr_name - user name for repository +# repo_type - type of repository (CVS, RSH, arch, subversion etc). +# connection - connection type +# root - repository root # sub repository_menu { my %args = @_; my $ck_auth = $args{'ck_auth'}; + my $repository_selected = $args{'repository_selected'}; + my $repo_name = $args{'repo_name'}; + my $server = $args{'server'}; + my $usr_name = $args{'usr_name'}; + my $repo_type = $args{'repo_type'}; + my $connection = $args{'connection'}; + my $root = $args{'root'}; + my $new_repository = $args{'new_repository'} ? 1 : 0; + my $submit = $args{'submit'} ? 1 : 0; + + $log->debug("entering repository_menu\n"); + + use Data::Dumper; + $log->debug("<pre>" . Dumper(\%args) . "</pre>"); + # check cookie unless ($ck_auth) { + $log->debug("bad cookie '$ck_auth'\n"); &login_menu(); exit 0; } + my $new_string = 'Add a new repository'; my $username = $auth->get_userinfo('username'); my $users_dir = $config->{'paths'}->{'users_dir'}; - # get list of repositories - my @repos = sort keys %{$repository_settings}; - my $repo_selected = $repos[0]; # default for pulldown + my @repos = sort keys %{$repository_settings}; # get list of repositories + $log->debug("<pre>" . Dumper(\%{$repository_settings}) . "</pre>"); + + if (($repository_selected) && ($repository_selected != $new_string)) { + my $valid = 0; + # verify repository name + foreach my $repo (@repos) { + if ($repository_selected eq $repo) { + $repo_name = $repo; + $valid = 1; + } + } + if (!$valid) { + # bad repository name + set_error("Invalid repository name: $repository_selected\n"); + $repository_selected = $new_string; + $repo_name = ''; + } + } + + if ((($repository_selected eq $repo_name) && ($submit)) || (($new_repository) && ($submit))) { + # modified existing repository and commited or + # added new repository and commited + # commit data to file + + } elsif (($repository_selected eq $new_string) && (!$new_repository)) { + # repository selected was 'add new repository' + # new repository display + } elsif ($repository_selected) { + # display existing repository + $server = $repository_settings->{$repository_selected}->{'server'}; + $usr_name = $repository_settings->{$repository_selected}->{'usr_name'}; + $connection = $repository_settings->{$repository_selected}->{'connection'}; + $repo_type = $repository_settings->{$repository_selected}->{'repo_type'}; + $root = $repository_settings->{$repository_selected}->{'root'}; + } + # selected repository data - my $repo_type = $repository_settings->{$repo_selected}->{'repo_type'}; - my $connection = $repository_settings->{$repo_selected}->{'connection'}; my $vcsroot; @@ -1019,4 +1094,5 @@ my @connections = $repository->get_connections(); my @repo_types = $repository->get_repo_types(); + my $repository_selected = ($repository_selected) ? $repository_selected : $repos[0]; # default for pulldown # loop data @@ -1027,5 +1103,5 @@ foreach my $repo (@repos) { my %entries; - if ($repo_selected eq $repo) { + if (($repository_selected eq $repo) && ($repository_selected != $new_string)) { $entries{REPOSITORY_ENTRY} = "<option selected>$repo</option>"; } else { @@ -1036,9 +1112,9 @@ # add new repo my %tmp; - if ($repo_selected eq 'Add New Repository') { - $tmp{REPOSITORY_ENTRY} = "<option select>Add New Repository</option>"; + if ($repository_selected eq $new_string) { + $tmp{REPOSITORY_ENTRY} = "<option selected>$new_string</option>"; } else { - $tmp{REPOSITORY_ENTRY} = "<option>Add New Repository</option>"; + $tmp{REPOSITORY_ENTRY} = "<option>$new_string</option>"; } @@ -1068,4 +1144,5 @@ } + my $content = $ui->get_menu( MENU => 'repository', @@ -1074,4 +1151,5 @@ LOOP_REPO_TYPE => \@loop_repo_type, LOOP_REPOSITORY_SELECT => \@loop_repository_select, + REPOSITORY_SELECTED => $repository_selected, ); |
From: Nick J. <nje...@us...> - 2002-02-02 01:41:13
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv17875/templates Modified Files: repository.html Log Message: * lots of work done on the repository menu, it's still not operational but is comming along. There are lots of issues due to the fact that lots of development was done *before* multiple repositories were in place, so theres alot of code that will need to be changed. Index: repository.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/repository.html,v retrieving revision 1.5 retrieving revision 1.6 diff -U2 -r1.5 -r1.6 --- repository.html 2002/02/01 23:47:23 1.5 +++ repository.html 2002/02/02 01:41:09 1.6 @@ -1,4 +1,15 @@ -<form submit="<TMPL_VAR NAME=PROGNAME>"> -<input type="hidden" name="action" value="preferences_menu" /> +<script type="text/javascript" language="JavaScript"> +<!-- +function submitForm(clicked) { + document.repository_menu.repository_selected.value=clicked; + document.modify_user.submit(); +} +// --> +</script> + +<form submit="<TMPL_VAR NAME=PROGNAME>" name="repository_menu"> +<input type="hidden" name="action" value="repository_menu"> +<!-- <input type="hidden" name="repository_selected" value="<TMPL_VAR NAME=REPOSITORY_SELECTED>"> --> +<input type="hidden" name="new_repository" value="<TMPL_VAR NAME=NEW_REPOSITORY>"> <tr> <td width="20%" align="right" bgcolor="#CCCCEE"> @@ -6,5 +17,5 @@ </td> <td width="90%" align="left" bgcolor="#CCCCEE"> - <select size="1" name="repository_name" onChange="javascript:{submitForm('repository_selected');}"> + <select size="1" name="repository_selected" onChange="javascript:{submitForm('repository_select');}"> <TMPL_LOOP NAME="LOOP_REPOSITORY_SELECT"> <TMPL_VAR NAME="REPOSITORY_ENTRY"> @@ -17,5 +28,5 @@ </td> <td width="90%" align="left"> - <input type="text" name="name" value="<TMPL_VAR NAME=NAME>" /> + <input type="text" name="repo_name" value="<TMPL_VAR NAME=NAME>" /> </td> </tr> @@ -33,5 +44,5 @@ </td> <td width="90%" align="left"> - <input type="text" name="name" value="<TMPL_VAR NAME=USERNAME>" /> + <input type="text" name="usr_name" value="<TMPL_VAR NAME=USERNAME>" /> </td> </tr> |
From: Nick J. <nje...@us...> - 2002-02-01 23:47:27
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv21358 Modified Files: repository.html Log Message: * updated repository template to support multiple repositories Index: repository.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/repository.html,v retrieving revision 1.4 retrieving revision 1.5 diff -U2 -r1.4 -r1.5 --- repository.html 2002/01/31 23:31:58 1.4 +++ repository.html 2002/02/01 23:47:23 1.5 @@ -2,4 +2,15 @@ <input type="hidden" name="action" value="preferences_menu" /> <tr> + <td width="20%" align="right" bgcolor="#CCCCEE"> + Select a Repository : + </td> + <td width="90%" align="left" bgcolor="#CCCCEE"> + <select size="1" name="repository_name" onChange="javascript:{submitForm('repository_selected');}"> + <TMPL_LOOP NAME="LOOP_REPOSITORY_SELECT"> + <TMPL_VAR NAME="REPOSITORY_ENTRY"> + </TMPL_LOOP> + </select> + </td> + <tr> <td width="20%" align="right"> Name : @@ -56,14 +67,20 @@ </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 /> + <tr> + <td width="100%" colspan="2"> + <table width="100%" align="center" border="0"> + <tr> + <td width="15%" align="center"> + <br /> + </td> + <td width="10%" align="center"> + <br /> + <input type="submit" name="Submit" Value="Commit" /> + </td> + <td width="75%" align="center"> + <br /> + </td> + </tr> + </table> </td> </tr> |
From: Nick J. <nje...@us...> - 2002-02-01 23:31:16
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv21094 Modified Files: sandweb.cgi Log Message: * working on repository_menu, not finished, but got a design going. * added comments to subroutines describing params (rob, can you do this for your subroutines??) Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.145 retrieving revision 1.146 diff -U2 -r1.145 -r1.146 --- sandweb.cgi 2002/02/01 03:50:26 1.145 +++ sandweb.cgi 2002/02/01 23:31:12 1.146 @@ -50,5 +50,4 @@ my $userprefs; # user data loaded from users prefs config file my $repository_settings; # repository data loaded from users prefs config file -my %repository_settings; my $module_settings; # module data loaded from users prefs config file @@ -328,7 +327,12 @@ } +# # sandbox menu # # main menu to do stuff with sandbox section. +# +# ck_auth - cookie data. +# +# sub sandbox_menu { my %args = @_; @@ -345,5 +349,5 @@ load_prefs(1); - my @modules = keys %{$module_settings}; + my @modules = sort keys %{$module_settings}; if ($#modules < 0) { $no_modules = 1; @@ -981,4 +985,11 @@ } + +# repository menu +# +# manage repository information, add/delete/modify repositories +# +# ck_auth - cookie data +# sub repository_menu { my %args = @_; @@ -991,8 +1002,11 @@ my $username = $auth->get_userinfo('username'); my $users_dir = $config->{'paths'}->{'users_dir'}; - my @repos = sort keys %{repository_settings}; - - my $repo_type = $repository_settings->{'repository'}->{'repo_type'}; - my $connection = $repository_settings->{'repository'}->{'connection'}; + # get list of repositories + my @repos = sort keys %{$repository_settings}; + my $repo_selected = $repos[0]; # default for pulldown + + # selected repository data + my $repo_type = $repository_settings->{$repo_selected}->{'repo_type'}; + my $connection = $repository_settings->{$repo_selected}->{'connection'}; my $vcsroot; @@ -1006,25 +1020,48 @@ my @repo_types = $repository->get_repo_types(); + # loop data my @loop_connection = (); + my @loop_repository_select = (); my @loop_repo_type = (); + + foreach my $repo (@repos) { + my %entries; + if ($repo_selected eq $repo) { + $entries{REPOSITORY_ENTRY} = "<option selected>$repo</option>"; + } else { + $entries{REPOSITORY_ENTRY} = "<option>$repo</option>"; + } + push (@loop_repository_select, \%entries); + } + # add new repo + my %tmp; + if ($repo_selected eq 'Add New Repository') { + $tmp{REPOSITORY_ENTRY} = "<option select>Add New Repository</option>"; + + } else { + $tmp{REPOSITORY_ENTRY} = "<option>Add New Repository</option>"; + + } + push (@loop_repository_select, \%tmp); + - foreach my $connection_loop (@connections) { + foreach my $type (@connections) { my %row_data; - if ($connection_loop eq $connection) { - $row_data{CONNECTION} = "<option selected>$connection_loop</option>"; + if ($type eq $connection) { + $row_data{CONNECTION} = "<option selected>$type</option>"; } else { - $row_data{CONNECTION} = "<option>$connection_loop</option>"; + $row_data{CONNECTION} = "<option>$type</option>"; } push (@loop_connection, \%row_data); } - foreach my $repo_type_loop (@repo_types) { + foreach my $type (@repo_types) { my %row_data; - if ($repo_type_loop eq $repo_type) { - $row_data{REPO_TYPE} = "<option selected>$repo_type_loop</option>"; + if ($type eq $repo_type) { + $row_data{REPO_TYPE} = "<option selected>$type</option>"; } else { - $row_data{REPO_TYPE} = "<option>$repo_type_loop</option>"; + $row_data{REPO_TYPE} = "<option>$type</option>"; } push (@loop_repo_type, \%row_data); @@ -1036,4 +1073,5 @@ LOOP_CONNECTION => \@loop_connection, LOOP_REPO_TYPE => \@loop_repo_type, + LOOP_REPOSITORY_SELECT => \@loop_repository_select, ); |
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, |
From: Nick J. <nje...@us...> - 2002-02-01 03:45:42
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv24479 Modified Files: framework.html Log Message: * centered error messages Index: framework.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/framework.html,v retrieving revision 1.12 retrieving revision 1.13 diff -U2 -r1.12 -r1.13 --- framework.html 2002/01/31 23:30:34 1.12 +++ framework.html 2002/02/01 03:45:40 1.13 @@ -63,5 +63,5 @@ <table width="100%" border="0" align="center" valign="top"> <tr> - <td width="100%" align="left" valign="center"> + <td width="100%" align="center" valign="center"> <font color="#EE6666"><TMPL_VAR NAME=ERROR></font><br /> </td> |
From: Nick J. <nje...@us...> - 2002-02-01 03:44:06
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv24009 Modified Files: sandbox.html Log Message: * added 'update' to function section in sandbox menu (module listing) so now you can 'delete' or 'update' a module. Index: sandbox.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/sandbox.html,v retrieving revision 1.5 retrieving revision 1.6 diff -U2 -r1.5 -r1.6 --- sandbox.html 2002/01/31 23:30:35 1.5 +++ sandbox.html 2002/02/01 03:44:03 1.6 @@ -38,5 +38,9 @@ </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> + <font size="2"> + <a href="<TMPL_VAR NAME=PROGNAME>?action=module_update_menu&module_name=<TMPL_VAR NAME="MODULE_NAME">">update</a> + | + <a href="<TMPL_VAR NAME=PROGNAME>?action=module_delete_menu&module_name=<TMPL_VAR NAME="MODULE_NAME">">delete</a> + </font> </td> </tr> |
From: Nick J. <nje...@us...> - 2002-02-01 03:39:39
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv23141 Modified Files: login.html preferences.html Log Message: * tweaked the UI a bit, made the login menu more aligned with the rest of the menus Index: login.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/login.html,v retrieving revision 1.4 retrieving revision 1.5 diff -U2 -r1.4 -r1.5 --- login.html 2002/01/31 23:31:58 1.4 +++ login.html 2002/02/01 03:39:36 1.5 @@ -1,27 +1,29 @@ - <tr> - <td align="left" valign="middle"> - <form method="post" - action="<TMPL_VAR NAME=PROGNAME>" - enctype="application/x-www-form-urlencoded" name="login"> - <input type="hidden" name="action" value="login" /> - <table border="0"> - <tr> - <td align="left">Username: </td> - <td align="right"> - <input type="text" name="username" size="10" /> - </td> - </tr> - <tr> - <td align="left">Password: </td> - <td align="right"> - <input type="password" name="password" size="10" /> - </td> - </tr> - </table> - <br /> - <input type="submit" name="Login" value="Login" /> - <input type="reset" value="Clear" /> - </form> - </td> - </tr> - <tr> +<form method="post" action="<TMPL_VAR NAME=PROGNAME>" enctype="application/x-www-form-urlencoded" name="login"> +<input type="hidden" name="action" value="login" /> +<tr> + <td width="20%" align="right"> + Username : + </td> + <td width="80%" align="left"> + <input type="text" name="username" size="10" /> + </td> +</tr> +<tr> + <td width="20%" align="right"> + Password : + </td> + <td width="80%" align="left"> + <input type="password" name="password" size="10" /> + </td> +</tr> +<tr> + <td width="20%" align="right"> + <br /> + <input type="submit" name="Login" value="Login" /> + </td> + <td width="80%" align="left"> + <br /> + <input type="reset" value="Clear" /> + </td> +</tr> +</form> Index: preferences.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/preferences.html,v retrieving revision 1.14 retrieving revision 1.15 diff -U2 -r1.14 -r1.15 --- preferences.html 2002/01/31 23:31:58 1.14 +++ preferences.html 2002/02/01 03:39:36 1.15 @@ -5,5 +5,5 @@ Full Name : </td> - <td width="90%" align="left"> + <td width="80%" align="left"> <input type="text" name="full_name" value="<TMPL_VAR NAME=FULL_NAME>" /> </td> @@ -13,5 +13,5 @@ Local work dir : </td> - <td width="90%" align="left"> + <td width="80%" align="left"> <input type="text" name="work_dir" value="<TMPL_VAR NAME=WORK_DIR>" /> </td> |
From: Nick J. <nje...@us...> - 2002-01-31 23:32:36
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb In directory usw-pr-cvs1:/tmp/cvs-serv27995/lib/SandWeb Modified Files: Auth.pm Log.pm Log Message: * Added some debug messages in Auth, and modified logging format a bit to always put \n's Index: Auth.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Auth.pm,v retrieving revision 1.14 retrieving revision 1.15 diff -U2 -r1.14 -r1.15 --- Auth.pm 2002/01/28 01:09:26 1.14 +++ Auth.pm 2002/01/31 23:32:33 1.15 @@ -42,5 +42,5 @@ $self->_set_user_info_username($username); $self->_set_user_info_password($password); - $log->standard("$username logged on.\n"); + $log->standard("$username logged on."); return 1; } @@ -93,5 +93,5 @@ my $log = $self->_logobj(); unless ($self->get_userinfo('username')) { - $log->error("set_cookie called when user_info not set (no login)\n"); + $log->error("set_cookie called when user_info not set (no login)"); return 0; } @@ -116,5 +116,6 @@ unless ($self->_write_cookiedata($cookie_value)) { - $log->error("Unable to write cookiedata\n"); + $log->error("Unable to write cookiedata"); + $log->debug("Unable to write cookiedata"); return 0; } Index: Log.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Log.pm,v retrieving revision 1.6 retrieving revision 1.7 diff -U2 -r1.6 -r1.7 --- Log.pm 2001/12/20 20:29:41 1.6 +++ Log.pm 2002/01/31 23:32:33 1.7 @@ -23,5 +23,5 @@ my ($self, $msg) = @_; if ($self->_get_log_toggle()) { - $self->_write_to_log("LOG: $msg"); + $self->_write_to_log("LOG: $msg\n"); } return 1; @@ -46,5 +46,5 @@ my ($self, $msg) = @_; if ($self->_get_log_toggle()) { - $self->_write_to_log("ERROR: $msg"); + $self->_write_to_log("ERROR: $msg\n"); } return 1; |
From: Nick J. <nje...@us...> - 2002-01-31 23:32:01
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv27490 Modified Files: browse_module.html checkout.html commit.html create_file.html create_folder.html edit_file.html file.html file_info.html login.html preferences.html repository.html tag.html template.html upload_file.html vcs_output.html view_file.html Log Message: * took out <p>'s and replaced with <tr><td>'s etc. formatting in general was really screwed. MUST use tables - dont not just put some <p>'s and <center>'s (in fact, never use <p>'s and <center>'s only very seldom in certain situations Index: browse_module.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/browse_module.html,v retrieving revision 1.6 retrieving revision 1.7 diff -U2 -r1.6 -r1.7 --- browse_module.html 2002/01/31 23:16:15 1.6 +++ browse_module.html 2002/01/31 23:31:58 1.7 @@ -11,10 +11,9 @@ </script> -<table width="100%" border="0" cellspacing="0" cellpadding="2"> - <form method="get" submit="<TMPL_VAR NAME=PROGNAME>" name="browse"> - <input type="hidden" name="location" value="<TMPL_VAR NAME=LOCATION>" /> + <form method="get" submit="<TMPL_VAR NAME=PROGNAME>" name="browse"> + <input type="hidden" name="location" value="<TMPL_VAR NAME=LOCATION>" /> - <tr> - <td width="100%" align="center" valign="center"> + <tr> + <td width="100%" align="center" valign="center"> <table border="0" width="100%" cellspacing="2" cellpadding="2"> <tr> @@ -106,7 +105,6 @@ </TMPL_LOOP> </table> - </td> - </tr> - </form> -</table> + </td> + </tr> +</form> <TMPL_VAR NAME="STATUS"> Index: checkout.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/checkout.html,v retrieving revision 1.7 retrieving revision 1.8 diff -U2 -r1.7 -r1.8 --- checkout.html 2002/01/29 04:17:22 1.7 +++ checkout.html 2002/01/31 23:31:58 1.8 @@ -1,2 +1,4 @@ +<tr> + <td width="100%"> Please enter module name to checkout from repository <select><option>My First Repo(tm)</option></select>: <br /> <br /> @@ -10,2 +12,4 @@ <TMPL_VAR NAME=ERROR> </form> + </td> +</tr> Index: commit.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/commit.html,v retrieving revision 1.6 retrieving revision 1.7 diff -U2 -r1.6 -r1.7 --- commit.html 2002/01/28 19:53:29 1.6 +++ commit.html 2002/01/31 23:31:58 1.7 @@ -1,3 +1,4 @@ -<center> +<tr> + <td width="center"> Please enter a commit message for <TMPL_VAR NAME=LOCATION>/<TMPL_VAR NAME=FILENAME> : <form submit="<TMPL_VAR NAME=PROGNAME>" type="get"> @@ -11,3 +12,4 @@ <TMPL_VAR NAME=ERROR> </form> -</center> + </td> +</tr> Index: create_file.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/create_file.html,v retrieving revision 1.7 retrieving revision 1.8 diff -U2 -r1.7 -r1.8 --- create_file.html 2002/01/28 19:53:29 1.7 +++ create_file.html 2002/01/31 23:31:58 1.8 @@ -1,2 +1,4 @@ +<tr> + <td width="100%"> <form action="<TMPL_VAR NAME=PROGNAME>"> <input name="action" value="file" type="hidden" /> @@ -12,2 +14,4 @@ <input name="done" type="submit" value="Done" /><br /> </form> + </td> +</tr> Index: create_folder.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/create_folder.html,v retrieving revision 1.6 retrieving revision 1.7 diff -U2 -r1.6 -r1.7 --- create_folder.html 2002/01/28 19:53:29 1.6 +++ create_folder.html 2002/01/31 23:31:58 1.7 @@ -1,2 +1,4 @@ +<tr> + <td width="100%"> <form action="<TMPL_VAR NAME=PROGNAME>"> <input name="action" value="file" type="hidden" /> @@ -10,2 +12,4 @@ <input name="done" type="submit" value="Done" /><br /> </form> + </td> +</tr> Index: edit_file.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/edit_file.html,v retrieving revision 1.17 retrieving revision 1.18 diff -U2 -r1.17 -r1.18 --- edit_file.html 2002/01/28 19:53:29 1.17 +++ edit_file.html 2002/01/31 23:31:58 1.18 @@ -1,4 +1,4 @@ -<p> -<p> +<tr> + <td width="100%"> Current location : <a href="<TMPL_VAR NAME=PROGNAME>?action=browse_menu_menu&location=<TMPL_VAR NAME=LOCATION>"><TMPL_VAR NAME=LOCATION></a> <br /> @@ -18,3 +18,4 @@ <TMPL_VAR NAME=ERROR> <TMPL_VAR NAME=OUTPUT> -</p> + </td> +</tr> Index: file.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/file.html,v retrieving revision 1.2 retrieving revision 1.3 diff -U2 -r1.2 -r1.3 --- file.html 2001/08/07 04:08:50 1.2 +++ file.html 2002/01/31 23:31:58 1.3 @@ -1,3 +1,4 @@ -<p> +<tr> + <td width="100%"> <center> <TMPL_VAR NAME=FILENAME> </center> <br /> <br /> @@ -6,3 +7,4 @@ </pre> <TMPL_VAR NAME=ERROR> -</p> + </td> +</tr> Index: file_info.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/file_info.html,v retrieving revision 1.2 retrieving revision 1.3 diff -U2 -r1.2 -r1.3 --- file_info.html 2002/01/31 23:08:54 1.2 +++ file_info.html 2002/01/31 23:31:58 1.3 @@ -1,3 +1,4 @@ -<p> +<tr> + <td width="100%"> <form> <input name="<TMPL_VAR NAME=LOCATION>" type="hidden" /> @@ -10,3 +11,4 @@ <TMPL_VAR NAME=VCS_OUTPUT> </pre> -</p> + </td> +</tr> Index: login.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/login.html,v retrieving revision 1.3 retrieving revision 1.4 diff -U2 -r1.3 -r1.4 --- login.html 2001/12/04 17:37:51 1.3 +++ login.html 2002/01/31 23:31:58 1.4 @@ -1,3 +1,2 @@ -<table border="0" align="center" width="100%" cellpadding="4" cellspacing="4"> <tr> <td align="left" valign="middle"> @@ -27,3 +26,2 @@ </tr> <tr> -</table> Index: preferences.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/preferences.html,v retrieving revision 1.13 retrieving revision 1.14 diff -U2 -r1.13 -r1.14 --- preferences.html 2002/01/31 23:16:15 1.13 +++ preferences.html 2002/01/31 23:31:58 1.14 @@ -1,5 +1,4 @@ <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"> @@ -43,4 +42,3 @@ </td> </tr> -</table> </form> Index: repository.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/repository.html,v retrieving revision 1.3 retrieving revision 1.4 diff -U2 -r1.3 -r1.4 --- repository.html 2002/01/31 23:16:15 1.3 +++ repository.html 2002/01/31 23:31:58 1.4 @@ -1,5 +1,4 @@ <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"> @@ -69,4 +68,3 @@ </td> </tr> -</table> </form> Index: tag.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/tag.html,v retrieving revision 1.3 retrieving revision 1.4 diff -U2 -r1.3 -r1.4 --- tag.html 2002/01/28 19:53:29 1.3 +++ tag.html 2002/01/31 23:31:58 1.4 @@ -1,2 +1,4 @@ +<tr> + <td width="100%"> <center> Please enter a symbolic name for REVISION# of <TMPL_VAR NAME=LOCATION>/<TMPL_VAR NAME=FILENAME> : @@ -10,2 +12,4 @@ </form> </center> + </td> +</tr> Index: template.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/template.html,v retrieving revision 1.3 retrieving revision 1.4 diff -U2 -r1.3 -r1.4 --- template.html 2002/01/26 23:27:59 1.3 +++ template.html 2002/01/31 23:31:58 1.4 @@ -1,3 +1,2 @@ -<table border="0" align="center" width="100%" cellpadding="4" cellspacing="4"> <tr> <td align="left" valign="middle"> @@ -21,4 +20,2 @@ </td> </tr> - <tr> -</table> Index: upload_file.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/upload_file.html,v retrieving revision 1.6 retrieving revision 1.7 diff -U2 -r1.6 -r1.7 --- upload_file.html 2002/01/28 19:53:29 1.6 +++ upload_file.html 2002/01/31 23:31:58 1.7 @@ -1,2 +1,4 @@ +<tr> + <td width="100%"> <form method="post" action="<TMPL_VAR NAME=PROGNAME>" enctype="multipart/form-data"> @@ -13,2 +15,4 @@ <input name="done" type="submit" /><br /> </form> + </td> +</tr> Index: vcs_output.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/vcs_output.html,v retrieving revision 1.11 retrieving revision 1.12 diff -U2 -r1.11 -r1.12 --- vcs_output.html 2002/01/31 23:08:54 1.11 +++ vcs_output.html 2002/01/31 23:31:58 1.12 @@ -1,3 +1,4 @@ -<p> +<tr> + <td width="100%"> Current location : <a href="<TMPL_VAR NAME=PROGNAME>?action=browse_module_menu&location=/<TMPL_VAR NAME=LOCATION>">/<TMPL_VAR NAME=LOCATION></a> <br /> @@ -11,3 +12,4 @@ <font color="#FF0000"><TMPL_VAR NAME=VCS_ERROR></font> <pre><TMPL_VAR NAME=VCS_OUTPUT></pre> -</p> + </td> +</tr> Index: view_file.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/view_file.html,v retrieving revision 1.26 retrieving revision 1.27 diff -U2 -r1.26 -r1.27 --- view_file.html 2002/01/31 23:08:54 1.26 +++ view_file.html 2002/01/31 23:31:58 1.27 @@ -2,5 +2,4 @@ <input type="hidden" name="filename" value="<TMPL_VAR NAME=FILENAME>" /> <input type="hidden" name="location" value="<TMPL_VAR NAME=LOCATION>" /> -<table width="100%"> <tr> <td width="50%"> @@ -47,4 +46,3 @@ </td> </tr> -</table> </form> |
From: Nick J. <nje...@us...> - 2002-01-31 23:30:40
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv26965 Modified Files: framework.html sandbox.html Log Message: * modified the framework and related templates to get rid of formatting problems from <p>'s and lack of <tr>'s and <td>'s * resolved conflicts due to simultaneous changes of the same templates Index: framework.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/framework.html,v retrieving revision 1.11 retrieving revision 1.12 diff -U2 -r1.11 -r1.12 --- framework.html 2002/01/31 23:16:15 1.11 +++ framework.html 2002/01/31 23:30:34 1.12 @@ -15,76 +15,85 @@ </style> <body bgcolor="#EEEEEE" link="#3344AA" vlink="#3344AA"> - <table border="0" align="center" width="100%" cellpadding="4" cellspacing="0"> + + <table border="0" align="center" width="100%" cellpadding="4" cellspacing="0"> + <tr> + <td width="100%" align="center"> + + <table width="100%" border="0"> + <tr> + <td width="30%"> +   <br /> + </td> + <td width="20%" align="right"> + <font size="4"><b><TMPL_VAR NAME=MENU_TITLE></b></font> + </td> + <td width="20%" align="left"> + : <TMPL_VAR NAME=SUBMENU_TITLE><br /> + </td> + <td width="30%"> +   <br /> + </td> + </tr> + <tr> + <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> + <td width="100%" align="center" bgcolor="#CCDDCC"> + <TMPL_VAR NAME=MENU_BAR> + </td> + </tr> + </table> + + </td> + <td width="30%"> +   <br/> + </td> + </tr> + </table> + + </td> + </tr> + <tr> + <td width="100%" align="center"> + + <table width="100%" border="0" align="center" valign="top"> + <tr> + <td width="100%" align="left" valign="center"> + <font color="#EE6666"><TMPL_VAR NAME=ERROR></font><br /> + </td> + </tr> + <tr> + <td width="100%" align="left" valign="top"> + + <table width="100%" align="left" valign="top"> + <TMPL_VAR NAME=CONTENT><br /> + </table> + + </td> + </tr> + </table> + + </td> + </tr> <tr> - <td width="100%" align="center"> - <table width="100%" border="0"> - <tr> - <td width="30%"> - <br /> - </td> - <td width="20%" align="right"> - <font size="4"> - <b><TMPL_VAR NAME=MENU_TITLE></b></font> - </td> - <td width="20%" align="left"> - : <TMPL_VAR NAME=SUBMENU_TITLE><br /> - </td> - <td width="30%"> - <br /> - </td> - </tr> - <tr> - <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> - <td width="100%" align="center" bgcolor="#CCDDCC"> - <TMPL_VAR NAME=MENU_BAR> - </td> - </tr> - </table> - </td> - <td width="30%"> - <br /> - </td> - </tr> - </table> - </td> - </tr> - <tr> - <td width="100%" align="center"> - <table width="100%" border="0" align="center" valign="top"> - <tr> - <td width="100%" align="left" valign="center"> - <font color="#EE6666"><TMPL_VAR NAME=ERROR></font><br /> - </td> - </tr> - <tr> - <td width="100%" align="left" valign="top"> - <table width="100%" align="left" valign="top"> - <TMPL_VAR NAME=CONTENT><br /> - </table> - </td> - </tr> - </table> - </td> + <td width="100%" align="left"> + <TMPL_VAR NAME=FOOTER><br /> + </td> </tr> <tr> - <td width="100%" align="left"> - <TMPL_VAR NAME=FOOTER><br /> - </td> + <td width="100%" align="left"> + <font color="#336633"> + <TMPL_LOOP NAME="DEBUG"> + <b><TMPL_VAR NAME=DEBUG_MSG></b><br /> + </TMPL_LOOP> + </font> + </td> </tr> - <tr> - <td width="100%" align="left"> - <font color="#336633"> - <TMPL_LOOP NAME="DEBUG"> - <b><TMPL_VAR NAME=DEBUG_MSG></b><br /> - </TMPL_LOOP> - </font> - </td> - </tr> </table> + </body> </html> Index: sandbox.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/sandbox.html,v retrieving revision 1.4 retrieving revision 1.5 diff -U2 -r1.4 -r1.5 --- sandbox.html 2002/01/31 23:16:15 1.4 +++ sandbox.html 2002/01/31 23:30:35 1.5 @@ -1,20 +1,5 @@ <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" colspan="2"> - <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> - </table> - </td> --> - </tr> - <tr> <td width="80%" align="left"> <TMPL_VAR NAME="NO_MODULES"><br /> @@ -60,4 +45,3 @@ </td> </tr> -</table> </form> |
From: Rob H. <for...@us...> - 2002-01-31 23:24:00
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv24759 Modified Files: menu_bar.html Log Message: missed a couple nbsp Index: menu_bar.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/menu_bar.html,v retrieving revision 1.12 retrieving revision 1.13 diff -U2 -r1.12 -r1.13 --- menu_bar.html 2002/01/31 23:16:15 1.12 +++ menu_bar.html 2002/01/31 23:23:57 1.13 @@ -1,10 +1,10 @@ <!-- <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> |   --> +<!-- <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> - <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=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=preferences_menu">prefs</a> - <b>|</b>   <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=logout">logout</a><br /> |
From: Rob H. <for...@us...> - 2002-01-31 23:16:18
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv21699 Modified Files: browse_module.html framework.html menu_bar.html preferences.html repository.html sandbox.html Log Message: had alot of   instead of Index: browse_module.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/browse_module.html,v retrieving revision 1.5 retrieving revision 1.6 diff -U2 -r1.5 -r1.6 --- browse_module.html 2002/01/31 23:08:54 1.5 +++ browse_module.html 2002/01/31 23:16:15 1.6 @@ -33,5 +33,5 @@ </TMPL_LOOP> </select> -       +     <input type="submit" name="action" value="vcsaction" /> </td> @@ -42,10 +42,10 @@ <tr> <td width="100%"> -   <br /> + <br /> </td> </tr> <tr> <td width="100%" bgcolor="#000000"> -   + <font color="#22DD22"> Current location : @@ -69,15 +69,15 @@ <td width="60%" align="left" bgcolor="#88FF88"> <font size="2"> -   <b>File</b> + <b>File</b> </font> </td> <td width="10%" align="left" bgcolor="#CCCCCC"> <font size="2"> -   <A href="<TMPL_VAR NAME=PROGNAME>">Size</a> + <A href="<TMPL_VAR NAME=PROGNAME>">Size</a> </font> </td> <td width="30%" align="left" bgcolor="#CCCCCC"> <font size="2"> -   <A href="<TMPL_VAR NAME=PROGNAME>">Age</a> + <A href="<TMPL_VAR NAME=PROGNAME>">Age</a> </font> </td> @@ -96,9 +96,9 @@ </td> <td> -   + <TMPL_VAR NAME=FILESIZE>/<font size="2"><i>B</i></font> </td> <td> -   + <font size="2"><TMPL_VAR NAME=FILEAGE></font> </td> Index: framework.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/framework.html,v retrieving revision 1.10 retrieving revision 1.11 diff -U2 -r1.10 -r1.11 --- framework.html 2002/01/31 05:50:34 1.10 +++ framework.html 2002/01/31 23:16:15 1.11 @@ -21,5 +21,5 @@ <tr> <td width="30%"> -   <br /> + <br /> </td> <td width="20%" align="right"> @@ -31,10 +31,10 @@ </td> <td width="30%"> -   <br /> + <br /> </td> </tr> <tr> <td width="30%" align="center"> -   <br /> + <br /> </td> <td width="40%" valign="center" align="center" bgcolor="#000000" colspan="2" @@ -48,5 +48,5 @@ </td> <td width="30%"> -   <br/> + <br /> </td> </tr> Index: menu_bar.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/menu_bar.html,v retrieving revision 1.11 retrieving revision 1.12 diff -U2 -r1.11 -r1.12 --- menu_bar.html 2002/01/31 05:50:34 1.11 +++ menu_bar.html 2002/01/31 23:16:15 1.12 @@ -1,10 +1,10 @@ -<!--   <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>   |   --> +<!-- <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> -  <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=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=preferences_menu">prefs</a> -  <b>|</b>   <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=logout">logout</a><br /> Index: preferences.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/preferences.html,v retrieving revision 1.12 retrieving revision 1.13 diff -U2 -r1.12 -r1.13 --- preferences.html 2002/01/27 00:31:02 1.12 +++ preferences.html 2002/01/31 23:16:15 1.13 @@ -21,5 +21,5 @@ <tr> <td width="5%" align="center"> - <br />  <br /> + <br /> <br /> </td> <td width="30%" align="center"> @@ -27,5 +27,5 @@ </td> <td width="65%" align="center"> -   <br /> + <br /> </td> </tr> @@ -34,5 +34,5 @@ <tr> <td width="15%" align="center"> - <br />  <br /> + <br /> <br /> </td> <td width="10%" align="center"> @@ -40,5 +40,5 @@ </td> <td width="75%" align="center"> -   <br /> + <br /> </td> </tr> Index: repository.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/repository.html,v retrieving revision 1.2 retrieving revision 1.3 diff -U2 -r1.2 -r1.3 --- repository.html 2002/01/31 23:08:54 1.2 +++ repository.html 2002/01/31 23:16:15 1.3 @@ -60,5 +60,5 @@ <table width="100%" align="center" border="0"> <td width="15%" align="center"> -   <br /> + <br /> </td> <td width="10%" align="center"> @@ -66,5 +66,5 @@ </td> <td width="75%" align="center"> -   <br /> + <br /> </td> </tr> Index: sandbox.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/sandbox.html,v retrieving revision 1.3 retrieving revision 1.4 diff -U2 -r1.3 -r1.4 --- sandbox.html 2002/01/31 23:08:54 1.3 +++ sandbox.html 2002/01/31 23:16:15 1.4 @@ -10,5 +10,5 @@ </td> <td width="10%" align="center"> -   + </td> </tr> @@ -44,8 +44,8 @@ <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> + <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"> + <TMPL_VAR NAME="MODULE_DESC"> </td> <td width="25%" align="center"> @@ -53,5 +53,5 @@ </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> + <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> |
From: Rob H. <for...@us...> - 2002-01-31 23:08:57
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv18539 Modified Files: browse_module.html file_info.html repository.html sandbox.html vcs_output.html view_file.html Log Message: fixed various little xhtml issues so we'll go through validator.w3.org Index: browse_module.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/browse_module.html,v retrieving revision 1.4 retrieving revision 1.5 diff -U2 -r1.4 -r1.5 --- browse_module.html 2002/01/29 06:22:35 1.4 +++ browse_module.html 2002/01/31 23:08:54 1.5 @@ -86,6 +86,5 @@ <tr bgcolor="<TMPL_VAR NAME=COLOR>"> <td> - <input type="checkbox" name="filename" - value="<TMPL_VAR NAME=ENTRY>"> + <input type="checkbox" name="filename" value="<TMPL_VAR NAME=ENTRY>" /> <a name="<TMPL_VAR NAME=ENTRY>"> </input> Index: file_info.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/file_info.html,v retrieving revision 1.1 retrieving revision 1.2 diff -U2 -r1.1 -r1.2 --- file_info.html 2001/11/27 00:47:17 1.1 +++ file_info.html 2002/01/31 23:08:54 1.2 @@ -1,7 +1,7 @@ <p> <form> - <input name="<TMPL_VAR NAME=LOCATION>" type="hidden"> - <input name="<TMPL_VAR NAME=FULLPATH>" type="hidden"> - <input name="<TMPL_VAR NAME=PROGNAME>" type="hidden"> + <input name="<TMPL_VAR NAME=LOCATION>" type="hidden" /> + <input name="<TMPL_VAR NAME=FULLPATH>" type="hidden" /> + <input name="<TMPL_VAR NAME=PROGNAME>" type="hidden" /> </form> <TMPL_VAR NAME=FILENAME> Index: repository.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/repository.html,v retrieving revision 1.1 retrieving revision 1.2 diff -U2 -r1.1 -r1.2 --- repository.html 2002/01/31 05:50:34 1.1 +++ repository.html 2002/01/31 23:08:54 1.2 @@ -56,5 +56,5 @@ <input type="text" name="root" value="<TMPL_VAR NAME=ROOT>" /> </td> - <tr> + </tr> </table> <table width="100%" align="center" border="0"> Index: sandbox.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/sandbox.html,v retrieving revision 1.2 retrieving revision 1.3 diff -U2 -r1.2 -r1.3 --- sandbox.html 2002/01/31 05:50:34 1.2 +++ sandbox.html 2002/01/31 23:08:54 1.3 @@ -7,5 +7,5 @@ <tr> <td width="90%" align="center"> - <b>Please select a module to browse.</b><br> + <b>Please select a module to browse.</b><br /> </td> <td width="10%" align="center"> Index: vcs_output.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/vcs_output.html,v retrieving revision 1.10 retrieving revision 1.11 diff -U2 -r1.10 -r1.11 --- vcs_output.html 2002/01/28 19:53:29 1.10 +++ vcs_output.html 2002/01/31 23:08:54 1.11 @@ -5,7 +5,7 @@ <br /> <form> - <input name="<TMPL_VAR NAME=LOCATION>" type="hidden"> - <input name="<TMPL_VAR NAME=FULLPATH>" type="hidden"> - <input name="<TMPL_VAR NAME=PROGNAME>" type="hidden"> + <input name="<TMPL_VAR NAME=LOCATION>" type="hidden" /> + <input name="<TMPL_VAR NAME=FULLPATH>" type="hidden" /> + <input name="<TMPL_VAR NAME=PROGNAME>" type="hidden" /> </form> <font color="#FF0000"><TMPL_VAR NAME=VCS_ERROR></font> Index: view_file.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/view_file.html,v retrieving revision 1.25 retrieving revision 1.26 diff -U2 -r1.25 -r1.26 --- view_file.html 2002/01/28 19:53:29 1.25 +++ view_file.html 2002/01/31 23:08:54 1.26 @@ -13,5 +13,5 @@ <TMPL_VAR NAME=EDIT> <TMPL_VAR NAME=ERROR> - <br> + <br /> </td> </tr> |
From: Rob H. <for...@us...> - 2002-01-31 08:06:47
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv5007 Modified Files: sandweb.cgi Log Message: %repository_settings was referred to but only "my $repository_settings" had been defined. Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.143 retrieving revision 1.144 diff -U2 -r1.143 -r1.144 --- sandweb.cgi 2002/01/31 06:08:33 1.143 +++ sandweb.cgi 2002/01/31 08:06:45 1.144 @@ -50,4 +50,5 @@ my $userprefs; # user data loaded from users prefs config file my $repository_settings; # repository data loaded from users prefs config file +my %repository_settings; my $module_settings; # module data loaded from users prefs config file |
From: Nick J. <nje...@us...> - 2002-01-31 06:35:03
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv15273 Removed Files: repository_settings.html Log Message: * removed this mo'fo cuz it be OBSOLETE!! --- repository_settings.html DELETED --- |
From: Nick J. <nje...@us...> - 2002-01-31 06:08:39
|
Update of /cvsroot/sandweb/sandweb/bin In directory usw-pr-cvs1:/tmp/cvs-serv6548 Modified Files: sandweb.cgi Log Message: * working on internal repository & module stuff. not really started.. ;) Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.142 retrieving revision 1.143 diff -U2 -r1.142 -r1.143 --- sandweb.cgi 2002/01/31 05:50:34 1.142 +++ sandweb.cgi 2002/01/31 06:08:33 1.143 @@ -990,6 +990,8 @@ 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 @repos = sort keys %{repository_settings}; + + my $repo_type = $repository_settings->{'repository'}->{'repo_type'}; + my $connection = $repository_settings->{'repository'}->{'connection'}; my $vcsroot; |