- new : HTML BODY identifier to let CSS stylesheets manage specific

behaviour.

- deletion : admin/search useless

- improvement : in admin/user_list, special behaviour for true/false fields
  (expand, show_comments)

- new : gallery_title and gallery_description are displayed at the top of
  each page.

- improvement : simplification in HTML for categories menu.

- improvement : standardization of presentation in all public pages
  (identification, registration, search, profile, notification, comments,
  etc.)

(not in ChangeLog, below this line)

- add forgotten notification.php (should have been added in a previous
  commit)

- [template cclear] deletion of useless class .bouton

- [template cclear] for test purpose, new presentation of register page
  (using FORM.filter)

- [template cclear] adaptation of admin/group_list from template default

- [template cclear] deletion of obsolete admin/infos_images

- [template cclear] deletion of obsolete admin/search_username

- [template cclear] new icon register.png


git-svn-id: http://piwigo.org/svn/trunk@850 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall 2005-08-25 22:43:47 +00:00
commit f01a9f5b7c
44 changed files with 460 additions and 518 deletions

View file

@ -33,17 +33,16 @@ include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
// Start output of page // Start output of page
// //
$title= $lang['about_page_title']; $title= $lang['about_page_title'];
$page['body_id'] = 'theAboutPage';
include(PHPWG_ROOT_PATH.'include/page_header.php'); include(PHPWG_ROOT_PATH.'include/page_header.php');
$template->set_filenames(array('about'=>'about.tpl')); $template->set_filenames(array('about'=>'about.tpl'));
$template->assign_vars(array( $template->assign_vars(
'PAGE_TITLE' => $title, array(
'L_ABOUT' => $lang['about_message'], 'L_ABOUT' => $lang['about_message'],
'L_RETURN' => $lang['home'], 'U_HOME' => add_session_id(PHPWG_ROOT_PATH.'category.php')
'L_RETURN_HINT' => $lang['home_hint'], )
'U_RETURN' => add_session_id(PHPWG_ROOT_PATH.'category.php?'.$_SERVER['QUERY_STRING']) );
)
);
$template->parse('about'); $template->parse('about');
include(PHPWG_ROOT_PATH.'include/page_tail.php'); include(PHPWG_ROOT_PATH.'include/page_tail.php');

View file

@ -57,6 +57,8 @@ $conf_link = $link_start.'configuration&section=';
$opt_link = $link_start.'cat_options&section='; $opt_link = $link_start.'cat_options&section=';
//----------------------------------------------------- template initialization //----------------------------------------------------- template initialization
$title = l10n('PhpWebGallery administration'); // for include/page_header.php $title = l10n('PhpWebGallery administration'); // for include/page_header.php
$page['gallery_title'] = l10n('PhpWebGallery Administration');
$page['body_id'] = 'theAdminPage';
include(PHPWG_ROOT_PATH.'include/page_header.php'); include(PHPWG_ROOT_PATH.'include/page_header.php');
$template->set_filenames(array('admin' => 'admin.tpl')); $template->set_filenames(array('admin' => 'admin.tpl'));

View file

@ -1,108 +0,0 @@
<?php
// +-----------------------------------------------------------------------+
// | PhpWebGallery - a PHP based picture gallery |
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
// +-----------------------------------------------------------------------+
// | branch : BSF (Best So Far)
// | file : $RCSfile$
// | last update : $Date$
// | last modifier : $Author$
// | revision : $Revision$
// +-----------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation |
// | |
// | This program is distributed in the hope that it will be useful, but |
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
// | General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with this program; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA. |
// +-----------------------------------------------------------------------+
define('PHPWG_ROOT_PATH','../');
include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
include_once( PHPWG_ROOT_PATH.'admin/include/isadmin.inc.php' );
//----------------------------------------------------- template initialization
$title = $lang['Find_username'];
include(PHPWG_ROOT_PATH.'include/page_header.php');
$template->set_filenames( array('search'=>'admin/search_username.tpl') );
$template->assign_vars(array(
'USERNAME'=>( !empty($search_match) ) ? strip_tags($search_match) : '',
'L_SEARCH_USERNAME'=>$lang['Find_username'],
'L_SEARCH'=>$lang['search'],
'L_SEARCH_EXPLAIN'=>$lang['search_explain'],
'L_SELECT'=>$lang['Select'],
'L_UPDATE_USERNAME'=>$lang['Look_up_user'],
'L_CLOSE_WINDOW'=>$lang['Close'],
'F_SEARCH_ACTION' => add_session_id($_SERVER['PHP_SELF']),
));
//----------------------------------------------------------------- form action
//
// Define initial vars
//
if ( isset($_POST['mode']) || isset($_GET['mode']) )
{
$mode = ( isset($_POST['mode']) ) ? $_POST['mode'] : $_GET['mode'];
}
else
{
$mode = '';
}
$search_match = '';
if ( isset($_POST['search_username']) )
{
$search_match = $_POST['search_username'];
}
$username_list = '';
if ( !empty($search_match) )
{
$username_search = preg_replace('/\*/', '%', trim(strip_tags($search_match)));
$sql = "SELECT username
FROM " . USERS_TABLE . "
WHERE username LIKE '" . str_replace("\'", "''", $username_search) . "'
AND id <> ".$conf['guest_id']."
ORDER BY username";
if ( !($result = pwg_query($sql)) )
{
die('Could not obtain search results');
}
if ( $row = mysql_fetch_array($result) )
{
do
{
$username_list .= '<option value="' . $row['username'] . '">' . $row['username'] . '</option>';
}
while ( $row = mysql_fetch_array($result) );
}
else
{
$username_list .= '<option>' . $lang['No_match']. '</option>';
}
mysql_free_result($result);
}
//------------------------------------------------------------------ users list
if ( !empty($username_list))
{
$template->assign_block_vars('switch_select_name', array(
'F_USERNAME_OPTIONS'=>$username_list
));
}
$template->parse('search');
include(PHPWG_ROOT_PATH.'include/page_tail.php');
?>

View file

@ -124,17 +124,29 @@ DELETE FROM '.USER_GROUP_TABLE.'
$formfields = $formfields =
array('nb_image_line', 'nb_line_page', 'template', 'language', array('nb_image_line', 'nb_line_page', 'template', 'language',
'recent_period', 'expand', 'show_nb_comments', 'maxwidth', 'recent_period', 'maxwidth', 'expand', 'show_nb_comments',
'maxheight', 'status'); 'maxheight', 'status');
$true_false_fields = array('expand', 'show_nb_comments');
foreach ($formfields as $formfield) foreach ($formfields as $formfield)
{ {
if ($_POST[$formfield.'_action'] != 'leave') // special for true/false fields
if (in_array($formfield, $true_false_fields))
{
$test = $formfield;
}
else
{
$test = $formfield.'_action';
}
if ($_POST[$test] != 'leave')
{ {
array_push($dbfields['update'], $formfield); array_push($dbfields['update'], $formfield);
} }
} }
// updating elements is useful only if needed... // updating elements is useful only if needed...
if (count($dbfields['update']) > 0) if (count($dbfields['update']) > 0)
{ {
@ -150,7 +162,8 @@ DELETE FROM '.USER_GROUP_TABLE.'
{ {
// if the action is 'unset', the key won't be in row and // if the action is 'unset', the key won't be in row and
// mass_updates function will set this field to NULL // mass_updates function will set this field to NULL
if ('set' == $_POST[$dbfield.'_action']) if (in_array($dbfield, $true_false_fields)
or 'set' == $_POST[$dbfield.'_action'])
{ {
$data[$dbfield] = $_POST[$dbfield]; $data[$dbfield] = $_POST[$dbfield];
} }
@ -165,6 +178,10 @@ DELETE FROM '.USER_GROUP_TABLE.'
array_push($datas, $data); array_push($datas, $data);
} }
// echo '<pre>';
// print_r($datas);
// echo '</pre>';
mass_updates(USER_INFOS_TABLE, $dbfields, $datas); mass_updates(USER_INFOS_TABLE, $dbfields, $datas);
} }
} }
@ -366,12 +383,6 @@ else
'MAXWIDTH' => @$conf['default_maxwidth'], 'MAXWIDTH' => @$conf['default_maxwidth'],
'MAXHEIGHT' => @$conf['default_maxheight'], 'MAXHEIGHT' => @$conf['default_maxheight'],
'RECENT_PERIOD' => $conf['recent_period'], 'RECENT_PERIOD' => $conf['recent_period'],
'EXPAND_YES' => $conf['auto_expand'] ? 'checked="checked"' : '',
'EXPAND_NO' => !$conf['auto_expand'] ? 'checked="checked"' : '',
'SHOW_NB_COMMENTS_YES' =>
$conf['show_nb_comments'] ? 'checked="checked"' : '',
'SHOW_NB_COMMENTS_NO' =>
!$conf['show_nb_comments'] ? 'checked="checked"' : ''
)); ));
} }

