From: Rob H. <for...@us...> - 2003-08-17 04:55:56
|
Update of /cvsroot/sandweb/sandweb/bin In directory sc8-pr-cvs1:/tmp/cvs-serv21800/bin Modified Files: sandweb-expect sandweb.cgi Log Message: reenabled inline editor, and moved bugfix for passwords not failing immediately if incorrect from branch Index: sandweb-expect =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb-expect,v retrieving revision 1.15 retrieving revision 1.16 diff -U2 -r1.15 -r1.16 --- sandweb-expect 9 Jul 2003 07:22:07 -0000 1.15 +++ sandweb-expect 17 Aug 2003 04:55:53 -0000 1.16 @@ -24,4 +24,12 @@ } expect { + "assword:" { send "$vcs_password\r" } + eof { exit 0 } + } + expect { + "assword:" { send "$vcs_password\r" } + eof { exit 0 } + } + expect { "denied" { exit 2 } "failure" { exit 2 } Index: sandweb.cgi =================================================================== RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v retrieving revision 1.360 retrieving revision 1.361 diff -U2 -r1.360 -r1.361 --- sandweb.cgi 18 Jul 2003 11:14:25 -0000 1.360 +++ sandweb.cgi 17 Aug 2003 04:55:53 -0000 1.361 @@ -1400,8 +1400,5 @@ } - # XXX FIXME - # the inline editor is disabled - - $edit = 0; + $edit = 1; $log->debug("creating Repository object"); @@ -1523,8 +1520,4 @@ ############################################################################### -# XXX FIXME the inline editor is disabled until such time as we can replace -# it with something better than a regular HTML input field, which -# has too many quirks ( e.g. strange EOL conventions ) to be -# a good enough editor # # edit file menu @@ -2326,8 +2319,4 @@ =head1 ############################################################################### -# XXX FIXME the inline editor is disabled until such time as we can replace -# it with something better than a regular HTML input field, which -# has too many quirks ( e.g. strange EOL conventions ) to be -# a good enough editor # # edit_file_commit is called by edit_file_menu to save edited data |