mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-06 22:45:02 +02:00
Merge remote-tracking branch 'github-bantu/ticket/10480' into prep-release-3.0.10
* github-bantu/ticket/10480: [ticket/10480] Add a build target for changelog building. [ticket/10480] Add a build script for exporting the changelog from tracker.
This commit is contained in:
commit
7f8968595b
@ -138,6 +138,12 @@
|
|||||||
save/save_${prevversion}_to_${newversion}/phpbb-${prevversion}_to_${newversion}_git_diffstat.txt" />
|
save/save_${prevversion}_to_${newversion}/phpbb-${prevversion}_to_${newversion}_git_diffstat.txt" />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<target name="changelog" depends="prepare">
|
||||||
|
<exec dir="build" escape="false"
|
||||||
|
command="php -f build_changelog.php '${newversion}' >
|
||||||
|
save/changelog_${newversion}.html" />
|
||||||
|
</target>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
This target can be called using phingcall to retrieve a clean
|
This target can be called using phingcall to retrieve a clean
|
||||||
checkout of a commit from git. It will only export the phpBB directory.
|
checkout of a commit from git. It will only export the phpBB directory.
|
||||||
|
53
build/build_changelog.php
Executable file
53
build/build_changelog.php
Executable file
@ -0,0 +1,53 @@
|
|||||||
|
#!/usr/bin/env php
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package build
|
||||||
|
* @copyright (c) 2011 phpBB Group
|
||||||
|
* @license http://opensource.org/licenses/gpl-license.php GNU General Public License
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
if ($_SERVER['argc'] != 2)
|
||||||
|
{
|
||||||
|
echo "Please specify the new version as argument (e.g. build_changelog.php '1.0.2').\n";
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
$fixVersion = $_SERVER['argv'][1];
|
||||||
|
|
||||||
|
$query = 'project = PHPBB3
|
||||||
|
AND resolution = Fixed
|
||||||
|
AND fixVersion = "' . $fixVersion . '"
|
||||||
|
AND status IN ("Unverified Fix", Closed)';
|
||||||
|
|
||||||
|
$url = 'http://tracker.phpbb.com/sr/jira.issueviews:searchrequest-xml/temp/SearchRequest.xml?jqlQuery=' . urlencode($query) . '&tempMax=1000';
|
||||||
|
$xml = simplexml_load_string(file_get_contents($url));
|
||||||
|
|
||||||
|
foreach ($xml->xpath('//item') as $item)
|
||||||
|
{
|
||||||
|
$key = (string) $item->key;
|
||||||
|
|
||||||
|
$keyUrl = 'http://tracker.phpbb.com/browse/' . $key;
|
||||||
|
$keyLink = '<a href="' . $keyUrl . '">' . $key . '</a>';
|
||||||
|
|
||||||
|
$value = str_replace($key, $keyLink, htmlspecialchars($item->title));
|
||||||
|
$value = str_replace(']', '] -', $value);
|
||||||
|
|
||||||
|
$types[(string) $item->type][$key] = $value;
|
||||||
|
}
|
||||||
|
|
||||||
|
ksort($types);
|
||||||
|
foreach ($types as $type => $tickets)
|
||||||
|
{
|
||||||
|
echo "<h4>$type</h4>\n";
|
||||||
|
echo "<ul>\n";
|
||||||
|
|
||||||
|
uksort($tickets, 'strnatcasecmp');
|
||||||
|
|
||||||
|
foreach ($tickets as $ticket)
|
||||||
|
{
|
||||||
|
echo "<li>$ticket</li>\n";
|
||||||
|
}
|
||||||
|
echo "</ul>\n";
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user