--- docman.php 2000/08/04 11:23:07 1.10 +++ docman.php 2000/09/06 10:49:15 1.13 @@ -66,6 +66,8 @@ mixed file/directory output (add type to each entry, real support for links) retrieve old versions of files (overwritten) + show last lock date + */ ////////////////////////////////////////////////////////////////// @@ -843,11 +845,11 @@
-To just view file without editing, select it's filename (don't edit files which are opened this way!)
-To edit file select to check-out -and edit it locally. After editing is over, select filename or to check-in (update copy of file on server).
-If you select icon left from filename, you will get detailed information -about file, as well as delete, rename and annotation options. +
@@ -1299,6 +1301,9 @@ safe_rename("$fsDir/.log/$FN","$fsDir/.log/$NEWNAME"); safe_rename("$fsDir/.note/$FN","$fsDir/.note/$NEWNAME"); safe_rename("$fsDir/.lock/$FN","$fsDir/.lock/$NEWNAME"); + for($i=0;$i<=$GLOBALS[gblNumBackups];$i++) { + safe_rename("$fsDir/.bak/$i/$FN","$fsDir/.bak/$i/$NEWNAME"); + } break ; @@ -1353,6 +1358,7 @@ case "Co" : // checkout Lock("$gblFsRoot/$relDir/$F"); + header("Content-Disposition: attachment; filename=$F" ); Header("Location: ".urlpath("$relDir/$F")); exit; case "Ci" : @@ -1368,6 +1374,7 @@ case "V" : // view LogIt("$gblFsRoot/$relDir/$F","viewed"); + header("Content-Disposition: attachment; filename=$F" ); Header("Location: ".urlpath("$relDir/$F")); exit; }