From 073ab4a9e3ef97fcfce21bf72d5eae6b61d2f801 Mon Sep 17 00:00:00 2001 From: vdigital Date: Mon, 15 Jan 2007 22:44:48 +0000 Subject: [PATCH] Feature "Admin Advices !" (Standard plugin) : May give you always now an advice on the administration page. Quick solved list: 1 - Wording on EXIF/IPTC Advices 2 - Default language is English 3 - Some Transparency issues under IE 4 - Some Border issues 5 - PWG Menu moved from Advices Box to Intro. 6 - phpwebgallery.net URLs are available thru a new admin function pwg_URL() 7 - PWG Menu URL open in a new target (XHTML strict compliant (JS)). git-svn-id: http://piwigo.org/svn/trunk@1724 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/include/functions.php | 27 +++++ admin/intro.php | 5 +- plugins/admin_advices/admin_advices.tpl | 11 +- plugins/admin_advices/default-layout.css | 40 +------ .../en_UK.iso-8859-1/lang.adv.php | 18 ++-- .../fr_FR.iso-8859-1/lang.adv.php | 20 ++-- plugins/admin_advices/main.inc.php | 8 +- template-common/default-layout.css | 102 +++++++++--------- template/yoga/admin/default-layout.css | 40 +++++++ template/yoga/admin/intro.tpl | 12 ++- template/yoga/icon/check.png | Bin 478 -> 367 bytes template/yoga/icon/pwg_footer.png | Bin 3118 -> 1769 bytes template/yoga/icon/uncheck.png | Bin 211 -> 213 bytes template/yoga/theme/clear/theme.css | 2 +- template/yoga/theme/dark/theme.css | 2 +- template/yoga/theme/p0w0/theme.css | 3 - template/yoga/theme/wipi/theme.css | 3 - 17 files changed, 163 insertions(+), 130 deletions(-) diff --git a/admin/include/functions.php b/admin/include/functions.php index 061de2740..6fc649e0e 100644 --- a/admin/include/functions.php +++ b/admin/include/functions.php @@ -1920,4 +1920,31 @@ function check_conf() } } +/** + * Refer main PhpWebGallery URLs (currently phpwebgallery.net domain) + * + * @param void + * @return array like $conf['links'] + */ +function pwg_URL() +{ + global $lang_info; + $urls = array( + 'WIKI' => 'http://phpwebgallery.net/doc/', + 'HOME' => 'http://phpwebgallery.net/', + 'DEMO' => 'http://demo.phpwebgallery.net/', + 'FORUM' => 'http://forum.phpwebgallery.net/', + 'BUGS' => 'http://bugs.phpwebgallery.net/', + 'EXTENSIONS' => 'http://phpwebgallery.net/ext', + ); + if ( isset($lang_info['code']) and + in_array($lang_info['code'], array('fr','en')) ) + { /* current wiki languages are French or English */ + $urls['WIKI'] = + 'http://phpwebgallery.net/doc/doku.php?id='.$lang_info['code'].':start'; + $urls['HOME'] = 'http://phpwebgallery.net/?lang='.$lang_info['code']; + } + return $urls; +} + ?> diff --git a/admin/intro.php b/admin/intro.php index d855bc870..afb61576c 100644 --- a/admin/intro.php +++ b/admin/intro.php @@ -267,10 +267,13 @@ if ($nb_comments > 0) ); } +// Add the PhpWebGallery Official menu + $template->assign_block_vars( 'pwgmenu', pwg_URL() ); + // +-----------------------------------------------------------------------+ // | sending html code | // +-----------------------------------------------------------------------+ $template->assign_var_from_handle('ADMIN_CONTENT', 'intro'); -?> \ No newline at end of file +?> diff --git a/plugins/admin_advices/admin_advices.tpl b/plugins/admin_advices/admin_advices.tpl index 5b24c5c9a..c9857b439 100644 --- a/plugins/admin_advices/admin_advices.tpl +++ b/plugins/admin_advices/admin_advices.tpl @@ -4,19 +4,12 @@

{lang:An_advice_about} {ADVICE_ABOUT}

{ADVICE_TEXT}

-
+
{More.ADVICE}

