Git
Threads by month
- ----- 2026 -----
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- 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
- 9 participants
- 39111 discussions
[Phpmyadmin-git] [SCM] phpMyAdmin themes branch, master, updated. 657386a0f4b14e7220e32a9f041e00a5267a895e
by Michal Čihař 02 Mar '11
by Michal Čihař 02 Mar '11
02 Mar '11
The branch, master has been updated
via 657386a0f4b14e7220e32a9f041e00a5267a895e (commit)
from 34e783554cb5056bdb7ff649a5c1b93d0a93f609 (commit)
- Log -----------------------------------------------------------------
commit 657386a0f4b14e7220e32a9f041e00a5267a895e
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Mar 2 09:59:47 2011 +0100
Add script for making theme releases
-----------------------------------------------------------------------
Summary of changes:
create-release.sh | 90 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 90 insertions(+), 0 deletions(-)
create mode 100755 create-release.sh
diff --git a/create-release.sh b/create-release.sh
new file mode 100755
index 0000000..1660713
--- /dev/null
+++ b/create-release.sh
@@ -0,0 +1,90 @@
+#!/bin/sh
+
+set -e
+
+usage() {
+ echo 'Usage: create-release.sh dir [--tag] [--upload USERNAME]'
+ echo
+ echo 'Creates a zip for themes download and optionally tags the git tree and uploads to sf.net'
+}
+
+if [ "x$1" = "x-h" -o "x$1" = "x--help" ] ; then
+ usage
+ exit 0
+fi
+if [ $# -eq 0 ] ; then
+ usage
+ exit 1
+fi
+
+THEME="${1%/}"
+if [ ! -d "$THEME" ] ; then
+ echo "Directory $THEME does not exist!"
+ exit 2
+fi
+
+shift
+
+TAG=0
+UPLOAD=0
+
+while [ $# -gt 0 ] ; do
+ case "$1" in
+ --tag)
+ TAG=1
+ shift
+ ;;
+ --upload)
+ UPLOAD=1
+ shift
+ UPLOAD_USER="$1"
+ if [ -z "$UPLOAD_USER" ] ; then
+ echo "Missing sf.net username for upload!"
+ usage
+ exit 1
+ fi
+ shift
+ ;;
+ *)
+ echo "Unknown parameter: $1"
+ usage
+ exit 1
+ ;;
+ esac
+done
+
+VERSION=`php -r "include '$THEME/info.inc.php'; echo \\\$theme_full_version;"`
+NAME=$THEME-$VERSION
+
+echo "Creating release for $THEME $VERSION ($NAME)"
+
+mkdir -p release
+
+rm -rf release/$NAME* release/$THEME
+
+cp -r $THEME release/$THEME
+
+cd release
+
+7za a -bd -tzip $NAME.zip $THEME
+
+cd ..
+
+echo "Release files:"
+ls -la release/$NAME.zip
+
+if [ $TAG -eq 1 ] ; then
+ git tag -a -m "Tagging release of theme $THEME $VERSION" $NAME
+fi
+
+if [ $UPLOAD -eq 1 ] ; then
+ sftp $UPLOAD_USER,phpmyadmin(a)frs.sourceforge.net <<EOT
+cd /home/frs/project/p/ph/phpmyadmin/themes
+mkdir $THEME
+cd $THEME
+mkdir $VERSION
+cd $VERSION
+put release/$NAME.zip
+EOT
+fi
+
hooks/post-receive
--
phpMyAdmin themes
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin website branch, master, updated. 53dd297c4898930c867207c8d570c0f75b56e92f
by Michal Čihař 02 Mar '11
by Michal Čihař 02 Mar '11
02 Mar '11
The branch, master has been updated
via 53dd297c4898930c867207c8d570c0f75b56e92f (commit)
via af1df158d3194990d85cd2827d242e42f359401d (commit)
via b1f8492219e55b3d55f7d05f0480f4c38d011534 (commit)
from 8bb36915481b1da516ac81e1155ac2e1af93dc1c (commit)
- Log -----------------------------------------------------------------
commit 53dd297c4898930c867207c8d570c0f75b56e92f
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Mar 2 10:08:43 2011 +0100
Add screenshots for 3.4 themes
commit af1df158d3194990d85cd2827d242e42f359401d
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Mar 2 10:08:30 2011 +0100
Add definition for 3.4 themes
commit b1f8492219e55b3d55f7d05f0480f4c38d011534
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Mar 2 10:00:33 2011 +0100
Add support for 3.4 themes
-----------------------------------------------------------------------
Summary of changes:
data/themes.py | 22 +++++++++++++++++++++-
images/themes/darkblue_orange.png | Bin 0 -> 52169 bytes
images/themes/graphite.png | Bin 0 -> 48301 bytes
images/themes/toba.png | Bin 0 -> 80503 bytes
4 files changed, 21 insertions(+), 1 deletions(-)
create mode 100644 images/themes/darkblue_orange.png
create mode 100644 images/themes/graphite.png
create mode 100644 images/themes/toba.png
diff --git a/data/themes.py b/data/themes.py
index 6204e8e..9adb84b 100644
--- a/data/themes.py
+++ b/data/themes.py
@@ -188,7 +188,25 @@ THEMES = {
'support' : '3.3',
'info': u'Clean, modern and easy to use phpMyAdmin theme.',
'author': 'Mike Homme',
- }
+ },
+ 'toba-0.1' : {
+ 'name' : 'Toba',
+ 'support' : '3.4',
+ 'info' : u'Light blue theme',
+ 'author': u'Azhari Harahap',
+ },
+ 'graphite-0.9' : {
+ 'name' : 'Graphite',
+ 'support' : '3.4',
+ 'info' : u'Light grey theme using Tango icons',
+ 'author': u'Michal Čihař',
+ },
+ 'darkblue_orange-2.9' : {
+ 'name' : 'Darkblue/orange',
+ 'support' : '3.4',
+ 'info' : u'Theme included in phpMyAdmin up to 3.3',
+ 'author': u'Various contributors',
+ },
}
TEMPLATE = {
'' : {
@@ -216,6 +234,7 @@ CSSMAP = {
'3.0 - 3.3' : 'pma_3_0 pma_3_1 pma_3_2 pma_3_3',
'3.1 - 3.2' : 'pma_3_1 pma_3_2',
'3.3' : 'pma_3_3',
+ '3.4' : 'pma_3_4',
}
CSSVERSIONS = [
@@ -225,4 +244,5 @@ CSSVERSIONS = [
{'name': '3.1', 'css': 'pma_3_1'},
{'name': '3.2', 'css': 'pma_3_2'},
{'name': '3.3', 'css': 'pma_3_3'},
+ {'name': '3.4', 'css': 'pma_3_4'},
]
diff --git a/images/themes/darkblue_orange.png b/images/themes/darkblue_orange.png
new file mode 100644
index 0000000..3103c8d
Binary files /dev/null and b/images/themes/darkblue_orange.png differ
diff --git a/images/themes/graphite.png b/images/themes/graphite.png
new file mode 100644
index 0000000..2db5f1f
Binary files /dev/null and b/images/themes/graphite.png differ
diff --git a/images/themes/toba.png b/images/themes/toba.png
new file mode 100644
index 0000000..5a9f969
Binary files /dev/null and b/images/themes/toba.png differ
hooks/post-receive
--
phpMyAdmin website
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. 5017ed4ba931b0d4ddbec5e34a92115737ef8c71
by Michal Čihař 01 Mar '11
by Michal Čihař 01 Mar '11
01 Mar '11
The branch, master has been updated
via 5017ed4ba931b0d4ddbec5e34a92115737ef8c71 (commit)
from eaa96ec1dfcff0d08c6cf69490da6e73d870d99f (commit)
- Log -----------------------------------------------------------------
commit 5017ed4ba931b0d4ddbec5e34a92115737ef8c71
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Wed Mar 2 00:24:49 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/tr.po | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/po/tr.po b/po/tr.po
index 7f70629..e0de04a 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-02-19 23:00+0100\n"
-"PO-Revision-Date: 2011-02-28 12:24+0200\n"
+"PO-Revision-Date: 2011-03-02 00:24+0200\n"
"Last-Translator: Burak Yavuz <hitowerdigit(a)hotmail.com>\n"
"Language-Team: none\n"
"Language: tr\n"
@@ -1959,7 +1959,7 @@ msgid ""
"authentication modes" for more information."
msgstr ""
"Lütfen daha fazla bilgi için "Kimlik doğrulama kipleri "
-"kullanımı"'nda <a href=\"#setup\">kur bölümü</a>'ne bakın."
+"kullanımı"nda <a href=\"#setup\">kur bölümü</a>'ne bakın."
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:734
hooks/post-receive
--
phpMyAdmin localized documentation
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA3-1748-g5d0b685
by Michal Čihař 01 Mar '11
by Michal Čihař 01 Mar '11
01 Mar '11
The branch, master has been updated
via 5d0b685d74b5912301aa595b9e99e8d25f80425b (commit)
via e3db72428ad3a7c8287c2d6d670d59d221e8ec43 (commit)
via c9410ed7ac5b1d227728a4b525f462f1ffd13f4b (commit)
via 60ce9dcfd43da8d2d543d5bea07355e1389ad1a8 (commit)
via da2a487fb19ac63f4f01e23fe05986aa5ab8a808 (commit)
via 9b97169285dc4c3b25b9e0444ccfb4538f861774 (commit)
via 73197ed6d7a4b379e900c73090c413e767ba279b (commit)
via 02d4e23b64d4597221c43ed00a109b5eee0fd329 (commit)
via 155e7ba9fa577f091e86411e444aa5e4b5998b7b (commit)
via acd446e3556eda8b9cae859e60e5efd8af07fd0e (commit)
via c2f4a8c84c322c541d93c48c7d1ae9ef4143720a (commit)
via e4b50345102c2c8d89e2d44be964b5005424f645 (commit)
via 945736dce4a21bc078ad8787cd8add23b63a4847 (commit)
via 14f5cf4b9637950d81e45fd9f6033ae7102a665c (commit)
via d3e034eb45bd896481fc7a48f40c15d805a6ba62 (commit)
via bd33e411871729796cefc73881eba6d0d2bb06ce (commit)
via da4b73fced1630c760640ef873728cf53041e48f (commit)
via 24e0d11912aa10414e4329dad975f1888c4148d8 (commit)
via 7849347cf30827eae6db8d2506c0af8afe942e6d (commit)
via b3ecf550b900b35ddada133d62baf281b7da4a6a (commit)
via 959d214bdf1047b1e69c4828dfe2a349a91fcfdb (commit)
via fe54ea291d3ed960ce5cb768446287b98a167ac6 (commit)
via c124c913e4d784ae7e7eae10715be26fb2a4ce44 (commit)
via c7e03dfd6bd105cbcd0eb05c39b770283b79f5c9 (commit)
via cf21a55d87fa6ddae0ab2ad4a7065864fef98a35 (commit)
via 1f4d68ee62a69f8a37b41de6f21e896d9baf3304 (commit)
via 4d1aaea80b27aef30d7e3581655ee6e890ffab93 (commit)
via 8149d709157172f9dc05723fe8a44a4fc8fd319b (commit)
via a7d777a5e45a16b4fe4b885bf609aec270dce750 (commit)
via 00013c2efd2cbd771bb23cd82bee861d31cd7b2b (commit)
via 3496dded6a4432f31a956a70229a8cc9e6da989a (commit)
via 2647b2607130c297d3d0d03f6c9ae5137bf59d6c (commit)
via a5b6ca2a58616de103e6b1a56bbd3b3b75136823 (commit)
via 41bea3b25d6defb36441bfbf06bbd3a709bbaf79 (commit)
via 9b7913e6e8daa5aa6ce4f86c7e8833c0d2f19e8a (commit)
via 5cf8508f835e4ee969d18bcdf2e74bf169cac11f (commit)
via ef6777a3b8740bca7ba76c983063f588a3de8e99 (commit)
via a20062343ef5280045dea4a4b9125c2f0d496156 (commit)
via 538cb2e7ce48f82fa872a4b7c6fe5182a7586e73 (commit)
via 23b807bd711fa7eeb151b60e62b05787ba8f31f1 (commit)
via 3cb6ec53a011ad512e99123a4c1a5a0eebe0fdab (commit)
via 471137e2247134e7fe96fc7bd351320ad9ec6026 (commit)
via ffe417ae45774b16b2d494cc7461e64eb7246ee6 (commit)
via faf8e7df9f3ff80ef7c43b50294369ed694887a0 (commit)
via 397bd8a61d184fd5864102a1578fce7bf5ac383d (commit)
via 8fa65c459cadd7593d3ed0af4aa6254c905a573d (commit)
via 567949085dda3bd4c065c898ab16d9b36ce332d9 (commit)
via c9adcfada17ea0548e81d9baf69adbb2b4c18cb9 (commit)
via 1d9907f7a806c6ecbf193b917128c35fbbff9a90 (commit)
via d52be5549c61a3098988b19f118afd4d8ea94787 (commit)
via bfe37a58a5cc0c0dc8b6620016ac633e35e2110c (commit)
via c75ad1e76b36cde0938e9511bdf27e42a6cbede2 (commit)
via a6baa37934215ce915178fa60decc66c668598be (commit)
via b1fcdeb4619211a4579685f0a7d26fceadca4562 (commit)
via 2f7c7aaf669bedacbb0a06f2141919c72a0c18ec (commit)
via 6fee4b92faf44fe391b9cd287cb3921882bb96be (commit)
via 4b412b4b36c2708d2d8d4f1e59bb59ad33fdba51 (commit)
via 093131d034102d3bb87dee287c76795d20112cb5 (commit)
via cdd898bb90a740e37d7c4813700dd1e0902b9ccb (commit)
via 0f0f80b7d54e71e5977b03054d233c72027894f2 (commit)
via 42eb27cbef356fee2e4c4ed8fb249babb6be6a03 (commit)
via 96483a6e8967db3b7739fd06297420eaf757ded8 (commit)
via 7d9dc5f07e3ab9272180af050dd442b5a9165be2 (commit)
via 103317ea2da67a4bf99362564b8a27762075210d (commit)
via d939dd87d99042c9553c36d2ea536a39d1ba5cf6 (commit)
via 0538142b385080954d42c3206e713a9ec8897ce4 (commit)
via 833b0b98f01dde4f4e35db3f1f97f35ce5da08ca (commit)
via 0eb21f75ea49398a4d2ff5211219e1b99d351dc8 (commit)
via 521a389dc54bfee511426a137025b8366dcde803 (commit)
via 2d9412f2820063d304ff625653ce833ff8914ea7 (commit)
via 9d314531f17931654ebd8d40db5fb654c131807b (commit)
via 15cb1c1689ec88d43865547c515e72a2fd0ad2d6 (commit)
via b7dc2b76e0c65864085e99db3dd5e6cca94811c4 (commit)
via dbf2e6e9a7a930dc2903ce4171c53e3d2b205126 (commit)
via 236cdbb36a1e14d65178bf038ece81c15bc91386 (commit)
via df3cde6c02718a66e52486e174b21019cc473b2d (commit)
via 9ea9a503b71fc296cf102db55ec877a7373eeccf (commit)
via ae61e86e587b5af865ef1fc4506f942e676cdd9c (commit)
via bf177e3a04bfe850b3d1738c9e7c3d2a1bb40a71 (commit)
via 799f23c904a72667a5f4b2851795d56ad1509a2b (commit)
via d57ed82abb41aa3cc1d544530d6a0d612700d2fe (commit)
via 6bf96ca9d43afe294f4345d5914683b8a200e412 (commit)
via 371de537c8644706c966c99ebabe81dfef6130bb (commit)
via 48e8946acee1e2e0b55ba946e827b0ec49db57d2 (commit)
via 775398496034490a1df958db50638e04a52ae02a (commit)
via 2eb8011dc901ac27dc9b0d3668bddee25104fe2a (commit)
via 8a138c366f69bb6f84dba5ef4eb8abc8227a4c1e (commit)
via 56aa3bd7cfa0bb61b6f78fe1ed6c4a857e3bec86 (commit)
via 34a28b76753c873db8761a81142625ff6275f7d6 (commit)
via c251f3a024556707c8df151ebfbae1abe3a14063 (commit)
via 48fec1500311e47c011144a79382290011183f51 (commit)
via 50974c7646fc21fe69184b0c5b40eb8a11ae092b (commit)
via a23b8e869666775a69518b60302ca316f664b555 (commit)
via 57dce536c30ac4e675040c8e84732d8ec1a0debf (commit)
via 8a2bac4f9e0b4e27c0e981bbee60a340ef2707c5 (commit)
via dd1318ef664b94ddfb48a4a29f406ac4996b887f (commit)
via c42ece4bde5c30799a36acadd697d6f4ff0b4c3e (commit)
via c809b67c412253abebdec82bceccaadf6fbd6ae5 (commit)
via da9c73a68fbb487ef5e4156e1c9e2ac0ac6a990c (commit)
via cc8f34c056648bee10a78b183a71d12dedbee955 (commit)
via 1711f1b029fb188adf94343d15879b935d7c4615 (commit)
via 510276adbd4a8f87933451c0fddd833eee918324 (commit)
via 6791cf874d0247b3a510e487eba5bb94e7d65190 (commit)
via abf790ce2e88b2035501151ea33730b97cd2d2a1 (commit)
via 4851ad905fa18802ea88b00d851a3ee8aae8ca44 (commit)
via 1671513440c0ee97531ba560bab69471e6eb11fb (commit)
via cb7ac103d3c0f12e718afb3442adadff9321f215 (commit)
via ac6cb063eb4a062330ad9628225946f82df86644 (commit)
via e79e05390e79808f0e0bf119b83155971be9432f (commit)
via c39c953a2a85b2934bed5b3fffe5f3744c3dfb5b (commit)
via 7d314f00544b77811e872fcfba6d1a794b5edf35 (commit)
via c1bb82e883b4ab2201cbb147fe873919a14e3e10 (commit)
via af06ad621d9a82d5f86bda2dba6367aa0cbdb5d2 (commit)
via fc9ad41326ef72cb8654070a4876812c2543bd02 (commit)
via dd0c883ad62c5d4efcffdb75c905001acceb285e (commit)
via fc9985d52900c98f27d4041d17d84ad9cedcb0b5 (commit)
via 0e065edddee55b48bdd0c8bb63dc50cda1128f91 (commit)
via ce2df3261e1d606071157d011e7505e23da8de63 (commit)
via 0d2687014e3e88ebd26409684cce8607b835faf3 (commit)
via afdee412d74a10db51b421c081bcc1449487ad06 (commit)
via 7170079255b5e892850becc08391ae6b19ef1d6e (commit)
via e20011e436d785aa1c1f7725573b73eea5f05f89 (commit)
via bc2eab7ddb6cbaea329a092706264ef11c4a5bbf (commit)
via 6b42aac232201085852b933ee6622981a8e522ac (commit)
via 162c5d62e8659a5b2ef994e75312f1c38b6e12bf (commit)
via 37e9d4219df9068bd3882073ad29ee62592a063b (commit)
via c1604b73d498d642b9b3c6d36eca7d019c9feca9 (commit)
via e0f793d846e6b40ac56ad134f1a3b1efacfc387c (commit)
via eb0b704cadc1406ac68b003fdc1865a1935f7658 (commit)
via 5039cd85e635af458be283c738f532766c7c65e9 (commit)
via b6d92689bb3430b4ba34b68489000827390379fd (commit)
via 46b9582b90525510142185a43b1537871a1f3d88 (commit)
via 1cfd970c073cb826026488e299197ee4232c20da (commit)
via 9cdb7646248e91a9d57fcee13fc76bd7e122aac8 (commit)
via cfe51fdbaae4bea97aef5b0d12bfb6dfc0250294 (commit)
via 3d52483801b1fe04f5fb3ed0c6ace2e35541f997 (commit)
via 49ea233e65ce05b2796329a96162924140c9ebfa (commit)
via 16e4ade007c8910121c5e676c1d693f960401fc6 (commit)
via e887be488267d69cc4026530f8b9727e268418d9 (commit)
via 900aaf2b0a578bbf584aaa7a2a8137a84a2ce71c (commit)
via 8fb8ba0def24bdb625b2bac90ea7cc37d679a261 (commit)
via 043a9807a935dae7c1c8b99ab036ff6c71c1ed14 (commit)
via 13814821fac1ec3562acab1abd3e4e04419d425d (commit)
via 53df7154f2bb4a8c43b023bf41cf11025ccad47b (commit)
via 0e1c781d51aad5b15a0b0ab67591b9e4ca29bdd2 (commit)
via 4b9e009caf0c15d0887bcc7c34afb752f6834c2b (commit)
via ccaf2fe16f804307e726342810773d88fc494161 (commit)
via f0186983cc3a43ff37e35c5b32273446d6aaf59b (commit)
via 99afad04b1418e87b9151a0f82b1fa5e0be84c28 (commit)
via cffc524c4d9f753cd5e4e4a57c6d39551624fcdc (commit)
via 8da264608e0e95c253e6c1b69dbd5b039b3834c8 (commit)
via c71d4daf6482b1f226063bfde9284144e002713d (commit)
via ced6f28444bac6ce76ae3d784bdbb923fc101584 (commit)
via 042a29f4e4c14615d8e707a63e336da9b6a67764 (commit)
via fb88d5ac7e626277c589d87c11ed13f6b118a06f (commit)
via 19eef86fbb8ec866db496efe4cc3dbaf8fea9b1e (commit)
via 956fb6099e54d14a220e683debab0d4de39f74e7 (commit)
via 68dd93c95f17fcd3b1164e2ead1400322576594e (commit)
via d7dd710dffe8eaa6c32275cdc9b1486fc9224351 (commit)
via c825c227c179c4609ac2a4b1836957383534a2c0 (commit)
via 18bd1a069e3849ba5f1db791bff4f33247cc9f8b (commit)
via 653994fb005a3564d95c0c0640316e89fa47c6b3 (commit)
via 216e7d24acc348aaacaf564e9cc0cb35ec39aa40 (commit)
via 83d9c1d41a1ac9db1098a45d9a79e695b371932b (commit)
via 71af416145f8f59cc19748b68996b71575079cb9 (commit)
via 4c2ef2fe7f9d441fd86c38330886e57aa3fbc8b4 (commit)
via c0f3ec581a09b1d4c0924a4c0624f6411b4b2160 (commit)
from abfb718c89c7e68ecb5e5c25c55d426c449d9883 (commit)
- Log -----------------------------------------------------------------
commit 5d0b685d74b5912301aa595b9e99e8d25f80425b
Merge: e3db72428ad3a7c8287c2d6d670d59d221e8ec43 73197ed6d7a4b379e900c73090c413e767ba279b
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Mar 1 17:19:28 2011 +0100
Merge remote-tracking branch 'pootle/master'
commit e3db72428ad3a7c8287c2d6d670d59d221e8ec43
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Mar 1 16:42:49 2011 +0100
Changelog entry
commit c9410ed7ac5b1d227728a4b525f462f1ffd13f4b
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Mar 1 16:41:52 2011 +0100
pmahomme is now default theme
commit 60ce9dcfd43da8d2d543d5bea07355e1389ad1a8
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Mar 1 16:41:30 2011 +0100
Drop darkblue_orange theme
commit da2a487fb19ac63f4f01e23fe05986aa5ab8a808
Merge: 02d4e23b64d4597221c43ed00a109b5eee0fd329 9b97169285dc4c3b25b9e0444ccfb4538f861774
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Mar 1 16:40:46 2011 +0100
Merge branch 'themes-integration'
Conflicts:
.gitignore
commit 9b97169285dc4c3b25b9e0444ccfb4538f861774
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Mar 1 16:37:12 2011 +0100
Prepare for mergin pmahomme
commit 73197ed6d7a4b379e900c73090c413e767ba279b
Merge: 155e7ba9fa577f091e86411e444aa5e4b5998b7b abfb718c89c7e68ecb5e5c25c55d426c449d9883
Author: Pootle server <pootle(a)cihar.com>
Date: Tue Mar 1 16:40:06 2011 +0100
Merge remote-tracking branch 'origin/master'
commit 02d4e23b64d4597221c43ed00a109b5eee0fd329
Merge: 155e7ba9fa577f091e86411e444aa5e4b5998b7b abfb718c89c7e68ecb5e5c25c55d426c449d9883
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Mar 1 16:32:01 2011 +0100
Merge remote-tracking branch 'origin/master'
commit 155e7ba9fa577f091e86411e444aa5e4b5998b7b
Merge: acd446e3556eda8b9cae859e60e5efd8af07fd0e 3400dddadd34963b0322646022cafb5855260d23
Author: Pootle server <pootle(a)cihar.com>
Date: Tue Mar 1 14:40:04 2011 +0100
Merge remote-tracking branch 'origin/master'
commit acd446e3556eda8b9cae859e60e5efd8af07fd0e
Author: Dieter Adriaenssens <ruleant(a)users.sourceforge.net>
Date: Tue Mar 1 14:26:21 2011 +0200
Translation update done using Pootle.
commit c2f4a8c84c322c541d93c48c7d1ae9ef4143720a
Author: paalfe <paalfe(a)gmail.com>
Date: Tue Mar 1 13:57:10 2011 +0200
Translation update done using Pootle.
commit e4b50345102c2c8d89e2d44be964b5005424f645
Author: paalfe <paalfe(a)gmail.com>
Date: Tue Mar 1 13:56:25 2011 +0200
Translation update done using Pootle.
commit 945736dce4a21bc078ad8787cd8add23b63a4847
Author: Michal Čihař <mcihar(a)novell.com>
Date: Thu Feb 17 16:19:51 2011 +0100
Optimize images
commit 14f5cf4b9637950d81e45fd9f6033ae7102a665c
Author: Michal Čihař <mcihar(a)novell.com>
Date: Thu Feb 17 16:19:36 2011 +0100
New theme (themes#3184464)
commit d3e034eb45bd896481fc7a48f40c15d805a6ba62
Author: Michal Čihař <mcihar(a)novell.com>
Date: Thu Feb 17 10:52:03 2011 +0100
Fix placement of logo in some browsers
commit bd33e411871729796cefc73881eba6d0d2bb06ce
Merge: da4b73fced1630c760640ef873728cf53041e48f 959d214bdf1047b1e69c4828dfe2a349a91fcfdb
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Feb 15 09:29:36 2011 +0100
Merge remote branch 'toba/master'
commit da4b73fced1630c760640ef873728cf53041e48f
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 14 15:43:37 2011 +0100
Update screenshots
commit 24e0d11912aa10414e4329dad975f1888c4148d8
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 14 10:52:16 2011 +0100
Remove not used images
commit 7849347cf30827eae6db8d2506c0af8afe942e6d
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 14 10:49:13 2011 +0100
Convert to unix end of lines
commit b3ecf550b900b35ddada133d62baf281b7da4a6a
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 14 10:48:26 2011 +0100
Updated theme
commit 959d214bdf1047b1e69c4828dfe2a349a91fcfdb
Author: Azhari Harahap <blackarazi(a)gmail.com>
Date: Sun Feb 13 22:55:13 2011 +0700
topmenu hover fix, left frame icon fix, submenu/topmenu2 fix, table header on insert color fix
commit fe54ea291d3ed960ce5cb768446287b98a167ac6
Author: Michal Čihař <mcihar(a)novell.com>
Date: Thu Feb 10 13:57:37 2011 +0100
Better formatting for toggle SQL query link.
commit c124c913e4d784ae7e7eae10715be26fb2a4ce44
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Feb 9 10:25:59 2011 +0100
Optimize jquery images
commit c7e03dfd6bd105cbcd0eb05c39b770283b79f5c9
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Feb 9 10:24:55 2011 +0100
Optimize images
commit cf21a55d87fa6ddae0ab2ad4a7065864fef98a35
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Feb 9 10:24:20 2011 +0100
Update pmahomme theme
commit 1f4d68ee62a69f8a37b41de6f21e896d9baf3304
Merge: 4d1aaea80b27aef30d7e3581655ee6e890ffab93 538cb2e7ce48f82fa872a4b7c6fe5182a7586e73
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Feb 8 20:09:40 2011 +0100
Merge remote branch 'toba/master'
commit 4d1aaea80b27aef30d7e3581655ee6e890ffab93
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Feb 8 19:52:52 2011 +0100
No hover for table title
commit 8149d709157172f9dc05723fe8a44a4fc8fd319b
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Feb 8 19:51:52 2011 +0100
Hovering using CSS only
commit a7d777a5e45a16b4fe4b885bf609aec270dce750
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Feb 8 19:50:32 2011 +0100
Not needed
commit 00013c2efd2cbd771bb23cd82bee861d31cd7b2b
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Feb 8 19:49:34 2011 +0100
Even more over/even/odd simplify
commit 3496dded6a4432f31a956a70229a8cc9e6da989a
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Feb 8 19:47:24 2011 +0100
Simplify hover CSS
commit 2647b2607130c297d3d0d03f6c9ae5137bf59d6c
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Feb 8 19:38:34 2011 +0100
More visible pointer background
commit a5b6ca2a58616de103e6b1a56bbd3b3b75136823
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Feb 8 15:55:37 2011 +0100
Optimize screenshots.
In some cases the image could be 40% size.
commit 41bea3b25d6defb36441bfbf06bbd3a709bbaf79
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Feb 8 10:16:32 2011 +0100
Simplify some CSS selectors
commit 9b7913e6e8daa5aa6ce4f86c7e8833c0d2f19e8a
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Feb 8 10:16:23 2011 +0100
This calendar is not used, can safely remove CSS
commit 5cf8508f835e4ee969d18bcdf2e74bf169cac11f
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Feb 8 10:12:43 2011 +0100
Optimize
commit ef6777a3b8740bca7ba76c983063f588a3de8e99
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Feb 8 10:09:06 2011 +0100
Optimize screenshot as well
commit a20062343ef5280045dea4a4b9125c2f0d496156
Author: Michal Čihař <mcihar(a)novell.com>
Date: Tue Feb 8 09:33:51 2011 +0100
Optimize images even more.
commit 538cb2e7ce48f82fa872a4b7c6fe5182a7586e73
Author: Azhari Harahap <blackarazi(a)gmail.com>
Date: Tue Feb 8 12:55:36 2011 +0700
fix more button issue
commit 23b807bd711fa7eeb151b60e62b05787ba8f31f1
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Feb 7 22:08:44 2011 +0100
Icon for font size selection on main page
commit 3cb6ec53a011ad512e99123a4c1a5a0eebe0fdab
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Feb 7 22:06:32 2011 +0100
Icon for color selection on main page
commit 471137e2247134e7fe96fc7bd351320ad9ec6026
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 7 16:28:10 2011 +0100
pngcrush images
commit ffe417ae45774b16b2d494cc7461e64eb7246ee6
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 7 16:26:31 2011 +0100
Drop unused Tango icons
commit faf8e7df9f3ff80ef7c43b50294369ed694887a0
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 7 16:26:07 2011 +0100
Do not use symlinks
commit 397bd8a61d184fd5864102a1578fce7bf5ac383d
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 7 16:21:54 2011 +0100
Remove biger images
commit 8fa65c459cadd7593d3ed0af4aa6254c905a573d
Merge: d52be5549c61a3098988b19f118afd4d8ea94787 567949085dda3bd4c065c898ab16d9b36ce332d9
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 7 16:12:19 2011 +0100
Merge remote branch 'graphite/master'
commit 567949085dda3bd4c065c898ab16d9b36ce332d9
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 7 16:11:22 2011 +0100
Move to folder
commit c9adcfada17ea0548e81d9baf69adbb2b4c18cb9
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 7 16:10:48 2011 +0100
Add screenshot
commit 1d9907f7a806c6ecbf193b917128c35fbbff9a90
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 7 16:10:43 2011 +0100
Add README
commit d52be5549c61a3098988b19f118afd4d8ea94787
Merge: c809b67c412253abebdec82bceccaadf6fbd6ae5 bfe37a58a5cc0c0dc8b6620016ac633e35e2110c
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 7 15:51:19 2011 +0100
Merge branch 'toba'
commit bfe37a58a5cc0c0dc8b6620016ac633e35e2110c
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 7 15:51:02 2011 +0100
Rename to match themes git status
commit c75ad1e76b36cde0938e9511bdf27e42a6cbede2
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 7 15:45:58 2011 +0100
Add index icon
commit a6baa37934215ce915178fa60decc66c668598be
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 7 15:45:46 2011 +0100
Add stats icon.
commit b1fcdeb4619211a4579685f0a7d26fceadca4562
Author: Azhari Harahap <blackarazi(a)gmail.com>
Date: Mon Feb 7 21:17:43 2011 +0700
clear color, change inline edit icon, fix table header color
commit 2f7c7aaf669bedacbb0a06f2141919c72a0c18ec
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 7 13:34:06 2011 +0100
Make disabled actions look more like a disabled
commit 6fee4b92faf44fe391b9cd287cb3921882bb96be
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 7 13:20:07 2011 +0100
Image for analyze
commit 4b412b4b36c2708d2d8d4f1e59bb59ad33fdba51
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 7 13:17:39 2011 +0100
Fix font color
commit 093131d034102d3bb87dee287c76795d20112cb5
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 7 13:09:28 2011 +0100
Add icon for relations
commit cdd898bb90a740e37d7c4813700dd1e0902b9ccb
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 7 13:00:33 2011 +0100
Sort arrows
commit 0f0f80b7d54e71e5977b03054d233c72027894f2
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 7 12:57:14 2011 +0100
Not used
commit 42eb27cbef356fee2e4c4ed8fb249babb6be6a03
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 7 12:50:58 2011 +0100
We don't use this
commit 96483a6e8967db3b7739fd06297420eaf757ded8
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 7 11:05:06 2011 +0100
Not used image (if logo_left.png exists)
commit 7d9dc5f07e3ab9272180af050dd442b5a9165be2
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 7 11:02:08 2011 +0100
Add sqlhelp image, based on x-office-address-book.png
commit 103317ea2da67a4bf99362564b8a27762075210d
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 7 10:44:55 2011 +0100
Add b_info.png (based on b_help.png)
commit d939dd87d99042c9553c36d2ea536a39d1ba5cf6
Author: Michal Čihař <michal(a)cihar.com>
Date: Sat Feb 5 15:44:06 2011 +0100
Same look as other boxes
commit 0538142b385080954d42c3206e713a9ec8897ce4
Author: Michal Čihař <michal(a)cihar.com>
Date: Sat Feb 5 15:39:07 2011 +0100
Better look of title page
commit 833b0b98f01dde4f4e35db3f1f97f35ce5da08ca
Author: Michal Čihař <michal(a)cihar.com>
Date: Thu Feb 3 13:52:53 2011 +0100
Better look of More menu in table structure
commit 0eb21f75ea49398a4d2ff5211219e1b99d351dc8
Author: Michal Čihař <michal(a)cihar.com>
Date: Thu Feb 3 13:36:49 2011 +0100
Do not wrap size, it looks better at one line.
commit 521a389dc54bfee511426a137025b8366dcde803
Author: Michal Čihař <michal(a)cihar.com>
Date: Wed Feb 2 23:26:03 2011 +0100
Remove useless margin
commit 2d9412f2820063d304ff625653ce833ff8914ea7
Author: Michal Čihař <michal(a)cihar.com>
Date: Wed Feb 2 23:22:44 2011 +0100
Make disabled links look disabled
commit 9d314531f17931654ebd8d40db5fb654c131807b
Author: Michal Čihař <michal(a)cihar.com>
Date: Wed Feb 2 23:18:01 2011 +0100
Really make More submenu work
commit 15cb1c1689ec88d43865547c515e72a2fd0ad2d6
Author: Michal Čihař <michal(a)cihar.com>
Date: Wed Feb 2 23:17:48 2011 +0100
More space around menu
commit b7dc2b76e0c65864085e99db3dd5e6cca94811c4
Author: Michal Čihař <michal(a)cihar.com>
Date: Wed Feb 2 23:03:08 2011 +0100
Fix submenu layout
commit dbf2e6e9a7a930dc2903ce4171c53e3d2b205126
Author: Michal Čihař <michal(a)cihar.com>
Date: Wed Feb 2 22:45:53 2011 +0100
Styling for top menu
commit 236cdbb36a1e14d65178bf038ece81c15bc91386
Author: Michal Čihař <michal(a)cihar.com>
Date: Wed Feb 2 22:08:48 2011 +0100
Space after tools
commit df3cde6c02718a66e52486e174b21019cc473b2d
Author: Michal Čihař <michal(a)cihar.com>
Date: Wed Feb 2 22:08:07 2011 +0100
Fix typo
commit 9ea9a503b71fc296cf102db55ec877a7373eeccf
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Feb 2 21:57:54 2011 +0100
Change theme name.
commit ae61e86e587b5af865ef1fc4506f942e676cdd9c
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Feb 2 16:42:07 2011 +0100
Do not overflow buttons to the messages
commit bf177e3a04bfe850b3d1738c9e7c3d2a1bb40a71
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Feb 2 16:36:07 2011 +0100
Optimize
commit 799f23c904a72667a5f4b2851795d56ad1509a2b
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Feb 2 16:31:00 2011 +0100
Fix a inside table caption
commit d57ed82abb41aa3cc1d544530d6a0d612700d2fe
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Feb 2 16:28:11 2011 +0100
Fix page with more fieldsets
commit 6bf96ca9d43afe294f4345d5914683b8a200e412
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Feb 2 16:28:01 2011 +0100
Fix th display when inside table
commit 371de537c8644706c966c99ebabe81dfef6130bb
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Feb 2 16:23:16 2011 +0100
Make front page readable
commit 48e8946acee1e2e0b55ba946e827b0ec49db57d2
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Feb 2 16:21:17 2011 +0100
Better color for pointer
commit 775398496034490a1df958db50638e04a52ae02a
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Feb 2 16:21:05 2011 +0100
Make fieldsets look like other boxes.
commit 2eb8011dc901ac27dc9b0d3668bddee25104fe2a
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Feb 2 15:30:56 2011 +0100
full/partial texts
commit 8a138c366f69bb6f84dba5ef4eb8abc8227a4c1e
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Feb 2 15:23:34 2011 +0100
Fix display of actions on insert page
commit 56aa3bd7cfa0bb61b6f78fe1ed6c4a857e3bec86
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Feb 2 15:22:13 2011 +0100
Browse table headings
commit 34a28b76753c873db8761a81142625ff6275f7d6
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Feb 2 15:18:57 2011 +0100
Fix format of navigation bar
commit c251f3a024556707c8df151ebfbae1abe3a14063
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Feb 2 15:15:31 2011 +0100
Fix preferences display
commit 48fec1500311e47c011144a79382290011183f51
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Feb 2 15:11:37 2011 +0100
Fix color of in table elements
commit 50974c7646fc21fe69184b0c5b40eb8a11ae092b
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Feb 2 15:04:09 2011 +0100
Add some missing images
commit a23b8e869666775a69518b60302ca316f664b555
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Feb 2 14:16:20 2011 +0100
Some updates.
commit 57dce536c30ac4e675040c8e84732d8ec1a0debf
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Feb 2 13:40:24 2011 +0100
Border for messages
commit 8a2bac4f9e0b4e27c0e981bbee60a340ef2707c5
Author: Michal Čihař <mcihar(a)novell.com>
Date: Wed Feb 2 13:37:54 2011 +0100
Initial import
commit dd1318ef664b94ddfb48a4a29f406ac4996b887f
Author: Azhari Harahap <blackarazi(a)gmail.com>
Date: Wed Feb 2 16:06:18 2011 +0700
Add README
commit c42ece4bde5c30799a36acadd697d6f4ff0b4c3e
Author: Azhari Harahap <blackarazi(a)gmail.com>
Date: Wed Feb 2 15:58:18 2011 +0700
Initial commit
commit c809b67c412253abebdec82bceccaadf6fbd6ae5
Author: Marc Delisle <marc(a)infomarc.info>
Date: Tue Dec 28 07:41:53 2010 -0500
bug #3141350, Extra blank line
commit da9c73a68fbb487ef5e4156e1c9e2ac0ac6a990c
Author: Mike Homme <mikehomme(a)users.sourceforge.net>
Date: Tue Oct 26 11:59:00 2010 +0200
PMAhomme theme
commit cc8f34c056648bee10a78b183a71d12dedbee955
Author: Andy Scherzinger <andyscherzinger(a)users.sourceforge.net>
Date: Tue Jun 15 12:57:48 2010 -0400
Paradice 3.0b
commit 1711f1b029fb188adf94343d15879b935d7c4615
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sun Mar 7 12:38:50 2010 +0000
new theme
commit 510276adbd4a8f87933451c0fddd833eee918324
Author: Michal Čihař <michal(a)cihar.com>
Date: Wed Feb 24 08:36:04 2010 +0000
More fixes for themes.
commit 6791cf874d0247b3a510e487eba5bb94e7d65190
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Feb 22 15:46:06 2010 +0000
Adjust themes to make them work with current head.
commit abf790ce2e88b2035501151ea33730b97cd2d2a1
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat Jun 20 16:36:58 2009 +0000
in SESSION, userconf renamed to tmp_user_values to avoid confusion with the future db-based user preferences
commit 4851ad905fa18802ea88b00d851a3ee8aae8ca44
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon May 25 15:50:31 2009 +0000
paradice 3.0a
commit 1671513440c0ee97531ba560bab69471e6eb11fb
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon May 25 15:19:44 2009 +0000
update for 3.1-3.2
commit cb7ac103d3c0f12e718afb3442adadff9321f215
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat Jan 10 14:10:35 2009 +0000
new theme clearview3
commit ac6cb063eb4a062330ad9628225946f82df86644
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat Oct 25 15:00:37 2008 +0000
3.0 upgrade, thanks to Tim Golen
commit e79e05390e79808f0e0bf119b83155971be9432f
Author: Marc Delisle <marc(a)infomarc.info>
Date: Fri Oct 24 10:25:59 2008 +0000
3.0 update
commit c39c953a2a85b2934bed5b3fffe5f3744c3dfb5b
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat Aug 16 12:35:11 2008 +0000
correct screen image
commit 7d314f00544b77811e872fcfba6d1a794b5edf35
Author: Marc Delisle <marc(a)infomarc.info>
Date: Fri Aug 15 17:12:38 2008 +0000
Hillside
commit c1bb82e883b4ab2201cbb147fe873919a14e3e10
Author: Marc Delisle <marc(a)infomarc.info>
Date: Thu Aug 14 16:49:00 2008 +0000
2.11b
commit af06ad621d9a82d5f86bda2dba6367aa0cbdb5d2
Author: Marc Delisle <marc(a)infomarc.info>
Date: Thu Aug 14 16:35:30 2008 +0000
2.11d
commit fc9ad41326ef72cb8654070a4876812c2543bd02
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon May 12 16:27:54 2008 +0000
paradice 2.11e
commit dd0c883ad62c5d4efcffdb75c905001acceb285e
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon Mar 3 17:29:27 2008 +0000
fixed bug #1901687 (undefined variable 'type')
commit fc9985d52900c98f27d4041d17d84ad9cedcb0b5
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon Dec 24 13:42:59 2007 +0000
2.11d update
commit 0e065edddee55b48bdd0c8bb63dc50cda1128f91
Author: Sebastian Mendel <cybot_tm(a)users.sourceforge.net>
Date: Thu Dec 20 11:50:27 2007 +0000
updated
commit ce2df3261e1d606071157d011e7505e23da8de63
Author: Sebastian Mendel <cybot_tm(a)users.sourceforge.net>
Date: Thu Dec 20 11:25:58 2007 +0000
updated
commit 0d2687014e3e88ebd26409684cce8607b835faf3
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Dec 5 10:50:47 2007 +0000
grid 2.11c
commit afdee412d74a10db51b421c081bcc1449487ad06
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 28 18:05:42 2007 +0000
xampp theme update
commit 7170079255b5e892850becc08391ae6b19ef1d6e
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Nov 28 17:41:52 2007 +0000
2007-11-20 update
commit e20011e436d785aa1c1f7725573b73eea5f05f89
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Oct 17 12:02:43 2007 +0000
2.11b
commit bc2eab7ddb6cbaea329a092706264ef11c4a5bbf
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Oct 17 11:53:03 2007 +0000
2.11a
commit 6b42aac232201085852b933ee6622981a8e522ac
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Oct 17 11:39:41 2007 +0000
2.11c update
commit 162c5d62e8659a5b2ef994e75312f1c38b6e12bf
Author: Marc Delisle <marc(a)infomarc.info>
Date: Tue Oct 9 16:45:06 2007 +0000
new silkline
commit 37e9d4219df9068bd3882073ad29ee62592a063b
Author: Marc Delisle <marc(a)infomarc.info>
Date: Tue Oct 9 11:50:23 2007 +0000
update for 2.11
commit c1604b73d498d642b9b3c6d36eca7d019c9feca9
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sun Sep 23 20:47:36 2007 +0000
2.11b
commit e0f793d846e6b40ac56ad134f1a3b1efacfc387c
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat Sep 22 11:54:16 2007 +0000
for 2.11
commit eb0b704cadc1406ac68b003fdc1865a1935f7658
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon Sep 3 11:43:48 2007 +0000
2.11a
commit 5039cd85e635af458be283c738f532766c7c65e9
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sun Sep 2 20:44:06 2007 +0000
2.11a
commit b6d92689bb3430b4ba34b68489000827390379fd
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon Aug 27 23:14:58 2007 +0000
theme name should stay Grid
commit 46b9582b90525510142185a43b1537871a1f3d88
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon Aug 27 23:10:57 2007 +0000
from grid-2.11-070826
commit 1cfd970c073cb826026488e299197ee4232c20da
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon Aug 27 22:57:29 2007 +0000
missing doc elements
commit 9cdb7646248e91a9d57fcee13fc76bd7e122aac8
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon Aug 27 16:59:43 2007 +0000
for 2.11
commit cfe51fdbaae4bea97aef5b0d12bfb6dfc0250294
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat May 19 11:07:27 2007 +0000
initial pixeline
commit 3d52483801b1fe04f5fb3ed0c6ace2e35541f997
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed May 16 13:28:59 2007 +0000
initial crimson_gray
commit 49ea233e65ce05b2796329a96162924140c9ebfa
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sun May 13 00:37:11 2007 +0000
initial dark_lime
commit 16e4ade007c8910121c5e676c1d693f960401fc6
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat May 12 23:43:46 2007 +0000
grid 2.10b
commit e887be488267d69cc4026530f8b9727e268418d9
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat May 12 11:46:35 2007 +0000
arctic_ocean update
commit 900aaf2b0a578bbf584aaa7a2a8137a84a2ce71c
Author: Marc Delisle <marc(a)infomarc.info>
Date: Thu May 10 00:35:58 2007 +0000
initial for silk
commit 8fb8ba0def24bdb625b2bac90ea7cc37d679a261
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed May 9 23:39:27 2007 +0000
grid update
commit 043a9807a935dae7c1c8b99ab036ff6c71c1ed14
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed May 9 17:00:46 2007 +0000
2.11 compatibility
commit 13814821fac1ec3562acab1abd3e4e04419d425d
Author: Sebastian Mendel <cybot_tm(a)users.sourceforge.net>
Date: Wed May 9 12:18:57 2007 +0000
fixed code indention
commit 53df7154f2bb4a8c43b023bf41cf11025ccad47b
Author: Sebastian Mendel <cybot_tm(a)users.sourceforge.net>
Date: Wed Mar 21 06:41:56 2007 +0000
fixed subpackage name in docblock
commit 0e1c781d51aad5b15a0b0ab67591b9e4ca29bdd2
Author: Sebastian Mendel <cybot_tm(a)users.sourceforge.net>
Date: Tue Mar 20 14:54:22 2007 +0000
fixed @subpackage tag in page level docblock
commit 4b9e009caf0c15d0887bcc7c34afb752f6834c2b
Author: Sebastian Mendel <cybot_tm(a)users.sourceforge.net>
Date: Tue Mar 20 13:39:12 2007 +0000
fixed/added page level docblock
commit ccaf2fe16f804307e726342810773d88fc494161
Author: Sebastian Mendel <cybot_tm(a)users.sourceforge.net>
Date: Tue Mar 20 08:32:55 2007 +0000
fixed/added svn properties
commit f0186983cc3a43ff37e35c5b32273446d6aaf59b
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sun Feb 25 13:40:45 2007 +0000
2.9d
commit 99afad04b1418e87b9151a0f82b1fa5e0be84c28
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat Feb 10 15:58:46 2007 +0000
get rid of propicon
commit cffc524c4d9f753cd5e4e4a57c6d39551624fcdc
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Jan 17 17:12:57 2007 +0000
grid 2.9c
commit 8da264608e0e95c253e6c1b69dbd5b039b3834c8
Author: Michal Čihař <michal(a)cihar.com>
Date: Fri Nov 17 08:49:30 2006 +0000
Check before commit!
commit c71d4daf6482b1f226063bfde9284144e002713d
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sun Oct 15 00:00:33 2006 +0000
new theme
commit ced6f28444bac6ce76ae3d784bdbb923fc101584
Author: Marc Delisle <marc(a)infomarc.info>
Date: Wed Oct 11 12:13:14 2006 +0000
2.9b
commit 042a29f4e4c14615d8e707a63e336da9b6a67764
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sun Sep 24 22:52:43 2006 +0000
missing window-new.png
commit fb88d5ac7e626277c589d87c11ed13f6b118a06f
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sun Sep 24 22:37:33 2006 +0000
missing window-new.png
commit 19eef86fbb8ec866db496efe4cc3dbaf8fea9b1e
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sun Sep 24 21:55:43 2006 +0000
2.9a
commit 956fb6099e54d14a220e683debab0d4de39f74e7
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon Sep 18 16:19:06 2006 +0000
new
commit 68dd93c95f17fcd3b1164e2ead1400322576594e
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sun Sep 17 13:01:52 2006 +0000
new
commit d7dd710dffe8eaa6c32275cdc9b1486fc9224351
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat Sep 16 20:45:47 2006 +0000
new
commit c825c227c179c4609ac2a4b1836957383534a2c0
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat Sep 16 20:03:30 2006 +0000
new
commit 18bd1a069e3849ba5f1db791bff4f33247cc9f8b
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat Sep 16 19:30:03 2006 +0000
update
commit 653994fb005a3564d95c0c0640316e89fa47c6b3
Author: Sebastian Mendel <cybot_tm(a)users.sourceforge.net>
Date: Wed May 3 10:40:57 2006 +0000
aqua_brushed updated
commit 216e7d24acc348aaacaf564e9cc0cb35ec39aa40
Author: Sebastian Mendel <cybot_tm(a)users.sourceforge.net>
Date: Wed May 3 10:04:41 2006 +0000
fixed image paths
commit 83d9c1d41a1ac9db1098a45d9a79e695b371932b
Author: Sebastian Mendel <cybot_tm(a)users.sourceforge.net>
Date: Wed May 3 09:43:46 2006 +0000
aqua updated
commit 71af416145f8f59cc19748b68996b71575079cb9
Author: Sebastian Mendel <cybot_tm(a)users.sourceforge.net>
Date: Thu Apr 27 14:08:39 2006 +0000
removed obsolete files
commit 4c2ef2fe7f9d441fd86c38330886e57aa3fbc8b4
Author: Michal Čihař <michal(a)cihar.com>
Date: Thu Apr 27 10:27:57 2006 +0000
Fix CSS (patch #1467626)
commit c0f3ec581a09b1d4c0924a4c0624f6411b4b2160
Author: Sebastian Mendel <cybot_tm(a)users.sourceforge.net>
Date: Wed Apr 26 14:09:29 2006 +0000
*** empty log message ***
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
libraries/config.default.php | 2 +-
po/nb.po | 9 +-
po/nl.po | 6 +-
themes/darkblue_orange/css/theme_right.css.php | 1860 -----------------
themes/darkblue_orange/img/arrow_ltr.png | Bin 184 -> 0 bytes
themes/darkblue_orange/img/arrow_rtl.png | Bin 182 -> 0 bytes
themes/darkblue_orange/img/b_bookmark.png | Bin 312 -> 0 bytes
themes/darkblue_orange/img/b_browse.png | Bin 200 -> 0 bytes
themes/darkblue_orange/img/b_calendar.png | Bin 247 -> 0 bytes
themes/darkblue_orange/img/b_chart.png | Bin 3117 -> 0 bytes
themes/darkblue_orange/img/b_comment.png | Bin 488 -> 0 bytes
themes/darkblue_orange/img/b_dbstatistics.png | Bin 199 -> 0 bytes
themes/darkblue_orange/img/b_deltbl.png | Bin 282 -> 0 bytes
themes/darkblue_orange/img/b_docs.png | Bin 223 -> 0 bytes
themes/darkblue_orange/img/b_drop.png | Bin 241 -> 0 bytes
themes/darkblue_orange/img/b_edit.png | Bin 396 -> 0 bytes
themes/darkblue_orange/img/b_empty.png | Bin 229 -> 0 bytes
themes/darkblue_orange/img/b_engine.png | Bin 270 -> 0 bytes
themes/darkblue_orange/img/b_export.png | Bin 240 -> 0 bytes
themes/darkblue_orange/img/b_ftext.png | Bin 219 -> 0 bytes
themes/darkblue_orange/img/b_help.png | Bin 183 -> 0 bytes
themes/darkblue_orange/img/b_home.png | Bin 293 -> 0 bytes
themes/darkblue_orange/img/b_import.png | Bin 237 -> 0 bytes
themes/darkblue_orange/img/b_index.png | Bin 246 -> 0 bytes
themes/darkblue_orange/img/b_info.png | Bin 187 -> 0 bytes
themes/darkblue_orange/img/b_inline_edit.png | Bin 364 -> 0 bytes
themes/darkblue_orange/img/b_insrow.png | Bin 223 -> 0 bytes
themes/darkblue_orange/img/b_minus.png | Bin 147 -> 0 bytes
themes/darkblue_orange/img/b_more.png | Bin 939 -> 0 bytes
themes/darkblue_orange/img/b_newdb.png | Bin 325 -> 0 bytes
themes/darkblue_orange/img/b_newtbl.png | Bin 325 -> 0 bytes
themes/darkblue_orange/img/b_plus.png | Bin 152 -> 0 bytes
themes/darkblue_orange/img/b_primary.png | Bin 338 -> 0 bytes
themes/darkblue_orange/img/b_print.png | Bin 486 -> 0 bytes
themes/darkblue_orange/img/b_props.png | Bin 228 -> 0 bytes
themes/darkblue_orange/img/b_relations.png | Bin 217 -> 0 bytes
themes/darkblue_orange/img/b_sbrowse.png | Bin 161 -> 0 bytes
themes/darkblue_orange/img/b_search.png | Bin 546 -> 0 bytes
themes/darkblue_orange/img/b_selboard.png | Bin 218 -> 0 bytes
themes/darkblue_orange/img/b_select.png | Bin 476 -> 0 bytes
themes/darkblue_orange/img/b_snewtbl.png | Bin 268 -> 0 bytes
themes/darkblue_orange/img/b_sql.png | Bin 250 -> 0 bytes
themes/darkblue_orange/img/b_sqlhelp.png | Bin 214 -> 0 bytes
themes/darkblue_orange/img/b_tblanalyse.png | Bin 232 -> 0 bytes
themes/darkblue_orange/img/b_tblexport.png | Bin 217 -> 0 bytes
themes/darkblue_orange/img/b_tblimport.png | Bin 210 -> 0 bytes
themes/darkblue_orange/img/b_tblops.png | Bin 270 -> 0 bytes
themes/darkblue_orange/img/b_tbloptimize.png | Bin 237 -> 0 bytes
themes/darkblue_orange/img/b_tipp.png | Bin 243 -> 0 bytes
themes/darkblue_orange/img/b_unique.png | Bin 218 -> 0 bytes
themes/darkblue_orange/img/b_usradd.png | Bin 436 -> 0 bytes
themes/darkblue_orange/img/b_usrcheck.png | Bin 327 -> 0 bytes
themes/darkblue_orange/img/b_usrdrop.png | Bin 366 -> 0 bytes
themes/darkblue_orange/img/b_usredit.png | Bin 422 -> 0 bytes
themes/darkblue_orange/img/b_usrlist.png | Bin 327 -> 0 bytes
themes/darkblue_orange/img/b_view.png | Bin 820 -> 0 bytes
themes/darkblue_orange/img/b_views.png | Bin 403 -> 0 bytes
themes/darkblue_orange/img/bd_browse.png | Bin 200 -> 0 bytes
themes/darkblue_orange/img/bd_deltbl.png | Bin 257 -> 0 bytes
themes/darkblue_orange/img/bd_drop.png | Bin 261 -> 0 bytes
themes/darkblue_orange/img/bd_empty.png | Bin 229 -> 0 bytes
themes/darkblue_orange/img/bd_ftext.png | Bin 219 -> 0 bytes
themes/darkblue_orange/img/bd_index.png | Bin 246 -> 0 bytes
themes/darkblue_orange/img/bd_insrow.png | Bin 262 -> 0 bytes
themes/darkblue_orange/img/bd_primary.png | Bin 312 -> 0 bytes
themes/darkblue_orange/img/bd_sbrowse.png | Bin 161 -> 0 bytes
themes/darkblue_orange/img/bd_select.png | Bin 459 -> 0 bytes
themes/darkblue_orange/img/bd_unique.png | Bin 218 -> 0 bytes
themes/darkblue_orange/img/error.ico | Bin 318 -> 0 bytes
themes/darkblue_orange/img/item_ltr.png | Bin 162 -> 0 bytes
themes/darkblue_orange/img/item_rtl.png | Bin 163 -> 0 bytes
themes/darkblue_orange/img/logo_left.png | Bin 6852 -> 0 bytes
themes/darkblue_orange/img/logo_right.png | Bin 4904 -> 0 bytes
themes/darkblue_orange/img/more.png | Bin 510 -> 0 bytes
themes/darkblue_orange/img/s_asc.png | Bin 184 -> 0 bytes
themes/darkblue_orange/img/s_asci.png | Bin 189 -> 0 bytes
themes/darkblue_orange/img/s_cancel.png | Bin 383 -> 0 bytes
themes/darkblue_orange/img/s_db.png | Bin 223 -> 0 bytes
themes/darkblue_orange/img/s_desc.png | Bin 182 -> 0 bytes
themes/darkblue_orange/img/s_error.png | Bin 213 -> 0 bytes
themes/darkblue_orange/img/s_error2.png | Bin 192 -> 0 bytes
themes/darkblue_orange/img/s_fulltext.png | Bin 241 -> 0 bytes
themes/darkblue_orange/img/s_host.png | Bin 244 -> 0 bytes
themes/darkblue_orange/img/s_lang.png | Bin 350 -> 0 bytes
themes/darkblue_orange/img/s_loggoff.png | Bin 204 -> 0 bytes
themes/darkblue_orange/img/s_notice.png | Bin 189 -> 0 bytes
themes/darkblue_orange/img/s_partialtext.png | Bin 243 -> 0 bytes
themes/darkblue_orange/img/s_passwd.png | Bin 435 -> 0 bytes
themes/darkblue_orange/img/s_process.png | Bin 264 -> 0 bytes
themes/darkblue_orange/img/s_really.png | Bin 183 -> 0 bytes
themes/darkblue_orange/img/s_reload.png | Bin 306 -> 0 bytes
themes/darkblue_orange/img/s_replication.png | Bin 441 -> 0 bytes
themes/darkblue_orange/img/s_rights.png | Bin 430 -> 0 bytes
themes/darkblue_orange/img/s_status.png | Bin 248 -> 0 bytes
themes/darkblue_orange/img/s_success.png | Bin 539 -> 0 bytes
themes/darkblue_orange/img/s_tbl.png | Bin 186 -> 0 bytes
themes/darkblue_orange/img/s_theme.png | Bin 687 -> 0 bytes
themes/darkblue_orange/img/s_vars.png | Bin 235 -> 0 bytes
themes/darkblue_orange/img/s_views.png | Bin 327 -> 0 bytes
themes/darkblue_orange/img/s_warn.png | Bin 201 -> 0 bytes
themes/darkblue_orange/img/spacer.png | Bin 148 -> 0 bytes
themes/darkblue_orange/img/tbl_header.png | Bin 587 -> 0 bytes
themes/darkblue_orange/img/tbl_th.png | Bin 373 -> 0 bytes
themes/darkblue_orange/img/window-new.png | Bin 582 -> 0 bytes
themes/darkblue_orange/info.inc.php | 15 -
.../jquery/images/ui-bg_flat_0_aaaaaa_40x100.png | Bin 180 -> 0 bytes
.../jquery/images/ui-bg_flat_75_ffffff_40x100.png | Bin 178 -> 0 bytes
.../jquery/images/ui-bg_glass_65_ffffff_1x400.png | Bin 105 -> 0 bytes
.../ui-bg_highlight-soft_75_cccccc_1x100.png | Bin 101 -> 0 bytes
.../jquery/images/ui-icons_222222_256x240.png | Bin 4369 -> 0 bytes
.../jquery/images/ui-icons_2e83ff_256x240.png | Bin 4369 -> 0 bytes
.../jquery/images/ui-icons_454545_256x240.png | Bin 4369 -> 0 bytes
.../jquery/images/ui-icons_888888_256x240.png | Bin 4369 -> 0 bytes
.../jquery/images/ui-icons_cd0a0a_256x240.png | Bin 4369 -> 0 bytes
themes/darkblue_orange/layout.inc.php | 119 --
themes/darkblue_orange/screen.png | Bin 52169 -> 0 bytes
themes/pmahomme/css/theme_left.css.php | 264 +++
.../{original => pmahomme}/css/theme_print.css.php | 0
themes/pmahomme/css/theme_right.css.php | 2103 ++++++++++++++++++++
.../img/ajax_clock_small.gif | Bin 1849 -> 1849 bytes
themes/pmahomme/img/arrow_ltr.png | Bin 0 -> 184 bytes
themes/pmahomme/img/arrow_rtl.png | Bin 0 -> 182 bytes
themes/pmahomme/img/asc_order.png | Bin 0 -> 201 bytes
themes/pmahomme/img/b_bookmark.png | Bin 0 -> 714 bytes
themes/pmahomme/img/b_browse.png | Bin 0 -> 566 bytes
themes/pmahomme/img/b_calendar.png | Bin 0 -> 675 bytes
themes/pmahomme/img/b_chart.png | Bin 0 -> 541 bytes
themes/pmahomme/img/b_comment.png | Bin 0 -> 413 bytes
themes/pmahomme/img/b_dbstatistics.png | Bin 0 -> 541 bytes
themes/pmahomme/img/b_deltbl.png | Bin 0 -> 660 bytes
themes/pmahomme/img/b_docs.png | Bin 0 -> 786 bytes
themes/pmahomme/img/b_docsql.png | Bin 0 -> 231 bytes
themes/pmahomme/img/b_drop.png | Bin 0 -> 715 bytes
themes/pmahomme/img/b_edit.png | Bin 0 -> 444 bytes
themes/pmahomme/img/b_empty.png | Bin 0 -> 363 bytes
themes/pmahomme/img/b_engine.png | Bin 0 -> 468 bytes
themes/pmahomme/img/b_export.png | Bin 0 -> 641 bytes
themes/pmahomme/img/b_firstpage.png | Bin 0 -> 745 bytes
themes/pmahomme/img/b_ftext.png | Bin 0 -> 1432 bytes
themes/pmahomme/img/b_help.png | Bin 0 -> 1594 bytes
themes/pmahomme/img/b_home.png | Bin 0 -> 806 bytes
themes/pmahomme/img/b_import.png | Bin 0 -> 629 bytes
themes/pmahomme/img/b_index.png | Bin 0 -> 736 bytes
themes/pmahomme/img/b_info.png | Bin 0 -> 187 bytes
themes/pmahomme/img/b_insrow.png | Bin 0 -> 228 bytes
themes/pmahomme/img/b_lastpage.png | Bin 0 -> 736 bytes
themes/pmahomme/img/b_minus.png | Bin 0 -> 207 bytes
themes/pmahomme/img/b_more.png | Bin 0 -> 1002 bytes
themes/pmahomme/img/b_newdb.png | Bin 0 -> 658 bytes
themes/pmahomme/img/b_newtbl.png | Bin 0 -> 325 bytes
themes/pmahomme/img/b_nextpage.png | Bin 0 -> 395 bytes
themes/pmahomme/img/b_pdfdoc.png | Bin 0 -> 591 bytes
themes/pmahomme/img/b_plus.png | Bin 0 -> 209 bytes
themes/pmahomme/img/b_prevpage.png | Bin 0 -> 389 bytes
themes/pmahomme/img/b_primary.png | Bin 0 -> 612 bytes
themes/pmahomme/img/b_print.png | Bin 0 -> 731 bytes
themes/pmahomme/img/b_props.png | Bin 0 -> 663 bytes
themes/pmahomme/img/b_relations.png | Bin 0 -> 217 bytes
themes/pmahomme/img/b_save.png | Bin 0 -> 620 bytes
themes/pmahomme/img/b_sbrowse.png | Bin 0 -> 566 bytes
themes/pmahomme/img/b_sdb.png | Bin 0 -> 189 bytes
themes/pmahomme/img/b_search.png | Bin 0 -> 615 bytes
themes/pmahomme/img/b_selboard.png | Bin 0 -> 698 bytes
themes/pmahomme/img/b_select.png | Bin 0 -> 680 bytes
themes/pmahomme/img/b_snewtbl.png | Bin 0 -> 733 bytes
themes/pmahomme/img/b_sql.png | Bin 0 -> 748 bytes
themes/pmahomme/img/b_sqldoc.png | Bin 0 -> 235 bytes
themes/pmahomme/img/b_sqlhelp.png | Bin 0 -> 579 bytes
themes/pmahomme/img/b_tblanalyse.png | Bin 0 -> 234 bytes
themes/pmahomme/img/b_tblexport.png | Bin 0 -> 641 bytes
themes/pmahomme/img/b_tblimport.png | Bin 0 -> 629 bytes
themes/pmahomme/img/b_tblops.png | Bin 0 -> 610 bytes
themes/pmahomme/img/b_tbloptimize.png | Bin 0 -> 241 bytes
themes/pmahomme/img/b_tipp.png | Bin 0 -> 782 bytes
themes/pmahomme/img/b_unique.png | Bin 0 -> 1475 bytes
themes/pmahomme/img/b_usradd.png | Bin 0 -> 746 bytes
themes/pmahomme/img/b_usrcheck.png | Bin 0 -> 793 bytes
themes/pmahomme/img/b_usrdrop.png | Bin 0 -> 767 bytes
themes/pmahomme/img/b_usredit.png | Bin 0 -> 833 bytes
themes/pmahomme/img/b_usrlist.png | Bin 0 -> 753 bytes
themes/pmahomme/img/b_view.png | Bin 0 -> 820 bytes
themes/pmahomme/img/b_views.png | Bin 0 -> 403 bytes
themes/pmahomme/img/bd_browse.png | Bin 0 -> 200 bytes
themes/pmahomme/img/bd_deltbl.png | Bin 0 -> 257 bytes
themes/pmahomme/img/bd_drop.png | Bin 0 -> 261 bytes
themes/pmahomme/img/bd_empty.png | Bin 0 -> 231 bytes
themes/pmahomme/img/bd_firstpage.png | Bin 0 -> 180 bytes
themes/pmahomme/img/bd_ftext.png | Bin 0 -> 219 bytes
themes/pmahomme/img/bd_index.png | Bin 0 -> 253 bytes
themes/pmahomme/img/bd_insrow.png | Bin 0 -> 274 bytes
themes/pmahomme/img/bd_lastpage.png | Bin 0 -> 180 bytes
themes/pmahomme/img/bd_nextpage.png | Bin 0 -> 167 bytes
themes/pmahomme/img/bd_prevpage.png | Bin 0 -> 167 bytes
themes/pmahomme/img/bd_primary.png | Bin 0 -> 312 bytes
themes/pmahomme/img/bd_sbrowse.png | Bin 0 -> 161 bytes
themes/pmahomme/img/bd_select.png | Bin 0 -> 459 bytes
themes/pmahomme/img/bd_unique.png | Bin 0 -> 218 bytes
themes/pmahomme/img/body_bg.png | Bin 0 -> 372 bytes
themes/pmahomme/img/database.png | Bin 0 -> 390 bytes
themes/pmahomme/img/database_list_li_hover.png | Bin 0 -> 149 bytes
themes/pmahomme/img/docs_menu_bg.png | Bin 0 -> 148 bytes
themes/pmahomme/img/error.ico | Bin 0 -> 5430 bytes
themes/{darkblue_orange => pmahomme}/img/eye.png | Bin 750 -> 750 bytes
themes/pmahomme/img/eye_grey.png | Bin 0 -> 347 bytes
themes/pmahomme/img/input_bg.gif | Bin 0 -> 162 bytes
themes/pmahomme/img/item.png | Bin 0 -> 175 bytes
themes/pmahomme/img/item_ltr.png | Bin 0 -> 162 bytes
themes/pmahomme/img/item_rtl.png | Bin 0 -> 163 bytes
themes/pmahomme/img/left_nav_bg.png | Bin 0 -> 215 bytes
themes/pmahomme/img/logo_left.png | Bin 0 -> 5381 bytes
themes/pmahomme/img/logo_right.png | Bin 0 -> 4921 bytes
themes/pmahomme/img/marked_bg.png | Bin 0 -> 1000 bytes
themes/pmahomme/img/more.png | Bin 0 -> 553 bytes
.../{darkblue_orange => pmahomme}/img/new_data.jpg | Bin 1925 -> 1925 bytes
.../img/new_data_hovered.jpg | Bin 1558 -> 1558 bytes
.../img/new_data_selected.jpg | Bin 1450 -> 1450 bytes
.../img/new_data_selected_hovered.jpg | Bin 1456 -> 1456 bytes
.../img/new_struct.jpg | Bin 1118 -> 1118 bytes
.../img/new_struct_hovered.jpg | Bin 1643 -> 1643 bytes
.../img/new_struct_selected.jpg | Bin 1431 -> 1431 bytes
.../img/new_struct_selected_hovered.jpg | Bin 1463 -> 1463 bytes
themes/pmahomme/img/php_sym.png | Bin 0 -> 198 bytes
themes/pmahomme/img/pma_logo2.png | Bin 0 -> 1533 bytes
themes/pmahomme/img/s_asc.png | Bin 0 -> 201 bytes
themes/pmahomme/img/s_asci.png | Bin 0 -> 209 bytes
themes/pmahomme/img/s_attention.png | Bin 0 -> 666 bytes
themes/pmahomme/img/s_cancel.png | Bin 0 -> 587 bytes
themes/pmahomme/img/s_cancel2.png | Bin 0 -> 308 bytes
themes/pmahomme/img/s_db.png | Bin 0 -> 390 bytes
themes/pmahomme/img/s_desc.png | Bin 0 -> 201 bytes
themes/pmahomme/img/s_error.png | Bin 0 -> 701 bytes
themes/pmahomme/img/s_error2.png | Bin 0 -> 192 bytes
themes/pmahomme/img/s_fulltext.png | Bin 0 -> 244 bytes
themes/pmahomme/img/s_host.png | Bin 0 -> 667 bytes
themes/pmahomme/img/s_info.png | Bin 0 -> 778 bytes
themes/pmahomme/img/s_lang.png | Bin 0 -> 743 bytes
themes/pmahomme/img/s_loggoff.png | Bin 0 -> 204 bytes
themes/pmahomme/img/s_notice.png | Bin 0 -> 666 bytes
themes/pmahomme/img/s_okay.png | Bin 0 -> 781 bytes
themes/pmahomme/img/s_partialtext.png | Bin 0 -> 243 bytes
themes/pmahomme/img/s_passwd.png | Bin 0 -> 435 bytes
themes/pmahomme/img/s_process.png | Bin 0 -> 512 bytes
themes/pmahomme/img/s_really.png | Bin 0 -> 183 bytes
themes/pmahomme/img/s_reload.png | Bin 0 -> 608 bytes
themes/pmahomme/img/s_replication.png | Bin 0 -> 447 bytes
themes/pmahomme/img/s_rights.png | Bin 0 -> 533 bytes
themes/pmahomme/img/s_status.png | Bin 0 -> 673 bytes
themes/pmahomme/img/s_success.png | Bin 0 -> 537 bytes
.../{darkblue_orange => pmahomme}/img/s_sync.png | Bin 551 -> 551 bytes
themes/pmahomme/img/s_tbl.png | Bin 0 -> 714 bytes
themes/pmahomme/img/s_theme.png | Bin 0 -> 856 bytes
themes/pmahomme/img/s_vars.png | Bin 0 -> 603 bytes
themes/pmahomme/img/s_views.png | Bin 0 -> 327 bytes
themes/pmahomme/img/s_warn.png | Bin 0 -> 701 bytes
themes/pmahomme/img/spacer.png | Bin 0 -> 148 bytes
themes/pmahomme/img/tab_bg.png | Bin 0 -> 160 bytes
themes/pmahomme/img/tab_hover_bg.png | Bin 0 -> 1278 bytes
themes/pmahomme/img/tab_warning_bg.png | Bin 0 -> 1697 bytes
themes/pmahomme/img/tabactive_bg.png | Bin 0 -> 155 bytes
themes/pmahomme/img/vertical_line.png | Bin 0 -> 83 bytes
themes/pmahomme/img/window-new.png | Bin 0 -> 583 bytes
themes/pmahomme/info.inc.php | 15 +
.../jquery/images/ui-bg_flat_0_aaaaaa_40x100.png | Bin 0 -> 87 bytes
.../jquery/images/ui-bg_flat_75_ffffff_40x100.png | Bin 0 -> 87 bytes
.../jquery/images/ui-bg_glass_55_fbf9ee_1x400.png | Bin 120 -> 120 bytes
.../jquery/images/ui-bg_glass_65_ffffff_1x400.png | Bin 0 -> 99 bytes
.../jquery/images/ui-bg_glass_75_dadada_1x400.png | Bin 111 -> 111 bytes
.../jquery/images/ui-bg_glass_75_e6e6e6_1x400.png | Bin 110 -> 110 bytes
.../jquery/images/ui-bg_glass_95_fef1ec_1x400.png | Bin 119 -> 119 bytes
.../ui-bg_highlight-soft_75_cccccc_1x100.png | Bin 0 -> 86 bytes
.../jquery/images/ui-icons_222222_256x240.png | Bin 0 -> 4193 bytes
.../jquery/images/ui-icons_2e83ff_256x240.png | Bin 0 -> 4193 bytes
.../jquery/images/ui-icons_454545_256x240.png | Bin 0 -> 4193 bytes
.../jquery/images/ui-icons_888888_256x240.png | Bin 0 -> 4193 bytes
.../jquery/images/ui-icons_cd0a0a_256x240.png | Bin 0 -> 4193 bytes
.../jquery/jquery-ui-1.8.custom.css | 0
themes/pmahomme/layout.inc.php | 115 ++
themes/pmahomme/screen.png | Bin 0 -> 63874 bytes
279 files changed, 2506 insertions(+), 2003 deletions(-)
delete mode 100644 themes/darkblue_orange/css/theme_right.css.php
delete mode 100644 themes/darkblue_orange/img/arrow_ltr.png
delete mode 100644 themes/darkblue_orange/img/arrow_rtl.png
delete mode 100644 themes/darkblue_orange/img/b_bookmark.png
delete mode 100644 themes/darkblue_orange/img/b_browse.png
delete mode 100644 themes/darkblue_orange/img/b_calendar.png
delete mode 100644 themes/darkblue_orange/img/b_chart.png
delete mode 100644 themes/darkblue_orange/img/b_comment.png
delete mode 100644 themes/darkblue_orange/img/b_dbstatistics.png
delete mode 100644 themes/darkblue_orange/img/b_deltbl.png
delete mode 100644 themes/darkblue_orange/img/b_docs.png
delete mode 100644 themes/darkblue_orange/img/b_drop.png
delete mode 100644 themes/darkblue_orange/img/b_edit.png
delete mode 100644 themes/darkblue_orange/img/b_empty.png
delete mode 100644 themes/darkblue_orange/img/b_engine.png
delete mode 100644 themes/darkblue_orange/img/b_export.png
delete mode 100644 themes/darkblue_orange/img/b_ftext.png
delete mode 100644 themes/darkblue_orange/img/b_help.png
delete mode 100644 themes/darkblue_orange/img/b_home.png
delete mode 100644 themes/darkblue_orange/img/b_import.png
delete mode 100644 themes/darkblue_orange/img/b_index.png
delete mode 100644 themes/darkblue_orange/img/b_info.png
delete mode 100644 themes/darkblue_orange/img/b_inline_edit.png
delete mode 100644 themes/darkblue_orange/img/b_insrow.png
delete mode 100644 themes/darkblue_orange/img/b_minus.png
delete mode 100644 themes/darkblue_orange/img/b_more.png
delete mode 100644 themes/darkblue_orange/img/b_newdb.png
delete mode 100644 themes/darkblue_orange/img/b_newtbl.png
delete mode 100644 themes/darkblue_orange/img/b_plus.png
delete mode 100644 themes/darkblue_orange/img/b_primary.png
delete mode 100644 themes/darkblue_orange/img/b_print.png
delete mode 100644 themes/darkblue_orange/img/b_props.png
delete mode 100644 themes/darkblue_orange/img/b_relations.png
delete mode 100644 themes/darkblue_orange/img/b_sbrowse.png
delete mode 100644 themes/darkblue_orange/img/b_search.png
delete mode 100644 themes/darkblue_orange/img/b_selboard.png
delete mode 100644 themes/darkblue_orange/img/b_select.png
delete mode 100644 themes/darkblue_orange/img/b_snewtbl.png
delete mode 100644 themes/darkblue_orange/img/b_sql.png
delete mode 100644 themes/darkblue_orange/img/b_sqlhelp.png
delete mode 100644 themes/darkblue_orange/img/b_tblanalyse.png
delete mode 100644 themes/darkblue_orange/img/b_tblexport.png
delete mode 100644 themes/darkblue_orange/img/b_tblimport.png
delete mode 100644 themes/darkblue_orange/img/b_tblops.png
delete mode 100644 themes/darkblue_orange/img/b_tbloptimize.png
delete mode 100644 themes/darkblue_orange/img/b_tipp.png
delete mode 100644 themes/darkblue_orange/img/b_unique.png
delete mode 100644 themes/darkblue_orange/img/b_usradd.png
delete mode 100644 themes/darkblue_orange/img/b_usrcheck.png
delete mode 100644 themes/darkblue_orange/img/b_usrdrop.png
delete mode 100644 themes/darkblue_orange/img/b_usredit.png
delete mode 100644 themes/darkblue_orange/img/b_usrlist.png
delete mode 100644 themes/darkblue_orange/img/b_view.png
delete mode 100644 themes/darkblue_orange/img/b_views.png
delete mode 100644 themes/darkblue_orange/img/bd_browse.png
delete mode 100644 themes/darkblue_orange/img/bd_deltbl.png
delete mode 100644 themes/darkblue_orange/img/bd_drop.png
delete mode 100644 themes/darkblue_orange/img/bd_empty.png
delete mode 100644 themes/darkblue_orange/img/bd_ftext.png
delete mode 100644 themes/darkblue_orange/img/bd_index.png
delete mode 100644 themes/darkblue_orange/img/bd_insrow.png
delete mode 100644 themes/darkblue_orange/img/bd_primary.png
delete mode 100644 themes/darkblue_orange/img/bd_sbrowse.png
delete mode 100644 themes/darkblue_orange/img/bd_select.png
delete mode 100644 themes/darkblue_orange/img/bd_unique.png
delete mode 100644 themes/darkblue_orange/img/error.ico
delete mode 100644 themes/darkblue_orange/img/item_ltr.png
delete mode 100644 themes/darkblue_orange/img/item_rtl.png
delete mode 100644 themes/darkblue_orange/img/logo_left.png
delete mode 100644 themes/darkblue_orange/img/logo_right.png
delete mode 100644 themes/darkblue_orange/img/more.png
delete mode 100644 themes/darkblue_orange/img/s_asc.png
delete mode 100644 themes/darkblue_orange/img/s_asci.png
delete mode 100644 themes/darkblue_orange/img/s_cancel.png
delete mode 100644 themes/darkblue_orange/img/s_db.png
delete mode 100644 themes/darkblue_orange/img/s_desc.png
delete mode 100644 themes/darkblue_orange/img/s_error.png
delete mode 100644 themes/darkblue_orange/img/s_error2.png
delete mode 100644 themes/darkblue_orange/img/s_fulltext.png
delete mode 100644 themes/darkblue_orange/img/s_host.png
delete mode 100644 themes/darkblue_orange/img/s_lang.png
delete mode 100644 themes/darkblue_orange/img/s_loggoff.png
delete mode 100644 themes/darkblue_orange/img/s_notice.png
delete mode 100644 themes/darkblue_orange/img/s_partialtext.png
delete mode 100644 themes/darkblue_orange/img/s_passwd.png
delete mode 100644 themes/darkblue_orange/img/s_process.png
delete mode 100644 themes/darkblue_orange/img/s_really.png
delete mode 100644 themes/darkblue_orange/img/s_reload.png
delete mode 100644 themes/darkblue_orange/img/s_replication.png
delete mode 100644 themes/darkblue_orange/img/s_rights.png
delete mode 100644 themes/darkblue_orange/img/s_status.png
delete mode 100644 themes/darkblue_orange/img/s_success.png
delete mode 100644 themes/darkblue_orange/img/s_tbl.png
delete mode 100644 themes/darkblue_orange/img/s_theme.png
delete mode 100644 themes/darkblue_orange/img/s_vars.png
delete mode 100644 themes/darkblue_orange/img/s_views.png
delete mode 100644 themes/darkblue_orange/img/s_warn.png
delete mode 100644 themes/darkblue_orange/img/spacer.png
delete mode 100644 themes/darkblue_orange/img/tbl_header.png
delete mode 100644 themes/darkblue_orange/img/tbl_th.png
delete mode 100644 themes/darkblue_orange/img/window-new.png
delete mode 100644 themes/darkblue_orange/info.inc.php
delete mode 100644 themes/darkblue_orange/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png
delete mode 100644 themes/darkblue_orange/jquery/images/ui-bg_flat_75_ffffff_40x100.png
delete mode 100644 themes/darkblue_orange/jquery/images/ui-bg_glass_65_ffffff_1x400.png
delete mode 100644 themes/darkblue_orange/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png
delete mode 100644 themes/darkblue_orange/jquery/images/ui-icons_222222_256x240.png
delete mode 100644 themes/darkblue_orange/jquery/images/ui-icons_2e83ff_256x240.png
delete mode 100644 themes/darkblue_orange/jquery/images/ui-icons_454545_256x240.png
delete mode 100644 themes/darkblue_orange/jquery/images/ui-icons_888888_256x240.png
delete mode 100644 themes/darkblue_orange/jquery/images/ui-icons_cd0a0a_256x240.png
delete mode 100644 themes/darkblue_orange/layout.inc.php
delete mode 100644 themes/darkblue_orange/screen.png
create mode 100644 themes/pmahomme/css/theme_left.css.php
copy themes/{original => pmahomme}/css/theme_print.css.php (100%)
create mode 100644 themes/pmahomme/css/theme_right.css.php
rename themes/{darkblue_orange => pmahomme}/img/ajax_clock_small.gif (100%)
create mode 100644 themes/pmahomme/img/arrow_ltr.png
create mode 100644 themes/pmahomme/img/arrow_rtl.png
create mode 100644 themes/pmahomme/img/asc_order.png
create mode 100644 themes/pmahomme/img/b_bookmark.png
create mode 100644 themes/pmahomme/img/b_browse.png
create mode 100644 themes/pmahomme/img/b_calendar.png
create mode 100644 themes/pmahomme/img/b_chart.png
create mode 100644 themes/pmahomme/img/b_comment.png
create mode 100644 themes/pmahomme/img/b_dbstatistics.png
create mode 100644 themes/pmahomme/img/b_deltbl.png
create mode 100644 themes/pmahomme/img/b_docs.png
create mode 100644 themes/pmahomme/img/b_docsql.png
create mode 100644 themes/pmahomme/img/b_drop.png
create mode 100644 themes/pmahomme/img/b_edit.png
create mode 100644 themes/pmahomme/img/b_empty.png
create mode 100644 themes/pmahomme/img/b_engine.png
create mode 100644 themes/pmahomme/img/b_export.png
create mode 100644 themes/pmahomme/img/b_firstpage.png
create mode 100644 themes/pmahomme/img/b_ftext.png
create mode 100644 themes/pmahomme/img/b_help.png
create mode 100644 themes/pmahomme/img/b_home.png
create mode 100644 themes/pmahomme/img/b_import.png
create mode 100644 themes/pmahomme/img/b_index.png
create mode 100644 themes/pmahomme/img/b_info.png
create mode 100644 themes/pmahomme/img/b_insrow.png
create mode 100644 themes/pmahomme/img/b_lastpage.png
create mode 100644 themes/pmahomme/img/b_minus.png
create mode 100644 themes/pmahomme/img/b_more.png
create mode 100644 themes/pmahomme/img/b_newdb.png
create mode 100644 themes/pmahomme/img/b_newtbl.png
create mode 100644 themes/pmahomme/img/b_nextpage.png
create mode 100644 themes/pmahomme/img/b_pdfdoc.png
create mode 100644 themes/pmahomme/img/b_plus.png
create mode 100644 themes/pmahomme/img/b_prevpage.png
create mode 100644 themes/pmahomme/img/b_primary.png
create mode 100644 themes/pmahomme/img/b_print.png
create mode 100644 themes/pmahomme/img/b_props.png
create mode 100644 themes/pmahomme/img/b_relations.png
create mode 100644 themes/pmahomme/img/b_save.png
create mode 100644 themes/pmahomme/img/b_sbrowse.png
create mode 100644 themes/pmahomme/img/b_sdb.png
create mode 100644 themes/pmahomme/img/b_search.png
create mode 100644 themes/pmahomme/img/b_selboard.png
create mode 100644 themes/pmahomme/img/b_select.png
create mode 100644 themes/pmahomme/img/b_snewtbl.png
create mode 100644 themes/pmahomme/img/b_sql.png
create mode 100644 themes/pmahomme/img/b_sqldoc.png
create mode 100644 themes/pmahomme/img/b_sqlhelp.png
create mode 100644 themes/pmahomme/img/b_tblanalyse.png
create mode 100644 themes/pmahomme/img/b_tblexport.png
create mode 100644 themes/pmahomme/img/b_tblimport.png
create mode 100644 themes/pmahomme/img/b_tblops.png
create mode 100644 themes/pmahomme/img/b_tbloptimize.png
create mode 100644 themes/pmahomme/img/b_tipp.png
create mode 100644 themes/pmahomme/img/b_unique.png
create mode 100644 themes/pmahomme/img/b_usradd.png
create mode 100644 themes/pmahomme/img/b_usrcheck.png
create mode 100644 themes/pmahomme/img/b_usrdrop.png
create mode 100644 themes/pmahomme/img/b_usredit.png
create mode 100644 themes/pmahomme/img/b_usrlist.png
create mode 100644 themes/pmahomme/img/b_view.png
create mode 100644 themes/pmahomme/img/b_views.png
create mode 100644 themes/pmahomme/img/bd_browse.png
create mode 100644 themes/pmahomme/img/bd_deltbl.png
create mode 100644 themes/pmahomme/img/bd_drop.png
create mode 100644 themes/pmahomme/img/bd_empty.png
create mode 100644 themes/pmahomme/img/bd_firstpage.png
create mode 100644 themes/pmahomme/img/bd_ftext.png
create mode 100644 themes/pmahomme/img/bd_index.png
create mode 100644 themes/pmahomme/img/bd_insrow.png
create mode 100644 themes/pmahomme/img/bd_lastpage.png
create mode 100644 themes/pmahomme/img/bd_nextpage.png
create mode 100644 themes/pmahomme/img/bd_prevpage.png
create mode 100644 themes/pmahomme/img/bd_primary.png
create mode 100644 themes/pmahomme/img/bd_sbrowse.png
create mode 100644 themes/pmahomme/img/bd_select.png
create mode 100644 themes/pmahomme/img/bd_unique.png
create mode 100644 themes/pmahomme/img/body_bg.png
create mode 100644 themes/pmahomme/img/database.png
create mode 100644 themes/pmahomme/img/database_list_li_hover.png
create mode 100644 themes/pmahomme/img/docs_menu_bg.png
create mode 100644 themes/pmahomme/img/error.ico
rename themes/{darkblue_orange => pmahomme}/img/eye.png (100%)
create mode 100644 themes/pmahomme/img/eye_grey.png
create mode 100644 themes/pmahomme/img/input_bg.gif
create mode 100644 themes/pmahomme/img/item.png
create mode 100644 themes/pmahomme/img/item_ltr.png
create mode 100644 themes/pmahomme/img/item_rtl.png
create mode 100644 themes/pmahomme/img/left_nav_bg.png
create mode 100644 themes/pmahomme/img/logo_left.png
create mode 100644 themes/pmahomme/img/logo_right.png
create mode 100644 themes/pmahomme/img/marked_bg.png
create mode 100644 themes/pmahomme/img/more.png
rename themes/{darkblue_orange => pmahomme}/img/new_data.jpg (100%)
rename themes/{darkblue_orange => pmahomme}/img/new_data_hovered.jpg (100%)
rename themes/{darkblue_orange => pmahomme}/img/new_data_selected.jpg (100%)
rename themes/{darkblue_orange => pmahomme}/img/new_data_selected_hovered.jpg (100%)
rename themes/{darkblue_orange => pmahomme}/img/new_struct.jpg (100%)
rename themes/{darkblue_orange => pmahomme}/img/new_struct_hovered.jpg (100%)
rename themes/{darkblue_orange => pmahomme}/img/new_struct_selected.jpg (100%)
rename themes/{darkblue_orange => pmahomme}/img/new_struct_selected_hovered.jpg (100%)
create mode 100644 themes/pmahomme/img/php_sym.png
create mode 100644 themes/pmahomme/img/pma_logo2.png
create mode 100644 themes/pmahomme/img/s_asc.png
create mode 100644 themes/pmahomme/img/s_asci.png
create mode 100644 themes/pmahomme/img/s_attention.png
create mode 100644 themes/pmahomme/img/s_cancel.png
create mode 100644 themes/pmahomme/img/s_cancel2.png
create mode 100644 themes/pmahomme/img/s_db.png
create mode 100644 themes/pmahomme/img/s_desc.png
create mode 100644 themes/pmahomme/img/s_error.png
create mode 100644 themes/pmahomme/img/s_error2.png
create mode 100644 themes/pmahomme/img/s_fulltext.png
create mode 100644 themes/pmahomme/img/s_host.png
create mode 100644 themes/pmahomme/img/s_info.png
create mode 100644 themes/pmahomme/img/s_lang.png
create mode 100644 themes/pmahomme/img/s_loggoff.png
create mode 100644 themes/pmahomme/img/s_notice.png
create mode 100644 themes/pmahomme/img/s_okay.png
create mode 100644 themes/pmahomme/img/s_partialtext.png
create mode 100644 themes/pmahomme/img/s_passwd.png
create mode 100644 themes/pmahomme/img/s_process.png
create mode 100644 themes/pmahomme/img/s_really.png
create mode 100644 themes/pmahomme/img/s_reload.png
create mode 100644 themes/pmahomme/img/s_replication.png
create mode 100644 themes/pmahomme/img/s_rights.png
create mode 100644 themes/pmahomme/img/s_status.png
create mode 100644 themes/pmahomme/img/s_success.png
rename themes/{darkblue_orange => pmahomme}/img/s_sync.png (100%)
create mode 100644 themes/pmahomme/img/s_tbl.png
create mode 100644 themes/pmahomme/img/s_theme.png
create mode 100644 themes/pmahomme/img/s_vars.png
create mode 100644 themes/pmahomme/img/s_views.png
create mode 100644 themes/pmahomme/img/s_warn.png
create mode 100644 themes/pmahomme/img/spacer.png
create mode 100644 themes/pmahomme/img/tab_bg.png
create mode 100644 themes/pmahomme/img/tab_hover_bg.png
create mode 100644 themes/pmahomme/img/tab_warning_bg.png
create mode 100644 themes/pmahomme/img/tabactive_bg.png
create mode 100644 themes/pmahomme/img/vertical_line.png
create mode 100644 themes/pmahomme/img/window-new.png
create mode 100644 themes/pmahomme/info.inc.php
create mode 100644 themes/pmahomme/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png
create mode 100644 themes/pmahomme/jquery/images/ui-bg_flat_75_ffffff_40x100.png
rename themes/{darkblue_orange => pmahomme}/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png (100%)
create mode 100644 themes/pmahomme/jquery/images/ui-bg_glass_65_ffffff_1x400.png
rename themes/{darkblue_orange => pmahomme}/jquery/images/ui-bg_glass_75_dadada_1x400.png (100%)
rename themes/{darkblue_orange => pmahomme}/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png (100%)
rename themes/{darkblue_orange => pmahomme}/jquery/images/ui-bg_glass_95_fef1ec_1x400.png (100%)
create mode 100644 themes/pmahomme/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png
create mode 100644 themes/pmahomme/jquery/images/ui-icons_222222_256x240.png
create mode 100644 themes/pmahomme/jquery/images/ui-icons_2e83ff_256x240.png
create mode 100644 themes/pmahomme/jquery/images/ui-icons_454545_256x240.png
create mode 100644 themes/pmahomme/jquery/images/ui-icons_888888_256x240.png
create mode 100644 themes/pmahomme/jquery/images/ui-icons_cd0a0a_256x240.png
rename themes/{darkblue_orange => pmahomme}/jquery/jquery-ui-1.8.custom.css (100%)
create mode 100644 themes/pmahomme/layout.inc.php
create mode 100644 themes/pmahomme/screen.png
diff --git a/ChangeLog b/ChangeLog
index a73f0fb..9503204 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -140,6 +140,7 @@
- [interface] Indicate shared bookmarks in interface.
- patch #3176420 [Search] Ajaxify browse and delete criteria in DB Search,
thanks to Thilanka Kaushalya
+- [interface] New default theme pmahomme, dropped darkblue_orange theme.
3.3.10.0 (not yet released)
- patch #3147400 [structure] Aria table size printed as unknown,
diff --git a/libraries/config.default.php b/libraries/config.default.php
index 604030b..cd219d6 100644
--- a/libraries/config.default.php
+++ b/libraries/config.default.php
@@ -2453,7 +2453,7 @@ $cfg['ThemeManager'] = true;
*
* @global string $cfg['ThemeDefault']
*/
-$cfg['ThemeDefault'] = 'original';
+$cfg['ThemeDefault'] = 'pmahomme';
/**
* allow different theme for each configured server
diff --git a/po/nb.po b/po/nb.po
index 00df006..667599b 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta4-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-02-24 15:48+0100\n"
-"PO-Revision-Date: 2010-11-26 12:58+0200\n"
-"Last-Translator: <sven.erik.andersen(a)gmail.com>\n"
+"PO-Revision-Date: 2011-03-01 13:57+0200\n"
+"Last-Translator: <paalfe(a)gmail.com>\n"
"Language-Team: norwegian <no(a)li.org>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -2792,10 +2792,9 @@ msgid "Features"
msgstr "Egenskaper"
#: libraries/config/messages.inc.php:165
-#, fuzzy
#| msgid "Generate"
msgid "General"
-msgstr "Generer"
+msgstr "Generell"
#: libraries/config/messages.inc.php:166
msgid "Set some commonly used options"
@@ -2858,7 +2857,7 @@ msgstr "Hovedramme"
#: libraries/config/messages.inc.php:183
msgid "Microsoft Office"
-msgstr ""
+msgstr "Microsoft Office"
#: libraries/config/messages.inc.php:185
#, fuzzy
diff --git a/po/nl.po b/po/nl.po
index e1352a2..d78b202 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta4-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-02-24 15:48+0100\n"
-"PO-Revision-Date: 2011-02-24 00:10+0200\n"
-"Last-Translator: Herman van Rink <rink(a)initfour.nl>\n"
+"PO-Revision-Date: 2011-03-01 14:26+0200\n"
+"Last-Translator: Dieter Adriaenssens <ruleant(a)users.sourceforge.net>\n"
"Language-Team: dutch <nl(a)li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -103,7 +103,7 @@ msgstr "Ophalen van headers mislukt"
#: bs_disp_as_mime_type.php:41
msgid "Failed to open remote URL"
-msgstr "Openen van remote URL mislult"
+msgstr "Openen van webpagina op afstand mislukt"
#: changelog.php:32 license.php:28
#, php-format
diff --git a/themes/darkblue_orange/css/theme_right.css.php b/themes/darkblue_orange/css/theme_right.css.php
deleted file mode 100644
index 837354b..0000000
--- a/themes/darkblue_orange/css/theme_right.css.php
+++ /dev/null
@@ -1,1860 +0,0 @@
-<?php
-/* vim: set expandtab sw=4 ts=4 sts=4: */
-/**
- * main css file from theme Darkblue Orange
- *
- * @package phpMyAdmin-theme
- * @subpackage Darkblue_orange
- */
-
-// unplanned execution path
-if (!defined('PMA_MINIMUM_COMMON')) {
- exit();
-}
-?>
-/******************************************************************************/
-/* general tags */
-html {
- font-size: <?php echo (null !== $GLOBALS['PMA_Config']->get('fontsize') ? $GLOBALS['PMA_Config']->get('fontsize') : (
- isset($_COOKIE['pma_fontsize']) ? $_COOKIE['pma_fontsize'] : '82%'));?>;
-}
-
-input, select, textarea {
- font-size: 1em;
-}
-
-body {
-<?php if (! empty($GLOBALS['cfg']['FontFamily'])) { ?>
- font-family: <?php echo $GLOBALS['cfg']['FontFamily']; ?>;
-<?php } ?>
- padding: 0;
- margin: 0.5em;
- color: <?php echo $GLOBALS['cfg']['MainColor']; ?>;
- background: <?php echo (isset($_SESSION['tmp_user_values']['custom_color']) ? $_SESSION['tmp_user_values']['custom_color'] : $GLOBALS['cfg']['MainBackground']); ?>;
-}
-
-<?php if (! empty($GLOBALS['cfg']['FontFamilyFixed'])) { ?>
-textarea, tt, pre, code {
- font-family: <?php echo $GLOBALS['cfg']['FontFamilyFixed']; ?>;
-}
-<?php } ?>
-h1 {
- font-size: 180%;
- font-weight: bold;
-}
-
-h2 {
- font-size: 130%;
- font-weight: bold;
-}
-
-h3 {
- font-size: 120%;
- font-weight: bold;
-}
-
-pre, tt, code {
- font-size: 110%;
-}
-
-a, a:link,
-a:visited,
-a:active {
- text-decoration: none;
- color: #333399;
- cursor: pointer;
-}
-
-a:hover {
- text-decoration: underline;
- color: #cc0000;
-}
-
-dfn {
- font-style: normal;
-}
-
-dfn:hover {
- font-style: normal;
- cursor: help;
-}
-
-th {
- font-weight: bold;
- color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
- background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
-}
-
-th a:link,
-th a:active,
-th a:visited {
- color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
- text-decoration: underline;
-}
-
-th a:hover {
- color: #666666;
- text-decoration: none;
-}
-
-a img {
- border: 0;
-}
-
-hr {
- color: #666699;
- background-color: #6666cc;
- border: 0;
- height: 1px;
-}
-
-form {
- padding: 0;
- margin: 0;
- display: inline;
-}
-
-textarea {
- overflow: visible;
- height: <?php echo ceil($GLOBALS['cfg']['TextareaRows'] * 1.2); ?>em;
-}
-
-fieldset {
- margin-top: 1em;
- border: #666699 solid 1px;
- padding: 0.5em;
-}
-
-fieldset fieldset {
- margin: 0.8em;
-}
-
-fieldset legend {
- background: <?php echo $GLOBALS['cfg']['MainBackground']; ?>;
- font-weight: bold;
- color: #444444;
- padding: 2px 2px 2px 2px;
-}
-
-/* buttons in some browsers (eg. Konqueror) are block elements,
- this breaks design */
-button {
- display: inline;
-}
-
-table caption,
-table th,
-table td {
- padding: 0.1em 0.5em 0.1em 0.5em;
- margin: 0.1em;
- vertical-align: top;
-}
-
-img,
-input,
-select,
-button {
- vertical-align: middle;
-}
-
-
-/******************************************************************************/
-/* classes */
-div.tools {
- border: 1px solid #000000;
- padding: 0.2em;
-}
-
-div.tools,
-fieldset.tblFooters {
- margin-top: 0;
- margin-bottom: 0.5em;
- /* avoid a thick line since this should be used under another fieldset */
- border-top: 0;
- text-align: <?php echo $right; ?>;
- float: none;
- clear: both;
-}
-
-div.null_div {
- height: 20px;
- text-align: center;
- font-style:normal;
- min-width:60px;
-}
-
-fieldset .formelement {
- float: <?php echo $left; ?>;
- margin-<?php echo $right; ?>: 0.5em;
- /* IE */
- white-space: nowrap;
-}
-
-/* revert for Gecko */
-fieldset div[class=formelement] {
- white-space: normal;
-}
-
-button.mult_submit {
- border: none;
- background-color: transparent;
-}
-
-/* odd items 1,3,5,7,... */
-table tr.odd th,
-.odd {
- background: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
-}
-
-/* even items 2,4,6,8,... */
-table tr.even th,
-.even {
- background: <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
-}
-
-/* odd table rows 1,3,5,7,... */
-table tr.odd th,
-table tr.odd {
- background-image: none;
- background: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
- text-align: <?php echo $left; ?>;
-}
-
-/* even table rows 2,4,6,8,... */
-table tr.even th,
-table tr.even {
- background-image: none;
- background: <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
- text-align: <?php echo $left; ?>;
-}
-
-<?php if ($GLOBALS['cfg']['BrowseMarkerEnable']) { ?>
-/* marked table rows */
-td.marked,
-table tr.marked th,
-table tr.marked {
- background: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
- color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
-}
-<?php } ?>
-
-<?php if ($GLOBALS['cfg']['BrowsePointerEnable']) { ?>
-/* hovered items */
-.odd:hover,
-.even:hover,
-.hover,
-.structure_actions_dropdown {
- background: <?php echo $GLOBALS['cfg']['BrowsePointerBackground']; ?>;
- color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
-}
-
-/* hovered table rows */
-table tr.odd:hover th,
-table tr.even:hover th,
-table tr.hover th {
- background: <?php echo $GLOBALS['cfg']['BrowsePointerBackground']; ?>;
- color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
-}
-<?php } ?>
-
-/**
- * marks table rows/cells if the db field is in a where condition
- */
-tr.condition th,
-tr.condition td,
-td.condition,
-th.condition {
- border: 1px solid <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
-}
-
-/**
- * cells with the value NULL
- */
-td.null {
- font-style: italic;
- text-align: <?php echo $right; ?>;
-}
-
-table .value {
- text-align: <?php echo $right; ?>;
- white-space: normal;
-}
-/* IE doesnt handles 'pre' right */
-table [class=value] {
- white-space: normal;
-}
-
-
-<?php if (! empty($GLOBALS['cfg']['FontFamilyFixed'])) { ?>
-.value {
- font-family: <?php echo $GLOBALS['cfg']['FontFamilyFixed']; ?>;
-}
-<?php } ?>
-.value .attention {
- color: red;
- font-weight: bold;
-}
-.value .allfine {
- color: green;
-}
-
-
-img.lightbulb {
- cursor: pointer;
-}
-
-.pdflayout {
- overflow: hidden;
- clip: inherit;
- background-color: #FFFFFF;
- display: none;
- border: 1px solid #000000;
- position: relative;
-}
-
-.pdflayout_table {
- background: #ff9900;
- color: #000000;
- overflow: hidden;
- clip: inherit;
- z-index: 2;
- display: inline;
- visibility: inherit;
- cursor: move;
- position: absolute;
- font-size: 110%;
- border: 1px dashed #000000;
-}
-
-/* MySQL Parser */
-.syntax {
-}
-
-.syntax a {
- text-decoration: none;
- border-bottom:1px dotted black;
-}
-
-.syntax_comment {
- padding-left: 4pt;
- padding-right: 4pt;
-}
-
-.syntax_digit {
-}
-
-.syntax_digit_hex {
-}
-
-.syntax_digit_integer {
-}
-
-.syntax_digit_float {
-}
-
-.syntax_punct {
-}
-
-.syntax_alpha {
-}
-
-.syntax_alpha_columnType {
- text-transform: uppercase;
-}
-
-.syntax_alpha_columnAttrib {
- text-transform: uppercase;
-}
-
-.syntax_alpha_reservedWord {
- text-transform: uppercase;
- font-weight: bold;
-}
-
-.syntax_alpha_functionName {
- text-transform: uppercase;
-}
-
-.syntax_alpha_identifier {
-}
-
-.syntax_alpha_charset {
-}
-
-.syntax_alpha_variable {
-}
-
-.syntax_quote {
- white-space: pre;
-}
-
-.syntax_quote_backtick {
-}
-
-/* leave some space between icons and text */
-.icon, img.footnotemarker {
- vertical-align: middle;
- margin-right: 0.3em;
- margin-left: 0.3em;
-}
-
-img.footnotemarker {
- display: none;
-}
-
-/* no extra space in table cells */
-td .icon {
- margin: 0;
-}
-
-.selectallarrow {
- margin-<?php echo $right; ?>: 0.3em;
- margin-<?php echo $left; ?>: 0.6em;
-}
-
-/* message boxes: warning, error, confirmation */
-.success h1,
-.notice h1,
-.warning h1,
-div.error h1 {
- border-bottom: 2px solid;
- font-weight: bold;
- text-align: <?php echo $left; ?>;
- margin: 0 0 0.2em 0;
-}
-
-div.success,
-div.notice,
-div.warning,
-div.error,
-div.footnotes {
- margin: 0.3em 0 0 0;
- border: 2px solid;
- width: 90%;
- <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
- background-repeat: no-repeat;
- <?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
- background-position: 10px 50%;
- padding: 0.1em 0.1em 0.1em 36px;
- <?php } else { ?>
- background-position: 99% 50%;
- padding: 10px 5% 10px 10px;
- <?php } ?>
- <?php } else { ?>
- padding: 0.3em;
- <?php } ?>
-}
-
-.success {
- color: #000000;
- background-color: #f0fff0;
-}
-h1.success,
-div.success {
- border-color: #00FF00;
- <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
- background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_success.png);
- background-repeat: no-repeat;
- <?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
- background-position: 5px 50%;
- padding: 0.2em 0.2em 0.2em 25px;
- <?php } else { ?>
- background-position: 97% 50%;
- padding: 0.2em 25px 0.2em 0.2em;
- <?php } ?>
- <?php } ?>
-}
-.success h1 {
- border-color: #00FF00;
-}
-
-.notice, .footnotes {
- color: #000000;
- background-color: #FFFFDD;
-}
-h1.notice,
-div.notice,
-div.footnotes {
- border-color: #FFD700;
- <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
- background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_notice.png);
- background-repeat: no-repeat;
- <?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
- background-position: 5px 50%;
- padding: 0.2em 0.2em 0.2em 25px;
- <?php } else { ?>
- background-position: 97% 50%;
- padding: 0.2em 25px 0.2em 0.2em;
- <?php } ?>
- <?php } ?>
-}
-.notice h1 {
- border-color: #FFD700;
-}
-
-.warning {
- color: #CC0000;
- background-color: #FFFFCC;
-}
-p.warning,
-h1.warning,
-div.warning {
- border-color: #CC0000;
- <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
- background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_warn.png);
- background-repeat: no-repeat;
- <?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
- background-position: 5px 50%;
- padding: 0.2em 0.2em 0.2em 25px;
- <?php } else { ?>
- background-position: 97% 50%;
- padding: 0.2em 25px 0.2em 0.2em;
- <?php } ?>
- <?php } ?>
-}
-.warning h1 {
- border-color: #cc0000;
-}
-
-.error {
- background-color: #FFFFCC;
- color: #ff0000;
-}
-
-h1.error,
-div.error {
- border-color: #ff0000;
- <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
- background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_error.png);
- background-repeat: no-repeat;
- <?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
- background-position: 5px 50%;
- padding: 0.2em 0.2em 0.2em 25px;
- <?php } else { ?>
- background-position: 97% 50%;
- padding: 0.2em 25px 0.2em 0.2em;
- <?php } ?>
- <?php } ?>
-}
-div.error h1 {
- border-color: #ff0000;
-}
-
-.confirmation {
- background-color: #FFFFCC;
-}
-fieldset.confirmation {
- border: 0.1em solid #FF0000;
-}
-fieldset.confirmation legend {
- border-left: 0.1em solid #FF0000;
- border-right: 0.1em solid #FF0000;
- font-weight: bold;
- <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
- background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_really.png);
- background-repeat: no-repeat;
- <?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
- background-position: 5px 50%;
- padding: 0.2em 0.2em 0.2em 25px;
- <?php } else { ?>
- background-position: 97% 50%;
- padding: 0.2em 25px 0.2em 0.2em;
- <?php } ?>
- <?php } ?>
-}
-/* end messageboxes */
-
-
-.tblcomment {
- font-weight: normal;
- color: #000099;
-}
-
-.tblHeaders {
- font-weight: bold;
- color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
- background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
-}
-
-div.tools,
-.tblFooters {
- font-weight: normal;
- color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
- background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
-}
-
-.tblHeaders a:link,
-.tblHeaders a:active,
-.tblHeaders a:visited,
-div.tools a:link,
-div.tools a:visited,
-div.tools a:active,
-.tblFooters a:link,
-.tblFooters a:active,
-.tblFooters a:visited {
- color: #ffffcc;
- text-decoration: underline;
-}
-
-.tblHeaders a:hover,
-div.tools a:hover,
-.tblFooters a:hover {
- text-decoration: none;
- color: #ffffff;
-}
-
-/* forbidden, no privilegs */
-.noPrivileges {
- color: #cc0000;
- font-weight: bold;
-}
-
-/* disabled text */
-.disabled,
-.disabled a:link,
-.disabled a:active,
-.disabled a:visited {
- color: #666666;
-}
-
-.disabled a:hover {
- color: #666666;
- text-decoration: none;
-}
-
-tr.disabled td,
-td.disabled {
- background-color: #cccccc;
-}
-
-.nowrap {
- white-space: nowrap;
-}
-
-/**
- * login form
- */
-body.loginform h1,
-body.loginform a.logo {
- display: block;
- text-align: center;
-}
-
-body.loginform {
- text-align: center;
-}
-
-body.loginform div.container {
- text-align: <?php echo $left; ?>;
- width: 30em;
- margin: 0 auto;
-}
-
-form.login label {
- float: <?php echo $left; ?>;
- width: 10em;
- font-weight: bolder;
-}
-
-.commented_column {
- border-bottom: 1px dashed black;
-}
-
-.column_attribute {
- font-size: 70%;
-}
-
-/******************************************************************************/
-/* specific elements */
-
-/* topmenu */
-ul#topmenu, ul#topmenu2, ul.tabs {
- font-weight: bold;
- list-style-type: none;
- margin: 0;
- padding: 0;
-}
-
-ul#topmenu2 {
- margin: 0.25em 0.5em 0;
- height: 2em;
- clear: both;
-}
-
-ul#topmenu li, ul#topmenu2 li {
- float: <?php echo $left; ?>;
- margin: 0;
- padding: 0;
- vertical-align: middle;
-}
-
-#topmenu img, #topmenu2 img {
- vertical-align: middle;
- margin-<?php echo $right; ?>: 0.1em;
-}
-
-/* default tab styles */
-ul#topmenu a, ul#topmenu span {
- display: block;
- margin: 2px 2px 0;
- padding: 2px 2px 0;
- white-space: nowrap;
-}
-
-ul#topmenu ul a {
- margin: 0;
- padding-bottom: 2px;
-}
-
-ul#topmenu .submenu {
- position: relative;
- display: none;
-}
-ul#topmenu .shown {
- display: block;
-}
-
-ul#topmenu ul {
- padding: 0;
- margin: 0;
- position: absolute;
- right: 0;
- list-style-type: none;
- display: none;
- border: 1px #666 solid;
-}
-
-ul#topmenu li:hover ul, ul#topmenu .submenuhover ul {
- display: block;
-}
-
-ul#topmenu ul li {
- width: 100%;
-}
-
-ul#topmenu2 a {
- display: block;
- margin: 0.1em;
- padding: 0.2em;
- white-space: nowrap;
-}
-
-/* disabled tabs */
-ul#topmenu span.tab {
- color: #666666;
-}
-
-/* disabled drop/empty tabs */
-ul#topmenu span.tabcaution {
- color: #ff6666;
-}
-
-/* enabled drop/empty tabs */
-ul#topmenu a.tabcaution {
- color: #FF0000;
-}
-ul#topmenu a.tabcaution:hover {
- color: #FFFFFF;
- background-color: #FF0000;
-}
-fieldset.caution a {
- color: #FF0000;
-}
-fieldset.caution a:hover {
- color: #ffffff;
- background-color: #FF0000;
-}
-
-<?php if ($GLOBALS['cfg']['LightTabs']) { ?>
-/* active tab */
-ul#topmenu a.tabactive, ul#topmenu2 a.tabactive {
- color: black;
-}
-
-ul#topmenu ul {
- background: <?php echo $GLOBALS['cfg']['MainBackground']; ?>;
-}
-<?php } else { ?>
-#topmenu {
- margin-top: 0.5em;
- padding: 0.1em 0.3em 0.1em 0.3em;
-}
-
-ul#topmenu ul {
- -moz-box-shadow: 2px 2px 3px #666;
- -webkit-box-shadow: 2px 2px 3px #666;
- box-shadow: 2px 2px 3px #666;
-}
-
-ul#topmenu > li {
- border-bottom: 1pt solid black;
-}
-
-/* default tab styles */
-ul#topmenu a, ul#topmenu span {
- background-color: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
- border: 0 solid <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
- border-width: 1pt 1pt 0 1pt;
- -moz-border-radius: 0.4em 0.4em 0 0;
- border-radius: 0.4em 0.4em 0 0;
-}
-
-ul#topmenu ul a {
- border-width: 1pt 0 0 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
-
-ul#topmenu ul li:first-child a {
- border-width: 0;
-}
-
-/* enabled hover/active tabs */
-ul#topmenu > li > a:hover,
-ul#topmenu > li > .tabactive {
- margin: 0;
- padding: 2px 4px;
- text-decoration: none;
-}
-
-ul#topmenu ul a:hover,
-ul#topmenu ul .tabactive {
- text-decoration: none;
-}
-
-ul#topmenu a.tab:hover,
-ul#topmenu .tabactive {
- background-color: <?php echo $GLOBALS['cfg']['MainBackground']; ?>;
-}
-
-ul#topmenu2 a.tab:hover,
-ul#topmenu2 a.tabactive {
- background-color: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
- -moz-border-radius: 0.3em;
- border-radius: 0.3em;
- text-decoration: none;
-}
-
-/* to be able to cancel the bottom border, use <li class="active"> */
-ul#topmenu > li.active {
- border-bottom: 1pt solid <?php echo $GLOBALS['cfg']['MainBackground']; ?>;
-}
-
-/* disabled drop/empty tabs */
-ul#topmenu span.tab,
-a.warning,
-ul#topmenu span.tabcaution {
- cursor: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>error.ico), default;
-}
-<?php } ?>
-/* end topmenu */
-
-
-/* Calendar */
-table.calendar {
- width: 100%;
-}
-table.calendar td {
- text-align: center;
-}
-table.calendar td a {
- display: block;
-}
-
-table.calendar td a:hover {
- background-color: #CCFFCC;
-}
-
-table.calendar th {
- background-color: #D3DCE3;
-}
-
-table.calendar td.selected {
- background-color: #FFCC99;
-}
-
-img.calendar {
- border: none;
-}
-form.clock {
- text-align: center;
-}
-/* end Calendar */
-
-
-/* table stats */
-div#tablestatistics {
- border-bottom: 0.1em solid #669999;
- margin-bottom: 0.5em;
- padding-bottom: 0.5em;
-}
-
-div#tablestatistics table {
- float: <?php echo $left; ?>;
- margin-bottom: 0.5em;
- margin-<?php echo $right; ?>: 0.5em;
-}
-
-div#tablestatistics table caption {
- margin-<?php echo $right; ?>: 0.5em;
-}
-/* END table stats */
-
-
-/* server privileges */
-#tableuserrights td,
-#tablespecificuserrights td,
-#tabledatabases td {
- vertical-align: middle;
-}
-/* END server privileges */
-
-
-
-/* Heading */
-#serverinfo {
- font-weight: bold;
- margin-bottom: 0.5em;
-}
-
-#serverinfo .item {
- white-space: nowrap;
-}
-
-#span_table_comment {
- font-weight: normal;
- font-style: italic;
- white-space: nowrap;
-}
-
-#serverinfo img {
- margin: 0 0.1em 0 0.1em;
-}
-
-/* some styles for IDs: */
-#buttonNo {
- color: #CC0000;
- font-weight: bold;
- padding: 0 10px 0 10px;
-}
-
-#buttonYes {
- color: #006600;
- font-weight: bold;
- padding: 0 10px 0 10px;
-}
-
-#buttonGo {
- color: #006600;
- font-weight: bold;
- padding: 0 10px 0 10px;
-}
-
-#listTable {
- width: 260px;
-}
-
-#textSqlquery {
- width: 450px;
-}
-
-#textSQLDUMP {
- width: 95%;
- height: 95%;
- font-family: "Courier New", Courier, mono;
- font-size: 110%;
-}
-
-#TooltipContainer {
- position: absolute;
- z-index: 99;
- width: 20em;
- height: auto;
- overflow: visible;
- visibility: hidden;
- background-color: #ffffcc;
- color: #006600;
- border: 0.1em solid #000000;
- padding: 0.5em;
-}
-
-/* user privileges */
-#fieldset_add_user_login div.item {
- border-bottom: 1px solid silver;
- padding-bottom: 0.3em;
- margin-bottom: 0.3em;
-}
-
-#fieldset_add_user_login label {
- float: <?php echo $left; ?>;
- display: block;
- width: 10em;
- max-width: 100%;
- text-align: <?php echo $right; ?>;
- padding-<?php echo $right; ?>: 0.5em;
-}
-
-#fieldset_add_user_login span.options #select_pred_username,
-#fieldset_add_user_login span.options #select_pred_hostname,
-#fieldset_add_user_login span.options #select_pred_password {
- width: 100%;
- max-width: 100%;
-}
-
-#fieldset_add_user_login span.options {
- float: <?php echo $left; ?>;
- display: block;
- width: 12em;
- max-width: 100%;
- padding-<?php echo $right; ?>: 0.5em;
-}
-
-#fieldset_add_user_login input {
- width: 12em;
- clear: <?php echo $right; ?>;
- max-width: 100%;
-}
-
-#fieldset_add_user_login span.options input {
- width: auto;
-}
-
-#fieldset_user_priv div.item {
- float: <?php echo $left; ?>;
- width: 9em;
- max-width: 100%;
-}
-
-#fieldset_user_priv div.item div.item {
- float: none;
-}
-
-#fieldset_user_priv div.item label {
- white-space: nowrap;
-}
-
-#fieldset_user_priv div.item select {
- width: 100%;
-}
-
-#fieldset_user_global_rights fieldset {
- float: <?php echo $left; ?>;
-}
-/* END user privileges */
-
-
-/* serverstatus */
-div#serverstatus table caption a.top {
- float: <?php echo $right; ?>;
-}
-
-div#serverstatus div#serverstatusqueriesdetails table,
-div#serverstatus table#serverstatustraffic_src,
-div#serverstatus table#serverstatustraffic_trg,
-div#serverstatus table#serverstatusconnections {
- float: <?php echo $left; ?>;
-}
-
-#serverstatussection,
-.clearfloat {
- clear: both;
-}
-div#serverstatussection table {
- width: 100%;
- margin-bottom: 1em;
-}
-div#serverstatussection table .name {
- width: 18em;
-}
-div#serverstatussection table .value {
- width: 6em;
-}
-
-div#serverstatus table tbody td.descr a,
-div#serverstatus table .tblFooters a {
- white-space: nowrap;
-}
-div#serverstatus div#statuslinks a:before,
-div#serverstatus div#sectionlinks a:before,
-div#serverstatus table tbody td.descr a:before,
-div#serverstatus table .tblFooters a:before {
- content: '[';
-}
-div#serverstatus div#statuslinks a:after,
-div#serverstatus div#sectionlinks a:after,
-div#serverstatus table tbody td.descr a:after,
-div#serverstatus table .tblFooters a:after {
- content: ']';
-}
-/* end serverstatus */
-
-/* querywindow */
-body#bodyquerywindow {
- margin: 0;
- padding: 0;
- background-image: none;
- background-color: #F5F5F5;
-}
-
-div#querywindowcontainer {
- margin: 0;
- padding: 0;
- width: 100%;
-}
-
-div#querywindowcontainer fieldset {
- margin-top: 0;
-}
-/* END querywindow */
-
-
-/* querybox */
-
-div#sqlquerycontainer {
- float: <?php echo $left; ?>;
- width: 69%;
- /* height: 15em; */
-}
-
-div#tablefieldscontainer {
- float: <?php echo $right; ?>;
- width: 29%;
- /* height: 15em; */
-}
-
-div#tablefieldscontainer select {
- width: 100%;
- /* height: 12em; */
-}
-
-textarea#sqlquery {
- width: 100%;
- /* height: 100%; */
-}
-textarea#sql_query_edit{
- height:7em;
- width: 95%;
- display:block;
-}
-div#queryboxcontainer div#bookmarkoptions {
- margin-top: 0.5em;
-}
-/* end querybox */
-
-/* main page */
-#maincontainer {
- background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>logo_right.png);
- background-position: <?php echo $right; ?> bottom;
- background-repeat: no-repeat;
-}
-
-#mysqlmaininformation,
-#pmamaininformation {
- float: <?php echo $left; ?>;
- width: 49%;
-}
-
-#maincontainer ul {
- list-style-type: disc;
- vertical-align: middle;
-}
-
-#maincontainer li {
- margin-bottom: 0.3em;
-}
-/* END main page */
-
-
-<?php if ($GLOBALS['cfg']['MainPageIconic']) { ?>
-/* iconic view for ul items */
-li#li_create_database {
- list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_newdb.png);
-}
-
-li#li_select_lang {
- list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_lang.png);
-}
-
-li#li_select_mysql_collation {
- list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asci.png);
-}
-
-li#li_select_theme{
- list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_theme.png);
-}
-
-li#li_user_info{
- /* list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png); */
-}
-
-li#li_mysql_status{
- list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_status.png);
-}
-
-li#li_mysql_variables{
- list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_vars.png);
-}
-
-li#li_mysql_processes{
- list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_process.png);
-}
-
-li#li_mysql_collations{
- list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asci.png);
-}
-
-li#li_mysql_engines{
- list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_engine.png);
-}
-
-li#li_mysql_binlogs {
- list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_tbl.png);
-}
-
-li#li_mysql_databases {
- list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_db.png);
-}
-
-li#li_export {
- list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_export.png);
-}
-
-li#li_import {
- list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_import.png);
-}
-
-li#li_change_password {
- list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_passwd.png);
-}
-
-li#li_log_out {
- list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_loggoff.png);
-}
-
-li#li_mysql_privilegs{
- list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png);
-}
-
-li#li_switch_dbstats {
- list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_dbstatistics.png);
-}
-
-li#li_flush_privileges {
- list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_reload.png);
-}
-
-li#li_user_preferences {
- list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_tblops.png);
-}
-/* END iconic view for ul items */
-<?php } /* end if $GLOBALS['cfg']['MainPageIconic'] */ ?>
-
-
-#body_browse_foreigners {
- background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
- margin: 0.5em 0.5em 0 0.5em;
-}
-
-#bodyquerywindow {
- background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
-}
-
-#bodythemes {
- width: 500px;
- margin: auto;
- text-align: center;
-}
-
-#bodythemes img {
- border: 0.1em solid black;
-}
-
-#bodythemes a:hover img {
- border: 0.1em solid red;
-}
-
-#fieldset_select_fields {
- float: <?php echo $left; ?>;
-}
-
-#selflink {
- clear: both;
- display: block;
- margin-top: 1em;
- margin-bottom: 1em;
- width: 100%;
- border-top: 0.1em solid silver;
- text-align: <?php echo $right; ?>;
-}
-
-#table_innodb_bufferpool_usage,
-#table_innodb_bufferpool_activity {
- float: <?php echo $left; ?>;
-}
-
-#div_mysql_charset_collations table {
- float: <?php echo $left; ?>;
-}
-
-#div_table_order {
- min-width: 48%;
- float: <?php echo $left; ?>;
-}
-
-#div_table_rename {
- min-width: 48%;
- float: <?php echo $left; ?>;
-}
-
-#div_table_copy, #div_partition_maintenance, #div_referential_integrity, #div_table_removal, #div_table_maintenance {
- min-width: 48%;
- float: <?php echo $left; ?>;
-}
-
-#div_table_options {
- clear: both;
- min-width: 48%;
- float: <?php echo $left; ?>;
-}
-
-#qbe_div_table_list {
- float: <?php echo $left; ?>;
-}
-
-#qbe_div_sql_query {
- float: <?php echo $left; ?>;
-}
-
-label.desc {
- width: 30em;
- float: <?php echo $left; ?>;
-}
-
-label.desc sup {
- position: absolute;
-}
-
-code.sql, div.sqlvalidate {
- display: block;
- padding: 0.3em;
- margin-top: 0;
- margin-bottom: 0;
- border: <?php echo $GLOBALS['cfg']['MainColor']; ?> solid 1px;
- border-top: 0;
- border-bottom: 0;
- max-height: 10em;
- overflow: auto;
- background: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
-}
-
-#main_pane_left {
- width: 60%;
- float: <?php echo $left; ?>;
- padding-top: 1em;
-}
-
-#main_pane_right {
- margin-<?php echo $left; ?>: 60%;
- padding-top: 1em;
- padding-<?php echo $left; ?>: 1em;
-}
-
-.group {
- border-<?php echo $left; ?>: 0.3em solid <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
- margin-bottom: 1em;
-}
-
-.group h2 {
- background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
- padding: 0.1em 0.3em;
- margin-top: 0;
-}
-
-.group-cnt {
- padding: 0 0 0 0.5em;
- display: inline-block;
- width: 98%;
-}
-
-textarea#partitiondefinition {
- height:3em;
-}
-
-/* for elements that should be revealed only via js */
-.hide {
- display: none;
-}
-
-#li_select_server {
- list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_host.png);
-}
-
-#list_server {
- list-style-image: none;
-}
-
-/**
- * Progress bar styles
- */
-div.upload_progress_bar_outer
-{
- border: 1px solid black;
- width: 202px;
-}
-
-div.upload_progress_bar_inner
-{
- background-color: <?php echo (isset($_SESSION['userconf']['custom_color']) ? $_SESSION['userconf']['custom_color'] : $GLOBALS['cfg']['NaviBackground']); ?>;
- width: 0px;
- height: 12px;
- margin: 1px;
-}
-
-table#serverconnection_src_remote,
-table#serverconnection_trg_remote,
-table#serverconnection_src_local,
-table#serverconnection_trg_local {
- float:left;
-}
-
-#NavFilter {
- display: none;
-}
-
-#clear_fast_filter {
- background: white;
- color: black;
- cursor: pointer;
- padding: 0;
- margin: 3px 5px 0 -23px;
- position: relative;
- float: right;
-}
-
-#fast_filter {
- width: 100%;
- padding:2px 0px;
- margin:0;
- border:0;
-}
-/**
- * Validation error message styles
- */
-.invalid_value
-{background:#F00;}
-
-/**
- * Ajax notification styling
- */
- .ajax_notification {
- top: 0px;
- position: fixed;
- margin-top: 0;
- margin-right: auto;
- margin-bottom: 0;
- margin-left: auto;
- padding: 3px 5px;
- min-width: 70px;
- max-width: 350px;
- background-color: #FF9900;
- z-index: 1100;
- text-align: center;
- display: block;
- left: 0;
- right: 0;
- background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>ajax_clock_small.gif);
- background-repeat: no-repeat;
- background-position: 2%;
- }
-
- #loading_parent {
- position: relative;
- width: 100%;
- }
-
- /**
- * Export and Import styles
- */
-.exportoptions h3, .importoptions h3 {
- border-bottom: 1px #999999 solid;
-}
-
-.exportoptions ul, .importoptions ul, .format_specific_options ul {
- list-style-type: none;
- margin-bottom: 15px;
-}
-
-.exportoptions li, .importoptions li {
- margin: 7px;
-}
-.exportoptions label, .importoptions label, .exportoptions p, .importoptions p {
- margin: 5px;
- float: none;
-}
-
-#csv_options label.desc, #ldi_options label.desc, #latex_options label.desc, #output label.desc{
- float: left;
- width: 15em;
-}
-
-.exportoptions, .importoptions {
- margin: 20px 30px 30px 10px
-}
-
-.exportoptions #buttonGo, .importoptions #buttonGo {
- padding: 5px 30px;
- -moz-border-radius: 11px;
- -webkit-border-radius: 11px;
- border-radius: 11px;
- background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
- background: -moz-linear-gradient(top, #ffffff, #cccccc);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
- border: 1px solid #444444;
- cursor: pointer;
-}
-
-.format_specific_options h3 {
- margin: 10px 0px 0px 10px;
- border: 0px;
-}
-
-.format_specific_options {
- border: 1px solid #999999;
- margin: 7px 0px;
- padding: 3px;
-}
-
-p.desc {
- margin: 5px;
-}
-
-/**
- * Export styles only
- */
-select#db_select, select#table_select {
- width: 400px;
-}
-
-.export_sub_options {
- margin: 20px 0px 0px 30px;
-}
-
-.export_sub_options h4 {
- border-bottom: 1px #999999 solid;
-}
-
-#quick_or_custom, #output_quick_export {
- display: none;
-}
-
-/**
- * Import styles only
- */
-
-.importoptions #import_notification {
- margin: 10px 0px;
- font-style: italic;
-}
-
-input#input_import_file {
- margin: 5px;
-}
-
-.formelementrow {
- margin: 5px 0px 5px 0px;
-}
-
-/**
- * ENUM/SET editor styles
- */
-p.enum_notice {
- margin: 5px 2px;
- font-size: 80%;
-}
-
-#enum_editor {
- display: none;
- position: fixed;
- _position: absolute; /* hack for IE */
- z-index: 101;
- overflow: auto;
-}
-
-#enum_editor_no_js {
- margin: auto auto;
-}
-
-#enum_editor, #enum_editor_no_js {
- width: 50%;
- height: 80%;
- background: #D0DCE0;
- padding: 15px;
-}
-
-#popup_background {
- display: none;
- position: fixed;
- _position: absolute; /* hack for IE */
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- background: #000;
- z-index: 100;
-}
-
-a.close_enum_editor {
- float: right;
-}
-
-#enum_editor #values, #enum_editor_no_js #values {
- margin: 15px 0px;
-}
-
-#enum_editor #values input, #enum_editor_no_js #values input {
- margin: 5px 0px;
- float: top;
- width: 100%;
-}
-
-#enum_editor input, #enum_editor_no_js input {
- float: bottom;
-}
-
-#enum_editor_output {
- margin-top: 50px;
-}
-
-/**
- * Table structure styles
- */
-.structure_actions_dropdown {
- position: absolute;
- padding: 3px;
- display: none;
-}
-
-.structure_actions_dropdown a {
- display: block;
-}
-
-td.more_opts {
- display: none;
- white-space: nowrap;
-}
-
-/* config forms */
-.config-form ul.tabs {
- margin: 1.1em 0.2em 0;
- padding: 0 0 0.3em 0;
- list-style: none;
- font-weight: bold;
-}
-
-.config-form ul.tabs li {
- float: <?php echo $left; ?>;
-}
-
-.config-form ul.tabs li a {
- display: block;
- margin: 0.1em 0.2em 0;
- padding: 0.1em 0.4em;
- white-space: nowrap;
- text-decoration: none;
- border: 1px solid <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
- border-bottom: none;
-}
-
-.config-form ul.tabs li a:hover,
-.config-form ul.tabs li a:active,
-.config-form ul.tabs li a.active {
- margin: 0;
- padding: 0.1em 0.6em 0.2em;
-}
-
-.config-form ul.tabs li a.active {
- background-color: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
-}
-
-.config-form fieldset {
- margin-top: 0;
- padding: 0;
- clear: both;
- /*border-color: <?php echo $GLOBALS['cfg']['BgTwo']; ?>;*/
-}
-
-.config-form legend {
- display: none;
-}
-
-.config-form fieldset p {
- margin: 0;
- padding: 0.5em;
- background: <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
-}
-
-.config-form fieldset .errors { /* form error list */
- margin: 0 -2px 1em -2px;
- padding: 0.5em 1.5em;
- background: #FBEAD9;
- border: 0 #C83838 solid;
- border-width: 1px 0;
- list-style: none;
- font-family: sans-serif;
- font-size: small;
-}
-
-.config-form fieldset .inline_errors { /* field error list */
- margin: 0.3em 0.3em 0.3em 0;
- padding: 0;
- list-style: none;
- color: #9A0000;
- font-size: small;
-}
-
-.config-form fieldset th {
- padding: 0.3em 0.3em 0.3em 0.5em;
- text-align: left;
- vertical-align: top;
- width: 40%;
- background: transparent;
-}
-
-.config-form fieldset .doc, .config-form fieldset .disabled-notice {
- margin-left: 1em;
-}
-
-.config-form fieldset .disabled-notice {
- font-size: 80%;
- text-transform: uppercase;
- color: #E00;
- cursor: help;
-}
-
-.config-form fieldset td {
- padding-top: 0.3em;
- padding-bottom: 0.3em;
- vertical-align: top;
-}
-
-.config-form fieldset th small {
- display: block;
- font-weight: normal;
- font-family: sans-serif;
- font-size: x-small;
- color: #444;
-}
-
-.config-form fieldset th, .config-form fieldset td {
- border-top: 1px <?php echo $GLOBALS['cfg']['BgTwo']; ?> solid;
-}
-
-fieldset .group-header th {
- background: <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
-}
-
-fieldset .group-header + tr th {
- padding-top: 0.6em;
-}
-
-fieldset .group-field-1 th, fieldset .group-header-2 th {
- padding-left: 1.5em;
-}
-
-fieldset .group-field-2 th, fieldset .group-header-3 th {
- padding-left: 3em;
-}
-
-fieldset .group-field-3 th {
- padding-left: 4.5em;
-}
-
-fieldset .disabled-field th,
-fieldset .disabled-field th small,
-fieldset .disabled-field td {
- color: #777;
- background-color: #eee;
-}
-
-.config-form .lastrow {
- border-top: 1px #000 solid;
-}
-
-.config-form .lastrow {
- background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;;
- padding: 0.5em;
- text-align: center;
-}
-
-.config-form .lastrow input {
- font-weight: bold;
-}
-
-/* form elements */
-
-.config-form span.checkbox {
- padding: 2px;
- display: inline-block;
-}
-
-.config-form .custom { /* customized field */
- background: #FFC;
-}
-
-.config-form span.checkbox.custom {
- padding: 1px;
- border: 1px #EDEC90 solid;
- background: #FFC;
-}
-
-.config-form .field-error {
- border-color: #A11 !important;
-}
-
-.config-form input[type="text"],
-.config-form select,
-.config-form textarea {
- border: 1px #A7A6AA solid;
- height: auto;
-}
-
-.config-form input[type="text"]:focus,
-.config-form select:focus,
-.config-form textarea:focus {
- border: 1px #6676FF solid;
- background: #F7FBFF;
-}
-
-.config-form .field-comment-mark {
- font-family: serif;
- color: #00A;
- cursor: help;
- padding: 0 0.2em;
- font-weight: bold;
- font-style: italic;
-}
-
-.config-form .field-comment-warning {
- color: #A00;
-}
-
-/* error list */
-.config-form dd {
- margin-left: 0.5em;
-}
-
-.config-form dd:before {
- content: "\25B8 ";
-}
-
-.click-hide-message {
- cursor: pointer;
-}
-
-.prefsmanage_opts {
- margin-<?php echo $left; ?>: 2em;
-}
-
-#prefs_autoload {
- margin-bottom: 0.5em;
-}
diff --git a/themes/darkblue_orange/img/arrow_ltr.png b/themes/darkblue_orange/img/arrow_ltr.png
deleted file mode 100644
index fc79c56..0000000
Binary files a/themes/darkblue_orange/img/arrow_ltr.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/arrow_rtl.png b/themes/darkblue_orange/img/arrow_rtl.png
deleted file mode 100644
index 05df386..0000000
Binary files a/themes/darkblue_orange/img/arrow_rtl.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_bookmark.png b/themes/darkblue_orange/img/b_bookmark.png
deleted file mode 100644
index 2e62fb9..0000000
Binary files a/themes/darkblue_orange/img/b_bookmark.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_browse.png b/themes/darkblue_orange/img/b_browse.png
deleted file mode 100644
index d058d05..0000000
Binary files a/themes/darkblue_orange/img/b_browse.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_calendar.png b/themes/darkblue_orange/img/b_calendar.png
deleted file mode 100644
index fd72545..0000000
Binary files a/themes/darkblue_orange/img/b_calendar.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_chart.png b/themes/darkblue_orange/img/b_chart.png
deleted file mode 100644
index 5a2ed4b..0000000
Binary files a/themes/darkblue_orange/img/b_chart.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_comment.png b/themes/darkblue_orange/img/b_comment.png
deleted file mode 100644
index 1f4590b..0000000
Binary files a/themes/darkblue_orange/img/b_comment.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_dbstatistics.png b/themes/darkblue_orange/img/b_dbstatistics.png
deleted file mode 100644
index 7ec8df7..0000000
Binary files a/themes/darkblue_orange/img/b_dbstatistics.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_deltbl.png b/themes/darkblue_orange/img/b_deltbl.png
deleted file mode 100644
index bc85d92..0000000
Binary files a/themes/darkblue_orange/img/b_deltbl.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_docs.png b/themes/darkblue_orange/img/b_docs.png
deleted file mode 100644
index cf2153e..0000000
Binary files a/themes/darkblue_orange/img/b_docs.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_drop.png b/themes/darkblue_orange/img/b_drop.png
deleted file mode 100644
index d738eac..0000000
Binary files a/themes/darkblue_orange/img/b_drop.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_edit.png b/themes/darkblue_orange/img/b_edit.png
deleted file mode 100644
index 044e693..0000000
Binary files a/themes/darkblue_orange/img/b_edit.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_empty.png b/themes/darkblue_orange/img/b_empty.png
deleted file mode 100644
index b21558a..0000000
Binary files a/themes/darkblue_orange/img/b_empty.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_engine.png b/themes/darkblue_orange/img/b_engine.png
deleted file mode 100644
index 3099244..0000000
Binary files a/themes/darkblue_orange/img/b_engine.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_export.png b/themes/darkblue_orange/img/b_export.png
deleted file mode 100644
index dfe292c..0000000
Binary files a/themes/darkblue_orange/img/b_export.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_ftext.png b/themes/darkblue_orange/img/b_ftext.png
deleted file mode 100644
index 009c1ad..0000000
Binary files a/themes/darkblue_orange/img/b_ftext.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_help.png b/themes/darkblue_orange/img/b_help.png
deleted file mode 100644
index f741eee..0000000
Binary files a/themes/darkblue_orange/img/b_help.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_home.png b/themes/darkblue_orange/img/b_home.png
deleted file mode 100644
index 1db58f2..0000000
Binary files a/themes/darkblue_orange/img/b_home.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_import.png b/themes/darkblue_orange/img/b_import.png
deleted file mode 100644
index c90abe0..0000000
Binary files a/themes/darkblue_orange/img/b_import.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_index.png b/themes/darkblue_orange/img/b_index.png
deleted file mode 100644
index 39fb9bd..0000000
Binary files a/themes/darkblue_orange/img/b_index.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_info.png b/themes/darkblue_orange/img/b_info.png
deleted file mode 100644
index a9f4d47..0000000
Binary files a/themes/darkblue_orange/img/b_info.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_inline_edit.png b/themes/darkblue_orange/img/b_inline_edit.png
deleted file mode 100644
index a9d8264..0000000
Binary files a/themes/darkblue_orange/img/b_inline_edit.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_insrow.png b/themes/darkblue_orange/img/b_insrow.png
deleted file mode 100644
index e162d63..0000000
Binary files a/themes/darkblue_orange/img/b_insrow.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_minus.png b/themes/darkblue_orange/img/b_minus.png
deleted file mode 100644
index 5af8409..0000000
Binary files a/themes/darkblue_orange/img/b_minus.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_more.png b/themes/darkblue_orange/img/b_more.png
deleted file mode 100644
index 9ccecb1..0000000
Binary files a/themes/darkblue_orange/img/b_more.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_newdb.png b/themes/darkblue_orange/img/b_newdb.png
deleted file mode 100644
index e2d1d26..0000000
Binary files a/themes/darkblue_orange/img/b_newdb.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_newtbl.png b/themes/darkblue_orange/img/b_newtbl.png
deleted file mode 100644
index 0b8ac50..0000000
Binary files a/themes/darkblue_orange/img/b_newtbl.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_plus.png b/themes/darkblue_orange/img/b_plus.png
deleted file mode 100644
index 94b5df6..0000000
Binary files a/themes/darkblue_orange/img/b_plus.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_primary.png b/themes/darkblue_orange/img/b_primary.png
deleted file mode 100644
index 1a5883f..0000000
Binary files a/themes/darkblue_orange/img/b_primary.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_print.png b/themes/darkblue_orange/img/b_print.png
deleted file mode 100644
index 14f62d4..0000000
Binary files a/themes/darkblue_orange/img/b_print.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_props.png b/themes/darkblue_orange/img/b_props.png
deleted file mode 100644
index 79ea511..0000000
Binary files a/themes/darkblue_orange/img/b_props.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_relations.png b/themes/darkblue_orange/img/b_relations.png
deleted file mode 100644
index 41d8540..0000000
Binary files a/themes/darkblue_orange/img/b_relations.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_sbrowse.png b/themes/darkblue_orange/img/b_sbrowse.png
deleted file mode 100644
index 25a3c8d..0000000
Binary files a/themes/darkblue_orange/img/b_sbrowse.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_search.png b/themes/darkblue_orange/img/b_search.png
deleted file mode 100644
index 6032608..0000000
Binary files a/themes/darkblue_orange/img/b_search.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_selboard.png b/themes/darkblue_orange/img/b_selboard.png
deleted file mode 100644
index 183ca4f..0000000
Binary files a/themes/darkblue_orange/img/b_selboard.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_select.png b/themes/darkblue_orange/img/b_select.png
deleted file mode 100644
index 5559dfe..0000000
Binary files a/themes/darkblue_orange/img/b_select.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_snewtbl.png b/themes/darkblue_orange/img/b_snewtbl.png
deleted file mode 100644
index 1bd42b9..0000000
Binary files a/themes/darkblue_orange/img/b_snewtbl.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_sql.png b/themes/darkblue_orange/img/b_sql.png
deleted file mode 100644
index 7988dd9..0000000
Binary files a/themes/darkblue_orange/img/b_sql.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_sqlhelp.png b/themes/darkblue_orange/img/b_sqlhelp.png
deleted file mode 100644
index 7e6695b..0000000
Binary files a/themes/darkblue_orange/img/b_sqlhelp.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_tblanalyse.png b/themes/darkblue_orange/img/b_tblanalyse.png
deleted file mode 100644
index 84b599a..0000000
Binary files a/themes/darkblue_orange/img/b_tblanalyse.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_tblexport.png b/themes/darkblue_orange/img/b_tblexport.png
deleted file mode 100644
index 364c5ef..0000000
Binary files a/themes/darkblue_orange/img/b_tblexport.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_tblimport.png b/themes/darkblue_orange/img/b_tblimport.png
deleted file mode 100644
index 1d264cd..0000000
Binary files a/themes/darkblue_orange/img/b_tblimport.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_tblops.png b/themes/darkblue_orange/img/b_tblops.png
deleted file mode 100644
index 2a1b0cf..0000000
Binary files a/themes/darkblue_orange/img/b_tblops.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_tbloptimize.png b/themes/darkblue_orange/img/b_tbloptimize.png
deleted file mode 100644
index 1c3795b..0000000
Binary files a/themes/darkblue_orange/img/b_tbloptimize.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_tipp.png b/themes/darkblue_orange/img/b_tipp.png
deleted file mode 100644
index 6153f7f..0000000
Binary files a/themes/darkblue_orange/img/b_tipp.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_unique.png b/themes/darkblue_orange/img/b_unique.png
deleted file mode 100644
index 684a083..0000000
Binary files a/themes/darkblue_orange/img/b_unique.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_usradd.png b/themes/darkblue_orange/img/b_usradd.png
deleted file mode 100644
index a843a35..0000000
Binary files a/themes/darkblue_orange/img/b_usradd.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_usrcheck.png b/themes/darkblue_orange/img/b_usrcheck.png
deleted file mode 100644
index c11c0c4..0000000
Binary files a/themes/darkblue_orange/img/b_usrcheck.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_usrdrop.png b/themes/darkblue_orange/img/b_usrdrop.png
deleted file mode 100644
index fe85b1f..0000000
Binary files a/themes/darkblue_orange/img/b_usrdrop.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_usredit.png b/themes/darkblue_orange/img/b_usredit.png
deleted file mode 100644
index 3b4e9c3..0000000
Binary files a/themes/darkblue_orange/img/b_usredit.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_usrlist.png b/themes/darkblue_orange/img/b_usrlist.png
deleted file mode 100644
index d45b52e..0000000
Binary files a/themes/darkblue_orange/img/b_usrlist.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_view.png b/themes/darkblue_orange/img/b_view.png
deleted file mode 100644
index 4cf86bb..0000000
Binary files a/themes/darkblue_orange/img/b_view.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/b_views.png b/themes/darkblue_orange/img/b_views.png
deleted file mode 100644
index 55f4341..0000000
Binary files a/themes/darkblue_orange/img/b_views.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/bd_browse.png b/themes/darkblue_orange/img/bd_browse.png
deleted file mode 100644
index 66dc986..0000000
Binary files a/themes/darkblue_orange/img/bd_browse.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/bd_deltbl.png b/themes/darkblue_orange/img/bd_deltbl.png
deleted file mode 100644
index 90ec21a..0000000
Binary files a/themes/darkblue_orange/img/bd_deltbl.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/bd_drop.png b/themes/darkblue_orange/img/bd_drop.png
deleted file mode 100644
index 08c60c0..0000000
Binary files a/themes/darkblue_orange/img/bd_drop.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/bd_empty.png b/themes/darkblue_orange/img/bd_empty.png
deleted file mode 100644
index 8a86a36..0000000
Binary files a/themes/darkblue_orange/img/bd_empty.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/bd_ftext.png b/themes/darkblue_orange/img/bd_ftext.png
deleted file mode 100644
index f31ac39..0000000
Binary files a/themes/darkblue_orange/img/bd_ftext.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/bd_index.png b/themes/darkblue_orange/img/bd_index.png
deleted file mode 100644
index 8756d32..0000000
Binary files a/themes/darkblue_orange/img/bd_index.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/bd_insrow.png b/themes/darkblue_orange/img/bd_insrow.png
deleted file mode 100644
index 295948f..0000000
Binary files a/themes/darkblue_orange/img/bd_insrow.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/bd_primary.png b/themes/darkblue_orange/img/bd_primary.png
deleted file mode 100644
index 9544774..0000000
Binary files a/themes/darkblue_orange/img/bd_primary.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/bd_sbrowse.png b/themes/darkblue_orange/img/bd_sbrowse.png
deleted file mode 100644
index 78fa9fb..0000000
Binary files a/themes/darkblue_orange/img/bd_sbrowse.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/bd_select.png b/themes/darkblue_orange/img/bd_select.png
deleted file mode 100644
index bf065db..0000000
Binary files a/themes/darkblue_orange/img/bd_select.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/bd_unique.png b/themes/darkblue_orange/img/bd_unique.png
deleted file mode 100644
index 28f9fb3..0000000
Binary files a/themes/darkblue_orange/img/bd_unique.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/error.ico b/themes/darkblue_orange/img/error.ico
deleted file mode 100644
index 41d26d6..0000000
Binary files a/themes/darkblue_orange/img/error.ico and /dev/null differ
diff --git a/themes/darkblue_orange/img/item_ltr.png b/themes/darkblue_orange/img/item_ltr.png
deleted file mode 100644
index d69d1a2..0000000
Binary files a/themes/darkblue_orange/img/item_ltr.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/item_rtl.png b/themes/darkblue_orange/img/item_rtl.png
deleted file mode 100644
index 7462602..0000000
Binary files a/themes/darkblue_orange/img/item_rtl.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/logo_left.png b/themes/darkblue_orange/img/logo_left.png
deleted file mode 100644
index 16347ab..0000000
Binary files a/themes/darkblue_orange/img/logo_left.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/logo_right.png b/themes/darkblue_orange/img/logo_right.png
deleted file mode 100644
index 434657e..0000000
Binary files a/themes/darkblue_orange/img/logo_right.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/more.png b/themes/darkblue_orange/img/more.png
deleted file mode 100644
index 941da78..0000000
Binary files a/themes/darkblue_orange/img/more.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_asc.png b/themes/darkblue_orange/img/s_asc.png
deleted file mode 100644
index 10af1fb..0000000
Binary files a/themes/darkblue_orange/img/s_asc.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_asci.png b/themes/darkblue_orange/img/s_asci.png
deleted file mode 100644
index 4b4d23e..0000000
Binary files a/themes/darkblue_orange/img/s_asci.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_cancel.png b/themes/darkblue_orange/img/s_cancel.png
deleted file mode 100644
index fd090f9..0000000
Binary files a/themes/darkblue_orange/img/s_cancel.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_db.png b/themes/darkblue_orange/img/s_db.png
deleted file mode 100644
index c92c1de..0000000
Binary files a/themes/darkblue_orange/img/s_db.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_desc.png b/themes/darkblue_orange/img/s_desc.png
deleted file mode 100644
index 57c9e54..0000000
Binary files a/themes/darkblue_orange/img/s_desc.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_error.png b/themes/darkblue_orange/img/s_error.png
deleted file mode 100644
index 5fb06ba..0000000
Binary files a/themes/darkblue_orange/img/s_error.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_error2.png b/themes/darkblue_orange/img/s_error2.png
deleted file mode 100644
index 772cabf..0000000
Binary files a/themes/darkblue_orange/img/s_error2.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_fulltext.png b/themes/darkblue_orange/img/s_fulltext.png
deleted file mode 100644
index c017c2e..0000000
Binary files a/themes/darkblue_orange/img/s_fulltext.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_host.png b/themes/darkblue_orange/img/s_host.png
deleted file mode 100644
index 6f70eda..0000000
Binary files a/themes/darkblue_orange/img/s_host.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_lang.png b/themes/darkblue_orange/img/s_lang.png
deleted file mode 100644
index 81617b6..0000000
Binary files a/themes/darkblue_orange/img/s_lang.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_loggoff.png b/themes/darkblue_orange/img/s_loggoff.png
deleted file mode 100644
index 9f5a789..0000000
Binary files a/themes/darkblue_orange/img/s_loggoff.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_notice.png b/themes/darkblue_orange/img/s_notice.png
deleted file mode 100644
index b271f48..0000000
Binary files a/themes/darkblue_orange/img/s_notice.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_partialtext.png b/themes/darkblue_orange/img/s_partialtext.png
deleted file mode 100644
index b536cf7..0000000
Binary files a/themes/darkblue_orange/img/s_partialtext.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_passwd.png b/themes/darkblue_orange/img/s_passwd.png
deleted file mode 100644
index de13da6..0000000
Binary files a/themes/darkblue_orange/img/s_passwd.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_process.png b/themes/darkblue_orange/img/s_process.png
deleted file mode 100644
index dd117d7..0000000
Binary files a/themes/darkblue_orange/img/s_process.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_really.png b/themes/darkblue_orange/img/s_really.png
deleted file mode 100644
index e335228..0000000
Binary files a/themes/darkblue_orange/img/s_really.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_reload.png b/themes/darkblue_orange/img/s_reload.png
deleted file mode 100644
index 09d47bd..0000000
Binary files a/themes/darkblue_orange/img/s_reload.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_replication.png b/themes/darkblue_orange/img/s_replication.png
deleted file mode 100644
index 4ceb218..0000000
Binary files a/themes/darkblue_orange/img/s_replication.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_rights.png b/themes/darkblue_orange/img/s_rights.png
deleted file mode 100644
index 8fa34e2..0000000
Binary files a/themes/darkblue_orange/img/s_rights.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_status.png b/themes/darkblue_orange/img/s_status.png
deleted file mode 100644
index b6df467..0000000
Binary files a/themes/darkblue_orange/img/s_status.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_success.png b/themes/darkblue_orange/img/s_success.png
deleted file mode 100644
index fbb3983..0000000
Binary files a/themes/darkblue_orange/img/s_success.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_tbl.png b/themes/darkblue_orange/img/s_tbl.png
deleted file mode 100644
index c7ba6cf..0000000
Binary files a/themes/darkblue_orange/img/s_tbl.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_theme.png b/themes/darkblue_orange/img/s_theme.png
deleted file mode 100644
index 7d9d489..0000000
Binary files a/themes/darkblue_orange/img/s_theme.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_vars.png b/themes/darkblue_orange/img/s_vars.png
deleted file mode 100644
index dbe704c..0000000
Binary files a/themes/darkblue_orange/img/s_vars.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_views.png b/themes/darkblue_orange/img/s_views.png
deleted file mode 100644
index 4a85f20..0000000
Binary files a/themes/darkblue_orange/img/s_views.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/s_warn.png b/themes/darkblue_orange/img/s_warn.png
deleted file mode 100644
index 26e0348..0000000
Binary files a/themes/darkblue_orange/img/s_warn.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/spacer.png b/themes/darkblue_orange/img/spacer.png
deleted file mode 100644
index 6f4c4ca..0000000
Binary files a/themes/darkblue_orange/img/spacer.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/tbl_header.png b/themes/darkblue_orange/img/tbl_header.png
deleted file mode 100644
index ae76fd2..0000000
Binary files a/themes/darkblue_orange/img/tbl_header.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/tbl_th.png b/themes/darkblue_orange/img/tbl_th.png
deleted file mode 100644
index c1a51d6..0000000
Binary files a/themes/darkblue_orange/img/tbl_th.png and /dev/null differ
diff --git a/themes/darkblue_orange/img/window-new.png b/themes/darkblue_orange/img/window-new.png
deleted file mode 100644
index 0c352db..0000000
Binary files a/themes/darkblue_orange/img/window-new.png and /dev/null differ
diff --git a/themes/darkblue_orange/info.inc.php b/themes/darkblue_orange/info.inc.php
deleted file mode 100644
index 62f981b..0000000
--- a/themes/darkblue_orange/info.inc.php
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php
-/* vim: set expandtab sw=4 ts=4 sts=4: */
-/**
- * Theme information
- *
- * @package phpMyAdmin-theme
- * @subpackage Darkblue_orange
- */
-
-/**
- *
- */
-$theme_name = 'Darkblue/orange';
-$theme_full_version = '2.9';
-?>
diff --git a/themes/darkblue_orange/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png b/themes/darkblue_orange/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png
deleted file mode 100644
index 5b5dab2..0000000
Binary files a/themes/darkblue_orange/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png and /dev/null differ
diff --git a/themes/darkblue_orange/jquery/images/ui-bg_flat_75_ffffff_40x100.png b/themes/darkblue_orange/jquery/images/ui-bg_flat_75_ffffff_40x100.png
deleted file mode 100644
index ac8b229..0000000
Binary files a/themes/darkblue_orange/jquery/images/ui-bg_flat_75_ffffff_40x100.png and /dev/null differ
diff --git a/themes/darkblue_orange/jquery/images/ui-bg_glass_65_ffffff_1x400.png b/themes/darkblue_orange/jquery/images/ui-bg_glass_65_ffffff_1x400.png
deleted file mode 100644
index 42ccba2..0000000
Binary files a/themes/darkblue_orange/jquery/images/ui-bg_glass_65_ffffff_1x400.png and /dev/null differ
diff --git a/themes/darkblue_orange/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png b/themes/darkblue_orange/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png
deleted file mode 100644
index 7c9fa6c..0000000
Binary files a/themes/darkblue_orange/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png and /dev/null differ
diff --git a/themes/darkblue_orange/jquery/images/ui-icons_222222_256x240.png b/themes/darkblue_orange/jquery/images/ui-icons_222222_256x240.png
deleted file mode 100644
index b273ff1..0000000
Binary files a/themes/darkblue_orange/jquery/images/ui-icons_222222_256x240.png and /dev/null differ
diff --git a/themes/darkblue_orange/jquery/images/ui-icons_2e83ff_256x240.png b/themes/darkblue_orange/jquery/images/ui-icons_2e83ff_256x240.png
deleted file mode 100644
index 09d1cdc..0000000
Binary files a/themes/darkblue_orange/jquery/images/ui-icons_2e83ff_256x240.png and /dev/null differ
diff --git a/themes/darkblue_orange/jquery/images/ui-icons_454545_256x240.png b/themes/darkblue_orange/jquery/images/ui-icons_454545_256x240.png
deleted file mode 100644
index 59bd45b..0000000
Binary files a/themes/darkblue_orange/jquery/images/ui-icons_454545_256x240.png and /dev/null differ
diff --git a/themes/darkblue_orange/jquery/images/ui-icons_888888_256x240.png b/themes/darkblue_orange/jquery/images/ui-icons_888888_256x240.png
deleted file mode 100644
index 6d02426..0000000
Binary files a/themes/darkblue_orange/jquery/images/ui-icons_888888_256x240.png and /dev/null differ
diff --git a/themes/darkblue_orange/jquery/images/ui-icons_cd0a0a_256x240.png b/themes/darkblue_orange/jquery/images/ui-icons_cd0a0a_256x240.png
deleted file mode 100644
index 2ab019b..0000000
Binary files a/themes/darkblue_orange/jquery/images/ui-icons_cd0a0a_256x240.png and /dev/null differ
diff --git a/themes/darkblue_orange/layout.inc.php b/themes/darkblue_orange/layout.inc.php
deleted file mode 100644
index 6c389f1..0000000
--- a/themes/darkblue_orange/layout.inc.php
+++ /dev/null
@@ -1,119 +0,0 @@
-<?php
-/* vim: set expandtab sw=4 ts=4 sts=4: */
-/**
- * configures general layout
- * for detailed layout configuration please refer to the css files
- *
- * @package phpMyAdmin-theme
- * @subpackage Darkblue_orange
- */
-
-// protect against path disclosure
-if (empty($_SESSION['PMA_Theme'])) {
- exit;
-}
-
-/**
- * navi frame
- */
-// navi frame width
-$GLOBALS['cfg']['NaviWidth'] = 180;
-
-// foreground (text) color for the navi frame
-$GLOBALS['cfg']['NaviColor'] = '#ffffff';
-
-// background for the navi frame
-$GLOBALS['cfg']['NaviBackground'] = '#666699';
-
-// foreground (text) color of the pointer in navi frame
-$GLOBALS['cfg']['NaviPointerColor'] = '#000000';
-
-// background of the pointer in navi frame
-$GLOBALS['cfg']['NaviPointerBackground'] = '#9999cc';
-
-/**
- * main frame
- */
-// foreground (text) color for the main frame
-$GLOBALS['cfg']['MainColor'] = '#000000';
-
-// background for the main frame
-$GLOBALS['cfg']['MainBackground'] = '#ffffff';
-//$GLOBALS['cfg']['MainBackground'] = '#ffffff url(' . $_SESSION['PMA_Theme']->getImgPath() . 'vertical_line.png) repeat-y';
-
-// foreground (text) color of the pointer in browse mode
-$GLOBALS['cfg']['BrowsePointerColor'] = '#000000';
-
-// background of the pointer in browse mode
-$GLOBALS['cfg']['BrowsePointerBackground'] = '#ccffcc';
-
-// foreground (text) color of the marker (visually marks row by clicking on it) in browse mode
-$GLOBALS['cfg']['BrowseMarkerColor'] = '#000000';
-
-// background of the marker (visually marks row by clicking on it) in browse mode
-$GLOBALS['cfg']['BrowseMarkerBackground'] = '#ffcc99';
-
-/**
- * fonts
- */
-/**
- * the font family as a valid css font family value,
- * if not set the browser default will be used
- * (depending on browser, DTD and system settings)
- */
-$GLOBALS['cfg']['FontFamily'] = 'Verdana, Arial, Helvetica, sans-serif';
-/**
- * fixed width font family, used in textarea
- */
-$GLOBALS['cfg']['FontFamilyFixed'] = 'monospace';
-
-/**
- * tables
- */
-// border
-$GLOBALS['cfg']['Border'] = 0;
-// table header and footer color
-$GLOBALS['cfg']['ThBackground'] = '#ff9900 url("' . $_SESSION['PMA_Theme']->getImgPath() . 'tbl_th.png") repeat-x top';
-// table header and footer background
-$GLOBALS['cfg']['ThColor'] = '#000000';
-// table data row background
-$GLOBALS['cfg']['BgOne'] = '#E5E5E5';
-// table data row background, alternate
-$GLOBALS['cfg']['BgTwo'] = '#D5D5D5';
-
-/**
- * query window
- */
-// Width of Query window
-$GLOBALS['cfg']['QueryWindowWidth'] = 600;
-// Height of Query window
-$GLOBALS['cfg']['QueryWindowHeight'] = 400;
-
-/**
- * SQL Parser Settings
- * Syntax colouring data
- */
-$GLOBALS['cfg']['SQP']['fmtColor'] = array(
- 'comment' => '#808000',
- 'comment_mysql' => '',
- 'comment_ansi' => '',
- 'comment_c' => '',
- 'digit' => '',
- 'digit_hex' => 'teal',
- 'digit_integer' => 'teal',
- 'digit_float' => 'aqua',
- 'punct' => 'fuchsia',
- 'alpha' => '',
- 'alpha_columnType' => '#FF9900',
- 'alpha_columnAttrib' => '#0000FF',
- 'alpha_reservedWord' => '#990099',
- 'alpha_functionName' => '#FF0000',
- 'alpha_identifier' => 'black',
- 'alpha_charset' => '#6495ed',
- 'alpha_variable' => '#800000',
- 'quote' => '#008000',
- 'quote_double' => '',
- 'quote_single' => '',
- 'quote_backtick' => ''
-);
-?>
diff --git a/themes/darkblue_orange/screen.png b/themes/darkblue_orange/screen.png
deleted file mode 100644
index 3103c8d..0000000
Binary files a/themes/darkblue_orange/screen.png and /dev/null differ
diff --git a/themes/pmahomme/css/theme_left.css.php b/themes/pmahomme/css/theme_left.css.php
new file mode 100644
index 0000000..508be33
--- /dev/null
+++ b/themes/pmahomme/css/theme_left.css.php
@@ -0,0 +1,264 @@
+<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * navigation css file from theme Original
+ *
+ * @package phpMyAdmin-theme
+ * @subpackage Original
+ */
+
+// unplanned execution path
+if (!defined('PMA_MINIMUM_COMMON')) {
+ exit();
+}
+?>
+/******************************************************************************/
+/* general tags */
+html {
+ font-size: <?php echo (null !== $GLOBALS['PMA_Config']->get('fontsize') ? $GLOBALS['PMA_Config']->get('fontsize') : $_COOKIE['pma_fontsize']); ?>;
+}
+
+input, select, textarea {
+ font-size: 1em;
+}
+
+body {
+<?php if (! empty($GLOBALS['cfg']['FontFamily'])) { ?>
+ font-family: <?php echo $GLOBALS['cfg']['FontFamily']; ?>;
+<?php } ?>
+ background: url(./themes/pmahomme/img/left_nav_bg.png) repeat-y right 0% #f3f3f3;
+ border-right: 1px solid #aaa;
+ color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
+ margin: 0;
+ padding: 0;
+}
+
+a img {
+ border: 0;
+}
+
+a:link,
+a:visited,
+a:active {
+ text-decoration: none;
+ color: #0000FF;
+}
+
+ul {
+ margin:0;
+}
+
+form {
+ margin: 0;
+ padding: 0;
+ display: inline;
+}
+
+select#select_server,
+select#lightm_db {
+ width: 100%;
+}
+
+/* buttons in some browsers (eg. Konqueror) are block elements,
+ this breaks design */
+button {
+ display: inline;
+}
+
+
+/******************************************************************************/
+/* classes */
+
+/* leave some space between icons and text */
+.icon {
+ vertical-align: middle;
+ margin-right: 0.3em;
+ margin-left: 0.3em;
+}
+
+.navi_dbName {
+ font-weight: bold;
+ color: <?php echo $GLOBALS['cfg']['NaviDatabaseNameColor']; ?>;
+}
+
+/******************************************************************************/
+/* specific elements */
+
+div#pmalogo {
+ <?php //better echo $GLOBALS['cfg']['logoBGC']; ?>
+}
+div#pmalogo,
+div#leftframelinks,
+div#databaseList {
+ text-align: center;
+ margin: 20px 10px 0px 10px;
+}
+
+ul#databaseList {
+ margin: 0.8em 0px;
+ padding-bottom: 0.5em;
+ padding-<?php echo $left; ?>: 0.3em;
+ font-style: italic;
+}
+
+ul#databaseList a {
+ display: block;
+ padding:5px;
+ font-style: normal;
+}
+
+div#navidbpageselector a,
+ul#databaseList a {
+ background:url(./themes/pmahomme/img/database.png) no-repeat 0% 50% transparent;
+ color: #333;
+}
+
+ul#databaseList ul {
+ margin:0px;
+ padding:0px;
+}
+ul#databaseList li{ list-style:none;text-indent:20px; margin:0px;
+ padding:0px;}
+
+ul#databaseList a:hover {
+ background:url(./themes/pmahomme/img/database.png) no-repeat 0% 50% #e4e4e4;
+}
+
+ul#databaseList li.selected a {
+ background: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
+ color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
+}
+
+div#leftframelinks .icon {
+ padding: 0;
+ margin: 0;
+}
+
+div#reloadlink a img,
+div#leftframelinks a img.icon {
+ margin: 10px 10px 0 0;
+ padding: 0.2em;
+ border: 0px;
+}
+
+div#leftframelinks a:hover img {
+
+}
+
+/* serverlist */
+#body_leftFrame #list_server {
+ list-style-image: url(<?php echo $GLOBALS['cfg']['ThemePath']; ?>/original/img/s_host.png);
+ list-style-position: inside;
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+}
+
+#body_leftFrame #list_server li {
+ margin: 0;
+ padding: 0;
+}
+
+div#left_tableList {margin:0px 10px;}
+div#left_tableList ul {
+ list-style-type: none;
+ list-style-position: outside;
+ margin: 0;
+ padding: 0;
+}
+
+div#left_tableList ul ul {
+ font-size: 100%;
+}
+
+div#left_tableList a {
+ /* background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>; MH */
+ color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
+ text-decoration: none;
+}
+
+div#left_tableList a:hover {
+ background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
+ color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
+ text-decoration: underline;
+}
+
+div#left_tableList li {
+ margin: 0;
+ padding: 5px 0;
+ white-space: nowrap;
+}
+
+select{
+-moz-border-radius:2px 2px 2px 2px;
+-moz-box-shadow:0 1px 2px #DDDDDD;
+border:1px solid #aaa;
+color:#333333;
+padding:3px;
+background:url(./themes/pmahomme/img/input_bg.gif);
+}
+
+<?php if ($GLOBALS['cfg']['BrowseMarkerColor']) { ?>
+/* marked items */
+div#left_tableList > ul li.marked > a,
+div#left_tableList > ul li.marked {
+ background: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
+ color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
+}
+<?php } ?>
+
+<?php if ($GLOBALS['cfg']['LeftPointerEnable']) { ?>
+div#left_tableList > ul li:hover > a,
+div#left_tableList > ul li:hover {
+ background: #e4e4e4;
+ color: <?php echo $GLOBALS['cfg']['NaviPointerColor']; ?>;
+}
+<?php } ?>
+
+div#left_tableList img {
+ padding: 0;
+ vertical-align: middle;
+}
+
+div#left_tableList ul ul {
+ margin-<?php echo $left; ?>: 0;
+ padding-<?php echo $left; ?>: 0.1em;
+ border-<?php echo $left; ?>: 0.1em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
+ padding-bottom: 0.1em;
+ border-bottom: 0.1em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
+}
+
+/* for the servers list in navi panel */
+#serverinfo .item {
+ white-space: nowrap;
+ color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
+}
+#serverinfo a:hover {
+ background: <?php echo $GLOBALS['cfg']['NaviPointerBackground']; ?>;
+ color: <?php echo $GLOBALS['cfg']['NaviPointerColor']; ?>;
+}
+#reloadlink {
+ clear: both;
+ float: <?php echo $right; ?>;
+ display: block;
+ padding: 1em;
+}
+
+#NavFilter {
+ display: none;
+}
+
+#clear_fast_filter {
+ background: white;
+ color: black;
+ cursor: pointer;
+ padding: 0;
+ margin: 0;
+ position: relative;
+ right: 3ex;
+}
+
+#fast_filter {
+ width: 85%;
+ padding: 0.1em;
+}
\ No newline at end of file
diff --git a/themes/original/css/theme_print.css.php b/themes/pmahomme/css/theme_print.css.php
similarity index 100%
copy from themes/original/css/theme_print.css.php
copy to themes/pmahomme/css/theme_print.css.php
diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php
new file mode 100644
index 0000000..515523c
--- /dev/null
+++ b/themes/pmahomme/css/theme_right.css.php
@@ -0,0 +1,2103 @@
+<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * main css file from theme Original
+ *
+ * @package phpMyAdmin-theme
+ * @subpackage Original
+ */
+
+// unplanned execution path
+if (!defined('PMA_MINIMUM_COMMON')) {
+ exit();
+}
+?>
+/******************************************************************************/
+/* general tags */
+html {
+ font-size: <?php echo (null !== $GLOBALS['PMA_Config']->get('fontsize') ? $GLOBALS['PMA_Config']->get('fontsize') : (
+ isset($_COOKIE['pma_fontsize']) ? $_COOKIE['pma_fontsize'] : '82%'));?>;
+}
+
+input, select, textarea {
+ font-size: 1em;
+}
+
+
+body {
+<?php if (! empty($GLOBALS['cfg']['FontFamily'])) { ?>
+ font-family: <?php echo $GLOBALS['cfg']['FontFamily']; ?>;
+<?php } ?>
+ padding: 0;
+ margin: 0.5em;
+ color: #444;
+ background: #fff;
+}
+
+<?php if (! empty($GLOBALS['cfg']['FontFamilyFixed'])) { ?>
+textarea, tt, pre, code {
+ font-family: <?php echo $GLOBALS['cfg']['FontFamilyFixed']; ?>;
+}
+<?php } ?>
+h1 {
+ font-size: 140%;
+ font-weight: bold;
+}
+
+h2 {
+ font-size: 2em;
+ font-weight: normal;
+ text-shadow: 0px 1px 0px #fff;
+ padding: 10px 0 10px 3px;
+ color: #777;
+}
+/* Hiding icons in the page titles, they just add clutter MH */
+h2 img{display:none;}
+/* Set all tables with data... to 100%, let it flow! */
+.data{width:100%}
+
+h3 {
+ font-weight: bold;
+}
+
+a, a:link,
+a:visited,
+a:active {
+ text-decoration: none;
+ color: #235a81;
+ cursor: pointer;
+ outline: none;
+
+}
+
+a:hover {
+ text-decoration: underline;
+ color: #235a81;
+}
+/*MH*/
+#initials_table {
+ background:#f3f3f3;
+ border:1px solid #aaa;
+ margin-bottom:10px;
+ -moz-border-radius:5px;
+ -webkit-border-radius:5px;
+ border-radius:5px;
+}
+#initials_table a {
+ border:1px solid #aaa;
+ background:#fff;
+ padding:4px 8px;
+ -moz-border-radius:5px;
+ -webkit-border-radius:5px;
+ border-radius:5px;
+ background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
+ background: -moz-linear-gradient(top, #ffffff, #cccccc);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
+}
+
+dfn {
+ font-style: normal;
+}
+
+dfn:hover {
+ font-style: normal;
+ cursor: help;
+}
+
+th {
+ font-weight: bold;
+ color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
+ background: #333;
+ background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
+ background: -moz-linear-gradient(top, #ffffff, #cccccc);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
+
+
+}
+
+a img {
+ border: 0;
+}
+
+hr {
+ color: <?php echo $GLOBALS['cfg']['MainColor']; ?>;
+ background-color: <?php echo $GLOBALS['cfg']['MainColor']; ?>;
+ border: 0;
+ height: 1px;
+}
+
+form {
+ padding: 0;
+ margin: 0;
+ display: inline;
+}
+
+input[type=text]{
+ border-radius:2px;
+ -moz-border-radius:2px;
+ -webkit-border-radius:2px;
+
+ box-shadow:0 1px 2px #ddd;
+ -moz-box-shadow:0 1px 2px #ddd;
+ -webkit-box-shadow:0 1px 2px #ddd;
+
+ background:url(./themes/pmahomme/img/input_bg.gif);
+ border:1px solid #aaa;
+ color:#555555;
+ padding:4px;
+ margin:6px;
+
+}
+
+input[type=password]{
+ border-radius:2px;
+ -moz-border-radius:2px;
+ -webkit-border-radius:2px;
+
+ box-shadow:0 1px 2px #ddd;
+ -moz-box-shadow:0 1px 2px #ddd;
+ -webkit-box-shadow:0 1px 2px #ddd;
+
+ background:url(./themes/pmahomme/img/input_bg.gif);
+ border:1px solid #aaa;
+ color:#555555;
+ padding:4px;
+ margin:6px;
+
+}
+
+input[type=submit]{
+ font-weight:bold;
+ margin-left:14px;
+ border: 1px solid #aaa;
+ padding: 3px 7px;
+ color: #111;
+ text-decoration: none;
+ background: #ddd;
+
+ border-radius: 12px;
+ -webkit-border-radius: 12px;
+ -moz-border-radius: 12px;
+
+ text-shadow: 0px 1px 0px #fff;
+
+ background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
+ background: -moz-linear-gradient(top, #ffffff, #cccccc);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
+}
+
+input[type=submit]:hover{ position: relative;
+ background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#dddddd));
+ background: -moz-linear-gradient(top, #cccccc, #dddddd);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#dddddd');
+ cursor:pointer;
+}
+
+input[type=submit]:active{ position: relative;
+ top: 1px;
+ left: 1px;
+}
+textarea {
+ overflow: visible;
+ height: <?php echo ceil($GLOBALS['cfg']['TextareaRows'] * 1.2); ?>em;
+}
+
+fieldset {
+ margin-top: 1em;
+ border-radius:4px 4px 0 0;
+ -moz-border-radius:4px 4px 0 0;
+ -webkit-border-radius:4px 4px 0 0;
+ padding:5px;
+ border: #aaa solid 1px;
+ padding: 1.5em;
+ background: #eee;
+ text-shadow:0 1px 0 #fff;
+ -moz-box-shadow: 1px 1px 2px #fff inset;
+ -webkit-box-shadow: 1px 1px 2px #fff inset;
+ box-shadow: 1px 1px 2px #fff inset;
+}
+
+fieldset fieldset {
+ margin: 0.8em;
+ background:#fff;
+ border:1px solid #aaa;
+ background:none repeat scroll 0 0 #E8E8E8;
+
+}
+
+fieldset legend {
+ font-weight: bold;
+ color: #444;
+ padding:5px 10px;
+ border-radius:2px;
+ -moz-border-radius:2px;
+ -webkit-border-radius:2px;
+ border:1px solid #aaa;
+ background-color: #fff;
+ -moz-box-shadow:3px 3px 15px #bbb;
+ -webkit-box-shadow:3px 3px 15px #bbb;
+ box-shadow:3px 3px 15px #bbb;
+}
+
+/* buttons in some browsers (eg. Konqueror) are block elements,
+ this breaks design */
+button {
+ display: inline;
+}
+
+table caption,
+table th,
+table td {
+ padding: 0.8em;
+ margin: 0.1em;
+ vertical-align: top;
+ text-shadow:0 1px 0 #FFFFFF;
+}
+
+/* MH */
+table{border-collapse:collapse;}
+th{border-right:1px solid #fff; text-align:left;}
+
+
+img,
+input,
+select,
+button {
+ vertical-align: middle;
+}
+
+select{
+ -moz-border-radius:2px;
+ -webkit-border-radius:2px;
+ border-radius:2px;
+
+ -moz-box-shadow:0 1px 2px #ddd;
+ -webkit-box-shadow:0 1px 2px #ddd;
+ box-shadow:0 1px 2px #ddd;
+
+ border:1px solid #aaa;
+ color:#333333;
+ padding:3px;
+ background:url(./themes/pmahomme/img/input_bg.gif)
+}
+
+/******************************************************************************/
+/* classes */
+div.tools {
+ /* border: 1px solid #000000; */
+ padding: 0.2em;
+}
+
+div.tools a{color:#3a7ead !important;}
+
+div.tools,
+fieldset.tblFooters {
+ margin-top: 0;
+ margin-bottom: 0.5em;
+ /* avoid a thick line since this should be used under another fieldset */
+ border-top: 0;
+ text-align: <?php echo $right; ?>;
+ float: none;
+ clear: both;
+ -webkit-border-radius:0 0 4px 4px;
+ -moz-border-radius:0 0 4px 4px;
+ border-radius: 0 0 4px 5px;
+}
+
+fieldset .formelement {
+ float: <?php echo $left; ?>;
+ margin-<?php echo $right; ?>: 0.5em;
+ /* IE */
+ white-space: nowrap;
+}
+
+/* revert for Gecko */
+fieldset div[class=formelement] {
+ white-space: normal;
+}
+
+button.mult_submit {
+ border: none;
+ background-color: transparent;
+}
+
+/* odd items 1,3,5,7,... */
+table tr.odd th,
+.odd {
+ background: #fff;
+}
+
+/* even items 2,4,6,8,... */
+table tr.even th,
+.even {
+ background: #f8f8f8;
+}
+
+/* odd table rows 1,3,5,7,... */
+table tr.odd th,
+table tr.odd,
+table tr.even th,
+table tr.even {
+ text-align: <?php echo $left; ?>;
+}
+
+<?php if ($GLOBALS['cfg']['BrowseMarkerEnable']) { ?>
+/* marked table rows */
+td.marked,
+table tr.marked th,
+table tr.marked {
+ background: url(./themes/pmahomme/img/marked_bg.png) repeat-x #b6c6d7;
+ color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
+}
+<?php } ?>
+
+<?php if ($GLOBALS['cfg']['BrowsePointerEnable']) { ?>
+/* hovered items */
+.odd:hover,
+.even:hover,
+.hover,
+.structure_actions_dropdown {
+ background: url(./themes/pmahomme/img/marked_bg.png) repeat-x #b6c6d7; /* MH */
+ color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
+}
+
+/* hovered table rows */
+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; /* MH */
+ color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
+}
+<?php } ?>
+
+/**
+ * marks table rows/cells if the db field is in a where condition
+ */
+tr.condition th,
+tr.condition td,
+td.condition,
+th.condition {
+ border: 1px solid <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
+}
+
+table .value {
+ text-align: <?php echo $right; ?>;
+ white-space: normal;
+}
+/* IE doesnt handles 'pre' right */
+table [class=value] {
+ white-space: normal;
+}
+
+
+<?php if (! empty($GLOBALS['cfg']['FontFamilyFixed'])) { ?>
+.value {
+ font-family: <?php echo $GLOBALS['cfg']['FontFamilyFixed']; ?>;
+}
+<?php } ?>
+.value .attention {
+ color: red;
+ font-weight: bold;
+}
+.value .allfine {
+ color: green;
+}
+
+
+img.lightbulb {
+ cursor: pointer;
+}
+
+.pdflayout {
+ overflow: hidden;
+ clip: inherit;
+ background-color: #FFFFFF;
+ display: none;
+ border: 1px solid #000000;
+ position: relative;
+}
+
+.pdflayout_table {
+ background: #D3DCE3;
+ color: #000000;
+ overflow: hidden;
+ clip: inherit;
+ z-index: 2;
+ display: inline;
+ visibility: inherit;
+ cursor: move;
+ position: absolute;
+ font-size: 80%;
+ border: 1px dashed #000000;
+}
+
+/* MySQL Parser */
+.syntax {
+ font-family: Verdan, Arial, Tahoma;
+ font-size: 110%;
+}
+
+.syntax a {
+ text-decoration: none;
+ border-bottom:1px dotted black;
+}
+
+.syntax_comment {
+ padding-left: 4pt;
+ padding-right: 4pt;
+}
+
+.syntax_digit {
+}
+
+.syntax_digit_hex {
+}
+
+.syntax_digit_integer {
+}
+
+.syntax_digit_float {
+}
+
+.syntax_punct {
+}
+
+.syntax_alpha {
+}
+
+.syntax_alpha_columnType {
+ text-transform: uppercase;
+}
+
+.syntax_alpha_columnAttrib {
+ text-transform: uppercase;
+}
+
+.syntax_alpha_reservedWord {
+ text-transform: uppercase;
+ font-weight: bold;
+}
+
+.syntax_alpha_functionName {
+ text-transform: uppercase;
+}
+
+.syntax_alpha_identifier {
+}
+
+.syntax_alpha_charset {
+}
+
+.syntax_alpha_variable {
+}
+
+.syntax_quote {
+ white-space: pre;
+}
+
+.syntax_quote_backtick {
+}
+
+/* leave some space between icons and text */
+.icon, img.footnotemarker {
+ vertical-align: -3px;
+ margin-right: 0.3em;
+ margin-left: 0.3em;
+}
+
+img.footnotemarker {
+ display: none;
+}
+
+/* no extra space in table cells */
+td .icon {
+ margin: 0;
+}
+
+.selectallarrow {
+ margin-<?php echo $right; ?>: 0.3em;
+ margin-<?php echo $left; ?>: 0.6em;
+}
+
+/* message boxes: warning, error, confirmation */
+.success h1,
+.notice h1,
+.warning h1,
+div.error h1 {
+ border-bottom: 2px solid;
+ font-weight: bold;
+ text-align: <?php echo $left; ?>;
+ margin: 0 0 0.2em 0;
+}
+
+div.success,
+div.notice,
+div.warning,
+div.error,
+div.footnotes {
+ margin: 0.5em 0 1.3em 0;
+ border: 1px solid;
+ <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
+ background-repeat: no-repeat;
+ <?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
+ background-position: 10px 50%;
+ padding: 10px 10px 10px 25px;
+ <?php } else { ?>
+ background-position: 99% 50%;
+ padding: 25px 10px 10px 10px
+ <?php } ?>
+ <?php } else { ?>
+ padding: 0.3em;
+ <?php } ?>
+ -moz-border-radius:5px;
+ -webkit-border-radius:5px;
+ border-radius:5px;
+ -moz-box-shadow: 0px 1px 2px #fff inset;
+ -webkit-box-shadow: 0px 1px 2px #fff inset;
+}
+
+.success {
+ color: #000000;
+ background-color: #cbee0c;
+}
+h1.success,
+div.success {
+ border-color: #a2d246;
+ <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_success.png);
+ background-repeat: no-repeat;
+ <?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
+ background-position: 5px 50%;
+ /* padding: 0.2em 0.2em 0.2em 25px; MH */
+ <?php } else { ?>
+ background-position: 97% 50%;
+ /* padding: 0.2em 25px 0.2em 0.2em; MH */
+ <?php } ?>
+ <?php } ?>
+}
+.success h1 {
+ border-color: #00FF00;
+}
+
+.notice, .footnotes {
+ color: #000000;
+ background-color: #ffdf5f;
+}
+h1.notice,
+div.notice,
+div.footnotes {
+ border-color: #ff9600;
+ <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_notice.png);
+ background-repeat: no-repeat;
+ <?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
+ background-position: 5px 50%;
+ /* padding: 0.2em 0.2em 0.2em 25px; MH */
+ <?php } else { ?>
+ background-position: 97% 50%;
+ /* padding: 0.2em 25px 0.2em 0.2em; MH */
+ <?php } ?>
+ <?php } ?>
+}
+.notice h1 {
+ border-color: #ffb10a;
+}
+
+.warning {
+ color: #fff;
+ background:url(./themes/pmahomme/img/tab_warning_bg.png) 50% 0% #e97777;
+}
+p.warning,
+h1.warning,
+div.warning {
+ border-color: #CC0000;
+ <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_warn.png);
+ background-repeat: no-repeat;
+ <?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
+ background-position: 5px 50%;
+ /* padding: 0.2em 0.2em 0.2em 25px; MH */
+ <?php } else { ?>
+ background-position: 97% 50%;
+ /* padding: 0.2em 25px 0.2em 0.2em; MH */
+ <?php } ?>
+ <?php } ?>
+}
+.warning h1 {
+ border-color: #cc0000;
+}
+
+.error {
+ border:1px solid maroon !important;
+ color: #fff;
+ background:url(./themes/pmahomme/img/tab_warning_bg.png) 50% 0% #e97777;
+}
+
+h1.error,
+div.error {
+ border-color: #333;
+ <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
+ background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_error.png);
+ background-repeat: no-repeat;
+ <?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
+ background-position: 5px 50%;
+ /* padding: 0.2em 0.2em 0.2em 25px; MH */
+ <?php } else { ?>
+ background-position: 97% 50%;
+ /* padding: 0.2em 25px 0.2em 0.2em; MH */
+ <?php } ?>
+ <?php } ?>
+}
+div.error h1 {
+ border-color: #ff0000;
+}
+
+.confirmation {
+ color: #000000;
+ background-color: pink;
+}
+fieldset.confirmation {
+
+}
+fieldset.confirmation legend {
+
+}
+/* end messageboxes */
+
+
+.tblcomment {
+ font-size: 70%;
+ font-weight: normal;
+ color: #000099;
+}
+
+.tblHeaders {
+ font-weight: bold;
+ color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
+ background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
+}
+
+div.tools,
+.tblFooters {
+ font-weight: normal;
+ color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
+ background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
+}
+
+.tblHeaders a:link,
+.tblHeaders a:active,
+.tblHeaders a:visited,
+div.tools a:link,
+div.tools a:visited,
+div.tools a:active,
+.tblFooters a:link,
+.tblFooters a:active,
+.tblFooters a:visited {
+ color: #0000FF;
+}
+
+.tblHeaders a:hover,
+div.tools a:hover,
+.tblFooters a:hover {
+ color: #FF0000;
+}
+
+/* forbidden, no privilegs */
+.noPrivileges {
+ color: #FF0000;
+ font-weight: bold;
+}
+
+/* disabled text */
+.disabled,
+.disabled a:link,
+.disabled a:active,
+.disabled a:visited {
+ color: #666666;
+}
+
+.disabled a:hover {
+ color: #666666;
+ text-decoration: none;
+}
+
+tr.disabled td,
+td.disabled {
+ background-color: #cccccc;
+}
+
+.nowrap {
+ white-space: nowrap;
+}
+
+/**
+ * login form
+ */
+body.loginform h1,
+body.loginform a.logo {
+ display: block;
+ text-align: center;
+}
+
+body.loginform {
+ text-align: center;
+}
+
+body.loginform div.container {
+ text-align: <?php echo $left; ?>;
+ width: 30em;
+ margin: 0 auto;
+}
+
+form.login label {
+ float: <?php echo $left; ?>;
+ width: 10em;
+ font-weight: bolder;
+}
+
+.commented_column {
+ border-bottom: 1px dashed black;
+}
+
+.column_attribute {
+ font-size: 70%;
+}
+
+/******************************************************************************/
+/* specific elements */
+
+/* topmenu */
+#topmenu a {text-shadow:0px 1px 0px #fff;}
+
+ul#topmenu, ul#topmenu2, ul.tabs {
+ font-weight: bold;
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+
+}
+
+ul#topmenu2 {
+ margin: 0.25em 0.5em 0;
+ height: 2em;
+ clear: both;
+}
+
+ul#topmenu li, ul#topmenu2 li {
+ float: <?php echo $left; ?>;
+ margin: 0;
+ /* padding: 4px; MH */
+ vertical-align: middle;
+}
+
+#topmenu img, #topmenu2 img {
+ margin-right:0.5em;
+ vertical-align:-3px;
+}
+
+#topmenucontainer{background:url(./themes/pmahomme/img/tab_bg.png) repeat-x; border-top:1px solid #aaa;}
+
+/* default tab styles */
+.tabactive {
+ background:#fff !important;
+}
+
+ul#topmenu a, ul#topmenu span {
+ display: block;
+ margin: 0px;
+ padding: 0px;
+ white-space: nowrap;
+}
+
+ul#topmenu ul a {
+ margin: 0;
+
+}
+/* MH added for hide/show more menu */
+ul#topmenu .submenu {
+ display: none;
+ position: relative;
+}
+
+#topmenu .shown {
+ display: inline-block;
+}
+
+ul#topmenu ul {
+ margin: 0;
+ padding: 0;
+ position: absolute;
+ right: 0;
+ list-style-type: none;
+ display: none;
+ border: 1px #ddd solid;
+}
+
+ul#topmenu li:hover {
+ background:url(./themes/pmahomme/img/tab_hover_bg.png) repeat-x 50% 0%!important;
+}
+
+ul#topmenu li:hover ul, ul#topmenu .submenuhover ul {
+ display: block;
+ font-weight:3em;
+ background:#fff;
+
+}
+
+ul#topmenu ul li {
+ width: 100%;
+}
+
+ul#topmenu2 a {
+ display: block;
+ margin: 7px 6px 7px 0px;
+ padding: 4px 10px;
+ white-space: nowrap;
+ border:1px solid #ddd;
+ border-radius: 20px;
+ -moz-border-radius: 20px;
+ -webkit-border-radius: 20px;
+ background:#f2f2f2;
+
+}
+
+/* disabled tabs */
+ul#topmenu span.tab {
+ color: #666666;
+}
+
+/* disabled drop/empty tabs */
+ul#topmenu span.tabcaution {
+ color: #ff6666;
+}
+
+/* enabled drop/empty tabs */
+ul#topmenu a.tabcaution {
+ color: #FF0000;
+}
+ul#topmenu a.tabcaution:hover {
+ color: #FFFFFF;
+ background-color: #FF0000;
+}
+fieldset.caution a {
+ color: #FF0000;
+}
+fieldset.caution a:hover {
+ color: #ffffff;
+ background-color: #FF0000;
+}
+
+<?php if ($GLOBALS['cfg']['LightTabs']) { ?>
+/* active tab */
+ul#topmenu a.tabactive, ul#topmenu2 a.tabactive {
+ color: black;
+}
+
+ul#topmenu ul {
+ background: <?php echo $GLOBALS['cfg']['MainBackground']; ?>;
+}
+<?php } else { ?>
+#topmenu {
+ margin-top: 0.5em;
+ padding: 0.1em 0.3em 0.1em 0.3em;
+}
+
+ul#topmenu ul {
+ -moz-box-shadow: 1px 1px 6px #ddd;
+ -webkit-box-shadow: 2px 2px 3px #666;
+ box-shadow: 2px 2px 3px #666;
+}
+
+ul#topmenu > li {
+ /* border-bottom: 0pt solid black; MH */
+ border-right: 1px solid #fff;
+ border-left: 1px solid #ccc;
+}
+
+/* default tab styles */
+ul#topmenu a, ul#topmenu span {
+ padding:10px;
+ /*
+ background-color: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
+ border: 0 solid <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
+ border-width: 1pt 1pt 0 1pt;
+ -moz-border-radius: 0.4em 0.4em 0 0;
+ border-radius: 0.4em 0.4em 0 0;
+
+ MH
+ */
+}
+
+ul#topmenu ul a {
+ border-width: 1pt 0 0 0;
+ -moz-border-radius: 0;
+ -webkit-border-radius: 0;
+ border-radius: 0;
+
+}
+
+ul#topmenu ul li:first-child a {
+ border-width: 0;
+
+}
+
+/* enabled hover/active tabs */
+ul#topmenu > li > a:hover,
+ul#topmenu > li > .tabactive {
+ /* margin: 0; MH */
+ text-decoration: none;
+}
+
+ul#topmenu ul a:hover,
+ul#topmenu ul .tabactive {
+ text-decoration: none;
+}
+
+ul#topmenu a.tab:hover,
+ul#topmenu .tabactive {
+ / * background-color: <?php echo $GLOBALS['cfg']['MainBackground']; ?>; MH */
+}
+
+ul#topmenu2 a.tab:hover,
+ul#topmenu2 a.tabactive {
+ background-color: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
+ border-radius: 0.3em;
+ -moz-border-radius: 0.3em;
+ -webkit-border-radius: 0.3em;
+ text-decoration: none;
+}
+
+/* to be able to cancel the bottom border, use <li class="active"> */
+ul#topmenu > li.active {
+ /* border-bottom: 0pt solid <?php echo $GLOBALS['cfg']['MainBackground']; ?>; MH*/
+ border-right:0px;
+}
+
+/* disabled drop/empty tabs */
+ul#topmenu span.tab,
+a.warning,
+ul#topmenu span.tabcaution {
+ cursor: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>error.ico), default;
+}
+<?php } ?>
+/* end topmenu */
+
+
+/* Calendar */
+table.calendar {
+ width: 100%;
+}
+table.calendar td {
+ text-align: center;
+}
+table.calendar td a {
+ display: block;
+}
+
+table.calendar td a:hover {
+ background-color: #CCFFCC;
+}
+
+table.calendar th {
+ background-color: #D3DCE3;
+}
+
+table.calendar td.selected {
+ background-color: #FFCC99;
+}
+
+img.calendar {
+ border: none;
+}
+form.clock {
+ text-align: center;
+}
+/* end Calendar */
+
+
+/* table stats */
+div#tablestatistics {
+ border-bottom: 0.1em solid #669999;
+ margin-bottom: 0.5em;
+ padding-bottom: 0.5em;
+}
+
+div#tablestatistics table {
+ float: <?php echo $left; ?>;
+ margin-bottom: 0.5em;
+ margin-<?php echo $right; ?>: 0.5em;
+ width:99%;
+}
+
+div#tablestatistics table caption {
+ margin-<?php echo $right; ?>: 0.5em;
+}
+/* END table stats */
+
+
+/* server privileges */
+#tableuserrights td,
+#tablespecificuserrights td,
+#tabledatabases td {
+ vertical-align: middle;
+}
+/* END server privileges */
+
+
+
+/* Heading */
+#serverinfo {
+border-bottom:1px solid #fff;
+-moz-border-radius: 4px 4px 0 0;
+-webkit-border-radius: 4px 4px 0 0;
+border-radius:4px 4px 0 0;
+background:#888;
+padding:10px;
+text-shadow:0 1px 0 #000000;
+}
+
+#serverinfo .item {
+ white-space: nowrap;
+ color:#fff;
+}
+
+#span_table_comment {
+ font-weight: normal;
+ font-style: italic;
+ white-space: nowrap;
+}
+
+#serverinfo img {
+ margin: 0 0.1em 0 0.2em;
+}
+
+
+#textSQLDUMP {
+ width: 95%;
+ height: 95%;
+ font-family: "Courier New", Courier, mono;
+ font-size: 110%;
+}
+
+#TooltipContainer {
+ position: absolute;
+ z-index: 99;
+ width: 20em;
+ height: auto;
+ overflow: visible;
+ visibility: hidden;
+ background-color: #ffffcc;
+ color: #006600;
+ border: 0.1em solid #000000;
+ padding: 0.5em;
+}
+
+/* user privileges */
+#fieldset_add_user_login div.item {
+ border-bottom: 1px solid silver;
+ padding-bottom: 0.3em;
+ margin-bottom: 0.3em;
+}
+
+#fieldset_add_user_login label {
+ float: <?php echo $left; ?>;
+ display: block;
+ width: 10em;
+ max-width: 100%;
+ text-align: <?php echo $right; ?>;
+ padding-<?php echo $right; ?>: 0.5em;
+}
+
+#fieldset_add_user_login span.options #select_pred_username,
+#fieldset_add_user_login span.options #select_pred_hostname,
+#fieldset_add_user_login span.options #select_pred_password {
+ width: 100%;
+ max-width: 100%;
+}
+
+#fieldset_add_user_login span.options {
+ float: <?php echo $left; ?>;
+ display: block;
+ width: 12em;
+ max-width: 100%;
+ padding-<?php echo $right; ?>: 0.5em;
+}
+
+#fieldset_add_user_login input {
+ width: 12em;
+ clear: <?php echo $right; ?>;
+ max-width: 100%;
+}
+
+#fieldset_add_user_login span.options input {
+ width: auto;
+}
+
+#fieldset_user_priv div.item {
+ float: <?php echo $left; ?>;
+ width: 9em;
+ max-width: 100%;
+}
+
+#fieldset_user_priv div.item div.item {
+ float: none;
+}
+
+#fieldset_user_priv div.item label {
+ white-space: nowrap;
+}
+
+#fieldset_user_priv div.item select {
+ width: 100%;
+}
+
+#fieldset_user_global_rights fieldset {
+ float: <?php echo $left; ?>;
+}
+/* END user privileges */
+
+
+/* serverstatus */
+div#serverstatus table caption a.top {
+ float: <?php echo $right; ?>;
+}
+
+div#serverstatus div#serverstatusqueriesdetails table,
+div#serverstatus table#serverstatustraffic,
+div#serverstatus table#serverstatusconnections {
+ float: <?php echo $left; ?>;
+}
+
+#serverstatussection,
+.clearfloat {
+ clear: both;
+}
+div#serverstatussection table {
+ width: 100%;
+ margin-bottom: 1em;
+}
+div#serverstatussection table .name {
+ width: 18em;
+}
+div#serverstatussection table .value {
+ width: 6em;
+}
+
+div#serverstatus table tbody td.descr a,
+div#serverstatus table .tblFooters a {
+ white-space: nowrap;
+}
+div#serverstatus div#statuslinks a:before,
+div#serverstatus div#sectionlinks a:before,
+div#serverstatus table tbody td.descr a:before,
+div#serverstatus table .tblFooters a:before {
+ /*MH content: '['; */
+}
+div#serverstatus div#statuslinks a:after,
+div#serverstatus div#sectionlinks a:after,
+div#serverstatus table tbody td.descr a:after,
+div#serverstatus table .tblFooters a:after {
+ /* MH content: ']'; */
+}
+/* end serverstatus */
+
+/* querywindow */
+body#bodyquerywindow {
+ margin: 0;
+ padding: 0;
+ background-image: none;
+ background-color: #F5F5F5;
+}
+
+div#querywindowcontainer {
+ margin: 0;
+ padding: 0;
+ width: 100%;
+}
+
+div#querywindowcontainer fieldset {
+ margin-top: 0;
+}
+/* END querywindow */
+
+
+/* querybox */
+
+#togglequerybox{margin:0 10px}
+
+#serverstatus p {
+
+ margin: 1.5em 0px;
+ border: 1px solid #3a86b5;
+ <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
+ background-repeat: no-repeat;
+ <?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
+ background-position: 10px 50%;
+ padding: 10px 10px 10px 25px;
+ <?php } else { ?>
+ background-position: 99% 50%;
+ padding: 25px 10px 10px 10px
+ <?php } ?>
+ <?php } else { ?>
+ padding: 0.3em;
+ <?php } ?>
+ -moz-border-radius:5px;
+ -webkit-border-radius:5px;
+ border-radius:5px;
+ -moz-box-shadow: 0px 1px 2px #fff inset;
+ -webkit-box-shadow: 0px 1px 2px #fff inset;
+ box-shadow:0px 1px 2px #fff; inset;
+ background:#9dcce8;
+ color:#fff;
+}
+
+#serverstatus h3
+{
+ margin:35px 0px;font-weight:normal;color:#999;font-size:1.7em;
+}
+#sectionlinks{
+ padding:16px;
+ background:#f3f3f3;
+ border:1px solid #aaa;
+ border-radius:5px;
+ -webkit-border-radius:5px;
+ -moz-border-radius:5px;
+
+ box-shadow:0px 1px 1px #fff inset;
+ -webkit-box-shadow:0px 1px 1px #fff inset;
+ -moz-box-shadow:0px 1px 1px #fff inset;
+
+}
+#sectionlinks a, #statuslinks a{
+ font-size:0.88em;
+ font-weight:bold;
+ text-shadow: 0px 1px 0px #fff;
+ line-height:35px;
+ margin-left:7px;
+ border: 1px solid #aaa;
+ padding: 5px 10px;
+ color: #111;
+ text-decoration: none;
+ background: #ddd;
+ border-radius: 20px;
+ -webkit-border-radius: 20px;
+ -moz-border-radius: 20px;
+ box-shadow: 1px 1px 2px rgba(0,0,0,.5);
+ /*
+ -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.5);
+ -moz-box-shadow: 1px 1px 2px rgba(0,0,0,.5);
+ text-shadow: #fff 0px 1px 0px;
+ */
+ background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
+ background: -moz-linear-gradient(top, #ffffff, #cccccc);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
+}
+#sectionlinks a:hover, #statuslinks a:hover{
+ background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#dddddd));
+ background: -moz-linear-gradient(top, #cccccc, #dddddd);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#dddddd');
+}
+
+div#sqlquerycontainer {
+ float: <?php echo $left; ?>;
+ width: 69%;
+ /* height: 15em; */
+}
+
+div#tablefieldscontainer {
+ float: <?php echo $right; ?>;
+ width: 29%;
+ /* height: 15em; */
+}
+
+div#tablefieldscontainer select {
+ width: 100%;
+ background:#fff;
+ /* height: 12em; */
+}
+
+textarea#sqlquery {
+ width: 100%;
+ /* height: 100%; */
+ -moz-border-radius:4px;
+ -webkit-border-radius:4px;
+ border-raduis:4px
+ border:1px solid #aaa;
+ padding:5px;
+ font-family:inherit;
+}
+textarea#sql_query_edit{
+ height:7em;
+ width: 95%;
+ display:block;
+}
+div#queryboxcontainer div#bookmarkoptions {
+ margin-top: 0.5em;
+}
+/* end querybox */
+
+/* main page */
+#maincontainer {
+ /* background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>logo_right.png); */
+ /* background-position: <?php echo $right; ?> bottom; */
+ /* background-repeat: no-repeat; */
+}
+
+#mysqlmaininformation,
+#pmamaininformation {
+ float: <?php echo $left; ?>;
+ width: 49%;
+}
+
+#maincontainer ul {
+ list-style-type: disc;
+ vertical-align: middle;
+}
+
+#maincontainer li {
+ margin-bottom: 0.3em;
+}
+/* END main page */
+
+
+<?php if ($GLOBALS['cfg']['MainPageIconic']) { ?>
+/* iconic view for ul items */
+li#li_create_database {
+ list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_newdb.png);
+}
+
+li#li_select_lang {
+ list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_lang.png);
+}
+
+li#li_select_mysql_collation {
+ list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asci.png);
+}
+
+li#li_select_theme{
+ list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_theme.png);
+}
+
+li#li_user_info{
+ /* list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png); */
+}
+
+li#li_mysql_status{
+ list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_status.png);
+}
+
+li#li_mysql_variables{
+ list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_vars.png);
+}
+
+li#li_mysql_processes{
+ list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_process.png);
+}
+
+li#li_mysql_collations{
+ list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asci.png);
+}
+
+li#li_mysql_engines{
+ list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_engine.png);
+}
+
+li#li_mysql_binlogs {
+ list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_tbl.png);
+}
+
+li#li_mysql_databases {
+ list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_db.png);
+}
+
+li#li_export {
+ list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_export.png);
+}
+
+li#li_import {
+ list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_import.png);
+}
+
+li#li_change_password {
+ list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_passwd.png);
+}
+
+li#li_log_out {
+ list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_loggoff.png);
+}
+
+li#li_mysql_privilegs{
+ list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png);
+}
+
+li#li_switch_dbstats {
+ list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_dbstatistics.png);
+}
+
+li#li_flush_privileges {
+ list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_reload.png);
+}
+
+li#li_user_preferences {
+ list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_tblops.png);
+}
+/* END iconic view for ul items */
+<?php } /* end if $GLOBALS['cfg']['MainPageIconic'] */ ?>
+
+
+#body_browse_foreigners {
+ background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
+ margin: 0.5em 0.5em 0 0.5em;
+}
+
+#bodyquerywindow {
+ background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
+}
+
+#bodythemes {
+ width: 500px;
+ margin: auto;
+ text-align: center;
+}
+
+#bodythemes img {
+ border: 0.1em solid black;
+}
+
+#bodythemes a:hover img {
+ border: 0.1em solid red;
+}
+
+#fieldset_select_fields {
+ float: <?php echo $left; ?>;
+}
+
+#selflink {
+ clear: both;
+ display: block;
+ margin-top: 1em;
+ margin-bottom: 1em;
+ background:#f3f3f3;
+ width: 100%;
+ border-top: 0.1em solid silver;
+ text-align: <?php echo $right; ?>;
+
+
+}
+
+#table_innodb_bufferpool_usage,
+#table_innodb_bufferpool_activity {
+ float: <?php echo $left; ?>;
+}
+
+#div_mysql_charset_collations table {
+ float: <?php echo $left; ?>;
+}
+
+#div_table_order {
+ min-width: 48%;
+ float: <?php echo $left; ?>;
+}
+
+#div_table_rename {
+ min-width: 48%;
+ float: <?php echo $left; ?>;
+}
+
+#div_table_copy,
+#div_partition_maintenance,
+#div_referential_integrity,
+#div_table_removal,
+#div_table_maintenance {
+ min-width: 48%;
+ float: <?php echo $left; ?>;
+}
+
+#div_table_options {
+ clear: both;
+ min-width: 48%;
+ float: <?php echo $left; ?>;
+}
+
+#qbe_div_table_list {
+ float: <?php echo $left; ?>;
+}
+
+#qbe_div_sql_query {
+ float: <?php echo $left; ?>;
+}
+
+label.desc {
+ width: 30em;
+ float: <?php echo $left; ?>;
+}
+
+label.desc sup {
+ position: absolute;
+}
+
+code.sql, div.sqlvalidate {
+ display: block;
+ padding: 1em;
+ margin-top: 0;
+ margin-bottom: 0;
+ border-top: 0;
+ border-bottom: 0;
+ max-height: 10em;
+ overflow: auto;
+ background: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
+}
+
+#main_pane_left {
+ width: 60%;
+ float: <?php echo $left; ?>;
+ padding-top: 1em;
+}
+
+#main_pane_right {
+ margin-<?php echo $left; ?>: 60%;
+ padding-top: 1em;
+ padding-<?php echo $left; ?>: 1em;
+}
+
+.group {
+
+ border:1px solid #999;
+ background:#f3f3f3;
+ -moz-border-radius:4px;
+ -webkit-border-radius:4px;
+ border-radius:4px;
+ -moz-box-shadow:2px 2px 5px #ccc;
+ -webkit-box-shadow:2px 2px 5px #ccc;
+ box-shadow:3px 3px 10px #ddd;
+ margin-bottom: 1em;
+ padding-bottom: 1em;
+}
+
+.group h2 {
+ background-color: #bbb;
+ padding: 0.1em 0.3em;
+ margin-top: 0;
+ color:#fff;
+ font-size:2em;
+ font-weight:normal;
+ text-shadow:0 1px 0 #777;
+ -moz-box-shadow: 1px 1px 15px #999 inset;
+ -webkit-box-shadow: 1px 1px 15px #999 inset;
+ box-shadow: 1px 1px 15px #999 inset;
+}
+
+.group-cnt {
+ padding: 0 0 0 0.5em;
+ display: inline-block;
+ width: 98%;
+}
+
+/* for elements that should be revealed only via js */
+.hide {
+ display: none;
+}
+
+#li_select_server {
+ list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_host.png);
+}
+
+#list_server {
+ list-style-image: none;
+}
+
+/**
+ * Progress bar styles
+ */
+div.upload_progress_bar_outer
+{
+ border: 1px solid black;
+ width: 202px;
+}
+
+div.upload_progress_bar_inner
+{
+ background-color: <?php echo (isset($_SESSION['userconf']['custom_color']) ? $_SESSION['userconf']['custom_color'] : $GLOBALS['cfg']['NaviBackground']); ?>;
+ width: 0px;
+ height: 12px;
+ margin: 1px;
+}
+
+table#serverconnection_src_remote,
+table#serverconnection_trg_remote,
+table#serverconnection_src_local,
+table#serverconnection_trg_local {
+ float:left;
+}
+/**
+ * Validation error message styles
+ */
+.invalid_value
+{background:#F00;}
+
+/**
+ * Ajax notification styling
+ */
+ .ajax_notification {
+ top: 0px; /** The notification needs to be shown on the top of the page */
+ position: fixed;
+ margin-top: 0;
+ margin-right: auto;
+ margin-bottom: 0;
+ margin-left: auto;
+ padding: 5px; /** Keep a little space on the sides of the text */
+ min-width: 70px;
+ max-width: 350px; /** This value might have to be changed */
+
+ z-index: 1100; /** If this is not kept at a high z-index, the jQueryUI modal dialogs (z-index:1000) might hide this */
+ text-align: center;
+ display: inline;
+ left: 0;
+ right: 0;
+ background-image: url(./themes/pmahomme/img/ajax_clock_small.gif);
+ background-repeat: no-repeat;
+ background-position: 2%;
+ border:1px solid #e2b709;
+ }
+
+/* MH additional styles */
+.ajax_notification{
+ margin-top:200px;background:#ffe57e;
+ border-radius:5px;
+ -moz-border-radius:5px;
+ -webkit-border-radius:5px;
+ box-shadow: 0px 5px 90px #888;
+ -moz-box-shadow: 0px 5px 90px #888;
+ -webkit-box-shadow: 0px 5px 90px #888;
+}
+
+#loading_parent {
+ /** Need this parent to properly center the notification division */
+ position: relative;
+ width: 100%;
+ }
+/**
+ * Export and Import styles
+ */
+
+.exportoptions h3, .importoptions h3 {
+ border-bottom: 1px #999999 solid;
+ font-size: 110%;
+}
+
+.exportoptions ul, .importoptions ul, .format_specific_options ul {
+ list-style-type: none;
+ margin-bottom: 15px;
+}
+
+.exportoptions li, .importoptions li {
+ margin: 7px;
+}
+.exportoptions label, .importoptions label, .exportoptions p, .importoptions p {
+ margin: 5px;
+ float: none;
+}
+
+#csv_options label.desc, #ldi_options label.desc, #latex_options label.desc, #output label.desc{
+ float: left;
+ width: 15em;
+}
+
+.exportoptions, .importoptions {
+ margin: 20px 30px 30px 10px
+}
+
+.exportoptions #buttonGo, .importoptions #buttonGo {
+ font-weight:bold;
+ margin-left:14px;
+ border: 1px solid #aaa;
+ padding: 5px 12px;
+ color: #111;
+ text-decoration: none;
+ background: #ddd;
+
+ border-radius: 12px;
+ -webkit-border-radius: 12px;
+ -moz-border-radius: 12px;
+
+ text-shadow: 0px 1px 0px #fff;
+
+ background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cccccc));
+ background: -moz-linear-gradient(top, #ffffff, #cccccc);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cccccc');
+ cursor: pointer;
+}
+#buttonGo:hover{
+ background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#dddddd));
+ background: -moz-linear-gradient(top, #cccccc, #dddddd);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#dddddd');
+}
+
+.format_specific_options h3 {
+ margin: 10px 0px 0px 10px;
+ border: 0px;
+}
+
+.format_specific_options {
+ border: 1px solid #999999;
+ margin: 7px 0px;
+ padding: 3px;
+}
+
+p.desc {
+ margin: 5px;
+}
+
+/**
+ * Export styles only
+ */
+select#db_select, select#table_select {
+ width: 400px;
+}
+
+.export_sub_options {
+ margin: 20px 0px 0px 30px;
+}
+
+.export_sub_options h4 {
+ border-bottom: 1px #999999 solid;
+}
+
+.export_sub_options li.subgroup {
+ display: inline-block;
+ margin-top: 0;
+}
+
+.export_sub_options li {
+ margin-bottom: 0;
+}
+
+#quick_or_custom, #output_quick_export {
+ display: none;
+}
+/**
+ * Import styles only
+ */
+
+.importoptions #import_notification {
+ margin: 10px 0px;
+ font-style: italic;
+}
+
+input#input_import_file {
+ margin: 5px;
+}
+
+.formelementrow {
+ margin: 5px 0px 5px 0px;
+}
+
+/**
+ * ENUM/SET editor styles
+ */
+p.enum_notice {
+ margin: 5px 2px;
+ font-size: 80%;
+}
+
+#enum_editor {
+ display: none;
+ position: fixed;
+ _position: absolute; /* hack for IE */
+ z-index: 101;
+ overflow-y: auto;
+ overflow-x: hidden;
+}
+
+#enum_editor_no_js {
+ margin: auto auto;
+}
+
+#enum_editor, #enum_editor_no_js {
+ background: #D0DCE0;
+ padding: 15px;
+}
+
+#popup_background {
+ display: none;
+ position: fixed;
+ _position: absolute; /* hack for IE6 */
+ width: 100%;
+ height: 100%;
+ top: 0;
+ left: 0;
+ background: #000;
+ z-index: 100;
+ overflow: hidden;
+}
+
+a.close_enum_editor {
+ float: right;
+}
+
+#enum_editor #values, #enum_editor_no_js #values {
+ margin: 15px 0px;
+ width: 100%;
+}
+
+#enum_editor #values input, #enum_editor_no_js #values input {
+ margin: 5px 0px;
+ float: top;
+ width: 100%;
+}
+
+}
+
+#enum_editor_output {
+ margin-top: 50px;
+}
+
+/**
+ * Table structure styles
+ */
+.structure_actions_dropdown {
+ position: absolute;
+ padding: 3px;
+ display: none;
+ z-index: 100;
+}
+
+td.more_opts {
+ white-space: nowrap;
+}
+
+iframe.IE_hack {
+ z-index: 1;
+ position: absolute;
+ display: none;
+ border: 0;
+ filter: alpha(opacity=0);
+}
+
+/* config forms */
+.config-form ul.tabs {
+ margin: 1.1em 0.2em 0;
+ padding: 0 0 0.3em 0;
+ list-style: none;
+ font-weight: bold;
+}
+
+.config-form ul.tabs li {
+ float: <?php echo $left; ?>;
+}
+
+.config-form ul.tabs li a {
+ display: block;
+ margin: 0.1em 0.2em 0;
+ white-space: nowrap;
+ text-decoration: none;
+ border: 1px solid <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
+ border-bottom: none;
+}
+
+/*MH*/
+.config-form ul.tabs li a {
+ padding:7px 10px;
+ -moz-border-radius:5px 5px 0 0;
+ -webkit-border-radius:5px 5px 0 0;
+ border-radius:5px 5px 0 0;
+ background:#d5d5d5;
+ color:#fff;
+}
+
+.config-form ul.tabs li a:hover,
+.config-form ul.tabs li a:active,
+.config-form ul.tabs li a.active {
+ /*margin: 0;*/
+ /*padding: 0.1em 0.6em 0.2em;*/
+}
+
+.config-form ul.tabs li a.active {
+ background-color: #fff;
+ margin-top:1px;
+ color:#000;
+}
+
+.config-form fieldset {
+ margin-top: 0;
+ padding: 0;
+ clear: both;
+ /*border-color: <?php echo $GLOBALS['cfg']['BgTwo']; ?>;*/
+}
+
+.config-form legend {
+ display: none;
+}
+
+.config-form fieldset p {
+ margin: 0;
+ padding: 0.5em;
+ background: #fff;
+ border-top:0px;
+}
+
+.config-form fieldset .errors { /* form error list */
+ margin: 0 -2px 1em -2px;
+ padding: 0.5em 1.5em;
+ background: #FBEAD9;
+ border: 0 #C83838 solid;
+ border-width: 1px 0;
+ list-style: none;
+ font-family: sans-serif;
+ font-size: small;
+}
+
+.config-form fieldset .inline_errors { /* field error list */
+ margin: 0.3em 0.3em 0.3em 0;
+ padding: 0;
+ list-style: none;
+ color: #9A0000;
+ font-size: small;
+}
+
+.config-form fieldset th {
+ padding: 0.3em 0.3em 0.3em 0.5em;
+ text-align: left;
+ vertical-align: top;
+ width: 40%;
+ background: transparent;
+}
+
+.config-form fieldset .doc, .config-form fieldset .disabled-notice {
+ margin-left: 1em;
+}
+
+.config-form fieldset .disabled-notice {
+ font-size: 80%;
+ text-transform: uppercase;
+ color: #E00;
+ cursor: help;
+}
+
+.config-form fieldset td {
+ padding-top: 0.3em;
+ padding-bottom: 0.3em;
+ vertical-align: top;
+}
+
+.config-form fieldset th small {
+ display: block;
+ font-weight: normal;
+ font-family: sans-serif;
+ font-size: x-small;
+ color: #444;
+}
+
+.config-form fieldset th, .config-form fieldset td {
+ border-top: 1px <?php echo $GLOBALS['cfg']['BgTwo']; ?> solid;
+}
+
+fieldset .group-header th {
+ background: <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
+}
+
+fieldset .group-header + tr th {
+ padding-top: 0.6em;
+}
+
+fieldset .group-field-1 th, fieldset .group-header-2 th {
+ padding-left: 1.5em;
+}
+
+fieldset .group-field-2 th, fieldset .group-header-3 th {
+ padding-left: 3em;
+}
+
+fieldset .group-field-3 th {
+ padding-left: 4.5em;
+}
+
+fieldset .disabled-field th,
+fieldset .disabled-field th small,
+fieldset .disabled-field td {
+ color: #666;
+ background-color: #ddd;
+}
+
+.config-form .lastrow {
+ border-top: 1px #000 solid;
+}
+
+.config-form .lastrow {
+ background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;;
+ padding: 0.5em;
+ text-align: center;
+}
+
+.config-form .lastrow input {
+ font-weight: bold;
+}
+
+/* form elements */
+
+.config-form span.checkbox {
+ padding: 2px;
+ display: inline-block;
+}
+
+.config-form .custom { /* customized field */
+ background: #FFC;
+}
+
+.config-form span.checkbox.custom {
+ padding: 1px;
+ border: 1px #EDEC90 solid;
+ background: #FFC;
+}
+
+.config-form .field-error {
+ border-color: #A11 !important;
+}
+
+.config-form input[type="text"],
+.config-form select,
+.config-form textarea {
+ border: 1px #A7A6AA solid;
+ height: auto;
+}
+
+.config-form input[type="text"]:focus,
+.config-form select:focus,
+.config-form textarea:focus {
+ border: 1px #6676FF solid;
+ background: #F7FBFF;
+}
+
+.config-form .field-comment-mark {
+ font-family: serif;
+ color: #007;
+ cursor: help;
+ padding: 0 0.2em;
+ font-weight: bold;
+ font-style: italic;
+}
+
+.config-form .field-comment-warning {
+ color: #A00;
+}
+
+/* error list */
+.config-form dd {
+ margin-left: 0.5em;
+}
+
+.config-form dd:before {
+ content: "\25B8 ";
+}
+
+.click-hide-message {
+ cursor: pointer;
+}
+
+.prefsmanage_opts {
+ margin-<?php echo $left; ?>: 2em;
+}
+
+#prefs_autoload {
+ margin-bottom: 0.5em;
+}
\ No newline at end of file
diff --git a/themes/pmahomme/img/arrow_ltr.png b/themes/pmahomme/img/arrow_ltr.png
new file mode 100644
index 0000000..20a4188
Binary files /dev/null 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
new file mode 100644
index 0000000..ff045a0
Binary files /dev/null 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
new file mode 100644
index 0000000..9b23c06
Binary files /dev/null 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
new file mode 100644
index 0000000..e2f0847
Binary files /dev/null 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
new file mode 100644
index 0000000..abcd936
Binary files /dev/null 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
new file mode 100644
index 0000000..6589138
Binary files /dev/null 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
new file mode 100644
index 0000000..9051fbc
Binary files /dev/null and b/themes/pmahomme/img/b_chart.png differ
diff --git a/themes/pmahomme/img/b_comment.png b/themes/pmahomme/img/b_comment.png
new file mode 100644
index 0000000..7bc9233
Binary files /dev/null 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
new file mode 100644
index 0000000..9051fbc
Binary files /dev/null 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
new file mode 100644
index 0000000..b85916d
Binary files /dev/null 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
new file mode 100644
index 0000000..5c87017
Binary files /dev/null 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
new file mode 100644
index 0000000..0568a45
Binary files /dev/null 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
new file mode 100644
index 0000000..08f2493
Binary files /dev/null and b/themes/pmahomme/img/b_drop.png differ
diff --git a/themes/pmahomme/img/b_edit.png b/themes/pmahomme/img/b_edit.png
new file mode 100644
index 0000000..1db9ce1
Binary files /dev/null and b/themes/pmahomme/img/b_edit.png differ
diff --git a/themes/pmahomme/img/b_empty.png b/themes/pmahomme/img/b_empty.png
new file mode 100644
index 0000000..afe22ba
Binary files /dev/null and b/themes/pmahomme/img/b_empty.png differ
diff --git a/themes/pmahomme/img/b_engine.png b/themes/pmahomme/img/b_engine.png
new file mode 100644
index 0000000..7c0ab2b
Binary files /dev/null and b/themes/pmahomme/img/b_engine.png differ
diff --git a/themes/pmahomme/img/b_export.png b/themes/pmahomme/img/b_export.png
new file mode 100644
index 0000000..ff5925e
Binary files /dev/null and b/themes/pmahomme/img/b_export.png differ
diff --git a/themes/pmahomme/img/b_firstpage.png b/themes/pmahomme/img/b_firstpage.png
new file mode 100644
index 0000000..15d1584
Binary files /dev/null and b/themes/pmahomme/img/b_firstpage.png differ
diff --git a/themes/pmahomme/img/b_ftext.png b/themes/pmahomme/img/b_ftext.png
new file mode 100644
index 0000000..795b6ca
Binary files /dev/null and b/themes/pmahomme/img/b_ftext.png differ
diff --git a/themes/pmahomme/img/b_help.png b/themes/pmahomme/img/b_help.png
new file mode 100644
index 0000000..54c4552
Binary files /dev/null and b/themes/pmahomme/img/b_help.png differ
diff --git a/themes/pmahomme/img/b_home.png b/themes/pmahomme/img/b_home.png
new file mode 100644
index 0000000..fed6221
Binary files /dev/null and b/themes/pmahomme/img/b_home.png differ
diff --git a/themes/pmahomme/img/b_import.png b/themes/pmahomme/img/b_import.png
new file mode 100644
index 0000000..54c6969
Binary files /dev/null and b/themes/pmahomme/img/b_import.png differ
diff --git a/themes/pmahomme/img/b_index.png b/themes/pmahomme/img/b_index.png
new file mode 100644
index 0000000..612612b
Binary files /dev/null and b/themes/pmahomme/img/b_index.png differ
diff --git a/themes/pmahomme/img/b_info.png b/themes/pmahomme/img/b_info.png
new file mode 100644
index 0000000..f656887
Binary files /dev/null and b/themes/pmahomme/img/b_info.png differ
diff --git a/themes/pmahomme/img/b_insrow.png b/themes/pmahomme/img/b_insrow.png
new file mode 100644
index 0000000..0191cfb
Binary files /dev/null and b/themes/pmahomme/img/b_insrow.png differ
diff --git a/themes/pmahomme/img/b_lastpage.png b/themes/pmahomme/img/b_lastpage.png
new file mode 100644
index 0000000..4a2f9d4
Binary files /dev/null and b/themes/pmahomme/img/b_lastpage.png differ
diff --git a/themes/pmahomme/img/b_minus.png b/themes/pmahomme/img/b_minus.png
new file mode 100644
index 0000000..b47ce55
Binary files /dev/null and b/themes/pmahomme/img/b_minus.png differ
diff --git a/themes/pmahomme/img/b_more.png b/themes/pmahomme/img/b_more.png
new file mode 100644
index 0000000..e738318
Binary files /dev/null and b/themes/pmahomme/img/b_more.png differ
diff --git a/themes/pmahomme/img/b_newdb.png b/themes/pmahomme/img/b_newdb.png
new file mode 100644
index 0000000..802bd6c
Binary files /dev/null and b/themes/pmahomme/img/b_newdb.png differ
diff --git a/themes/pmahomme/img/b_newtbl.png b/themes/pmahomme/img/b_newtbl.png
new file mode 100644
index 0000000..b43f694
Binary files /dev/null and b/themes/pmahomme/img/b_newtbl.png differ
diff --git a/themes/pmahomme/img/b_nextpage.png b/themes/pmahomme/img/b_nextpage.png
new file mode 100644
index 0000000..e252606
Binary files /dev/null and b/themes/pmahomme/img/b_nextpage.png differ
diff --git a/themes/pmahomme/img/b_pdfdoc.png b/themes/pmahomme/img/b_pdfdoc.png
new file mode 100644
index 0000000..8f8095e
Binary files /dev/null and b/themes/pmahomme/img/b_pdfdoc.png differ
diff --git a/themes/pmahomme/img/b_plus.png b/themes/pmahomme/img/b_plus.png
new file mode 100644
index 0000000..9ab4a89
Binary files /dev/null and b/themes/pmahomme/img/b_plus.png differ
diff --git a/themes/pmahomme/img/b_prevpage.png b/themes/pmahomme/img/b_prevpage.png
new file mode 100644
index 0000000..18f9cc1
Binary files /dev/null and b/themes/pmahomme/img/b_prevpage.png differ
diff --git a/themes/pmahomme/img/b_primary.png b/themes/pmahomme/img/b_primary.png
new file mode 100644
index 0000000..4ec1a92
Binary files /dev/null and b/themes/pmahomme/img/b_primary.png differ
diff --git a/themes/pmahomme/img/b_print.png b/themes/pmahomme/img/b_print.png
new file mode 100644
index 0000000..a350d18
Binary files /dev/null and b/themes/pmahomme/img/b_print.png differ
diff --git a/themes/pmahomme/img/b_props.png b/themes/pmahomme/img/b_props.png
new file mode 100644
index 0000000..28b8505
Binary files /dev/null and b/themes/pmahomme/img/b_props.png differ
diff --git a/themes/pmahomme/img/b_relations.png b/themes/pmahomme/img/b_relations.png
new file mode 100644
index 0000000..675a415
Binary files /dev/null and b/themes/pmahomme/img/b_relations.png differ
diff --git a/themes/pmahomme/img/b_save.png b/themes/pmahomme/img/b_save.png
new file mode 100644
index 0000000..99d532e
Binary files /dev/null and b/themes/pmahomme/img/b_save.png differ
diff --git a/themes/pmahomme/img/b_sbrowse.png b/themes/pmahomme/img/b_sbrowse.png
new file mode 100644
index 0000000..abcd936
Binary files /dev/null and b/themes/pmahomme/img/b_sbrowse.png differ
diff --git a/themes/pmahomme/img/b_sdb.png b/themes/pmahomme/img/b_sdb.png
new file mode 100644
index 0000000..7d3a11e
Binary files /dev/null and b/themes/pmahomme/img/b_sdb.png differ
diff --git a/themes/pmahomme/img/b_search.png b/themes/pmahomme/img/b_search.png
new file mode 100644
index 0000000..cf3d97f
Binary files /dev/null and b/themes/pmahomme/img/b_search.png differ
diff --git a/themes/pmahomme/img/b_selboard.png b/themes/pmahomme/img/b_selboard.png
new file mode 100644
index 0000000..61a8556
Binary files /dev/null and b/themes/pmahomme/img/b_selboard.png differ
diff --git a/themes/pmahomme/img/b_select.png b/themes/pmahomme/img/b_select.png
new file mode 100644
index 0000000..af4fe07
Binary files /dev/null and b/themes/pmahomme/img/b_select.png differ
diff --git a/themes/pmahomme/img/b_snewtbl.png b/themes/pmahomme/img/b_snewtbl.png
new file mode 100644
index 0000000..6332fef
Binary files /dev/null and b/themes/pmahomme/img/b_snewtbl.png differ
diff --git a/themes/pmahomme/img/b_sql.png b/themes/pmahomme/img/b_sql.png
new file mode 100644
index 0000000..0f9ed4d
Binary files /dev/null and b/themes/pmahomme/img/b_sql.png differ
diff --git a/themes/pmahomme/img/b_sqldoc.png b/themes/pmahomme/img/b_sqldoc.png
new file mode 100644
index 0000000..b02f185
Binary files /dev/null and b/themes/pmahomme/img/b_sqldoc.png differ
diff --git a/themes/pmahomme/img/b_sqlhelp.png b/themes/pmahomme/img/b_sqlhelp.png
new file mode 100644
index 0000000..bddba1f
Binary files /dev/null and b/themes/pmahomme/img/b_sqlhelp.png differ
diff --git a/themes/pmahomme/img/b_tblanalyse.png b/themes/pmahomme/img/b_tblanalyse.png
new file mode 100644
index 0000000..92dffe3
Binary files /dev/null and b/themes/pmahomme/img/b_tblanalyse.png differ
diff --git a/themes/pmahomme/img/b_tblexport.png b/themes/pmahomme/img/b_tblexport.png
new file mode 100644
index 0000000..ff5925e
Binary files /dev/null and b/themes/pmahomme/img/b_tblexport.png differ
diff --git a/themes/pmahomme/img/b_tblimport.png b/themes/pmahomme/img/b_tblimport.png
new file mode 100644
index 0000000..54c6969
Binary files /dev/null and b/themes/pmahomme/img/b_tblimport.png differ
diff --git a/themes/pmahomme/img/b_tblops.png b/themes/pmahomme/img/b_tblops.png
new file mode 100644
index 0000000..5c8213f
Binary files /dev/null and b/themes/pmahomme/img/b_tblops.png differ
diff --git a/themes/pmahomme/img/b_tbloptimize.png b/themes/pmahomme/img/b_tbloptimize.png
new file mode 100644
index 0000000..937fa21
Binary files /dev/null and b/themes/pmahomme/img/b_tbloptimize.png differ
diff --git a/themes/pmahomme/img/b_tipp.png b/themes/pmahomme/img/b_tipp.png
new file mode 100644
index 0000000..d22fde8
Binary files /dev/null and b/themes/pmahomme/img/b_tipp.png differ
diff --git a/themes/pmahomme/img/b_unique.png b/themes/pmahomme/img/b_unique.png
new file mode 100644
index 0000000..75deed8
Binary files /dev/null and b/themes/pmahomme/img/b_unique.png differ
diff --git a/themes/pmahomme/img/b_usradd.png b/themes/pmahomme/img/b_usradd.png
new file mode 100644
index 0000000..deae99b
Binary files /dev/null and b/themes/pmahomme/img/b_usradd.png differ
diff --git a/themes/pmahomme/img/b_usrcheck.png b/themes/pmahomme/img/b_usrcheck.png
new file mode 100644
index 0000000..0468cf0
Binary files /dev/null and b/themes/pmahomme/img/b_usrcheck.png differ
diff --git a/themes/pmahomme/img/b_usrdrop.png b/themes/pmahomme/img/b_usrdrop.png
new file mode 100644
index 0000000..acbb563
Binary files /dev/null and b/themes/pmahomme/img/b_usrdrop.png differ
diff --git a/themes/pmahomme/img/b_usredit.png b/themes/pmahomme/img/b_usredit.png
new file mode 100644
index 0000000..c1974cd
Binary files /dev/null and b/themes/pmahomme/img/b_usredit.png differ
diff --git a/themes/pmahomme/img/b_usrlist.png b/themes/pmahomme/img/b_usrlist.png
new file mode 100644
index 0000000..7fb4e1f
Binary files /dev/null and b/themes/pmahomme/img/b_usrlist.png differ
diff --git a/themes/pmahomme/img/b_view.png b/themes/pmahomme/img/b_view.png
new file mode 100644
index 0000000..f678d06
Binary files /dev/null and b/themes/pmahomme/img/b_view.png differ
diff --git a/themes/pmahomme/img/b_views.png b/themes/pmahomme/img/b_views.png
new file mode 100644
index 0000000..1031697
Binary files /dev/null and b/themes/pmahomme/img/b_views.png differ
diff --git a/themes/pmahomme/img/bd_browse.png b/themes/pmahomme/img/bd_browse.png
new file mode 100644
index 0000000..21878cb
Binary files /dev/null and b/themes/pmahomme/img/bd_browse.png differ
diff --git a/themes/pmahomme/img/bd_deltbl.png b/themes/pmahomme/img/bd_deltbl.png
new file mode 100644
index 0000000..9af8a73
Binary files /dev/null and b/themes/pmahomme/img/bd_deltbl.png differ
diff --git a/themes/pmahomme/img/bd_drop.png b/themes/pmahomme/img/bd_drop.png
new file mode 100644
index 0000000..b886a24
Binary files /dev/null and b/themes/pmahomme/img/bd_drop.png differ
diff --git a/themes/pmahomme/img/bd_empty.png b/themes/pmahomme/img/bd_empty.png
new file mode 100644
index 0000000..d2c128e
Binary files /dev/null and b/themes/pmahomme/img/bd_empty.png differ
diff --git a/themes/pmahomme/img/bd_firstpage.png b/themes/pmahomme/img/bd_firstpage.png
new file mode 100644
index 0000000..ff0ff28
Binary files /dev/null and b/themes/pmahomme/img/bd_firstpage.png differ
diff --git a/themes/pmahomme/img/bd_ftext.png b/themes/pmahomme/img/bd_ftext.png
new file mode 100644
index 0000000..9e2fc19
Binary files /dev/null and b/themes/pmahomme/img/bd_ftext.png differ
diff --git a/themes/pmahomme/img/bd_index.png b/themes/pmahomme/img/bd_index.png
new file mode 100644
index 0000000..c14c0ad
Binary files /dev/null and b/themes/pmahomme/img/bd_index.png differ
diff --git a/themes/pmahomme/img/bd_insrow.png b/themes/pmahomme/img/bd_insrow.png
new file mode 100644
index 0000000..80196a8
Binary files /dev/null and b/themes/pmahomme/img/bd_insrow.png differ
diff --git a/themes/pmahomme/img/bd_lastpage.png b/themes/pmahomme/img/bd_lastpage.png
new file mode 100644
index 0000000..53c0a77
Binary files /dev/null and b/themes/pmahomme/img/bd_lastpage.png differ
diff --git a/themes/pmahomme/img/bd_nextpage.png b/themes/pmahomme/img/bd_nextpage.png
new file mode 100644
index 0000000..4f7dd40
Binary files /dev/null and b/themes/pmahomme/img/bd_nextpage.png differ
diff --git a/themes/pmahomme/img/bd_prevpage.png b/themes/pmahomme/img/bd_prevpage.png
new file mode 100644
index 0000000..bdca388
Binary files /dev/null and b/themes/pmahomme/img/bd_prevpage.png differ
diff --git a/themes/pmahomme/img/bd_primary.png b/themes/pmahomme/img/bd_primary.png
new file mode 100644
index 0000000..74772d5
Binary files /dev/null and b/themes/pmahomme/img/bd_primary.png differ
diff --git a/themes/pmahomme/img/bd_sbrowse.png b/themes/pmahomme/img/bd_sbrowse.png
new file mode 100644
index 0000000..7a80547
Binary files /dev/null and b/themes/pmahomme/img/bd_sbrowse.png differ
diff --git a/themes/pmahomme/img/bd_select.png b/themes/pmahomme/img/bd_select.png
new file mode 100644
index 0000000..1da3056
Binary files /dev/null and b/themes/pmahomme/img/bd_select.png differ
diff --git a/themes/pmahomme/img/bd_unique.png b/themes/pmahomme/img/bd_unique.png
new file mode 100644
index 0000000..fc42e2b
Binary files /dev/null and b/themes/pmahomme/img/bd_unique.png differ
diff --git a/themes/pmahomme/img/body_bg.png b/themes/pmahomme/img/body_bg.png
new file mode 100644
index 0000000..fd8700c
Binary files /dev/null and b/themes/pmahomme/img/body_bg.png differ
diff --git a/themes/pmahomme/img/database.png b/themes/pmahomme/img/database.png
new file mode 100644
index 0000000..3d09261
Binary files /dev/null and b/themes/pmahomme/img/database.png differ
diff --git a/themes/pmahomme/img/database_list_li_hover.png b/themes/pmahomme/img/database_list_li_hover.png
new file mode 100644
index 0000000..6b98f80
Binary files /dev/null and b/themes/pmahomme/img/database_list_li_hover.png differ
diff --git a/themes/pmahomme/img/docs_menu_bg.png b/themes/pmahomme/img/docs_menu_bg.png
new file mode 100644
index 0000000..8fe0d97
Binary files /dev/null and b/themes/pmahomme/img/docs_menu_bg.png differ
diff --git a/themes/pmahomme/img/error.ico b/themes/pmahomme/img/error.ico
new file mode 100644
index 0000000..0b6a8a9
Binary files /dev/null and b/themes/pmahomme/img/error.ico differ
diff --git a/themes/pmahomme/img/eye_grey.png b/themes/pmahomme/img/eye_grey.png
new file mode 100644
index 0000000..8c7baaf
Binary files /dev/null and b/themes/pmahomme/img/eye_grey.png differ
diff --git a/themes/pmahomme/img/input_bg.gif b/themes/pmahomme/img/input_bg.gif
new file mode 100644
index 0000000..f170eeb
Binary files /dev/null and b/themes/pmahomme/img/input_bg.gif differ
diff --git a/themes/pmahomme/img/item.png b/themes/pmahomme/img/item.png
new file mode 100644
index 0000000..9f0aa57
Binary files /dev/null and b/themes/pmahomme/img/item.png differ
diff --git a/themes/pmahomme/img/item_ltr.png b/themes/pmahomme/img/item_ltr.png
new file mode 100644
index 0000000..add41a3
Binary files /dev/null and b/themes/pmahomme/img/item_ltr.png differ
diff --git a/themes/pmahomme/img/item_rtl.png b/themes/pmahomme/img/item_rtl.png
new file mode 100644
index 0000000..05d776a
Binary files /dev/null and b/themes/pmahomme/img/item_rtl.png differ
diff --git a/themes/pmahomme/img/left_nav_bg.png b/themes/pmahomme/img/left_nav_bg.png
new file mode 100644
index 0000000..629b501
Binary files /dev/null and b/themes/pmahomme/img/left_nav_bg.png differ
diff --git a/themes/pmahomme/img/logo_left.png b/themes/pmahomme/img/logo_left.png
new file mode 100644
index 0000000..cb7353d
Binary files /dev/null and b/themes/pmahomme/img/logo_left.png differ
diff --git a/themes/pmahomme/img/logo_right.png b/themes/pmahomme/img/logo_right.png
new file mode 100644
index 0000000..0a22ac9
Binary files /dev/null and b/themes/pmahomme/img/logo_right.png differ
diff --git a/themes/pmahomme/img/marked_bg.png b/themes/pmahomme/img/marked_bg.png
new file mode 100644
index 0000000..29ca62d
Binary files /dev/null and b/themes/pmahomme/img/marked_bg.png differ
diff --git a/themes/pmahomme/img/more.png b/themes/pmahomme/img/more.png
new file mode 100644
index 0000000..e83694b
Binary files /dev/null and b/themes/pmahomme/img/more.png differ
diff --git a/themes/pmahomme/img/php_sym.png b/themes/pmahomme/img/php_sym.png
new file mode 100644
index 0000000..7573748
Binary files /dev/null and b/themes/pmahomme/img/php_sym.png differ
diff --git a/themes/pmahomme/img/pma_logo2.png b/themes/pmahomme/img/pma_logo2.png
new file mode 100644
index 0000000..51d37ac
Binary files /dev/null and b/themes/pmahomme/img/pma_logo2.png differ
diff --git a/themes/pmahomme/img/s_asc.png b/themes/pmahomme/img/s_asc.png
new file mode 100644
index 0000000..24df0f4
Binary files /dev/null and b/themes/pmahomme/img/s_asc.png differ
diff --git a/themes/pmahomme/img/s_asci.png b/themes/pmahomme/img/s_asci.png
new file mode 100644
index 0000000..2fbdd69
Binary files /dev/null and b/themes/pmahomme/img/s_asci.png differ
diff --git a/themes/pmahomme/img/s_attention.png b/themes/pmahomme/img/s_attention.png
new file mode 100644
index 0000000..628cf2d
Binary files /dev/null and b/themes/pmahomme/img/s_attention.png differ
diff --git a/themes/pmahomme/img/s_cancel.png b/themes/pmahomme/img/s_cancel.png
new file mode 100644
index 0000000..c149c2b
Binary files /dev/null and b/themes/pmahomme/img/s_cancel.png differ
diff --git a/themes/pmahomme/img/s_cancel2.png b/themes/pmahomme/img/s_cancel2.png
new file mode 100644
index 0000000..bd6271b
Binary files /dev/null and b/themes/pmahomme/img/s_cancel2.png differ
diff --git a/themes/pmahomme/img/s_db.png b/themes/pmahomme/img/s_db.png
new file mode 100644
index 0000000..3d09261
Binary files /dev/null and b/themes/pmahomme/img/s_db.png differ
diff --git a/themes/pmahomme/img/s_desc.png b/themes/pmahomme/img/s_desc.png
new file mode 100644
index 0000000..9b23c06
Binary files /dev/null and b/themes/pmahomme/img/s_desc.png differ
diff --git a/themes/pmahomme/img/s_error.png b/themes/pmahomme/img/s_error.png
new file mode 100644
index 0000000..c37bd06
Binary files /dev/null and b/themes/pmahomme/img/s_error.png differ
diff --git a/themes/pmahomme/img/s_error2.png b/themes/pmahomme/img/s_error2.png
new file mode 100644
index 0000000..e3e8ad7
Binary files /dev/null and b/themes/pmahomme/img/s_error2.png differ
diff --git a/themes/pmahomme/img/s_fulltext.png b/themes/pmahomme/img/s_fulltext.png
new file mode 100644
index 0000000..cd4c6ec
Binary files /dev/null and b/themes/pmahomme/img/s_fulltext.png differ
diff --git a/themes/pmahomme/img/s_host.png b/themes/pmahomme/img/s_host.png
new file mode 100644
index 0000000..9bc37dc
Binary files /dev/null and b/themes/pmahomme/img/s_host.png differ
diff --git a/themes/pmahomme/img/s_info.png b/themes/pmahomme/img/s_info.png
new file mode 100644
index 0000000..12cd1ae
Binary files /dev/null and b/themes/pmahomme/img/s_info.png differ
diff --git a/themes/pmahomme/img/s_lang.png b/themes/pmahomme/img/s_lang.png
new file mode 100644
index 0000000..e54ebeb
Binary files /dev/null and b/themes/pmahomme/img/s_lang.png differ
diff --git a/themes/pmahomme/img/s_loggoff.png b/themes/pmahomme/img/s_loggoff.png
new file mode 100644
index 0000000..17c297f
Binary files /dev/null and b/themes/pmahomme/img/s_loggoff.png differ
diff --git a/themes/pmahomme/img/s_notice.png b/themes/pmahomme/img/s_notice.png
new file mode 100644
index 0000000..628cf2d
Binary files /dev/null and b/themes/pmahomme/img/s_notice.png differ
diff --git a/themes/pmahomme/img/s_okay.png b/themes/pmahomme/img/s_okay.png
new file mode 100644
index 0000000..89c8129
Binary files /dev/null and b/themes/pmahomme/img/s_okay.png differ
diff --git a/themes/pmahomme/img/s_partialtext.png b/themes/pmahomme/img/s_partialtext.png
new file mode 100644
index 0000000..57558de
Binary files /dev/null and b/themes/pmahomme/img/s_partialtext.png differ
diff --git a/themes/pmahomme/img/s_passwd.png b/themes/pmahomme/img/s_passwd.png
new file mode 100644
index 0000000..c924fe0
Binary files /dev/null and b/themes/pmahomme/img/s_passwd.png differ
diff --git a/themes/pmahomme/img/s_process.png b/themes/pmahomme/img/s_process.png
new file mode 100644
index 0000000..67de2c6
Binary files /dev/null and b/themes/pmahomme/img/s_process.png differ
diff --git a/themes/pmahomme/img/s_really.png b/themes/pmahomme/img/s_really.png
new file mode 100644
index 0000000..1ea4c6e
Binary files /dev/null and b/themes/pmahomme/img/s_really.png differ
diff --git a/themes/pmahomme/img/s_reload.png b/themes/pmahomme/img/s_reload.png
new file mode 100644
index 0000000..46c75aa
Binary files /dev/null and b/themes/pmahomme/img/s_reload.png differ
diff --git a/themes/pmahomme/img/s_replication.png b/themes/pmahomme/img/s_replication.png
new file mode 100644
index 0000000..fec9479
Binary files /dev/null and b/themes/pmahomme/img/s_replication.png differ
diff --git a/themes/pmahomme/img/s_rights.png b/themes/pmahomme/img/s_rights.png
new file mode 100644
index 0000000..c02f315
Binary files /dev/null and b/themes/pmahomme/img/s_rights.png differ
diff --git a/themes/pmahomme/img/s_status.png b/themes/pmahomme/img/s_status.png
new file mode 100644
index 0000000..1128d3f
Binary files /dev/null and b/themes/pmahomme/img/s_status.png differ
diff --git a/themes/pmahomme/img/s_success.png b/themes/pmahomme/img/s_success.png
new file mode 100644
index 0000000..a9925a0
Binary files /dev/null and b/themes/pmahomme/img/s_success.png differ
diff --git a/themes/pmahomme/img/s_tbl.png b/themes/pmahomme/img/s_tbl.png
new file mode 100644
index 0000000..cfc2702
Binary files /dev/null and b/themes/pmahomme/img/s_tbl.png differ
diff --git a/themes/pmahomme/img/s_theme.png b/themes/pmahomme/img/s_theme.png
new file mode 100644
index 0000000..73c5b3f
Binary files /dev/null and b/themes/pmahomme/img/s_theme.png differ
diff --git a/themes/pmahomme/img/s_vars.png b/themes/pmahomme/img/s_vars.png
new file mode 100644
index 0000000..0c76bd1
Binary files /dev/null and b/themes/pmahomme/img/s_vars.png differ
diff --git a/themes/pmahomme/img/s_views.png b/themes/pmahomme/img/s_views.png
new file mode 100644
index 0000000..c3b15ab
Binary files /dev/null and b/themes/pmahomme/img/s_views.png differ
diff --git a/themes/pmahomme/img/s_warn.png b/themes/pmahomme/img/s_warn.png
new file mode 100644
index 0000000..c37bd06
Binary files /dev/null and b/themes/pmahomme/img/s_warn.png differ
diff --git a/themes/pmahomme/img/spacer.png b/themes/pmahomme/img/spacer.png
new file mode 100644
index 0000000..b16c690
Binary files /dev/null and b/themes/pmahomme/img/spacer.png differ
diff --git a/themes/pmahomme/img/tab_bg.png b/themes/pmahomme/img/tab_bg.png
new file mode 100644
index 0000000..3d5b0fb
Binary files /dev/null and b/themes/pmahomme/img/tab_bg.png differ
diff --git a/themes/pmahomme/img/tab_hover_bg.png b/themes/pmahomme/img/tab_hover_bg.png
new file mode 100644
index 0000000..2804bab
Binary files /dev/null and b/themes/pmahomme/img/tab_hover_bg.png differ
diff --git a/themes/pmahomme/img/tab_warning_bg.png b/themes/pmahomme/img/tab_warning_bg.png
new file mode 100644
index 0000000..bf45105
Binary files /dev/null and b/themes/pmahomme/img/tab_warning_bg.png differ
diff --git a/themes/pmahomme/img/tabactive_bg.png b/themes/pmahomme/img/tabactive_bg.png
new file mode 100644
index 0000000..b214971
Binary files /dev/null and b/themes/pmahomme/img/tabactive_bg.png differ
diff --git a/themes/pmahomme/img/vertical_line.png b/themes/pmahomme/img/vertical_line.png
new file mode 100644
index 0000000..c514d61
Binary files /dev/null and b/themes/pmahomme/img/vertical_line.png differ
diff --git a/themes/pmahomme/img/window-new.png b/themes/pmahomme/img/window-new.png
new file mode 100644
index 0000000..0e12ef9
Binary files /dev/null and b/themes/pmahomme/img/window-new.png differ
diff --git a/themes/pmahomme/info.inc.php b/themes/pmahomme/info.inc.php
new file mode 100644
index 0000000..50ee9a3
--- /dev/null
+++ b/themes/pmahomme/info.inc.php
@@ -0,0 +1,15 @@
+<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * Theme information
+ *
+ * @package phpMyAdmin-theme
+ * @subpackage Original
+ */
+
+/**
+ *
+ */
+$theme_name = 'pmahomme';
+$theme_full_version = '1.1';
+?>
\ No newline at end of file
diff --git a/themes/pmahomme/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png b/themes/pmahomme/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png
new file mode 100644
index 0000000..e425e6e
Binary files /dev/null and b/themes/pmahomme/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png differ
diff --git a/themes/pmahomme/jquery/images/ui-bg_flat_75_ffffff_40x100.png b/themes/pmahomme/jquery/images/ui-bg_flat_75_ffffff_40x100.png
new file mode 100644
index 0000000..72d4757
Binary files /dev/null and b/themes/pmahomme/jquery/images/ui-bg_flat_75_ffffff_40x100.png differ
diff --git a/themes/pmahomme/jquery/images/ui-bg_glass_65_ffffff_1x400.png b/themes/pmahomme/jquery/images/ui-bg_glass_65_ffffff_1x400.png
new file mode 100644
index 0000000..8569c1b
Binary files /dev/null and b/themes/pmahomme/jquery/images/ui-bg_glass_65_ffffff_1x400.png differ
diff --git a/themes/pmahomme/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png b/themes/pmahomme/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png
new file mode 100644
index 0000000..3cd467e
Binary files /dev/null and b/themes/pmahomme/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png differ
diff --git a/themes/pmahomme/jquery/images/ui-icons_222222_256x240.png b/themes/pmahomme/jquery/images/ui-icons_222222_256x240.png
new file mode 100644
index 0000000..8bc06cb
Binary files /dev/null and b/themes/pmahomme/jquery/images/ui-icons_222222_256x240.png differ
diff --git a/themes/pmahomme/jquery/images/ui-icons_2e83ff_256x240.png b/themes/pmahomme/jquery/images/ui-icons_2e83ff_256x240.png
new file mode 100644
index 0000000..7a3c779
Binary files /dev/null and b/themes/pmahomme/jquery/images/ui-icons_2e83ff_256x240.png differ
diff --git a/themes/pmahomme/jquery/images/ui-icons_454545_256x240.png b/themes/pmahomme/jquery/images/ui-icons_454545_256x240.png
new file mode 100644
index 0000000..cfd1eaf
Binary files /dev/null and b/themes/pmahomme/jquery/images/ui-icons_454545_256x240.png differ
diff --git a/themes/pmahomme/jquery/images/ui-icons_888888_256x240.png b/themes/pmahomme/jquery/images/ui-icons_888888_256x240.png
new file mode 100644
index 0000000..35f1750
Binary files /dev/null and b/themes/pmahomme/jquery/images/ui-icons_888888_256x240.png differ
diff --git a/themes/pmahomme/jquery/images/ui-icons_cd0a0a_256x240.png b/themes/pmahomme/jquery/images/ui-icons_cd0a0a_256x240.png
new file mode 100644
index 0000000..a239d6c
Binary files /dev/null and b/themes/pmahomme/jquery/images/ui-icons_cd0a0a_256x240.png differ
diff --git a/themes/darkblue_orange/jquery/jquery-ui-1.8.custom.css b/themes/pmahomme/jquery/jquery-ui-1.8.custom.css
similarity index 100%
rename from themes/darkblue_orange/jquery/jquery-ui-1.8.custom.css
rename to themes/pmahomme/jquery/jquery-ui-1.8.custom.css
diff --git a/themes/pmahomme/layout.inc.php b/themes/pmahomme/layout.inc.php
new file mode 100644
index 0000000..604982a
--- /dev/null
+++ b/themes/pmahomme/layout.inc.php
@@ -0,0 +1,115 @@
+<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * configures general layout
+ * for detailed layout configuration please refer to the css files
+ *
+ * @package phpMyAdmin-theme
+ * @subpackage Original
+ */
+
+/**
+ * navi frame
+ */
+// navi frame width
+$GLOBALS['cfg']['NaviWidth'] = 200;
+
+// foreground (text) color for the navi frame
+$GLOBALS['cfg']['NaviColor'] = '#000000';
+
+// background for the navi frame
+$GLOBALS['cfg']['NaviBackground'] = '#D0DCE0';
+
+// foreground (text) color of the pointer in navi frame
+$GLOBALS['cfg']['NaviPointerColor'] = '#000000';
+// background of the pointer in navi frame
+$GLOBALS['cfg']['NaviPointerBackground'] = '#9999CC';
+// text color of the selected database name (when showing the table list)
+$GLOBALS['cfg']['NaviDatabaseNameColor'] = '#0000FF';
+
+/**
+ * main frame
+ */
+// foreground (text) color for the main frame
+$GLOBALS['cfg']['MainColor'] = '#000000';
+
+// background for the main frame
+$GLOBALS['cfg']['MainBackground'] = '#F5F5F5';
+//$GLOBALS['cfg']['MainBackground'] = '#F5F5F5 url(' . $_SESSION['PMA_Theme']->getImgPath() . 'vertical_line.png) repeat-y';
+
+// foreground (text) color of the pointer in browse mode
+$GLOBALS['cfg']['BrowsePointerColor'] = '#000000';
+
+// background of the pointer in browse mode
+$GLOBALS['cfg']['BrowsePointerBackground'] = '#CCFFCC';
+
+// foreground (text) color of the marker (visually marks row by clicking on it) in browse mode
+$GLOBALS['cfg']['BrowseMarkerColor'] = '#000000';
+
+// background of the marker (visually marks row by clicking on it) in browse mode
+$GLOBALS['cfg']['BrowseMarkerBackground'] = '#FFCC99';
+
+/**
+ * fonts
+ */
+/**
+ * the font family as a valid css font family value,
+ * if not set the browser default will be used
+ * (depending on browser, DTD and system settings)
+ */
+$GLOBALS['cfg']['FontFamily'] = 'sans-serif';
+/**
+ * fixed width font family, used in textarea
+ */
+$GLOBALS['cfg']['FontFamilyFixed'] = 'monospace';
+
+/**
+ * tables
+ */
+// border
+$GLOBALS['cfg']['Border'] = 0;
+// table header and footer color
+$GLOBALS['cfg']['ThBackground'] = '#D3DCE3';
+// table header and footer background
+$GLOBALS['cfg']['ThColor'] = '#000000';
+// table data row background
+$GLOBALS['cfg']['BgOne'] = '#E5E5E5';
+// table data row background, alternate
+$GLOBALS['cfg']['BgTwo'] = '#D5D5D5';
+
+/**
+ * query window
+ */
+// Width of Query window
+$GLOBALS['cfg']['QueryWindowWidth'] = 600;
+// Height of Query window
+$GLOBALS['cfg']['QueryWindowHeight'] = 400;
+
+/**
+ * SQL Parser Settings
+ * Syntax colouring data
+ */
+$GLOBALS['cfg']['SQP']['fmtColor'] = array(
+ 'comment' => '#808000',
+ 'comment_mysql' => '',
+ 'comment_ansi' => '',
+ 'comment_c' => '',
+ 'digit' => '',
+ 'digit_hex' => 'teal',
+ 'digit_integer' => 'teal',
+ 'digit_float' => 'aqua',
+ 'punct' => 'fuchsia',
+ 'alpha' => '',
+ 'alpha_columnType' => '#FF9900',
+ 'alpha_columnAttrib' => '#0000FF',
+ 'alpha_reservedWord' => '#990099',
+ 'alpha_functionName' => '#FF0000',
+ 'alpha_identifier' => 'black',
+ 'alpha_charset' => '#6495ed',
+ 'alpha_variable' => '#800000',
+ 'quote' => '#008000',
+ 'quote_double' => '',
+ 'quote_single' => '',
+ 'quote_backtick' => ''
+);
+?>
diff --git a/themes/pmahomme/screen.png b/themes/pmahomme/screen.png
new file mode 100644
index 0000000..18b6708
Binary files /dev/null and b/themes/pmahomme/screen.png differ
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA3-1581-gabfb718
by Madhura Jayaratne 01 Mar '11
by Madhura Jayaratne 01 Mar '11
01 Mar '11
The branch, master has been updated
via abfb718c89c7e68ecb5e5c25c55d426c449d9883 (commit)
from 3400dddadd34963b0322646022cafb5855260d23 (commit)
- Log -----------------------------------------------------------------
commit abfb718c89c7e68ecb5e5c25c55d426c449d9883
Author: Madhura Jayaratne <madhura.cj(a)gmail.com>
Date: Wed Feb 23 23:38:34 2011 +0530
Inline edit extended to fields of type set.
-----------------------------------------------------------------------
Summary of changes:
js/sql.js | 60 +++++++++++++++++++++++++++++++++-------
libraries/display_tbl.lib.php | 7 ++++-
sql.php | 28 +++++++++++++++++++
3 files changed, 83 insertions(+), 12 deletions(-)
diff --git a/js/sql.js b/js/sql.js
index 34e1e74..1cbbca2 100644
--- a/js/sql.js
+++ b/js/sql.js
@@ -458,9 +458,9 @@ $(document).ready(function() {
*/
var relation_curr_value = $this_field.find('a').text();
/**
- * @var enum_curr_value String current value of the field (for fields that are of type enum).
+ * @var curr_value String current value of the field (for fields that are of type enum or set).
*/
- var enum_curr_value = $this_field.text();
+ var curr_value = $this_field.text();
if($this_field.is(':not(.not_null)')){
// add a checkbox to mark null for all the field that are nullable.
@@ -490,8 +490,13 @@ $(document).ready(function() {
// if 'chechbox_null_<field_name>_<row_index>' is clicked empty the corresponding select/editor.
$('.checkbox_null_' + field_name + '_' + this_row_index).bind('click', function(e) {
- if ($this_field.is('.enum, .set')) {
+ if ($this_field.is('.enum')) {
$this_field.find('select').attr('value', '');
+ } else if ($this_field.is('.set')) {
+ $this_field.find('select').find('option').each(function() {
+ var $option = $(this);
+ $option.attr('selected', false);
+ })
} else if ($this_field.is('.relation')) {
// if the dropdown is there to select the foreign value
if ($this_field.find('select').length > 0) {
@@ -511,7 +516,7 @@ $(document).ready(function() {
// In each input sibling, wrap the current value in a textarea
// and store the current value in a hidden span
- if($this_field.is(':not(.truncated, .transformed, .relation, .enum, .null)')) {
+ if($this_field.is(':not(.truncated, .transformed, .relation, .enum, .set, .null)')) {
// handle non-truncated, non-transformed, non-relation values
// We don't need to get any more data, just wrap the value
$this_field.append('<textarea>'+data_value+'</textarea>');
@@ -582,7 +587,7 @@ $(document).ready(function() {
'table' : window.parent.table,
'column' : field_name,
'token' : window.parent.token,
- 'curr_value' : enum_curr_value
+ 'curr_value' : curr_value
}
$.post('sql.php', post_params, function(data) {
@@ -591,6 +596,29 @@ $(document).ready(function() {
$(".original_data").hide();
}) // end $.post()
}
+ else if($this_field.is('.set')) {
+ /** @lends jQuery */
+ //handle set fields
+
+ /**
+ * @var post_params Object containing parameters for the POST request
+ */
+ var post_params = {
+ 'ajax_request' : true,
+ 'get_set_values' : true,
+ 'db' : window.parent.db,
+ 'table' : window.parent.table,
+ 'column' : field_name,
+ 'token' : window.parent.token,
+ 'curr_value' : curr_value
+ }
+
+ $.post('sql.php', post_params, function(data) {
+ $this_field.append(data.select);
+ $this_field.append('<span class="original_data">'+data_value+'</span>');
+ $(".original_data").hide();
+ }) // end $.post()
+ }
else if($this_field.is('.null')) {
//handle null fields
$this_field.append('<textarea></textarea>');
@@ -701,13 +729,17 @@ $(document).ready(function() {
if (is_null) {
sql_query += ' ' + field_name + "=NULL , ";
} else {
- if($this_field.is(":not(.relation, .enum)")) {
+ if($this_field.is(":not(.relation, .enum, .set)")) {
this_field_params[field_name] = $this_field.find('textarea').val();
if($this_field.is('.transformed')) {
$.extend(transform_fields, this_field_params);
}
- }
- else {
+ } else if ($this_field.is('.set')) {
+ $test_element = $this_field.find('select');
+ this_field_params[field_name] = $test_element.map(function(){
+ return $(this).val();
+ }).get().join(",");
+ } else {
// results from a drop-down
$test_element = $this_field.find('select');
if ($test_element.length != 0) {
@@ -777,7 +809,7 @@ $(document).ready(function() {
$this_sibling.addClass('null');
} else {
$this_sibling.removeClass('null');
- if($this_sibling.is(':not(.relation, .enum)')) {
+ if($this_sibling.is(':not(.relation, .enum, .set)')) {
/**
* @var new_html String containing value of the data field after edit
*/
@@ -821,9 +853,15 @@ $(document).ready(function() {
return false;
}
})
- }
- if($this_sibling.is('.enum')) {
+ } else if ($this_sibling.is('.enum')) {
new_html = new_value;
+ } else if ($this_sibling.is('.set')) {
+ if (new_value != null) {
+ $.each(new_value, function(key, value) {
+ new_html = new_html + value + ',';
+ })
+ new_html = new_html.substring(0, new_html.length-1);
+ }
}
}
$this_sibling.html(new_html);
diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php
index a57abb2..d47e94d 100644
--- a/libraries/display_tbl.lib.php
+++ b/libraries/display_tbl.lib.php
@@ -2419,6 +2419,11 @@ function PMA_prepare_row_data($class, $condition_field, $analyzed_sql, $meta, $m
$enum_class = ' enum';
}
+ $set_class = '';
+ if(strpos($meta->flags, 'set') !== false) {
+ $set_class = ' set';
+ }
+
$mime_type_class = '';
if(isset($meta->mimetype)) {
$mime_type_class = ' ' . preg_replace('/\//', '_', $meta->mimetype);
@@ -2428,7 +2433,7 @@ function PMA_prepare_row_data($class, $condition_field, $analyzed_sql, $meta, $m
$result = ' class="' . $class . ($condition_field ? ' condition' : '') . $nowrap
. ' ' . ($is_field_truncated ? ' truncated' : '')
. ($transform_function != $default_function ? ' transformed' : '')
- . $enum_class . $mime_type_class . '">';
+ . $enum_class . $set_class . $mime_type_class . '">';
if (isset($analyzed_sql[0]['select_expr']) && is_array($analyzed_sql[0]['select_expr'])) {
foreach ($analyzed_sql[0]['select_expr'] AS $select_expr_position => $select_expr) {
diff --git a/sql.php b/sql.php
index 42dff07..41f1ec6 100644
--- a/sql.php
+++ b/sql.php
@@ -115,6 +115,34 @@ if(isset($_REQUEST['get_enum_values']) && $_REQUEST['get_enum_values'] == true)
PMA_ajaxResponse(NULL, true, $extra_data);
}
+/**
+ * Find possible values for set fields during inline edit.
+ */
+if(isset($_REQUEST['get_set_values']) && $_REQUEST['get_set_values'] == true) {
+ $field_info_query = 'SHOW FIELDS FROM `' . $db . '`.`' . $table . '` LIKE \'' . $_REQUEST['column'] . '\' ;';
+
+ $field_info_result = PMA_DBI_fetch_result($field_info_query, null, null, null, PMA_DBI_QUERY_STORE);
+
+ $selected_values = explode(',', $_REQUEST['curr_value']);
+
+ $search = array('set', '(', ')', "'");
+ $values = explode(',', str_replace($search, '', $field_info_result[0]['Type']));
+
+ $select = '';
+ foreach($values as $value) {
+ $select .= '<option value="' . htmlspecialchars($value) . '"';
+ if(in_array($value, $selected_values, true)) {
+ $select .= ' selected="selected"';
+ }
+ $select .= '>' . $value . '</option>';
+ }
+
+ $select_size = (sizeof($values) > 10) ? 10 : sizeof($values);
+ $select = '<select multiple="multiple" size="' . $select_size . '">' . $select . '</select>';
+
+ $extra_data['select'] = $select;
+ PMA_ajaxResponse(NULL, true, $extra_data);
+}
// Default to browse if no query set and we have table
// (needed for browsing from DefaultTabTable)
if (empty($sql_query) && strlen($table) && strlen($db)) {
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA3-1580-g3400ddd
by Marc Delisle 01 Mar '11
by Marc Delisle 01 Mar '11
01 Mar '11
The branch, master has been updated
via 3400dddadd34963b0322646022cafb5855260d23 (commit)
via 0d77b5084c517956adad1b3d8bc250ee6fad261b (commit)
from 0c30ed069af362b0e703b8de71527b310db6bafa (commit)
- Log -----------------------------------------------------------------
commit 3400dddadd34963b0322646022cafb5855260d23
Author: Marc Delisle <marc(a)infomarc.info>
Date: Tue Mar 1 08:08:40 2011 -0500
Cache jQuery object to avoid unneeded DOM traversal
commit 0d77b5084c517956adad1b3d8bc250ee6fad261b
Author: Ravindra Nath kakarla <ravindhranath(a)users.sourceforge.net>
Date: Tue Mar 1 08:04:09 2011 -0500
Patch #3194824 Partial list of users and new users
-----------------------------------------------------------------------
Summary of changes:
js/server_privileges.js | 34 ++++++++++++++++++++--------------
server_privileges.php | 2 +-
2 files changed, 21 insertions(+), 15 deletions(-)
diff --git a/js/server_privileges.js b/js/server_privileges.js
index 5fe8398..8160066 100644
--- a/js/server_privileges.js
+++ b/js/server_privileges.js
@@ -85,25 +85,31 @@ function appendNewUser(new_user_string, new_user_initial, new_user_initial_strin
//Append the newly retrived user to the table now
//Calculate the index for the new row
- var curr_last_row = $("#usersForm").find('tbody').find('tr:last');
- var curr_last_row_index_string = $(curr_last_row).find('input:checkbox').attr('id').match(/\d+/)[0];
+ var $curr_last_row = $("#usersForm").find('tbody').find('tr:last');
+ var $curr_first_row = $("#usersForm").find('tbody').find('tr:first');
+ var first_row_initial = $curr_first_row.find('label').html().substr(0, 1).toUpperCase();
+ var curr_shown_initial = $curr_last_row.find('label').html().substr(0, 1).toUpperCase();
+ var curr_last_row_index_string = $curr_last_row.find('input:checkbox').attr('id').match(/\d+/)[0];
var curr_last_row_index = parseFloat(curr_last_row_index_string);
var new_last_row_index = curr_last_row_index + 1;
var new_last_row_id = 'checkbox_sel_users_' + new_last_row_index;
+ var is_show_all = (first_row_initial != curr_shown_initial) ? true : false;
//Append to the table and set the id/names correctly
- $(new_user_string)
- .insertAfter($(curr_last_row))
- .find('input:checkbox')
- .attr('id', new_last_row_id)
- .val(function() {
- //the insert messes up the &27; part. let's fix it
- return $(this).val().replace(/&/,'&');
- })
- .end()
- .find('label')
- .attr('for', new_last_row_id)
- .end();
+ if((curr_shown_initial == new_user_initial) || is_show_all) {
+ $(new_user_string)
+ .insertAfter($curr_last_row)
+ .find('input:checkbox')
+ .attr('id', new_last_row_id)
+ .val(function() {
+ //the insert messes up the &27; part. let's fix it
+ return $(this).val().replace(/&/,'&');
+ })
+ .end()
+ .find('label')
+ .attr('for', new_last_row_id)
+ .end();
+ }
//Let us sort the table alphabetically
$("#usersForm").find('tbody').PMA_sort_table('label');
diff --git a/server_privileges.php b/server_privileges.php
index 499fea6..c863d12 100644
--- a/server_privileges.php
+++ b/server_privileges.php
@@ -1430,7 +1430,7 @@ if( $GLOBALS['is_ajax_request'] && !isset($_REQUEST['export']) && !isset($_REQUE
*/
$new_user_initial = strtoupper(substr($username, 0, 1));
$new_user_initial_string = '<a href="server_privileges.php?' . $GLOBALS['url_query'] . '&initial=' . $new_user_initial
- .'>' . $new_user_initial . '</a>';
+ .'">' . $new_user_initial . '</a>';
$extra_data['new_user_initial'] = $new_user_initial;
$extra_data['new_user_initial_string'] = $new_user_initial_string;
}
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. eaa96ec1dfcff0d08c6cf69490da6e73d870d99f
by Michal Čihař 01 Mar '11
by Michal Čihař 01 Mar '11
01 Mar '11
The branch, master has been updated
via eaa96ec1dfcff0d08c6cf69490da6e73d870d99f (commit)
via 08bd5e3ba9135b9adfcd5898ea13278c5aed9355 (commit)
via 2b0b437316daeeee55e2d623ce811d38b7851aba (commit)
via 5c97cb575dcefb765f4b5f2468f6bdf1867b8465 (commit)
via b3615314ad8b1df2ee1bb98c7c47c6824c944b61 (commit)
via c951ab997e31440c19cdfa03ef31c20595e932b1 (commit)
via fe84c31b60556549cf167220d6f7c720dfd077b3 (commit)
via 3cfb58eb64f2f4d5ab2f920c59af3f5e477e72de (commit)
via b87a0359316c5e6a917c2b794634e99b86d00f5c (commit)
via 65c88579bd728af3a038ee61fc05de88ea35ab06 (commit)
via cdc66dfdcd805631a4264e59f52db0b4ccfdfe2f (commit)
via 8564b118e878fb8ab4346a14ac3b1c1d2551f509 (commit)
via 6f5e1820cce3ead79cfd07678a5bdb87ac44752c (commit)
via 2e7cf75b087d2c254bd755bcf35aeb826470b033 (commit)
via ad5f7b9542ca500f2c193a205116a351e076e6a3 (commit)
via 2e03e9ca69c2673fd452619cacc1b62e0fb2cc0b (commit)
via a5301b68fc70d6981e998917e6e9f40cd41e4dbb (commit)
via eebca9040c5e3e7d90aa629280a0cac50e53098a (commit)
via 30fd1464822b66e7705770e933aeabee8022a9eb (commit)
via c543fc9ee33aab08e1da62036fbb93690befbfde (commit)
via 2e8942b36f863a4b13b806e25fec46d3aa15d10a (commit)
via d45f2d7675a605f504b0acca10fa89e7d40a11e8 (commit)
via 7cd0b42148e2512f80d463c36876f1d0b083f99c (commit)
via f47ad9b71dd1bf557a606b5f96d5f74fd73c3661 (commit)
via 0739e05ae8e58e1045d49edfa3fd080649e79c7a (commit)
via f4d833e9b1348b7528480882913585f15f85cedf (commit)
via c74663dc5fb47b0f67b11f81d1901b564f00292c (commit)
via 1e3c9c965b41c6458ad32c7098ae627dc6465174 (commit)
via 0f6d05559b55a7b34dc96672c20f96d261202432 (commit)
via f3821644e7f628d634f77f85a8018ece72d09b64 (commit)
via 5b6929910580806e5f275cd44d48eab4fae8652b (commit)
via 28b4f72ccd910272da33912e217659e913b6485d (commit)
via aa2ac37b0f9a3ddee0e21c83e159dbd7845ec8c7 (commit)
via dcd7e21d11a21511586e0b377b742eb5b9a5da88 (commit)
via 139effa37c9db6b14ff76202774cb259235db483 (commit)
via ef0a720197fb4514792591d6651d31be064d846b (commit)
via a7bf57d478152f1c2f43229e2148bf23c87a36d3 (commit)
via f9019fd6cc58d1b2a5ada08dd2c5e91eda4cba84 (commit)
via 7690ef8352af0bc4f57a6d80989aa876e9783355 (commit)
via a7d2ff4b818f1aea4168923b9261c7754a147545 (commit)
via fa5b42bc90af9ad6c8d40e2d4953c75e46e2f554 (commit)
via bd3083471b0190eb42eb9498ff2225b989c1445d (commit)
via 5832fd6c30cb23a952ee6f40cb7a46cb5fb37535 (commit)
via cb52af136bd9978a4268efe9e20955ebf7c53d5c (commit)
via 6a25170d5f06c919ec4ab0e39152a18c87eab6dc (commit)
via b6ee197282cceaa47f726e33a30b8df67eed52c7 (commit)
via fd3b936534944aa10ef4ac9717b9f25566f05fc7 (commit)
via e655b1227c77b34266641eca0c033a30fe1a182e (commit)
via cd17c645537dfa45b31c1a7c45dce3c4363a0259 (commit)
via 4652293350ef637ac73b80d340a7c2d774317034 (commit)
via a4b58fd74a5250b67f5721c66b1be946f93b010d (commit)
via 6aaf00c1f51a36bda4d45229e961b35a30cdbbd4 (commit)
via faba39869d696f86e6442bbb1f5b3b1a765ee9b6 (commit)
via 2a19bff0337d470f09ddfa7cdd9a4cb2f2b4e3e8 (commit)
via 88897b384f4f07575555019d79bd9f81ba3065b4 (commit)
via e0ab46d7900acd90cd8d50fbbcfabf3db4213a6a (commit)
via ac101807b8cb22f5c140e3ab3ce40dd0c7676320 (commit)
via 8dc83ff7bf6850d8c260c1d768f49a769bda7188 (commit)
via da9928b5c302a5c3b6bfcecbcd6d29bb79ff2bd9 (commit)
via 312cb6501a67690dedd8cdc9df06a5fead84bd52 (commit)
via 697351ef08c9dd559fb6f3867335209cc2f90534 (commit)
via 8686c9e86be7da6f18c23c21298d54c69eed272e (commit)
from b724a8ac8c330712cc642f2aa2f889305e1f6611 (commit)
- Log -----------------------------------------------------------------
commit eaa96ec1dfcff0d08c6cf69490da6e73d870d99f
Author: Michal Čihař <michal(a)cihar.com>
Date: Tue Mar 1 06:52:25 2011 +0100
Update generated docs
commit 08bd5e3ba9135b9adfcd5898ea13278c5aed9355
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 06:00:05 2011 +0200
Translation update done using Pootle.
commit 2b0b437316daeeee55e2d623ce811d38b7851aba
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:59:18 2011 +0200
Translation update done using Pootle.
commit 5c97cb575dcefb765f4b5f2468f6bdf1867b8465
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:57:35 2011 +0200
Translation update done using Pootle.
commit b3615314ad8b1df2ee1bb98c7c47c6824c944b61
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:55:55 2011 +0200
Translation update done using Pootle.
commit c951ab997e31440c19cdfa03ef31c20595e932b1
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:44:07 2011 +0200
Translation update done using Pootle.
commit fe84c31b60556549cf167220d6f7c720dfd077b3
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:43:07 2011 +0200
Translation update done using Pootle.
commit 3cfb58eb64f2f4d5ab2f920c59af3f5e477e72de
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:43:02 2011 +0200
Translation update done using Pootle.
commit b87a0359316c5e6a917c2b794634e99b86d00f5c
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:42:43 2011 +0200
Translation update done using Pootle.
commit 65c88579bd728af3a038ee61fc05de88ea35ab06
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:42:33 2011 +0200
Translation update done using Pootle.
commit cdc66dfdcd805631a4264e59f52db0b4ccfdfe2f
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:42:20 2011 +0200
Translation update done using Pootle.
commit 8564b118e878fb8ab4346a14ac3b1c1d2551f509
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:42:15 2011 +0200
Translation update done using Pootle.
commit 6f5e1820cce3ead79cfd07678a5bdb87ac44752c
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:41:37 2011 +0200
Translation update done using Pootle.
commit 2e7cf75b087d2c254bd755bcf35aeb826470b033
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:41:29 2011 +0200
Translation update done using Pootle.
commit ad5f7b9542ca500f2c193a205116a351e076e6a3
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:40:53 2011 +0200
Translation update done using Pootle.
commit 2e03e9ca69c2673fd452619cacc1b62e0fb2cc0b
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:40:47 2011 +0200
Translation update done using Pootle.
commit a5301b68fc70d6981e998917e6e9f40cd41e4dbb
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:39:02 2011 +0200
Translation update done using Pootle.
commit eebca9040c5e3e7d90aa629280a0cac50e53098a
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:38:56 2011 +0200
Translation update done using Pootle.
commit 30fd1464822b66e7705770e933aeabee8022a9eb
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:38:42 2011 +0200
Translation update done using Pootle.
commit c543fc9ee33aab08e1da62036fbb93690befbfde
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:38:36 2011 +0200
Translation update done using Pootle.
commit 2e8942b36f863a4b13b806e25fec46d3aa15d10a
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:38:11 2011 +0200
Translation update done using Pootle.
commit d45f2d7675a605f504b0acca10fa89e7d40a11e8
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:36:45 2011 +0200
Translation update done using Pootle.
commit 7cd0b42148e2512f80d463c36876f1d0b083f99c
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:32:57 2011 +0200
Translation update done using Pootle.
commit f47ad9b71dd1bf557a606b5f96d5f74fd73c3661
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:32:45 2011 +0200
Translation update done using Pootle.
commit 0739e05ae8e58e1045d49edfa3fd080649e79c7a
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:32:15 2011 +0200
Translation update done using Pootle.
commit f4d833e9b1348b7528480882913585f15f85cedf
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:30:34 2011 +0200
Translation update done using Pootle.
commit c74663dc5fb47b0f67b11f81d1901b564f00292c
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:28:11 2011 +0200
Translation update done using Pootle.
commit 1e3c9c965b41c6458ad32c7098ae627dc6465174
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:27:09 2011 +0200
Translation update done using Pootle.
commit 0f6d05559b55a7b34dc96672c20f96d261202432
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:24:29 2011 +0200
Translation update done using Pootle.
commit f3821644e7f628d634f77f85a8018ece72d09b64
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:23:14 2011 +0200
Translation update done using Pootle.
commit 5b6929910580806e5f275cd44d48eab4fae8652b
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:22:11 2011 +0200
Translation update done using Pootle.
commit 28b4f72ccd910272da33912e217659e913b6485d
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:20:58 2011 +0200
Translation update done using Pootle.
commit aa2ac37b0f9a3ddee0e21c83e159dbd7845ec8c7
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:18:37 2011 +0200
Translation update done using Pootle.
commit dcd7e21d11a21511586e0b377b742eb5b9a5da88
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:14:10 2011 +0200
Translation update done using Pootle.
commit 139effa37c9db6b14ff76202774cb259235db483
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:02:07 2011 +0200
Translation update done using Pootle.
commit ef0a720197fb4514792591d6651d31be064d846b
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 05:01:51 2011 +0200
Translation update done using Pootle.
commit a7bf57d478152f1c2f43229e2148bf23c87a36d3
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:55:46 2011 +0200
Translation update done using Pootle.
commit f9019fd6cc58d1b2a5ada08dd2c5e91eda4cba84
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:53:35 2011 +0200
Translation update done using Pootle.
commit 7690ef8352af0bc4f57a6d80989aa876e9783355
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:48:02 2011 +0200
Translation update done using Pootle.
commit a7d2ff4b818f1aea4168923b9261c7754a147545
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:46:28 2011 +0200
Translation update done using Pootle.
commit fa5b42bc90af9ad6c8d40e2d4953c75e46e2f554
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:45:05 2011 +0200
Translation update done using Pootle.
commit bd3083471b0190eb42eb9498ff2225b989c1445d
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:44:38 2011 +0200
Translation update done using Pootle.
commit 5832fd6c30cb23a952ee6f40cb7a46cb5fb37535
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:44:28 2011 +0200
Translation update done using Pootle.
commit cb52af136bd9978a4268efe9e20955ebf7c53d5c
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:44:22 2011 +0200
Translation update done using Pootle.
commit 6a25170d5f06c919ec4ab0e39152a18c87eab6dc
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:41:41 2011 +0200
Translation update done using Pootle.
commit b6ee197282cceaa47f726e33a30b8df67eed52c7
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:41:33 2011 +0200
Translation update done using Pootle.
commit fd3b936534944aa10ef4ac9717b9f25566f05fc7
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:41:16 2011 +0200
Translation update done using Pootle.
commit e655b1227c77b34266641eca0c033a30fe1a182e
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:41:07 2011 +0200
Translation update done using Pootle.
commit cd17c645537dfa45b31c1a7c45dce3c4363a0259
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:40:26 2011 +0200
Translation update done using Pootle.
commit 4652293350ef637ac73b80d340a7c2d774317034
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:38:38 2011 +0200
Translation update done using Pootle.
commit a4b58fd74a5250b67f5721c66b1be946f93b010d
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:37:59 2011 +0200
Translation update done using Pootle.
commit 6aaf00c1f51a36bda4d45229e961b35a30cdbbd4
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:37:04 2011 +0200
Translation update done using Pootle.
commit faba39869d696f86e6442bbb1f5b3b1a765ee9b6
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:36:11 2011 +0200
Translation update done using Pootle.
commit 2a19bff0337d470f09ddfa7cdd9a4cb2f2b4e3e8
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:35:56 2011 +0200
Translation update done using Pootle.
commit 88897b384f4f07575555019d79bd9f81ba3065b4
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:35:38 2011 +0200
Translation update done using Pootle.
commit e0ab46d7900acd90cd8d50fbbcfabf3db4213a6a
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:35:29 2011 +0200
Translation update done using Pootle.
commit ac101807b8cb22f5c140e3ab3ce40dd0c7676320
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:35:08 2011 +0200
Translation update done using Pootle.
commit 8dc83ff7bf6850d8c260c1d768f49a769bda7188
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:35:00 2011 +0200
Translation update done using Pootle.
commit da9928b5c302a5c3b6bfcecbcd6d29bb79ff2bd9
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:34:25 2011 +0200
Translation update done using Pootle.
commit 312cb6501a67690dedd8cdc9df06a5fead84bd52
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 04:32:13 2011 +0200
Translation update done using Pootle.
commit 697351ef08c9dd559fb6f3867335209cc2f90534
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 03:06:30 2011 +0200
Translation update done using Pootle.
commit 8686c9e86be7da6f18c23c21298d54c69eed272e
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Tue Mar 1 03:06:16 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
output/zh_CN/Documentation.html | 97 ++++++++------------
output/zh_CN/INSTALL | 6 ++
output/zh_CN/README | 50 +++++------
output/zh_CN/TODO | 4 +-
po/zh_CN.po | 185 +++++++++++++++++----------------------
5 files changed, 151 insertions(+), 191 deletions(-)
create mode 100644 output/zh_CN/INSTALL
diff --git a/output/zh_CN/Documentation.html b/output/zh_CN/Documentation.html
index f00f4c7..3c2419c 100644
--- a/output/zh_CN/Documentation.html
+++ b/output/zh_CN/Documentation.html
@@ -19,7 +19,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>phpMyAdmin 3.4.0-beta4-dev - Documentation</title>
+ <title>phpMyAdmin 3.4.0-beta4-dev - 文档</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -27,7 +27,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/">php<span
-class="myadmin">MyAdmin</span></a> 3.4.0-beta4-dev Documentation
+class="myadmin">MyAdmin</span></a> 3.4.0-beta4-dev 文档
</h1>
</div>
@@ -138,9 +138,7 @@ Language)">SQL</abbr> 文件中导入数据和 MySQL 结构</li>
Questions)">FAQ</abbr> 3.6)</a></li>
<li>支持改进的 MySQL 扩展 mysqli <a href="#faq1_17"> (参见 <abbr title="常见问题 (Frequently
Asked Questions)">FAQ</abbr> 1.17)</a></li>
- <li>communicate in <a
-href="http://www.phpmyadmin.net/home_page/translations.php">62 different
-languages</a>
+ <li>支持 <a href="http://www.phpmyadmin.net/home_page/translations.php">62 种语言</a>
</li>
<li>同步当前或远程服务器上的任意两个数据库 <a href="#faq9_1">(参见 <abbr title="常见问题 (Frequently
Asked Questions)">FAQ</abbr> 9.1)</a>
@@ -311,8 +309,7 @@ href="#authentication_modes">使用认证</a> 一节)。</p>
<ul><li>在<b>多用户环境</b>中,我们推荐使用 <abbr title="超文本转移协议 (HyperText Transfer
Protocol)">HTTP</abbr> 和 cookie 认证,这样用户仅可以看到并管理自己的数据库。<br />
- Nevertheless be aware that MS Internet Explorer seems to be really buggy
-about cookies, at least till version 6.<br />
+ 目前已知微软的 IE6 (Internet Explorer,或更低版本) 在处理 cookies 上存在严重问题。<br />
即使在<b>单用户环境</b>中使用 <abbr title="超文本转移协议 (HyperText Transfer
Protocol)">HTTP</abbr> 或 cookie 认证,用户名和密码也不会被保存在配置文件中。
</li>
@@ -654,10 +651,8 @@ array('要置顶的数据库1', '要置顶的数据库2', '*');</tt> 即可,ph
<dt><span id="cfg_Servers_hide_db">$cfg['Servers'][$i]['hide_db']</span> 字符串
</dt>
- <dd>Regular expression for hiding some databases from unprivileged users. This
-only hides them from listing, but a user is still able to access them
-(using, for example, the SQL query area). To limit access, use the MySQL
-privilege system.
+ <dd>对非特权用户隐藏数据库的正则表达式。 这仅仅将数据库从列表中隐藏,用户仍然可以直接访问 (如通过 SQL 查询)。要彻底限制访问,请使用 MySQL
+权限系统。
<br /><br />
例如,要隐藏所有以字母 "a" 开头的数据库,用<br />
<pre>$cfg['Servers'][$i]['hide_db'] = '^a';</pre>
@@ -703,13 +698,10 @@ id="cfg_Servers_bookmarktable">$cfg['Servers'][$i]['bookmarktable']</span>
</dt>
<dd>自 2.2.4 起你可以在 'relation' 表的支持下定义一张表中的一个字段与另一张表的关系 (外键)。目前 phpMyAdmin 用它来
<ul><li>使外键数据可点击,浏览主表时可通过点击数据值转到外表;</li>
- <li>display in an optional tool-tip the "display column" when browsing
-the master table, if you move the mouse to a column containing a foreign key
-(use also the 'table_info' table);<br />
+ <li>在浏览主表时,当鼠标移到含有外键的字段上用气泡提示显示可选的"显示的字段" (需同时使用 'table_info' 表);<br />
(参见 <a href="#faqdisplay"><abbr title="常见问题 (Frequently Asked Questions)">
FAQ</abbr> 6.7</a>)</li>
- <li>in edit/insert mode, display a drop-down list of possible foreign keys (key
-value and "display column" are shown)<br />
+ <li>在编辑/插入时,显示可能的外键下拉列表 (显示为键值和"显示的字段")<br />
(参见 <a href="#faq6_21"><abbr title="常见问题 (Frequently Asked Questions)">
FAQ</abbr> 6.21</a>)</li>
<li>display links on the table properties page, to check referential integrity
@@ -3909,7 +3901,7 @@ or on the Structure page.</p>
<h4 id="faq6_27">
- <a href="#faq6_27">6.27 What format strings can I use?</a></h4>
+ <a href="#faq6_27">6.27 我可以使用哪些格式字符串?</a></h4>
<p>
In all places where phpMyAdmin accepts format strings, you can use
@@ -3920,22 +3912,21 @@ you can not get the table name), but the following variables can be used:
</p>
<dl>
<dt><code>@HTTP_HOST@</code></dt>
- <dd>HTTP host that runs phpMyAdmin</dd>
+ <dd>运行 phpMyAdmin 的 HTTP 主机</dd>
<dt><code>@SERVER@</code></dt>
- <dd>MySQL server name</dd>
+ <dd>MySQL 服务器名</dd>
<dt><code>@VERBOSE@</code></dt>
- <dd>Verbose MySQL server name as defined in <a
-href="#cfg_Servers_verbose">server configuration</a></dd>
+ <dd>在<a href="#cfg_Servers_verbose">服务器设置</a>中定义的详细的 MySQL 服务器名</dd>
<dt><code>@VSERVER@</code></dt>
- <dd>Verbose MySQL server name if set, otherwise normal</dd>
+ <dd>如果设置了详细的 MySQL 服务器名则使用,否则使用常规的服务器名</dd>
<dt><code>@DATABASE@</code></dt>
- <dd>Currently opened database</dd>
+ <dd>当前打开的数据库</dd>
<dt><code>@TABLE@</code></dt>
- <dd>Currently opened table</dd>
+ <dd>当前打开的数据表</dd>
<dt><code>@FIELDS@</code></dt>
- <dd>Fields of currently opened table</dd>
+ <dd>当前打开表的字段</dd>
<dt><code>@PHPMYADMIN@</code></dt>
- <dd>phpMyAdmin with version</dd>
+ <dd>带版本号的 phpMyAdmin 字样</dd>
</dl>
<h4 id="wysiwyg">
@@ -4365,7 +4356,7 @@ href="http://www.acko.net/node/56">http://www.acko.net/node/56</a>)。</li>
<li>Nicola Asuni (Tecnick.com)
<ul>
- <li>TCPDF library (<a href="http://www.tcpdf.org">http://www.tcpdf.org</a>)</li>
+ <li>TCPDF 库 (<a href="http://www.tcpdf.org">http://www.tcpdf.org</a>)</li>
</ul></li>
<li>Michael Keck <mkkeck_at_users.sourceforge.net>
@@ -4474,51 +4465,40 @@ Zigmantas, "Manuzhai".
</p>
-<h3>Original Credits of Version 2.1.0</h3>
+<h3>版本 2.1.0 的鸣谢原文</h3>
<p>
- This work is based on Peter Kuppelwieser's MySQL-Webadmin. It was his idea
-to create a web-based interface to MySQL using PHP3. Although I have not
-used any of his source-code, there are some concepts I've borrowed from
-him. phpMyAdmin was created because Peter told me he wasn't going to further
-develop his (great) tool.
+ 此项目基于 Peter Kuppelwieser 的 MySQL-Webadmin 而来。他想出了通过 PHP3 来建立一个基于 web 的 MySQL
+交互界面这个点子。尽管我没有使用他的源代码,但很多想法都是受他而启发。我之所以启动 phpMyAdmin 这个项目是因为 Peter 告诉我他不再开发他
+(优秀) 的工具了。
</p>
<p>
- Thanks go to
+ 在这里要感谢
</p>
<ul>
- <li>Amalesh Kempf <ak-lsml_at_living-source.com> who contributed the code
-for the check when dropping a table or database. He also suggested that you
-should be able to specify the primary key on tbl_create.php3. To version
-1.1.1 he contributed the ldi_*.php3-set (Import text-files) as well as a
-bug-report. Plus many smaller improvements.
+ <li>Amalesh Kempf <ak-lsml_at_living-source.com>
+贡献了检查是否正在删除数据表或数据库的代码。同时他建议在 tbl_create.php3 中应该可以让用户设置主键。在 1.1.1 版本中他贡献了
+ldi_*.php3-set (导入文本文件) 、缺陷报告以及许多小改进。
</li>
- <li>Jan Legenhausen <jan_at_nrw.net>: He made many of the changes that
-were introduced in 1.3.0 (including quite significant ones like the
-authentication). For 1.4.1 he enhanced the table-dump feature. Plus
-bug-fixes and help.
+ <li>Jan Legenhausen <jan_at_nrw.net>: 他对 1.3.0 中引进的功能作出许多改进
+(包括诸如认证这样的重要功能)。他还增强了 1.4.1 中的数据表转储功能。以及缺陷修正及帮助。
</li>
- <li>Marc Delisle <DelislMa_at_CollegeSherbrooke.qc.ca> made phpMyAdmin
-language-independent by outsourcing the strings to a separate file. He also
-contributed the French translation.
+ <li>Marc Delisle <DelislMa_at_CollegeSherbrooke.qc.ca> 通过使用单独的语言文件使
+phpMyAdmin 实现语言分离。他也对法语翻译作出了贡献。
</li>
- <li>Alexandr Bravo <abravo_at_hq.admiral.ru> who contributed
-tbl_select.php3, a feature to display only some columns from a table.
+ <li>Alexandr Bravo <abravo_at_hq.admiral.ru> 贡献了
+tbl_select.php3,可以只显示一张表中的某些字段的功能。
</li>
- <li>Chris Jackson <chrisj_at_ctel.net> added support for MySQL functions
-in tbl_change.php3. He also added the "Query by Example" feature
-in 2.0.
+ <li>Chris Jackson <chrisj_at_ctel.net> 在 tbl_change.php3 中添加了对 MySQL
+函数的支持。在 2.0 中添加了 "依例查询" 功能。
</li>
- <li>Dave Walton <walton_at_nordicdms.com> added support for multiple
-servers and is a regular contributor for bug-fixes.
+ <li>Dave Walton <walton_at_nordicdms.com> 添加了多服务器的支持并且经常贡献缺陷修正。
</li>
- <li>Gabriel Ash <ga244_at_is8.nyu.edu> contributed the random access
-features for 2.0.6.
+ <li>Gabriel Ash <ga244_at_is8.nyu.edu> 贡献了 2.0.6 中的随机访问功能。
</li>
</ul>
<p>
- The following people have contributed minor changes, enhancements, bugfixes
-or support for a new language:
+ 感谢下列对小的修改、改进、缺陷修正以及新语言支持作出贡献的人们:
</p>
<p>
Jim Kraai, Jordi Bruguera, Miquel Obrador, Geert Lund, Thomas Kleemann,
@@ -4527,8 +4507,7 @@ Kettler, Joe Pruett, Renato Lins, Mark Kronsbein, Jannis Hermanns,
G. Wieggers.
</p>
<p>
- And thanks to everyone else who sent me email with suggestions, bug-reports
-and or just some feedback.
+ 同时感谢所有给我们提出建议、意见、报告缺陷以及使用反馈的热心用户。
</p>
<p>
diff --git a/output/zh_CN/INSTALL b/output/zh_CN/INSTALL
new file mode 100644
index 0000000..7ce4f53
--- /dev/null
+++ b/output/zh_CN/INSTALL
@@ -0,0 +1,6 @@
+phpMyAdmin - 安装
+===================
+
+请参见 Documentation.txt 或 Documentation.html 文件。
+
+
diff --git a/output/zh_CN/README b/output/zh_CN/README
index 2d78208..a7d7fa7 100644
--- a/output/zh_CN/README
+++ b/output/zh_CN/README
@@ -1,7 +1,7 @@
-phpMyAdmin - Readme
+phpMyAdmin - 读我
===================
-Version 3.4.0-beta4-dev
+版本 3.4.0-beta4-dev
使用 PHP 编写,通过 web 管理 MySQL 的工具。
@@ -10,10 +10,10 @@ http://www.phpmyadmin.net/
版权
------
-Copyright (C) 1998-2000
+版权所有 (C) 1998-2000
Tobias Ratschiller <tobias_at_ratschiller.com>
-Copyright (C) 2001-2011
+版权所有 (C) 2001-2011
Marc Delisle <marc_at_infomarc.info>
Olivier Müller <om_at_omnis.ch>
Robin Johnson <robbat2_at_users.sourceforge.net>
@@ -22,10 +22,10 @@ Copyright (C) 2001-2011
Garvin Hicking <me_at_supergarv.de>
Michael Keck <mkkeck_at_users.sourceforge.net>
Sebastian Mendel <cybot_tm_at_users.sourceforge.net>
- [check Documentation.txt/.html file for more details]
+ [详细信息请参见 Documentation.txt/.html 文件]
-License
--------
+授权
+------
本软件是自由软件,你可以在自由软件基金会发布的 GNU 通用公共许可协议第 2 版的许可下重新修改并/或发布。
@@ -41,40 +41,36 @@ Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
* MySQL 5.0 或更高版本
* a web-browser (doh!)
-Summary
--------
+概要
+------
-phpMyAdmin is intended to handle the administration of MySQL over the web.
-For a summary of features, please see the Documentation.txt/.html file.
+phpMyAdmin 旨在通过 web 管理 MySQL 。 具体功能请参见 Documentation.txt/.html 文件。
下载
------
-You can get the newest version at http://www.phpmyadmin.net/.
+你可以在 http://www.phpmyadmin.net/ 获得最新版本。
-More Information
-----------------
+更多信息
+------------
-Please see the Documentation.txt/.html file.
+请见 Documentation.txt/.html 文件。
-Support
--------
+支持
+------
-See reference about support forums under http://www.phpmyadmin.net/
+参见 http://www.phpmyadmin.net/ 中关于支持论坛的相关信息
-Enjoy!
-------
+尽情享受吧!
+------------------
-The phpMyAdmin Devel team
+phpMyAdmin 开发组
-PS:
+附:
-Please, don't send us emails with question like "How do I compile PHP with
-MySQL-support". We just don't have the time to be your free help desk.
+请勿向我们发送邮件询问诸如 "怎样编译支持 MySQL 的 PHP" 之类的问题。我们没有时间为您提供免费咨询。
-Please send your questions to the appropriate mailing lists / forums.
-Before contacting us, please read the Documentation.html (esp. the FAQ
-part).
+请将您的问题发送至对应的邮件列表/论坛。 在联系我们之前,请阅读 Documentation.html (特别是常见问题 (FAQ) 部分)。
diff --git a/output/zh_CN/TODO b/output/zh_CN/TODO
index 072b518..2797f57 100644
--- a/output/zh_CN/TODO
+++ b/output/zh_CN/TODO
@@ -1,5 +1,5 @@
-phpMyAdmin - Todo
-=================
+phpMyAdmin - 计划
+===================
目前我们将 Sourceforge 的追踪器作为计划表使用:
diff --git a/po/zh_CN.po b/po/zh_CN.po
index b61367d..fd3dcad 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-02-19 23:01+0100\n"
-"PO-Revision-Date: 2010-12-30 05:11+0200\n"
+"PO-Revision-Date: 2011-03-01 06:00+0200\n"
"Last-Translator: shanyan baishui <Siramizu(a)gmail.com>\n"
"Language-Team: none\n"
"Language: zh_CN\n"
@@ -20,19 +20,17 @@ msgstr ""
#. type: Content of: <html><head><title>
#: orig-docs/Documentation.html:12
-#, fuzzy
msgid "phpMyAdmin @@VER@@ - Documentation"
-msgstr "phpMyAdmin 文档"
+msgstr "phpMyAdmin @@VER@@ - 文档"
#. type: Content of: <html><body><div><h1>
#: orig-docs/Documentation.html:19
-#, fuzzy
msgid ""
"<a href=\"http://www.phpmyadmin.net/\">php<span class=\"myadmin\">MyAdmin</"
"span></a> @@VER@@ Documentation"
msgstr ""
-"<a href=\"http://www.phpmyadmin.net/\">php<span class=\"myadmin\">MyAdmin</"
-"span></a> 3.4.0-beta1 文档"
+"<a href=\"http://www.phpmyadmin.net/\">php<span "
+"class=\"myadmin\">MyAdmin</span></a> @@VER@@ 文档"
#. type: Content of: <html><body><ul><li>
#: orig-docs/Documentation.html:27
@@ -391,11 +389,11 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:140
-#, fuzzy
msgid ""
"communicate in <a href=\"http://www.phpmyadmin.net/home_page/translations.php"
"\">62 different languages</a>"
-msgstr "支持 <a href=\"./translators.html\">58 种不同的语言</a>"
+msgstr ""
+"支持 <a href=\"http://www.phpmyadmin.net/home_page/translations.php\">62 种语言</a>"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:142
@@ -949,13 +947,10 @@ msgstr ""
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:381
-#, fuzzy
msgid ""
"Nevertheless be aware that MS Internet Explorer seems to be really buggy "
"about cookies, at least till version 6."
-msgstr ""
-"目前已知微软的 IE6 (Internet Explorer,或更低版本) 在处理 cookies 上存在很严"
-"重的问题,而 PHP 4.1.1 在该方面也存在一些严重问题!"
+msgstr "目前已知微软的 IE6 (Internet Explorer,或更低版本) 在处理 cookies 上存在严重问题。"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:383
@@ -2075,15 +2070,14 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:840
-#, fuzzy
msgid ""
"Regular expression for hiding some databases from unprivileged users. This "
"only hides them from listing, but a user is still able to access them "
"(using, for example, the SQL query area). To limit access, use the MySQL "
"privilege system."
msgstr ""
-"隐藏数据库的正则表达式。这仅仅将数据库从列表中隐藏,用户仍然可以直接访问 (如"
-"通过 SQL 查询)。要彻底限制访问,请使用 MySQL 权限系统。"
+"对非特权用户隐藏数据库的正则表达式。 这仅仅将数据库从列表中隐藏,用户仍然可以直接访问 (如通过 SQL 查询)。要彻底限制访问,请使用 MySQL "
+"权限系统。"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:845
@@ -2245,14 +2239,11 @@ msgstr "使外键数据可点击,浏览主表时可通过点击数据值转到
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:900
-#, fuzzy
msgid ""
"display in an optional tool-tip the "display column" when browsing "
"the master table, if you move the mouse to a column containing a foreign key "
"(use also the 'table_info' table);"
-msgstr ""
-"在浏览主表时,当鼠标移到含有外键的字段上用气泡提示显示可选的"显示的字段"
-"" (需同时使用 'table_info' 表);"
+msgstr "在浏览主表时,当鼠标移到含有外键的字段上用气泡提示显示可选的"显示的字段" (需同时使用 'table_info' 表);"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:903
@@ -2265,12 +2256,10 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:905
-#, fuzzy
msgid ""
"in edit/insert mode, display a drop-down list of possible foreign keys (key "
"value and "display column" are shown)"
-msgstr ""
-"在编辑/插入时,显示可能的外键下拉列表 (显示为键值和"显示的字段")"
+msgstr "在编辑/插入时,显示可能的外键下拉列表 (显示为键值和"显示的字段")"
#. type: Content of: <html><body><div><dl><dd><ul><li>
#: orig-docs/Documentation.html:907
@@ -10130,9 +10119,8 @@ msgstr ""
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:4256
-#, fuzzy
msgid "<a href=\"#faq6_27\">6.27 What format strings can I use?</a>"
-msgstr "<a href=\"#faq1_12\">1.12 我忘了 MySQL 的 root 密码,怎么办?</a>"
+msgstr "<a href=\"#faq6_27\">6.27 我可以使用哪些格式字符串?</a>"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4259
@@ -10147,85 +10135,84 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:4266
msgid "<code>@HTTP_HOST@</code>"
-msgstr ""
+msgstr "<code>@HTTP_HOST@</code>"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:4267
msgid "HTTP host that runs phpMyAdmin"
-msgstr ""
+msgstr "运行 phpMyAdmin 的 HTTP 主机"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:4268
msgid "<code>@SERVER@</code>"
-msgstr ""
+msgstr "<code>@SERVER@</code>"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:4269
msgid "MySQL server name"
-msgstr ""
+msgstr "MySQL 服务器名"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:4270
msgid "<code>@VERBOSE@</code>"
-msgstr ""
+msgstr "<code>@VERBOSE@</code>"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:4271
msgid ""
"Verbose MySQL server name as defined in <a href=\"#cfg_Servers_verbose"
"\">server configuration</a>"
-msgstr ""
+msgstr "在<a href=\"#cfg_Servers_verbose\">服务器设置</a>中定义的详细的 MySQL 服务器名"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:4272
msgid "<code>@VSERVER@</code>"
-msgstr ""
+msgstr "<code>@VSERVER@</code>"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:4273
msgid "Verbose MySQL server name if set, otherwise normal"
-msgstr ""
+msgstr "如果设置了详细的 MySQL 服务器名则使用,否则使用常规的服务器名"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:4274
msgid "<code>@DATABASE@</code>"
-msgstr ""
+msgstr "<code>@DATABASE@</code>"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:4275
msgid "Currently opened database"
-msgstr ""
+msgstr "当前打开的数据库"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:4276
msgid "<code>@TABLE@</code>"
-msgstr ""
+msgstr "<code>@TABLE@</code>"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:4277
msgid "Currently opened table"
-msgstr ""
+msgstr "当前打开的数据表"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:4278
-#, fuzzy
msgid "<code>@FIELDS@</code>"
-msgstr "添加自增 (AUTO_INCREMENT) 值"
+msgstr "<code>@FIELDS@</code>"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:4279
msgid "Fields of currently opened table"
-msgstr ""
+msgstr "当前打开表的字段"
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:4280
msgid "<code>@PHPMYADMIN@</code>"
-msgstr ""
+msgstr "<code>@PHPMYADMIN@</code>"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:4281
msgid "phpMyAdmin with version"
-msgstr ""
+msgstr "带版本号的 phpMyAdmin 字样"
#. type: Content of: <html><body><div><h4>
#: orig-docs/Documentation.html:4285
@@ -11375,13 +11362,13 @@ msgstr "mysqli 支持"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4761
msgid "Nicola Asuni (Tecnick.com)"
-msgstr ""
+msgstr "Nicola Asuni (Tecnick.com)"
#. type: Content of: <html><body><div><ul><li><ul><li>
#: orig-docs/Documentation.html:4763
msgid ""
"TCPDF library (<a href=\"http://www.tcpdf.org\">http://www.tcpdf.org</a>)"
-msgstr ""
+msgstr "TCPDF 库 (<a href=\"http://www.tcpdf.org\">http://www.tcpdf.org</a>)"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4767
@@ -11604,7 +11591,7 @@ msgstr ""
#. type: Content of: <html><body><div><h3>
#: orig-docs/Documentation.html:4874
msgid "Original Credits of Version 2.1.0"
-msgstr ""
+msgstr "版本 2.1.0 的鸣谢原文"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4877
@@ -11615,11 +11602,14 @@ msgid ""
"phpMyAdmin was created because Peter told me he wasn't going to further "
"develop his (great) tool."
msgstr ""
+"此项目基于 Peter Kuppelwieser 的 MySQL-Webadmin 而来。他想出了通过 PHP3 来建立一个基于 web 的 MySQL "
+"交互界面这个点子。尽管我没有使用他的源代码,但很多想法都是受他而启发。我之所以启动 phpMyAdmin 这个项目是因为 Peter "
+"告诉我他不再开发他 (优秀) 的工具了。"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4884
msgid "Thanks go to"
-msgstr ""
+msgstr "在这里要感谢"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4887
@@ -11630,6 +11620,9 @@ msgid ""
"1.1.1 he contributed the ldi_*.php3-set (Import text-files) as well as a bug-"
"report. Plus many smaller improvements."
msgstr ""
+"Amalesh Kempf <ak-lsml_at_living-source.com> "
+"贡献了检查是否正在删除数据表或数据库的代码。同时他建议在 tbl_create.php3 中应该可以让用户设置主键。在 1.1.1 版本中他贡献了 "
+"ldi_*.php3-set (导入文本文件) 、缺陷报告以及许多小改进。"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4893
@@ -11639,6 +11632,8 @@ msgid ""
"authentication). For 1.4.1 he enhanced the table-dump feature. Plus bug-"
"fixes and help."
msgstr ""
+"Jan Legenhausen <jan_at_nrw.net>: 他对 1.3.0 中引进的功能作出许多改进 "
+"(包括诸如认证这样的重要功能)。他还增强了 1.4.1 中的数据表转储功能。以及缺陷修正及帮助。"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4898
@@ -11647,6 +11642,8 @@ msgid ""
"language-independent by outsourcing the strings to a separate file. He also "
"contributed the French translation."
msgstr ""
+"Marc Delisle <DelislMa_at_CollegeSherbrooke.qc.ca> 通过使用单独的语言文件使 "
+"phpMyAdmin 实现语言分离。他也对法语翻译作出了贡献。"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4902
@@ -11654,6 +11651,8 @@ msgid ""
"Alexandr Bravo <abravo_at_hq.admiral.ru> who contributed tbl_select."
"php3, a feature to display only some columns from a table."
msgstr ""
+"Alexandr Bravo <abravo_at_hq.admiral.ru> 贡献了 "
+"tbl_select.php3,可以只显示一张表中的某些字段的功能。"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4905
@@ -11662,27 +11661,29 @@ msgid ""
"in tbl_change.php3. He also added the "Query by Example" feature "
"in 2.0."
msgstr ""
+"Chris Jackson <chrisj_at_ctel.net> 在 tbl_change.php3 中添加了对 MySQL "
+"函数的支持。在 2.0 中添加了 "依例查询" 功能。"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4909
msgid ""
"Dave Walton <walton_at_nordicdms.com> added support for multiple "
"servers and is a regular contributor for bug-fixes."
-msgstr ""
+msgstr "Dave Walton <walton_at_nordicdms.com> 添加了多服务器的支持并且经常贡献缺陷修正。"
#. type: Content of: <html><body><div><ul><li>
#: orig-docs/Documentation.html:4912
msgid ""
"Gabriel Ash <ga244_at_is8.nyu.edu> contributed the random access "
"features for 2.0.6."
-msgstr ""
+msgstr "Gabriel Ash <ga244_at_is8.nyu.edu> 贡献了 2.0.6 中的随机访问功能。"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4917
msgid ""
"The following people have contributed minor changes, enhancements, bugfixes "
"or support for a new language:"
-msgstr ""
+msgstr "感谢下列对小的修改、改进、缺陷修正以及新语言支持作出贡献的人们:"
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4921
@@ -11692,13 +11693,17 @@ msgid ""
"Kettler, Joe Pruett, Renato Lins, Mark Kronsbein, Jannis Hermanns, G. "
"Wieggers."
msgstr ""
+"Jim Kraai, Jordi Bruguera, Miquel Obrador, Geert Lund, Thomas Kleemann, "
+"Alexander Leidinger, Kiko Albiol, Daniel C. Chao, Pavel Piankov, Sascha "
+"Kettler, Joe Pruett, Renato Lins, Mark Kronsbein, Jannis Hermanns, G. "
+"Wieggers."
#. type: Content of: <html><body><div><p>
#: orig-docs/Documentation.html:4927
msgid ""
"And thanks to everyone else who sent me email with suggestions, bug-reports "
"and or just some feedback."
-msgstr ""
+msgstr "同时感谢所有给我们提出建议、意见、报告缺陷以及使用反馈的热心用户。"
#. type: Content of: <html><body><div><h2>
#: orig-docs/Documentation.html:4931
@@ -12462,24 +12467,21 @@ msgstr "-->"
#. type: Title =
#: orig-docs/INSTALL:2
-#, fuzzy, no-wrap
+#, no-wrap
msgid "phpMyAdmin - Installation"
-msgstr "phpMyAdmin - 安装\n"
+msgstr "phpMyAdmin - 安装"
#. type: Plain text
#: orig-docs/INSTALL:5
-#, fuzzy
msgid ""
"Please have a look to the Documentation.txt or Documentation.html files."
-msgstr ""
-"\t参见 Documentation.txt 或 \n"
-"\tDocumentation.html 文件。\n"
+msgstr "请参见 Documentation.txt 或 Documentation.html 文件。"
#. type: Title =
#: orig-docs/TODO:2
-#, fuzzy, no-wrap
+#, no-wrap
msgid "phpMyAdmin - Todo"
-msgstr "phpMyAdmin - 计划\n"
+msgstr "phpMyAdmin - 计划"
#. type: Plain text
#: orig-docs/TODO:5
@@ -12499,15 +12501,14 @@ msgstr "-- swix/20010704"
#. type: Title =
#: orig-docs/README:2
-#, fuzzy, no-wrap
+#, no-wrap
msgid "phpMyAdmin - Readme"
-msgstr "phpMyAdmin - 读我\n"
+msgstr "phpMyAdmin - 读我"
#. type: Plain text
#: orig-docs/README:5
-#, fuzzy
msgid "Version @@VER@@"
-msgstr "版本"
+msgstr "版本 @@VER@@"
#. type: Plain text
#: orig-docs/README:7
@@ -12516,21 +12517,22 @@ msgstr "使用 PHP 编写,通过 web 管理 MySQL 的工具。"
#. type: Plain text
#: orig-docs/README:9
-#, fuzzy
msgid "http://www.phpmyadmin.net/"
msgstr "http://www.phpmyadmin.net/"
#. type: Plain text
#: orig-docs/README:15
-#, fuzzy, no-wrap
+#, no-wrap
msgid ""
"Copyright (C) 1998-2000\n"
" Tobias Ratschiller <tobias_at_ratschiller.com>\n"
-msgstr "Tobias Ratschiller <tobias_at_ratschiller.com>"
+msgstr ""
+"版权所有 (C) 1998-2000\n"
+" Tobias Ratschiller <tobias_at_ratschiller.com>\n"
#. type: Plain text
#: orig-docs/README:26
-#, fuzzy, no-wrap
+#, no-wrap
msgid ""
"Copyright (C) 2001-2011\n"
" Marc Delisle <marc_at_infomarc.info>\n"
@@ -12543,9 +12545,7 @@ msgid ""
" Sebastian Mendel <cybot_tm_at_users.sourceforge.net>\n"
" [check Documentation.txt/.html file for more details]\n"
msgstr ""
-"版权所有 (C) 1998-2000 \n"
-" Tobias Ratschiller <tobias_at_ratschiller.com>\n"
-"版权所有 (C) 2001-2010 \n"
+"版权所有 (C) 2001-2011\n"
" Marc Delisle <marc_at_infomarc.info>\n"
" Olivier Müller <om_at_omnis.ch>\n"
" Robin Johnson <robbat2_at_users.sourceforge.net>\n"
@@ -12560,7 +12560,7 @@ msgstr ""
#: orig-docs/README:28
#, no-wrap
msgid "License"
-msgstr ""
+msgstr "授权"
#. type: Plain text
#: orig-docs/README:47
@@ -12579,19 +12579,16 @@ msgstr ""
#. type: Title -
#: orig-docs/README:51
-#, fuzzy, no-wrap
+#, no-wrap
msgid "Summary"
-msgstr "概要\n"
+msgstr "概要"
#. type: Plain text
#: orig-docs/README:55
-#, fuzzy
msgid ""
"phpMyAdmin is intended to handle the administration of MySQL over the web. "
"For a summary of features, please see the Documentation.txt/.html file."
-msgstr ""
-"phpMyAdmin 旨在通过 web 管理 MySQL 。 具体功能请参见 Documentation.txt/."
-"html 文件。"
+msgstr "phpMyAdmin 旨在通过 web 管理 MySQL 。 具体功能请参见 Documentation.txt/.html 文件。"
#. type: Title -
#: orig-docs/README:57
@@ -12601,79 +12598,61 @@ msgstr "下载"
#. type: Plain text
#: orig-docs/README:60
-#, fuzzy
msgid "You can get the newest version at http://www.phpmyadmin.net/."
msgstr "你可以在 http://www.phpmyadmin.net/ 获得最新版本。"
#. type: Title -
#: orig-docs/README:62
-#, fuzzy, no-wrap
+#, no-wrap
msgid "More Information"
-msgstr "信息"
+msgstr "更多信息"
#. type: Plain text
#: orig-docs/README:65
-#, fuzzy
msgid "Please see the Documentation.txt/.html file."
-msgstr "参见 Documentation.txt/.html 文件。"
+msgstr "请见 Documentation.txt/.html 文件。"
#. type: Title -
#: orig-docs/README:67
-#, fuzzy, no-wrap
+#, no-wrap
msgid "Support"
-msgstr "支持\n"
+msgstr "支持"
#. type: Plain text
#: orig-docs/README:70
-#, fuzzy
msgid "See reference about support forums under http://www.phpmyadmin.net/"
msgstr "参见 http://www.phpmyadmin.net/ 中关于支持论坛的相关信息"
#. type: Title -
#: orig-docs/README:73
-#, fuzzy, no-wrap
+#, no-wrap
msgid "Enjoy!"
-msgstr "尽情享受吧!\n"
+msgstr "尽情享受吧!"
#. type: Plain text
#: orig-docs/README:76
-#, fuzzy
msgid "The phpMyAdmin Devel team"
msgstr "phpMyAdmin 开发组"
#. type: Plain text
#: orig-docs/README:79
-#, fuzzy
msgid "PS:"
-msgstr "EPS"
+msgstr "附:"
#. type: Plain text
#: orig-docs/README:82
-#, fuzzy
msgid ""
"Please, don't send us emails with question like \"How do I compile PHP with "
"MySQL-support\". We just don't have the time to be your free help desk."
-msgstr ""
-"附: \n"
-" 请勿向我们发送邮件询问诸如 \"怎样编译\n"
-" 支持 MySQL 的 PHP\" 之类的问题。我们\n"
-" 没有时间为您做免费咨询。\n"
-" 请将您的问题发送到相应的邮件列表或论坛。\n"
-" 在联系我们之前,请阅读 Documentation.html (特别是常见问题 (FAQ) 部分)。\n"
+msgstr "请勿向我们发送邮件询问诸如 \"怎样编译支持 MySQL 的 PHP\" 之类的问题。我们没有时间为您提供免费咨询。"
#. type: Plain text
#: orig-docs/README:85
-#, fuzzy
msgid ""
"Please send your questions to the appropriate mailing lists / forums. "
"Before contacting us, please read the Documentation.html (esp. the FAQ part)."
msgstr ""
-"附: \n"
-" 请勿向我们发送邮件询问诸如 \"怎样编译\n"
-" 支持 MySQL 的 PHP\" 之类的问题。我们\n"
-" 没有时间为您做免费咨询。\n"
-" 请将您的问题发送到相应的邮件列表或论坛。\n"
-" 在联系我们之前,请阅读 Documentation.html (特别是常见问题 (FAQ) 部分)。\n"
+"请将您的问题发送至对应的邮件列表/论坛。 在联系我们之前,请阅读 Documentation.html (特别是常见问题 (FAQ) 部分)。"
#~ msgid "<a href=\"translators.html\">Translators</a>"
#~ msgstr "<a href=\"translators.html\">翻译</a>"
hooks/post-receive
--
phpMyAdmin localized documentation
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA3-1578-g0c30ed0
by Michal Čihař 01 Mar '11
by Michal Čihař 01 Mar '11
01 Mar '11
The branch, master has been updated
via 0c30ed069af362b0e703b8de71527b310db6bafa (commit)
via e80694659d7c3473e1bf0f6d22f336976fee2b57 (commit)
via e1ab5851398b3f84103b47ae43d61de8e80a08c3 (commit)
via 8abe2aced5d494ff699a0e6fa44cf64393a26f33 (commit)
from 564d4d7d2daaef2ed3e669d0a7ee7cdd2907f2e8 (commit)
- Log -----------------------------------------------------------------
commit 0c30ed069af362b0e703b8de71527b310db6bafa
Merge: e80694659d7c3473e1bf0f6d22f336976fee2b57 564d4d7d2daaef2ed3e669d0a7ee7cdd2907f2e8
Author: Pootle server <pootle(a)cihar.com>
Date: Mon Feb 28 20:40:03 2011 +0100
Merge remote-tracking branch 'origin/master'
commit e80694659d7c3473e1bf0f6d22f336976fee2b57
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Mon Feb 28 18:54:19 2011 +0200
Translation update done using Pootle.
commit e1ab5851398b3f84103b47ae43d61de8e80a08c3
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Mon Feb 28 18:52:19 2011 +0200
Translation update done using Pootle.
commit 8abe2aced5d494ff699a0e6fa44cf64393a26f33
Author: shanyan baishui <Siramizu(a)gmail.com>
Date: Mon Feb 28 18:45:56 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/zh_CN.po | 9 ++++-----
1 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 76db0e6..41171df 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-beta4-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-02-24 15:48+0100\n"
-"PO-Revision-Date: 2011-02-13 11:36+0200\n"
+"PO-Revision-Date: 2011-02-28 18:54+0200\n"
"Last-Translator: shanyan baishui <Siramizu(a)gmail.com>\n"
"Language-Team: chinese_simplified <zh_CN(a)li.org>\n"
"Language: zh_CN\n"
@@ -5037,14 +5037,13 @@ msgid ""
msgstr "关于 PBMS 的文档和更多信息请参见 %sPrimeBase Media Streaming 主页%s。"
#: libraries/engines/pbms.lib.php:96 libraries/engines/pbxt.lib.php:127
-#, fuzzy
#| msgid "Relations"
msgid "Related Links"
-msgstr "关系"
+msgstr "相关链接"
#: libraries/engines/pbms.lib.php:98
msgid "The PrimeBase Media Streaming Blog by Barry Leslie"
-msgstr ""
+msgstr "Barry 的 PrimeBase 开发博客 —— Barry Leslie 著"
#: libraries/engines/pbms.lib.php:99
msgid "PrimeBase XT Home Page"
@@ -5189,7 +5188,7 @@ msgstr "关于 PBXT 的文档和更多信息请参见 %sPrimeBase XT 主页%s。
#: libraries/engines/pbxt.lib.php:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
-msgstr ""
+msgstr "PrimeBase XT 博客 —— Paul McCullagh 著"
#: libraries/engines/pbxt.lib.php:130
msgid "The PrimeBase Media Streaming (PBMS) home page"
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA3-1574-g564d4d7
by Marc Delisle 28 Feb '11
by Marc Delisle 28 Feb '11
28 Feb '11
The branch, master has been updated
via 564d4d7d2daaef2ed3e669d0a7ee7cdd2907f2e8 (commit)
via 8af00da90d7baf8a2c848b2e2ac850b4db031e1b (commit)
via efa8e3421bd786f0ba0a27b0f84280717c26a48a (commit)
via a994e13c3315f45d88782b51c0f71385074a8251 (commit)
from 896d3bd54eb166f33521c6101272130513599904 (commit)
- Log -----------------------------------------------------------------
commit 564d4d7d2daaef2ed3e669d0a7ee7cdd2907f2e8
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon Feb 28 12:54:04 2011 -0500
Typos
commit 8af00da90d7baf8a2c848b2e2ac850b4db031e1b
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon Feb 28 12:52:04 2011 -0500
ChangeLog for Ajaxify browse and delete criteria
commit efa8e3421bd786f0ba0a27b0f84280717c26a48a
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon Feb 28 12:50:02 2011 -0500
Deactivate these messages as we are currently in message freeze for 3.4
commit a994e13c3315f45d88782b51c0f71385074a8251
Author: Thilanka <lgtkaushalya(a)gmail.com>
Date: Mon Feb 28 12:44:44 2011 -0500
Ajaxify browse and delete criteria in DB search
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 2 +
db_search.php | 32 +++++++++++----
js/db_search.js | 98 ++++++++++++++++++++++++++++++++++++++++++----
js/messages.php | 2 +
libraries/common.lib.php | 2 +-
5 files changed, 118 insertions(+), 18 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 6ed9d74..a73f0fb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -138,6 +138,8 @@
- rfe #3148361 [interface] Replace hard coded limit with $cfg['LimitChars'].
- bug #3177136 [interface] Indicate that bookmark is being used on browse.
- [interface] Indicate shared bookmarks in interface.
+- patch #3176420 [Search] Ajaxify browse and delete criteria in DB Search,
+ thanks to Thilanka Kaushalya
3.3.10.0 (not yet released)
- patch #3147400 [structure] Aria table size printed as unknown,
diff --git a/db_search.php b/db_search.php
index 4275399..8362fc7 100644
--- a/db_search.php
+++ b/db_search.php
@@ -249,16 +249,16 @@ if (isset($_REQUEST['submit_search'])) {
if ($res_cnt > 0) {
$this_url_params['sql_query'] = $newsearchsqls['select_fields'];
- echo '<td>' . PMA_linkOrButton(
- 'sql.php' . PMA_generate_common_url($this_url_params),
- __('Browse'), '') . "</td>\n";
-
+ $browse_result_path = 'sql.php' . PMA_generate_common_url($this_url_params);
+ ?>
+ <td> <a name="browse_search" href="<?php echo $browse_result_path; ?>" onclick="loadResult('<?php echo $browse_result_path ?> ',' <?php echo $each_table?> ' , '<?php echo PMA_generate_common_url($GLOBALS['db'], $each_table)?>','<?php echo ($GLOBALS['cfg']['AjaxEnable']); ?>');return false;" ><?php echo __('Browse') ?></a> </td>
+ <?php
$this_url_params['sql_query'] = $newsearchsqls['delete'];
- echo '<td>' . PMA_linkOrButton(
- 'sql.php' . PMA_generate_common_url($this_url_params),
- __('Delete'), sprintf(__('Delete the matches for the %s table?'), htmlspecialchars($each_table))) . "</td>\n";
-
- } else {
+ $delete_result_path = 'sql.php' . PMA_generate_common_url($this_url_params);
+ ?>
+ <td> <a name="delete_search" href="<?php echo $delete_result_path; ?>" onclick="deleteResult('<?php echo $delete_result_path ?>' , ' <?php echo __('Delete the matches for the '. $each_table . ' table?') ?>','<?php echo ($GLOBALS['cfg']['AjaxEnable']); ?>');return false;" ><?php echo __('Delete') ?></a> </td>
+ <?php
+ } else {
echo '<td> </td>' . "\n"
.'<td> </td>' . "\n";
}// end if else
@@ -360,6 +360,20 @@ $alter_select =
</fieldset>
</form>
+<!-- These two table-image and table-link elements display the table name in browse search results -->
+<div id='table-info'>
+<a class="item" id="table-link" ></a>
+</div>
+<div id="browse-results">
+<!-- this browse-results div is used to load the browse and delete results in the db search -->
+</div>
+<br class="clearfloat" />
+<div id="sqlqueryform">
+<!-- this sqlqueryform div is used to load the delete form in the db search -->
+</div>
+<!-- toggle query box link-->
+<a id="togglequerybox"></a>
+
<?php
/**
* Displays the footer
diff --git a/js/db_search.js b/js/db_search.js
index 0a82a8f..84a3dd8 100644
--- a/js/db_search.js
+++ b/js/db_search.js
@@ -14,25 +14,107 @@
* Retrieve result of SQL query
*/
+/** Loads the database search results */
+function loadResult(result_path , table_name , link , ajaxEnable){
+ $(document).ready(function() {
+ if(ajaxEnable)
+ {
+ /** Hides the results shown by the delete criteria */
+ //PMA_ajaxShowMessage(PMA_messages['strBrowsing']);
+ $('#sqlqueryform').hide();
+ $('#togglequerybox').hide();
+ /** Load the browse results to the page */
+ $("#table-info").show();
+ $('#table-link').attr({"href" : 'sql.php?'+link }).text(table_name);
+ $('#browse-results').load(result_path + " '"+'#sqlqueryresults' + "'").show();
+ }
+ else
+ {
+ event.preventDefault();
+ }
+ });
+}
+
+/** Delete the selected search results */
+function deleteResult(result_path , msg , ajaxEnable){
+ $(document).ready(function() {
+ /** Hides the results shown by the browse criteria */
+ $("#table-info").hide();
+ $('#browse-results').hide();
+ $('#sqlqueryform').hide();
+ $('#togglequerybox').hide();
+ /** Conformation message for deletion */
+ if(confirm(msg))
+ {
+ if(ajaxEnable)
+ {
+ /** Load the deleted option to the page*/
+ $('#browse-results').load(result_path + " '"+'#result_query' + "'");
+ $('#sqlqueryform').load(result_path + " '"+'#sqlqueryform' + "'");
+ $('#togglequerybox').html(PMA_messages['strHideQueryBox']);
+
+ /** Refresh the search results after the deletion */
+ document.getElementById('buttonGo'). click();
+ //PMA_ajaxShowMessage(PMA_messages['strDeleting']);
+ /** Show the results of the deletion option */
+ $('#browse-results').show();
+ $('#sqlqueryform').show();
+ $('#togglequerybox').show();
+ }
+ else
+ {
+ event.preventDefault();
+ }
+ }
+ });
+}
+
$(document).ready(function() {
/**
* Set a parameter for all Ajax queries made on this page. Don't let the
- * web server serve cached pages
+ * web server serve cached pagesshow
*/
$.ajaxSetup({
cache: 'false'
});
+ /** Hide the table link in the initial search result */
+ $("#table-info").prepend('<img id="table-image" src="./themes/original/img/s_tbl.png" />').hide();
+
+ /** Hide the browse and deleted results in the new search criteria */
+ $('#buttonGo').click(function(){
+ $("#table-info").hide();
+ $('#browse-results').hide();
+ $('#sqlqueryform').hide();
+ $('#togglequerybox').hide();
+ });
/**
- * Prepare a div containing a link, otherwise it's incorrectly displayed
+ * Prepare a div containing a link for toggle the search form, otherwise it's incorrectly displayed
* after a couple of clicks
*/
$('<div id="togglesearchformdiv"><a id="togglesearchformlink"></a></div>')
.insertAfter('#db_search_form')
- // don't show it until we have results on-screen
+ /** don't show it until we have results on-screen */
.hide();
+ /** Changing the displayed text according to the hide/show criteria in search form*/
+ $("#togglequerybox").hide();
+ $("#togglequerybox").bind('click', function() {
+ var $link = $(this)
+ $('#sqlqueryform').slideToggle("medium");
+ if ($link.text() == PMA_messages['strHideQueryBox']) {
+ $link.text(PMA_messages['strShowQueryBox']);
+ } else {
+ $link.text(PMA_messages['strHideQueryBox']);
+ }
+ /** avoid default click action */
+ return false;
+ })
+
+ /** don't show it until we have results on-screen */
+
+ /** Changing the displayed text according to the hide/show criteria in search criteria form*/
$('#togglesearchformlink')
.html(PMA_messages['strShowSearchCriteria'])
.bind('click', function() {
@@ -43,7 +125,7 @@ $(document).ready(function() {
} else {
$link.text(PMA_messages['strHideSearchCriteria']);
}
- // avoid default click action
+ /** avoid default click action */
return false;
});
/**
@@ -59,8 +141,8 @@ $(document).ready(function() {
PMA_ajaxShowMessage(PMA_messages['strSearching']);
// jQuery object to reuse
$form = $(this);
-
- // add this hidden field just once
+
+ // add this hidden field just once
if (! $form.find('input:hidden').is('#ajax_request_hidden')) {
$form.append('<input type="hidden" id="ajax_request_hidden" name="ajax_request" value="true" />');
}
@@ -78,12 +160,12 @@ $(document).ready(function() {
// always start with the Show message
.text(PMA_messages['strShowSearchCriteria'])
$('#togglesearchformdiv')
- // now it's time to show the div containing the link
+ // now it's time to show the div containing the link
.show();
} else {
// error message (zero rows)
$("#sqlqueryresults").html(response['message']);
- }
+ }
})
})
}, 'top.frame_content'); // end $(document).ready()
diff --git a/js/messages.php b/js/messages.php
index fa28771..fc28b2e 100644
--- a/js/messages.php
+++ b/js/messages.php
@@ -79,6 +79,8 @@ $js_messages['strNo'] = __('No');
/* For db_search.js */
$js_messages['strSearching'] = __('Searching');
+//$js_messages['strBrowsing'] = __('Browsing');
+//$js_messages['strDeleting'] = __('Deleting');
/* For sql.js */
$js_messages['strHideQueryBox'] = __('Hide query box');
diff --git a/libraries/common.lib.php b/libraries/common.lib.php
index c30d7d0..4f8427b 100644
--- a/libraries/common.lib.php
+++ b/libraries/common.lib.php
@@ -1009,7 +1009,7 @@ function PMA_showMessage($message, $sql_query = null, $type = 'notice', $is_view
// In an Ajax request, $GLOBALS['cell_align_left'] may not be defined. Hence,
// check for it's presence before using it
- echo '<div align="' . ( isset($GLOBALS['cell_align_left']) ? $GLOBALS['cell_align_left'] : '' ) . '">' . "\n";
+ echo '<div id="result_query" align="' . ( isset($GLOBALS['cell_align_left']) ? $GLOBALS['cell_align_left'] : '' ) . '">' . "\n";
if ($message instanceof PMA_Message) {
if (isset($GLOBALS['special_message'])) {
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. b724a8ac8c330712cc642f2aa2f889305e1f6611
by Michal Čihař 28 Feb '11
by Michal Čihař 28 Feb '11
28 Feb '11
The branch, master has been updated
via b724a8ac8c330712cc642f2aa2f889305e1f6611 (commit)
via e04932f1ba00b07a1dd70dd0b2a9d9d6ba4fbfae (commit)
via e2406ed17d24399ce90b3126b03d38844a474103 (commit)
from 4ff7e47fc35ea2ec0fe5a1288445b6c78a5fa060 (commit)
- Log -----------------------------------------------------------------
commit b724a8ac8c330712cc642f2aa2f889305e1f6611
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon Feb 28 14:36:55 2011 +0100
Update generated doc
commit e04932f1ba00b07a1dd70dd0b2a9d9d6ba4fbfae
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Feb 28 12:24:39 2011 +0200
Translation update done using Pootle.
commit e2406ed17d24399ce90b3126b03d38844a474103
Author: Burak Yavuz <hitowerdigit(a)hotmail.com>
Date: Mon Feb 28 12:24:10 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
output/es/index.html | 1 +
output/tr/Documentation.html | 9 +++++----
po/tr.po | 9 ++++++++-
3 files changed, 14 insertions(+), 5 deletions(-)
diff --git a/output/es/index.html b/output/es/index.html
index 969d53b..9804010 100644
--- a/output/es/index.html
+++ b/output/es/index.html
@@ -10,6 +10,7 @@
<h1>Documentación en español de phpMyAdmin</h1>
<p>Documentos traducidos al español</p>
<ul>
+<li><a href="Documentation.html">Documentación principal</a></li>
<li><a href="README">README</a></li>
</ul>
</body>
diff --git a/output/tr/Documentation.html b/output/tr/Documentation.html
index e5a4b5b..814a823 100644
--- a/output/tr/Documentation.html
+++ b/output/tr/Documentation.html
@@ -819,10 +819,11 @@ için boş bırakın.
dizgisi
</dt>
<dd>
- When using auth_type = 'config', this is the user/password-pair which
-phpMyAdmin will use to connect to the MySQL server. This user/password pair
-is not needed when <abbr title="HyperText Transfer Protocol">HTTP</abbr> or
-cookie authentication is used and should be empty.</dd>
+ auth_type = 'config' kullanıldığı zaman bu, phpMyAdmin'nin MySQL sunucusuna
+bağlanmak için kullanacağı kullanıcı/parola çiftlemesidir. Bu
+kullanıcı/parola çiftlemesi, <abbr title="HyperText Transfer
+Protocol">HTTP</abbr> ya da tanımlama bilgisi kimlik doğrulaması
+kullanıldığında gerekmez ve boş olmalıdır.</dd>
<dt id="servers_nopassword">
<span id="cfg_Servers_nopassword">$cfg['Servers'][$i]['nopassword']</span>
boolean
diff --git a/po/tr.po b/po/tr.po
index a4a502f..7f70629 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-02-19 23:00+0100\n"
-"PO-Revision-Date: 2011-02-27 22:34+0200\n"
+"PO-Revision-Date: 2011-02-28 12:24+0200\n"
"Last-Translator: Burak Yavuz <hitowerdigit(a)hotmail.com>\n"
"Language-Team: none\n"
"Language: tr\n"
@@ -2125,6 +2125,11 @@ msgid ""
"is not needed when <abbr title=\"HyperText Transfer Protocol\">HTTP</abbr> "
"or cookie authentication is used and should be empty."
msgstr ""
+"auth_type = 'config' kullanıldığı zaman bu, phpMyAdmin'nin MySQL sunucusuna "
+"bağlanmak için kullanacağı kullanıcı/parola çiftlemesidir. Bu "
+"kullanıcı/parola çiftlemesi, <abbr title=\"HyperText Transfer "
+"Protocol\">HTTP</abbr> ya da tanımlama bilgisi kimlik doğrulaması "
+"kullanıldığında gerekmez ve boş olmalıdır."
#. type: Content of: <html><body><div><dl><dt>
#: orig-docs/Documentation.html:798
@@ -2132,6 +2137,8 @@ msgid ""
"<span id=\"cfg_Servers_nopassword\">$cfg['Servers'][$i]['nopassword']</span> "
"boolean"
msgstr ""
+"<span id=\"cfg_Servers_nopassword\">$cfg['Servers'][$i]['nopassword']</span> "
+"boolean"
#. type: Content of: <html><body><div><dl><dd>
#: orig-docs/Documentation.html:802
hooks/post-receive
--
phpMyAdmin localized documentation
1
0