/[docman2]/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.33 by dpavlin, Fri Sep 6 17:34:06 2002 UTC revision 1.34 by dpavlin, Wed Apr 9 15:55:15 2003 UTC
# Line 81  Line 81 
81          // location of html files          // location of html files
82          $html = $gblIncDir."/html";          $html = $gblIncDir."/html";
83    
84          LoadLanguage($HTTP_SERVER_VARS["HTTP_ACCEPT_LANGUAGE"]);          if (isset($HTTP_SERVER_VARS["HTTP_ACCEPT_LANGUAGE"])) {
85                    LoadLanguage($HTTP_SERVER_VARS["HTTP_ACCEPT_LANGUAGE"]);
86            }
87    
88          // for security and configuration          // for security and configuration
89          $realm=$HTTP_SERVER_VARS["HTTP_HOST"];          $realm=$HTTP_SERVER_VARS["HTTP_HOST"];
# Line 147  function EndHTML() { Line 149  function EndHTML() {
149          }          }
150          include("$html/footer.html");          include("$html/footer.html");
151    
152          global $debug;  #       global $debug;
153          if ($debug) print $debug;  #       if ($debug) print $debug;
154  } // end function EndHTML  } // end function EndHTML
155    
156  //////////////////////////////////////////////////////////////////  //////////////////////////////////////////////////////////////////
# Line 707  function Navigate($fsRoot,$relDir) { Line 709  function Navigate($fsRoot,$relDir) {
709                                  $note_html=$dirNote[$key];                                  $note_html=$dirNote[$key];
710                          }                          }
711    
712                            $dir_html = isBlank($dir,"directory");
713    
714                          include("$html/Navigate-dirEntry.html");                          include("$html/Navigate-dirEntry.html");
715    
716                  }  // iterate over dirs                  }  // iterate over dirs
# Line 782  function Navigate($fsRoot,$relDir) { Line 786  function Navigate($fsRoot,$relDir) {
786                  $file_url_html.="\" TITLE=\"View file\">" ;                  $file_url_html.="\" TITLE=\"View file\">" ;
787    
788                  if (substr($file,0,5) != ".del/") {                  if (substr($file,0,5) != ".del/") {
789                          $file_url_html .= $file . "</A>" . $a ;                          $file_url_html .= isBlank($file) . "</A>" . $a ;
790                  } else {                  } else {
791                          $file_url_html .= substr($file,5,strlen($file)-5) . "</a> <a href=\"$info_url#undelete\"><SPAN CLASS=deleted TITLE=\"deleted\">deleted</span></a>";                          $file_url_html .= isBlank(substr($file,5,strlen($file)-5)) . "</a> <a href=\"$info_url#undelete\"><SPAN CLASS=deleted TITLE=\"deleted\">deleted</span></a>";
792                  }                  }
793    
794                  if (check_perm($relDir.$file,$gblPermNote)) {                  if (check_perm($relDir.$file,$gblPermNote)) {
# Line 1539  function Warn($text) { Line 1543  function Warn($text) {
1543  }  }
1544    
1545  //////////////////////////////////////////////////////////////////  //////////////////////////////////////////////////////////////////
1546    
1547    function isBlank($file,$what = "filename") {
1548            if (trim($file) == "") return "<i>whitespace $what</i>";
1549            if ($file == "") return "<i>no $what</i>";
1550            return $file;
1551    }
1552    
1553    //////////////////////////////////////////////////////////////////
1554  // MAIN PROGRAM  // MAIN PROGRAM
1555    
1556          $gblFilePerms = 0640 ;         // default for new files          $gblFilePerms = 0640 ;         // default for new files

Legend:
Removed from v.1.33  
changed lines
  Added in v.1.34

  ViewVC Help
Powered by ViewVC 1.1.26