2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * Simple script to set correct charset for changelog
13 require('./libraries/vendor_config.php');
18 if (substr(CHANGELOG_FILE
, -3) == '.gz') {
20 readgzfile(CHANGELOG_FILE
);
21 $changelog = ob_get_contents();
24 $changelog = file_get_contents(CHANGELOG_FILE
);
28 * Whole changelog in variable.
30 $changelog = htmlspecialchars($changelog);
33 '@(http://[./a-zA-Z0-9.-_-]*[/a-zA-Z0-9_])@'
34 => '<a href="\\1">\\1</a>',
37 '/([0-9]{4}-[0-9]{2}-[0-9]{2}) (.+[^ ]) +<(.*)@users.sourceforge.net>/i'
38 => '\\1 <a href="https://sourceforge.net/users/\\3/">\\2</a>',
39 '/thanks to ([^\(\r\n]+) \(([-\w]+)\)/i'
40 => 'thanks to <a href="https://sourceforge.net/users/\\2/">\\1</a>',
41 '/thanks to ([^\(\r\n]+) -\s+([-\w]+)/i'
42 => 'thanks to <a href="https://sourceforge.net/users/\\2/">\\1</a>',
45 '/([0-9]{4}-[0-9]{2}-[0-9]{2}) (.+[^ ]) +<(.*@.*)>/i'
46 => '\\1 <a href="mailto:\\3">\\2</a>',
49 '/patch\s*#?([0-9]{6,})/i'
50 => '<a href="https://sourceforge.net/support/tracker.php?aid=\\1">patch #\\1</a>',
53 '/(?:rfe|feature)\s*#?([0-9]{6,})/i'
54 => '<a href="https://sourceforge.net/support/tracker.php?aid=\\1">RFE #\\1</a>',
57 '/(\s+)([\\/a-z_0-9\.]+\.(?:php3?|html|pl|js|sh))/i'
58 => '\\1<a href="http://phpmyadmin.svn.sourceforge.net/viewvc/phpmyadmin/trunk/phpMyAdmin/\\2?annotate=HEAD">\\2</a>',
61 '/FAQ ([0-9]+)\.([0-9a-z]+)/i'
62 => '<a href="http://localhost/phpMyAdmin/Documentation.html#faq\\1_\\2">FAQ \\1.\\2</a>',
65 '/bug\s*#?([0-9]{6,})/i'
66 => '<a href="https://sourceforge.net/support/tracker.php?aid=\\1">bug #\\1</a>',
68 // all other 6+ digit numbers are treated as bugs
69 '/(?<!BUG|RFE|patch) #?([0-9]{6,})/i'
70 => ' <a href="https://sourceforge.net/support/tracker.php?aid=\\1">bug #\\1</a>',
73 '/((CAN|CVE)-[0-9]+-[0-9]+)/'
74 => '<a href="http://cve.mitre.org/cgi-bin/cvename.cgi?name=\\1">\\1</a>',
76 // Highlight releases (with links)
77 '/(( ### )(([0-9]+)\.([0-9]+)\.([0-9]+)\.([0-9]+) (.*)))/'
78 => '<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>',
79 '/(( ### )(([0-9]+)\.([0-9]+)\.([0-9]+) (.*)))/'
80 => '<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>',
82 // Highlight releases (not linkable)
88 header('Content-type: text/html; charset=utf-8');
89 echo '<?xml version="1.0" encoding="utf-8"?'.'>';
91 <!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
92 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
93 <html xmlns
="http://www.w3.org/1999/xhtml" xml
:lang
="en" lang
="en" dir
="ltr">
95 <link rel
="icon" href
="./favicon.ico" type
="image/x-icon" />
96 <link rel
="shortcut icon" href
="./favicon.ico" type
="image/x-icon" />
97 <title
>phpMyAdmin
- ChangeLog
</title
>
98 <meta http
-equiv
="Content-Type" content
="text/html; charset=utf-8" />
101 <h1
>phpMyAdmin
- ChangeLog
</h1
>
104 echo preg_replace(array_keys($replaces), $replaces, $changelog);