- -
+ use_iptc (have a look on metadata page ' . - 'on our wiki.'; + 'on our wiki).'; $cond = $conf['show_iptc']; $confk = 'show_iptc'; break; @@ -349,7 +349,7 @@ foreach ($cases as $id_adv) ' even those ones are NOT empty.'; $adv[] = 'Do NOT confuse between show_iptc and ' . 'use_iptc (have a look on metadata page ' . - 'on our wiki.'; + 'on our wiki).'; $cond = $conf['use_iptc']; $confk = 'use_iptc'; break; @@ -404,7 +404,7 @@ foreach ($cases as $id_adv) 'their reasons are to protect their knowledge.' ; $adv[] = 'Do NOT confuse between show_exif and ' . 'use_exif (have a look on metadata page ' . - 'on our wiki.'; + 'on our wiki).'; $cond = true; $confk = 'show_exif'; break; @@ -419,10 +419,10 @@ foreach ($cases as $id_adv) $adv[] = 'Beginners would prefer to let default values.'; $adv[] = 'Advanced users would take care of $lang values and ' . 'impacts on templates.'; - $adv[] = 'In any case, show_exif_mapping and ' . + $adv[] = 'In any case, show_exif_fields and ' . 'use_exif_mapping must be totally different.'; $cond = true; - $confk = 'show_exif_mapping'; + $confk = 'show_exif_fields'; break; Case 34 : @@ -435,7 +435,7 @@ foreach ($cases as $id_adv) ' even those ones are NOT empty.'; $adv[] = 'Do NOT confuse between show_exif and ' . 'use_exif (have a look on metadata page ' . - 'on our wiki.'; + 'on our wiki).'; $cond = true; $confk = 'use_exif'; break; @@ -451,10 +451,10 @@ foreach ($cases as $id_adv) $adv[] = 'Advanced users would carefully chose overrided fields ' . 'prior to synchronize.'; $adv[] = 'Take care of mentionned fields in metadata synchronization.' . - '
Mentionned fields would be rewrited with IPTC values ' . + '
Mentionned fields would be rewrited with EXIF values ' . ' even those ones are NOT empty.'; - $adv[] = 'In any case, show_iptc_mapping and ' . - 'use_iptc_mapping must be totally different.'; + $adv[] = 'In any case, show_exif_fields and ' . + 'use_exif_mapping must be totally different.'; $cond = true; $confk = 'use_exif_mapping'; break; diff --git a/plugins/admin_advices/fr_FR.iso-8859-1/lang.adv.php b/plugins/admin_advices/fr_FR.iso-8859-1/lang.adv.php index 49b2b2979..e53847b7e 100644 --- a/plugins/admin_advices/fr_FR.iso-8859-1/lang.adv.php +++ b/plugins/admin_advices/fr_FR.iso-8859-1/lang.adv.php @@ -355,7 +355,7 @@ foreach ($cases as $id_adv) . 'false bien que leurs raisons ne soient guère professionnelles.'; $adv[] = 'Ne confondez pas show_iptc et ' . 'use_iptc (consultez la pages de métadonnées ' - . 'sur notre wiki.'; + . 'sur notre wiki).'; $cond = $conf['show_iptc']; $confk = 'show_iptc'; break; @@ -371,7 +371,7 @@ foreach ($cases as $id_adv) . 'champs ne seraient pas vides.'; $adv[] = 'Ne confondez pas show_iptc et ' . 'use_iptc (consultez la pages de métadonnées ' - . 'sur notre wiki.'; + . 'sur notre wiki).'; $cond = $conf['use_iptc']; $confk = 'use_iptc'; break; @@ -431,7 +431,7 @@ foreach ($cases as $id_adv) . 'ceci afin de protéger leur savoir-faire.' ; $adv[] = 'Ne confondez pas show_exif et ' . 'use_exif (consultez la pages de métadonnées ' - . 'sur notre wiki.'; + . 'sur notre wiki).'; $cond = true; $confk = 'show_exif'; break; @@ -446,11 +446,11 @@ foreach ($cases as $id_adv) $adv[] = 'Les débutants laisseront la valeur par défaut.'; $adv[] = 'Les utilisateurs avancés penseront aux valeurs du tableau ' . '$lang; voire même à l\'impact possible sur les templates.'; - $adv[] = 'Dans tous les cas, show_iptc_mapping et ' - . 'use_iptc_mapping seront ' + $adv[] = 'Dans tous les cas, show_exif_fields et ' + . 'use_exif_mapping seront ' . 'totalement différents.'; $cond = true; - $confk = 'show_exif_mapping'; + $confk = 'show_exif_fields'; break; Case 34 : @@ -465,7 +465,7 @@ foreach ($cases as $id_adv) . 'champs ne seraient pas vides.'; $adv[] = 'Ne confondez pas show_exif et ' . 'use_exif (consultez la pages de métadonnées ' - . 'sur notre wiki.'; + . 'sur notre wiki).'; $cond = true; $confk = 'use_exif'; break; @@ -480,15 +480,15 @@ foreach ($cases as $id_adv) $adv[] = 'Les débutants laisseront la valeur par défaut.'; $adv[] = 'Les utilisateurs avancés penseront aux valeurs du tableau ' . '$lang; voire même à l\'impact possible sur les templates.'; - $adv[] = 'Les débutants laisseront $conf[\'use_iptc\'] = false;'; + $adv[] = 'Les débutants laisseront $conf[\'use_exif\'] = false;'; $adv[] = 'Les utilisateurs avancés feront très attention aux champs ' . 'sélectionnés et modifiés par la synchronisation.'; $adv[] = 'Faire attention aux champs mentionnés dans la synchronisation ' . 'des métadonnées.
Ces champs pourront être ' . 'écrasés par des valeurs de champs EXIF quand bien même ces ' . 'champs ne seraient pas vides.'; - $adv[] = 'Dans tous les cas, show_iptc_mapping et ' - . 'use_iptc_mapping seront ' + $adv[] = 'Dans tous les cas, show_exif_fields et ' + . 'use_exif_mapping seront ' . 'totalement différents.'; $cond = true; $confk = 'use_exif_mapping'; diff --git a/plugins/admin_advices/main.inc.php b/plugins/admin_advices/main.inc.php index 008b0b445..e94da7c09 100644 --- a/plugins/admin_advices/main.inc.php +++ b/plugins/admin_advices/main.inc.php @@ -61,9 +61,13 @@ function set_admin_advice() $user['language'] : $conf['default_language']; // en_UK.iso-8859-1 $adv = array(); - + if ( !@file_exists(PHPWG_ROOT_PATH + . "plugins/admin_advices/$advlang/lang.adv.php") ) + { + $advlang = 'en_UK.iso-8859-1'; + } // Include language advices - include_once( PHPWG_ROOT_PATH + @include_once( PHPWG_ROOT_PATH . "plugins/admin_advices/$advlang/lang.adv.php" ); // If there is an advice diff --git a/template-common/default-layout.css b/template-common/default-layout.css index 79797560b..12b55a8a1 100644 --- a/template-common/default-layout.css +++ b/template-common/default-layout.css @@ -1,51 +1,51 @@ -/* $Id$ */ - -/* Set the width of the menubar for the galery */ -#menubar { - width: 18em; -} -#content { - margin-left: 20em; /* = #menubar width + 2em */ -} -/* Set minimum width of the page before getting a scrollbar */ -/* IE5 and IE6 don't get that */ -BODY { - min-width: 60em; /* ~ 3* #menubar width */ -} -BODY#thePopuphelpPage { - min-width: 0; -} - -/* Set the width of the menubar for the admin section */ -BODY#theAdminPage #menubar { - width: 12.5em; -} -BODY#theAdminPage #content { - margin-left: 14.5em; /* = #menubar width + 2em */ -} - -/* Set some sizes according to your maximum thumbnail width and height */ -#content UL.thumbnails SPAN, -#content UL.thumbnails SPAN.wrap2 A, -#content UL.thumbnails LABEL, -#content DIV.thumbnailCategory DIV.illustration { - width: 140px; /* max thumbnail width + 2px */ -} -#content UL.thumbnails SPAN.wrap2, -#content DIV.thumbnailCategory DIV.description { - height: 140px; /* max thumbnail height + 2px */ -} -#content DIV.comment BLOCKQUOTE { - margin-left: 150px; /*maximum thumbnail width + ~10px */ -} - -/* Category thumbnails on main page */ -#content UL.thumbnailCategories LI { - width: 49.9%; /* 49.9% for 2 per line, 33.3% for 3 per line*/ -} - -/* Set defaults for thumbnails legend */ -#content UL.thumbnails SPAN.thumbLegend { - display: block; /* display: none; if you don't want legend */ - height: 4em; /* legend height (don't set auto to be Gecko friendly)*/ -} +/* $Id$ */ + +/* Set the width of the menubar for the galery */ +#menubar { + width: 18em; +} +#content { + margin-left: 20em; /* = #menubar width + 2em */ +} +/* Set minimum width of the page before getting a scrollbar */ +/* IE5 and IE6 don't get that */ +BODY { + min-width: 60em; /* ~ 3* #menubar width */ +} +BODY#thePopuphelpPage { + min-width: 0; +} + +/* Set the width of the menubar for the admin section */ +BODY#theAdminPage #menubar { + width: 12.5em; +} +BODY#theAdminPage #content { + margin-left: 14.5em; /* = #menubar width + 2em */ +} + +/* Set some sizes according to your maximum thumbnail width and height */ +#content UL.thumbnails SPAN, +#content UL.thumbnails SPAN.wrap2 A, +#content UL.thumbnails LABEL, +#content DIV.thumbnailCategory DIV.illustration { + width: 140px; /* max thumbnail width + 2px */ +} +#content UL.thumbnails SPAN.wrap2, +#content DIV.thumbnailCategory DIV.description { + height: 140px; /* max thumbnail height + 2px */ +} +#content DIV.comment BLOCKQUOTE { + margin-left: 150px; /*maximum thumbnail width + ~10px */ +} + +/* Category thumbnails on main page */ +#content UL.thumbnailCategories LI { + width: 49.7%; /* 49.7% for 2 per line, 33.2% for 3 per line*/ +} + +/* Set defaults for thumbnails legend */ +#content UL.thumbnails SPAN.thumbLegend { + display: block; /* display: none; if you don't want legend */ + height: 4em; /* legend height (don't set auto to be Gecko friendly)*/ +} diff --git a/template/yoga/admin/default-layout.css b/template/yoga/admin/default-layout.css index 227fa0ded..0f82bee63 100644 --- a/template/yoga/admin/default-layout.css +++ b/template/yoga/admin/default-layout.css @@ -103,3 +103,43 @@ FIELDSET#generalConf SPAN.property { FIELDSET#generalConf TEXTAREA.description { width: 70%; } + +/* PWG Links Menu is fixed Graphic charts */ +.pwgmenu { + display: table; + list-style-type: none; + list-style-image: none; /* for firefox */ + white-space: nowrap; + position: relative; + text-decoration : none; + font-family: verdana, arial, helvetica, sans-serif; + font-size: 70%; + line-height: 1.1em; + width: 66em; + margin: 1px 8px 1px auto; + padding: 3px; + background: transparent; +} +.pwgmenu li { + float: left; + width: 10em !important; + text-align: center; + margin: 0 6px; + padding: 0; + +} +.pwgmenu a { + width: 9em !important; + display: block; + padding: 4px 8px; + background: #69c; /* PWG Graphic charts */ + color: white; + text-align: center; + text-decoration: none; + font-weight: bold; + border: 1px solid #fff; /* Why bordered? in case of #69c background */ +} +.pwgmenu a:hover { + background: #f92; + color: white; +} /* PWG Graphic charts */ diff --git a/template/yoga/admin/intro.tpl b/template/yoga/admin/intro.tpl index 4605b35b3..9d35a6bc4 100644 --- a/template/yoga/admin/intro.tpl +++ b/template/yoga/admin/intro.tpl @@ -1,6 +1,16 @@

