gwynne Mon Nov 10 02:53:44 2008 UTC
Modified files:
/SVNROOT run-conversion.php
Log:
Newlines. Not oldlines, but newlines\!
http://cvs.php.net/viewvc.cgi/SVNROOT/run-conversion.php?r1=1.38&r2=1.39&diff_format=u
Index: SVNROOT/run-conversion.php
diff -u SVNROOT/run-conversion.php:1.38 SVNROOT/run-conversion.php:1.39
--- SVNROOT/run-conversion.php:1.38 Mon Nov 10 02:49:08 2008
+++ SVNROOT/run-conversion.php Mon Nov 10 02:53:44 2008
@@ -7,7 +7,7 @@
//
-----------------------------------------------------------------------------------------------------------------------------
// Constants
-$version = substr('$Revision: 1.38 $', strlen('$Revision: '), -2);
+$version = substr('$Revision: 1.39 $', strlen('$Revision: '), -2);
$passes = array(
'processcvs', // Process CVS modules
@@ -567,17 +567,17 @@
foreach ($tagList as $tag => $tagDate) {
$path = 'tags' . DIRECTORY_SEPARATOR . $tag . DIRECTORY_SEPARATOR
. 'ext';
if ($createDate <= $tagDate) {
- $props[$path] = (isset($props[$path]) ? $props[$path] : '') .
"^/pecl/{$link}/tags/{$tag} {$link}";
+ $props[$path] = (isset($props[$path]) ? $props[$path] : '') .
"^/pecl/{$link}/tags/{$tag} {$link}\n";
}
}
foreach ($branchList as $branch => $branchDate) {
$path = 'branches' . DIRECTORY_SEPARATOR . $branch .
DIRECTORY_SEPARATOR . 'ext';
if ($createDate <= $branchDate) {
- $props[$path] = (isset($props[$path]) ? $props[$path] : '') .
"^/pecl/{$link}/branches/{$branch} {$link}";
+ $props[$path] = (isset($props[$path]) ? $props[$path] : '') .
"^/pecl/{$link}/branches/{$branch} {$link}\n";
}
}
$path = 'trunk' . DIRECTORY_SEPARATOR . 'ext';
- $props[$path] = (isset($props[$path]) ? $props[$path] : '') .
"^/pecl/{$link}/trunk {$link}";
+ $props[$path] = (isset($props[$path]) ? $props[$path] : '') .
"^/pecl/{$link}/trunk {$link}\n";
}
foreach ($props as $path => $value) {
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php