View file

@ -112,6 +112,7 @@ if ( $user['expand'] )
// Start output of page // Start output of page
// //
$title = $page['title']; $title = $page['title'];
$page['body_id'] = 'theCategoryPage';
include(PHPWG_ROOT_PATH.'include/page_header.php'); include(PHPWG_ROOT_PATH.'include/page_header.php');
$template->set_filenames( array('category'=>'category.tpl') ); $template->set_filenames( array('category'=>'category.tpl') );
@ -134,7 +135,8 @@ if ( isset( $page['cat_nb_images'] ) and $page['cat_nb_images'] > 0 )
$icon_recent = get_icon(date('Y-m-d')); $icon_recent = get_icon(date('Y-m-d'));
$template->assign_vars(array( $template->assign_vars(
array(
'NB_PICTURE' => count_user_total_images(), 'NB_PICTURE' => count_user_total_images(),
'TITLE' => $template_title, 'TITLE' => $template_title,
'USERNAME' => $user['username'], 'USERNAME' => $user['username'],

View file

@ -165,11 +165,10 @@ UPDATE '.COMMENTS_TABLE.'
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | page header and options | // | page header and options |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
if (!defined('IN_ADMIN'))
{ $title= l10n('title_comments');
$title= l10n('title_comments'); $page['body_id'] = 'theCommentsPage';
include(PHPWG_ROOT_PATH.'include/page_header.php'); include(PHPWG_ROOT_PATH.'include/page_header.php');
}
$template->set_filenames(array('comments'=>'comments.tpl')); $template->set_filenames(array('comments'=>'comments.tpl'));
$template->assign_vars( $template->assign_vars(

View file

@ -1,3 +1,22 @@
2005-08-26 Pierrick LE GALL
* new : HTML BODY identifier to let CSS stylesheets manage
specific behaviour.
* deletion : admin/search useless
* improvement : in admin/user_list, special behaviour for
true/false fields (expand, show_comments)
* new : gallery_title and gallery_description are displayed at the
top of each page.
* improvement : simplification in HTML for categories menu.
* improvement : standardization of presentation in all public
pages (identification, registration, search, profile,
notification, comments, etc.)
2005-08-25 Pierrick LE GALL 2005-08-25 Pierrick LE GALL
* deletion : no mail notification anymore. Feature replaced by RSS * deletion : no mail notification anymore. Feature replaced by RSS

View file

@ -64,6 +64,7 @@ SELECT '.$conf['user_fields']['id'].' AS id,
// Start output of page // Start output of page
// //
$title = $lang['identification']; $title = $lang['identification'];
$page['body_id'] = 'theIdentificationPage';
include(PHPWG_ROOT_PATH.'include/page_header.php'); include(PHPWG_ROOT_PATH.'include/page_header.php');
$template->set_filenames( array('identification'=>'identification.tpl') ); $template->set_filenames( array('identification'=>'identification.tpl') );

View file

@ -270,9 +270,13 @@ $conf['allow_random_representative'] = false;
// category and element description. // category and element description.
$conf['allow_html_descriptions'] = true; $conf['allow_html_descriptions'] = true;
// gallery_title : Title for RSS feed // gallery_title : Title at top of each page and for RSS feed
$conf['gallery_title'] = 'PhpWebGallery demo'; $conf['gallery_title'] = 'PhpWebGallery demonstration site';
// gallery_description : Short description displayed with gallery title
$conf['gallery_description'] = 'My photos web site';
// galery_url : URL given in RSS feed // galery_url : URL given in RSS feed
$conf['gallery_url'] = 'http://demo.phpwebgallery.net'; $conf['gallery_url'] = 'http://demo.phpwebgallery.net';
?> ?>

View file

@ -374,27 +374,21 @@ function get_html_menu_category($categories)
$menu.= str_repeat("\n</ul>",($ref_level-$level)); $menu.= str_repeat("\n</ul>",($ref_level-$level));
} }
$ref_level = $level; $ref_level = $level;
$menu.= ' $menu.= '
<li>'; <li';
$url = add_session_id(PHPWG_ROOT_PATH.'category.php?cat='.$category['id']);
$class = '';
if (isset($page['cat']) if (isset($page['cat'])
and is_numeric($page['cat']) and is_numeric($page['cat'])
and $category['id'] == $page['cat']) and $category['id'] == $page['cat'])
{ {
$class = 'menuCategorySelected'; $menu.= ' class="selected"';
} }
else $menu.= '>';
{
$class = 'menuCategoryNotSelected'; $url = add_session_id(PHPWG_ROOT_PATH.'category.php?cat='.$category['id']);
}
$menu.= ' $menu.= '
<a href="'.$url.'" class="'.$class.'">'.$category['name'].'</a>'; <a href="'.$url.'">'.$category['name'].'</a>';
if ($category['nb_images'] > 0) if ($category['nb_images'] > 0)
{ {

View file

@ -35,6 +35,18 @@ $css.= '/'.$user['template'].'.css';
$template->assign_vars( $template->assign_vars(
array( array(
'GALLERY_TITLE' =>
isset($page['gallery_title']) ?
$page['gallery_title'] : $conf['gallery_title'],
'GALLERY_DESCRIPTION' =>
isset($page['gallery_description']) ?
$page['gallery_description'] : $conf['gallery_description'],
'BODY_ID' =>
isset($page['body_id']) ?
$page['body_id'] : '',
'CONTENT_ENCODING' => $lang_info['charset'], 'CONTENT_ENCODING' => $lang_info['charset'],
'PAGE_TITLE' => $title, 'PAGE_TITLE' => $title,
'LANG'=>$lang_info['code'], 'LANG'=>$lang_info['code'],

View file

@ -224,11 +224,10 @@ $lang['total'] = 'images';
// About // About
$lang['about_page_title'] = 'About PhpWebGallery'; $lang['about_page_title'] = 'About PhpWebGallery';
$lang['about_title'] = 'About...'; $lang['about_title'] = 'About...';
$lang['about_message'] = '<div style="text-align:center;font-weigh:bold;">Information about PhpWebGallery</div> $lang['about_message'] = '<ul>
<ul>
<li>PhpWebGallery is a web application giving you the possibility to create an online images gallery easily.</li> <li>PhpWebGallery is a web application giving you the possibility to create an online images gallery easily.</li>
<li>Technicaly, PhpWebGallery is fully developped with PHP (the elePHPant) with a MySQL database (the SQuirreL).</li> <li>Technicaly, PhpWebGallery is fully developped with PHP (the elePHPant) with a MySQL database (the SQuirreL).</li>
<li>If you have any suggestions or comments, please visit <a href="http://www.phpwebgallery.net" style="text-decoration:underline">PhpWebGallery</a> official site, and its dedicated <a href="http://forum.phpwebgallery.net" style="text-decoration:underline">forum</a>.</li> <li>If you have any suggestions or comments, please visit <a href="http://www.phpwebgallery.net">PhpWebGallery</a> official site, and its dedicated <a href="http://forum.phpwebgallery.net">forum</a>.</li>
</ul>'; </ul>';
// Picture // Picture

72
notification.php Normal file
View file

@ -0,0 +1,72 @@
<?php
// +-----------------------------------------------------------------------+
// | PhpWebGallery - a PHP based picture gallery |
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
// +-----------------------------------------------------------------------+
// | branch : BSF (Best So Far)
// | file : $RCSfile$
// | last update : $Date$
// | last modifier : $Author$
// | revision : $Revision$
// +-----------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation |
// | |
// | This program is distributed in the hope that it will be useful, but |
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
// | General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with this program; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA. |
// +-----------------------------------------------------------------------+
// +-----------------------------------------------------------------------+
// | initialization |
// +-----------------------------------------------------------------------+
define('PHPWG_ROOT_PATH','./');
include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
// +-----------------------------------------------------------------------+
// | new feed creation |
// +-----------------------------------------------------------------------+
$page['feed'] = find_available_feed_id();
$query = '
INSERT INTO '.USER_FEED_TABLE.'
(id, user_id, last_check)
VALUES
(\''.$page['feed'].'\', '.$user['id'].', NULL)
;';
pwg_query($query);
// +-----------------------------------------------------------------------+
// | template initialization |
// +-----------------------------------------------------------------------+
$title = l10n('Notification');
$page['body_id'] = 'theNotificationPage';
include(PHPWG_ROOT_PATH.'include/page_header.php');
$template->set_filenames(array('notification'=>'notification.tpl'));
$template->assign_vars(
array(
'FEED_URL' => PHPWG_ROOT_PATH.'feed.php?feed='.$page['feed'],
'U_HOME' => add_session_id(PHPWG_ROOT_PATH.'category.php')
)
);
// +-----------------------------------------------------------------------+
// | html code display |
// +-----------------------------------------------------------------------+
$template->parse('notification');
include(PHPWG_ROOT_PATH.'include/page_tail.php');
?>

View file

@ -466,6 +466,7 @@ if ($metadata_showable and !isset($_GET['show_metadata']))
$url_metadata.= '&amp;show_metadata=1'; $url_metadata.= '&amp;show_metadata=1';
} }
$page['body_id'] = 'thePicturePage';
include(PHPWG_ROOT_PATH.'include/page_header.php'); include(PHPWG_ROOT_PATH.'include/page_header.php');
$template->set_filenames(array('picture'=>'picture.tpl')); $template->set_filenames(array('picture'=>'picture.tpl'));

View file

@ -142,10 +142,13 @@ SELECT password
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
// | page header and options | // | page header and options |
// +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+
$title= $lang['customize_page_title']; $title= $lang['customize_page_title'];
$page['body_id'] = 'theProfilePage';
include(PHPWG_ROOT_PATH.'include/page_header.php'); include(PHPWG_ROOT_PATH.'include/page_header.php');
$url_action = PHPWG_ROOT_PATH.'profile.php'; $url_action = PHPWG_ROOT_PATH.'profile.php';
//----------------------------------------------------- template initialization //----------------------------------------------------- template initialization
$template->set_filenames(array('profile_body'=>'profile.tpl')); $template->set_filenames(array('profile_body'=>'profile.tpl'));

View file

@ -67,6 +67,7 @@ $email = !empty($_POST['mail_address'])?$_POST['mail_address']:'';
// Start output of page // Start output of page
// //
$title= $lang['register_page_title']; $title= $lang['register_page_title'];
$page['body_id'] = 'theRegisterPage';
include(PHPWG_ROOT_PATH.'include/page_header.php'); include(PHPWG_ROOT_PATH.'include/page_header.php');
$template->set_filenames( array('register'=>'register.tpl') ); $template->set_filenames( array('register'=>'register.tpl') );
@ -78,6 +79,8 @@ $template->assign_vars(array(
'L_PASSWORD' => $lang['password'], 'L_PASSWORD' => $lang['password'],
'L_CONFIRM_PASSWORD' => $lang['reg_confirm'], 'L_CONFIRM_PASSWORD' => $lang['reg_confirm'],
'L_EMAIL' => $lang['mail_address'], 'L_EMAIL' => $lang['mail_address'],
'U_HOME' => add_session_id(PHPWG_ROOT_PATH.'category.php'),
'F_ACTION' => add_session_id('register.php'), 'F_ACTION' => add_session_id('register.php'),
'F_LOGIN' => $login, 'F_LOGIN' => $login,

View file

@ -145,6 +145,7 @@ get_month_list('end_month', @$_POST['end_month']);
// Start output of page // Start output of page
// //
$title= $lang['search_title']; $title= $lang['search_title'];
$page['body_id'] = 'theSearchPage';
include(PHPWG_ROOT_PATH.'include/page_header.php'); include(PHPWG_ROOT_PATH.'include/page_header.php');
$template->set_filenames( array('search'=>'search.tpl') ); $template->set_filenames( array('search'=>'search.tpl') );

View file

@ -1,10 +1,12 @@
<h2>{PAGE_TITLE}</h2> <div id="content">
<div class="menu" style="white-space:normal;margin:10px;">
{L_ABOUT} <div class="titrePage">
</div> <ul class="categoryActions">
<div style="text-align:center;margin:5px;"> <li><a href="{U_HOME}" title="{lang:return to homepage}"><img src="./template/cclear/theme/home.png" alt="{lang:home}"/></a></li>
<a href="{U_RETURN}" title="{L_RETURN_HINT}">[{L_RETURN}]</a> </ul>
</div> <h2>{lang:About}</h2>
<div style="text-align:center;margin:5px;"> </div>
<img src="./template/clear/images/php_sqreuil_artistes.gif" alt="php logo" />
{lang:about_message}
</div> </div>

View file

@ -1,4 +1,5 @@
<!-- $Id$ --> <!-- $Id$ -->
<div id="menubar"> <div id="menubar">
<dl> <dl>
<dt>{lang:links}</dt> <dt>{lang:links}</dt>
@ -66,7 +67,6 @@
</div> <!-- menubar --> </div> <!-- menubar -->
<div id="content"> <div id="content">
<!--h2>{PAGE_TITLE}</h2-->
<!-- BEGIN errors --> <!-- BEGIN errors -->
<div id="errors"> <div id="errors">
<ul> <ul>
@ -89,5 +89,3 @@
{ADMIN_CONTENT} {ADMIN_CONTENT}
</div> </div>

View file

@ -37,12 +37,12 @@
</li> </li>
<!-- END category --> <!-- END category -->
<p><input name="submitOrder" type="submit" class="bouton" value="{lang:Save order}" /></p> <p><input name="submitOrder" type="submit" value="{lang:Save order}" /></p>
</form> </form>
<form action="{F_ACTION}" method="post"> <form action="{F_ACTION}" method="post">
{L_ADD_VIRTUAL} : <input type="text" name="virtual_name" /> {L_ADD_VIRTUAL} : <input type="text" name="virtual_name" />
<input type="hidden" name="rank" value="{NEXT_RANK}"/> <input type="hidden" name="rank" value="{NEXT_RANK}"/>
<input type="submit" value="{L_SUBMIT}" class="bouton" name="submitAdd" /> <input type="submit" value="{L_SUBMIT}" name="submitAdd" />
</form> </form>

View file

@ -4,7 +4,7 @@
<form action="{F_ACTION}" method="post" id="categoryPermissions"> <form action="{F_ACTION}" method="post" id="categoryPermissions">
<h3>{lang:Groups}</h3> <h4>{lang:Groups}</h4>
<fieldset> <fieldset>
<legend>{lang:Permission granted}</legend> <legend>{lang:Permission granted}</legend>
@ -26,7 +26,7 @@
<input type="submit" name="grant_groups_submit" value="{lang:Grant selected groups}" /> <input type="submit" name="grant_groups_submit" value="{lang:Grant selected groups}" />
</fieldset> </fieldset>
<h3>{lang:Users}</h3> <h4>{lang:Users}</h4>
<fieldset> <fieldset>
<legend>{lang:Permission granted}</legend> <legend>{lang:Permission granted}</legend>

View file

@ -190,8 +190,8 @@
<!-- END metadata --> <!-- END metadata -->
<tr> <tr>
<td colspan="2" align="center"> <td colspan="2" align="center">
<input type="submit" name="submit" class="bouton" value="{L_SUBMIT}"> <input type="submit" name="submit" value="{L_SUBMIT}">
<input type="reset" name="reset" class="bouton" value="{L_RESET}"> <input type="reset" name="reset" value="{L_RESET}">
</td> </td>
</tr> </tr>
</table> </table>

View file

@ -27,7 +27,7 @@
</ul> </ul>
<p style="text-align:center;"><input type="submit" value="{L_SUBMIT}" name="submit_caddie" class="bouton" /></p> <p style="text-align:center;"><input type="submit" value="{L_SUBMIT}" name="submit_caddie" /></p>
</fieldset> </fieldset>
@ -152,7 +152,7 @@
</p> </p>
<p style="text-align:center;"><input type="submit" value="{L_SUBMIT}" name="submit" class="bouton" /></p> <p style="text-align:center;"><input type="submit" value="{L_SUBMIT}" name="submit" /></p>
</fieldset> </fieldset>

View file

@ -1,52 +1,27 @@
<!-- BEGIN errors --> <h2>{lang:title_groups}</h2>
<div class="errors">
<ul> <form class="filter" method="post" name="add_user" action="{F_ADD_ACTION}">
<!-- BEGIN error --> <fieldset>
<li>{errors.error.ERROR}</li> <legend>{lang:Add group}</legend>
<!-- END error --> <label>{lang:Group name} <input type="text" name="groupname" maxlength="50" size="20" /></label>
</ul> <input type="submit" name="submit_add" value="{lang:Add}" />
</div> </fieldset>
<!-- END errors --> </form>
<form method="post" name="post" action="{S_GROUP_ACTION}">
<div class="admin">{L_GROUP_SELECT}</div> <table class="table2">
<!-- BEGIN select_box --> <tr class="throw">
{S_GROUP_SELECT}&nbsp;&nbsp;<input type="submit" name="edit" value="{L_LOOK_UP}" class="bouton" /> <th>{lang:Group name}</th>
<input type="submit" name="delete" value="{L_GROUP_DELETE}" class="bouton" /> <th>{lang:Members}</th>
<div style="vertical-align:middle;"> <th>{lang:Actions}</th>
<input type="checkbox" name="confirm_delete" value="1">{L_GROUP_CONFIRM}
</div>
<!-- END select_box -->
<input type="text" name="newgroup">
<input type="submit" class="bouton" name="new" value="{L_CREATE_NEW_GROUP}" />
<br />
<br />
<!-- BEGIN edit_group -->
<div class="admin">{L_GROUP_EDIT} [{edit_group.GROUP_NAME}]</div>
<table class="table2" width="60%" style="margin-left:20%;">
<tr class="throw">
<th width="25%">{L_USER_NAME}</th>
<th width="25%">{L_USER_EMAIL}</th>
<th width="10%">{L_USER_SELECT}</th>
</tr>
<!-- BEGIN user -->
<tr class="{edit_group.user.T_CLASS}">
<td>{edit_group.user.NAME}</td>
<td>{edit_group.user.EMAIL}</td>
<td align="center"><input name="members[]" type="checkbox" value="{edit_group.user.ID}"></td>
</tr> </tr>
<!-- END user --> <!-- BEGIN group -->
<tr> <tr class="{group.CLASS}">
<td colspan="3" align="right" valign="middle"> <td>{group.NAME}</td>
<input type="submit" name="deny_user" value="{L_DENY_SELECTED}" class="bouton" /> <td><a href="{group.U_MEMBERS}">{group.MEMBERS}</a></td>
</td> <td style="text-align:center;">
</tr> <a href="{group.U_PERM}"><img src="./template/default/theme/permissions.png" style="border:none" alt="permissions" title="{lang:permissions}" /></a>
<a href="{group.U_DELETE}"><img src="./template/default/theme/delete.png" style="border:none" alt="delete" title="{lang:delete}" /></a>
</td>
</tr>
<!-- END group -->
</table> </table>
<div align="left" style="margin-left:20%;">
<input type="text" name="username" maxlength="50" size="20" />
<input type="submit" name="add" value="{L_ADD_MEMBER}" class="bouton" />
<input name="edit_group_id" type="hidden" value="{edit_group.GROUP_ID}">
<input type="submit" name="usersubmit" value="{L_FIND_USERNAME}" class="bouton" onClick="window.open('{U_SEARCH_USER}', '_phpbbsearch', 'HEIGHT=250,resizable=yes,WIDTH=400');return false;" />
</div>
<br />
<!-- END edit_group -->
</form>

View file

@ -1,7 +1,7 @@
<!-- BEGIN select_box --> <h2>{TITLE}</h2>
<form method="post" name="post" action="{S_GROUP_ACTION}">
<div class="admin">{L_GROUP_SELECT}</div> <form method="post" action="{F_ACTION}">
{S_GROUP_SELECT}&nbsp;&nbsp; {DOUBLE_SELECT}
<input type="submit" name="edit" value="{L_LOOK_UP}" class="bouton" />
</form> </form>
<!-- END select_box -->
<p>{lang:Only private categories are listed}</p>

View file

@ -1,96 +0,0 @@
<!-- BEGIN errors -->
<div class="errors">
<ul>
<!-- BEGIN error -->
<li>{errors.error.ERROR}</li>
<!-- END error -->
</ul>
</div>
<!-- END errors -->
<form action="{F_ACTION}" method="POST">
<div class="admin">{L_INFOS_TITLE} &quot;{CATEGORY}&quot;</div>
<table width="100%">
<tr>
<td><div style="margin-left:50px;">{L_AUTHOR}</div></td>
<td style="row1">
<input type="text" name="author_cat" value="" maxlength="255" />
</td>
<td style="text-align:left;">
<input type="checkbox" name="use_common_author" value="1" />
{L_INFOS_OVERALL_USE}
</td>
</tr>
<tr>
<td>
<div style="margin-left:50px;">{L_INFOS_CREATION_DATE} [DD/MM/YYYY]</div>
</td>
<td style="row1">
<input type="text" name="date_creation_cat" value="" size="12" maxlength="10"/>
</td>
<td style="text-align:left;">
<input type="checkbox" name="use_common_date_creation" value="1" />
{L_INFOS_OVERALL_USE}
</td>
</tr>
<tr>
<td>
<div style="margin-left:50px;">{L_KEYWORD} {L_KEYWORD_SEPARATION}</div>
</td>
<td style="row1">
<input type="text" name="keywords_cat" value="" maxlength="255" />
</td>
<td style="text-align:left;">
<input type="radio" name="common_keywords" value="add" />
{L_INFOS_ADDTOALL}
<input type="radio" name="common_keywords" value="remove" />
{L_INFOS_REMOVEFROMALL}
</td>
</tr>
</table>
<br />
<div class="admin">{L_INFOS_DETAIL}</div>
<div class="navigationBar">{NAV_BAR}</div>
<table width="100%">
<tr>
<td style="width:0px;">&nbsp;</td>
<td class="row2" style="text-align:center;">{L_THUMBNAIL}</td>
<td class="row2" style="text-align:center;">{L_INFOS_IMG}</td>
<td class="row2" style="text-align:center;">{L_AUTHOR}</td>
<td class="row2" style="text-align:center;">{L_INFOS_COMMENT}</td>
<td class="row2" style="text-align:center;">{L_INFOS_CREATION_DATE}</td>
<td class="row2" style="text-align:center;">{L_KEYWORD}</td>
</tr>
<!-- BEGIN picture -->
<tr>
<td style="width:0px;">
<div style="margin-left:2px;margin-right:2px;">
<input type="checkbox" name="check-{picture.ID_IMG}" value="1" />
</div>
</td>
<td style="text-align:center;"><a name="{picture.DEFAULTNAME_IMG}" href="{picture.URL_IMG}"><img src="{picture.TN_URL_IMG}" alt="" class="miniature" title="{picture.FILENAME_IMG}" /></a></td>
<td style="text-align:center;">{picture.DEFAULTNAME_IMG}<br /><input type="text" name="name-{picture.ID_IMG}" value="{picture.NAME_IMG}" maxlength="255"/></td>
<td style="text-align:center;"><input type="text" name="author-{picture.ID_IMG}" value="{picture.AUTHOR_IMG}" maxlength="255" size="12" /></td>
<td style="text-align:center;"><textarea name="comment-{picture.ID_IMG}" rows="5" cols="30" style="overflow:auto">{picture.COMMENT_IMG}</textarea></td>
<td style="text-align:center;"><input type="text" name="date_creation-{picture.ID_IMG}" value="{picture.DATE_IMG}" maxlength="10" size="10" /></td>
<td style="text-align:center;"><input type="text" name="keywords-{picture.ID_IMG}" value="{picture.KEYWORDS_IMG}" length="255" /></td>
</tr>
<!-- END picture -->
<tr>
<td colspan="7">
<img src="./template/clear/admin/images/arrow_select.gif" alt="&uarr;" />
{L_INFOS_ASSOCIATE}
<select style="width:400px" name="associate" size="1">
<!-- BEGIN associate_option -->
<option {associate_option.SELECTED} value="{associate_option.VALUE}">{associate_option.OPTION}</option>
<!-- END category_option -->
</select>
</td>
</tr>
<tr>
<td colspan="7" style="text-align:center;">
<input type="submit" value="{L_SUBMIT}" name="submit" class="bouton" />
</td>
</tr>
</table>
</form>

View file

@ -55,7 +55,7 @@
<form action="{F_ACTION}" method="post"> <form action="{F_ACTION}" method="post">
{L_REMOTE_SITE_CREATE} {L_REMOTE_SITE_CREATE}
<input type="text" name="galleries_url" value="{F_GALLERIES_URL}" /> <input type="text" name="galleries_url" value="{F_GALLERIES_URL}" />
<input class="bouton" type="submit" name="submit" value="{L_SUBMIT}" /> <input type="submit" name="submit" value="{L_SUBMIT}" />
</form> </form>
<table> <table>

View file

@ -1,22 +0,0 @@
<script language="javascript" type="text/javascript">
<!--
function refresh_username(selected_username)
{
opener.document.forms['post'].username.value = selected_username;
opener.focus();
window.close();
}
//-->
</script>
<div class="titrePage">{L_SEARCH_USERNAME}</div>
<form method="post" name="search" action="{F_SEARCH_ACTION}">
<input type="text" name="search_username" value="{USERNAME}" class="post" />&nbsp;
<input type="submit" name="search" value="{L_SEARCH}" class="bouton" /><br />
<span class="gensmall">{L_SEARCH_EXPLAIN}</span><br />
<!-- BEGIN switch_select_name -->
<span class="genmed">{L_UPDATE_USERNAME}<br />
<select name="username_list">{switch_select_name.F_USERNAME_OPTIONS}</select>&nbsp;
<input type="submit" class="bouton" onClick="refresh_username(this.form.username_list.options[this.form.username_list.selectedIndex].value);return false;" name="use" value="{L_SELECT}" /></span><br />
<!-- END switch_select_name -->
<br /><a href="javascript:window.close();" class="adminMenu">{L_CLOSE_WINDOW}</a>
</form>

View file

@ -98,7 +98,7 @@
</tr> </tr>
<tr> <tr>
<td colspan="3" style="text-align:center;"> <td colspan="3" style="text-align:center;">
<input type="submit" name="submit" class="bouton" value="{L_SUBMIT}"/> <input type="submit" name="submit" value="{L_SUBMIT}"/>
</td> </td>
</tr> </tr>
</table> </table>

View file

@ -79,8 +79,8 @@
</fieldset> </fieldset>
<p class="bottomButtons"> <p class="bottomButtons">
<input type="submit" value="{L_SUBMIT}" name="submit" class="bouton" /> <input type="submit" value="{L_SUBMIT}" name="submit" />
<input type="reset" value="{L_RESET}" name="reset" class="bouton" /> <input type="reset" value="{L_RESET}" name="reset" />
</p> </p>
</form> </form>

View file

@ -1,11 +1,11 @@
<h1>{lang:title_liste_users}</h1> <h2>{lang:title_liste_users}</h2>
<form class="filter" method="post" name="add_user" action="{F_ADD_ACTION}"> <form class="filter" method="post" name="add_user" action="{F_ADD_ACTION}">
<fieldset> <fieldset>
<legend>{lang:Add a user}</legend> <legend>{lang:Add a user}</legend>
<label>{L_USERNAME} <input type="text" name="login" maxlength="50" size="20" /></label> <label>{L_USERNAME} <input type="text" name="login" maxlength="50" size="20" /></label>
<label>{L_PASSWORD} <input type="text" name="password" /></label> <label>{L_PASSWORD} <input type="text" name="password" /></label>
<input type="submit" name="submit_add" value="{L_SUBMIT}" class="bouton" /> <input type="submit" name="submit_add" value="{L_SUBMIT}" />
</fieldset> </fieldset>
</form> </form>
@ -60,7 +60,7 @@
</select> </select>
</label> </label>
<input type="submit" name="submit_filter" value="{L_SUBMIT}" class="bouton" /> <input type="submit" name="submit_filter" value="{L_SUBMIT}" />
</fieldset> </fieldset>
@ -68,14 +68,14 @@
<form method="post" name="preferences" action="{F_PREF_ACTION}"> <form method="post" name="preferences" action="{F_PREF_ACTION}">
<table class="table2" style="width:100%;" > <table class="table2">
<tr class="throw"> <tr class="throw">
<th style="width:1%;"></th> <th>&nbsp;</th>
<th style="width:20%;">{L_USERNAME}</th> <th>{L_USERNAME}</th>
<th style="width:20%;">{L_STATUS}</th> <th>{L_STATUS}</th>
<th style="width:30%;">{L_EMAIL}</th> <th>{L_EMAIL}</th>
<th style="width:30%;">{L_GROUPS}</th> <th>{lang:Groups}</th>
<th style="width:1%;">{L_ACTIONS}</th> <th>{L_ACTIONS}</th>
</tr> </tr>
<!-- BEGIN user --> <!-- BEGIN user -->
<tr class="{user.CLASS}"> <tr class="{user.CLASS}">
@ -90,13 +90,34 @@
</tr> </tr>
<!-- END user --> <!-- END user -->
</table> </table>
<div class="navigationBar">{NAVBAR}</div> <div class="navigationBar">{NAVBAR}</div>
<!-- delete the selected users ? --> <!-- delete the selected users ? -->
<fieldset> <fieldset>
<legend>{lang:Deletions}</legend> <legend>{lang:Deletions}</legend>
<input type="checkbox" name="confirm_deletion" value="1" /> {lang:confirm} <label><input type="checkbox" name="confirm_deletion" value="1" /> {lang:confirm}</label>
<input type="submit" value="{lang:Delete selected users}" name="delete" class="bouton" /> <input type="submit" value="{lang:Delete selected users}" name="delete" />
</fieldset>
<fieldset>
<legend>{lang:Status}</legend>
<table>
<tr>
<td>{L_STATUS}</td>
<td>
<label><input type="radio" name="status_action" value="leave" checked="checked" /> {lang:leave}</label>
<label><input type="radio" name="status_action" value="set" id="status_action_set" /> {lang:set to}</label>
<select onmousedown="document.getElementById('status_action_set').checked = true;" name="status" size="1">
<!-- BEGIN pref_status_option -->
<option {pref_status_option.SELECTED} value="{pref_status_option.VALUE}">{pref_status_option.CONTENT}</option>
<!-- END pref_status_option -->
</select>
</td>
</tr>
</table>
</fieldset> </fieldset>
<!-- form to set properties for many users at once --> <!-- form to set properties for many users at once -->
@ -139,8 +160,8 @@
<tr> <tr>
<td>{L_NB_IMAGE_LINE}</td> <td>{L_NB_IMAGE_LINE}</td>
<td> <td>
<input type="radio" name="nb_image_line_action" value="leave" checked="checked" /> leave unchanged <label><input type="radio" name="nb_image_line_action" value="leave" checked="checked" /> {lang:leave}</label>
<input type="radio" name="nb_image_line_action" value="set" id="nb_image_line_action_set" /> set to <label><input type="radio" name="nb_image_line_action" value="set" id="nb_image_line_action_set" /> {lang:set to}</label>
<input onmousedown="document.getElementById('nb_image_line_action_set').checked = true;" <input onmousedown="document.getElementById('nb_image_line_action_set').checked = true;"
size="3" maxlength="2" type="text" name="nb_image_line" value="{NB_IMAGE_LINE}" /> size="3" maxlength="2" type="text" name="nb_image_line" value="{NB_IMAGE_LINE}" />
</td> </td>
@ -149,8 +170,8 @@
<tr> <tr>
<td>{L_NB_LINE_PAGE}</td> <td>{L_NB_LINE_PAGE}</td>
<td> <td>
<input type="radio" name="nb_line_page_action" value="leave" checked="checked" /> leave unchanged <label><input type="radio" name="nb_line_page_action" value="leave" checked="checked" /> {lang:leave}</label>
<input type="radio" name="nb_line_page_action" value="set" id="nb_line_page_action_set" /> set to <label><input type="radio" name="nb_line_page_action" value="set" id="nb_line_page_action_set" /> {lang:set to}</label>
<input onmousedown="document.getElementById('nb_line_page_action_set').checked = true;" <input onmousedown="document.getElementById('nb_line_page_action_set').checked = true;"
size="3" maxlength="2" type="text" name="nb_line_page" value="{NB_LINE_PAGE}" /> size="3" maxlength="2" type="text" name="nb_line_page" value="{NB_LINE_PAGE}" />
<td> <td>
@ -159,8 +180,8 @@
<tr> <tr>
<td>{L_TEMPLATE}</td> <td>{L_TEMPLATE}</td>
<td> <td>
<input type="radio" name="template_action" value="leave" checked="checked" /> leave unchanged <label><input type="radio" name="template_action" value="leave" checked="checked" /> {lang:leave}</label>
<input type="radio" name="template_action" value="set" id="template_action_set" /> set to <label><input type="radio" name="template_action" value="set" id="template_action_set" /> {lang:set to}</label>
<select onmousedown="document.getElementById('template_action_set').checked = true;" name="template" size="1"> <select onmousedown="document.getElementById('template_action_set').checked = true;" name="template" size="1">
<!-- BEGIN template_option --> <!-- BEGIN template_option -->
<option {template_option.SELECTED} value="{template_option.VALUE}">{template_option.CONTENT}</option> <option {template_option.SELECTED} value="{template_option.VALUE}">{template_option.CONTENT}</option>
@ -172,8 +193,8 @@
<tr> <tr>
<td>{L_LANGUAGE}</td> <td>{L_LANGUAGE}</td>
<td> <td>
<input type="radio" name="language_action" value="leave" checked="checked" /> leave unchanged <label><input type="radio" name="language_action" value="leave" checked="checked" /> {lang:leave}</label>
<input type="radio" name="language_action" value="set" id="language_action_set" /> set to <label><input type="radio" name="language_action" value="set" id="language_action_set" /> {lang:set to}</label>
<select onmousedown="document.getElementById('language_action_set').checked = true;" name="language" size="1"> <select onmousedown="document.getElementById('language_action_set').checked = true;" name="language" size="1">
<!-- BEGIN language_option --> <!-- BEGIN language_option -->
<option {language_option.SELECTED} value="{language_option.VALUE}">{language_option.CONTENT}</option> <option {language_option.SELECTED} value="{language_option.VALUE}">{language_option.CONTENT}</option>
@ -185,8 +206,8 @@
<tr> <tr>
<td>{L_RECENT_PERIOD}</td> <td>{L_RECENT_PERIOD}</td>
<td> <td>
<input type="radio" name="recent_period_action" value="leave" checked="checked" /> leave unchanged <label><input type="radio" name="recent_period_action" value="leave" checked="checked" /> {lang:leave}</label>
<input type="radio" name="recent_period_action" value="set" id="recent_period_action_set" /> set to <label><input type="radio" name="recent_period_action" value="set" id="recent_period_action_set" /> {lang:set to}</label>
<input onmousedown="document.getElementById('recent_period_action_set').checked = true;" <input onmousedown="document.getElementById('recent_period_action_set').checked = true;"
type="text" size="3" maxlength="2" name="recent_period" value="{RECENT_PERIOD}" /> type="text" size="3" maxlength="2" name="recent_period" value="{RECENT_PERIOD}" />
</td> </td>
@ -195,33 +216,29 @@
<tr> <tr>
<td>{L_EXPAND}</td> <td>{L_EXPAND}</td>
<td> <td>
<input type="radio" name="expand_action" value="leave" checked="checked" /> leave unchanged <label><input type="radio" name="expand" value="leave" checked="checked" /> {lang:leave}</label>
<input type="radio" name="expand_action" value="set" id="expand_action_set" /> set to / {lang:set to}
<input onmousedown="document.getElementById('expand_action_set').checked = true;" <label><input type="radio" name="expand" value="true" {EXPAND_YES} />{L_YES}</label>
type="radio" class="radio" name="expand" value="true" {EXPAND_YES} />{L_YES} <label><input type="radio" name="expand" value="false" {EXPAND_NO} />{L_NO}</label>
<input onmousedown="document.getElementById('expand_action_set').checked = true;"
type="radio" class="radio" name="expand" value="false" {EXPAND_NO} />{L_NO}
</td> </td>
</tr> </tr>
<tr> <tr>
<td>{L_SHOW_NB_COMMENTS}</td> <td>{L_SHOW_NB_COMMENTS}</td>
<td> <td>
<input type="radio" name="show_nb_comments_action" value="leave" checked="checked" /> leave unchanged <label><input type="radio" name="show_nb_comments" value="leave" checked="checked" /> {lang:leave}</label>
<input type="radio" name="show_nb_comments_action" value="set" id="show_nb_comments_action_set" /> set to / {lang:set to}
<input onmousedown="document.getElementById('show_nb_comments_action_set').checked = true;" <label><input type="radio" name="show_nb_comments" value="true" {SHOW_NB_COMMENTS_YES} />{L_YES}</label>
type="radio" class="radio" name="show_nb_comments" value="true" {SHOW_NB_COMMENTS_YES} />{L_YES} <label><input type="radio" name="show_nb_comments" value="false" {SHOW_NB_COMMENTS_NO} />{L_NO}</label>
<input onmousedown="document.getElementById('show_nb_comments_action_set').checked = true;"
type="radio" class="radio" name="show_nb_comments" value="false" {SHOW_NB_COMMENTS_NO} />{L_NO}
</td> </td>
</tr> </tr>
<tr> <tr>
<td>{L_MAXWIDTH}</td> <td>{L_MAXWIDTH}</td>
<td> <td>
<input type="radio" name="maxwidth_action" value="leave" checked="checked" /> leave unchanged <label><input type="radio" name="maxwidth_action" value="leave" checked="checked" /> {lang:leave}</label>
<input type="radio" name="maxwidth_action" value="unset" /> unset <label><input type="radio" name="maxwidth_action" value="unset" /> {lang:unset}</label>
<input type="radio" name="maxwidth_action" value="set" id="maxwidth_action_set" /> set to <label><input type="radio" name="maxwidth_action" value="set" id="maxwidth_action_set" /> {lang:set to}</label>
<input onmousedown="document.getElementById('maxwidth_action_set').checked = true;" <input onmousedown="document.getElementById('maxwidth_action_set').checked = true;"
type="text" size="4" maxlength="4" name="maxwidth" value="{MAXWIDTH}" /> type="text" size="4" maxlength="4" name="maxwidth" value="{MAXWIDTH}" />
</td> </td>
@ -231,40 +248,28 @@
<tr> <tr>
<td>{L_MAXHEIGHT}</td> <td>{L_MAXHEIGHT}</td>
<td> <td>
<input type="radio" name="maxheight_action" value="leave" checked="checked" /> leave unchanged <label><input type="radio" name="maxheight_action" value="leave" checked="checked" /> {lang:leave}</label>
<input type="radio" name="maxheight_action" value="unset" /> unset <label><input type="radio" name="maxheight_action" value="unset" /> {lang:unset}</label>
<input type="radio" name="maxheight_action" value="set" id="maxheight_action_set" /> set to <label><input type="radio" name="maxheight_action" value="set" id="maxheight_action_set" /> {lang:set to}</label>
<input onmousedown="document.getElementById('maxheight_action_set').checked = true;" <input onmousedown="document.getElementById('maxheight_action_set').checked = true;"
type="text" size="4" maxlength="4" name="maxheight" value="{maxheight}" /> type="text" size="4" maxlength="4" name="maxheight" value="{maxheight}" />
</td> </td>
</tr> </tr>
<tr>
<td>{L_STATUS}</td>
<td>
<input type="radio" name="status_action" value="leave" checked="checked" /> leave unchanged
<input type="radio" name="status_action" value="set" id="status_action_set" /> set to
<select onmousedown="document.getElementById('status_action_set').checked = true;" name="status" size="1">
<!-- BEGIN pref_status_option -->
<option {pref_status_option.SELECTED} value="{pref_status_option.VALUE}">{pref_status_option.CONTENT}</option>
<!-- END pref_status_option -->
</select>
</td>
</tr>
</table> </table>
</fieldset> </fieldset>
<p style="text-align:center;"> <p>
target {lang:target}
<input type="radio" name="target" value="all" /> all <label><input type="radio" name="target" value="all" /> {lang:all}
<input type="radio" name="target" value="selection" checked="checked" /> selection <label><input type="radio" name="target" value="selection" checked="checked" /> {lang:selection}
</p> </p>
<p style="text-align:center;"> <p>
<input type="submit" value="{L_SUBMIT}" name="pref_submit" class="bouton" /> <input type="submit" value="{L_SUBMIT}" name="pref_submit" />
<input type="reset" value="{L_RESET}" name="pref_reset" class="bouton" /> <input type="reset" value="{L_RESET}" name="pref_reset" />
</p> </p>
</form> </form>

View file

@ -1,6 +1,21 @@
<div class="admin">{L_SELECT_USERNAME}</div> <h2>{TITLE}</h2>
<form method="post" name="post" action="{F_SEARCH_USER_ACTION}">
<input type="text" name="username" maxlength="50" size="20" /> <!-- BEGIN groups -->
<input type="submit" name="submituser" value="{L_LOOKUP_USER}" class="bouton" /> <fieldset>
<input type="submit" name="usersubmit" value="{L_FIND_USERNAME}" class="bouton" onClick="window.open('{U_SEARCH_USER}', '_phpwgsearch', 'HEIGHT=250,resizable=yes,WIDTH=400');return false;" /> <legend>{lang:Categories authorized thanks to group associations}</legend>
</form>
<ul>
<!-- BEGIN category -->
<li>{groups.category.NAME}</li>
<!-- END category -->
</ul>
</fieldset>
<!-- END groups -->
<fieldset>
<legend>{lang:Other private categories}</legend>
<form method="post" action="{F_ACTION}">
{DOUBLE_SELECT}
</form>
</fieldset>

View file

@ -1,6 +1,4 @@
<!-- $Id$ --> <!-- $Id$ -->
<h1>PhpWebGallery demonstration site</h1>
<div id="menubar"> <div id="menubar">
<!-- BEGIN links --> <!-- BEGIN links -->
<dl> <dl>
@ -84,7 +82,7 @@
<label for="remember_me">{L_REMEMBER_ME}</label> <label for="remember_me">{L_REMEMBER_ME}</label>
</p> </p>
<!-- END remember_me --> <!-- END remember_me -->
<p><input type="submit" name="login" value="{L_SUBMIT}" class="bouton"></p> <p><input type="submit" name="login" value="{L_SUBMIT}"></p>
</form> </form>
<!-- END quickconnect --> <!-- END quickconnect -->
</dd> </dd>

View file

@ -1,5 +1,4 @@
<div id="commentsPage"> <!-- $Id$ -->
<div id="content"> <div id="content">
<div class="titrePage"> <div class="titrePage">
@ -92,5 +91,3 @@
</div> </div>
</div> <!-- content --> </div> <!-- content -->
</div> <!-- commentsPage -->

View file

@ -5,7 +5,14 @@
margin-bottom: 1em; /* when it's longer than menu bar */ margin-bottom: 1em; /* when it's longer than menu bar */
} }
#commentsPage #content { BODY#theCommentsPage #content,
BODY#theRegisterPage #content,
BODY#theIdentificationPage #content,
BODY#theProfilePage #content,
BODY#theSearchPage #content,
BODY#theAboutPage #content,
BODY#theNotificationPage #content
{
margin: 1em; margin: 1em;
} }
@ -126,7 +133,7 @@ ul.categoryActions {
#content DIV.comment > A.illustration { #content DIV.comment > A.illustration {
display: block; display: block;
float: left; position: absolute;
margin: 5px; margin: 5px;
} }
@ -142,7 +149,6 @@ ul.categoryActions {
#content DIV.comment UL.actions { #content DIV.comment UL.actions {
text-align: center; text-align: center;
margin: 0.2em; margin: 0.2em;
clear: left;
} }
#content DIV.comment > UL.actions > LI { #content DIV.comment > UL.actions > LI {
@ -155,3 +161,4 @@ ul.categoryActions {
border-left: 2px solid gray; border-left: 2px solid gray;
padding: 0.5em; padding: 0.5em;
} }

View file

@ -117,9 +117,7 @@ input, select, textarea {
background-color: lightgrey; background-color: lightgrey;
border: 1px solid gray; border: 1px solid gray;
} }
.bouton {
background-color:#d3d3d3;
}
.errors { /* Errors display */ .errors { /* Errors display */
color:red; color:red;
background-color:#ffe1e1; background-color:#ffe1e1;
@ -132,7 +130,10 @@ input, select, textarea {
{ {
font-weight:normal; font-weight:normal;
} }
fieldset>legend { LEGEND {
font-style: italic; font-style: italic;
} }
FIELDSET {
border: 1px solid gray;
}

View file

@ -28,7 +28,7 @@ H1 {
H2 { H2 {
margin: 0; margin: 0;
padding: 5px 10px; padding: 5px;
text-align: left; text-align: left;
font-size: 120%; font-size: 120%;
} }
@ -67,7 +67,9 @@ div.formbox {
width: 70%; width: 70%;
margin: 0 auto 1em auto; margin: 0 auto 1em auto;
} }
form { padding: 0.5em; }
form { padding: 0em; }
/* form row are dl instead of table rows */ /* form row are dl instead of table rows */
form dl { form dl {
text-align: left; /* must set it there otherwise IE render dl.biglabel dt incorectly */ text-align: left; /* must set it there otherwise IE render dl.biglabel dt incorectly */
@ -113,10 +115,6 @@ form p {
margin-top: 2em; margin-top: 2em;
margin-bottom: 2em; margin-bottom: 2em;
} }
form table {
width: 99%; /* IE 6 seems to dislike 100% in admin->user */
}
.small { .small {
font-size: 80%; font-size: 80%;
} }
@ -148,10 +146,15 @@ select.categoryList {
} }
.table2 { .table2 {
border: 1px solid #000000; border: 1px solid black;
margin: auto 10px auto 10px; margin: 1em auto;
padding:0px; padding: 0;
} }
.table2 TD, .table2 TH {
padding: 0 1em;
}
form#add_virtual p { text-align: left; } form#add_virtual p { text-align: left; }
form#categoryOrdering p { form#categoryOrdering p {
text-align: left; text-align: left;
@ -181,8 +184,9 @@ form#cat_modify table { width: auto; }
* Filter forms are displayed label by label with the input (or select...) * Filter forms are displayed label by label with the input (or select...)
* below the label * below the label
*/ */
FORM.filter FIELDSET { FIELDSET {
padding: 10px; padding: 1em;
margin: 1em;
} }
FORM.filter FIELDSET LABEL { FORM.filter FIELDSET LABEL {
@ -193,19 +197,51 @@ FORM.filter FIELDSET LABEL {
padding: 0; padding: 0;
} }
FORM.filter>FIELDSET>LABEL>INPUT, FORM.filter>FIELDSET>LABEL>SELECT { FORM.filter FIELDSET LABEL INPUT, FORM.filter FIELDSET LABEL SELECT {
display: block; display: block;
margin: 0.5em 0;
} }
FORM.filter FIELDSET P, FORM.filter FIELDSET>INPUT { FORM.filter FIELDSET P, FORM.filter FIELDSET INPUT {
clear: left; clear: left;
display: block; display: block;
} }
FORM.filter FIELDSET { FORM.filter INPUT[type="submit"] {
border: 1px solid gray; margin-top: 1em;
} }
FORM.filter FIELDSET + INPUT { FIELDSET.elementEdit A {
margin-top: 10px; display: block;
float: right;
} }
TABLE.doubleSelect {
text-align: center;
margin: 0 auto;
}
TABLE.doubleSelect TD {
padding: 0 5px;
}
FORM#categoryPermissions LI {
display:inline;
white-space: nowrap;
}
#theHeader {
}
#theHeader H1 {
margin-bottom: 0.5em;
}
#theHeader P {
margin-top: 0;
padding: 0;
}
BODY#theAdminPage #theHeader P {
display: none;
}

View file

@ -21,5 +21,10 @@
<script type="text/javascript" src="include/scripts.js"></script> <script type="text/javascript" src="include/scripts.js"></script>
</head> </head>
<body> <body id="{BODY_ID}">
<div id="the_page"> <div id="the_page">
<div id="theHeader">
<h1>{GALLERY_TITLE}</h1>
<p>{GALLERY_DESCRIPTION}</p>
</div>

View file

@ -1,4 +1,14 @@
<h2>{L_TITLE}</h2> <!-- $Id$ -->
<div id="content">
<div class="titrePage">
<ul class="categoryActions">
<li><a href="{U_REGISTER}" title="{lang:Create a new account}"><img src="./template/cclear/theme/register.png" alt="{lang:register"/></a></li>
<li><a href="{U_HOME}" title="{lang:Go through the gallery as a visitor}"><img src="./template/cclear/theme/home.png" alt="{lang:home}"/></a></li>
</ul>
<h2>{lang:Identification}</h2>
</div>
<div class="formbox"> <div class="formbox">
<form action="{F_LOGIN_ACTION}" method="post"> <form action="{F_LOGIN_ACTION}" method="post">
<!-- BEGIN errors --> <!-- BEGIN errors -->
@ -20,11 +30,9 @@
<dd><input type="checkbox" name="remember_me" value="1" /></dd> <dd><input type="checkbox" name="remember_me" value="1" /></dd>
<!-- END remember_me --> <!-- END remember_me -->
</dl> </dl>
<p><input type="submit" name="login" value="{L_LOGIN}" class="bouton" /></p> <p><input type="submit" name="login" value="{L_LOGIN}"></p>
</form> </form>
<!-- BEGIN free_access --> <a href="{U_REGISTER}"><img src="template/cclear/theme/register.png" alt=""> {L_REGISTER}</a>
<p><a href="./category.php">[ {L_GUEST} ]</a></p>
<a href="register.php"><img src="template/cclear/theme/register.gif" style="border:0;" alt=""/>&nbsp;{L_REGISTER}</a>&nbsp;&nbsp;-&nbsp;&nbsp;
<!-- END free_access -->
<a href="mailto:{MAIL_ADMIN}?subject=[PhpWebGallery] {L_FORGET}"><img src="template/cclear/theme/lost.gif" style="border:0;" alt=""/>&nbsp;{L_FORGET}</a>
</div> <!--formbox--> </div> <!--formbox-->
</div> <!-- content -->

View file

@ -1,4 +1,13 @@
{lang:The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.} <div id="content">
<p><a href="{FEED_URL}">{lang:RSS feed}</a></p> <div class="titrePage">
<p><a href="{HOME_URL}">{lang:Return to home page}</a></p> <ul class="categoryActions">
<li><a href="{U_HOME}" title="{lang:return to homepage}"><img src="./template/cclear/theme/home.png" alt="{lang:home}"/></a></li>
</ul>
<h2>{lang:Notification}</h2>
</div>
<p>{lang:The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.}</p>
<p><a href="{FEED_URL}">{lang:RSS feed}</a></p>
</div>

View file

@ -76,10 +76,11 @@
</dd> </dd>
</dl> </dl>
<p> <p class="bottomButtons">
<input type="submit" name="validate" value="{L_SUBMIT}" class="bouton" /> <input type="submit" name="validate" value="{L_SUBMIT}">
<input type="reset" name="reset" value="{L_RESET}" class="bouton" /> <input type="reset" name="reset" value="{L_RESET}">
</p> </p>
</form> </form>
<p><a href="{U_RETURN}" title="{L_RETURN_HINT}">[{L_RETURN}]</a></p> <p><a href="{U_RETURN}" title="{L_RETURN_HINT}">[{L_RETURN}]</a></p>

View file

@ -1,59 +1,42 @@
<h2>{L_TITLE}</h2> <div id="registerPage">
<div id="content">
<div class="titrePage">
<ul class="categoryActions">
<li><a href="{U_HOME}" title="{lang:return to homepage}"><img src="./template/cclear/theme/home.png" alt="{lang:home}"/></a></li>
</ul>
<h2>{lang:Registration}</h2>
</div>
<!-- TO DO --> <!-- TO DO -->
<!-- It's easy, just lok at identification.tpl ;-) --> <!-- It's easy, just lok at identification.tpl ;-) -->
<form method="post" action="{F_ACTION}"> <!-- BEGIN errors -->
<table style="width:60%;" align="center"> <div class="errors">
<!-- BEGIN errors --> <ul>
<tr> <!-- BEGIN error -->
<td colspan="2"> <li>{errors.error.ERROR}</li>
<div class="errors"> <!-- END error -->
<ul> </ul>
<!-- BEGIN error --> </div>
<li>{errors.error.ERROR}</li>
<!-- END error -->
</ul>
</div>
</td>
</tr>
<!-- END errors --> <!-- END errors -->
<tr>
<td width="60%">{L_USERNAME}</td> <form method="post" action="{F_ACTION}" class="filter">
<td width="40%"> <fieldset>
<input type="text" name="login" value="{F_LOGIN}" /> <legend>{lang:Enter your personnal informations}</legend>
</td>
</tr> <label>* {lang:Username}<input type="text" name="login" value="{F_LOGIN}"></label>
<tr> <label>* {lang:Password}<input type="password" name="password"></label>
<td >{L_PASSWORD}</td> <label>* {lang:Confirm Password}<input type="password" name="password_conf"></label>
<td > <label>{lang:Mail address}<input type="text" name="mail_address" value="{F_EMAIL}"></label>
<input type="password" name="password" /> </fieldset>
</td>
</tr> <p class="bottomButtons">
<tr> <input type="submit" name="submit" value="{lang:Register}">
<td >{L_CONFIRM_PASSWORD}</td> </p>
<td >
<input type="password" name="password_conf" />
</td>
</tr>
<tr>
<td >{L_EMAIL}</td>
<td >
<input type="text" name="mail_address" value="{F_EMAIL}" />
</td>
</tr>
<tr>
<td colspan="2">&nbsp;</td>
</tr>
<tr>
<tr>
<td colspan="2" align="center">
<input type="submit" name="submit" value="{L_SUBMIT}" class="bouton" />
</td>
</tr>
<tr>
<td colspan="2" align="center">
<a href="./category.php">[ {L_GUEST} ]</a>
</td>
</tr>
</table>
</form> </form>
</div> <!-- content -->
</div> <!-- registerPage -->

View file

@ -1,4 +1,12 @@
<h2>{L_SEARCH_TITLE}</h2> <div id="content">
<div class="titrePage">
<ul class="categoryActions">
<li><a href="{U_HOME}" title="{lang:return to homepage}"><img src="./template/cclear/theme/home.png" alt="{lang:home}"/></a></li>
</ul>
<h2>{lang:Search}</h2>
</div>
<!-- TO DO --> <!-- TO DO -->
<form method="post" name="post" action="{S_SEARCH_ACTION}"> <form method="post" name="post" action="{S_SEARCH_ACTION}">
<!-- BEGIN errors --> <!-- BEGIN errors -->
@ -11,9 +19,6 @@
</div> </div>
<!-- END errors --> <!-- END errors -->
<table width="100%" align="center" cellpadding="2"> <table width="100%" align="center" cellpadding="2">
<tr class="admin">
<th colspan="4">{L_SEARCH_TITLE}</th>
</tr>
<tr> <tr>
<td width="50%" colspan="2"><b>{L_SEARCH_KEYWORDS} : </b><br /><span class="small">{L_SEARCH_KEYWORDS_HINT}</span></td> <td width="50%" colspan="2"><b>{L_SEARCH_KEYWORDS} : </b><br /><span class="small">{L_SEARCH_KEYWORDS_HINT}</span></td>
<td colspan="2" valign="top"> <td colspan="2" valign="top">
@ -129,4 +134,5 @@
</td> </td>
</table> </table>
</form> </form>
<a href="{U_HOME}" title="{L_RETURN_HINT}">[ {L_RETURN} ]</a>
</div> <!-- content -->

Binary file not shown.