{lang:title_default}

- + +
+
{lang:PhpWebGallery version}
diff --git a/template/yoga/icon/check.png b/template/yoga/icon/check.png index 30a841cae4763bc4239d59a4c3922bf88eba9cce..d9abf276394e6b3413c8e58ca1e4c8971b1c0530 100644 GIT binary patch delta 267 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 diff --git a/template/yoga/theme/clear/theme.css b/template/yoga/theme/clear/theme.css index 70a7d510a..0a85ed60c 100644 --- a/template/yoga/theme/clear/theme.css +++ b/template/yoga/theme/clear/theme.css @@ -20,7 +20,7 @@ H2, #menubar DT, #imageHeaderBar, #imageToolBar A:hover, .row1 { } /* borders */ -#menubar DL, #content, #imageToolBar, +#menubar DL, #content, #imageToolBar, #comments DIV.comment BLOCKQUOTE { border: 1px solid #d3d3d3; } diff --git a/template/yoga/theme/dark/theme.css b/template/yoga/theme/dark/theme.css index e35761366..04632b6a4 100644 --- a/template/yoga/theme/dark/theme.css +++ b/template/yoga/theme/dark/theme.css @@ -47,7 +47,7 @@ H2, #menubar DT, .throw { } /* borders */ -#menubar DL, #content, +#menubar DL, #content, .content, #comments DIV.comment BLOCKQUOTE { border: 1px solid #000000; } diff --git a/template/yoga/theme/p0w0/theme.css b/template/yoga/theme/p0w0/theme.css index 980c386c8..42d0e8b47 100644 --- a/template/yoga/theme/p0w0/theme.css +++ b/template/yoga/theme/p0w0/theme.css @@ -10,9 +10,6 @@ INPUT.rateButtonSelected /* <= why IE doesn't inherit this ? */ { background-color: transparent; border: 0px; } -#content UL.thumbnailCategories LI { - width: 49.7%; /* 49.8% for 2 per line, 33.3% for 3 per line*/ -} H2, .throw { color: #69c; } diff --git a/template/yoga/theme/wipi/theme.css b/template/yoga/theme/wipi/theme.css index 59d1c1258..cb91f1d14 100644 --- a/template/yoga/theme/wipi/theme.css +++ b/template/yoga/theme/wipi/theme.css @@ -10,9 +10,6 @@ INPUT.rateButtonSelected /* <= why IE doesn't inherit this ? */ { background-color: transparent; border: 0px; } -#content UL.thumbnailCategories LI { - width: 49.7%; /* 49.8% for 2 per line, 33.3% for 3 per line*/ -} H2, .throw { color: #eee; }