phpcvsview-cvs-updates Mailing List for PHP CVS Repository Viewer
Status: Pre-Alpha
Brought to you by:
bcheesem
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
(1) |
Apr
(5) |
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(7) |
Oct
(43) |
Nov
|
Dec
(19) |
2005 |
Jan
(28) |
Feb
(85) |
Mar
|
Apr
(16) |
May
(2) |
Jun
|
Jul
|
Aug
(3) |
Sep
(14) |
Oct
|
Nov
(16) |
Dec
|
2006 |
Jan
(9) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Sijis A. <si...@us...> - 2006-01-03 01:12:42
|
Update of /cvsroot/phpcvsview/phpcvsview In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3590 Modified Files: config.php cvsview.php func_ArchiveDownload.php func_DiffFile.php func_DirListing.php func_FileHistory.php func_FileView.php phpcvs.php phpcvsmime.php utils.php Log Message: - updated copyright year - minor cosmetic cleanup Index: phpcvs.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/phpcvs.php,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** phpcvs.php 27 Nov 2005 00:10:18 -0000 1.26 --- phpcvs.php 3 Jan 2006 01:12:26 -0000 1.27 *************** *** 10,14 **** * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 10,14 ---- * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ *************** *** 83,118 **** */ var $ALLOWED_RESPONSES = array( ! "ok" => "processOk", ! "error" => "processError", ! "Valid-requests" => "processValidRequests", ! "Checked-in" => "processCheckedIn", ! "New-entry" => "processNewEntry", ! "Checksum" => "processChecksum", ! "Copy-file" => "processCopyFile", ! "Updated" => "processUpdated", ! "Created" => "processCreated", ! "Update-existing" => "processUpdateExisting", ! "Merged" => "processMerged", ! "Patched" => "processPatched", ! "Rcs-diff" => "processRcsDiff", ! "Mode" => "processMode", ! "Mod-time" => "processModTime", ! "Removed" => "processRemoved", ! "Remove-entry" => "processRemoveEntry", ! "Set-static-directory" => "processSetStaticDirectory", "Clear-static-directory" => "processClearStaticDirectory", ! "Set-sticky" => "processSetSticky", ! "Clear-sticky" => "processClearSticky", ! "Template" => "processTemplate", ! "Set-checkin-prog" => "processSetCheckinProg", ! "Set-update-prog" => "processSetUpdateProg", ! "Notified" => "processNotified", ! "Module-expansion" => "processModuleExpansion", ! "Wrapper-rcsOption" => "processWrapperRcsOption", ! "M" => "processM", ! "Mbinary" => "processMBinary", ! "E" => "processE", ! "F" => "processF", ! "MT" => "processMT" ); --- 83,118 ---- */ var $ALLOWED_RESPONSES = array( ! "ok" => "processOk", ! "error" => "processError", ! "Valid-requests" => "processValidRequests", ! "Checked-in" => "processCheckedIn", ! "New-entry" => "processNewEntry", ! "Checksum" => "processChecksum", ! "Copy-file" => "processCopyFile", ! "Updated" => "processUpdated", ! "Created" => "processCreated", ! "Update-existing" => "processUpdateExisting", ! "Merged" => "processMerged", ! "Patched" => "processPatched", ! "Rcs-diff" => "processRcsDiff", ! "Mode" => "processMode", ! "Mod-time" => "processModTime", ! "Removed" => "processRemoved", ! "Remove-entry" => "processRemoveEntry", ! "Set-static-directory" => "processSetStaticDirectory", "Clear-static-directory" => "processClearStaticDirectory", ! "Set-sticky" => "processSetSticky", ! "Clear-sticky" => "processClearSticky", ! "Template" => "processTemplate", ! "Set-checkin-prog" => "processSetCheckinProg", ! "Set-update-prog" => "processSetUpdateProg", ! "Notified" => "processNotified", ! "Module-expansion" => "processModuleExpansion", ! "Wrapper-rcsOption" => "processWrapperRcsOption", ! "M" => "processM", ! "Mbinary" => "processMBinary", ! "E" => "processE", ! "F" => "processF", ! "MT" => "processMT" ); *************** *** 151,162 **** * @var array */ ! var $FOLDERS = array(); ! var $FILES = array(); // An array of the files in the current module. ! var $CURRENT_FOLDER; // The current folder we are building up. ! var $CURRENT_FILE; // The current file we are building up. ! var $ANNOTATION = array(); // An array of the lines in the file which has been annotated. ! var $FILECONTENTS = ""; // A string to store the lines of the file contents in. ! var $INITIALISED = false; // A boolean to indicate whether we have already sent the Root/ValidRequests/ValidResponses. ! var $DEBUG = false; // A boolean to enable/disable debug output /** --- 151,162 ---- * @var array */ ! var $FOLDERS = array(); ! var $FILES = array(); // An array of the files in the current module. ! var $CURRENT_FOLDER = ""; // The current folder we are building up. ! var $CURRENT_FILE = ""; // The current file we are building up. ! var $ANNOTATION = array(); // An array of the lines in the file which has been annotated. ! var $FILECONTENTS = ""; // A string to store the lines of the file contents in. ! var $INITIALISED = false; // A boolean to indicate whether we have already sent the Root/ValidRequests/ValidResponses. ! var $DEBUG = false; // A boolean to enable/disable debug output /** Index: func_DirListing.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/func_DirListing.php,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** func_DirListing.php 7 Aug 2005 03:33:35 -0000 1.12 --- func_DirListing.php 3 Jan 2006 01:12:26 -0000 1.13 *************** *** 9,13 **** * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 9,13 ---- * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ *************** *** 28,32 **** $Response = $CVSServer->Authenticate(); if ($Response !== true) { - echo "<h3>ERROR: ".$Response."</h3>"; return; --- 28,31 ---- *************** *** 39,45 **** if (strlen($env['mod_path']) < 2) { $Modules = $CVSServer->getModuleList(); ! } ! else ! { $Modules = false; } --- 38,42 ---- if (strlen($env['mod_path']) < 2) { $Modules = $CVSServer->getModuleList(); ! } else { $Modules = false; } Index: func_DiffFile.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/func_DiffFile.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** func_DiffFile.php 15 Apr 2005 05:34:32 -0000 1.6 --- func_DiffFile.php 3 Jan 2006 01:12:26 -0000 1.7 *************** *** 9,13 **** * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 9,13 ---- * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ *************** *** 63,74 **** } $Lines = explode("\n", $FileContents); ! foreach ($Lines as $Line) ! { $FilePatching[] = array('mode' => "o", 'text' => $Line); } $linenumber = 0; ! while(strpos($DiffLines[$linenumber], "diff") === false) ! { $linenumber++; } // while --- 63,72 ---- } $Lines = explode("\n", $FileContents); ! foreach ($Lines as $Line) { $FilePatching[] = array('mode' => "o", 'text' => $Line); } $linenumber = 0; ! while(strpos($DiffLines[$linenumber], "diff") === false){ $linenumber++; } // while *************** *** 77,84 **** // We now have the line which starts the diff output. $LineOffset = 0; ! while($linenumber < count($DiffLines)) ! { ! if (strpos($DiffLines[$linenumber], "a") !== false) ! { // We have added a line or lines. $Parts = explode("a", $DiffLines[$linenumber]); --- 75,80 ---- // We now have the line which starts the diff output. $LineOffset = 0; ! while($linenumber < count($DiffLines)) { ! if (strpos($DiffLines[$linenumber], "a") !== false) { // We have added a line or lines. $Parts = explode("a", $DiffLines[$linenumber]); *************** *** 86,98 **** $NewLineLocation = explode(",", $Parts[1]); $InsertLength = count($NewLineLocation) == 2 ? $NewLineLocation[1]-$NewLineLocation[0]+1 : 1; ! for ($LineCounter = 0; $LineCounter < $InsertLength; $LineCounter++) ! { $TempLine = array('mode' => "+", 'text' => substr($DiffLines[++$linenumber], 2)); $FilePatching = InsertIntoArray($FilePatching, $TempLine, $InsertLocation[0]+$LineCounter+1); $LineOffset++; } ! } ! else if (strpos($DiffLines[$linenumber], "c") !== false) ! { // We have changed a line or lines. $Parts = explode("c", $DiffLines[$linenumber]); --- 82,91 ---- $NewLineLocation = explode(",", $Parts[1]); $InsertLength = count($NewLineLocation) == 2 ? $NewLineLocation[1]-$NewLineLocation[0]+1 : 1; ! for ($LineCounter = 0; $LineCounter < $InsertLength; $LineCounter++) { $TempLine = array('mode' => "+", 'text' => substr($DiffLines[++$linenumber], 2)); $FilePatching = InsertIntoArray($FilePatching, $TempLine, $InsertLocation[0]+$LineCounter+1); $LineOffset++; } ! } else if (strpos($DiffLines[$linenumber], "c") !== false) { // We have changed a line or lines. $Parts = explode("c", $DiffLines[$linenumber]); *************** *** 102,107 **** $NewFileLocation = explode(",", $Parts[1]); $NewLineLength = count($NewFileLocation) == 2 ? $NewFileLocation[1]-$NewFileLocation[0]+1 : 1; ! for ($LineCounter = 0; $LineCounter < $InsertLength; $LineCounter++) ! { if ($LineCounter < $NewLineLength) { $linenumber++; --- 95,99 ---- $NewFileLocation = explode(",", $Parts[1]); $NewLineLength = count($NewFileLocation) == 2 ? $NewFileLocation[1]-$NewFileLocation[0]+1 : 1; ! for ($LineCounter = 0; $LineCounter < $InsertLength; $LineCounter++) { if ($LineCounter < $NewLineLength) { $linenumber++; *************** *** 112,124 **** $FilePatching[$InsertLocation[0]-2+$LineCounter+$LineOffset]['mode'] = '-'; } ! for ($LineCounter = $InsertLength; $LineCounter < $NewLineLength; $LineCounter++) ! { $linenumber++; $TempLine = array('mode' => "+", 'text' => substr($DiffLines[$linenumber], 2)); $FilePatching = InsertIntoArray($FilePatching, $TempLine, $InsertLocation[0]+$LineCounter+$LineOffset); } ! } ! else if (strpos($DiffLines[$linenumber], "d") !== false) ! { // we have removed a line or lines. $Parts = explode("d", $DiffLines[$linenumber]); --- 104,113 ---- $FilePatching[$InsertLocation[0]-2+$LineCounter+$LineOffset]['mode'] = '-'; } ! for ($LineCounter = $InsertLength; $LineCounter < $NewLineLength; $LineCounter++) { $linenumber++; $TempLine = array('mode' => "+", 'text' => substr($DiffLines[$linenumber], 2)); $FilePatching = InsertIntoArray($FilePatching, $TempLine, $InsertLocation[0]+$LineCounter+$LineOffset); } ! } else if (strpos($DiffLines[$linenumber], "d") !== false) { // we have removed a line or lines. $Parts = explode("d", $DiffLines[$linenumber]); *************** *** 126,131 **** $OldLineLocation = explode(",", $Parts[1]); $DeleteLength = count($DeleteLocation) == 2 ? $DeleteLocation[1]-$DeleteLocation[0]+1 : 1; ! for ($LineCounter = 0; $LineCounter < $DeleteLength; $LineCounter++) ! { $FilePatching[$OldLineLocation[0]+$LineCounter+$LineOffset]['mode'] = '-'; $LineOffset++; --- 115,119 ---- $OldLineLocation = explode(",", $Parts[1]); $DeleteLength = count($DeleteLocation) == 2 ? $DeleteLocation[1]-$DeleteLocation[0]+1 : 1; ! for ($LineCounter = 0; $LineCounter < $DeleteLength; $LineCounter++) { $FilePatching[$OldLineLocation[0]+$LineCounter+$LineOffset]['mode'] = '-'; $LineOffset++; *************** *** 138,143 **** $search = array("<", ">", "\n", "\t", " "); $replace = array("<", ">", "", " ", " "); ! foreach ($FilePatching as $Line) ! { echo ' <p class="'; switch($Line['mode']){ --- 126,130 ---- $search = array("<", ">", "\n", "\t", " "); $replace = array("<", ">", "", " ", " "); ! foreach ($FilePatching as $Line) { echo ' <p class="'; switch($Line['mode']){ Index: func_FileView.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/func_FileView.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** func_FileView.php 15 Apr 2005 05:36:04 -0000 1.19 --- func_FileView.php 3 Jan 2006 01:12:26 -0000 1.20 *************** *** 9,13 **** * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman * * Thanks To: --- 9,13 ---- * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman * * Thanks To: *************** *** 50,56 **** fclose($fd); } ! } ! else ! { // Connect to the CVS server. if ($CVSServer->Connect() === true) { --- 50,54 ---- fclose($fd); } ! } else { // Connect to the CVS server. if ($CVSServer->Connect() === true) { *************** *** 99,105 **** echo $hlcontent; echo '</p>'; ! } ! else ! { $search = array('<', '>', '\n', '\t'); $replace = array('<', '>', '', ' '); --- 97,101 ---- echo $hlcontent; echo '</p>'; ! } else { $search = array('<', '>', '\n', '\t'); $replace = array('<', '>', '', ' '); *************** *** 113,119 **** fwrite($fd, "<pre>\n"); } ! } ! else ! { $fd = false; } --- 109,113 ---- fwrite($fd, "<pre>\n"); } ! } else { $fd = false; } Index: config.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/config.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** config.php 18 Feb 2005 10:29:42 -0000 1.13 --- config.php 3 Jan 2006 01:12:26 -0000 1.14 *************** *** 9,35 **** * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ // CVSROOT configuration. /* phpCVSView Source Repository */ ! $config['cvs']['phpCVSView']['server'] = "cvs.sourceforge.net"; ! $config['cvs']['phpCVSView']['cvsroot'] = "/cvsroot/phpcvsview"; ! $config['cvs']['phpCVSView']['username'] = "anonymous"; ! $config['cvs']['phpCVSView']['password'] = ""; ! $config['cvs']['phpCVSView']['mode'] = "pserver"; ! $config['cvs']['phpCVSView']['description'] = "PHP based CVS Repository Viewer"; ! $config['cvs']['phpCVSView']['html_title'] = "phpCVSView Source Code Library"; ! $config['cvs']['phpCVSView']['html_header'] = "phpCVSView Source Code Library"; /* phpCVSView Source Repository */ ! $config['cvs']['RPak']['server'] = "bcheese.homeip.net"; ! $config['cvs']['RPak']['cvsroot'] = "/cvsroot/mstsrpak"; ! $config['cvs']['RPak']['username'] = "anonymous"; ! $config['cvs']['RPak']['password'] = ""; ! $config['cvs']['RPak']['mode'] = "pserver"; ! $config['cvs']['RPak']['description'] = "MS Train Sim Route Packaging System"; ! $config['cvs']['RPak']['html_title'] = "RPak Source Code Library"; ! $config['cvs']['RPak']['html_header'] = "RPak Source Code Library"; // Default CVSROOT configuration to use. --- 9,35 ---- * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ // CVSROOT configuration. /* phpCVSView Source Repository */ ! $config['cvs']['phpCVSView']['server'] = "cvs.sourceforge.net"; ! $config['cvs']['phpCVSView']['cvsroot'] = "/cvsroot/phpcvsview"; ! $config['cvs']['phpCVSView']['username'] = "anonymous"; ! $config['cvs']['phpCVSView']['password'] = ""; ! $config['cvs']['phpCVSView']['mode'] = "pserver"; ! $config['cvs']['phpCVSView']['description'] = "PHP based CVS Repository Viewer"; ! $config['cvs']['phpCVSView']['html_title'] = "phpCVSView Source Code Library"; ! $config['cvs']['phpCVSView']['html_header'] = "phpCVSView Source Code Library"; /* phpCVSView Source Repository */ ! $config['cvs']['RPak']['server'] = "bcheese.homeip.net"; ! $config['cvs']['RPak']['cvsroot'] = "/cvsroot/mstsrpak"; ! $config['cvs']['RPak']['username'] = "anonymous"; ! $config['cvs']['RPak']['password'] = ""; ! $config['cvs']['RPak']['mode'] = "pserver"; ! $config['cvs']['RPak']['description'] = "MS Train Sim Route Packaging System"; ! $config['cvs']['RPak']['html_title'] = "RPak Source Code Library"; ! $config['cvs']['RPak']['html_header'] = "RPak Source Code Library"; // Default CVSROOT configuration to use. *************** *** 40,46 **** // Setup whether to use GeSHi project code for syntax highlighting or not. ! $config['GeSHi']['Enable'] = true; ! $config['GeSHi']['Path'] = "geshi"; ! $config['GeSHi']['HighlightersPath'] = "geshi/geshi"; // The default language --- 40,46 ---- // Setup whether to use GeSHi project code for syntax highlighting or not. ! $config['GeSHi']['Enable'] = true; ! $config['GeSHi']['Path'] = "geshi"; ! $config['GeSHi']['HighlightersPath'] = "geshi/geshi"; // The default language *************** *** 51,56 **** // Settings for Output Cache. ! $config['Cache']['Enable'] = true; ! $config['Cache']['Location'] = "/tmp/phpCVSViewCache"; ?> --- 51,56 ---- // Settings for Output Cache. ! $config['Cache']['Enable'] = true; ! $config['Cache']['Location'] = "/tmp/phpCVSViewCache"; ?> Index: utils.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/utils.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** utils.php 4 Feb 2005 11:03:13 -0000 1.9 --- utils.php 3 Jan 2006 01:12:26 -0000 1.10 *************** *** 9,13 **** * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 9,13 ---- * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ *************** *** 23,33 **** global $lang; ! $date['date_diff'] = $DateLater - $DateEarlier; ! $date['seconds'] = $date['date_diff']; ! $date['minutes'] = floor($date['seconds']/60); ! $date['hours'] = floor($date['minutes']/60); ! $date['days'] = floor($date['hours']/24); ! $date['weeks'] = floor($date['days']/7); ! $date['years'] = floor($date['days']/365); // displays seconds --- 23,33 ---- global $lang; ! $date['date_diff'] = $DateLater - $DateEarlier; ! $date['seconds'] = $date['date_diff']; ! $date['minutes'] = floor($date['seconds']/60); ! $date['hours'] = floor($date['minutes']/60); ! $date['days'] = floor($date['hours']/24); ! $date['weeks'] = floor($date['days']/7); ! $date['years'] = floor($date['days']/365); // displays seconds *************** *** 92,97 **** { $RetVal = ""; ! for ($Counter = 0; $Counter <= $Number; $Counter++) ! { if ($Dirs[$Counter] != "") { $RetVal .= $Seperator . $Dirs[$Counter]; --- 92,96 ---- { $RetVal = ""; ! for ($Counter = 0; $Counter <= $Number; $Counter++){ if ($Dirs[$Counter] != "") { $RetVal .= $Seperator . $Dirs[$Counter]; *************** *** 162,169 **** function InsertIntoArray($Array, $Value, $Position) { ! if (!is_array($Array)) {return $Array;} ! $Last = array_splice($Array, $Position); ! $Array[] = $Value; ! $Array = array_merge($Array, $Last); return $Array; } --- 161,170 ---- function InsertIntoArray($Array, $Value, $Position) { ! if (!is_array($Array)) { return $Array; } ! ! $Last = array_splice($Array, $Position); ! $Array[] = $Value; ! $Array = array_merge($Array, $Last); ! return $Array; } Index: phpcvsmime.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/phpcvsmime.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** phpcvsmime.php 7 Aug 2005 03:33:35 -0000 1.7 --- phpcvsmime.php 3 Jan 2006 01:12:26 -0000 1.8 *************** *** 9,13 **** * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman */ --- 9,13 ---- * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman */ *************** *** 18,175 **** * @name $MIME_TYPES */ global $MIME_TYPES; ! $MIME_TYPES = array( ! 'ez' => 'application/andrew-inset', ! 'hqx' => 'application/mac-binhex40', ! 'cpt' => 'application/mac-compactpro', ! 'doc' => 'application/msword', ! 'bin' => 'application/octet-stream', ! 'dms' => 'application/octet-stream', ! 'lha' => 'application/octet-stream', ! 'lzh' => 'application/octet-stream', ! 'exe' => 'application/octet-stream', ! 'class' => 'application/octet-stream', ! 'so' => 'application/octet-stream', ! 'dll' => 'application/octet-stream', ! 'oda' => 'application/oda', ! 'pdf' => 'application/pdf', ! 'ai' => 'application/postscript', ! 'eps' => 'application/postscript', ! 'ps' => 'application/postscript', ! 'smi' => 'application/smil', ! 'smil' => 'application/smil', ! 'mif' => 'application/vnd.mif', ! 'xls' => 'application/vnd.ms-excel', ! 'ppt' => 'application/vnd.ms-powerpoint', ! 'wbxml' => 'application/vnd.wap.wbxml', ! 'wmlc' => 'application/vnd.wap.wmlc', ! 'wmlsc' => 'application/vnd.wap.wmlscriptc', ! 'bcpio' => 'application/x-bcpio', ! 'vcd' => 'application/x-cdlink', ! 'pgn' => 'application/x-chess-pgn', ! 'cpio' => 'application/x-cpio', ! 'csh' => 'application/x-csh', ! 'dcr' => 'application/x-director', ! 'dir' => 'application/x-director', ! 'dxr' => 'application/x-director', ! 'dvi' => 'application/x-dvi', ! 'spl' => 'application/x-futuresplash', ! 'gtar' => 'application/x-gtar', ! 'hdf' => 'application/x-hdf', ! 'php' => 'application/x-httpd-php', ! 'php4' => 'application/x-httpd-php', ! 'php3' => 'application/x-httpd-php', ! 'phtml' => 'application/x-httpd-php', ! 'phps' => 'application/x-httpd-php-source', ! 'js' => 'application/x-javascript', ! 'skp' => 'application/x-koan', ! 'skd' => 'application/x-koan', ! 'skt' => 'application/x-koan', ! 'skm' => 'application/x-koan', ! 'latex' => 'application/x-latex', ! 'nc' => 'application/x-netcdf', ! 'cdf' => 'application/x-netcdf', ! 'crl' => 'application/x-pkcs7-crl', ! 'sh' => 'application/x-sh', ! 'shar' => 'application/x-shar', ! 'swf' => 'application/x-shockwave-flash', ! 'sit' => 'application/x-stuffit', ! 'sv4cpio' => 'application/x-sv4cpio', ! 'sv4crc' => 'application/x-sv4crc', ! 'tar' => 'application/x-tar', ! 'tgz' => 'application/x-tar', ! 'tcl' => 'application/x-tcl', ! 'tex' => 'application/x-tex', ! 'texinfo' => 'application/x-texinfo', ! 'texi' => 'application/x-texinfo', ! 't' => 'application/x-troff', ! 'tr' => 'application/x-troff', ! 'roff' => 'application/x-troff', ! 'man' => 'application/x-troff-man', ! 'me' => 'application/x-troff-me', ! 'ms' => 'application/x-troff-ms', ! 'ustar' => 'application/x-ustar', ! 'src' => 'application/x-wais-source', ! 'crt' => 'application/x-x509-ca-cert', ! 'xhtml' => 'application/xhtml+xml', ! 'xht' => 'application/xhtml+xml', ! 'zip' => 'application/zip', ! 'au' => 'audio/basic', ! 'snd' => 'audio/basic', ! 'mid' => 'audio/midi', ! 'midi' => 'audio/midi', ! 'kar' => 'audio/midi', ! 'mpga' => 'audio/mpeg', ! 'mp2' => 'audio/mpeg', ! 'mp3' => 'audio/mpeg', ! 'aif' => 'audio/x-aiff', ! 'aiff' => 'audio/x-aiff', ! 'aifc' => 'audio/x-aiff', ! 'm3u' => 'audio/x-mpegurl', ! 'ram' => 'audio/x-pn-realaudio', ! 'rm' => 'audio/x-pn-realaudio', ! 'rpm' => 'audio/x-pn-realaudio-plugin', ! 'ra' => 'audio/x-realaudio', ! 'wav' => 'audio/x-wav', ! 'pdb' => 'chemical/x-pdb', ! 'xyz' => 'chemical/x-xyz', ! 'bmp' => 'image/bmp', ! 'gif' => 'image/gif', ! 'ief' => 'image/ief', ! 'jpeg' => 'image/jpeg', ! 'jpg' => 'image/jpeg', ! 'jpe' => 'image/jpeg', ! 'png' => 'image/png', ! 'tiff' => 'image/tiff', ! 'tif' => 'image/tiff', ! 'djvu' => 'image/vnd.djvu', ! 'djv' => 'image/vnd.djvu', ! 'wbmp' => 'image/vnd.wap.wbmp', ! 'wbmp' => 'image/vnd.wap.wbmp', ! 'ras' => 'image/x-cmu-raster', ! 'pnm' => 'image/x-portable-anymap', ! 'pbm' => 'image/x-portable-bitmap', ! 'pgm' => 'image/x-portable-graymap', ! 'ppm' => 'image/x-portable-pixmap', ! 'rgb' => 'image/x-rgb', ! 'xbm' => 'image/x-xbitmap', ! 'xpm' => 'image/x-xpixmap', ! 'xwd' => 'image/x-xwindowdump', ! 'igs' => 'model/iges', ! 'iges' => 'model/iges', ! 'msh' => 'model/mesh', ! 'mesh' => 'model/mesh', ! 'silo' => 'model/mesh', ! 'wrl' => 'model/vrml', ! 'vrml' => 'model/vrml', ! 'css' => 'text/css', ! 'html' => 'text/html', ! 'htm' => 'text/html', ! 'shtml' => 'text/html', ! 'jsp' => 'text/html', ! 'asc' => 'text/plain', ! 'txt' => 'text/plain', ! 'rtx' => 'text/richtext', ! 'rtf' => 'text/rtf', ! 'sgml' => 'text/sgml', ! 'sgm' => 'text/sgml', ! 'tsv' => 'text/tab-separated-values', ! 'wml' => 'text/vnd.wap.wml', ! 'wml' => 'text/vnd.wap.wml', ! 'wmls' => 'text/vnd.wap.wmlscript', ! 'wmls' => 'text/vnd.wap.wmlscript', ! 'etx' => 'text/x-setext', ! 'xml' => 'text/xml', ! 'xsl' => 'text/xml', ! 'mpeg' => 'video/mpeg', ! 'mpg' => 'video/mpeg', ! 'mpe' => 'video/mpeg', ! 'qt' => 'video/quicktime', ! 'mov' => 'video/quicktime', ! 'mxu' => 'video/vnd.mpegurl', ! 'avi' => 'video/x-msvideo', ! 'movie' => 'video/x-sgi-movie', ! 'ice' => 'x-conference/x-cooltalk' ); --- 18,176 ---- * @name $MIME_TYPES */ + global $MIME_TYPES; ! $MIME_TYPES = array( ! 'ez' => 'application/andrew-inset', ! 'hqx' => 'application/mac-binhex40', ! 'cpt' => 'application/mac-compactpro', ! 'doc' => 'application/msword', ! 'bin' => 'application/octet-stream', ! 'dms' => 'application/octet-stream', ! 'lha' => 'application/octet-stream', ! 'lzh' => 'application/octet-stream', ! 'exe' => 'application/octet-stream', ! 'class' => 'application/octet-stream', ! 'so' => 'application/octet-stream', ! 'dll' => 'application/octet-stream', ! 'oda' => 'application/oda', ! 'pdf' => 'application/pdf', ! 'ai' => 'application/postscript', ! 'eps' => 'application/postscript', ! 'ps' => 'application/postscript', ! 'smi' => 'application/smil', ! 'smil' => 'application/smil', ! 'mif' => 'application/vnd.mif', ! 'xls' => 'application/vnd.ms-excel', ! 'ppt' => 'application/vnd.ms-powerpoint', ! 'wbxml' => 'application/vnd.wap.wbxml', ! 'wmlc' => 'application/vnd.wap.wmlc', ! 'wmlsc' => 'application/vnd.wap.wmlscriptc', ! 'bcpio' => 'application/x-bcpio', ! 'vcd' => 'application/x-cdlink', ! 'pgn' => 'application/x-chess-pgn', ! 'cpio' => 'application/x-cpio', ! 'csh' => 'application/x-csh', ! 'dcr' => 'application/x-director', ! 'dir' => 'application/x-director', ! 'dxr' => 'application/x-director', ! 'dvi' => 'application/x-dvi', ! 'spl' => 'application/x-futuresplash', ! 'gtar' => 'application/x-gtar', ! 'hdf' => 'application/x-hdf', ! 'php' => 'application/x-httpd-php', ! 'php4' => 'application/x-httpd-php', ! 'php3' => 'application/x-httpd-php', ! 'phtml' => 'application/x-httpd-php', ! 'phps' => 'application/x-httpd-php-source', ! 'js' => 'application/x-javascript', ! 'skp' => 'application/x-koan', ! 'skd' => 'application/x-koan', ! 'skt' => 'application/x-koan', ! 'skm' => 'application/x-koan', ! 'latex' => 'application/x-latex', ! 'nc' => 'application/x-netcdf', ! 'cdf' => 'application/x-netcdf', ! 'crl' => 'application/x-pkcs7-crl', ! 'sh' => 'application/x-sh', ! 'shar' => 'application/x-shar', ! 'swf' => 'application/x-shockwave-flash', ! 'sit' => 'application/x-stuffit', ! 'sv4cpio' => 'application/x-sv4cpio', ! 'sv4crc' => 'application/x-sv4crc', ! 'tar' => 'application/x-tar', ! 'tgz' => 'application/x-tar', ! 'tcl' => 'application/x-tcl', ! 'tex' => 'application/x-tex', ! 'texinfo' => 'application/x-texinfo', ! 'texi' => 'application/x-texinfo', ! 't' => 'application/x-troff', ! 'tr' => 'application/x-troff', ! 'roff' => 'application/x-troff', ! 'man' => 'application/x-troff-man', ! 'me' => 'application/x-troff-me', ! 'ms' => 'application/x-troff-ms', ! 'ustar' => 'application/x-ustar', ! 'src' => 'application/x-wais-source', ! 'crt' => 'application/x-x509-ca-cert', ! 'xhtml' => 'application/xhtml+xml', ! 'xht' => 'application/xhtml+xml', ! 'zip' => 'application/zip', ! 'au' => 'audio/basic', ! 'snd' => 'audio/basic', ! 'mid' => 'audio/midi', ! 'midi' => 'audio/midi', ! 'kar' => 'audio/midi', ! 'mpga' => 'audio/mpeg', ! 'mp2' => 'audio/mpeg', ! 'mp3' => 'audio/mpeg', ! 'aif' => 'audio/x-aiff', ! 'aiff' => 'audio/x-aiff', ! 'aifc' => 'audio/x-aiff', ! 'm3u' => 'audio/x-mpegurl', ! 'ram' => 'audio/x-pn-realaudio', ! 'rm' => 'audio/x-pn-realaudio', ! 'rpm' => 'audio/x-pn-realaudio-plugin', ! 'ra' => 'audio/x-realaudio', ! 'wav' => 'audio/x-wav', ! 'pdb' => 'chemical/x-pdb', ! 'xyz' => 'chemical/x-xyz', ! 'bmp' => 'image/bmp', ! 'gif' => 'image/gif', ! 'ief' => 'image/ief', ! 'jpeg' => 'image/jpeg', ! 'jpg' => 'image/jpeg', ! 'jpe' => 'image/jpeg', ! 'png' => 'image/png', ! 'tiff' => 'image/tiff', ! 'tif' => 'image/tiff', ! 'djvu' => 'image/vnd.djvu', ! 'djv' => 'image/vnd.djvu', ! 'wbmp' => 'image/vnd.wap.wbmp', ! 'wbmp' => 'image/vnd.wap.wbmp', ! 'ras' => 'image/x-cmu-raster', ! 'pnm' => 'image/x-portable-anymap', ! 'pbm' => 'image/x-portable-bitmap', ! 'pgm' => 'image/x-portable-graymap', ! 'ppm' => 'image/x-portable-pixmap', ! 'rgb' => 'image/x-rgb', ! 'xbm' => 'image/x-xbitmap', ! 'xpm' => 'image/x-xpixmap', ! 'xwd' => 'image/x-xwindowdump', ! 'igs' => 'model/iges', ! 'iges' => 'model/iges', ! 'msh' => 'model/mesh', ! 'mesh' => 'model/mesh', ! 'silo' => 'model/mesh', ! 'wrl' => 'model/vrml', ! 'vrml' => 'model/vrml', ! 'css' => 'text/css', ! 'html' => 'text/html', ! 'htm' => 'text/html', ! 'shtml' => 'text/html', ! 'jsp' => 'text/html', ! 'asc' => 'text/plain', ! 'txt' => 'text/plain', ! 'rtx' => 'text/richtext', ! 'rtf' => 'text/rtf', ! 'sgml' => 'text/sgml', ! 'sgm' => 'text/sgml', ! 'tsv' => 'text/tab-separated-values', ! 'wml' => 'text/vnd.wap.wml', ! 'wml' => 'text/vnd.wap.wml', ! 'wmls' => 'text/vnd.wap.wmlscript', ! 'wmls' => 'text/vnd.wap.wmlscript', ! 'etx' => 'text/x-setext', ! 'xml' => 'text/xml', ! 'xsl' => 'text/xml', ! 'mpeg' => 'video/mpeg', ! 'mpg' => 'video/mpeg', ! 'mpe' => 'video/mpeg', ! 'qt' => 'video/quicktime', ! 'mov' => 'video/quicktime', ! 'mxu' => 'video/vnd.mpegurl', ! 'avi' => 'video/x-msvideo', ! 'movie' => 'video/x-sgi-movie', ! 'ice' => 'x-conference/x-cooltalk' ); Index: func_ArchiveDownload.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/func_ArchiveDownload.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** func_ArchiveDownload.php 27 Nov 2005 00:18:28 -0000 1.4 --- func_ArchiveDownload.php 3 Jan 2006 01:12:26 -0000 1.5 *************** *** 9,13 **** * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 9,13 ---- * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ *************** *** 38,43 **** $Files = $CVSServer->FILES; ! foreach ($Folders as $folder) ! { if ($folder["Name"] != "Attic") { DAProcessDirectory($ReposLoc.$folder["Name"]."/", $BasePath."/".$folder["Name"]); --- 38,42 ---- $Files = $CVSServer->FILES; ! foreach ($Folders as $folder) { if ($folder["Name"] != "Attic") { DAProcessDirectory($ReposLoc.$folder["Name"]."/", $BasePath."/".$folder["Name"]); *************** *** 46,51 **** } ! foreach ($Files as $file) ! { $CVSServer->ExportFile($ReposLoc.$file["Name"], time()); $filehandle = fopen($BasePath."/".$file["Name"], "wb"); --- 45,49 ---- } ! foreach ($Files as $file) { $CVSServer->ExportFile($ReposLoc.$file["Name"], time()); $filehandle = fopen($BasePath."/".$file["Name"], "wb"); Index: func_FileHistory.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/func_FileHistory.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** func_FileHistory.php 16 Apr 2005 02:23:01 -0000 1.14 --- func_FileHistory.php 3 Jan 2006 01:12:26 -0000 1.15 *************** *** 9,13 **** * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 9,13 ---- * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ *************** *** 44,47 **** --- 44,48 ---- $HREF = str_replace('//', '/', $env['script_name'].'?mp='.$env['mod_path']); $DateTime = strtotime($Revision["date"]); + echo '<hr />'."\n"; //echo '<a name="rd'.$DateTime.'" /> </a>'."\n"; *************** *** 50,55 **** echo ' (<a href="'.$HREF.'&fv&dt='.$DateTime.'">'.$lang['view'].'</a>)'; echo ' (<a href="'.$HREF.'&fd&dt='.$DateTime.'">'.$lang['download'].'</a>)'; ! if (isset($Revision["PrevRevision"])) ! { if ($Revision["PrevRevision"] != '') { echo ' (<a href="'.$HREF.'&df&r1='.$Revision["PrevRevision"].'&r2='; --- 51,56 ---- echo ' (<a href="'.$HREF.'&fv&dt='.$DateTime.'">'.$lang['view'].'</a>)'; echo ' (<a href="'.$HREF.'&fd&dt='.$DateTime.'">'.$lang['download'].'</a>)'; ! ! if (isset($Revision["PrevRevision"])){ if ($Revision["PrevRevision"] != '') { echo ' (<a href="'.$HREF.'&df&r1='.$Revision["PrevRevision"].'&r2='; *************** *** 64,67 **** --- 65,69 ---- echo ' <p><b>'.$lang['author'].'</b> '.$Revision["author"].'</p>'."\n"; echo ' <p><b>'.$lang['state'].'</b> '.$Revision["state"].'</p>'."\n"; + if (isset($Revision["PrevRevision"])) { Index: cvsview.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/cvsview.php,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** cvsview.php 7 Aug 2005 03:33:35 -0000 1.27 --- cvsview.php 3 Jan 2006 01:12:26 -0000 1.28 *************** *** 9,13 **** * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman */ --- 9,13 ---- * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman */ *************** *** 20,26 **** global $HTTP_ENV_VARS; $_ENVIRON = $HTTP_ENV_VARS; ! } ! else ! { $_ENVIRON = $_ENV; } --- 20,24 ---- global $HTTP_ENV_VARS; $_ENVIRON = $HTTP_ENV_VARS; ! } else { $_ENVIRON = $_ENV; } *************** *** 35,40 **** $env['mod_path'] = str_replace("//", "/", $env['mod_path']); ! $env['language_path'] = 'languages/'; ! $env['theme_path'] = 'Themes/'; // check if cookie exist, if so use cookie, otherwise use config value --- 33,38 ---- $env['mod_path'] = str_replace("//", "/", $env['mod_path']); ! $env['language_path'] = 'languages/'; ! $env['theme_path'] = 'Themes/'; // check if cookie exist, if so use cookie, otherwise use config value *************** *** 51,59 **** $env['mod_path'] = "/"; unset($_GET["fh"]); ! unset($_GET["fa"]); ! unset($_GET["fv"]); ! unset($_GET["fd"]); ! unset($_GET["df"]); ! unset($_GET["dp"]); $env['CVSROOT'] = $_GET["cr"]; // Set cookie with theme info. This cookie is set to expire 1 year from today. --- 49,57 ---- $env['mod_path'] = "/"; unset($_GET["fh"]); ! unset($_GET["fa"]); ! unset($_GET["fv"]); ! unset($_GET["fd"]); ! unset($_GET["df"]); ! unset($_GET["dp"]); $env['CVSROOT'] = $_GET["cr"]; // Set cookie with theme info. This cookie is set to expire 1 year from today. |
From: Sijis A. <si...@us...> - 2006-01-03 01:11:42
|
Update of /cvsroot/phpcvsview/phpcvsview/Themes/Green In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3158/Themes/Green Modified Files: theme.css theme.php Log Message: - updated copyright year Index: theme.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Green/theme.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** theme.php 27 Nov 2005 00:05:57 -0000 1.9 --- theme.php 3 Jan 2006 01:11:29 -0000 1.10 *************** *** 9,13 **** * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 9,13 ---- * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ Index: theme.css =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Green/theme.css,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** theme.css 26 Nov 2005 23:51:51 -0000 1.6 --- theme.css 3 Jan 2006 01:11:29 -0000 1.7 *************** *** 7,11 **** * @author Sijis Aviles <si...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 7,11 ---- * @author Sijis Aviles <si...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ |
From: Sijis A. <si...@us...> - 2006-01-03 01:11:42
|
Update of /cvsroot/phpcvsview/phpcvsview/Themes/Red In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3158/Themes/Red Modified Files: theme.css theme.php Log Message: - updated copyright year Index: theme.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Red/theme.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** theme.php 27 Nov 2005 00:05:57 -0000 1.9 --- theme.php 3 Jan 2006 01:11:29 -0000 1.10 *************** *** 9,13 **** * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 9,13 ---- * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ Index: theme.css =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Red/theme.css,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** theme.css 27 Nov 2005 00:03:04 -0000 1.6 --- theme.css 3 Jan 2006 01:11:29 -0000 1.7 *************** *** 7,11 **** * @author Sijis Aviles <si...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 7,11 ---- * @author Sijis Aviles <si...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ |
From: Sijis A. <si...@us...> - 2006-01-03 01:11:42
|
Update of /cvsroot/phpcvsview/phpcvsview/languages In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3158/languages Modified Files: cn.php de.php en.php es.php pt_br.php Log Message: - updated copyright year Index: es.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/languages/es.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** es.php 17 Sep 2005 07:06:38 -0000 1.3 --- es.php 3 Jan 2006 01:11:28 -0000 1.4 *************** *** 9,13 **** * @author Sijis Aviles <si...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman * * Translation completed Karlos Olmedo <Ha...@du...> --- 9,13 ---- * @author Sijis Aviles <si...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman * * Translation completed Karlos Olmedo <Ha...@du...> Index: en.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/languages/en.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** en.php 18 Apr 2005 01:17:21 -0000 1.7 --- en.php 3 Jan 2006 01:11:28 -0000 1.8 *************** *** 9,13 **** * @author Sijis Aviles <si...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 9,13 ---- * @author Sijis Aviles <si...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ Index: cn.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/languages/cn.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** cn.php 17 Sep 2005 07:05:34 -0000 1.3 --- cn.php 3 Jan 2006 01:11:28 -0000 1.4 *************** *** 9,13 **** * @author Sijis Aviles <si...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 9,13 ---- * @author Sijis Aviles <si...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ Index: pt_br.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/languages/pt_br.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** pt_br.php 17 Sep 2005 07:07:56 -0000 1.3 --- pt_br.php 3 Jan 2006 01:11:28 -0000 1.4 *************** *** 9,13 **** * @author Sijis Aviles <si...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman * * Translation completed Giuliano Camarini de Oliveira <gco...@ro...> --- 9,13 ---- * @author Sijis Aviles <si...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman * * Translation completed Giuliano Camarini de Oliveira <gco...@ro...> Index: de.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/languages/de.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** de.php 30 May 2005 21:38:42 -0000 1.2 --- de.php 3 Jan 2006 01:11:28 -0000 1.3 *************** *** 9,13 **** * @author Sijis Aviles <si...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 9,13 ---- * @author Sijis Aviles <si...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ |
From: Sijis A. <si...@us...> - 2006-01-03 01:11:41
|
Update of /cvsroot/phpcvsview/phpcvsview/Themes/Yellow In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3158/Themes/Yellow Modified Files: theme.css theme.php Log Message: - updated copyright year Index: theme.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Yellow/theme.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** theme.php 27 Nov 2005 00:05:58 -0000 1.9 --- theme.php 3 Jan 2006 01:11:29 -0000 1.10 *************** *** 9,13 **** * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 9,13 ---- * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ Index: theme.css =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Yellow/theme.css,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** theme.css 27 Nov 2005 00:03:24 -0000 1.6 --- theme.css 3 Jan 2006 01:11:29 -0000 1.7 *************** *** 7,11 **** * @author Sijis Aviles <si...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 7,11 ---- * @author Sijis Aviles <si...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ |
From: Sijis A. <si...@us...> - 2006-01-03 01:11:40
|
Update of /cvsroot/phpcvsview/phpcvsview/Themes/Default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3158/Themes/Default Modified Files: theme.css theme.php Log Message: - updated copyright year Index: theme.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Default/theme.php,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** theme.php 27 Nov 2005 00:05:57 -0000 1.20 --- theme.php 3 Jan 2006 01:11:29 -0000 1.21 *************** *** 9,13 **** * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 9,13 ---- * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ Index: theme.css =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Default/theme.css,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** theme.css 17 Sep 2005 06:47:39 -0000 1.16 --- theme.css 3 Jan 2006 01:11:29 -0000 1.17 *************** *** 7,11 **** * @author Sijis Aviles <si...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 7,11 ---- * @author Sijis Aviles <si...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ |
From: Sijis A. <si...@us...> - 2006-01-03 01:11:37
|
Update of /cvsroot/phpcvsview/phpcvsview/Themes/Blue In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3158/Themes/Blue Modified Files: theme.css theme.php Log Message: - updated copyright year Index: theme.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Blue/theme.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** theme.php 27 Nov 2005 00:05:57 -0000 1.10 --- theme.php 3 Jan 2006 01:11:29 -0000 1.11 *************** *** 9,13 **** * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 9,13 ---- * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ Index: theme.css =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Blue/theme.css,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** theme.css 17 Sep 2005 06:47:39 -0000 1.5 --- theme.css 3 Jan 2006 01:11:28 -0000 1.6 *************** *** 7,11 **** * @author Sijis Aviles <si...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 7,11 ---- * @author Sijis Aviles <si...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ |
From: Sijis A. <si...@us...> - 2006-01-03 01:11:37
|
Update of /cvsroot/phpcvsview/phpcvsview/Themes/phpCSSview In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3158/Themes/phpCSSview Modified Files: theme.php Log Message: - updated copyright year Index: theme.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/phpCSSview/theme.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** theme.php 15 Apr 2005 05:56:11 -0000 1.1 --- theme.php 3 Jan 2006 01:11:29 -0000 1.2 *************** *** 9,13 **** * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 9,13 ---- * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ |
From: Sijis A. <si...@us...> - 2006-01-03 01:11:36
|
Update of /cvsroot/phpcvsview/phpcvsview In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3158 Modified Files: func_FileAnnotation.php func_FileDownload.php phpcvsview.js Log Message: - updated copyright year Index: func_FileDownload.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/func_FileDownload.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** func_FileDownload.php 30 May 2005 21:20:52 -0000 1.5 --- func_FileDownload.php 3 Jan 2006 01:11:28 -0000 1.6 *************** *** 9,13 **** * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 9,13 ---- * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ Index: phpcvsview.js =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/phpcvsview.js,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** phpcvsview.js 17 Sep 2005 06:41:17 -0000 1.7 --- phpcvsview.js 3 Jan 2006 01:11:28 -0000 1.8 *************** *** 7,11 **** * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 7,11 ---- * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ Index: func_FileAnnotation.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/func_FileAnnotation.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** func_FileAnnotation.php 15 Apr 2005 05:34:33 -0000 1.11 --- func_FileAnnotation.php 3 Jan 2006 01:11:28 -0000 1.12 *************** *** 9,13 **** * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2005 Brian A Cheeseman **/ --- 9,13 ---- * @author Brian A Cheeseman <bch...@us...> * @version $Id$ ! * @copyright 2003-2006 Brian A Cheeseman **/ |
From: Brian C. <bch...@us...> - 2005-11-27 00:18:35
|
Update of /cvsroot/phpcvsview/phpcvsview In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30866 Modified Files: func_ArchiveDownload.php Log Message: Added a a reset to the typical time out of 30 seconds for execution in an attempt to correct the download archive option. This was unsuccessful, however the change will still be of use in the processing of large files on a slow CVS server. The download archive will be completely reworked after the next release. Index: func_ArchiveDownload.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/func_ArchiveDownload.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** func_ArchiveDownload.php 4 Feb 2005 09:35:31 -0000 1.3 --- func_ArchiveDownload.php 27 Nov 2005 00:18:28 -0000 1.4 *************** *** 42,45 **** --- 42,46 ---- if ($folder["Name"] != "Attic") { DAProcessDirectory($ReposLoc.$folder["Name"]."/", $BasePath."/".$folder["Name"]); + set_time_limit(30); } } *************** *** 51,57 **** fwrite($filehandle, $CVSServer->FILECONTENTS); fclose($filehandle); } $CVSServer->Disconnect(); ! // When we leave this function the contents should be in the File System. } --- 52,59 ---- fwrite($filehandle, $CVSServer->FILECONTENTS); fclose($filehandle); + set_time_limit(30); } $CVSServer->Disconnect(); ! // When we leave this function the contents should be in the File System. } *************** *** 86,89 **** --- 88,92 ---- return rmdir($dirname); } + function DownloadArchive() { |
From: Brian C. <bch...@us...> - 2005-11-27 00:10:26
|
Update of /cvsroot/phpcvsview/phpcvsview In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29177 Modified Files: phpcvs.php Log Message: Added a a reset to the typical time out of 30 seconds for execution in an attempt to correct the download archive option. This was unsuccessful, however the change will still be of use in the processing of large files on a slow CVS server. The download archive will be completely reworked after the next release. Index: phpcvs.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/phpcvs.php,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** phpcvs.php 7 Aug 2005 03:33:35 -0000 1.25 --- phpcvs.php 27 Nov 2005 00:10:18 -0000 1.26 *************** *** 511,514 **** --- 511,515 ---- while($KeepGoing){ + set_time_limit(30); $ResponseLine = $this->SOCKET->readLine(); $Response = explode(" ", $ResponseLine); |
From: Brian C. <bch...@us...> - 2005-11-27 00:06:06
|
Update of /cvsroot/phpcvsview/phpcvsview/Themes/Red In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28033/Themes/Red Modified Files: theme.php Log Message: Corrected code to collapse the whitespace around the repository selector and the theme and language selectors Index: theme.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Red/theme.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** theme.php 26 Nov 2005 05:11:55 -0000 1.8 --- theme.php 27 Nov 2005 00:05:57 -0000 1.9 *************** *** 38,42 **** $PageHead .= '<div id="userOptions">'."\n"; $PageHead .= ' <form class="themechanger" action="'.$_SERVER['PHP_SELF'].'">'."\n"; ! $PageHead .= ' <p><label for="reposSelect">'.$lang['change_cvsroot'].'</label>'."\n"; $PageHead .= ' <select name="reposSelect" id="reposSelect" class="reposchanger" onchange="postBackReposChange(this.form);">'."\n"; foreach($config['cvs'] as $key => $value){ --- 38,42 ---- $PageHead .= '<div id="userOptions">'."\n"; $PageHead .= ' <form class="themechanger" action="'.$_SERVER['PHP_SELF'].'">'."\n"; ! $PageHead .= ' <p class="reposchanger"><label for="reposSelect">'.$lang['change_cvsroot'].'</label>'."\n"; $PageHead .= ' <select name="reposSelect" id="reposSelect" class="reposchanger" onchange="postBackReposChange(this.form);">'."\n"; foreach($config['cvs'] as $key => $value){ *************** *** 49,53 **** $PageHead .= ' </select></p>'."\n"; ! $PageHead .= ' <p><label for="ThemeSelect">'.$lang['change_theme'].'</label>'."\n"; $PageHead .= ' <select name="ThemeSelect" id="ThemeSelect" class="themechanger" onchange="postBackThemeChange(this.form);">'."\n"; foreach (GetThemeList() as $key=>$value){ --- 49,53 ---- $PageHead .= ' </select></p>'."\n"; ! $PageHead .= ' <p class="themechanger"><label for="ThemeSelect">'.$lang['change_theme'].'</label>'."\n"; $PageHead .= ' <select name="ThemeSelect" id="ThemeSelect" class="themechanger" onchange="postBackThemeChange(this.form);">'."\n"; foreach (GetThemeList() as $key=>$value){ |
From: Brian C. <bch...@us...> - 2005-11-27 00:06:05
|
Update of /cvsroot/phpcvsview/phpcvsview/Themes/Default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28033/Themes/Default Modified Files: theme.php Log Message: Corrected code to collapse the whitespace around the repository selector and the theme and language selectors Index: theme.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Default/theme.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** theme.php 26 Nov 2005 05:03:34 -0000 1.19 --- theme.php 27 Nov 2005 00:05:57 -0000 1.20 *************** *** 38,42 **** $PageHead .= '<div id="userOptions">'."\n"; $PageHead .= ' <form class="themechanger" action="'.$_SERVER['PHP_SELF'].'">'."\n"; ! $PageHead .= ' <p><label for="reposSelect">'.$lang['change_cvsroot'].'</label>'."\n"; $PageHead .= ' <select name="reposSelect" id="reposSelect" class="reposchanger" onchange="postBackReposChange(this.form);">'."\n"; foreach($config['cvs'] as $key => $value){ --- 38,42 ---- $PageHead .= '<div id="userOptions">'."\n"; $PageHead .= ' <form class="themechanger" action="'.$_SERVER['PHP_SELF'].'">'."\n"; ! $PageHead .= ' <p class="reposchanger"><label for="reposSelect">'.$lang['change_cvsroot'].'</label>'."\n"; $PageHead .= ' <select name="reposSelect" id="reposSelect" class="reposchanger" onchange="postBackReposChange(this.form);">'."\n"; foreach($config['cvs'] as $key => $value){ *************** *** 49,53 **** $PageHead .= ' </select></p>'."\n"; ! $PageHead .= ' <p><label for="ThemeSelect">'.$lang['change_theme'].'</label>'."\n"; $PageHead .= ' <select name="ThemeSelect" id="ThemeSelect" class="themechanger" onchange="postBackThemeChange(this.form);">'."\n"; foreach (GetThemeList() as $key=>$value){ --- 49,53 ---- $PageHead .= ' </select></p>'."\n"; ! $PageHead .= ' <p class="themechanger"><label for="ThemeSelect">'.$lang['change_theme'].'</label>'."\n"; $PageHead .= ' <select name="ThemeSelect" id="ThemeSelect" class="themechanger" onchange="postBackThemeChange(this.form);">'."\n"; foreach (GetThemeList() as $key=>$value){ |
From: Brian C. <bch...@us...> - 2005-11-27 00:06:05
|
Update of /cvsroot/phpcvsview/phpcvsview/Themes/Yellow In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28033/Themes/Yellow Modified Files: theme.php Log Message: Corrected code to collapse the whitespace around the repository selector and the theme and language selectors Index: theme.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Yellow/theme.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** theme.php 26 Nov 2005 05:13:48 -0000 1.8 --- theme.php 27 Nov 2005 00:05:58 -0000 1.9 *************** *** 38,42 **** $PageHead .= '<div id="userOptions">'."\n"; $PageHead .= ' <form class="themechanger" action="'.$_SERVER['PHP_SELF'].'">'."\n"; ! $PageHead .= ' <p><label for="reposSelect">'.$lang['change_cvsroot'].'</label>'."\n"; $PageHead .= ' <select name="reposSelect" id="reposSelect" class="reposchanger" onchange="postBackReposChange(this.form);">'."\n"; foreach($config['cvs'] as $key => $value){ --- 38,42 ---- $PageHead .= '<div id="userOptions">'."\n"; $PageHead .= ' <form class="themechanger" action="'.$_SERVER['PHP_SELF'].'">'."\n"; ! $PageHead .= ' <p class="reposchanger"><label for="reposSelect">'.$lang['change_cvsroot'].'</label>'."\n"; $PageHead .= ' <select name="reposSelect" id="reposSelect" class="reposchanger" onchange="postBackReposChange(this.form);">'."\n"; foreach($config['cvs'] as $key => $value){ *************** *** 49,53 **** $PageHead .= ' </select></p>'."\n"; ! $PageHead .= ' <p><label for="ThemeSelect">'.$lang['change_theme'].'</label>'."\n"; $PageHead .= ' <select name="ThemeSelect" id="ThemeSelect" class="themechanger" onchange="postBackThemeChange(this.form);">'."\n"; foreach (GetThemeList() as $key=>$value){ --- 49,53 ---- $PageHead .= ' </select></p>'."\n"; ! $PageHead .= ' <p class="themechanger"><label for="ThemeSelect">'.$lang['change_theme'].'</label>'."\n"; $PageHead .= ' <select name="ThemeSelect" id="ThemeSelect" class="themechanger" onchange="postBackThemeChange(this.form);">'."\n"; foreach (GetThemeList() as $key=>$value){ |
From: Brian C. <bch...@us...> - 2005-11-27 00:06:05
|
Update of /cvsroot/phpcvsview/phpcvsview/Themes/Green In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28033/Themes/Green Modified Files: theme.php Log Message: Corrected code to collapse the whitespace around the repository selector and the theme and language selectors Index: theme.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Green/theme.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** theme.php 26 Nov 2005 05:05:50 -0000 1.8 --- theme.php 27 Nov 2005 00:05:57 -0000 1.9 *************** *** 38,42 **** $PageHead .= '<div id="userOptions">'."\n"; $PageHead .= ' <form class="themechanger" action="'.$_SERVER['PHP_SELF'].'">'."\n"; ! $PageHead .= ' <p><label for="reposSelect">'.$lang['change_cvsroot'].'</label>'."\n"; $PageHead .= ' <select name="reposSelect" id="reposSelect" class="reposchanger" onchange="postBackReposChange(this.form);">'."\n"; foreach($config['cvs'] as $key => $value){ --- 38,42 ---- $PageHead .= '<div id="userOptions">'."\n"; $PageHead .= ' <form class="themechanger" action="'.$_SERVER['PHP_SELF'].'">'."\n"; ! $PageHead .= ' <p class="reposchanger"><label for="reposSelect">'.$lang['change_cvsroot'].'</label>'."\n"; $PageHead .= ' <select name="reposSelect" id="reposSelect" class="reposchanger" onchange="postBackReposChange(this.form);">'."\n"; foreach($config['cvs'] as $key => $value){ *************** *** 49,53 **** $PageHead .= ' </select></p>'."\n"; ! $PageHead .= ' <p><label for="ThemeSelect">'.$lang['change_theme'].'</label>'."\n"; $PageHead .= ' <select name="ThemeSelect" id="ThemeSelect" class="themechanger" onchange="postBackThemeChange(this.form);">'."\n"; foreach (GetThemeList() as $key=>$value){ --- 49,53 ---- $PageHead .= ' </select></p>'."\n"; ! $PageHead .= ' <p class="themechanger"><label for="ThemeSelect">'.$lang['change_theme'].'</label>'."\n"; $PageHead .= ' <select name="ThemeSelect" id="ThemeSelect" class="themechanger" onchange="postBackThemeChange(this.form);">'."\n"; foreach (GetThemeList() as $key=>$value){ |
From: Brian C. <bch...@us...> - 2005-11-27 00:06:05
|
Update of /cvsroot/phpcvsview/phpcvsview/Themes/Blue In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28033/Themes/Blue Modified Files: theme.php Log Message: Corrected code to collapse the whitespace around the repository selector and the theme and language selectors Index: theme.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Blue/theme.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** theme.php 26 Nov 2005 05:04:59 -0000 1.9 --- theme.php 27 Nov 2005 00:05:57 -0000 1.10 *************** *** 38,42 **** $PageHead .= '<div id="userOptions">'."\n"; $PageHead .= ' <form class="themechanger" action="'.$_SERVER['PHP_SELF'].'">'."\n"; ! $PageHead .= ' <p><label for="reposSelect">'.$lang['change_cvsroot'].'</label>'."\n"; $PageHead .= ' <select name="reposSelect" id="reposSelect" class="reposchanger" onchange="postBackReposChange(this.form);">'."\n"; foreach($config['cvs'] as $key => $value){ --- 38,42 ---- $PageHead .= '<div id="userOptions">'."\n"; $PageHead .= ' <form class="themechanger" action="'.$_SERVER['PHP_SELF'].'">'."\n"; ! $PageHead .= ' <p class="reposchanger" ><label for="reposSelect">'.$lang['change_cvsroot'].'</label>'."\n"; $PageHead .= ' <select name="reposSelect" id="reposSelect" class="reposchanger" onchange="postBackReposChange(this.form);">'."\n"; foreach($config['cvs'] as $key => $value){ *************** *** 49,53 **** $PageHead .= ' </select></p>'."\n"; ! $PageHead .= ' <p><label for="ThemeSelect">'.$lang['change_theme'].'</label>'."\n"; $PageHead .= ' <select name="ThemeSelect" id="ThemeSelect" class="themechanger" onchange="postBackThemeChange(this.form);">'."\n"; foreach (GetThemeList() as $key=>$value){ --- 49,53 ---- $PageHead .= ' </select></p>'."\n"; ! $PageHead .= ' <p class="themechanger"><label for="ThemeSelect">'.$lang['change_theme'].'</label>'."\n"; $PageHead .= ' <select name="ThemeSelect" id="ThemeSelect" class="themechanger" onchange="postBackThemeChange(this.form);">'."\n"; foreach (GetThemeList() as $key=>$value){ |
From: Brian C. <bch...@us...> - 2005-11-27 00:03:32
|
Update of /cvsroot/phpcvsview/phpcvsview/Themes/Yellow In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26740/Themes/Yellow Modified Files: theme.css Log Message: Corrected colors in this theme to be yellow not blue. Index: theme.css =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Yellow/theme.css,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** theme.css 17 Sep 2005 06:47:39 -0000 1.5 --- theme.css 27 Nov 2005 00:03:24 -0000 1.6 *************** *** 24,33 **** a:link, a:active, a:visited { ! color: #009; text-decoration: none; } a:hover { ! color: #009; text-decoration: underline; } --- 24,33 ---- a:link, a:active, a:visited { ! color: #990; text-decoration: none; } a:hover { ! color: #990; text-decoration: underline; } *************** *** 38,50 **** .head { ! background-color: #bbf; } .row1 { ! background-color: #eef; } .row2 { ! background-color: #ddf; } --- 38,50 ---- .head { ! background-color: #ffb; } .row1 { ! background-color: #ffe; } .row2 { ! background-color: #ffd; } |
From: Brian C. <bch...@us...> - 2005-11-27 00:03:12
|
Update of /cvsroot/phpcvsview/phpcvsview/Themes/Red In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26525/Themes/Red Modified Files: theme.css Log Message: Corrected colors in this theme to be red not blue. Index: theme.css =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Red/theme.css,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** theme.css 17 Sep 2005 06:47:39 -0000 1.5 --- theme.css 27 Nov 2005 00:03:04 -0000 1.6 *************** *** 24,33 **** a:link, a:active, a:visited { ! color: #009; text-decoration: none; } a:hover { ! color: #009; text-decoration: underline; } --- 24,33 ---- a:link, a:active, a:visited { ! color: #900; text-decoration: none; } a:hover { ! color: #900; text-decoration: underline; } *************** *** 38,50 **** .head { ! background-color: #bbf; } .row1 { ! background-color: #eef; } .row2 { ! background-color: #ddf; } --- 38,50 ---- .head { ! background-color: #fbb; } .row1 { ! background-color: #fee; } .row2 { ! background-color: #fdd; } |
From: Brian C. <bch...@us...> - 2005-11-26 23:52:02
|
Update of /cvsroot/phpcvsview/phpcvsview/Themes/Green In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22682/Themes/Green Modified Files: theme.css Log Message: Corrected colors in this theme to be green not blue. Index: theme.css =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Green/theme.css,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** theme.css 17 Sep 2005 06:47:39 -0000 1.5 --- theme.css 26 Nov 2005 23:51:51 -0000 1.6 *************** *** 24,33 **** a:link, a:active, a:visited { ! color: #009; text-decoration: none; } a:hover { ! color: #009; text-decoration: underline; } --- 24,33 ---- a:link, a:active, a:visited { ! color: #090; text-decoration: none; } a:hover { ! color: #090; text-decoration: underline; } *************** *** 38,50 **** .head { ! background-color: #bbf; } .row1 { ! background-color: #eef; } .row2 { ! background-color: #ddf; } --- 38,50 ---- .head { ! background-color: #bfb; } .row1 { ! background-color: #efe; } .row2 { ! background-color: #dfd; } |
From: Brian C. <bch...@us...> - 2005-11-26 05:13:56
|
Update of /cvsroot/phpcvsview/phpcvsview/Themes/Yellow In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5246/Themes/Yellow Modified Files: theme.php Log Message: Changed order of replacements for both space and br tags to enable correct XHTML output. Index: theme.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Yellow/theme.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** theme.php 17 Sep 2005 06:45:34 -0000 1.7 --- theme.php 26 Nov 2005 05:13:48 -0000 1.8 *************** *** 254,258 **** echo ' <td align="center">'.str_replace(" ", " ", $AGE).' '.$lang['ago'].'</td>'."\n"; echo ' <td align="center">'.$File["Revisions"][$File["Head"]]["author"].'</td>'."\n"; ! echo ' <td>'.str_replace(array("\n", " "), array("<br />", " "), $File["Revisions"][$File["Head"]]["LogMessage"]).'</td>'."\n"; echo ' </tr>'."\n"; --- 254,258 ---- echo ' <td align="center">'.str_replace(" ", " ", $AGE).' '.$lang['ago'].'</td>'."\n"; echo ' <td align="center">'.$File["Revisions"][$File["Head"]]["author"].'</td>'."\n"; ! echo ' <td>'.str_replace(array(" ", "\n"), array(" ", "<br />"), $File["Revisions"][$File["Head"]]["LogMessage"]).'</td>'."\n"; echo ' </tr>'."\n"; |
From: Brian C. <bch...@us...> - 2005-11-26 05:12:08
|
Update of /cvsroot/phpcvsview/phpcvsview/Themes/Red In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4495/Themes/Red Modified Files: theme.php Log Message: Changed order of replacements for both space and br tags to enable correct XHTML output. Index: theme.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Red/theme.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** theme.php 17 Sep 2005 06:45:34 -0000 1.7 --- theme.php 26 Nov 2005 05:11:55 -0000 1.8 *************** *** 254,258 **** echo ' <td align="center">'.str_replace(" ", " ", $AGE).' '.$lang['ago'].'</td>'."\n"; echo ' <td align="center">'.$File["Revisions"][$File["Head"]]["author"].'</td>'."\n"; ! echo ' <td>'.str_replace(array("\n", " "), array("<br />", " "), $File["Revisions"][$File["Head"]]["LogMessage"]).'</td>'."\n"; echo ' </tr>'."\n"; --- 254,258 ---- echo ' <td align="center">'.str_replace(" ", " ", $AGE).' '.$lang['ago'].'</td>'."\n"; echo ' <td align="center">'.$File["Revisions"][$File["Head"]]["author"].'</td>'."\n"; ! echo ' <td>'.str_replace(array(" ", "\n"), array(" ", "<br />"), $File["Revisions"][$File["Head"]]["LogMessage"]).'</td>'."\n"; echo ' </tr>'."\n"; |
From: Brian C. <bch...@us...> - 2005-11-26 05:05:58
|
Update of /cvsroot/phpcvsview/phpcvsview/Themes/Green In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2458/Themes/Green Modified Files: theme.php Log Message: Changed order of replacements for both space and br tags to enable correct XHTML output. Index: theme.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Green/theme.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** theme.php 17 Sep 2005 06:45:34 -0000 1.7 --- theme.php 26 Nov 2005 05:05:50 -0000 1.8 *************** *** 254,258 **** echo ' <td align="center">'.str_replace(" ", " ", $AGE).' '.$lang['ago'].'</td>'."\n"; echo ' <td align="center">'.$File["Revisions"][$File["Head"]]["author"].'</td>'."\n"; ! echo ' <td>'.str_replace(array("\n", " "), array("<br />", " "), $File["Revisions"][$File["Head"]]["LogMessage"]).'</td>'."\n"; echo ' </tr>'."\n"; --- 254,258 ---- echo ' <td align="center">'.str_replace(" ", " ", $AGE).' '.$lang['ago'].'</td>'."\n"; echo ' <td align="center">'.$File["Revisions"][$File["Head"]]["author"].'</td>'."\n"; ! echo ' <td>'.str_replace(array(" ", "\n"), array(" ", "<br />"), $File["Revisions"][$File["Head"]]["LogMessage"]).'</td>'."\n"; echo ' </tr>'."\n"; |
From: Brian C. <bch...@us...> - 2005-11-26 05:05:07
|
Update of /cvsroot/phpcvsview/phpcvsview/Themes/Blue In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2178/Themes/Blue Modified Files: theme.php Log Message: Changed order of replacements for both space and br tags to enable correct XHTML output. Index: theme.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Blue/theme.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** theme.php 17 Sep 2005 06:45:34 -0000 1.8 --- theme.php 26 Nov 2005 05:04:59 -0000 1.9 *************** *** 254,258 **** echo ' <td align="center">'.str_replace(" ", " ", $AGE).' '.$lang['ago'].'</td>'."\n"; echo ' <td align="center">'.$File["Revisions"][$File["Head"]]["author"].'</td>'."\n"; ! echo ' <td>'.str_replace(array("\n", " "), array("<br />", " "), $File["Revisions"][$File["Head"]]["LogMessage"]).'</td>'."\n"; echo ' </tr>'."\n"; --- 254,258 ---- echo ' <td align="center">'.str_replace(" ", " ", $AGE).' '.$lang['ago'].'</td>'."\n"; echo ' <td align="center">'.$File["Revisions"][$File["Head"]]["author"].'</td>'."\n"; ! echo ' <td>'.str_replace(array(" ", "\n"), array(" ", "<br />"), $File["Revisions"][$File["Head"]]["LogMessage"]).'</td>'."\n"; echo ' </tr>'."\n"; |
From: Brian C. <bch...@us...> - 2005-11-26 05:03:42
|
Update of /cvsroot/phpcvsview/phpcvsview/Themes/Default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1791/Themes/Default Modified Files: theme.php Log Message: Changed order of replacements for both space and br tags to enable correct XHTML output. Index: theme.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Default/theme.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** theme.php 17 Sep 2005 06:45:34 -0000 1.18 --- theme.php 26 Nov 2005 05:03:34 -0000 1.19 *************** *** 254,258 **** echo ' <td align="center">'.str_replace(" ", " ", $AGE).' '.$lang['ago'].'</td>'."\n"; echo ' <td align="center">'.$File["Revisions"][$File["Head"]]["author"].'</td>'."\n"; ! echo ' <td>'.str_replace(array("\n", " "), array("<br />", " "), $File["Revisions"][$File["Head"]]["LogMessage"]).'</td>'."\n"; echo ' </tr>'."\n"; --- 254,258 ---- echo ' <td align="center">'.str_replace(" ", " ", $AGE).' '.$lang['ago'].'</td>'."\n"; echo ' <td align="center">'.$File["Revisions"][$File["Head"]]["author"].'</td>'."\n"; ! echo ' <td>'.str_replace(array(" ", "\n"), array(" ", "<br />"), $File["Revisions"][$File["Head"]]["LogMessage"]).'</td>'."\n"; echo ' </tr>'."\n"; |
From: Brian C. <bch...@us...> - 2005-11-26 04:24:07
|
Update of /cvsroot/phpcvsview/phpcvsview/geshi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28842/geshi Modified Files: geshi.php Log Message: Altered the code to enable correct displaying of line numbers in Internet Explorer. Index: geshi.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/geshi/geshi.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** geshi.php 23 Jan 2005 00:54:06 -0000 1.3 --- geshi.php 26 Nov 2005 04:24:00 -0000 1.4 *************** *** 2030,2041 **** $attributes = $this->get_attributes(); ! if ( $this->use_classes ) ! { $ol_attributes = ''; ! } ! else ! { ! $ol_attributes = ' style="margin: 0;"'; ! } if ( $this->line_numbers_start != 1 ) --- 2030,2041 ---- $attributes = $this->get_attributes(); ! // if ( $this->use_classes ) ! // { $ol_attributes = ''; ! // } ! // else ! // { ! // $ol_attributes = ' style="margin: 0;"'; ! // } if ( $this->line_numbers_start != 1 ) |