forked from phpbb/phpbb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* prep-release-3.0.10: (221 commits) [prep-release-3.0.10] Bumping version number for 3.0.10 final. [prep-release-3.0.10] Update Changelog for 3.0.10-RC3 release. [ticket/10531] Disallow deleting of the last style [ticket/8996] Revert initial fix to keep old behaviour on empty selection Part2 [ticket/8996] Revert initial fix to keep old behaviour on empty selection [ticket/10319] Missing hidden fields in search form [ticket/10504] Revert the changes for widescreen optimisation PHPBB3-6632 [ticket/10504] Revert the changes for widescreen optimisation PHPBB3-10408 [ticket/10504] Revert the changes for widescreen optimisation PHPBB3-10485 [prep-release-3.0.10] Bumping version number for 3.0.10-RC3. [ticket/10480] Add a build target for changelog building. [ticket/10480] Add a build script for exporting the changelog from tracker. [ticket/10502] Fix typo in changelog. 'red' should have been 'read'. [prep-release-3.0.10] Remove duplicate ticket PHPBB3-10490 from changelog. [ticket/10501] Fix description of table prefixes [ticket/10503] Debug error "Invalid arguments" when previewing edits [prep-release-3.0.10] Update Changelog for 3.0.10-RC2 release. [ticket/10497] Fix SQL error when guest visits forum with unread topic [prep-release-3.0.10] Bumping version number for 3.0.10-RC2. [ticket/10461] Add a comment explaining the logic here. ...
- Loading branch information
Showing
157 changed files
with
2,284 additions
and
3,144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
*~ | ||
phpunit.xml | ||
phpBB/cache/*.php | ||
phpBB/cache/queue.php.lock | ||
phpBB/config.php | ||
phpBB/files/* | ||
phpBB/images/avatars/gallery/* | ||
phpBB/images/avatars/upload/* | ||
phpBB/store/* | ||
tests/phpbb_unit_tests.sqlite2 | ||
tests/test_config.php | ||
tests/utf/data/*.txt | ||
/phpunit.xml | ||
/phpBB/cache/*.php | ||
/phpBB/cache/queue.php.lock | ||
/phpBB/config.php | ||
/phpBB/files/* | ||
/phpBB/images/avatars/gallery/* | ||
/phpBB/images/avatars/upload/* | ||
/phpBB/store/* | ||
/tests/phpbb_unit_tests.sqlite2 | ||
/tests/test_config.php | ||
/tests/tmp/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.