/[docman]/docman.php
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /docman.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by dpavlin, Wed Jul 26 11:46:19 2000 UTC revision 1.23 by dpavlin, Wed Sep 13 09:59:51 2000 UTC
# Line 65  IMPORTANT INSTALLATION NOTE: Line 65  IMPORTANT INSTALLATION NOTE:
65  TODO:  TODO:
66          mixed file/directory output (add type to each entry,          mixed file/directory output (add type to each entry,
67                  real support for links)                  real support for links)
68          add more content-management (like cms.sourceforge.net):          retrieve old versions of files (overwritten)
69                  check-out/check-in/reserve          show last lock date
70                  comments to files          
71  */  */
72    
73  //////////////////////////////////////////////////////////////////  //////////////////////////////////////////////////////////////////
# Line 96  TODO: Line 96  TODO:
96          $gblPw    = "";          $gblPw    = "";
97    
98          if ($gblAuth) {          if ($gblAuth) {
99                  $htusers=fopen(dirname($SCRIPT_FILENAME)."/.htusers","r");                  $htusers_file=dirname($SCRIPT_FILENAME)."/.htusers";
100                    if (! file_exists($htusers_file)) {
101                            $htusers=fopen($htusers_file,"a+");
102                            fputs($htusers,"# Change owner of $htusers_file to root !!\n");
103                            fputs($htusers,"demo:full name:md5_hash\n");
104                            fclose($htusers);
105                    }
106                    $htusers=fopen($htusers_file,"r");
107                  while($user = fgetcsv($htusers,255,":")) {                  while($user = fgetcsv($htusers,255,":")) {
108                          if ($user[0] == $GLOBALS["PHP_AUTH_USER"]) {                          if ($user[0] == $GLOBALS["PHP_AUTH_USER"]) {
109                                  $gblUserName=$user[1];                                  $gblUserName=$user[1];
110                                  $gblPw=$user[2];                                  $gblPw=$user[2];
111                                    $gblEmail=$user[3];
112                                  continue ;                                  continue ;
113                          }                          }
114                  }                  }
# Line 113  TODO: Line 121  TODO:
121          $gblDateFmt="Y-m-d";          $gblDateFmt="Y-m-d";
122          $gblTimeFmt="H:i:s";          $gblTimeFmt="H:i:s";
123    
124  // Number of backup files to keep          // Number of backup files to keep
125          $gblNumBackups=5;          $gblNumBackups=3;
126    
127            // show red star if newer than ... days
128            $gblModDays=1;
129    
130          // choose GifIcon below unless you have the M$          // choose GifIcon below unless you have the M$
131          // WingDings font installed on your system          // WingDings font installed on your system
# Line 124  TODO: Line 135  TODO:
135          // the directory below should be /icons/ or /icons/small/          // the directory below should be /icons/ or /icons/small/
136          // on Apache; a set of icons is included in the distribution          // on Apache; a set of icons is included in the distribution
137    
138          $gblIconLocation = "icons/" ;          $gblIconLocation = "/icons/" ;
139    
140          // files you want to be able to edit in text mode          // files you want to be able to edit in text mode
141          // and view with (primitive) syntax highlighting          // and view with (primitive) syntax highlighting
# Line 150  function StartHTML($title,$text="") { Line 161  function StartHTML($title,$text="") {
161    
162  <HTML>  <HTML>
163  <HEAD>  <HEAD>
164   <TITLE><?php echo $host . " " . $title ?></TITLE>   <TITLE><?= $host . " " . $title ?></TITLE>
165   <META NAME="description" CONTENT="PHP port of AnyPortal Site Manager">   <META NAME="description" CONTENT="PHP port of AnyPortal Site Manager">
166   <META NAME="keywords" CONTENT="site manager, web site maintenance">   <META NAME="keywords" CONTENT="site manager, web site maintenance">
167   <META NAME="robots" CONTENT="noindex">   <META NAME="robots" CONTENT="noindex">
168   <META HTTP-EQUIV="expires" CONTENT="0">   <META HTTP-EQUIV="expires" CONTENT="0">
169   <LINK REL="stylesheet" TYPE="text/css"   <LINK REL="stylesheet" TYPE="text/css"
170          HREF="<?php echo $self ?>?STYLE=get">          HREF="<?= $self ?>?STYLE=get">
171  </HEAD>  </HEAD>
172  <BODY BGCOLOR="#FFFFFF">  <BODY BGCOLOR="#FFFFFF">
173   <H3 ALIGN="RIGHT"><?php echo $host ?></H3>   <H3 ALIGN="RIGHT"><?= $host ?></H3>
174  <TABLE BORDER=0 WIDTH="100%"><TR>  <TABLE BORDER=0 WIDTH="100%"><TR>
175   <TD CLASS=INV><?php echo $title ?></TD></TR></TABLE>   <TD CLASS=INV><?= $title ?></TD></TR></TABLE>
176   <P><?php echo $text ?></P>   <P><?= $text ?></P>
177    
178  <?php  <?php
179  } // end function StartHTML  } // end function StartHTML
# Line 177  function EndHTML() { Line 188  function EndHTML() {
188  <B><?= date($GLOBALS[gblDateFmt]) ?> -  <B><?= date($GLOBALS[gblDateFmt]) ?> -
189  <?= date($GLOBALS[gblTimeFmt]) ?> -  <?= date($GLOBALS[gblTimeFmt]) ?> -
190  <?= $GLOBALS[gblUserName] ?>  <?= $GLOBALS[gblUserName] ?>
191  <small> [<a href="<?= $PHP_SELF ?>?relogin=<?= $GLOBALS[gblPw] ?>">logout</a>]</small>  <small> [<a href="<?= $GLOBALS["PHP_SELF"] ?>?relogin=<?= $GLOBALS[gblPw] ?>">logout</a>]</small>
192  </B>  </B>
193  <BR>ANYPORTAL(php) Site Manager  <BR>ANYPORTAL(php) Site Manager
194  <br><small>  <br><small>
# Line 187  function EndHTML() { Line 198  function EndHTML() {
198  </small>  </small>
199  </P>  </P>
200  <BR>  <BR>
201  <? //include("../debug.inc") ?>  <? //include(".debug.inc") ?>
202  <BR><BR></BODY></HTML>  <BR><BR></BODY></HTML>
203    
204  <?php  <?php
# Line 233  function DetailPage($fsRoot,$relDir,$fn) Line 244  function DetailPage($fsRoot,$relDir,$fn)
244          $ext      = strtolower(strrchr($relPath,".")) ;          $ext      = strtolower(strrchr($relPath,".")) ;
245          $editable = ( $ext=="" || strstr(join(" ",$gblEditable),$ext)) ;          $editable = ( $ext=="" || strstr(join(" ",$gblEditable),$ext)) ;
246          $writable = is_writeable($fsPath) ;          $writable = is_writeable($fsPath) ;
247            $file_lock = CheckLock($fsPath);
248    
249          if (!$editable && !$exists)          if (!$editable && !$exists)
250                  Error("Creation unsupported for type",$relPath) ;                  Error("Creation unsupported for type",$relPath) ;
# Line 247  function DetailPage($fsRoot,$relDir,$fn) Line 259  function DetailPage($fsRoot,$relDir,$fn)
259    
260          echo "<H3>" . $relDir . "/" . $fn . "</H3>" ;          echo "<H3>" . $relDir . "/" . $fn . "</H3>" ;
261          if ($exists) {  // get file info          if ($exists) {  // get file info
262            $fsize = filesize($fsPath) ;                  $fsize = filesize($fsPath) ;
263            $fmodified = date("$GLOBALS[gblDateFmt] $GLOBALS[gblTimeFmt]", filemtime($fsPath)) ;                  $fmodified = date("$GLOBALS[gblDateFmt] $GLOBALS[gblTimeFmt]", filemtime($fsPath)) ;
264            $faccessed = date("$GLOBALS[gblDateFmt] $GLOBALS[gblTimeFmt]", fileatime($fsPath)) ;                  $faccessed = date("$GLOBALS[gblDateFmt] $GLOBALS[gblTimeFmt]", fileatime($fsPath)) ;
265            echo "<PRE>    file size: " . $fsize . " Bytes<BR>" ;                  echo "<PRE>    file size: " . $fsize . " Bytes<BR>" ;
266            echo "last modified: <B>" . $fmodified . "</B><BR>" ;                  echo "last modified: <B>" . $fmodified . "</B><BR>" ;
267            echo "last accessed: <B>" . $faccessed . "</B><BR>" ;                  echo "last accessed: <B>" . $faccessed . "</B><BR>" ;
268            echo "        owner: <B>" . fileowner($fsPath) . "</B><BR>" ;                  echo "        owner: <B>" . fileowner($fsPath) . "</B><BR>" ;
269            echo "        group: <B>" . filegroup($fsPath) . "</B><BR>" ;                  echo "        group: <B>" . filegroup($fsPath) . "</B><BR>" ;
270            echo "  permissions: <B>" ;                  echo "  permissions: <B>" ;
271            echo printf( "%o", fileperms($fsPath) ) . "</B>" ;                  echo printf( "%o", fileperms($fsPath) ) . "</B>" ;
272            echo "</PRE>" ;                  echo "</PRE>" ;
273    
274          }          }
275    
276          if ( $editable && ($writable || !$exists) ) {          if ( $editable && ($writable || !$exists) && !$file_lock ) {
277                  $fh = fopen($fsPath,"a+") ;                  $fh = fopen($fsPath,"a+") ;
278                  rewind($fh) ;                  rewind($fh) ;
279                  $fstr = fread($fh,filesize($fsPath)) ;                  $fstr = fread($fh,filesize($fsPath)) ;
# Line 269  function DetailPage($fsRoot,$relDir,$fn) Line 281  function DetailPage($fsRoot,$relDir,$fn)
281                  $fstr = htmlentities( $fstr ) ;                  $fstr = htmlentities( $fstr ) ;
282  ?>  ?>
283    
284  <FORM ACTION="<?php echo $self ; ?>" METHOD="POST">  <FORM ACTION="<?= $self ; ?>" METHOD="POST">
285  <SPAN TITLE="Click [SAVE] to store updated contents.">  <SPAN TITLE="Click [SAVE] to store updated contents.">
286          <B>DOCUMENT CONTENTS</B>          <B>DOCUMENT CONTENTS</B>
287  </SPAN><BR>  </SPAN><BR>
288  <TEXTAREA NAME="FILEDATA" ROWS=18 COLS=70 WRAP="OFF"><?php  <TEXTAREA NAME="FILEDATA" ROWS=18 COLS=70 WRAP="OFF"><?php
289  echo($fstr) ; ?></TEXTAREA>  echo($fstr) ; ?></TEXTAREA>
290  <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?php echo $relDir ; ?>">  <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?= $relDir ; ?>">
291  <INPUT TYPE="HIDDEN" NAME="FN" VALUE="<?php echo $fn ; ?>">  <INPUT TYPE="HIDDEN" NAME="FN" VALUE="<?= $fn ; ?>">
292  <INPUT TYPE="HIDDEN" NAME="POSTACTION" VALUE="SAVE">  <INPUT TYPE="HIDDEN" NAME="POSTACTION" VALUE="SAVE">
293  <INPUT TYPE="HIDDEN" SIZE=48 MAXLENGTH=255 NAME="RELPATH"  <INPUT TYPE="HIDDEN" SIZE=48 MAXLENGTH=255 NAME="RELPATH"
294          VALUE="<?php echo $relPath ; ?>">          VALUE="<?= $relPath ; ?>">
295  <br>  <br>
296  <INPUT TYPE="RESET" VALUE="UNDO ALL CHANGES">  <INPUT TYPE="RESET" VALUE="UNDO ALL CHANGES">
297  <INPUT TYPE="SUBMIT" VALUE="SAVE">  <INPUT TYPE="SUBMIT" VALUE="SAVE">
# Line 287  echo($fstr) ; ?></TEXTAREA> Line 299  echo($fstr) ; ?></TEXTAREA>
299    
300  <?php  <?php
301          }          }
302          else if ( strstr( join(" ",$gblImages), $ext ) ) {            if ( !$file_lock && $ext!="" && strstr(join(' ',$gblImages),$ext) ) {  
303            $info  = getimagesize($fsPath) ;                  $info  = getimagesize($fsPath) ;
304            $tstr  = "<IMG SRC=\"". $relPath . "\" BORDER=0 " ;                  $tstr = "<IMG SRC=\"".urlpath($relPath)."\" BORDER=0 " ;
305            $tstr .= $info[3] . " ALT=\"" . $fn . " - " ;                  $tstr .= $info[3] . " ALT=\"" . $fn . " - " ;
306            $tstr .= (int)(($fsize+1023)/1024) . "Kb\">" ;                  $tstr .= (int)(($fsize+1023)/1024) . "Kb\">" ;
307            echo htmlentities($tstr) . "<BR><BR>" . $tstr ;  //              echo htmlentities($tstr) . "<BR><BR>" . $tstr ;
308                    echo $tstr ;
309          }          }
310    
311  ?>  ?>
312    
313  <FORM ACTION="<?php echo $self ; ?>" METHOD="POST">  <FORM ACTION="<?= $self ; ?>" METHOD="POST">
314  <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?php echo $relDir ; ?>">  <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?= $relDir ; ?>">
315  <INPUT TYPE="HIDDEN" NAME="FN" VALUE="<?php echo $fn ; ?>">  <INPUT TYPE="HIDDEN" NAME="FN" VALUE="<?= $fn ; ?>">
316  <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="CANCEL"><BR>  <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="CANCEL"><BR>
317    
318  <?php  <?php
319    
320            if ($file_lock) {
321    ?>
322    <hr>
323    <SPAN TITLE="Check OK and click UNLOCK to remove lock on file.">
324    <B>OK TO FORCE LOCK REMOVAL ON "<?= $fn ; ?>" HELD BY <?= $file_lock ?>? </B></SPAN>
325    <INPUT TYPE="CHECKBOX" NAME="CONFIRM">
326    <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="UNLOCK">
327    <?
328            } // file_lock
329    
330          if (substr($fn,0,4) == ".del") {          if (substr($fn,0,4) == ".del") {
331                  $action="UNDELETE";                  $action="UNDELETE";
332                  $desc="undelete previously deleted file";                  $desc="undelete previously deleted file";
# Line 313  echo($fstr) ; ?></TEXTAREA> Line 338  echo($fstr) ; ?></TEXTAREA>
338          if ($exists && $writable) {          if ($exists && $writable) {
339  ?>  ?>
340    
341  <HR><SPAN TITLE="Check OK and click [<?= $action ?>] to <?= $desc ?>.">  <HR>
342  <B>OK TO <?= $action ?> "<?php echo $fn ; ?>"? </B></SPAN>  <a name="undelete">
343    <SPAN TITLE="Check OK and click [<?= $action ?>] to <?= $desc ?>.">
344    <B>OK TO <?= $action ?> "<?= $fn ; ?>"? </B></SPAN>
345  <INPUT TYPE="CHECKBOX" NAME="CONFIRM">  <INPUT TYPE="CHECKBOX" NAME="CONFIRM">
346  <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="<?= $action ?>">  <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="<?= $action ?>">
347    
348  <HR><SPAN TITLE="Check OK and click [RENAME] to rename.">  <HR>
349  <B>OK TO RENAME "<?php echo $fn ; ?>" TO  <a name="rename">
350    <SPAN TITLE="Check OK and click [RENAME] to rename.">
351    <B>OK TO RENAME "<?= $fn ; ?>" TO
352  <INPUT TYPE="TEXT" SIZE=24 MAXLENGTH=255 NAME="NEWNAME" VALUE="<?= $fn ?>">  <INPUT TYPE="TEXT" SIZE=24 MAXLENGTH=255 NAME="NEWNAME" VALUE="<?= $fn ?>">
353  ? </B></SPAN>  ? </B></SPAN>
354  <INPUT TYPE="CHECKBOX" NAME="CONFIRM">  <INPUT TYPE="CHECKBOX" NAME="CONFIRM">
355  <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="RENAME">  <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="RENAME">
356    
357  <?php  <?php
358          }          }       // exists && writable
359          echo "</FORM>" ;  ?>
360    <HR>
361    <a name="note">
362    <B>NOTE FOR "<?= $fn ; ?>":
363    <INPUT TYPE="TEXT" SIZE=50 MAXLENGTH=255 NAME="NOTE" VALUE="<?= ReadNote($fsPath) ?>">
364    </B></SPAN>
365    <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="NOTE">
366    
367    </FORM>
368    
369          $logname=dirname("$fsDir/$fn")."/.log/".basename("$fsDir/$fn");  <?php
370    
371            $name=basename("$fsDir/$fn");
372            $logname=dirname("$fsDir/$fn")."/.log/$name";
373            $bakdir=dirname("$fsDir/$fn")."/.bak";
374          if (file_exists($logname)) {          if (file_exists($logname)) {
                 print "<hr><br><b>CHANGES TO THIS FILE</b><br><table border=0 width=100%>\n";  
375                  $log=fopen($logname,"r");                  $log=fopen($logname,"r");
376                  $cl1=" class=lst"; $cl2="";                  $cl1=" class=lst"; $cl2="";
377                    $logarr = array();
378                  while($line = fgetcsv($log,255,"\t")) {                  while($line = fgetcsv($log,255,"\t")) {
379                          $cl=$cl1; $cl1=$cl2; $cl2=$cl;                          $cl=$cl1; $cl1=$cl2; $cl2=$cl;
380                          print "<tr><td$cl>$line[0]</td><td$cl>$line[1]</td><td$cl>$line[2]</td><td$cl>$line[3]</td></tr>\n";                          array_unshift($logarr,array($cl,$line[0],$line[1],$line[2],$line[3]));
381                  }                  }
382                  fclose($log);                  fclose($log);
383                    print "<hr><br><b>CHANGES TO THIS FILE</b><br><table border=0 width=100%>\n";
384                    $bakcount = 0;  // start from 0, skip fist backup (it's current)
385                    while ($e = array_shift($logarr)) {
386                            if (strstr($e[4],"upload")) {
387                                    if (file_exists("$bakdir/$bakcount/$name")) {
388                                            $e[4]="<a href=\"".dirname($relPath)."/.bak/$bakcount/$name\">$e[4]</a>";
389                                    }
390                                    $bakcount++;
391                            }
392                            print "<tr><td$e[0]>$e[1]</td><td$e[0]>$e[2]</td><td$e[0]>$e[3]</td><td$e[0]>$e[4]</td></tr>\n";
393                    }
394                  print "</table>";                  print "</table>";
395          }          }
396    
# Line 571  function GifIcon($txt) { Line 623  function GifIcon($txt) {
623          case "blank" :          case "blank" :
624                  $d = "blank.gif" ;                  $d = "blank.gif" ;
625                  break ;                  break ;
626            case "checkout":
627                    $d = "box2.gif";
628                    break;
629            case "checkin":
630                    $d = "hand.up.gif";
631                    break;
632            case "locked":
633                    $d = "screw2.gif";
634                    break;
635            case "note":
636                    $d = "quill.gif";
637                    break;
638          default :          default :
639                  $d = "generic.gif" ;                  $d = "generic.gif" ;
640          }          }
# Line 582  function GifIcon($txt) { Line 646  function GifIcon($txt) {
646    
647  function Navigate($fsRoot,$relDir) {  function Navigate($fsRoot,$relDir) {
648    
649          global $gblEditable, $gblIcon ;          global $gblEditable, $gblIcon, $gblModDays ;
650    
651          $self     = $GLOBALS["PHP_SELF"] ;          $self     = $GLOBALS["PHP_SELF"] ;
652          if (isset($GLOBALS["HTTPS"]) && $GLOBALS["HTTPS"] == "on") {          if (isset($GLOBALS["HTTPS"]) && $GLOBALS["HTTPS"] == "on") {
# Line 628  function Navigate($fsRoot,$relDir) { Line 692  function Navigate($fsRoot,$relDir) {
692          // start navigation page          // start navigation page
693          $text  = "Use this page to add, delete";          $text  = "Use this page to add, delete";
694          if (! isset($show_deleted)) {          if (! isset($show_deleted)) {
695                  $text .= ", <a href=$PHP_SELF?show_deleted=1>undelete</a>";                  $text .= ", <a href=$self?D=".urlencode($relDir)."&show_deleted=1>undelete</a>";
696          }          }
697          $text .= " or revise files on this web site." ;          $text .= " or revise files on this web site." ;
698            $text .= "<br>Examine list of files <a href=\"$self?A=Ch1\">changed in last day</a> or <a href=\"$self?A=Ch\">all changes</a>.";
699          StartHTML("(Navigate)",$text) ;          StartHTML("(Navigate)",$text) ;
700    
701          echo "<TABLE BORDER=0 CELLPADDING=2          echo "<TABLE BORDER=0 CELLPADDING=2
# Line 642  function Navigate($fsRoot,$relDir) { Line 707  function Navigate($fsRoot,$relDir) {
707                  if ($parent == "") $parent = "/" ;                  if ($parent == "") $parent = "/" ;
708  ?>  ?>
709    
710  <TR><TD><?php echo $gblIcon("up") ?></TD><TD COLSPAN=4 CLASS=LST>  <TR><TD><?= $gblIcon("up") ?></TD><TD COLSPAN=5 CLASS=LST>
711  <A HREF="<?php echo $self ?>?D=<?php echo urlencode($parent) ?>">  <A HREF="<?= $self ?>?D=<?= urlencode($parent) ?>">
712  <B><?php echo $parent ?></B></A></TD></TR>  <B><?= $parent ?></B></A></TD></TR>
713    
714  <?php  <?php
715          }          }
# Line 654  function Navigate($fsRoot,$relDir) { Line 719  function Navigate($fsRoot,$relDir) {
719                  sort($dirList) ;                  sort($dirList) ;
720  ?>  ?>
721    
722  <TR><TD></TD><TD COLSPAN=4 CLASS=TOP><HR>DIRECTORY NAME</TD></TR>  <TR><TD></TD><TD COLSPAN=5 CLASS=TOP><HR>DIRECTORY NAME</TD></TR>
723    
724  <?php  <?php
725                  while (list($key,$dir) = each($dirList)) {                  while (list($key,$dir) = each($dirList)) {
# Line 664  function Navigate($fsRoot,$relDir) { Line 729  function Navigate($fsRoot,$relDir) {
729                          $tstr .= "\">" . $dir . "/</A>" ;                          $tstr .= "\">" . $dir . "/</A>" ;
730  ?>  ?>
731    
732  <TR><TD><?php echo $gblIcon("fldr") ?></TD>  <TR><TD><?= $gblIcon("fldr") ?></TD>
733  <TD COLSPAN=4 CLASS=LST><?php echo $tstr ?></TD></TR>  <TD COLSPAN=5 CLASS=LST><?= $tstr ?></TD></TR>
734    
735  <?php  <?php
736                  }  // iterate over dirs                  }  // iterate over dirs
737          }  // end if no dirs          }  // end if no dirs
738  ?>  ?>
739    
740  <TR><TD></TD><TD COLSPAN=4><HR><B><?php echo $webRoot . $relDir ?>  <TR><TD></TD><TD COLSPAN=5><HR><B><?= $webRoot . $relDir ?>
741  </B></TD></TR>  </B></TD></TR>
742  <TR><TD></TD><TD CLASS=TOP>DOCUMENT NAME</TD>  <TR><TD></TD><TD CLASS=TOP>DOCUMENT NAME</TD>
743  <TD><?php echo $gblIcon("blank") ?></TD>  <TD><?= $gblIcon("blank").$gblIcon("blank") ?></TD>
744    <TD CLASS=TOP>NOTE</TD>
745  <TD CLASS=TOP>LAST UPDATE</TD><TD CLASS=TOP>FILE SIZE</TD></TR>  <TD CLASS=TOP>LAST UPDATE</TD><TD CLASS=TOP>FILE SIZE</TD></TR>
746    
747  <?php  <?php
748          if (sizeof($fileList) > 0) {          if (sizeof($fileList) > 0) {
749            sort($fileList) ;            sort($fileList) ;
750            while (list($key,$file) = each($fileList)) {              while (list($key,$file) = each($fileList)) {  
751              $path = $fsDir."/".$file ;                  $path = $fsDir."/".$file ;
752              $mod  = filemtime($path) ;                  $mod  = filemtime($path) ;
753              $sz   = filesize($path) ;                  $sz   = filesize($path) ;
754    
755              if ($sz >= 10240) {                  if ($sz >= 10240) {
756                $sz = (int)(($sz+1023)/1024) . " k" ;                          $sz = (int)(($sz+1023)/1024) . " k" ;
757              }                  } else {
758              else {                          $sz .= " " ;
759                $sz .= " " ;                  } // end size
             } // end size  
   
             $a = $b = "" ;  
   
             if ( ($mod + 30*86400) > time() ) {  
               $a  = "<SPAN CLASS=RED TITLE=\"Newer" ;  
               $a .= " than 30 days\"> * </SPAN>" ;  
             }  
760    
761              $tstr = $webRoot . $relDir . "/" . $file ;                  $a = $b = "" ;
762              $tstr  = "<A HREF=\"" . $tstr . "\">" ;  
763                    $info_url=$self."?A=E&F=".urlencode($file)."&D=".urlencode($relDir);
764    
765                    if ( ($mod + $gblModDays*86400) > time() ) {
766                            $a  = "<SPAN CLASS=RED TITLE=\"Newer" ;
767                            $a .= " than $gblModDays days\"> * </SPAN>" ;
768                    }
769    
770                    $file_lock=CheckLock($path);
771    
772                    $file_url_html="<A HREF=\"$self?A=V&F=".urlencode($file);
773                    $file_url_html.="&D=".urlencode($relDir);
774                    $file_url_html.="\" TITLE=\"View file\">" ;
775    
776                  if (substr($file,0,5) != ".del/") {                  if (substr($file,0,5) != ".del/") {
777                          $tstr .= $file . "</A>" . $a ;                          $file_url_html .= $file . "</A>" . $a ;
778                    } else {
779                            $file_url_html .= substr($file,5,strlen($file)-5) . "</a> <SPAN CLASS=RED TITLE=\"deleted\"> <a href=\"$info_url#undelete\">deleted</a> </span>";
780                    }
781    
782                    $note_html="<a href=\"$info_url#note\">".$gblIcon("note")."</a>".ReadNote($path);
783    
784                    $ext = strtolower(strrchr($file,".")) ;
785    
786                    if ($file_lock) {
787                            if ($file_lock == $GLOBALS[gblUserName]) {
788                                    $b.="<A HREF=\"$self?A=Ci&F=".urlencode($file);
789                                    $b.="&D=".urlencode($relDir);
790                                    $b.="\" TITLE=\"Checkin (update) file on server\">" ;
791                                    $file_url_html=$b;
792                                    $b.=$gblIcon("checkin")."</A>" ;
793                                    $b.= $gblIcon("blank");
794                                    $file_url_html.="$file</a> $a";
795                                    $note_html = $gblIcon("blank")."<b>Please check-in (update) this file</b>";
796                            } else {
797                                    $b = $gblIcon("locked");
798                                    $b.= $gblIcon("blank");
799                                    $note_html = $gblIcon("blank")."<b>File locked by $file_lock</b>";
800                                    $file_url_html = "$file $a";
801                            }
802                  } else {                  } else {
803                          $tstr .= substr($file,5,strlen($file)-5) . "</a> <SPAN CLASS=RED TITLE=\"deleted\"> deleted </span>";                          $b.="<A HREF=\"$self?A=Co&F=".urlencode($file);
804                            $b.="&D=".urlencode($relDir);
805                            $b.="\" TITLE=\"Checkout file for edit\">" ;
806                            $b.=$gblIcon("checkout")."</A>" ;
807    
808                            if ( $ext=="" || strstr(join(" ",$gblEditable),$ext) ) {  
809                                    $b.="<A HREF=\"$self?A=C&F=".urlencode($file);
810                                    $b.="&D=".urlencode($relDir);
811                                    $b.="\" TITLE=\"List contents\">" ;
812                                    $b.=$gblIcon("view")."</A>" ;
813                            } else {
814                                    $b.= $gblIcon("blank");
815                            }
816                  }                  }
817    
             $ext = strtolower(strrchr($file,".")) ;  
             if ( $ext=="" ||  
                  strstr(join(" ",$gblEditable),$ext) )  
             {    
               $b  = "<A HREF=\"" . $self . "?A=C&F=" ;  
               $b .= urlencode($file) . "&D=" . urlencode($relDir) ;  
               $b .= "\" TITLE=\"List contents\">" ;  
               $b .= $gblIcon("view") . "</A>" ;  
             }  
818    
819  ?>  ?>
820    
821  <TR><TD>  <TR><TD>
822  <A HREF="<?php echo $self ?>?A=E&F=<?php echo urlencode($file)  <A HREF="<?= $info_url ?>" TITLE="View/Edit">
823  ?>&D=<?php echo urlencode($relDir) ?>" TITLE="View/Edit">  <?= $gblIcon($ext) ?></A></TD>
824  <?php echo $gblIcon($ext) ?></A></TD>  <TD CLASS=LST><?= $file_url_html ?></TD>
825  <TD CLASS=LST><?php echo $tstr ?></TD>  <TD CLASS=LST ALIGN=center><?= $b ?></TD>
826  <TD CLASS=LST ALIGN=center><?php echo $b ?></TD>  <TD CLASS=LST ALIGN=left><?= $note_html ?></TD>
827  <TD CLASS=LST><?php echo date("$GLOBALS[gblDateFmt] $GLOBALS[gblTimeFmt]",$mod) ?></TD>  <TD CLASS=LST><?= date("$GLOBALS[gblDateFmt] $GLOBALS[gblTimeFmt]",$mod) ?></TD>
828  <TD CLASS=LST><?php echo $sz ?>Bytes</TD></TR>  <TD CLASS=LST><?= $sz ?>Bytes</TD></TR>
829    
830  <?php  <?php
831            }  // iterate over files            }  // iterate over files
# Line 737  function Navigate($fsRoot,$relDir) { Line 834  function Navigate($fsRoot,$relDir) {
834          if ($emptyDir) {          if ($emptyDir) {
835  ?>  ?>
836    
837  <FORM METHOD="POST" ACTION="<?php echo $self ?>">  <FORM METHOD="POST" ACTION="<?= $self ?>">
838   <TR><TD></TD><TD COLSPAN=4 CLASS=BAR>   <TR><TD></TD><TD COLSPAN=5 CLASS=BAR>
839    <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?php echo $relDir ?>">    <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?= $relDir ?>">
840    OK TO DELETE THIS EMPTY FOLDER?    OK TO DELETE THIS EMPTY FOLDER?
841    <INPUT TYPE="CHECKBOX" NAME="CONFIRM">    <INPUT TYPE="CHECKBOX" NAME="CONFIRM">
842    <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="DELETE">    <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="DELETE">
# Line 750  function Navigate($fsRoot,$relDir) { Line 847  function Navigate($fsRoot,$relDir) {
847          } // end if emptyDir          } // end if emptyDir
848  ?>  ?>
849    
850  <TR><TD></TD><TD COLSPAN=4><HR></TD></TR>  <TR><TD></TD><TD COLSPAN=5><HR></TD></TR>
851    
852    <TR><TD></TD><TD COLSPAN=5>
853    <?
854    if (file_exists(".info.inc")) {
855            include(".info.inc");
856    }
857    ?>
858    </TD></TR>
859    
860    <TR><TD></TD><TD COLSPAN=5><HR></TD></TR>
861    
862  <FORM METHOD="POST" ACTION="<?php echo $self ?>">  <FORM METHOD="POST" ACTION="<?= $self ?>">
863  <TR><TD></TD><TD COLSPAN=4 CLASS=BAR>CREATE NEW  <TR><TD></TD><TD COLSPAN=5 CLASS=BAR>CREATE NEW
864   <INPUT TYPE="RADIO" NAME="T" VALUE="D" CHECKED>DIRECTORY -OR-   <INPUT TYPE="RADIO" NAME="T" VALUE="D" CHECKED>DIRECTORY -OR-
865   <INPUT TYPE="RADIO" NAME="T" VALUE="F">FILE : &nbsp;&nbsp;   <INPUT TYPE="RADIO" NAME="T" VALUE="F">FILE : &nbsp;&nbsp;
866   <NOBR>NAME <INPUT TYPE="TEXT" NAME="FN" SIZE=14>   <NOBR>NAME <INPUT TYPE="TEXT" NAME="FN" SIZE=14>
867   <INPUT TYPE="HIDDEN" NAME="POSTACTION" VALUE="CREATE">   <INPUT TYPE="HIDDEN" NAME="POSTACTION" VALUE="CREATE">
868   <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?php echo $relDir ?>">   <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?= $relDir ?>">
869   <INPUT TYPE="SUBMIT" VALUE="CREATE"></NOBR>   <INPUT TYPE="SUBMIT" VALUE="CREATE"></NOBR>
870   <NOBR>OR <A HREF="<?php echo $self   <NOBR>OR <A HREF="<?= $self ?>?A=U&D=<?= urlencode($relDir) ?>">UPLOAD</A> A FILE
         ?>?A=U&D=<?php echo urlencode($relDir) ?>">UPLOAD</A> A FILE  
871   </NOBR>   </NOBR>
872  </TD></TR>  </TD></TR>
873  </FORM>  </FORM>
# Line 773  function Navigate($fsRoot,$relDir) { Line 879  function Navigate($fsRoot,$relDir) {
879    
880  //////////////////////////////////////////////////////////////////  //////////////////////////////////////////////////////////////////
881    
882  function UploadPage($fsRoot, $relDir) {  function UploadPage($fsRoot, $relDir, $filename) {
883    
884          $self = $GLOBALS["PHP_SELF"] ;          $self = $GLOBALS["PHP_SELF"] ;
885          if ($relDir == "") $relDir = "/" ;          if ($relDir == "") $relDir = "/" ;
# Line 781  function UploadPage($fsRoot, $relDir) { Line 887  function UploadPage($fsRoot, $relDir) {
887    
888  <P><TABLE BORDER=0 CELLPADDING=5><TR><TD WIDTH=5></TD><TD CLASS=BAR>  <P><TABLE BORDER=0 CELLPADDING=5><TR><TD WIDTH=5></TD><TD CLASS=BAR>
889  <FORM ENCTYPE="multipart/form-data" METHOD="POST"  <FORM ENCTYPE="multipart/form-data" METHOD="POST"
890   ACTION="<?php echo $self ?>">   ACTION="<?= $self ?>">
891  DESTINATION DIRECTORY:<B><?php echo " " . $relDir ?></B>  DESTINATION DIRECTORY:<B><?= " " . $relDir ?></B>
892    <? if (isset($filename)) { ?>
893    <br>DESTINATION FILE:<B><?= " " . $filename ?></B>
894    <INPUT TYPE="HIDDEN" NAME="FILENAME" VALUE="<?= $filename ?>">
895    <? } ?>
896  <P>PATHNAME OF LOCAL FILE<BR>  <P>PATHNAME OF LOCAL FILE<BR>
897  <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?php echo $relDir ?>">  <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?= $relDir ?>">
898  <INPUT TYPE="HIDDEN" NAME="POSTACTION" VALUE="UPLOAD">  <INPUT TYPE="HIDDEN" NAME="POSTACTION" VALUE="UPLOAD">
899  <INPUT SIZE=30 TYPE="FILE" NAME="FN"></P>  <INPUT SIZE=30 TYPE="FILE" NAME="FN"></P>
900  <P><INPUT TYPE="SUBMIT" VALUE="UPLOAD"></P>  <P><INPUT TYPE="SUBMIT" VALUE="UPLOAD"></P>
901  <P>If the <B>[BROWSE...]</B> button is not displayed,<BR>  <P>If the <B>[BROWSE...]</B> button is not displayed,<BR>
902  you must upgrade to an RFC1867-compliant browser.</P>  you must upgrade to an RFC1867-compliant browser.</P>
903  <P>Your browser:<BR><?php echo $GLOBALS["HTTP_USER_AGENT"] ?></P>  <P>Your browser:<BR><?= $GLOBALS["HTTP_USER_AGENT"] ?></P>
904  </FORM>  </FORM>
905  </TD></TR>  </TD></TR>
906  <TR><TD></TD><TD>  <TR><TD></TD><TD>
907  <FORM METHOD="POST" ACTION="<?php echo $self ?>">  <FORM METHOD="POST" ACTION="<?= $self ?>">
908  <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?php echo $relDir ?>"><BR>  <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?= $relDir ?>"><BR>
909  <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="CANCEL">  <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="CANCEL">
910  </FORM>  </FORM>
911  </TD></TR></TABLE></P>  </TD></TR></TABLE></P>
# Line 848  function NoEntry() { Line 958  function NoEntry() {
958          StartHTML($title,$text) ;          StartHTML($title,$text) ;
959  ?>  ?>
960    
961  <FORM ACTION="<?php echo $self ?>?HASH=create" METHOD="POST">  <FORM ACTION="<?= $self ?>?HASH=create" METHOD="POST">
962  <INPUT TYPE="HIDDEN" NAME="USER" VALUE="<?php echo $user ?>">  <INPUT TYPE="HIDDEN" NAME="USER" VALUE="<?= $user ?>">
963  <INPUT TYPE="HIDDEN" NAME="PW" VALUE="<?php echo $pw ?>">  <INPUT TYPE="HIDDEN" NAME="PW" VALUE="<?= $pw ?>">
964    
965  <BLOCKQUOTE><B>If you are a site administrator:</B><BR><BR>  <BLOCKQUOTE><B>If you are a site administrator:</B><BR><BR>
966  Click below to <B>generate a password hash</B><BR>from  Click below to <B>generate a password hash</B><BR>from
# Line 866  the source<BR>of this file.<BR><BR> Line 976  the source<BR>of this file.<BR><BR>
976    
977  //////////////////////////////////////////////////////////////////  //////////////////////////////////////////////////////////////////
978    
979  function Logit($target,$msg) {  function LogIt($target,$msg) {
980    
981          $dir=dirname($target);          $dir=dirname($target);
982          if (! file_exists($dir."/.log")) {          if (! file_exists($dir."/.log")) {
# Line 882  function Logit($target,$msg) { Line 992  function Logit($target,$msg) {
992  }  }
993    
994    
995    //////////////////////////////////////////////////////////////////
996    
997    function WriteNote($target,$msg) {
998    
999            $target=stripSlashes($target);
1000            $dir=dirname($target);
1001            if (! file_exists($dir."/.note")) {
1002                    mkdir($dir."/.note",0700);
1003            }
1004            $file=basename($target);
1005    
1006            $note=fopen("$dir/.note/$file","w");
1007            fputs($note,"$msg\n");
1008            fclose($note);
1009    
1010            Logit($target,"added note $msg");
1011    
1012    }
1013    
1014    function ReadNote($target) {
1015    
1016            $target=stripSlashes($target);
1017            $dir=dirname($target);
1018            $file=basename($target);
1019            $msg="";
1020            if (file_exists($dir."/.note/$file")) {
1021                    $note=fopen("$dir/.note/$file","r");
1022                    $msg=fgets($note,4096);
1023                    fclose($note);
1024            }
1025            return StripSlashes($msg);
1026    
1027    }
1028    
1029    //////////////////////////////////////////////////////////////////
1030    
1031    function MoveTo($source,$folder) {
1032    
1033            $source=stripSlashes($source);
1034            $file=basename($source);
1035            if (! file_exists($folder)) {
1036                    mkdir($folder,0700);
1037            }
1038            if (file_exists($source)) {
1039                    rename($source,"$folder/$file");
1040            }
1041    }
1042    
1043    //////////////////////////////////////////////////////////////////
1044    
1045    function Lock($target) {
1046    
1047            $target=stripSlashes($target);
1048            $dir=dirname($target);
1049            if (! file_exists($dir."/.lock")) {
1050                    mkdir($dir."/.lock",0700);
1051            }
1052            $file=basename($target);
1053    
1054            if (file_exists("$dir/.lock/$file")) {
1055                    Logit($target,"attempt to locked allready locked file!");
1056            } else {
1057                    $lock=fopen("$dir/.lock/$file","w");
1058                    fputs($lock,"$GLOBALS[gblUserName]\n");
1059                    fclose($lock);
1060    
1061                    Logit($target,"file locked");
1062            }
1063    
1064    }
1065    
1066    function CheckLock($target) {
1067    
1068            $target=stripSlashes($target);
1069            $dir=dirname($target);
1070            $file=basename($target);
1071            $msg=0;
1072            if (file_exists($dir."/.lock/$file")) {
1073                    $lock=fopen("$dir/.lock/$file","r");
1074                    $msg=fgets($lock,4096);
1075                    fclose($lock);
1076            }
1077            return chop($msg);
1078    
1079    }
1080    
1081    function Unlock($target) {
1082    
1083            $target=stripSlashes($target);
1084            $dir=dirname($target);
1085            $file=basename($target);
1086            if (file_exists($dir."/.lock/$file")) {
1087                    unlink("$dir/.lock/$file");
1088                    Logit($target,"file unlocked");
1089            } else {
1090                    Logit($target,"attempt to unlocked non-locked file!");
1091            }
1092    
1093    }
1094    
1095    //////////////////////////////////////////////////////////////////
1096    
1097    function urlpath($url) {
1098            $url=urlencode(StripSlashes("$url"));
1099            $url=str_replace("%2F","/",$url);
1100            $url=str_replace("+","%20",$url);
1101            return($url);
1102    }
1103    
1104    //////////////////////////////////////////////////////////////////
1105    
1106    function safe_rename($from,$to) {
1107            if (file_exists($from) && is_writable(dirname($to))) {
1108                    rename($from,$to);
1109            }
1110    }
1111    
1112    //////////////////////////////////////////////////////////////////
1113    
1114    // recursivly delete directory
1115    
1116    function rrmdir($dir) {
1117            $handle=opendir($dir);
1118            while ($file = readdir($handle)) {
1119                    if ($file != "." && $file != "..") {
1120                            if (is_dir("$dir/$file"))
1121                                    rrmdir("$dir/$file");
1122                            else
1123                                    if (! @unlink("$dir/$file")) return(0);
1124                    }
1125            }
1126            closedir($handle);
1127            return @rmdir($dir);
1128    }
1129    
1130    //////////////////////////////////////////////////////////////////
1131    
1132    function ChangeLog($target,$msg) {
1133    
1134            global $gblFsRoot;
1135            $log=fopen("$gblFsRoot/.changelog","a+");
1136            if (substr($target,0,strlen($gblFsRoot)) == $gblFsRoot)
1137                    $target=substr($target,strlen($gblFsRoot),strlen($target)-strlen($gblFsRoot));
1138            fputs($log,time()."\t$target\t$GLOBALS[gblUserName]\t$msg\n");
1139            fclose($log);
1140    
1141    }
1142    
1143    function DisplayChangeLog($day) {
1144    
1145            global $gblFsRoot;
1146            if (!file_exists("$gblFsRoot/.changelog")) return;
1147            $log=fopen("$gblFsRoot/.changelog","r");
1148            $logarr = array();
1149            while($line = fgetcsv($log,255,"\t")) {
1150                    if ($day!=1 || ($day==1 && (time()-$line[0] < 24*60*60))) {
1151                            array_unshift($logarr,array($line[0],$line[1],$line[2],$line[3]));
1152                    }
1153            }
1154            fclose($log);
1155            $cl1=" class=lst"; $cl2="";
1156            print "<table border=0 width=100%>\n";
1157            while ($e = array_shift($logarr)) {
1158                    $cl=$cl1; $cl1=$cl2; $cl2=$cl;
1159                    $date = date("$GLOBALS[gblDateFmt]", $e[0]);
1160                    $time = date("$GLOBALS[gblTimeFmt]", $e[0]);
1161                    $dir = dirname($e[1]);
1162                    $file = basename($e[1]);
1163                    print "<tr><td$cl>$date</td><td$cl>$time</td><td$cl><a href=\"$GLOBALS[PHP_SELF]?D=".urlencode($dir)."\">$dir</a>/$file</td><td$cl>$e[2]</td><td$cl>$e[3]</td></tr>\n";
1164            }
1165            print "</table>";
1166            print "<p>".GifIcon(up)." Back to <a href=$GLOBALS[PHP_SELF]>front page</a>.</p>";
1167    }
1168    
1169  //////////////////////////////////////////////////////////////////  //////////////////////////////////////////////////////////////////
1170    
# Line 942  function Logit($target,$msg) { Line 1225  function Logit($target,$msg) {
1225    
1226          $fsDir = $gblFsRoot . $relDir ; // current directory          $fsDir = $gblFsRoot . $relDir ; // current directory
1227          if ( !is_dir($fsDir) ) Error("Dir not found",$relDir) ;          if ( !is_dir($fsDir) ) Error("Dir not found",$relDir) ;
1228            
1229            $FN=stripSlashes($FN);
1230    
1231          switch ($POSTACTION) {          switch ($POSTACTION) {
1232          case "UPLOAD" :          case "UPLOAD" :
1233                  if (!is_writeable($fsDir)) Error("Write denied",$relDir) ;                  if (!is_writeable($fsDir)) Error("Write denied",$relDir) ;
# Line 951  function Logit($target,$msg) { Line 1236  function Logit($target,$msg) {
1236                  // TODO : should rather check for escapeshellcmds                  // TODO : should rather check for escapeshellcmds
1237                  // but maybe RFC 18xx asserts safe filenames ....                  // but maybe RFC 18xx asserts safe filenames ....
1238                  $source = $FN ;                  $source = $FN ;
1239                  $target = $fsDir . "/" . $FN_name ;                  if (! isset($FILENAME)) {       // from update file
1240                            $target = "$fsDir/$FN_name" ;
1241                    } else {
1242                            $target = "$fsDir/$FILENAME";
1243                    }
1244    
1245                  // backup old files first                  // backup old files first
1246                  $dir=dirname($target);                  $dir=dirname($target);
# Line 963  function Logit($target,$msg) { Line 1252  function Logit($target,$msg) {
1252                  }                  }
1253                  $file=basename($target);                  $file=basename($target);
1254                  for($i=$GLOBALS[gblNumBackups]-1;$i>0;$i--) {                  for($i=$GLOBALS[gblNumBackups]-1;$i>0;$i--) {
1255                          if (! file_exists($dir."/.bak/".$i)) {                          MoveTo("$dir/.bak/$i/$file","$dir/.bak/".($i+1)."/");
                                 mkdir($dir."/.bak/".$i,0700);  
                         }  
                         if (file_exists($dir."/.bak/".$i."/".$file)) {  
                                 rename($dir."/.bak/".$i."/".$file,  
                                         $dir."/.bak/".($i+1)."/".$file);  
                         }  
                 }  
                 if (file_exists($target)) {  
                         rename($target,$dir."/.bak/1/".$file);  
1256                  }                  }
1257                    MoveTo($target,$dir."/.bak/1/");
1258    
1259                  copy($source,$target) ;                  copy($source,$target) ;
1260                  chmod($target,$gblFilePerms) ;                  chmod($target,$gblFilePerms) ;
1261                  clearstatcache() ;                  clearstatcache() ;
1262                  Logit($target,"uploaded");                  Logit($target,"uploaded");
1263                    if (isset($FILENAME)) {
1264                            Unlock($target);
1265                    }
1266                    ChangeLog($target,"updated");
1267                  break ;                  break ;
1268    
1269          case "SAVE" :          case "SAVE" :
1270                  $path = $gblFsRoot . escapeshellcmd($RELPATH) ;                  $path = $gblFsRoot . $RELPATH ;
1271                    $path=stripSlashes($path);
1272                  $writable = is_writeable($path) ;                  $writable = is_writeable($path) ;
1273                  $legaldir = is_writeable(dirname($path)) ;                  $legaldir = is_writeable(dirname($path)) ;
1274                  $exists   = (file_exists($path)) ? 1 : 0 ;                  $exists   = (file_exists($path)) ? 1 : 0 ;
# Line 990  function Logit($target,$msg) { Line 1276  function Logit($target,$msg) {
1276                  if (!($writable || (!$exists && $legaldir)))                  if (!($writable || (!$exists && $legaldir)))
1277                          Error("Write denied",$RELPATH) ;                          Error("Write denied",$RELPATH) ;
1278                  $fh = fopen($path, "w") ;                  $fh = fopen($path, "w") ;
1279                    $FILEDATA=stripSlashes($FILEDATA);
1280                  fwrite($fh,$FILEDATA) ;                  fwrite($fh,$FILEDATA) ;
1281                  fclose($fh) ;                  fclose($fh) ;
1282                  clearstatcache() ;                  clearstatcache() ;
1283                  Logit($path,"saved changes");                  Logit($path,"saved changes");
1284                    ChangeLog($path,"saved changes");
1285                  break ;                  break ;
1286    
1287          case "CREATE" :          case "CREATE" :
# Line 1004  function Logit($target,$msg) { Line 1292  function Logit($target,$msg) {
1292                  $relPath = $relDir . "/" . $FN ;                  $relPath = $relDir . "/" . $FN ;
1293                  switch ( $T ) {                  switch ( $T ) {
1294                  case "D" :  // create a directory                  case "D" :  // create a directory
1295                    if ( ! @mkdir($path,$gblDirPerms) )                          if ( ! @mkdir($path,$gblDirPerms) )
1296                      Error("Mkdir failed",$relPath) ; // eg. if it exists                                  Error("Mkdir failed",$relPath) ; // eg. if it exists
1297                    clearstatcache() ;                          clearstatcache() ;
1298                    break ;                          break ;
1299                  case "F" :  // create a new file                  case "F" :  // create a new file
1300  // this functionality is doubled in DetailView().  // this functionality is doubled in DetailView().
1301  // better keep it here altogether  // better keep it here altogether
1302  // chmod perms to $gblFilePerms  // chmod perms to $gblFilePerms
1303                    if ( file_exists($path) && !is_writable($path) )                          if ( file_exists($path) && !is_writable($path) )
1304                      Error("File not writable", $relPath) ;                                  Error("File not writable", $relPath) ;
1305                    $tstr = $PHP_SELF . "?A=E&D=" . $relDir . "&F=" . $FN ;                          $fh = fopen($path, "w+") ;
1306                    header("Location: " . $tstr) ;                          if ($fh) {
1307                    exit ;                                  fputs($fh,"\n");
1308                                    fclose($fh) ;
1309                                    LogIt($path,"file created");
1310                            } else {
1311                                    Error("Creation of file $relPath failed -- $path");
1312                            }
1313                            $tstr = "$PHP_SELF?A=E&D=".urlencode($relDir)."&F=".urlencode($FN) ;
1314                            header("Location: " . $tstr) ;
1315                            ChangeLog($target,"created");
1316                            exit ;
1317                  }                  }
1318                  break ;                  break ;
1319    
# Line 1042  function Logit($target,$msg) { Line 1339  function Logit($target,$msg) {
1339                                  exit ;                                  exit ;
1340                          } else {                          } else {
1341                                  Logit($path,"file deleted");                                  Logit($path,"file deleted");
1342                                  if (! file_exists("$dir/.del/.log")) {                                  MoveTo("$dir/.log/$file","$dir/.del/.log/");
1343                                          mkdir("$dir/.del/.log",0700);                                  MoveTo("$dir/.note/$file","$dir/.del/.note/");
1344                                  }                                  MoveTo("$dir/.lock/$file","$dir/.del/.lock/");
                                 rename("$dir/.log/$file","$dir/.del/.log/$file");  
1345                          }                          }
1346                  }                  }
1347                  else {  // delete directory                  else {  // delete directory
1348                    if ( ! @rmdir($fsDir) ) {                    if ( ! @rrmdir($fsDir) ) {
1349                      Error("Rmdir failed", $tstr . $fsDir) ;                      Error("Rmdir failed", $tstr . $fsDir) ;
1350                    }                    }
1351                    else {                    else {
# Line 1065  function Logit($target,$msg) { Line 1361  function Logit($target,$msg) {
1361                  $file=substr($FN,4,strlen($FN)-4);                  $file=substr($FN,4,strlen($FN)-4);
1362    
1363                  Logit("$fsDir/.del/$file","undeleted");                  Logit("$fsDir/.del/$file","undeleted");
1364                  rename("$fsDir/.del/$file","$fsDir/$file");                  MoveTo("$fsDir/.del/$file","$fsDir/");
1365                  rename("$fsDir/.del/.log/$file","$fsDir/.log/$file");                  MoveTo("$fsDir/.del/.log/$file","$fsDir/.log/");
1366                    MoveTo("$fsDir/.del/.note/$file","$fsDir/.note/");
1367                    MoveTo("$fsDir/.del/.lock/$file","$fsDir/.lock/");
1368    
1369                  break ;                  break ;
1370    
# Line 1074  function Logit($target,$msg) { Line 1372  function Logit($target,$msg) {
1372                  if ( $CONFIRM != "on" ) break ;                  if ( $CONFIRM != "on" ) break ;
1373    
1374                  Logit("$fsDir/$FN","renamed $FN to $NEWNAME");                  Logit("$fsDir/$FN","renamed $FN to $NEWNAME");
1375                  rename("$fsDir/$FN","$fsDir/$NEWNAME");                  safe_rename("$fsDir/$FN","$fsDir/$NEWNAME");
1376                  rename("$fsDir/.log/$FN","$fsDir/.log/$NEWNAME");                  safe_rename("$fsDir/.log/$FN","$fsDir/.log/$NEWNAME");
1377                    safe_rename("$fsDir/.note/$FN","$fsDir/.note/$NEWNAME");
1378                    safe_rename("$fsDir/.lock/$FN","$fsDir/.lock/$NEWNAME");
1379                    for($i=0;$i<=$GLOBALS[gblNumBackups];$i++) {
1380                            safe_rename("$fsDir/.bak/$i/$FN","$fsDir/.bak/$i/$NEWNAME");
1381                    }
1382    
1383                  break ;                  break ;
1384    
1385            case "NOTE" :  
1386                    WriteNote("$fsDir/$FN","$NOTE");
1387                    break ;
1388    
1389            case "UNLOCK" :  
1390                    if ( $CONFIRM != "on" ) break ;
1391                    Unlock("$fsDir/$FN");
1392                    break ;
1393    
1394          default :          default :
1395                  // user hit "CANCEL" or undefined action                  // user hit "CANCEL" or undefined action
1396          }          }
# Line 1094  function Logit($target,$msg) { Line 1406  function Logit($target,$msg) {
1406          // $A=U : upload to path given in $D          // $A=U : upload to path given in $D
1407          // $A=E : display detail of file $D/$F and edit          // $A=E : display detail of file $D/$F and edit
1408          // $A=C : display code in file $D/$F          // $A=C : display code in file $D/$F
1409            // $A=Co : checkout file $D/$F
1410            // $A=Ci : checkin file $D/$F
1411            // $A=V : view file (do nothing except log)
1412          // default : display directory $D          // default : display directory $D
1413            
1414          switch ($A) {          switch ($A) {
1415          case "U" :          case "U" :
1416                  // upload to $relDir                  // upload to $relDir
# Line 1108  function Logit($target,$msg) { Line 1423  function Logit($target,$msg) {
1423                  EndHTML() ;                  EndHTML() ;
1424                  exit ;                  exit ;
1425          case "E" :          case "E" :
1426                    $F=stripSlashes($F);
1427                  // detail of $relDir/$F                  // detail of $relDir/$F
1428                  if (is_file("$gblFsRoot/$relDir/$F")) DetailPage($gblFsRoot, $relDir, $F) ;                  if (is_file("$gblFsRoot/$relDir/$F")) DetailPage($gblFsRoot, $relDir, $F) ;
1429                  exit ;                  exit ;
1430          case "C" :          case "C" :
1431                    $F=stripSlashes($F);
1432                  // listing of $relDir/$F                  // listing of $relDir/$F
1433                  DisplayCode($gblFsRoot, $relDir, $F) ;                  DisplayCode($gblFsRoot, $relDir, $F) ;
1434                  exit ;                  exit ;
1435            case "Co" :
1436                    // checkout
1437                    Lock("$gblFsRoot/$relDir/$F");
1438                    header("Content-Disposition: attachment; filename=$F" );
1439                    Header("Location: ".urlpath("$relDir/$F"));
1440                    exit;
1441            case "Ci" :
1442                    $F=stripSlashes($F);
1443                    // upload && update to $relDir
1444                    if (!is_writeable($gblFsRoot . $relDir))
1445                            Error("Write access denied",$relDir) ;
1446                    $text  = "Use this page to update a single " ;
1447                    $text .= "file to <B>$SERVER_NAME</B>." ;
1448                    StartHTML("(Update file Page)", $text) ;
1449                    UploadPage($gblFsRoot, $relDir, $F) ;
1450                    EndHTML() ;
1451                    exit ;
1452            case "V" :
1453                    // view
1454                    LogIt("$gblFsRoot/$relDir/$F","viewed");
1455                    header("Content-Disposition: attachment; filename=$F" );
1456                    Header("Location: ".urlpath("$relDir/$F"));
1457                    exit;
1458            case "Ch" :
1459                    StartHTML("(File changes)","All changes chronologicaly...");
1460                    DisplayChangeLog(0);    // all
1461                    EndHTML() ;
1462                    exit;
1463            case "Ch1" :
1464                    StartHTML("(File changes)","Changes to files in last day...");
1465                    DisplayChangeLog(1);
1466                    EndHTML() ;
1467                    exit;
1468          }          }
1469    
1470          // default: display directory $relDir          // default: display directory $relDir

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.23

  ViewVC Help
Powered by ViewVC 1.1.26