mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-03-22 22:17:01 +00:00
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1033 48356398-32a2-884e-a903-53898d9a118a
21 lines
718 B
PHP
21 lines
718 B
PHP
<?php
|
|
|
|
// Tags releases
|
|
|
|
require 'svn.php';
|
|
|
|
$svn_info = svn_info('.');
|
|
|
|
$version = trim(file_get_contents('VERSION'));
|
|
|
|
$trunk_url = $svn_info['Repository Root'] . '/htmlpurifier/trunk';
|
|
$strict_url = $svn_info['Repository Root'] . '/htmlpurifier/branches/strict';
|
|
$trunk_tag_url = $svn_info['Repository Root'] . '/htmlpurifier/tags/' . $version;
|
|
$strict_tag_url = $svn_info['Repository Root'] . '/htmlpurifier/tags/' . $version . '-strict';
|
|
|
|
echo "Tagging trunk to tags/$version...";
|
|
passthru("svn copy --message \"Tag $version release.\" $trunk_url $trunk_tag_url");
|
|
echo "Tagging strict to tags/$version-strict...";
|
|
passthru("svn copy --message \"Tag $version-strict release.\" $strict_url $strict_tag_url");
|
|
|
|
?>
|