cvsweb-php-public Mailing List for CVSweb-PHP
Brought to you by:
witharr
You can subscribe to this list here.
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2021 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(2) |
Dec
|
From: Tan S. Yi <ta...@ta...> - 2021-11-02 05:19:13
|
Hi, Just in case someone needs to use cvsweb-php under PHP 8, here is a diff patch you can apply against cvsweb-php.php. Hope this is useful. Regards, Tan Shao Yi --- cvsweb-php.php.20211029 2021-10-29 10:10:38.522804870 +0800 +++ cvsweb-php.php 2021-11-02 12:42:17.858692806 +0800 @@ -913,7 +913,9 @@ } } if (isset($revsym[$br]) && $revsym[$br] && !isset($nameprinted[$br])) { - foreach (explode(", ", $revsym{$br}) as $sym) { + # TANSY 2021-11-02 + #foreach (explode(", ", $revsym{$br}) as $sym) { + foreach (explode(", ", $revsym[$br]) as $sym) { echo '<a name="' . htmlentities($sym) . '"></a>'; } $nameprinted[$br] = 1; @@ -1320,7 +1322,38 @@ if ($revision !== '') $revision = '-r' . $revision; exec($RLOGCMD . ' ' . $revision . " $fullname", $tt, $t); - while (list($k,$l)=each($tt)) { +# TANSY 2021-10-29 +# while (list($k,$l)=each($tt)) { +# if ($symnames) { +# if (preg_match('/^\s+([^:]+):\s+([\d\.]+)/',$l,$match)) { +# $symrev[$match[1]] = $match[2]; +# continue; +# } +# else { +# $symnames = 0; +# } +# } +# if (preg_match('/^head:\s+([\d\.]+)/',$l,$match)) { +# $head = $match[1]; +# } +# elseif (preg_match('/^branch:\s+([\d\.]+)/',$l,$match)) { +# $curbranch = $match[1]; +# } +# elseif (preg_match('/^symbolic names/',$l)) { +# $symnames = 1; +# } +# elseif (preg_match('/^keyword substitution: (.+)$/',$l,$match)) { +# $keywordsubstitution = $match[1]; +# } +# elseif (preg_match('/^-----/',$l,$match)) { +# break; +# } +# } + + # TANSY 2021-11-02 + $k=key($tt); + $l=current($tt); + while(!is_null($k)){ if ($symnames) { if (preg_match('/^\s+([^:]+):\s+([\d\.]+)/',$l,$match)) { $symrev[$match[1]] = $match[2]; @@ -1345,7 +1378,11 @@ elseif (preg_match('/^-----/',$l,$match)) { break; } - } + + next($tt); + $k=key($tt); + $l=current($tt); + } if (!isset($curbranch)) { $curbranch = preg_replace('/\.\d+$/','',$head); @@ -1654,7 +1691,9 @@ $err = stream_get_contents($pipes[2]); $out = explode("\n",$out); - if (count($err) > 1) { + # TANSY 2021-11-02 + #if (count($err) > 1) { + if(strcmp('', $err)!=0){ fatal('500 Internal Error', 'Annotate failure: <code>%s</code>', $err); } From: Tan Shao Yi via cvsweb-php-public <cvs...@li...> Date: Friday, 29 October 2021 at 11:36 AM To: cvs...@li... <cvs...@li...> Subject: [cvsweb-php-public] cvsweb-php and PHP8 Hi, May I know if cvsweb-php will be updated for PHP8? Thank you. |
From: Tan S. Yi <ta...@ta...> - 2021-11-02 05:09:13
|
Hi, Just in case someone needs to use cvsweb-php under PHP 8, here is a diff patch you can apply against cvsweb-php.php. Hope this is useful. Regards, Tan Shao Yi From: Tan Shao Yi via cvsweb-php-public <cvs...@li...> Date: Friday, 29 October 2021 at 11:36 AM To: cvs...@li... <cvs...@li...> Subject: [cvsweb-php-public] cvsweb-php and PHP8 Hi, May I know if cvsweb-php will be updated for PHP8? Thank you. |
From: Tan S. Yi <ta...@ta...> - 2021-10-29 03:36:36
|
Hi, May I know if cvsweb-php will be updated for PHP8? Thank you. |
From: Gillbert J. <gil...@ya...> - 2012-05-09 12:02:26
|
Dear Techie, I am used CVS-Web PHP its working fine for me when i click the Folder list Status: 500 Internal Error Error Error: Invalid file path (p=) the aboe error faced, where i make mistake Thanks 4 u r Effort. Regards Gillbert Josh --- On Wed, 9/5/12, cvs...@li... <cvs...@li...> wrote: From: cvs...@li... <cvs...@li...> Subject: confirm c13f33564f0b3668ea3703fe596393b133e4edef To: gil...@ya... Date: Wednesday, 9 May, 2012, 5:26 PM Mailing list subscription confirmation notice for mailing list cvsweb-php-public We have received a request from 172.29.29.4 for subscription of your email address, "gil...@ya...", to the cvs...@li... mailing list. To confirm that you want to be added to this mailing list, simply reply to this message, keeping the Subject: header intact. Or visit this web page: https://lists.sourceforge.net/lists/confirm/cvsweb-php-public/c13f33564f0b3668ea3703fe596393b133e4edef Or include the following line -- and only the following line -- in a message to cvs...@li...: confirm c13f33564f0b3668ea3703fe596393b133e4edef Note that simply sending a `reply' to this message should work from most mail readers, since that usually leaves the Subject: line in the right form (additional "Re:" text in the Subject: is okay). If you do not wish to be subscribed to this list, please simply disregard this message. If you think you are being maliciously subscribed to the list, or have any other questions, send them to cvs...@li.... |
From: Jens V. <jen...@go...> - 2011-07-14 13:24:32
|
Hello everybody, version 2 of CVSweb-PHP has just been released. Noteworthy changes are: * Improved layout for log messages. * Fixed bug in the log view causing log messages to be hidden. (Thanks to Takahiro Ueda for supplying patches) * Better default paths for external commands. Best wishes, Jens Vollinga |