Conditional Ajax in Privileges
[phpmyadmin-themes.git] / changelog.php
blob9ab2e399aa5e75d84c0d9f6a3407d3af5c945e2d
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Simple script to set correct charset for changelog
6 * @package phpMyAdmin
7 */
9 /**
10 * Load paths.
12 require('./libraries/vendor_config.php');
14 /**
15 * Read changelog.
17 if (substr(CHANGELOG_FILE, -3) == '.gz') {
18 ob_start();
19 readgzfile(CHANGELOG_FILE);
20 $changelog = ob_get_contents();
21 ob_end_clean();
22 } else {
23 $changelog = file_get_contents(CHANGELOG_FILE);
26 /**
27 * Whole changelog in variable.
29 $changelog = htmlspecialchars($changelog);
31 $replaces = array(
32 '@(http://[./a-zA-Z0-9.-_-]*[/a-zA-Z0-9_])@'
33 => '<a href="\\1">\\1</a>',
35 // sourceforge users
36 '/([0-9]{4}-[0-9]{2}-[0-9]{2}) (.+[^ ]) +&lt;(.*)@users.sourceforge.net&gt;/i'
37 => '\\1 <a href="https://sourceforge.net/users/\\3/">\\2</a>',
38 '/thanks to ([^\(\r\n]+) \(([-\w]+)\)/i'
39 => 'thanks to <a href="https://sourceforge.net/users/\\2/">\\1</a>',
40 '/thanks to ([^\(\r\n]+) -\s+([-\w]+)/i'
41 => 'thanks to <a href="https://sourceforge.net/users/\\2/">\\1</a>',
43 // mail adresse
44 '/([0-9]{4}-[0-9]{2}-[0-9]{2}) (.+[^ ]) +&lt;(.*@.*)&gt;/i'
45 => '\\1 <a href="mailto:\\3">\\2</a>',
47 // linking patches
48 '/patch\s*#?([0-9]{6,})/i'
49 => '<a href="https://sourceforge.net/support/tracker.php?aid=\\1">patch #\\1</a>',
51 // linking RFE
52 '/(?:rfe|feature)\s*#?([0-9]{6,})/i'
53 => '<a href="https://sourceforge.net/support/tracker.php?aid=\\1">RFE #\\1</a>',
55 // linking files
56 '/(\s+)([\\/a-z_0-9\.]+\.(?:php3?|html|pl|js|sh))/i'
57 => '\\1<a href="http://phpmyadmin.git.sourceforge.net/git/gitweb.cgi?p=phpmyadmin/phpmyadmin;a=history;f=\\2;hb=HEAD">\\2</a>',
59 // FAQ entries
60 '/FAQ ([0-9]+)\.([0-9a-z]+)/i'
61 => '<a href="http://localhost/phpMyAdmin/Documentation.html#faq\\1_\\2">FAQ \\1.\\2</a>',
63 // linking bugs
64 '/bug\s*#?([0-9]{6,})/i'
65 => '<a href="https://sourceforge.net/support/tracker.php?aid=\\1">bug #\\1</a>',
67 // all other 6+ digit numbers are treated as bugs
68 '/(?<!BUG|RFE|patch) #?([0-9]{6,})/i'
69 => ' <a href="https://sourceforge.net/support/tracker.php?aid=\\1">bug #\\1</a>',
71 // CVE/CAN entries
72 '/((CAN|CVE)-[0-9]+-[0-9]+)/'
73 => '<a href="http://cve.mitre.org/cgi-bin/cvename.cgi?name=\\1">\\1</a>',
75 // Highlight releases (with links)
76 '/([0-9]+)\.([0-9]+)\.([0-9]+)\.0 (\([0-9-]+\))/'
77 => '<a name="\\1_\\2_\\3"></a><a href="http://phpmyadmin.git.sourceforge.net/git/gitweb.cgi?p=phpmyadmin/phpmyadmin;a=shortlog;h=refs/tags/RELEASE_\\1_\\2_\\3">\\1.\\2.\\3.0 \\4</a>',
78 '/([0-9]+)\.([0-9]+)\.([0-9]+)\.([1-9][0-9]*) (\([0-9-]+\))/'
79 => '<a name="\\1_\\2_\\3_\\4"></a><a href="http://phpmyadmin.git.sourceforge.net/git/gitweb.cgi?p=phpmyadmin/phpmyadmin;a=shortlog;h=refs/tags/RELEASE_\\1_\\2_\\3_\\4">\\1.\\2.\\3.\\4 \\5</a>',
81 // Highlight releases (not linkable)
82 '/( ### )(.*)/'
83 => '\\1<b>\\2</b>',
87 header('Content-type: text/html; charset=utf-8');
88 echo '<?xml version="1.0" encoding="utf-8"?'.'>';
90 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
91 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
92 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
93 <head>
94 <link rel="icon" href="./favicon.ico" type="image/x-icon" />
95 <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
96 <title>phpMyAdmin - ChangeLog</title>
97 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
98 </head>
99 <body>
100 <h1>phpMyAdmin - ChangeLog</h1>
101 <?php
102 echo '<pre>';
103 echo preg_replace(array_keys($replaces), $replaces, $changelog);
104 echo '</pre>';
106 </body>
107 </html>