Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauriciofauth@gmail.com>2017-06-24 02:24:39 +0300
committerMaurício Meneghini Fauth <mauriciofauth@gmail.com>2017-06-29 03:17:18 +0300
commit13c0f7bc3cb8900a2a3b9e938b6d2914efbfe4c5 (patch)
tree3e61ba21b02fe1369047c8b81bbe6c20a9de9007 /scripts
parent3048161603dc874768e2c13bb1ab01e187ff7489 (diff)
Move classes to PhpMyAdmin namespace
- Move Advisor to PhpMyAdmin namespace - Move Bookmark to PhpMyAdmin namespace - Move Charsets to PhpMyAdmin namespace - Move Config class to PhpMyAdmin namespace - Move Console class to PhpMyAdmin namespace - Move Core to PhpMyAdmin namespace - Move DatabaseInterface to PhpMyAdmin namespace - Move DbList to PhpMyAdmin namespace - Move DbQbe to PhpMyAdmin namespace - Move DbSearch to PhpMyAdmin namespace - Move DisplayResults to PhpMyAdmin namespace - Move Encoding to PhpMyAdmin namespace - Move Error to PhpMyAdmin namespace - Move ErrorHandler to PhpMyAdmin namespace - Move File to PhpMyAdmin namespace - Move Font to PhpMyAdmin namespace - Move Footer to PhpMyAdmin namespace - Move Header to PhpMyAdmin namespace - Move Index to PhpMyAdmin namespace - Move IndexColumn to PhpMyAdmin namespace - Move LanguageManager to PhpMyAdmin namespace - Move Language to PhpMyAdmin namespace - Move Linter to PhpMyAdmin namespace - Move ListAbstract to PhpMyAdmin namespace - Move ListDatabase to PhpMyAdmin namespace Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/advisor2po6
-rwxr-xr-xscripts/create-release.sh4
2 files changed, 5 insertions, 5 deletions
diff --git a/scripts/advisor2po b/scripts/advisor2po
index fe0b34b0d2..128a5ecf50 100644
--- a/scripts/advisor2po
+++ b/scripts/advisor2po
@@ -15,7 +15,7 @@ function add_message($rules, $idx, $type) {
global $messages, $locations;
// Get message text
if ($type == 'justification') {
- $msgs = PMA\libraries\Advisor::splitJustification($rules['rules'][$idx]);
+ $msgs = PhpMyAdmin\Advisor::splitJustification($rules['rules'][$idx]);
$msg = $msgs[0];
} else {
$msg = $rules['rules'][$idx][$type];
@@ -43,7 +43,7 @@ function print_message($idx) {
echo '#, php-format';
echo "\n";
}
- echo 'msgid "' . addcslashes(PMA\libraries\Advisor::escapePercent($messages[$idx]), '"\\') . '"';
+ echo 'msgid "' . addcslashes(PhpMyAdmin\Advisor::escapePercent($messages[$idx]), '"\\') . '"';
echo "\n";
echo 'msgstr ""';
echo "\n";
@@ -53,7 +53,7 @@ define('PHPMYADMIN', 1);
require_once 'libraries/vendor_config.php';
require_once AUTOLOAD_FILE;
-$rules = PMA\libraries\Advisor::parseRulesFile();
+$rules = PhpMyAdmin\Advisor::parseRulesFile();
foreach($rules['rules'] as $idx => $rule) {
add_message($rules, $idx, 'name');
diff --git a/scripts/create-release.sh b/scripts/create-release.sh
index 22c43baec0..69ce6189ba 100755
--- a/scripts/create-release.sh
+++ b/scripts/create-release.sh
@@ -131,7 +131,7 @@ if [ $do_ci -eq 0 -a -$do_daily -eq 0 ] ; then
cat <<END
Please ensure you have incremented rc count or version in the repository :
- - in $CONFIG_LIB PMA\libraries\Config::__constructor() the line
+ - in $CONFIG_LIB PhpMyAdmin\Config::__constructor() the line
" \$this->set( 'PMA_VERSION', '$version' ); "
- in doc/conf.py the line
" version = '$version' "
@@ -444,7 +444,7 @@ Todo now:
based on documentation.
6. increment rc count or version in the repository :
- - in $CONFIG_LIB PMA\libraries\Config::__constructor() the line
+ - in $CONFIG_LIB PhpMyAdmin\Config::__constructor() the line
" \$this->set( 'PMA_VERSION', '2.7.1-dev' ); "
- in Documentation.html (if it exists) the 2 lines
" <title>phpMyAdmin 2.2.2-rc1 - Documentation</title> "