PECL packagesand SVN
[email protected] (Johannes Schlüter) Wed, 11 Nov 2009 12:04:30 +0100
| Newsgroups | php.pecl.dev,svn.migration |
|---|---|
| Organization | php.net |
| Message-ID | <1257937470.20473.18.camel@guybrush> |
Hi,
most of the PECL packages have the "Browse source" link still pointing
to the old CVS stuff. (Random examples:
http://pecl.php.net/package/stats, http://pecl.php.net/package/win32std)
Could somebody with access do some SQL magic to replace all of these to
links?
Something along the lines of
UPDATE packages
SET cvs_link = CONCAT('http://svn.php.net/pecl/', name)
WHERE cvs_link LIKE 'http://cvs.php.net%';
might do the trick, assuming all packages use the same name and cases in
svn and the pecl db and have url-safe names ....
johannes