Switch to subversion.

This commit is contained in:
Michal Čihař
2006-10-13 08:03:06 +00:00
parent 92c898727f
commit 5789fb9def
2 changed files with 4 additions and 3 deletions

View File

@@ -10,6 +10,7 @@ $Source$
* scripts/create-release.sh: Readd snapshot support. * scripts/create-release.sh: Readd snapshot support.
* libraries/cleanup.lib.php, libraries/common.lib.php: Move cleanup to * libraries/cleanup.lib.php, libraries/common.lib.php: Move cleanup to
separate function (bug #1569123). separate function (bug #1569123).
* changelog.php: Switch to subversion.
2006-10-12 Marc Delisle <lem9@users.sourceforge.net> 2006-10-12 Marc Delisle <lem9@users.sourceforge.net>
* tbl_change.php: bug #1566219, automated timestamp values * tbl_change.php: bug #1566219, automated timestamp values

View File

@@ -34,7 +34,7 @@ $replaces = array(
// linking files // linking files
'/(\s+)([\\/a-z_0-9\.]+\.(?:php3?|html|pl|js|sh))/i' '/(\s+)([\\/a-z_0-9\.]+\.(?:php3?|html|pl|js|sh))/i'
=> '\\1<a href="http://phpmyadmin.cvs.sourceforge.net/phpmyadmin/phpMyAdmin/\\2?annotate=HEAD">\\2</a>', => '\\1<a href="http://svn.sourceforge.net/viewvc/phpmyadmin/trunk/phpMyAdmin/\\2?annotate=HEAD">\\2</a>',
// FAQ entries // FAQ entries
'/FAQ ([0-9]+)\.([0-9a-z]+)/i' '/FAQ ([0-9]+)\.([0-9a-z]+)/i'
@@ -54,9 +54,9 @@ $replaces = array(
// Highlight releases (with links) // Highlight releases (with links)
'/(( ### )(([0-9]+)\.([0-9]+)\.([0-9]+)\.([0-9]+) (.*)))/' '/(( ### )(([0-9]+)\.([0-9]+)\.([0-9]+)\.([0-9]+) (.*)))/'
=> '<a name="\\4_\\5_\\6_\\7"></a>\\2<a href="http://phpmyadmin.cvs.sourceforge.net/phpmyadmin/phpMyAdmin/?only_with_tag=RELEASE_\\4_\\5_\\6_\\7">\\4.\\5.\\6.\\7 \\8</a>', => '<a name="\\4_\\5_\\6_\\7"></a>\\2<a href="http://svn.sourceforge.net/viewvc/phpmyadmin/tags/RELEASE_\\4_\\5_\\6_\\7/phpMyAdmin">\\4.\\5.\\6.\\7 \\8</a>',
'/(( ### )(([0-9]+)\.([0-9]+)\.([0-9]+) (.*)))/' '/(( ### )(([0-9]+)\.([0-9]+)\.([0-9]+) (.*)))/'
=> '<a name="\\4_\\5_\\6"></a>\\2<a href="http://phpmyadmin.cvs.sourceforge.net/phpmyadmin/phpMyAdmin/?only_with_tag=RELEASE_\\4_\\5_\\6">\\4.\\5.\\6 \\7</a>', => '<a name="\\4_\\5_\\6_\\7"></a>\\2<a href="http://svn.sourceforge.net/viewvc/phpmyadmin/tags/RELEASE_\\4_\\5_\\6/phpMyAdmin">\\4.\\5.\\6 \\7</a>',
// Highlight releases (not linkable) // Highlight releases (not linkable)
'/( ### )(.*)/' '/( ### )(.*)/'