Git
Threads by month
- ----- 2025 -----
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
August 2011
- 8 participants
- 476 discussions

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_2-16704-g80a29d3
by Michal Čihař 22 Aug '11
by Michal Čihař 22 Aug '11
22 Aug '11
The branch, master has been updated
via 80a29d3d149680ddf26819014a4494fdc03283f1 (commit)
from 13349553b19c989714e780302eee7f53646030d5 (commit)
- Log -----------------------------------------------------------------
commit 80a29d3d149680ddf26819014a4494fdc03283f1
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 22 13:44:01 2011 +0200
Apply changes to timepicker only if it is loaded
-----------------------------------------------------------------------
Summary of changes:
js/messages.php | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/js/messages.php b/js/messages.php
index 8b1888e..5106283 100644
--- a/js/messages.php
+++ b/js/messages.php
@@ -447,11 +447,16 @@ PMA_printJsValue("$.datepicker.regional['']['dayNamesMin']",
__('Sa')));
/* l10n: Column header for week of the year in calendar */
PMA_printJsValue("$.datepicker.regional['']['weekHeader']", __('Wk'));
+?>
+$.extend($.datepicker._defaults, $.datepicker.regional['']);
+} /* if ($.datepicker) */
+<?php
+echo "if ($.timepicker) {\n";
PMA_printJsValue("$.timepicker.regional['']['timeText']", __('Time'));
PMA_printJsValue("$.timepicker.regional['']['hourText']", __('Hour'));
PMA_printJsValue("$.timepicker.regional['']['minuteText']", __('Minute'));
PMA_printJsValue("$.timepicker.regional['']['secondText']", __('Second'));
?>
-$.extend($.datepicker._defaults, $.datepicker.regional['']);
-} /* if ($.datepicker) */
+$.extend($.timepicker._defaults, $.timepicker.regional['']);
+} /* if ($.timepicker) */
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_2-16703-g1334955
by Michal Čihař 22 Aug '11
by Michal Čihař 22 Aug '11
22 Aug '11
The branch, master has been updated
via 13349553b19c989714e780302eee7f53646030d5 (commit)
from 958fcf97f43984ac6f7be07b24a2eec9bf68f252 (commit)
- Log -----------------------------------------------------------------
commit 13349553b19c989714e780302eee7f53646030d5
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 22 13:40:53 2011 +0200
Localization for new timepicker
-----------------------------------------------------------------------
Summary of changes:
js/messages.php | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/js/messages.php b/js/messages.php
index 8a606dc..8b1888e 100644
--- a/js/messages.php
+++ b/js/messages.php
@@ -448,9 +448,10 @@ PMA_printJsValue("$.datepicker.regional['']['dayNamesMin']",
/* l10n: Column header for week of the year in calendar */
PMA_printJsValue("$.datepicker.regional['']['weekHeader']", __('Wk'));
-PMA_printJsValue("$.datepicker.regional['']['hourText']", __('Hour'));
-PMA_printJsValue("$.datepicker.regional['']['minuteText']", __('Minute'));
-PMA_printJsValue("$.datepicker.regional['']['secondText']", __('Second'));
+PMA_printJsValue("$.timepicker.regional['']['timeText']", __('Time'));
+PMA_printJsValue("$.timepicker.regional['']['hourText']", __('Hour'));
+PMA_printJsValue("$.timepicker.regional['']['minuteText']", __('Minute'));
+PMA_printJsValue("$.timepicker.regional['']['secondText']", __('Second'));
?>
$.extend($.datepicker._defaults, $.datepicker.regional['']);
} /* if ($.datepicker) */
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_2-16702-g958fcf9
by Marc Delisle 22 Aug '11
by Marc Delisle 22 Aug '11
22 Aug '11
The branch, master has been updated
via 958fcf97f43984ac6f7be07b24a2eec9bf68f252 (commit)
via 047cb6845fb1a7cbd4e8adf4d68cfc46eec7804f (commit)
from bd2d817b0634172ead4072c46f663d08b7bf8081 (commit)
- Log -----------------------------------------------------------------
commit 958fcf97f43984ac6f7be07b24a2eec9bf68f252
Merge: bd2d817 047cb68
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon Aug 22 06:27:33 2011 -0400
Merge commit '047cb6845fb1a7cbd4e8adf4d68cfc46eec7804f'
commit 047cb6845fb1a7cbd4e8adf4d68cfc46eec7804f
Author: Ammar Yasir <ammaryasir.88(a)gmail.com>
Date: Sun Aug 21 23:04:13 2011 +0530
Fixed: Not selecting a datalabel used to issue a notice(undefined offset)
-----------------------------------------------------------------------
Summary of changes:
tbl_zoom_select.php | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/tbl_zoom_select.php b/tbl_zoom_select.php
index a565768..2352fc1 100644
--- a/tbl_zoom_select.php
+++ b/tbl_zoom_select.php
@@ -369,8 +369,10 @@ if(isset($zoom_submit) && $inputs[0] != 'pma_null' && $inputs[1] != 'pma_null' &
$row['where_clause'] = $uniqueCondition[0];
if($dataLabel == $inputs[0] || $dataLabel == $inputs[1])
$data[] = array($inputs[0] => $row[$inputs[0]], $inputs[1] => $row[$inputs[1]], 'where_clause' => $uniqueCondition[0]);
- else
+ else if($dataLabel)
$data[] = array($inputs[0] => $row[$inputs[0]], $inputs[1] => $row[$inputs[1]], $dataLabel => $row[$dataLabel], 'where_clause' => $uniqueCondition[0]);
+ else
+ $data[] = array($inputs[0] => $row[$inputs[0]], $inputs[1] => $row[$inputs[1]], $dataLabel => '', 'where_clause' => $uniqueCondition[0]);
}
?>
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_2-16700-gbd2d817
by Michal Čihař 22 Aug '11
by Michal Čihař 22 Aug '11
22 Aug '11
The branch, master has been updated
via bd2d817b0634172ead4072c46f663d08b7bf8081 (commit)
via 23a49e7ebbc79739401df51cf62f91d5d0f90edf (commit)
via 294ee36ed1776a1ec5d6ce76cd4a26eb87855a0e (commit)
via b54ca624634bf6c377d40239135d10425de0df1f (commit)
via 86b2676a488f9ff04368d65b650297601c37d6a8 (commit)
via 94a577d71d4dcd31128b8f042523fd9a36f1393f (commit)
via d0f97758fc06900b24f14fe698c3b41a0c5d0046 (commit)
from e34fd02ab41e921e4b1bc51c49d86bf98c40fd9d (commit)
- Log -----------------------------------------------------------------
commit bd2d817b0634172ead4072c46f663d08b7bf8081
Merge: 23a49e7 e34fd02
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 22 12:14:26 2011 +0200
Merge remote-tracking branch 'origin/master'
commit 23a49e7ebbc79739401df51cf62f91d5d0f90edf
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 22 12:11:52 2011 +0200
Fix reference to image
commit 294ee36ed1776a1ec5d6ce76cd4a26eb87855a0e
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 22 12:10:33 2011 +0200
Add PMD theme images to themes
commit b54ca624634bf6c377d40239135d10425de0df1f
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 22 12:06:13 2011 +0200
Add PMD images to themes
commit 86b2676a488f9ff04368d65b650297601c37d6a8
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 22 12:04:02 2011 +0200
Load PMD images from theme
commit 94a577d71d4dcd31128b8f042523fd9a36f1393f
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 22 12:02:58 2011 +0200
Avoid using image from other theme
commit d0f97758fc06900b24f14fe698c3b41a0c5d0046
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 22 12:02:25 2011 +0200
Add designer CSS to original theme
-----------------------------------------------------------------------
Summary of changes:
pmd_general.php | 4 +-
themes/original/css/theme_right.css.php | 522 +++++++++++++++++++-
.../images => themes/original/img/pmd}/1.png | Bin 97 -> 97 bytes
.../images => themes/original/img/pmd}/2.png | Bin 172 -> 172 bytes
.../original/img/pmd}/2leftarrow.png | Bin 812 -> 812 bytes
.../original/img/pmd}/2leftarrow_m.png | Bin 796 -> 796 bytes
.../original/img/pmd}/2rightarrow.png | Bin 841 -> 841 bytes
.../original/img/pmd}/2rightarrow_m.png | Bin 830 -> 830 bytes
.../images => themes/original/img/pmd}/3.png | Bin 171 -> 171 bytes
.../images => themes/original/img/pmd}/4.png | Bin 157 -> 157 bytes
.../images => themes/original/img/pmd}/5.png | Bin 84 -> 84 bytes
.../images => themes/original/img/pmd}/6.png | Bin 93 -> 93 bytes
.../images => themes/original/img/pmd}/7.png | Bin 95 -> 95 bytes
.../images => themes/original/img/pmd}/8.png | Bin 84 -> 84 bytes
.../original/img/pmd}/FieldKey_small.png | Bin 267 -> 267 bytes
.../original/img/pmd}/Field_small.png | Bin 293 -> 293 bytes
.../original/img/pmd}/Field_small_char.png | Bin 171 -> 171 bytes
.../original/img/pmd}/Field_small_date.png | Bin 154 -> 154 bytes
.../original/img/pmd}/Field_small_int.png | Bin 168 -> 168 bytes
.../images => themes/original/img/pmd}/Header.png | Bin 145 -> 145 bytes
.../original/img/pmd}/Header_Linked.png | Bin 125 -> 125 bytes
.../original/img/pmd}/and_icon.png | Bin 865 -> 865 bytes
.../original/img/pmd}/ang_direct.png | Bin 788 -> 788 bytes
{pmd/images => themes/original/img/pmd}/bord.png | Bin 219 -> 219 bytes
{pmd/images => themes/original/img/pmd}/bottom.png | Bin 848 -> 848 bytes
{pmd/images => themes/original/img/pmd}/def.png | Bin 767 -> 767 bytes
.../original/img/pmd}/display_field.png | Bin 796 -> 796 bytes
.../original/img/pmd}/downarrow1.png | Bin 860 -> 860 bytes
.../original/img/pmd}/downarrow2.png | Bin 882 -> 882 bytes
.../original/img/pmd}/downarrow2_m.png | Bin 832 -> 832 bytes
{pmd/images => themes/original/img/pmd}/exec.png | Bin 936 -> 936 bytes
.../original/img/pmd}/exec_small.png | Bin 280 -> 280 bytes
.../images => themes/original/img/pmd}/favicon.ico | Bin 1150 -> 1150 bytes
{pmd/images => themes/original/img/pmd}/grid.png | Bin 802 -> 802 bytes
{pmd/images => themes/original/img/pmd}/help.png | Bin 823 -> 823 bytes
.../original/img/pmd}/help_relation.png | Bin 1051 -> 1051 bytes
.../original/img/pmd}/left_panel_butt.png | Bin 129 -> 129 bytes
.../original/img/pmd}/left_panel_tab.png | Bin 133 -> 133 bytes
.../images => themes/original/img/pmd}/minus.png | Bin 48703 -> 48703 bytes
.../images => themes/original/img/pmd}/or_icon.png | Bin 747 -> 747 bytes
{pmd/images => themes/original/img/pmd}/pdf.png | Bin 1088 -> 1088 bytes
.../images => themes/original/img/pmd}/plus.png | Bin 48663 -> 48663 bytes
.../original/img/pmd}/query_builder.png | Bin 836 -> 836 bytes
.../original/img/pmd}/relation.png | Bin 413 -> 413 bytes
{pmd/images => themes/original/img/pmd}/reload.png | Bin 972 -> 972 bytes
{pmd/images => themes/original/img/pmd}/resize.png | Bin 254 -> 254 bytes
.../original/img/pmd}/rightarrow1.png | Bin 849 -> 849 bytes
.../original/img/pmd}/rightarrow2.png | Bin 873 -> 873 bytes
{pmd/images => themes/original/img/pmd}/save.png | Bin 526 -> 526 bytes
.../original/img/pmd}/small_tab.png | Bin 179 -> 179 bytes
{pmd/images => themes/original/img/pmd}/table.png | Bin 295 -> 295 bytes
.../original/img/pmd}/top_panel.png | Bin 171 -> 171 bytes
.../original/img/pmd}/uparrow2_m.png | Bin 857 -> 857 bytes
themes/pmahomme/css/theme_right.css.php | 44 +-
.../images => themes/pmahomme/img/pmd}/1.png | Bin 97 -> 97 bytes
.../images => themes/pmahomme/img/pmd}/2.png | Bin 172 -> 172 bytes
.../pmahomme/img/pmd}/2leftarrow.png | Bin 812 -> 812 bytes
.../pmahomme/img/pmd}/2leftarrow_m.png | Bin 796 -> 796 bytes
.../pmahomme/img/pmd}/2rightarrow.png | Bin 841 -> 841 bytes
.../pmahomme/img/pmd}/2rightarrow_m.png | Bin 830 -> 830 bytes
.../images => themes/pmahomme/img/pmd}/3.png | Bin 171 -> 171 bytes
.../images => themes/pmahomme/img/pmd}/4.png | Bin 157 -> 157 bytes
.../images => themes/pmahomme/img/pmd}/5.png | Bin 84 -> 84 bytes
.../images => themes/pmahomme/img/pmd}/6.png | Bin 93 -> 93 bytes
.../images => themes/pmahomme/img/pmd}/7.png | Bin 95 -> 95 bytes
.../images => themes/pmahomme/img/pmd}/8.png | Bin 84 -> 84 bytes
.../pmahomme/img/pmd}/FieldKey_small.png | Bin 267 -> 267 bytes
.../pmahomme/img/pmd}/Field_small.png | Bin 293 -> 293 bytes
.../pmahomme/img/pmd}/Field_small_char.png | Bin 171 -> 171 bytes
.../pmahomme/img/pmd}/Field_small_date.png | Bin 154 -> 154 bytes
.../pmahomme/img/pmd}/Field_small_int.png | Bin 168 -> 168 bytes
.../images => themes/pmahomme/img/pmd}/Header.png | Bin 145 -> 145 bytes
.../pmahomme/img/pmd}/Header_Linked.png | Bin 125 -> 125 bytes
.../pmahomme/img/pmd}/and_icon.png | Bin 865 -> 865 bytes
.../pmahomme/img/pmd}/ang_direct.png | Bin 788 -> 788 bytes
{pmd/images => themes/pmahomme/img/pmd}/bord.png | Bin 219 -> 219 bytes
{pmd/images => themes/pmahomme/img/pmd}/bottom.png | Bin 848 -> 848 bytes
{pmd/images => themes/pmahomme/img/pmd}/def.png | Bin 767 -> 767 bytes
.../pmahomme/img/pmd}/display_field.png | Bin 796 -> 796 bytes
.../pmahomme/img/pmd}/downarrow1.png | Bin 860 -> 860 bytes
.../pmahomme/img/pmd}/downarrow2.png | Bin 882 -> 882 bytes
.../pmahomme/img/pmd}/downarrow2_m.png | Bin 832 -> 832 bytes
{pmd/images => themes/pmahomme/img/pmd}/exec.png | Bin 936 -> 936 bytes
.../pmahomme/img/pmd}/exec_small.png | Bin 280 -> 280 bytes
.../images => themes/pmahomme/img/pmd}/favicon.ico | Bin 1150 -> 1150 bytes
{pmd/images => themes/pmahomme/img/pmd}/grid.png | Bin 802 -> 802 bytes
{pmd/images => themes/pmahomme/img/pmd}/help.png | Bin 823 -> 823 bytes
.../pmahomme/img/pmd}/help_relation.png | Bin 1051 -> 1051 bytes
.../pmahomme/img/pmd}/left_panel_butt.png | Bin 129 -> 129 bytes
.../pmahomme/img/pmd}/left_panel_tab.png | Bin 133 -> 133 bytes
.../images => themes/pmahomme/img/pmd}/minus.png | Bin 48703 -> 48703 bytes
.../images => themes/pmahomme/img/pmd}/or_icon.png | Bin 747 -> 747 bytes
{pmd/images => themes/pmahomme/img/pmd}/pdf.png | Bin 1088 -> 1088 bytes
.../images => themes/pmahomme/img/pmd}/plus.png | Bin 48663 -> 48663 bytes
.../pmahomme/img/pmd}/query_builder.png | Bin 836 -> 836 bytes
.../pmahomme/img/pmd}/relation.png | Bin 413 -> 413 bytes
{pmd/images => themes/pmahomme/img/pmd}/reload.png | Bin 972 -> 972 bytes
{pmd/images => themes/pmahomme/img/pmd}/resize.png | Bin 254 -> 254 bytes
.../pmahomme/img/pmd}/rightarrow1.png | Bin 849 -> 849 bytes
.../pmahomme/img/pmd}/rightarrow2.png | Bin 873 -> 873 bytes
{pmd/images => themes/pmahomme/img/pmd}/save.png | Bin 526 -> 526 bytes
.../pmahomme/img/pmd}/small_tab.png | Bin 179 -> 179 bytes
{pmd/images => themes/pmahomme/img/pmd}/table.png | Bin 295 -> 295 bytes
.../pmahomme/img/pmd}/top_panel.png | Bin 171 -> 171 bytes
.../pmahomme/img/pmd}/uparrow2_m.png | Bin 857 -> 857 bytes
105 files changed, 545 insertions(+), 25 deletions(-)
copy {pmd/styles/default/images => themes/original/img/pmd}/1.png (100%)
copy {pmd/styles/default/images => themes/original/img/pmd}/2.png (100%)
copy {pmd/images => themes/original/img/pmd}/2leftarrow.png (100%)
copy {pmd/images => themes/original/img/pmd}/2leftarrow_m.png (100%)
copy {pmd/images => themes/original/img/pmd}/2rightarrow.png (100%)
copy {pmd/images => themes/original/img/pmd}/2rightarrow_m.png (100%)
copy {pmd/styles/default/images => themes/original/img/pmd}/3.png (100%)
copy {pmd/styles/default/images => themes/original/img/pmd}/4.png (100%)
copy {pmd/styles/default/images => themes/original/img/pmd}/5.png (100%)
copy {pmd/styles/default/images => themes/original/img/pmd}/6.png (100%)
copy {pmd/styles/default/images => themes/original/img/pmd}/7.png (100%)
copy {pmd/styles/default/images => themes/original/img/pmd}/8.png (100%)
copy {pmd/styles/default/images => themes/original/img/pmd}/FieldKey_small.png (100%)
copy {pmd/styles/default/images => themes/original/img/pmd}/Field_small.png (100%)
copy {pmd/styles/default/images => themes/original/img/pmd}/Field_small_char.png (100%)
copy {pmd/styles/default/images => themes/original/img/pmd}/Field_small_date.png (100%)
copy {pmd/styles/default/images => themes/original/img/pmd}/Field_small_int.png (100%)
copy {pmd/styles/default/images => themes/original/img/pmd}/Header.png (100%)
copy {pmd/styles/default/images => themes/original/img/pmd}/Header_Linked.png (100%)
copy {pmd/images => themes/original/img/pmd}/and_icon.png (100%)
copy {pmd/images => themes/original/img/pmd}/ang_direct.png (100%)
copy {pmd/images => themes/original/img/pmd}/bord.png (100%)
copy {pmd/images => themes/original/img/pmd}/bottom.png (100%)
copy {pmd/images => themes/original/img/pmd}/def.png (100%)
copy {pmd/images => themes/original/img/pmd}/display_field.png (100%)
copy {pmd/images => themes/original/img/pmd}/downarrow1.png (100%)
copy {pmd/images => themes/original/img/pmd}/downarrow2.png (100%)
copy {pmd/images => themes/original/img/pmd}/downarrow2_m.png (100%)
copy {pmd/images => themes/original/img/pmd}/exec.png (100%)
copy {pmd/images => themes/original/img/pmd}/exec_small.png (100%)
copy {pmd/images => themes/original/img/pmd}/favicon.ico (100%)
copy {pmd/images => themes/original/img/pmd}/grid.png (100%)
copy {pmd/images => themes/original/img/pmd}/help.png (100%)
copy {pmd/images => themes/original/img/pmd}/help_relation.png (100%)
copy {pmd/styles/default/images => themes/original/img/pmd}/left_panel_butt.png (100%)
copy {pmd/styles/default/images => themes/original/img/pmd}/left_panel_tab.png (100%)
copy {pmd/styles/default/images => themes/original/img/pmd}/minus.png (100%)
copy {pmd/images => themes/original/img/pmd}/or_icon.png (100%)
copy {pmd/images => themes/original/img/pmd}/pdf.png (100%)
copy {pmd/styles/default/images => themes/original/img/pmd}/plus.png (100%)
copy {pmd/images => themes/original/img/pmd}/query_builder.png (100%)
copy {pmd/images => themes/original/img/pmd}/relation.png (100%)
copy {pmd/images => themes/original/img/pmd}/reload.png (100%)
copy {pmd/images => themes/original/img/pmd}/resize.png (100%)
copy {pmd/images => themes/original/img/pmd}/rightarrow1.png (100%)
copy {pmd/images => themes/original/img/pmd}/rightarrow2.png (100%)
copy {pmd/images => themes/original/img/pmd}/save.png (100%)
copy {pmd/styles/default/images => themes/original/img/pmd}/small_tab.png (100%)
copy {pmd/images => themes/original/img/pmd}/table.png (100%)
copy {pmd/styles/default/images => themes/original/img/pmd}/top_panel.png (100%)
copy {pmd/images => themes/original/img/pmd}/uparrow2_m.png (100%)
rename {pmd/styles/default/images => themes/pmahomme/img/pmd}/1.png (100%)
rename {pmd/styles/default/images => themes/pmahomme/img/pmd}/2.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/2leftarrow.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/2leftarrow_m.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/2rightarrow.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/2rightarrow_m.png (100%)
rename {pmd/styles/default/images => themes/pmahomme/img/pmd}/3.png (100%)
rename {pmd/styles/default/images => themes/pmahomme/img/pmd}/4.png (100%)
rename {pmd/styles/default/images => themes/pmahomme/img/pmd}/5.png (100%)
rename {pmd/styles/default/images => themes/pmahomme/img/pmd}/6.png (100%)
rename {pmd/styles/default/images => themes/pmahomme/img/pmd}/7.png (100%)
rename {pmd/styles/default/images => themes/pmahomme/img/pmd}/8.png (100%)
rename {pmd/styles/default/images => themes/pmahomme/img/pmd}/FieldKey_small.png (100%)
rename {pmd/styles/default/images => themes/pmahomme/img/pmd}/Field_small.png (100%)
rename {pmd/styles/default/images => themes/pmahomme/img/pmd}/Field_small_char.png (100%)
rename {pmd/styles/default/images => themes/pmahomme/img/pmd}/Field_small_date.png (100%)
rename {pmd/styles/default/images => themes/pmahomme/img/pmd}/Field_small_int.png (100%)
rename {pmd/styles/default/images => themes/pmahomme/img/pmd}/Header.png (100%)
rename {pmd/styles/default/images => themes/pmahomme/img/pmd}/Header_Linked.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/and_icon.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/ang_direct.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/bord.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/bottom.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/def.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/display_field.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/downarrow1.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/downarrow2.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/downarrow2_m.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/exec.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/exec_small.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/favicon.ico (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/grid.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/help.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/help_relation.png (100%)
rename {pmd/styles/default/images => themes/pmahomme/img/pmd}/left_panel_butt.png (100%)
rename {pmd/styles/default/images => themes/pmahomme/img/pmd}/left_panel_tab.png (100%)
rename {pmd/styles/default/images => themes/pmahomme/img/pmd}/minus.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/or_icon.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/pdf.png (100%)
rename {pmd/styles/default/images => themes/pmahomme/img/pmd}/plus.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/query_builder.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/relation.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/reload.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/resize.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/rightarrow1.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/rightarrow2.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/save.png (100%)
rename {pmd/styles/default/images => themes/pmahomme/img/pmd}/small_tab.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/table.png (100%)
rename {pmd/styles/default/images => themes/pmahomme/img/pmd}/top_panel.png (100%)
rename {pmd/images => themes/pmahomme/img/pmd}/uparrow2_m.png (100%)
diff --git a/pmd_general.php b/pmd_general.php
index 2bb4354..7423d54 100644
--- a/pmd_general.php
+++ b/pmd_general.php
@@ -281,12 +281,12 @@ for ($i = 0; $i < count($GLOBALS['PMD']["TABLE_NAME"]); $i++) {
<?php
if (isset($tables_pk_or_unique_keys[$t_n.".".$tab_column[$t_n]["COLUMN_NAME"][$j]])) {
?>
- <img src="pmd/styles/<?php echo $GLOBALS['PMD']['STYLE'];?>/images/FieldKey_small.png"
+ <img src="<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/FieldKey_small.png"
alt="*" />
<?php
} else {
?>
- <img src="pmd/styles/<?php echo $GLOBALS['PMD']['STYLE']?>/images/Field_small<?php
+ <img src="<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/Field_small<?php
if (strstr($tab_column[$t_n]["TYPE"][$j],'char')
|| strstr($tab_column[$t_n]["TYPE"][$j],'text')) {
echo '_char';
diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php
index be996e6..053d3d9 100644
--- a/themes/original/css/theme_right.css.php
+++ b/themes/original/css/theme_right.css.php
@@ -2570,7 +2570,7 @@ span.cm-number {
}
.saving_edited_data {
- background: url(./themes/pmahomme/img/ajax_clock_small.gif) no-repeat left;
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>ajax_clock_small.gif) no-repeat left;
padding-left: 20px;
}
@@ -2580,3 +2580,523 @@ span.cm-number {
.ui-timepicker-div dl dt { height: 25px; }
.ui-timepicker-div dl dd { margin: -25px 0 10px 65px; }
.ui-timepicker-div td { font-size: 90%; }
+
+/* Designer */
+.input_tab {
+ background-color: #A6C7E1;
+ color: #000000;
+}
+
+#canvas {
+ background-color: #FFFFFF;
+ color: #000000;
+}
+
+canvas.pmd {
+ display: inline-block;
+ overflow: hidden;
+ text-align: left;
+}
+
+canvas.pmd * {
+ behavior: url(#default#VML);
+}
+
+.pmd_tab {
+ background-color: #FFFFFF;
+ color: #000000;
+ border-collapse: collapse;
+ border: 1px solid #AAAAAA;
+ z-index: 1;
+ -moz-user-select: none;
+}
+
+.tab_zag {
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/Header.png);
+ background-repeat: repeat-x;
+ text-align: center;
+ cursor: move;
+ padding: 1px;
+ font-weight: bold;
+}
+
+.tab_zag_2 {
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/Header_Linked.png);
+ background-repeat: repeat-x;
+ text-align: center;
+ cursor: move;
+ padding: 1px;
+ font-weight: bold;
+}
+
+.tab_field {
+ background: #FFFFFF;
+ color: #000000;
+ cursor: default;
+}
+
+.tab_field_2 {
+ background-color: #CCFFCC;
+ color: #000000;
+ background-repeat: repeat-x;
+ cursor: default;
+}
+
+.tab_field_3 {
+ background-color: #FFE6E6; /*#DDEEFF*/
+ color: #000000;
+ cursor: default;
+}
+
+#pmd_hint {
+ white-space: nowrap;
+ position: absolute;
+ background-color: #99FF99;
+ color: #000000;
+ left: 200px;
+ top: 50px;
+ z-index: 3;
+ border: #00CC66 solid 1px;
+ display: none;
+}
+
+.scroll_tab {
+ overflow: auto;
+ width: 100%;
+ height: 500px;
+}
+
+.pmd_Tabs {
+ cursor: default;
+ color: #0055bb;
+ white-space: nowrap;
+ text-decoration: none;
+ text-indent: 3px;
+ font-weight: bold;
+ margin-left: 2px;
+ text-align: left;
+ background-color: #FFFFFF;
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/left_panel_butt.png);
+ border: #CCCCCC solid 1px;
+}
+
+.pmd_Tabs2 {
+ cursor: default;
+ color: #0055bb;
+ background: #FFEE99;
+ text-indent: 3px;
+ font-weight: bold;
+ white-space: nowrap;
+ text-decoration: none;
+ border: #9999FF solid 1px;
+ text-align: left;
+}
+
+.owner {
+ font-weight: normal;
+ color: #888888;
+}
+
+.option_tab {
+ padding-left: 2px;
+ padding-right: 2px;
+ width: 5px;
+}
+
+.select_all {
+ vertical-align: top;
+ padding-left: 2px;
+ padding-right: 2px;
+ cursor: default;
+ width: 1px;
+ color: #000000;
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/Header.png);
+ background-repeat: repeat-x;
+}
+
+.small_tab {
+ vertical-align: top;
+ background-color: #0064ea;
+ color: #FFFFFF;
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/small_tab.png);
+ cursor: default;
+ text-align: center;
+ font-weight: bold;
+ padding-left: 2px;
+ padding-right: 2px;
+ width: 1px;
+ text-decoration: none;
+}
+
+.small_tab2 {
+ vertical-align: top;
+ color: #FFFFFF;
+ background-color: #FF9966;
+ cursor: default;
+ padding-left: 2px;
+ padding-right: 2px;
+ text-align: center;
+ font-weight: bold;
+ width: 1px;
+ text-decoration: none;
+}
+
+.small_tab_pref {
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/Header.png);
+ background-repeat: repeat-x;
+ text-align: center;
+ width: 1px;
+}
+
+.small_tab_pref2 {
+ vertical-align: top;
+ color: #FFFFFF;
+ background-color: #FF9966;
+ cursor: default;
+ text-align: center;
+ font-weight: bold;
+ width: 1px;
+ text-decoration: none;
+}
+
+.butt {
+ border: #4477aa solid 1px;
+ font-weight: bold;
+ height: 19px;
+ width: 70px;
+ background-color: #FFFFFF;
+ color: #000000;
+ vertical-align: baseline;
+}
+
+.L_butt2_1 {
+ padding: 1px;
+ text-decoration: none;
+ background-color: #ffffff;
+ color: #000000;
+ vertical-align: middle;
+ cursor: default;
+}
+
+.L_butt2_2 {
+ padding: 0;
+ border: #0099CC solid 1px;
+ background: #FFEE99;
+ text-decoration: none;
+ color: #000000;
+ cursor: default;
+}
+
+/* ---------------------------------------------------------------------------*/
+.bor {
+ width: 10px;
+ height: 10px;
+}
+
+.frams1 {
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/1.png) no-repeat right bottom;
+}
+
+.frams2 {
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/2.png) no-repeat left bottom;
+}
+
+.frams3 {
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/3.png) no-repeat left top;
+}
+
+.frams4 {
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/4.png) no-repeat right top;
+}
+
+.frams5 {
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/5.png) repeat-x center bottom;
+}
+
+.frams6 {
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/6.png) repeat-y left;
+}
+
+.frams7 {
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/7.png) repeat-x top;
+}
+
+.frams8 {
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/8.png) repeat-y right;
+}
+
+#osn_tab {
+ background-color: #FFFFFF;
+ color: #000000;
+ border: #A9A9A9 solid 1px;
+}
+
+.pmd_header {
+ background-color: #EAEEF0;
+ color: #000000;
+ text-align: center;
+ font-weight: bold;
+ margin: 0;
+ padding: 0;
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/top_panel.png);
+ background-position: top;
+ background-repeat: repeat-x;
+ border-right: #999999 solid 1px;
+ border-left: #999999 solid 1px;
+ height: 28px;
+}
+
+.pmd_header a {
+ display: block;
+ float: left;
+ margin: 3px 1px 4px 1px;
+ height: 20px;
+ border: 1px dotted #ffffff;
+}
+
+.pmd_header .M_bord {
+ display: block;
+ float: left;
+ margin: 4px;
+ height: 20px;
+ width: 2px;
+}
+
+.pmd_header a.first {
+ margin-right: 1em;
+}
+
+.pmd_header a.last {
+ margin-left: 1em;
+}
+
+a.M_butt_Selected_down_IE,
+a.M_butt_Selected_down {
+ border: 1px solid #C0C0BB;
+ background-color: #99FF99;
+ color: #000000;
+}
+
+a.M_butt_Selected_down_IE:hover,
+a.M_butt_Selected_down:hover,
+a.M_butt:hover {
+ border: 1px solid #0099CC;
+ background-color: #FFEE99;
+ color: #000000;
+}
+
+#layer_menu {
+ z-index: 1000;
+ position: absolute;
+ left: 0;
+ background-color: #EAEEF0;
+ border: #999999 solid 1px;
+}
+
+#layer_action {
+ position: absolute;
+ left: 638px;
+ top: 52px;
+ z-index: 1000;
+ background-color: #CCFF99;
+ padding: 3px;
+ border: #009933 solid 1px;
+ white-space: nowrap;
+ font-weight: bold;
+}
+
+#layer_upd_relation {
+ position: absolute;
+ left: 637px;
+ top: 224px;
+ z-index: 1000;
+}
+
+#layer_new_relation {
+ position: absolute;
+ left: 636px;
+ top: 85px;
+ z-index: 1000;
+ width: 153px;
+}
+
+#pmd_optionse {
+ position: absolute;
+ left: 636px;
+ top: 85px;
+ z-index: 1000;
+ width: 153px;
+}
+
+#layer_menu_sizer {
+ background-image: url(../../images/resize.png);
+ cursor: nw-resize;
+ width: 16px;
+ height: 16px;
+}
+
+.panel {
+ position: fixed;
+ top: 50px;
+ right: 0;
+ display: none;
+ background: #FFF;
+ border:1px solid #F5F5F5;
+ width: 350 px;
+ height: auto;
+ padding: 30px 170px 30px 30px;
+ color:#FFF;
+ z-index:99;
+}
+
+a.trigger{
+ position: fixed;
+ text-decoration: none;
+ top: 60px; right: 0;
+ color:#fff;
+ padding: 10px 40px 10px 15px;
+ background:#333333 url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/plus.png) 85% 55% no-repeat;
+ border:1px solid #444444;
+ display: block;
+}
+
+a.trigger:hover{
+ position: fixed;
+ text-decoration: none;
+ top: 60px; right: 0;
+ color:#080808;
+ padding: 10px 40px 10px 15px;
+ background:#fff696 url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/plus.png) 85% 55% no-repeat;
+ border:1px solid #999;
+ display: block;
+}
+
+a.active.trigger {
+ background:#222222 url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/minus.png) 85% 55% no-repeat;
+ z-index:999;
+}
+
+a.active.trigger:hover {
+ background:#fff696 url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/minus.png) 85% 55% no-repeat;
+ z-index:999;
+}
+
+h2.tiger{
+ background-repeat: repeat-x;
+ padding: 1px;
+ font-weight: bold;
+ padding: 50 20 50 20px;
+ margin: 0 0 5px 0;
+ width: 250px;
+ float: left;
+ color : #333;
+ text-align: center;
+}
+
+h2.tiger a {
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/Header.png);
+ text-align: center;
+ text-decoration: none;
+ color : #333;
+ display: block;
+}
+
+h2.tiger a:hover {
+ color: #000;
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/Header_Linked.png);
+}
+
+h2.active {
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/Header.png);
+ background-repeat: repeat-x;
+ padding: 1px;
+ background-position: left bottom;
+}
+
+.toggle_container {
+ margin: 0 0 5px;
+ padding: 0;
+ border-top: 1px solid #d6d6d6;
+ background: #FFF ;
+ width: 250px;
+ overflow: hidden;
+ font-size: 1.2em;
+ clear: both;
+}
+
+.toggle_container .block {
+ background-color: #DBE4E8;
+ padding:40 15 40 15px; /*--Padding of Container--*/
+ border:1px solid #999;
+ color:#000;
+}
+
+.history_table {
+ text-align: center;
+ background-color: #9999CC;
+}
+
+.history_table2 {
+ text-align: center;
+ background-color: #DBE4E8;
+}
+
+#filter {
+ display: none;
+ position: absolute;
+ top: 0%;
+ left: 0%;
+ width: 100%;
+ height: 100%;
+ background-color: #CCA;
+ z-index:10;
+ opacity:0.5;
+ filter: alpha(opacity=50);
+}
+
+#box {
+ display: none;
+ position: absolute;
+ top: 20%;
+ left: 30%;
+ width: 500px;
+ height: 220px;
+ padding: 48px;
+ margin:0;
+ border: 1px solid black;
+ background-color: white;
+ z-index:101;
+ overflow: visible;
+}
+
+#boxtitle {
+ position:absolute;
+ float:center;
+ top:0;
+ left:0;
+ width:593px;
+ height:20px;
+ padding:0;
+ padding-top:4px;
+ left-padding:8px;
+ margin:0;
+ border-bottom:4px solid #3CF;
+ background-color: #D0DCE0;
+ color:black;
+ font-weight:bold;
+ padding-left: 2px;
+ text-align:left;
+}
+
+#tblfooter {
+ background-color: #D3DCE3;
+ float: right;
+ padding-top:10px;
+ color: black;
+ font-weight: normal;
+}
+
+input.btn {
+ color:#333;
+ background-color: #D0DCE0;
+}
diff --git a/pmd/styles/default/images/1.png b/themes/original/img/pmd/1.png
similarity index 100%
copy from pmd/styles/default/images/1.png
copy to themes/original/img/pmd/1.png
diff --git a/pmd/styles/default/images/2.png b/themes/original/img/pmd/2.png
similarity index 100%
copy from pmd/styles/default/images/2.png
copy to themes/original/img/pmd/2.png
diff --git a/pmd/images/2leftarrow.png b/themes/original/img/pmd/2leftarrow.png
similarity index 100%
copy from pmd/images/2leftarrow.png
copy to themes/original/img/pmd/2leftarrow.png
diff --git a/pmd/images/2leftarrow_m.png b/themes/original/img/pmd/2leftarrow_m.png
similarity index 100%
copy from pmd/images/2leftarrow_m.png
copy to themes/original/img/pmd/2leftarrow_m.png
diff --git a/pmd/images/2rightarrow.png b/themes/original/img/pmd/2rightarrow.png
similarity index 100%
copy from pmd/images/2rightarrow.png
copy to themes/original/img/pmd/2rightarrow.png
diff --git a/pmd/images/2rightarrow_m.png b/themes/original/img/pmd/2rightarrow_m.png
similarity index 100%
copy from pmd/images/2rightarrow_m.png
copy to themes/original/img/pmd/2rightarrow_m.png
diff --git a/pmd/styles/default/images/3.png b/themes/original/img/pmd/3.png
similarity index 100%
copy from pmd/styles/default/images/3.png
copy to themes/original/img/pmd/3.png
diff --git a/pmd/styles/default/images/4.png b/themes/original/img/pmd/4.png
similarity index 100%
copy from pmd/styles/default/images/4.png
copy to themes/original/img/pmd/4.png
diff --git a/pmd/styles/default/images/5.png b/themes/original/img/pmd/5.png
similarity index 100%
copy from pmd/styles/default/images/5.png
copy to themes/original/img/pmd/5.png
diff --git a/pmd/styles/default/images/6.png b/themes/original/img/pmd/6.png
similarity index 100%
copy from pmd/styles/default/images/6.png
copy to themes/original/img/pmd/6.png
diff --git a/pmd/styles/default/images/7.png b/themes/original/img/pmd/7.png
similarity index 100%
copy from pmd/styles/default/images/7.png
copy to themes/original/img/pmd/7.png
diff --git a/pmd/styles/default/images/8.png b/themes/original/img/pmd/8.png
similarity index 100%
copy from pmd/styles/default/images/8.png
copy to themes/original/img/pmd/8.png
diff --git a/pmd/styles/default/images/FieldKey_small.png b/themes/original/img/pmd/FieldKey_small.png
similarity index 100%
copy from pmd/styles/default/images/FieldKey_small.png
copy to themes/original/img/pmd/FieldKey_small.png
diff --git a/pmd/styles/default/images/Field_small.png b/themes/original/img/pmd/Field_small.png
similarity index 100%
copy from pmd/styles/default/images/Field_small.png
copy to themes/original/img/pmd/Field_small.png
diff --git a/pmd/styles/default/images/Field_small_char.png b/themes/original/img/pmd/Field_small_char.png
similarity index 100%
copy from pmd/styles/default/images/Field_small_char.png
copy to themes/original/img/pmd/Field_small_char.png
diff --git a/pmd/styles/default/images/Field_small_date.png b/themes/original/img/pmd/Field_small_date.png
similarity index 100%
copy from pmd/styles/default/images/Field_small_date.png
copy to themes/original/img/pmd/Field_small_date.png
diff --git a/pmd/styles/default/images/Field_small_int.png b/themes/original/img/pmd/Field_small_int.png
similarity index 100%
copy from pmd/styles/default/images/Field_small_int.png
copy to themes/original/img/pmd/Field_small_int.png
diff --git a/pmd/styles/default/images/Header.png b/themes/original/img/pmd/Header.png
similarity index 100%
copy from pmd/styles/default/images/Header.png
copy to themes/original/img/pmd/Header.png
diff --git a/pmd/styles/default/images/Header_Linked.png b/themes/original/img/pmd/Header_Linked.png
similarity index 100%
copy from pmd/styles/default/images/Header_Linked.png
copy to themes/original/img/pmd/Header_Linked.png
diff --git a/pmd/images/and_icon.png b/themes/original/img/pmd/and_icon.png
similarity index 100%
copy from pmd/images/and_icon.png
copy to themes/original/img/pmd/and_icon.png
diff --git a/pmd/images/ang_direct.png b/themes/original/img/pmd/ang_direct.png
similarity index 100%
copy from pmd/images/ang_direct.png
copy to themes/original/img/pmd/ang_direct.png
diff --git a/pmd/images/bord.png b/themes/original/img/pmd/bord.png
similarity index 100%
copy from pmd/images/bord.png
copy to themes/original/img/pmd/bord.png
diff --git a/pmd/images/bottom.png b/themes/original/img/pmd/bottom.png
similarity index 100%
copy from pmd/images/bottom.png
copy to themes/original/img/pmd/bottom.png
diff --git a/pmd/images/def.png b/themes/original/img/pmd/def.png
similarity index 100%
copy from pmd/images/def.png
copy to themes/original/img/pmd/def.png
diff --git a/pmd/images/display_field.png b/themes/original/img/pmd/display_field.png
similarity index 100%
copy from pmd/images/display_field.png
copy to themes/original/img/pmd/display_field.png
diff --git a/pmd/images/downarrow1.png b/themes/original/img/pmd/downarrow1.png
similarity index 100%
copy from pmd/images/downarrow1.png
copy to themes/original/img/pmd/downarrow1.png
diff --git a/pmd/images/downarrow2.png b/themes/original/img/pmd/downarrow2.png
similarity index 100%
copy from pmd/images/downarrow2.png
copy to themes/original/img/pmd/downarrow2.png
diff --git a/pmd/images/downarrow2_m.png b/themes/original/img/pmd/downarrow2_m.png
similarity index 100%
copy from pmd/images/downarrow2_m.png
copy to themes/original/img/pmd/downarrow2_m.png
diff --git a/pmd/images/exec.png b/themes/original/img/pmd/exec.png
similarity index 100%
copy from pmd/images/exec.png
copy to themes/original/img/pmd/exec.png
diff --git a/pmd/images/exec_small.png b/themes/original/img/pmd/exec_small.png
similarity index 100%
copy from pmd/images/exec_small.png
copy to themes/original/img/pmd/exec_small.png
diff --git a/pmd/images/favicon.ico b/themes/original/img/pmd/favicon.ico
similarity index 100%
copy from pmd/images/favicon.ico
copy to themes/original/img/pmd/favicon.ico
diff --git a/pmd/images/grid.png b/themes/original/img/pmd/grid.png
similarity index 100%
copy from pmd/images/grid.png
copy to themes/original/img/pmd/grid.png
diff --git a/pmd/images/help.png b/themes/original/img/pmd/help.png
similarity index 100%
copy from pmd/images/help.png
copy to themes/original/img/pmd/help.png
diff --git a/pmd/images/help_relation.png b/themes/original/img/pmd/help_relation.png
similarity index 100%
copy from pmd/images/help_relation.png
copy to themes/original/img/pmd/help_relation.png
diff --git a/pmd/styles/default/images/left_panel_butt.png b/themes/original/img/pmd/left_panel_butt.png
similarity index 100%
copy from pmd/styles/default/images/left_panel_butt.png
copy to themes/original/img/pmd/left_panel_butt.png
diff --git a/pmd/styles/default/images/left_panel_tab.png b/themes/original/img/pmd/left_panel_tab.png
similarity index 100%
copy from pmd/styles/default/images/left_panel_tab.png
copy to themes/original/img/pmd/left_panel_tab.png
diff --git a/pmd/styles/default/images/minus.png b/themes/original/img/pmd/minus.png
similarity index 100%
copy from pmd/styles/default/images/minus.png
copy to themes/original/img/pmd/minus.png
diff --git a/pmd/images/or_icon.png b/themes/original/img/pmd/or_icon.png
similarity index 100%
copy from pmd/images/or_icon.png
copy to themes/original/img/pmd/or_icon.png
diff --git a/pmd/images/pdf.png b/themes/original/img/pmd/pdf.png
similarity index 100%
copy from pmd/images/pdf.png
copy to themes/original/img/pmd/pdf.png
diff --git a/pmd/styles/default/images/plus.png b/themes/original/img/pmd/plus.png
similarity index 100%
copy from pmd/styles/default/images/plus.png
copy to themes/original/img/pmd/plus.png
diff --git a/pmd/images/query_builder.png b/themes/original/img/pmd/query_builder.png
similarity index 100%
copy from pmd/images/query_builder.png
copy to themes/original/img/pmd/query_builder.png
diff --git a/pmd/images/relation.png b/themes/original/img/pmd/relation.png
similarity index 100%
copy from pmd/images/relation.png
copy to themes/original/img/pmd/relation.png
diff --git a/pmd/images/reload.png b/themes/original/img/pmd/reload.png
similarity index 100%
copy from pmd/images/reload.png
copy to themes/original/img/pmd/reload.png
diff --git a/pmd/images/resize.png b/themes/original/img/pmd/resize.png
similarity index 100%
copy from pmd/images/resize.png
copy to themes/original/img/pmd/resize.png
diff --git a/pmd/images/rightarrow1.png b/themes/original/img/pmd/rightarrow1.png
similarity index 100%
copy from pmd/images/rightarrow1.png
copy to themes/original/img/pmd/rightarrow1.png
diff --git a/pmd/images/rightarrow2.png b/themes/original/img/pmd/rightarrow2.png
similarity index 100%
copy from pmd/images/rightarrow2.png
copy to themes/original/img/pmd/rightarrow2.png
diff --git a/pmd/images/save.png b/themes/original/img/pmd/save.png
similarity index 100%
copy from pmd/images/save.png
copy to themes/original/img/pmd/save.png
diff --git a/pmd/styles/default/images/small_tab.png b/themes/original/img/pmd/small_tab.png
similarity index 100%
copy from pmd/styles/default/images/small_tab.png
copy to themes/original/img/pmd/small_tab.png
diff --git a/pmd/images/table.png b/themes/original/img/pmd/table.png
similarity index 100%
copy from pmd/images/table.png
copy to themes/original/img/pmd/table.png
diff --git a/pmd/styles/default/images/top_panel.png b/themes/original/img/pmd/top_panel.png
similarity index 100%
copy from pmd/styles/default/images/top_panel.png
copy to themes/original/img/pmd/top_panel.png
diff --git a/pmd/images/uparrow2_m.png b/themes/original/img/pmd/uparrow2_m.png
similarity index 100%
copy from pmd/images/uparrow2_m.png
copy to themes/original/img/pmd/uparrow2_m.png
diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php
index 5d38c7c..48ab4ca 100644
--- a/themes/pmahomme/css/theme_right.css.php
+++ b/themes/pmahomme/css/theme_right.css.php
@@ -3056,7 +3056,7 @@ canvas.pmd * {
}
.tab_zag {
- background-image: url(images/Header.png);
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/Header.png);
background-repeat: repeat-x;
text-align: center;
cursor: move;
@@ -3065,7 +3065,7 @@ canvas.pmd * {
}
.tab_zag_2 {
- background-image: url(images/Header_Linked.png);
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/Header_Linked.png);
background-repeat: repeat-x;
text-align: center;
cursor: move;
@@ -3120,7 +3120,7 @@ canvas.pmd * {
margin-left: 2px;
text-align: left;
background-color: #FFFFFF;
- background-image: url(images/left_panel_butt.png);
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/left_panel_butt.png);
border: #CCCCCC solid 1px;
}
@@ -3154,7 +3154,7 @@ canvas.pmd * {
cursor: default;
width: 1px;
color: #000000;
- background-image: url(images/Header.png);
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/Header.png);
background-repeat: repeat-x;
}
@@ -3162,7 +3162,7 @@ canvas.pmd * {
vertical-align: top;
background-color: #0064ea;
color: #FFFFFF;
- background-image: url(images/small_tab.png);
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/small_tab.png);
cursor: default;
text-align: center;
font-weight: bold;
@@ -3186,7 +3186,7 @@ canvas.pmd * {
}
.small_tab_pref {
- background-image: url(images/Header.png);
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/Header.png);
background-repeat: repeat-x;
text-align: center;
width: 1px;
@@ -3238,35 +3238,35 @@ canvas.pmd * {
}
.frams1 {
- background: url(images/1.png) no-repeat right bottom;
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/1.png) no-repeat right bottom;
}
.frams2 {
- background: url(images/2.png) no-repeat left bottom;
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/2.png) no-repeat left bottom;
}
.frams3 {
- background: url(images/3.png) no-repeat left top;
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/3.png) no-repeat left top;
}
.frams4 {
- background: url(images/4.png) no-repeat right top;
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/4.png) no-repeat right top;
}
.frams5 {
- background: url(images/5.png) repeat-x center bottom;
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/5.png) repeat-x center bottom;
}
.frams6 {
- background: url(images/6.png) repeat-y left;
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/6.png) repeat-y left;
}
.frams7 {
- background: url(images/7.png) repeat-x top;
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/7.png) repeat-x top;
}
.frams8 {
- background: url(images/8.png) repeat-y right;
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/8.png) repeat-y right;
}
#osn_tab {
@@ -3282,7 +3282,7 @@ canvas.pmd * {
font-weight: bold;
margin: 0;
padding: 0;
- background-image: url(images/top_panel.png);
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/top_panel.png);
background-position: top;
background-repeat: repeat-x;
border-right: #999999 solid 1px;
@@ -3399,7 +3399,7 @@ a.trigger{
top: 60px; right: 0;
color:#fff;
padding: 10px 40px 10px 15px;
- background:#333333 url(images/plus.png) 85% 55% no-repeat;
+ background:#333333 url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/plus.png) 85% 55% no-repeat;
border:1px solid #444444;
display: block;
}
@@ -3410,18 +3410,18 @@ a.trigger:hover{
top: 60px; right: 0;
color:#080808;
padding: 10px 40px 10px 15px;
- background:#fff696 url(images/plus.png) 85% 55% no-repeat;
+ background:#fff696 url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/plus.png) 85% 55% no-repeat;
border:1px solid #999;
display: block;
}
a.active.trigger {
- background:#222222 url(images/minus.png) 85% 55% no-repeat;
+ background:#222222 url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/minus.png) 85% 55% no-repeat;
z-index:999;
}
a.active.trigger:hover {
- background:#fff696 url(images/minus.png) 85% 55% no-repeat;
+ background:#fff696 url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/minus.png) 85% 55% no-repeat;
z-index:999;
}
@@ -3438,7 +3438,7 @@ h2.tiger{
}
h2.tiger a {
- background-image: url(images/Header.png);
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/Header.png);
text-align: center;
text-decoration: none;
color : #333;
@@ -3447,11 +3447,11 @@ h2.tiger a {
h2.tiger a:hover {
color: #000;
- background-image: url(images/Header_Linked.png);
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/Header_Linked.png);
}
h2.active {
- background-image: url(images/Header.png);
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>pmd/Header.png);
background-repeat: repeat-x;
padding: 1px;
background-position: left bottom;
diff --git a/pmd/styles/default/images/1.png b/themes/pmahomme/img/pmd/1.png
similarity index 100%
rename from pmd/styles/default/images/1.png
rename to themes/pmahomme/img/pmd/1.png
diff --git a/pmd/styles/default/images/2.png b/themes/pmahomme/img/pmd/2.png
similarity index 100%
rename from pmd/styles/default/images/2.png
rename to themes/pmahomme/img/pmd/2.png
diff --git a/pmd/images/2leftarrow.png b/themes/pmahomme/img/pmd/2leftarrow.png
similarity index 100%
rename from pmd/images/2leftarrow.png
rename to themes/pmahomme/img/pmd/2leftarrow.png
diff --git a/pmd/images/2leftarrow_m.png b/themes/pmahomme/img/pmd/2leftarrow_m.png
similarity index 100%
rename from pmd/images/2leftarrow_m.png
rename to themes/pmahomme/img/pmd/2leftarrow_m.png
diff --git a/pmd/images/2rightarrow.png b/themes/pmahomme/img/pmd/2rightarrow.png
similarity index 100%
rename from pmd/images/2rightarrow.png
rename to themes/pmahomme/img/pmd/2rightarrow.png
diff --git a/pmd/images/2rightarrow_m.png b/themes/pmahomme/img/pmd/2rightarrow_m.png
similarity index 100%
rename from pmd/images/2rightarrow_m.png
rename to themes/pmahomme/img/pmd/2rightarrow_m.png
diff --git a/pmd/styles/default/images/3.png b/themes/pmahomme/img/pmd/3.png
similarity index 100%
rename from pmd/styles/default/images/3.png
rename to themes/pmahomme/img/pmd/3.png
diff --git a/pmd/styles/default/images/4.png b/themes/pmahomme/img/pmd/4.png
similarity index 100%
rename from pmd/styles/default/images/4.png
rename to themes/pmahomme/img/pmd/4.png
diff --git a/pmd/styles/default/images/5.png b/themes/pmahomme/img/pmd/5.png
similarity index 100%
rename from pmd/styles/default/images/5.png
rename to themes/pmahomme/img/pmd/5.png
diff --git a/pmd/styles/default/images/6.png b/themes/pmahomme/img/pmd/6.png
similarity index 100%
rename from pmd/styles/default/images/6.png
rename to themes/pmahomme/img/pmd/6.png
diff --git a/pmd/styles/default/images/7.png b/themes/pmahomme/img/pmd/7.png
similarity index 100%
rename from pmd/styles/default/images/7.png
rename to themes/pmahomme/img/pmd/7.png
diff --git a/pmd/styles/default/images/8.png b/themes/pmahomme/img/pmd/8.png
similarity index 100%
rename from pmd/styles/default/images/8.png
rename to themes/pmahomme/img/pmd/8.png
diff --git a/pmd/styles/default/images/FieldKey_small.png b/themes/pmahomme/img/pmd/FieldKey_small.png
similarity index 100%
rename from pmd/styles/default/images/FieldKey_small.png
rename to themes/pmahomme/img/pmd/FieldKey_small.png
diff --git a/pmd/styles/default/images/Field_small.png b/themes/pmahomme/img/pmd/Field_small.png
similarity index 100%
rename from pmd/styles/default/images/Field_small.png
rename to themes/pmahomme/img/pmd/Field_small.png
diff --git a/pmd/styles/default/images/Field_small_char.png b/themes/pmahomme/img/pmd/Field_small_char.png
similarity index 100%
rename from pmd/styles/default/images/Field_small_char.png
rename to themes/pmahomme/img/pmd/Field_small_char.png
diff --git a/pmd/styles/default/images/Field_small_date.png b/themes/pmahomme/img/pmd/Field_small_date.png
similarity index 100%
rename from pmd/styles/default/images/Field_small_date.png
rename to themes/pmahomme/img/pmd/Field_small_date.png
diff --git a/pmd/styles/default/images/Field_small_int.png b/themes/pmahomme/img/pmd/Field_small_int.png
similarity index 100%
rename from pmd/styles/default/images/Field_small_int.png
rename to themes/pmahomme/img/pmd/Field_small_int.png
diff --git a/pmd/styles/default/images/Header.png b/themes/pmahomme/img/pmd/Header.png
similarity index 100%
rename from pmd/styles/default/images/Header.png
rename to themes/pmahomme/img/pmd/Header.png
diff --git a/pmd/styles/default/images/Header_Linked.png b/themes/pmahomme/img/pmd/Header_Linked.png
similarity index 100%
rename from pmd/styles/default/images/Header_Linked.png
rename to themes/pmahomme/img/pmd/Header_Linked.png
diff --git a/pmd/images/and_icon.png b/themes/pmahomme/img/pmd/and_icon.png
similarity index 100%
rename from pmd/images/and_icon.png
rename to themes/pmahomme/img/pmd/and_icon.png
diff --git a/pmd/images/ang_direct.png b/themes/pmahomme/img/pmd/ang_direct.png
similarity index 100%
rename from pmd/images/ang_direct.png
rename to themes/pmahomme/img/pmd/ang_direct.png
diff --git a/pmd/images/bord.png b/themes/pmahomme/img/pmd/bord.png
similarity index 100%
rename from pmd/images/bord.png
rename to themes/pmahomme/img/pmd/bord.png
diff --git a/pmd/images/bottom.png b/themes/pmahomme/img/pmd/bottom.png
similarity index 100%
rename from pmd/images/bottom.png
rename to themes/pmahomme/img/pmd/bottom.png
diff --git a/pmd/images/def.png b/themes/pmahomme/img/pmd/def.png
similarity index 100%
rename from pmd/images/def.png
rename to themes/pmahomme/img/pmd/def.png
diff --git a/pmd/images/display_field.png b/themes/pmahomme/img/pmd/display_field.png
similarity index 100%
rename from pmd/images/display_field.png
rename to themes/pmahomme/img/pmd/display_field.png
diff --git a/pmd/images/downarrow1.png b/themes/pmahomme/img/pmd/downarrow1.png
similarity index 100%
rename from pmd/images/downarrow1.png
rename to themes/pmahomme/img/pmd/downarrow1.png
diff --git a/pmd/images/downarrow2.png b/themes/pmahomme/img/pmd/downarrow2.png
similarity index 100%
rename from pmd/images/downarrow2.png
rename to themes/pmahomme/img/pmd/downarrow2.png
diff --git a/pmd/images/downarrow2_m.png b/themes/pmahomme/img/pmd/downarrow2_m.png
similarity index 100%
rename from pmd/images/downarrow2_m.png
rename to themes/pmahomme/img/pmd/downarrow2_m.png
diff --git a/pmd/images/exec.png b/themes/pmahomme/img/pmd/exec.png
similarity index 100%
rename from pmd/images/exec.png
rename to themes/pmahomme/img/pmd/exec.png
diff --git a/pmd/images/exec_small.png b/themes/pmahomme/img/pmd/exec_small.png
similarity index 100%
rename from pmd/images/exec_small.png
rename to themes/pmahomme/img/pmd/exec_small.png
diff --git a/pmd/images/favicon.ico b/themes/pmahomme/img/pmd/favicon.ico
similarity index 100%
rename from pmd/images/favicon.ico
rename to themes/pmahomme/img/pmd/favicon.ico
diff --git a/pmd/images/grid.png b/themes/pmahomme/img/pmd/grid.png
similarity index 100%
rename from pmd/images/grid.png
rename to themes/pmahomme/img/pmd/grid.png
diff --git a/pmd/images/help.png b/themes/pmahomme/img/pmd/help.png
similarity index 100%
rename from pmd/images/help.png
rename to themes/pmahomme/img/pmd/help.png
diff --git a/pmd/images/help_relation.png b/themes/pmahomme/img/pmd/help_relation.png
similarity index 100%
rename from pmd/images/help_relation.png
rename to themes/pmahomme/img/pmd/help_relation.png
diff --git a/pmd/styles/default/images/left_panel_butt.png b/themes/pmahomme/img/pmd/left_panel_butt.png
similarity index 100%
rename from pmd/styles/default/images/left_panel_butt.png
rename to themes/pmahomme/img/pmd/left_panel_butt.png
diff --git a/pmd/styles/default/images/left_panel_tab.png b/themes/pmahomme/img/pmd/left_panel_tab.png
similarity index 100%
rename from pmd/styles/default/images/left_panel_tab.png
rename to themes/pmahomme/img/pmd/left_panel_tab.png
diff --git a/pmd/styles/default/images/minus.png b/themes/pmahomme/img/pmd/minus.png
similarity index 100%
rename from pmd/styles/default/images/minus.png
rename to themes/pmahomme/img/pmd/minus.png
diff --git a/pmd/images/or_icon.png b/themes/pmahomme/img/pmd/or_icon.png
similarity index 100%
rename from pmd/images/or_icon.png
rename to themes/pmahomme/img/pmd/or_icon.png
diff --git a/pmd/images/pdf.png b/themes/pmahomme/img/pmd/pdf.png
similarity index 100%
rename from pmd/images/pdf.png
rename to themes/pmahomme/img/pmd/pdf.png
diff --git a/pmd/styles/default/images/plus.png b/themes/pmahomme/img/pmd/plus.png
similarity index 100%
rename from pmd/styles/default/images/plus.png
rename to themes/pmahomme/img/pmd/plus.png
diff --git a/pmd/images/query_builder.png b/themes/pmahomme/img/pmd/query_builder.png
similarity index 100%
rename from pmd/images/query_builder.png
rename to themes/pmahomme/img/pmd/query_builder.png
diff --git a/pmd/images/relation.png b/themes/pmahomme/img/pmd/relation.png
similarity index 100%
rename from pmd/images/relation.png
rename to themes/pmahomme/img/pmd/relation.png
diff --git a/pmd/images/reload.png b/themes/pmahomme/img/pmd/reload.png
similarity index 100%
rename from pmd/images/reload.png
rename to themes/pmahomme/img/pmd/reload.png
diff --git a/pmd/images/resize.png b/themes/pmahomme/img/pmd/resize.png
similarity index 100%
rename from pmd/images/resize.png
rename to themes/pmahomme/img/pmd/resize.png
diff --git a/pmd/images/rightarrow1.png b/themes/pmahomme/img/pmd/rightarrow1.png
similarity index 100%
rename from pmd/images/rightarrow1.png
rename to themes/pmahomme/img/pmd/rightarrow1.png
diff --git a/pmd/images/rightarrow2.png b/themes/pmahomme/img/pmd/rightarrow2.png
similarity index 100%
rename from pmd/images/rightarrow2.png
rename to themes/pmahomme/img/pmd/rightarrow2.png
diff --git a/pmd/images/save.png b/themes/pmahomme/img/pmd/save.png
similarity index 100%
rename from pmd/images/save.png
rename to themes/pmahomme/img/pmd/save.png
diff --git a/pmd/styles/default/images/small_tab.png b/themes/pmahomme/img/pmd/small_tab.png
similarity index 100%
rename from pmd/styles/default/images/small_tab.png
rename to themes/pmahomme/img/pmd/small_tab.png
diff --git a/pmd/images/table.png b/themes/pmahomme/img/pmd/table.png
similarity index 100%
rename from pmd/images/table.png
rename to themes/pmahomme/img/pmd/table.png
diff --git a/pmd/styles/default/images/top_panel.png b/themes/pmahomme/img/pmd/top_panel.png
similarity index 100%
rename from pmd/styles/default/images/top_panel.png
rename to themes/pmahomme/img/pmd/top_panel.png
diff --git a/pmd/images/uparrow2_m.png b/themes/pmahomme/img/pmd/uparrow2_m.png
similarity index 100%
rename from pmd/images/uparrow2_m.png
rename to themes/pmahomme/img/pmd/uparrow2_m.png
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_2-16693-ge34fd02
by Marc Delisle 22 Aug '11
by Marc Delisle 22 Aug '11
22 Aug '11
The branch, master has been updated
via e34fd02ab41e921e4b1bc51c49d86bf98c40fd9d (commit)
via c19dae384a9dc53113ef153b338329f183c1bf11 (commit)
from 5371f47f07b4a1c696039fa9f005bef338f4bead (commit)
- Log -----------------------------------------------------------------
commit e34fd02ab41e921e4b1bc51c49d86bf98c40fd9d
Merge: 5371f47 c19dae3
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon Aug 22 06:07:30 2011 -0400
Merge commit 'c19dae384a9dc53113ef153b338329f183c1bf11'
commit c19dae384a9dc53113ef153b338329f183c1bf11
Author: Aris Feryanto <aris_feryanto(a)yahoo.com>
Date: Mon Aug 22 10:30:15 2011 +0800
Grid edit: fix bug - browse foreign value not work
-----------------------------------------------------------------------
Summary of changes:
js/makegrid.js | 28 +++++++++++++++++++---------
1 files changed, 19 insertions(+), 9 deletions(-)
diff --git a/js/makegrid.js b/js/makegrid.js
index 70e9b9a..e7f2d32 100644
--- a/js/makegrid.js
+++ b/js/makegrid.js
@@ -654,7 +654,13 @@ function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdi
g.isCellEditActive = false;
g.currentEditCell = null;
// destroy datepicker in edit area, if exist
- $(g.cEdit).find('.hasDatepicker').datepicker('destroy');
+ var $dp = $(g.cEdit).find('.hasDatepicker');
+ if ($dp.length > 0) {
+ $dp.datepicker('destroy');
+ // change the cursor in edit box back to normal
+ // (the cursor become a hand pointer when we add datepicker)
+ $(g.cEdit).find('.edit_box').css('cursor', 'inherit');
+ }
},
/**
@@ -785,11 +791,13 @@ function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdi
g.lastXHR = $.post('sql.php', post_params, function(data) {
g.lastXHR = null;
$editArea.removeClass('edit_area_loading');
- // save original_data
- var value = $(data.dropdown).val();
- $td.data('original_data', value);
- // update the text input field, in case where the "Relational display column" is checked
- $(g.cEdit).find('.edit_box').val(value);
+ if ($(data.dropdown).is('select')) {
+ // save original_data
+ var value = $(data.dropdown).val();
+ $td.data('original_data', value);
+ // update the text input field, in case where the "Relational display column" is checked
+ $(g.cEdit).find('.edit_box').val(value);
+ }
$editArea.append(data.dropdown);
$editArea.append('<div class="cell_edit_hint">' + g.cellEditHint + '</div>');
@@ -942,6 +950,11 @@ function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdi
}
});
+ // cancel any click on the datepicker element
+ $editArea.find('> *').click(function(e) {
+ e.stopPropagation();
+ });
+
// force to restore modified $input_field value after adding datepicker
// (after adding a datepicker, the input field doesn't display the time anymore, only the date)
if (!is_null) {
@@ -1572,9 +1585,6 @@ function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdi
e.preventDefault();
}
});
- $(g.cEdit).find('.edit_area').click(function(e) {
- e.stopPropagation();
- });
$('html').click(function(e) {
// hide edit cell if the click is not from g.cEdit
if ($(e.target).parents().index(g.cEdit) == -1) {
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_2-16691-g5371f47
by Michal Čihař 22 Aug '11
by Michal Čihař 22 Aug '11
22 Aug '11
The branch, master has been updated
via 5371f47f07b4a1c696039fa9f005bef338f4bead (commit)
via 9a9087a5a48dca8f2807aacdc09931573cd10921 (commit)
via 5cd9fc19c731e1d993d858ca76dd71aa393e2f06 (commit)
via e4535076aacfdfe94a3e2a6f24486a38c9d9fbd1 (commit)
from 439760b71a22f00be12d2f94452f8253f9eff16c (commit)
- Log -----------------------------------------------------------------
commit 5371f47f07b4a1c696039fa9f005bef338f4bead
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 22 11:59:36 2011 +0200
Reoptimize stripped down images
commit 9a9087a5a48dca8f2807aacdc09931573cd10921
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 22 11:58:44 2011 +0200
Remove useless comments and color profiles from images
commit 5cd9fc19c731e1d993d858ca76dd71aa393e2f06
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 22 11:53:51 2011 +0200
Avoid hardcoding theme images path
commit e4535076aacfdfe94a3e2a6f24486a38c9d9fbd1
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 22 11:51:37 2011 +0200
Change class name to avoid conflict
-----------------------------------------------------------------------
Summary of changes:
pmd/images/2leftarrow.png | Bin 720 -> 812 bytes
pmd/images/2leftarrow_m.png | Bin 641 -> 796 bytes
pmd/images/2rightarrow.png | Bin 737 -> 841 bytes
pmd/images/2rightarrow_m.png | Bin 659 -> 830 bytes
pmd/images/and_icon.png | Bin 3445 -> 865 bytes
pmd/images/ang_direct.png | Bin 627 -> 788 bytes
pmd/images/bord.png | Bin 75 -> 219 bytes
pmd/images/bottom.png | Bin 675 -> 848 bytes
pmd/images/def.png | Bin 616 -> 767 bytes
pmd/images/display_field.png | Bin 630 -> 796 bytes
pmd/images/downarrow1.png | Bin 700 -> 860 bytes
pmd/images/downarrow2.png | Bin 715 -> 882 bytes
pmd/images/downarrow2_m.png | Bin 672 -> 832 bytes
pmd/images/exec.png | Bin 811 -> 936 bytes
pmd/images/exec_small.png | Bin 151 -> 280 bytes
pmd/images/grid.png | Bin 633 -> 802 bytes
pmd/images/help.png | Bin 684 -> 823 bytes
pmd/images/help_relation.png | Bin 1073 -> 1051 bytes
pmd/images/or_icon.png | Bin 13484 -> 747 bytes
pmd/images/pdf.png | Bin 878 -> 1088 bytes
pmd/images/query_builder.png | Bin 13537 -> 836 bytes
pmd/images/relation.png | Bin 245 -> 413 bytes
pmd/images/reload.png | Bin 788 -> 972 bytes
pmd/images/resize.png | Bin 120 -> 254 bytes
pmd/images/rightarrow1.png | Bin 680 -> 849 bytes
pmd/images/rightarrow2.png | Bin 693 -> 873 bytes
pmd/images/save.png | Bin 429 -> 526 bytes
pmd/images/table.png | Bin 133 -> 295 bytes
pmd/images/uparrow2_m.png | Bin 677 -> 857 bytes
pmd_general.php | 2 +-
themes/original/img/ajax_clock_small.gif | Bin 1849 -> 1840 bytes
themes/original/img/arrow_ltr.png | Bin 184 -> 309 bytes
themes/original/img/arrow_rtl.png | Bin 182 -> 306 bytes
themes/original/img/b_bookmark.png | Bin 312 -> 421 bytes
themes/original/img/b_browse.png | Bin 200 -> 326 bytes
themes/original/img/b_calendar.png | Bin 247 -> 372 bytes
themes/original/img/b_chart.png | Bin 3117 -> 673 bytes
themes/original/img/b_close.png | Bin 250 -> 329 bytes
themes/original/img/b_comment.png | Bin 488 -> 543 bytes
themes/original/img/b_dbstatistics.png | Bin 199 -> 312 bytes
themes/original/img/b_deltbl.png | Bin 282 -> 407 bytes
themes/original/img/b_docs.png | Bin 223 -> 353 bytes
themes/original/img/b_drop.png | Bin 241 -> 346 bytes
themes/original/img/b_edit.png | Bin 396 -> 472 bytes
themes/original/img/b_empty.png | Bin 229 -> 355 bytes
themes/original/img/b_engine.png | Bin 270 -> 398 bytes
themes/original/img/b_event_add.png | Bin 927 -> 994 bytes
themes/original/img/b_events.png | Bin 969 -> 952 bytes
themes/original/img/b_export.png | Bin 240 -> 367 bytes
themes/original/img/b_ftext.png | Bin 219 -> 344 bytes
themes/original/img/b_help.png | Bin 183 -> 301 bytes
themes/original/img/b_home.png | Bin 293 -> 406 bytes
themes/original/img/b_import.png | Bin 237 -> 370 bytes
themes/original/img/b_index.png | Bin 246 -> 376 bytes
themes/original/img/b_info.png | Bin 187 -> 303 bytes
themes/original/img/b_inline_edit.png | Bin 364 -> 504 bytes
themes/original/img/b_insrow.png | Bin 223 -> 339 bytes
themes/original/img/b_minus.png | Bin 147 -> 279 bytes
themes/original/img/b_more.png | Bin 977 -> 302 bytes
themes/original/img/b_newdb.png | Bin 325 -> 430 bytes
themes/original/img/b_newtbl.png | Bin 325 -> 433 bytes
themes/original/img/b_nextpage.png | Bin 395 -> 533 bytes
themes/original/img/b_plus.png | Bin 152 -> 284 bytes
themes/original/img/b_primary.png | Bin 338 -> 447 bytes
themes/original/img/b_print.png | Bin 486 -> 564 bytes
themes/original/img/b_props.png | Bin 228 -> 357 bytes
themes/original/img/b_relations.png | Bin 217 -> 341 bytes
themes/original/img/b_routine_add.png | Bin 651 -> 602 bytes
themes/original/img/b_routines.png | Bin 666 -> 480 bytes
themes/original/img/b_save.png | Bin 603 -> 965 bytes
themes/original/img/b_sbrowse.png | Bin 161 -> 291 bytes
themes/original/img/b_search.png | Bin 546 -> 598 bytes
themes/original/img/b_selboard.png | Bin 218 -> 344 bytes
themes/original/img/b_select.png | Bin 476 -> 552 bytes
themes/original/img/b_snewtbl.png | Bin 268 -> 373 bytes
themes/original/img/b_spatial.png | Bin 4033 -> 545 bytes
themes/original/img/b_sql.png | Bin 250 -> 377 bytes
themes/original/img/b_sqlhelp.png | Bin 214 -> 342 bytes
themes/original/img/b_tblanalyse.png | Bin 232 -> 357 bytes
themes/original/img/b_tblexport.png | Bin 217 -> 345 bytes
themes/original/img/b_tblimport.png | Bin 210 -> 343 bytes
themes/original/img/b_tblops.png | Bin 270 -> 375 bytes
themes/original/img/b_tbloptimize.png | Bin 237 -> 364 bytes
themes/original/img/b_tipp.png | Bin 243 -> 370 bytes
themes/original/img/b_trigger_add.png | Bin 731 -> 819 bytes
themes/original/img/b_triggers.png | Bin 707 -> 694 bytes
themes/original/img/b_unique.png | Bin 218 -> 344 bytes
themes/original/img/b_usradd.png | Bin 436 -> 509 bytes
themes/original/img/b_usrcheck.png | Bin 327 -> 415 bytes
themes/original/img/b_usrdrop.png | Bin 366 -> 435 bytes
themes/original/img/b_usredit.png | Bin 422 -> 493 bytes
themes/original/img/b_usrlist.png | Bin 327 -> 418 bytes
themes/original/img/b_view.png | Bin 820 -> 778 bytes
themes/original/img/b_views.png | Bin 403 -> 493 bytes
themes/original/img/bd_browse.png | Bin 200 -> 326 bytes
themes/original/img/bd_deltbl.png | Bin 257 -> 390 bytes
themes/original/img/bd_drop.png | Bin 260 -> 341 bytes
themes/original/img/bd_edit.png | Bin 253 -> 384 bytes
themes/original/img/bd_empty.png | Bin 229 -> 355 bytes
themes/original/img/bd_export.png | Bin 210 -> 389 bytes
themes/original/img/bd_ftext.png | Bin 219 -> 344 bytes
themes/original/img/bd_index.png | Bin 246 -> 376 bytes
themes/original/img/bd_insrow.png | Bin 262 -> 354 bytes
themes/original/img/bd_nextpage.png | Bin 167 -> 294 bytes
themes/original/img/bd_primary.png | Bin 312 -> 426 bytes
themes/original/img/bd_sbrowse.png | Bin 161 -> 291 bytes
themes/original/img/bd_select.png | Bin 459 -> 542 bytes
themes/original/img/bd_spatial.png | Bin 4006 -> 520 bytes
themes/original/img/bd_unique.png | Bin 218 -> 344 bytes
themes/original/img/cleardot.gif | Bin 43 -> 43 bytes
themes/original/img/col_drop.png | Bin 1002 -> 302 bytes
themes/original/img/col_pointer.png | Bin 121 -> 307 bytes
themes/original/img/col_pointer_ver.png | Bin 128 -> 317 bytes
themes/original/img/docs_menu_bg.png | Bin 148 -> 235 bytes
themes/original/img/east-mini.png | Bin 451 -> 492 bytes
themes/original/img/error.ico | Bin 318 -> 1150 bytes
themes/original/img/eye.png | Bin 750 -> 919 bytes
themes/original/img/eye_grey.png | Bin 347 -> 440 bytes
themes/original/img/iconsprites.png | Bin 32492 -> 16500 bytes
themes/original/img/item_ltr.png | Bin 162 -> 277 bytes
themes/original/img/item_rtl.png | Bin 163 -> 278 bytes
themes/original/img/logo_left.png | Bin 6852 -> 6931 bytes
themes/original/img/logo_right.png | Bin 4921 -> 4700 bytes
themes/original/img/more.png | Bin 510 -> 252 bytes
themes/original/img/new_data.png | Bin 1187 -> 433 bytes
themes/original/img/new_data_hovered.png | Bin 1187 -> 433 bytes
themes/original/img/new_data_selected.png | Bin 1173 -> 349 bytes
themes/original/img/new_data_selected_hovered.png | Bin 1178 -> 351 bytes
themes/original/img/new_struct.png | Bin 1219 -> 468 bytes
themes/original/img/new_struct_hovered.png | Bin 1220 -> 468 bytes
themes/original/img/new_struct_selected.png | Bin 1189 -> 359 bytes
.../original/img/new_struct_selected_hovered.png | Bin 1210 -> 366 bytes
themes/original/img/north-mini.png | Bin 484 -> 501 bytes
themes/original/img/s_asc.png | Bin 184 -> 310 bytes
themes/original/img/s_asci.png | Bin 189 -> 306 bytes
themes/original/img/s_cancel.png | Bin 383 -> 480 bytes
themes/original/img/s_cog.png | Bin 264 -> 390 bytes
themes/original/img/s_db.png | Bin 223 -> 349 bytes
themes/original/img/s_desc.png | Bin 182 -> 309 bytes
themes/original/img/s_error.png | Bin 213 -> 342 bytes
themes/original/img/s_error2.png | Bin 192 -> 321 bytes
themes/original/img/s_fulltext.png | Bin 241 -> 362 bytes
themes/original/img/s_host.png | Bin 244 -> 378 bytes
themes/original/img/s_lang.png | Bin 350 -> 444 bytes
themes/original/img/s_loggoff.png | Bin 204 -> 332 bytes
themes/original/img/s_notice.png | Bin 189 -> 307 bytes
themes/original/img/s_partialtext.png | Bin 243 -> 365 bytes
themes/original/img/s_passwd.png | Bin 435 -> 521 bytes
themes/original/img/s_really.png | Bin 183 -> 314 bytes
themes/original/img/s_reload.png | Bin 306 -> 455 bytes
themes/original/img/s_replication.png | Bin 441 -> 621 bytes
themes/original/img/s_rights.png | Bin 430 -> 522 bytes
themes/original/img/s_sortable.png | Bin 258 -> 342 bytes
themes/original/img/s_status.png | Bin 248 -> 352 bytes
themes/original/img/s_success.png | Bin 539 -> 710 bytes
themes/original/img/s_sync.png | Bin 551 -> 610 bytes
themes/original/img/s_tbl.png | Bin 186 -> 314 bytes
themes/original/img/s_theme.png | Bin 687 -> 676 bytes
themes/original/img/s_vars.png | Bin 235 -> 359 bytes
themes/original/img/s_views.png | Bin 327 -> 421 bytes
themes/original/img/south-mini.png | Bin 481 -> 505 bytes
themes/original/img/spacer.png | Bin 148 -> 267 bytes
themes/original/img/toggle-ltr.png | Bin 232 -> 382 bytes
themes/original/img/toggle-rtl.png | Bin 230 -> 382 bytes
themes/original/img/vertical_line.png | Bin 83 -> 201 bytes
themes/original/img/west-mini.png | Bin 453 -> 498 bytes
themes/original/img/window-new.png | Bin 582 -> 738 bytes
themes/original/img/zoom-minus-mini.png | Bin 359 -> 415 bytes
themes/original/img/zoom-plus-mini.png | Bin 489 -> 496 bytes
themes/original/img/zoom-world-mini.png | Bin 1072 -> 961 bytes
themes/pmahomme/css/theme_right.css.php | 40 ++++++++++----------
themes/pmahomme/img/ajax_clock_small.gif | Bin 1849 -> 1840 bytes
themes/pmahomme/img/arrow_ltr.png | Bin 184 -> 309 bytes
themes/pmahomme/img/arrow_rtl.png | Bin 182 -> 306 bytes
themes/pmahomme/img/asc_order.png | Bin 201 -> 352 bytes
themes/pmahomme/img/b_bookmark.png | Bin 714 -> 1012 bytes
themes/pmahomme/img/b_browse.png | Bin 566 -> 736 bytes
themes/pmahomme/img/b_calendar.png | Bin 675 -> 882 bytes
themes/pmahomme/img/b_chart.png | Bin 541 -> 822 bytes
themes/pmahomme/img/b_close.png | Bin 250 -> 329 bytes
themes/pmahomme/img/b_comment.png | Bin 413 -> 630 bytes
themes/pmahomme/img/b_dbstatistics.png | Bin 541 -> 822 bytes
themes/pmahomme/img/b_deltbl.png | Bin 660 -> 830 bytes
themes/pmahomme/img/b_docs.png | Bin 786 -> 940 bytes
themes/pmahomme/img/b_docsql.png | Bin 231 -> 356 bytes
themes/pmahomme/img/b_drop.png | Bin 715 -> 877 bytes
themes/pmahomme/img/b_edit.png | Bin 444 -> 576 bytes
themes/pmahomme/img/b_empty.png | Bin 363 -> 496 bytes
themes/pmahomme/img/b_engine.png | Bin 468 -> 601 bytes
themes/pmahomme/img/b_event_add.png | Bin 927 -> 994 bytes
themes/pmahomme/img/b_events.png | Bin 969 -> 952 bytes
themes/pmahomme/img/b_export.png | Bin 641 -> 791 bytes
themes/pmahomme/img/b_firstpage.png | Bin 745 -> 902 bytes
themes/pmahomme/img/b_ftext.png | Bin 1432 -> 763 bytes
themes/pmahomme/img/b_help.png | Bin 1594 -> 924 bytes
themes/pmahomme/img/b_home.png | Bin 806 -> 982 bytes
themes/pmahomme/img/b_import.png | Bin 629 -> 774 bytes
themes/pmahomme/img/b_index.png | Bin 736 -> 870 bytes
themes/pmahomme/img/b_info.png | Bin 187 -> 303 bytes
themes/pmahomme/img/b_inline_edit.png | Bin 618 -> 763 bytes
themes/pmahomme/img/b_insrow.png | Bin 228 -> 339 bytes
themes/pmahomme/img/b_lastpage.png | Bin 736 -> 894 bytes
themes/pmahomme/img/b_minus.png | Bin 207 -> 357 bytes
themes/pmahomme/img/b_more.png | Bin 1002 -> 302 bytes
themes/pmahomme/img/b_newdb.png | Bin 658 -> 870 bytes
themes/pmahomme/img/b_newtbl.png | Bin 325 -> 433 bytes
themes/pmahomme/img/b_nextpage.png | Bin 395 -> 533 bytes
themes/pmahomme/img/b_pdfdoc.png | Bin 591 -> 746 bytes
themes/pmahomme/img/b_plus.png | Bin 209 -> 359 bytes
themes/pmahomme/img/b_prevpage.png | Bin 389 -> 534 bytes
themes/pmahomme/img/b_primary.png | Bin 612 -> 768 bytes
themes/pmahomme/img/b_print.png | Bin 731 -> 908 bytes
themes/pmahomme/img/b_props.png | Bin 663 -> 817 bytes
themes/pmahomme/img/b_relations.png | Bin 217 -> 341 bytes
themes/pmahomme/img/b_routine_add.png | Bin 651 -> 602 bytes
themes/pmahomme/img/b_routines.png | Bin 666 -> 480 bytes
themes/pmahomme/img/b_save.png | Bin 620 -> 969 bytes
themes/pmahomme/img/b_sbrowse.png | Bin 566 -> 736 bytes
themes/pmahomme/img/b_sdb.png | Bin 189 -> 318 bytes
themes/pmahomme/img/b_search.png | Bin 615 -> 785 bytes
themes/pmahomme/img/b_selboard.png | Bin 698 -> 931 bytes
themes/pmahomme/img/b_select.png | Bin 680 -> 824 bytes
themes/pmahomme/img/b_snewtbl.png | Bin 733 -> 899 bytes
themes/pmahomme/img/b_spatial.png | Bin 4033 -> 545 bytes
themes/pmahomme/img/b_sql.png | Bin 748 -> 1089 bytes
themes/pmahomme/img/b_sqldoc.png | Bin 235 -> 362 bytes
themes/pmahomme/img/b_sqlhelp.png | Bin 579 -> 756 bytes
themes/pmahomme/img/b_tblanalyse.png | Bin 234 -> 357 bytes
themes/pmahomme/img/b_tblexport.png | Bin 641 -> 791 bytes
themes/pmahomme/img/b_tblimport.png | Bin 629 -> 774 bytes
themes/pmahomme/img/b_tblops.png | Bin 610 -> 803 bytes
themes/pmahomme/img/b_tbloptimize.png | Bin 241 -> 364 bytes
themes/pmahomme/img/b_tipp.png | Bin 782 -> 950 bytes
themes/pmahomme/img/b_trigger_add.png | Bin 731 -> 819 bytes
themes/pmahomme/img/b_triggers.png | Bin 707 -> 694 bytes
themes/pmahomme/img/b_unique.png | Bin 1475 -> 791 bytes
themes/pmahomme/img/b_usradd.png | Bin 746 -> 901 bytes
themes/pmahomme/img/b_usrcheck.png | Bin 793 -> 951 bytes
themes/pmahomme/img/b_usrdrop.png | Bin 767 -> 929 bytes
themes/pmahomme/img/b_usredit.png | Bin 833 -> 980 bytes
themes/pmahomme/img/b_usrlist.png | Bin 753 -> 909 bytes
themes/pmahomme/img/b_view.png | Bin 820 -> 778 bytes
themes/pmahomme/img/b_views.png | Bin 700 -> 890 bytes
themes/pmahomme/img/bd_browse.png | Bin 200 -> 326 bytes
themes/pmahomme/img/bd_deltbl.png | Bin 257 -> 390 bytes
themes/pmahomme/img/bd_drop.png | Bin 261 -> 341 bytes
themes/pmahomme/img/bd_edit.png | Bin 295 -> 477 bytes
themes/pmahomme/img/bd_empty.png | Bin 231 -> 355 bytes
themes/pmahomme/img/bd_export.png | Bin 353 -> 515 bytes
themes/pmahomme/img/bd_firstpage.png | Bin 180 -> 305 bytes
themes/pmahomme/img/bd_ftext.png | Bin 219 -> 344 bytes
themes/pmahomme/img/bd_index.png | Bin 253 -> 376 bytes
themes/pmahomme/img/bd_insrow.png | Bin 274 -> 354 bytes
themes/pmahomme/img/bd_lastpage.png | Bin 180 -> 305 bytes
themes/pmahomme/img/bd_nextpage.png | Bin 167 -> 294 bytes
themes/pmahomme/img/bd_prevpage.png | Bin 167 -> 298 bytes
themes/pmahomme/img/bd_primary.png | Bin 312 -> 426 bytes
themes/pmahomme/img/bd_sbrowse.png | Bin 161 -> 291 bytes
themes/pmahomme/img/bd_select.png | Bin 459 -> 542 bytes
themes/pmahomme/img/bd_spatial.png | Bin 4006 -> 520 bytes
themes/pmahomme/img/bd_unique.png | Bin 218 -> 344 bytes
themes/pmahomme/img/body_bg.png | Bin 372 -> 815 bytes
themes/pmahomme/img/col_drop.png | Bin 1002 -> 302 bytes
themes/pmahomme/img/col_pointer.png | Bin 136 -> 311 bytes
themes/pmahomme/img/col_pointer_ver.png | Bin 138 -> 314 bytes
themes/pmahomme/img/database.png | Bin 390 -> 523 bytes
themes/pmahomme/img/database_list_li_hover.png | Bin 149 -> 278 bytes
themes/pmahomme/img/docs_menu_bg.png | Bin 148 -> 235 bytes
themes/pmahomme/img/east-mini.png | Bin 451 -> 492 bytes
themes/pmahomme/img/error.ico | Bin 5430 -> 5430 bytes
themes/pmahomme/img/eye.png | Bin 750 -> 919 bytes
themes/pmahomme/img/eye_grey.png | Bin 347 -> 440 bytes
themes/pmahomme/img/iconsprites.png | Bin 35190 -> 35290 bytes
themes/pmahomme/img/input_bg.gif | Bin 162 -> 170 bytes
themes/pmahomme/img/item.png | Bin 175 -> 290 bytes
themes/pmahomme/img/item_ltr.png | Bin 162 -> 277 bytes
themes/pmahomme/img/item_rtl.png | Bin 163 -> 278 bytes
themes/pmahomme/img/left_nav_bg.png | Bin 215 -> 383 bytes
themes/pmahomme/img/logo_left.png | Bin 4970 -> 2496 bytes
themes/pmahomme/img/logo_right.png | Bin 4921 -> 4700 bytes
themes/pmahomme/img/marked_bg.png | Bin 977 -> 337 bytes
themes/pmahomme/img/more.png | Bin 553 -> 252 bytes
themes/pmahomme/img/new_data.png | Bin 1187 -> 433 bytes
themes/pmahomme/img/new_data_hovered.png | Bin 1187 -> 433 bytes
themes/pmahomme/img/new_data_selected.png | Bin 1173 -> 349 bytes
themes/pmahomme/img/new_data_selected_hovered.png | Bin 1178 -> 351 bytes
themes/pmahomme/img/new_struct.png | Bin 1219 -> 468 bytes
themes/pmahomme/img/new_struct_hovered.png | Bin 1220 -> 468 bytes
themes/pmahomme/img/new_struct_selected.png | Bin 1189 -> 359 bytes
.../pmahomme/img/new_struct_selected_hovered.png | Bin 1210 -> 366 bytes
themes/pmahomme/img/north-mini.png | Bin 484 -> 501 bytes
themes/pmahomme/img/pause.png | Bin 329 -> 408 bytes
themes/pmahomme/img/php_sym.png | Bin 198 -> 325 bytes
themes/pmahomme/img/play.png | Bin 395 -> 533 bytes
themes/pmahomme/img/pma_logo2.png | Bin 1533 -> 1581 bytes
themes/pmahomme/img/s_asc.png | Bin 201 -> 339 bytes
themes/pmahomme/img/s_asci.png | Bin 209 -> 337 bytes
themes/pmahomme/img/s_attention.png | Bin 666 -> 850 bytes
themes/pmahomme/img/s_cancel.png | Bin 587 -> 795 bytes
themes/pmahomme/img/s_cancel2.png | Bin 308 -> 474 bytes
themes/pmahomme/img/s_cog.png | Bin 512 -> 645 bytes
themes/pmahomme/img/s_db.png | Bin 390 -> 523 bytes
themes/pmahomme/img/s_desc.png | Bin 201 -> 352 bytes
themes/pmahomme/img/s_error.png | Bin 701 -> 883 bytes
themes/pmahomme/img/s_error2.png | Bin 192 -> 321 bytes
themes/pmahomme/img/s_fulltext.png | Bin 244 -> 362 bytes
themes/pmahomme/img/s_host.png | Bin 667 -> 970 bytes
themes/pmahomme/img/s_info.png | Bin 778 -> 947 bytes
themes/pmahomme/img/s_lang.png | Bin 743 -> 940 bytes
themes/pmahomme/img/s_loggoff.png | Bin 688 -> 959 bytes
themes/pmahomme/img/s_notice.png | Bin 666 -> 850 bytes
themes/pmahomme/img/s_okay.png | Bin 781 -> 942 bytes
themes/pmahomme/img/s_partialtext.png | Bin 243 -> 365 bytes
themes/pmahomme/img/s_passwd.png | Bin 435 -> 521 bytes
themes/pmahomme/img/s_process.png | Bin 512 -> 645 bytes
themes/pmahomme/img/s_really.png | Bin 183 -> 314 bytes
themes/pmahomme/img/s_reload.png | Bin 608 -> 779 bytes
themes/pmahomme/img/s_replication.png | Bin 447 -> 621 bytes
themes/pmahomme/img/s_rights.png | Bin 533 -> 753 bytes
themes/pmahomme/img/s_sortable.png | Bin 1177 -> 404 bytes
themes/pmahomme/img/s_status.png | Bin 673 -> 968 bytes
themes/pmahomme/img/s_success.png | Bin 537 -> 718 bytes
themes/pmahomme/img/s_sync.png | Bin 551 -> 610 bytes
themes/pmahomme/img/s_tbl.png | Bin 714 -> 888 bytes
themes/pmahomme/img/s_theme.png | Bin 856 -> 1003 bytes
themes/pmahomme/img/s_vars.png | Bin 603 -> 773 bytes
themes/pmahomme/img/s_views.png | Bin 700 -> 890 bytes
themes/pmahomme/img/south-mini.png | Bin 481 -> 505 bytes
themes/pmahomme/img/spacer.png | Bin 148 -> 267 bytes
themes/pmahomme/img/tab_bg.png | Bin 160 -> 293 bytes
themes/pmahomme/img/tab_hover_bg.png | Bin 1278 -> 599 bytes
themes/pmahomme/img/tabactive_bg.png | Bin 155 -> 276 bytes
themes/pmahomme/img/toggle-ltr.png | Bin 425 -> 602 bytes
themes/pmahomme/img/toggle-rtl.png | Bin 427 -> 601 bytes
themes/pmahomme/img/vertical_line.png | Bin 83 -> 201 bytes
themes/pmahomme/img/west-mini.png | Bin 453 -> 498 bytes
themes/pmahomme/img/window-new.png | Bin 583 -> 738 bytes
themes/pmahomme/img/zoom-minus-mini.png | Bin 359 -> 415 bytes
themes/pmahomme/img/zoom-plus-mini.png | Bin 489 -> 496 bytes
themes/pmahomme/img/zoom-world-mini.png | Bin 1072 -> 961 bytes
340 files changed, 21 insertions(+), 21 deletions(-)
diff --git a/pmd/images/2leftarrow.png b/pmd/images/2leftarrow.png
index 5e5638a..b2db95f 100644
Binary files a/pmd/images/2leftarrow.png and b/pmd/images/2leftarrow.png differ
diff --git a/pmd/images/2leftarrow_m.png b/pmd/images/2leftarrow_m.png
index e7cd838..0decaa9 100644
Binary files a/pmd/images/2leftarrow_m.png and b/pmd/images/2leftarrow_m.png differ
diff --git a/pmd/images/2rightarrow.png b/pmd/images/2rightarrow.png
index 106a4af..13fb875 100644
Binary files a/pmd/images/2rightarrow.png and b/pmd/images/2rightarrow.png differ
diff --git a/pmd/images/2rightarrow_m.png b/pmd/images/2rightarrow_m.png
index 29131bd..3831c6d 100644
Binary files a/pmd/images/2rightarrow_m.png and b/pmd/images/2rightarrow_m.png differ
diff --git a/pmd/images/and_icon.png b/pmd/images/and_icon.png
index 03d7900..60f25d7 100644
Binary files a/pmd/images/and_icon.png and b/pmd/images/and_icon.png differ
diff --git a/pmd/images/ang_direct.png b/pmd/images/ang_direct.png
index cd0a34c..820d2b8 100644
Binary files a/pmd/images/ang_direct.png and b/pmd/images/ang_direct.png differ
diff --git a/pmd/images/bord.png b/pmd/images/bord.png
index 68ea52c..9745bbc 100644
Binary files a/pmd/images/bord.png and b/pmd/images/bord.png differ
diff --git a/pmd/images/bottom.png b/pmd/images/bottom.png
index 03869b1..bffb22a 100644
Binary files a/pmd/images/bottom.png and b/pmd/images/bottom.png differ
diff --git a/pmd/images/def.png b/pmd/images/def.png
index 6594f67..b309f8e 100644
Binary files a/pmd/images/def.png and b/pmd/images/def.png differ
diff --git a/pmd/images/display_field.png b/pmd/images/display_field.png
index f0d05ad..763cc51 100644
Binary files a/pmd/images/display_field.png and b/pmd/images/display_field.png differ
diff --git a/pmd/images/downarrow1.png b/pmd/images/downarrow1.png
index a443737..c3c950a 100644
Binary files a/pmd/images/downarrow1.png and b/pmd/images/downarrow1.png differ
diff --git a/pmd/images/downarrow2.png b/pmd/images/downarrow2.png
index 94f8ce5..e22602d 100644
Binary files a/pmd/images/downarrow2.png and b/pmd/images/downarrow2.png differ
diff --git a/pmd/images/downarrow2_m.png b/pmd/images/downarrow2_m.png
index 5e2410d..09f79b7 100644
Binary files a/pmd/images/downarrow2_m.png and b/pmd/images/downarrow2_m.png differ
diff --git a/pmd/images/exec.png b/pmd/images/exec.png
index 55fff2f..1ffb3a5 100644
Binary files a/pmd/images/exec.png and b/pmd/images/exec.png differ
diff --git a/pmd/images/exec_small.png b/pmd/images/exec_small.png
index 097bb94..3491854 100644
Binary files a/pmd/images/exec_small.png and b/pmd/images/exec_small.png differ
diff --git a/pmd/images/grid.png b/pmd/images/grid.png
index 69bc3d5..c9d7849 100644
Binary files a/pmd/images/grid.png and b/pmd/images/grid.png differ
diff --git a/pmd/images/help.png b/pmd/images/help.png
index 5a3d380..f4c5c27 100644
Binary files a/pmd/images/help.png and b/pmd/images/help.png differ
diff --git a/pmd/images/help_relation.png b/pmd/images/help_relation.png
index 077b841..fdbd48b 100644
Binary files a/pmd/images/help_relation.png and b/pmd/images/help_relation.png differ
diff --git a/pmd/images/or_icon.png b/pmd/images/or_icon.png
index b3dd7f7..9129394 100644
Binary files a/pmd/images/or_icon.png and b/pmd/images/or_icon.png differ
diff --git a/pmd/images/pdf.png b/pmd/images/pdf.png
index 0713f49..1fa9a9a 100644
Binary files a/pmd/images/pdf.png and b/pmd/images/pdf.png differ
diff --git a/pmd/images/query_builder.png b/pmd/images/query_builder.png
index 2b24b54..f845a9b 100644
Binary files a/pmd/images/query_builder.png and b/pmd/images/query_builder.png differ
diff --git a/pmd/images/relation.png b/pmd/images/relation.png
index 36159a3..81745e6 100644
Binary files a/pmd/images/relation.png and b/pmd/images/relation.png differ
diff --git a/pmd/images/reload.png b/pmd/images/reload.png
index 54a6a72..63f6d79 100644
Binary files a/pmd/images/reload.png and b/pmd/images/reload.png differ
diff --git a/pmd/images/resize.png b/pmd/images/resize.png
index 492bee0..9caade2 100644
Binary files a/pmd/images/resize.png and b/pmd/images/resize.png differ
diff --git a/pmd/images/rightarrow1.png b/pmd/images/rightarrow1.png
index 0aae344..f7d235f 100644
Binary files a/pmd/images/rightarrow1.png and b/pmd/images/rightarrow1.png differ
diff --git a/pmd/images/rightarrow2.png b/pmd/images/rightarrow2.png
index 55bf835..60373ba 100644
Binary files a/pmd/images/rightarrow2.png and b/pmd/images/rightarrow2.png differ
diff --git a/pmd/images/save.png b/pmd/images/save.png
index 4f8c5f9..17165f8 100644
Binary files a/pmd/images/save.png and b/pmd/images/save.png differ
diff --git a/pmd/images/table.png b/pmd/images/table.png
index e3320d5..8459d2e 100644
Binary files a/pmd/images/table.png and b/pmd/images/table.png differ
diff --git a/pmd/images/uparrow2_m.png b/pmd/images/uparrow2_m.png
index ce2a2b7..3f60a78 100644
Binary files a/pmd/images/uparrow2_m.png and b/pmd/images/uparrow2_m.png differ
diff --git a/pmd_general.php b/pmd_general.php
index 1a7d3df..2bb4354 100644
--- a/pmd_general.php
+++ b/pmd_general.php
@@ -58,7 +58,7 @@ echo $script_tabs . $script_contr . $script_display_field;
</head>
<body onload="Main()" class="general_body" id="pmd_body">
-<div class="header" id="top_menu">
+<div class="pmd_header" id="top_menu">
<a href="javascript:Show_left_menu(document.getElementById('key_Show_left_menu'));"
onmousedown="return false;" class="M_butt first" target="_self">
<img id='key_Show_left_menu' title="<?php echo __('Show/Hide left menu'); ?>"
diff --git a/themes/original/img/ajax_clock_small.gif b/themes/original/img/ajax_clock_small.gif
index 5b33f7e..a0d90d0 100644
Binary files a/themes/original/img/ajax_clock_small.gif and b/themes/original/img/ajax_clock_small.gif differ
diff --git a/themes/original/img/arrow_ltr.png b/themes/original/img/arrow_ltr.png
index fc79c56..43e8f69 100644
Binary files a/themes/original/img/arrow_ltr.png and b/themes/original/img/arrow_ltr.png differ
diff --git a/themes/original/img/arrow_rtl.png b/themes/original/img/arrow_rtl.png
index 05df386..cdf3de7 100644
Binary files a/themes/original/img/arrow_rtl.png and b/themes/original/img/arrow_rtl.png differ
diff --git a/themes/original/img/b_bookmark.png b/themes/original/img/b_bookmark.png
index 2e62fb9..965475a 100644
Binary files a/themes/original/img/b_bookmark.png and b/themes/original/img/b_bookmark.png differ
diff --git a/themes/original/img/b_browse.png b/themes/original/img/b_browse.png
index d058d05..d39881e 100644
Binary files a/themes/original/img/b_browse.png and b/themes/original/img/b_browse.png differ
diff --git a/themes/original/img/b_calendar.png b/themes/original/img/b_calendar.png
index fd72545..1a915fd 100644
Binary files a/themes/original/img/b_calendar.png and b/themes/original/img/b_calendar.png differ
diff --git a/themes/original/img/b_chart.png b/themes/original/img/b_chart.png
index 5a2ed4b..82cda00 100644
Binary files a/themes/original/img/b_chart.png and b/themes/original/img/b_chart.png differ
diff --git a/themes/original/img/b_close.png b/themes/original/img/b_close.png
index 8ad396e..b151bc8 100644
Binary files a/themes/original/img/b_close.png and b/themes/original/img/b_close.png differ
diff --git a/themes/original/img/b_comment.png b/themes/original/img/b_comment.png
index 1f4590b..e52b51e 100644
Binary files a/themes/original/img/b_comment.png and b/themes/original/img/b_comment.png differ
diff --git a/themes/original/img/b_dbstatistics.png b/themes/original/img/b_dbstatistics.png
index 7ec8df7..08dfb13 100644
Binary files a/themes/original/img/b_dbstatistics.png and b/themes/original/img/b_dbstatistics.png differ
diff --git a/themes/original/img/b_deltbl.png b/themes/original/img/b_deltbl.png
index bc85d92..a2bf4e7 100644
Binary files a/themes/original/img/b_deltbl.png and b/themes/original/img/b_deltbl.png differ
diff --git a/themes/original/img/b_docs.png b/themes/original/img/b_docs.png
index cf2153e..103c1d2 100644
Binary files a/themes/original/img/b_docs.png and b/themes/original/img/b_docs.png differ
diff --git a/themes/original/img/b_drop.png b/themes/original/img/b_drop.png
index d738eac..98115f5 100644
Binary files a/themes/original/img/b_drop.png and b/themes/original/img/b_drop.png differ
diff --git a/themes/original/img/b_edit.png b/themes/original/img/b_edit.png
index 044e693..d50df21 100644
Binary files a/themes/original/img/b_edit.png and b/themes/original/img/b_edit.png differ
diff --git a/themes/original/img/b_empty.png b/themes/original/img/b_empty.png
index b21558a..c257e42 100644
Binary files a/themes/original/img/b_empty.png and b/themes/original/img/b_empty.png differ
diff --git a/themes/original/img/b_engine.png b/themes/original/img/b_engine.png
index 3099244..998a2d4 100644
Binary files a/themes/original/img/b_engine.png and b/themes/original/img/b_engine.png differ
diff --git a/themes/original/img/b_event_add.png b/themes/original/img/b_event_add.png
index 6940d74..7b2176e 100644
Binary files a/themes/original/img/b_event_add.png and b/themes/original/img/b_event_add.png differ
diff --git a/themes/original/img/b_events.png b/themes/original/img/b_events.png
index 4564284..f14a59e 100644
Binary files a/themes/original/img/b_events.png and b/themes/original/img/b_events.png differ
diff --git a/themes/original/img/b_export.png b/themes/original/img/b_export.png
index dfe292c..ebbca3b 100644
Binary files a/themes/original/img/b_export.png and b/themes/original/img/b_export.png differ
diff --git a/themes/original/img/b_ftext.png b/themes/original/img/b_ftext.png
index 009c1ad..4629220 100644
Binary files a/themes/original/img/b_ftext.png and b/themes/original/img/b_ftext.png differ
diff --git a/themes/original/img/b_help.png b/themes/original/img/b_help.png
index f741eee..fdfa9be 100644
Binary files a/themes/original/img/b_help.png and b/themes/original/img/b_help.png differ
diff --git a/themes/original/img/b_home.png b/themes/original/img/b_home.png
index 1db58f2..a8d3e50 100644
Binary files a/themes/original/img/b_home.png and b/themes/original/img/b_home.png differ
diff --git a/themes/original/img/b_import.png b/themes/original/img/b_import.png
index c90abe0..00a39db 100644
Binary files a/themes/original/img/b_import.png and b/themes/original/img/b_import.png differ
diff --git a/themes/original/img/b_index.png b/themes/original/img/b_index.png
index 39fb9bd..c59d5f7 100644
Binary files a/themes/original/img/b_index.png and b/themes/original/img/b_index.png differ
diff --git a/themes/original/img/b_info.png b/themes/original/img/b_info.png
index a9f4d47..c58399d 100644
Binary files a/themes/original/img/b_info.png and b/themes/original/img/b_info.png differ
diff --git a/themes/original/img/b_inline_edit.png b/themes/original/img/b_inline_edit.png
index a9d8264..dfcff0e 100644
Binary files a/themes/original/img/b_inline_edit.png and b/themes/original/img/b_inline_edit.png differ
diff --git a/themes/original/img/b_insrow.png b/themes/original/img/b_insrow.png
index e162d63..decc543 100644
Binary files a/themes/original/img/b_insrow.png and b/themes/original/img/b_insrow.png differ
diff --git a/themes/original/img/b_minus.png b/themes/original/img/b_minus.png
index 5af8409..add0b5d 100644
Binary files a/themes/original/img/b_minus.png and b/themes/original/img/b_minus.png differ
diff --git a/themes/original/img/b_more.png b/themes/original/img/b_more.png
index 3759d17..90582e6 100644
Binary files a/themes/original/img/b_more.png and b/themes/original/img/b_more.png differ
diff --git a/themes/original/img/b_newdb.png b/themes/original/img/b_newdb.png
index e2d1d26..3762fdb 100644
Binary files a/themes/original/img/b_newdb.png and b/themes/original/img/b_newdb.png differ
diff --git a/themes/original/img/b_newtbl.png b/themes/original/img/b_newtbl.png
index 0b8ac50..a699caf 100644
Binary files a/themes/original/img/b_newtbl.png and b/themes/original/img/b_newtbl.png differ
diff --git a/themes/original/img/b_nextpage.png b/themes/original/img/b_nextpage.png
index e252606..7f6f34a 100644
Binary files a/themes/original/img/b_nextpage.png and b/themes/original/img/b_nextpage.png differ
diff --git a/themes/original/img/b_plus.png b/themes/original/img/b_plus.png
index 94b5df6..7a24e63 100644
Binary files a/themes/original/img/b_plus.png and b/themes/original/img/b_plus.png differ
diff --git a/themes/original/img/b_primary.png b/themes/original/img/b_primary.png
index 1a5883f..9b6bac1 100644
Binary files a/themes/original/img/b_primary.png and b/themes/original/img/b_primary.png differ
diff --git a/themes/original/img/b_print.png b/themes/original/img/b_print.png
index 14f62d4..d507632 100644
Binary files a/themes/original/img/b_print.png and b/themes/original/img/b_print.png differ
diff --git a/themes/original/img/b_props.png b/themes/original/img/b_props.png
index 79ea511..9dc9e56 100644
Binary files a/themes/original/img/b_props.png and b/themes/original/img/b_props.png differ
diff --git a/themes/original/img/b_relations.png b/themes/original/img/b_relations.png
index 41d8540..d35e4a0 100644
Binary files a/themes/original/img/b_relations.png and b/themes/original/img/b_relations.png differ
diff --git a/themes/original/img/b_routine_add.png b/themes/original/img/b_routine_add.png
index 95b9719..aa5f451 100644
Binary files a/themes/original/img/b_routine_add.png and b/themes/original/img/b_routine_add.png differ
diff --git a/themes/original/img/b_routines.png b/themes/original/img/b_routines.png
index 428b0db..b95652e 100644
Binary files a/themes/original/img/b_routines.png and b/themes/original/img/b_routines.png differ
diff --git a/themes/original/img/b_save.png b/themes/original/img/b_save.png
index 7c8d475..3b0eab3 100644
Binary files a/themes/original/img/b_save.png and b/themes/original/img/b_save.png differ
diff --git a/themes/original/img/b_sbrowse.png b/themes/original/img/b_sbrowse.png
index 25a3c8d..153d2e3 100644
Binary files a/themes/original/img/b_sbrowse.png and b/themes/original/img/b_sbrowse.png differ
diff --git a/themes/original/img/b_search.png b/themes/original/img/b_search.png
index 6032608..54dd50c 100644
Binary files a/themes/original/img/b_search.png and b/themes/original/img/b_search.png differ
diff --git a/themes/original/img/b_selboard.png b/themes/original/img/b_selboard.png
index 183ca4f..0df8f94 100644
Binary files a/themes/original/img/b_selboard.png and b/themes/original/img/b_selboard.png differ
diff --git a/themes/original/img/b_select.png b/themes/original/img/b_select.png
index 5559dfe..2189ab0 100644
Binary files a/themes/original/img/b_select.png and b/themes/original/img/b_select.png differ
diff --git a/themes/original/img/b_snewtbl.png b/themes/original/img/b_snewtbl.png
index 1bd42b9..988dc33 100644
Binary files a/themes/original/img/b_snewtbl.png and b/themes/original/img/b_snewtbl.png differ
diff --git a/themes/original/img/b_spatial.png b/themes/original/img/b_spatial.png
index 32b30fa..0305b01 100644
Binary files a/themes/original/img/b_spatial.png and b/themes/original/img/b_spatial.png differ
diff --git a/themes/original/img/b_sql.png b/themes/original/img/b_sql.png
index 7988dd9..92bd698 100644
Binary files a/themes/original/img/b_sql.png and b/themes/original/img/b_sql.png differ
diff --git a/themes/original/img/b_sqlhelp.png b/themes/original/img/b_sqlhelp.png
index 7e6695b..d76cb39 100644
Binary files a/themes/original/img/b_sqlhelp.png and b/themes/original/img/b_sqlhelp.png differ
diff --git a/themes/original/img/b_tblanalyse.png b/themes/original/img/b_tblanalyse.png
index 84b599a..e4f18ca 100644
Binary files a/themes/original/img/b_tblanalyse.png and b/themes/original/img/b_tblanalyse.png differ
diff --git a/themes/original/img/b_tblexport.png b/themes/original/img/b_tblexport.png
index 364c5ef..5f873cc 100644
Binary files a/themes/original/img/b_tblexport.png and b/themes/original/img/b_tblexport.png differ
diff --git a/themes/original/img/b_tblimport.png b/themes/original/img/b_tblimport.png
index 1d264cd..132dedb 100644
Binary files a/themes/original/img/b_tblimport.png and b/themes/original/img/b_tblimport.png differ
diff --git a/themes/original/img/b_tblops.png b/themes/original/img/b_tblops.png
index 2a1b0cf..d8fcacd 100644
Binary files a/themes/original/img/b_tblops.png and b/themes/original/img/b_tblops.png differ
diff --git a/themes/original/img/b_tbloptimize.png b/themes/original/img/b_tbloptimize.png
index 1c3795b..d7e53bd 100644
Binary files a/themes/original/img/b_tbloptimize.png and b/themes/original/img/b_tbloptimize.png differ
diff --git a/themes/original/img/b_tipp.png b/themes/original/img/b_tipp.png
index 6153f7f..ee17b2b 100644
Binary files a/themes/original/img/b_tipp.png and b/themes/original/img/b_tipp.png differ
diff --git a/themes/original/img/b_trigger_add.png b/themes/original/img/b_trigger_add.png
index 5b91c50..801a25a 100644
Binary files a/themes/original/img/b_trigger_add.png and b/themes/original/img/b_trigger_add.png differ
diff --git a/themes/original/img/b_triggers.png b/themes/original/img/b_triggers.png
index e902511..c4ca0f8 100644
Binary files a/themes/original/img/b_triggers.png and b/themes/original/img/b_triggers.png differ
diff --git a/themes/original/img/b_unique.png b/themes/original/img/b_unique.png
index 684a083..36ff345 100644
Binary files a/themes/original/img/b_unique.png and b/themes/original/img/b_unique.png differ
diff --git a/themes/original/img/b_usradd.png b/themes/original/img/b_usradd.png
index a843a35..29d8fe6 100644
Binary files a/themes/original/img/b_usradd.png and b/themes/original/img/b_usradd.png differ
diff --git a/themes/original/img/b_usrcheck.png b/themes/original/img/b_usrcheck.png
index c11c0c4..90d1932 100644
Binary files a/themes/original/img/b_usrcheck.png and b/themes/original/img/b_usrcheck.png differ
diff --git a/themes/original/img/b_usrdrop.png b/themes/original/img/b_usrdrop.png
index fe85b1f..adacc2b 100644
Binary files a/themes/original/img/b_usrdrop.png and b/themes/original/img/b_usrdrop.png differ
diff --git a/themes/original/img/b_usredit.png b/themes/original/img/b_usredit.png
index 3b4e9c3..e92039c 100644
Binary files a/themes/original/img/b_usredit.png and b/themes/original/img/b_usredit.png differ
diff --git a/themes/original/img/b_usrlist.png b/themes/original/img/b_usrlist.png
index d45b52e..0ab0047 100644
Binary files a/themes/original/img/b_usrlist.png and b/themes/original/img/b_usrlist.png differ
diff --git a/themes/original/img/b_view.png b/themes/original/img/b_view.png
index 4cf86bb..eb48673 100644
Binary files a/themes/original/img/b_view.png and b/themes/original/img/b_view.png differ
diff --git a/themes/original/img/b_views.png b/themes/original/img/b_views.png
index 55f4341..74209ee 100644
Binary files a/themes/original/img/b_views.png and b/themes/original/img/b_views.png differ
diff --git a/themes/original/img/bd_browse.png b/themes/original/img/bd_browse.png
index 66dc986..5f8929a 100644
Binary files a/themes/original/img/bd_browse.png and b/themes/original/img/bd_browse.png differ
diff --git a/themes/original/img/bd_deltbl.png b/themes/original/img/bd_deltbl.png
index 90ec21a..2faa4d5 100644
Binary files a/themes/original/img/bd_deltbl.png and b/themes/original/img/bd_deltbl.png differ
diff --git a/themes/original/img/bd_drop.png b/themes/original/img/bd_drop.png
index daad1d0..8ed7caa 100644
Binary files a/themes/original/img/bd_drop.png and b/themes/original/img/bd_drop.png differ
diff --git a/themes/original/img/bd_edit.png b/themes/original/img/bd_edit.png
index 8894dcf..4b4449c 100644
Binary files a/themes/original/img/bd_edit.png and b/themes/original/img/bd_edit.png differ
diff --git a/themes/original/img/bd_empty.png b/themes/original/img/bd_empty.png
index 8a86a36..d2fd03d 100644
Binary files a/themes/original/img/bd_empty.png and b/themes/original/img/bd_empty.png differ
diff --git a/themes/original/img/bd_export.png b/themes/original/img/bd_export.png
index 07e4c67..6ca055b 100644
Binary files a/themes/original/img/bd_export.png and b/themes/original/img/bd_export.png differ
diff --git a/themes/original/img/bd_ftext.png b/themes/original/img/bd_ftext.png
index f31ac39..3687519 100644
Binary files a/themes/original/img/bd_ftext.png and b/themes/original/img/bd_ftext.png differ
diff --git a/themes/original/img/bd_index.png b/themes/original/img/bd_index.png
index 8756d32..a9d3d4e 100644
Binary files a/themes/original/img/bd_index.png and b/themes/original/img/bd_index.png differ
diff --git a/themes/original/img/bd_insrow.png b/themes/original/img/bd_insrow.png
index 295948f..84daf1d 100644
Binary files a/themes/original/img/bd_insrow.png and b/themes/original/img/bd_insrow.png differ
diff --git a/themes/original/img/bd_nextpage.png b/themes/original/img/bd_nextpage.png
index 4f7dd40..707022e 100644
Binary files a/themes/original/img/bd_nextpage.png and b/themes/original/img/bd_nextpage.png differ
diff --git a/themes/original/img/bd_primary.png b/themes/original/img/bd_primary.png
index 9544774..41dd905 100644
Binary files a/themes/original/img/bd_primary.png and b/themes/original/img/bd_primary.png differ
diff --git a/themes/original/img/bd_sbrowse.png b/themes/original/img/bd_sbrowse.png
index 78fa9fb..84b75f2 100644
Binary files a/themes/original/img/bd_sbrowse.png and b/themes/original/img/bd_sbrowse.png differ
diff --git a/themes/original/img/bd_select.png b/themes/original/img/bd_select.png
index bf065db..d048f61 100644
Binary files a/themes/original/img/bd_select.png and b/themes/original/img/bd_select.png differ
diff --git a/themes/original/img/bd_spatial.png b/themes/original/img/bd_spatial.png
index 40892d0..2cac574 100644
Binary files a/themes/original/img/bd_spatial.png and b/themes/original/img/bd_spatial.png differ
diff --git a/themes/original/img/bd_unique.png b/themes/original/img/bd_unique.png
index 28f9fb3..86619f7 100644
Binary files a/themes/original/img/bd_unique.png and b/themes/original/img/bd_unique.png differ
diff --git a/themes/original/img/cleardot.gif b/themes/original/img/cleardot.gif
index 35d42e8..a9d7bea 100644
Binary files a/themes/original/img/cleardot.gif and b/themes/original/img/cleardot.gif differ
diff --git a/themes/original/img/col_drop.png b/themes/original/img/col_drop.png
index e738318..79f32db 100644
Binary files a/themes/original/img/col_drop.png and b/themes/original/img/col_drop.png differ
diff --git a/themes/original/img/col_pointer.png b/themes/original/img/col_pointer.png
index 7126aef..2b786fa 100644
Binary files a/themes/original/img/col_pointer.png and b/themes/original/img/col_pointer.png differ
diff --git a/themes/original/img/col_pointer_ver.png b/themes/original/img/col_pointer_ver.png
index 4607912..8987987 100644
Binary files a/themes/original/img/col_pointer_ver.png and b/themes/original/img/col_pointer_ver.png differ
diff --git a/themes/original/img/docs_menu_bg.png b/themes/original/img/docs_menu_bg.png
index 05f0c97..2f9ea76 100644
Binary files a/themes/original/img/docs_menu_bg.png and b/themes/original/img/docs_menu_bg.png differ
diff --git a/themes/original/img/east-mini.png b/themes/original/img/east-mini.png
index 0707567..a5cc17e 100644
Binary files a/themes/original/img/east-mini.png and b/themes/original/img/east-mini.png differ
diff --git a/themes/original/img/error.ico b/themes/original/img/error.ico
index 41d26d6..b5c0618 100644
Binary files a/themes/original/img/error.ico and b/themes/original/img/error.ico differ
diff --git a/themes/original/img/eye.png b/themes/original/img/eye.png
index 564a1a9..7f0de12 100644
Binary files a/themes/original/img/eye.png and b/themes/original/img/eye.png differ
diff --git a/themes/original/img/eye_grey.png b/themes/original/img/eye_grey.png
index 0ba2312..8e3f9cc 100644
Binary files a/themes/original/img/eye_grey.png and b/themes/original/img/eye_grey.png differ
diff --git a/themes/original/img/iconsprites.png b/themes/original/img/iconsprites.png
index 4c324ad..c97a1cf 100644
Binary files a/themes/original/img/iconsprites.png and b/themes/original/img/iconsprites.png differ
diff --git a/themes/original/img/item_ltr.png b/themes/original/img/item_ltr.png
index d69d1a2..e58f1e7 100644
Binary files a/themes/original/img/item_ltr.png and b/themes/original/img/item_ltr.png differ
diff --git a/themes/original/img/item_rtl.png b/themes/original/img/item_rtl.png
index 7462602..224a64a 100644
Binary files a/themes/original/img/item_rtl.png and b/themes/original/img/item_rtl.png differ
diff --git a/themes/original/img/logo_left.png b/themes/original/img/logo_left.png
index 16347ab..10410ba 100644
Binary files a/themes/original/img/logo_left.png and b/themes/original/img/logo_left.png differ
diff --git a/themes/original/img/logo_right.png b/themes/original/img/logo_right.png
index a8075ab..834603f 100644
Binary files a/themes/original/img/logo_right.png and b/themes/original/img/logo_right.png differ
diff --git a/themes/original/img/more.png b/themes/original/img/more.png
index 941da78..1b8f184 100644
Binary files a/themes/original/img/more.png and b/themes/original/img/more.png differ
diff --git a/themes/original/img/new_data.png b/themes/original/img/new_data.png
index 6533571..261abca 100644
Binary files a/themes/original/img/new_data.png and b/themes/original/img/new_data.png differ
diff --git a/themes/original/img/new_data_hovered.png b/themes/original/img/new_data_hovered.png
index b1cbdcd..33922c1 100644
Binary files a/themes/original/img/new_data_hovered.png and b/themes/original/img/new_data_hovered.png differ
diff --git a/themes/original/img/new_data_selected.png b/themes/original/img/new_data_selected.png
index 39aa50f..318d582 100644
Binary files a/themes/original/img/new_data_selected.png and b/themes/original/img/new_data_selected.png differ
diff --git a/themes/original/img/new_data_selected_hovered.png b/themes/original/img/new_data_selected_hovered.png
index 7105a2d..1ce650b 100644
Binary files a/themes/original/img/new_data_selected_hovered.png and b/themes/original/img/new_data_selected_hovered.png differ
diff --git a/themes/original/img/new_struct.png b/themes/original/img/new_struct.png
index 14f7969..773f859 100644
Binary files a/themes/original/img/new_struct.png and b/themes/original/img/new_struct.png differ
diff --git a/themes/original/img/new_struct_hovered.png b/themes/original/img/new_struct_hovered.png
index 5746ac1..1f5b8b0 100644
Binary files a/themes/original/img/new_struct_hovered.png and b/themes/original/img/new_struct_hovered.png differ
diff --git a/themes/original/img/new_struct_selected.png b/themes/original/img/new_struct_selected.png
index 618ba81..94e5b6e 100644
Binary files a/themes/original/img/new_struct_selected.png and b/themes/original/img/new_struct_selected.png differ
diff --git a/themes/original/img/new_struct_selected_hovered.png b/themes/original/img/new_struct_selected_hovered.png
index 4e0947e..bb269ad 100644
Binary files a/themes/original/img/new_struct_selected_hovered.png and b/themes/original/img/new_struct_selected_hovered.png differ
diff --git a/themes/original/img/north-mini.png b/themes/original/img/north-mini.png
index a8a0b40..77587a6 100644
Binary files a/themes/original/img/north-mini.png and b/themes/original/img/north-mini.png differ
diff --git a/themes/original/img/s_asc.png b/themes/original/img/s_asc.png
index 10af1fb..6478c4d 100644
Binary files a/themes/original/img/s_asc.png and b/themes/original/img/s_asc.png differ
diff --git a/themes/original/img/s_asci.png b/themes/original/img/s_asci.png
index 4b4d23e..cc4f033 100644
Binary files a/themes/original/img/s_asci.png and b/themes/original/img/s_asci.png differ
diff --git a/themes/original/img/s_cancel.png b/themes/original/img/s_cancel.png
index fd090f9..e84c3c7 100644
Binary files a/themes/original/img/s_cancel.png and b/themes/original/img/s_cancel.png differ
diff --git a/themes/original/img/s_cog.png b/themes/original/img/s_cog.png
index dd117d7..c2bf47a 100644
Binary files a/themes/original/img/s_cog.png and b/themes/original/img/s_cog.png differ
diff --git a/themes/original/img/s_db.png b/themes/original/img/s_db.png
index c92c1de..4c77e7f 100644
Binary files a/themes/original/img/s_db.png and b/themes/original/img/s_db.png differ
diff --git a/themes/original/img/s_desc.png b/themes/original/img/s_desc.png
index 57c9e54..178fd4e 100644
Binary files a/themes/original/img/s_desc.png and b/themes/original/img/s_desc.png differ
diff --git a/themes/original/img/s_error.png b/themes/original/img/s_error.png
index 5fb06ba..41ee95d 100644
Binary files a/themes/original/img/s_error.png and b/themes/original/img/s_error.png differ
diff --git a/themes/original/img/s_error2.png b/themes/original/img/s_error2.png
index 772cabf..339f44b 100644
Binary files a/themes/original/img/s_error2.png and b/themes/original/img/s_error2.png differ
diff --git a/themes/original/img/s_fulltext.png b/themes/original/img/s_fulltext.png
index c017c2e..d4ca67d 100644
Binary files a/themes/original/img/s_fulltext.png and b/themes/original/img/s_fulltext.png differ
diff --git a/themes/original/img/s_host.png b/themes/original/img/s_host.png
index 6f70eda..ff75a62 100644
Binary files a/themes/original/img/s_host.png and b/themes/original/img/s_host.png differ
diff --git a/themes/original/img/s_lang.png b/themes/original/img/s_lang.png
index 81617b6..fda357a 100644
Binary files a/themes/original/img/s_lang.png and b/themes/original/img/s_lang.png differ
diff --git a/themes/original/img/s_loggoff.png b/themes/original/img/s_loggoff.png
index d41143c..324275c 100644
Binary files a/themes/original/img/s_loggoff.png and b/themes/original/img/s_loggoff.png differ
diff --git a/themes/original/img/s_notice.png b/themes/original/img/s_notice.png
index b271f48..8c956b3 100644
Binary files a/themes/original/img/s_notice.png and b/themes/original/img/s_notice.png differ
diff --git a/themes/original/img/s_partialtext.png b/themes/original/img/s_partialtext.png
index b536cf7..ff933b5 100644
Binary files a/themes/original/img/s_partialtext.png and b/themes/original/img/s_partialtext.png differ
diff --git a/themes/original/img/s_passwd.png b/themes/original/img/s_passwd.png
index de13da6..c24de25 100644
Binary files a/themes/original/img/s_passwd.png and b/themes/original/img/s_passwd.png differ
diff --git a/themes/original/img/s_really.png b/themes/original/img/s_really.png
index e335228..4e0c747 100644
Binary files a/themes/original/img/s_really.png and b/themes/original/img/s_really.png differ
diff --git a/themes/original/img/s_reload.png b/themes/original/img/s_reload.png
index 09d47bd..f3a1db3 100644
Binary files a/themes/original/img/s_reload.png and b/themes/original/img/s_reload.png differ
diff --git a/themes/original/img/s_replication.png b/themes/original/img/s_replication.png
index 4ceb218..779450d 100644
Binary files a/themes/original/img/s_replication.png and b/themes/original/img/s_replication.png differ
diff --git a/themes/original/img/s_rights.png b/themes/original/img/s_rights.png
index 8fa34e2..8355bc3 100644
Binary files a/themes/original/img/s_rights.png and b/themes/original/img/s_rights.png differ
diff --git a/themes/original/img/s_sortable.png b/themes/original/img/s_sortable.png
index f403240..9d6401b 100644
Binary files a/themes/original/img/s_sortable.png and b/themes/original/img/s_sortable.png differ
diff --git a/themes/original/img/s_status.png b/themes/original/img/s_status.png
index b6df467..9ec9e7f 100644
Binary files a/themes/original/img/s_status.png and b/themes/original/img/s_status.png differ
diff --git a/themes/original/img/s_success.png b/themes/original/img/s_success.png
index fbb3983..8221f48 100644
Binary files a/themes/original/img/s_success.png and b/themes/original/img/s_success.png differ
diff --git a/themes/original/img/s_sync.png b/themes/original/img/s_sync.png
index 49618be..895eed9 100644
Binary files a/themes/original/img/s_sync.png and b/themes/original/img/s_sync.png differ
diff --git a/themes/original/img/s_tbl.png b/themes/original/img/s_tbl.png
index c7ba6cf..88acd31 100644
Binary files a/themes/original/img/s_tbl.png and b/themes/original/img/s_tbl.png differ
diff --git a/themes/original/img/s_theme.png b/themes/original/img/s_theme.png
index 7d9d489..9c742e6 100644
Binary files a/themes/original/img/s_theme.png and b/themes/original/img/s_theme.png differ
diff --git a/themes/original/img/s_vars.png b/themes/original/img/s_vars.png
index dbe704c..d71cc80 100644
Binary files a/themes/original/img/s_vars.png and b/themes/original/img/s_vars.png differ
diff --git a/themes/original/img/s_views.png b/themes/original/img/s_views.png
index 4a85f20..38dcd5d 100644
Binary files a/themes/original/img/s_views.png and b/themes/original/img/s_views.png differ
diff --git a/themes/original/img/south-mini.png b/themes/original/img/south-mini.png
index 6c4ac8a..4d826e9 100644
Binary files a/themes/original/img/south-mini.png and b/themes/original/img/south-mini.png differ
diff --git a/themes/original/img/spacer.png b/themes/original/img/spacer.png
index 6f4c4ca..e0bfe28 100644
Binary files a/themes/original/img/spacer.png and b/themes/original/img/spacer.png differ
diff --git a/themes/original/img/toggle-ltr.png b/themes/original/img/toggle-ltr.png
index bc312a9..ede79d8 100644
Binary files a/themes/original/img/toggle-ltr.png and b/themes/original/img/toggle-ltr.png differ
diff --git a/themes/original/img/toggle-rtl.png b/themes/original/img/toggle-rtl.png
index e81640e..21ae3f2 100644
Binary files a/themes/original/img/toggle-rtl.png and b/themes/original/img/toggle-rtl.png differ
diff --git a/themes/original/img/vertical_line.png b/themes/original/img/vertical_line.png
index 4cc392f..5e568df 100644
Binary files a/themes/original/img/vertical_line.png and b/themes/original/img/vertical_line.png differ
diff --git a/themes/original/img/west-mini.png b/themes/original/img/west-mini.png
index db5f420..e283c23 100644
Binary files a/themes/original/img/west-mini.png and b/themes/original/img/west-mini.png differ
diff --git a/themes/original/img/window-new.png b/themes/original/img/window-new.png
index 0c352db..deb1060 100644
Binary files a/themes/original/img/window-new.png and b/themes/original/img/window-new.png differ
diff --git a/themes/original/img/zoom-minus-mini.png b/themes/original/img/zoom-minus-mini.png
index f9b63ab..d74e25b 100644
Binary files a/themes/original/img/zoom-minus-mini.png and b/themes/original/img/zoom-minus-mini.png differ
diff --git a/themes/original/img/zoom-plus-mini.png b/themes/original/img/zoom-plus-mini.png
index eecf2eb..9e10c77 100644
Binary files a/themes/original/img/zoom-plus-mini.png and b/themes/original/img/zoom-plus-mini.png differ
diff --git a/themes/original/img/zoom-world-mini.png b/themes/original/img/zoom-world-mini.png
index 2159dde..d14fe82 100644
Binary files a/themes/original/img/zoom-world-mini.png and b/themes/original/img/zoom-world-mini.png differ
diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php
index ca554f1..5d38c7c 100644
--- a/themes/pmahomme/css/theme_right.css.php
+++ b/themes/pmahomme/css/theme_right.css.php
@@ -166,7 +166,7 @@ input[type=text]{
-moz-box-shadow:0 1px 2px #ddd;
-webkit-box-shadow:0 1px 2px #ddd;
- background:url(./themes/pmahomme/img/input_bg.gif);
+ background:url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>input_bg.gif);
border:1px solid #aaa;
color:#555555;
padding:4px;
@@ -183,7 +183,7 @@ input[type=password]{
-moz-box-shadow:0 1px 2px #ddd;
-webkit-box-shadow:0 1px 2px #ddd;
- background:url(./themes/pmahomme/img/input_bg.gif);
+ background:url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>input_bg.gif);
border:1px solid #aaa;
color:#555555;
padding:4px;
@@ -311,7 +311,7 @@ select{
border:1px solid #aaa;
color:#333333;
padding:3px;
- background:url(./themes/pmahomme/img/input_bg.gif)
+ background:url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>input_bg.gif)
}
select[multiple] {
@@ -558,7 +558,7 @@ td.marked,
table tr.marked td,
table tr.marked th,
table tr.marked {
- background: url(./themes/pmahomme/img/marked_bg.png) repeat-x #b6c6d7;
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>marked_bg.png) repeat-x #b6c6d7;
color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
}
<?php } ?>
@@ -569,7 +569,7 @@ table tr.marked {
.even:hover,
.hover,
.structure_actions_dropdown {
- background: url(./themes/pmahomme/img/marked_bg.png) repeat-x #b6c6d7; /* 3.4 */
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>marked_bg.png) repeat-x #b6c6d7; /* 3.4 */
color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
}
@@ -577,7 +577,7 @@ table tr.marked {
table tr.odd:hover th,
table tr.even:hover th,
table tr.hover th {
- background: url(./themes/pmahomme/img/marked_bg.png) repeat-x #b6c6d7; /* 3.4 */
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>marked_bg.png) repeat-x #b6c6d7; /* 3.4 */
color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
}
<?php } ?>
@@ -999,7 +999,7 @@ ul#topmenu li, ul#topmenu2 li {
}
#topmenucontainer{
- background:url(./themes/pmahomme/img/tab_bg.png) repeat-x;
+ background:url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>tab_bg.png) repeat-x;
border-top:1px solid #aaa;
}
@@ -1041,7 +1041,7 @@ ul#topmenu ul {
}
ul#topmenu li:hover {
- background:url(./themes/pmahomme/img/tab_hover_bg.png) repeat-x 50% 0%!important;
+ background:url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>tab_hover_bg.png) repeat-x 50% 0%!important;
}
ul#topmenu li:hover ul, ul#topmenu .submenuhover ul {
@@ -1991,7 +1991,7 @@ input[type=text].invalid_value,
display: inline;
left: 0;
right: 0;
- background-image: url(./themes/pmahomme/img/ajax_clock_small.gif);
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>ajax_clock_small.gif);
background-repeat: no-repeat;
background-position: 2%;
border:1px solid #e2b709;
@@ -2801,7 +2801,7 @@ span.cm-number {
}
.cPointer {
- background: url(./themes/pmahomme/img/col_pointer.png);
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>col_pointer.png);
height: 20px;
margin-left: -5px; /* must be minus half of its width */
margin-top: -10px;
@@ -2831,7 +2831,7 @@ span.cm-number {
}
.cHide {
- background: #EEE url(./themes/pmahomme/img/col_hide.png);
+ background: #EEE url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>col_hide.png);
color: #CCC;
cursor: pointer;
height: 16px;
@@ -2852,7 +2852,7 @@ span.cm-number {
}
.coldrop {
- background: url(./themes/pmahomme/img/col_drop.png);
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>col_drop.png);
cursor: pointer;
height: 16px;
margin-left: 0.3em;
@@ -2998,12 +2998,12 @@ span.cm-number {
}
.cEdit .edit_box_posting {
- background: #FFF url(./themes/pmahomme/img/ajax_clock_small.gif) no-repeat right center;
+ background: #FFF url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>ajax_clock_small.gif) no-repeat right center;
padding-right: 1.5em;
}
.cEdit .edit_area_loading {
- background: #FFF url(./themes/pmahomme/img/ajax_clock_small.gif) no-repeat center;
+ background: #FFF url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>ajax_clock_small.gif) no-repeat center;
height: 10em;
}
@@ -3014,7 +3014,7 @@ span.cm-number {
}
.saving_edited_data {
- background: url(./themes/pmahomme/img/ajax_clock_small.gif) no-repeat left;
+ background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>ajax_clock_small.gif) no-repeat left;
padding-left: 20px;
}
@@ -3275,7 +3275,7 @@ canvas.pmd * {
border: #A9A9A9 solid 1px;
}
-.header {
+.pmd_header {
background-color: #EAEEF0;
color: #000000;
text-align: center;
@@ -3290,7 +3290,7 @@ canvas.pmd * {
height: 28px;
}
-.header a {
+.pmd_header a {
display: block;
float: left;
margin: 3px 1px 4px 1px;
@@ -3298,7 +3298,7 @@ canvas.pmd * {
border: 1px dotted #ffffff;
}
-.header .M_bord {
+.pmd_header .M_bord {
display: block;
float: left;
margin: 4px;
@@ -3306,11 +3306,11 @@ canvas.pmd * {
width: 2px;
}
-.header a.first {
+.pmd_header a.first {
margin-right: 1em;
}
-.header a.last {
+.pmd_header a.last {
margin-left: 1em;
}
diff --git a/themes/pmahomme/img/ajax_clock_small.gif b/themes/pmahomme/img/ajax_clock_small.gif
index 5b33f7e..a0d90d0 100644
Binary files a/themes/pmahomme/img/ajax_clock_small.gif and b/themes/pmahomme/img/ajax_clock_small.gif differ
diff --git a/themes/pmahomme/img/arrow_ltr.png b/themes/pmahomme/img/arrow_ltr.png
index 20a4188..43e8f69 100644
Binary files a/themes/pmahomme/img/arrow_ltr.png and b/themes/pmahomme/img/arrow_ltr.png differ
diff --git a/themes/pmahomme/img/arrow_rtl.png b/themes/pmahomme/img/arrow_rtl.png
index ff045a0..cdf3de7 100644
Binary files a/themes/pmahomme/img/arrow_rtl.png and b/themes/pmahomme/img/arrow_rtl.png differ
diff --git a/themes/pmahomme/img/asc_order.png b/themes/pmahomme/img/asc_order.png
index 9b23c06..91ce057 100644
Binary files a/themes/pmahomme/img/asc_order.png and b/themes/pmahomme/img/asc_order.png differ
diff --git a/themes/pmahomme/img/b_bookmark.png b/themes/pmahomme/img/b_bookmark.png
index e2f0847..8fca0f6 100644
Binary files a/themes/pmahomme/img/b_bookmark.png and b/themes/pmahomme/img/b_bookmark.png differ
diff --git a/themes/pmahomme/img/b_browse.png b/themes/pmahomme/img/b_browse.png
index abcd936..09c0f14 100644
Binary files a/themes/pmahomme/img/b_browse.png and b/themes/pmahomme/img/b_browse.png differ
diff --git a/themes/pmahomme/img/b_calendar.png b/themes/pmahomme/img/b_calendar.png
index 6589138..ec81770 100644
Binary files a/themes/pmahomme/img/b_calendar.png and b/themes/pmahomme/img/b_calendar.png differ
diff --git a/themes/pmahomme/img/b_chart.png b/themes/pmahomme/img/b_chart.png
index 9051fbc..9971995 100644
Binary files a/themes/pmahomme/img/b_chart.png and b/themes/pmahomme/img/b_chart.png differ
diff --git a/themes/pmahomme/img/b_close.png b/themes/pmahomme/img/b_close.png
index 8ad396e..b151bc8 100644
Binary files a/themes/pmahomme/img/b_close.png and b/themes/pmahomme/img/b_close.png differ
diff --git a/themes/pmahomme/img/b_comment.png b/themes/pmahomme/img/b_comment.png
index 7bc9233..c960df3 100644
Binary files a/themes/pmahomme/img/b_comment.png and b/themes/pmahomme/img/b_comment.png differ
diff --git a/themes/pmahomme/img/b_dbstatistics.png b/themes/pmahomme/img/b_dbstatistics.png
index 9051fbc..9971995 100644
Binary files a/themes/pmahomme/img/b_dbstatistics.png and b/themes/pmahomme/img/b_dbstatistics.png differ
diff --git a/themes/pmahomme/img/b_deltbl.png b/themes/pmahomme/img/b_deltbl.png
index b85916d..ef43789 100644
Binary files a/themes/pmahomme/img/b_deltbl.png and b/themes/pmahomme/img/b_deltbl.png differ
diff --git a/themes/pmahomme/img/b_docs.png b/themes/pmahomme/img/b_docs.png
index 5c87017..b045bd3 100644
Binary files a/themes/pmahomme/img/b_docs.png and b/themes/pmahomme/img/b_docs.png differ
diff --git a/themes/pmahomme/img/b_docsql.png b/themes/pmahomme/img/b_docsql.png
index 0568a45..107a19c 100644
Binary files a/themes/pmahomme/img/b_docsql.png and b/themes/pmahomme/img/b_docsql.png differ
diff --git a/themes/pmahomme/img/b_drop.png b/themes/pmahomme/img/b_drop.png
index 08f2493..100b387 100644
Binary files a/themes/pmahomme/img/b_drop.png and b/themes/pmahomme/img/b_drop.png differ
diff --gi es a/themes/pmahomme/img/b_drop.png and b/themes/pmahomme/img/b_drop.png differ er png differ er nter; ter; differ p�� u��~�+ ���~�+ ��~�+ ����+ p�� ����+ �o�� ��o�� k��~�+ 6 � �! �! �p�� p�� xT��+ �o�� ���~�+ ���~�+ �p�� `��~�+ �p�� �O1��+ u��~�+ @1��+ �D1��+ �I1��+ ���~�+ xT��+ �o�� ��o�� k��~�+ �! �! �p�� p�� H��+ ��o�� ���~�+ ���~�+ �p�� `��~�+ �p�� �p�� �p�� 8��~�+ �p� p�� u��~�+ ���~�+ ��o�� ��o�� k��~�+ G H I J K M N O P �p�� p�� HՃ�+ ��o�� ���~�+ ���~�+ �p�� 0O1��+ u��~�+ `��+ � a�+ @1��+ �D1��+ �I1��+ ���~�+ HՃ�+ ��o�� ��o�� k��~�+ 8Ճ�+ ��o�� �o�� k��~�+ (Ճ�+ ��o�� 0�o�� k��~�+ Ճ�+ ��o�� `�o�� k��~�+ �N1��+ u��~�+ �I1��+ ��o�� �Xa�+ e��~�+ �D1��+ �o�� yXa�+ e��~�+ @1��+ 0�o�� ZXa�+ e��~�+ �a�+ `��+ � a�+ @1��+ �d��+ �D1��+ �I1��+ ���~�+ 8��~�+ �,�+ p�� p�`�+ � p�� ��o�� k��~�+ 5 6 7 8 : <