Changeset 919


Ignore:
Timestamp:
Oct 31, 2005, 2:47:58 PM (18 years ago)
Author:
plg
Message:
  • modification: use "filter" class for quickconnect box (with some custom modifications)
  • bug fixed: the total number of pictures had disappeared
Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/category.php

    r889 r919  
    154154  'L_COMMENT' => $lang['comments'],
    155155  'L_IDENTIFY' => $lang['identification'],
    156   'L_SUBMIT' => $lang['menu_login'],
    157   'L_USERNAME' => $lang['login'],
    158156  'L_PASSWORD' => $lang['password'],
    159157  'L_HELLO' => $lang['hello'],
    160158  'L_REGISTER' => $lang['ident_register'],
    161   'L_LOGIN' => $lang['menu_login'],
    162159  'L_LOGOUT' => $lang['logout'],
    163160  'L_ADMIN' => $lang['admin'],
  • trunk/doc/ChangeLog

    r918 r919  
     12005-10-31 Pierrick LE GALL
     2
     3        * modification: use "filter" class for quickconnect box (with some
     4        custom modifications)
     5
     6        * bug fixed: the total number of pictures had disappeared
     7
    182005-10-30 volcom
    29       
  • trunk/language/en_UK.iso-8859-1/common.lang.php

    r889 r919  
    4848$lang['Close this window'] = 'Close this window';
    4949$lang['Confirm Password'] = 'Confirm Password';
     50$lang['Connection'] = 'Connection';
    5051$lang['Connection settings'] = 'Connection settings';
    5152$lang['Contact webmaster'] = 'Contact webmaster';
     
    180181$lang['maxwidth'] = 'Maximum width of the pictures';
    181182$lang['maxwidth_error'] = 'Maximum width must be a number superior to 50';
    182 $lang['menu_login'] = 'login';
    183183$lang['month'][10] = 'October';
    184184$lang['month'][11] = 'November';
  • trunk/language/fr_FR.iso-8859-1/common.lang.php

    r889 r919  
    4747$lang['Close this window'] = 'Fermer cette fenêtre';
    4848$lang['Confirm Password'] = 'Confirmer le mot de passe';
     49$lang['Connection'] = 'Connexion';
    4950$lang['Connection settings'] = 'Paramètres de connexion';
    5051$lang['Contact webmaster'] = 'Contacter le webmestre';
     
    183184$lang['maxwidth'] = 'Largeur maximum des images';
    184185$lang['maxwidth_error'] = 'La largeur des images doit être supérieure à 50';
    185 $lang['menu_login'] = 'connexion';
    186186$lang['month'][10] = 'Octobre';
    187187$lang['month'][11] = 'Novembre';
  • trunk/template/yoga/category.tpl

    r892 r919  
    1717  <dd>
    1818    {MENU_CATEGORIES_CONTENT}
     19    <p class="totalImages">{NB_PICTURE} {L_TOTAL}</p>
    1920  </dd>
    2021</dl>
     
    5354      <!-- END register -->
    5455      <!-- BEGIN login -->
    55       <li><a href="{F_IDENTIFY}">{L_LOGIN}</a></li>
     56      <li><a href="{F_IDENTIFY}">{lang:Connection}</a></li>
    5657      <!-- END login -->
    5758      <!-- BEGIN logout -->
     
    6667    </ul>
    6768    <!-- BEGIN quickconnect -->
    68     <hr />
    69     <form method="post" action="{F_IDENTIFY}" id="quickconnect">
    70       <ul>
    71         <li>
    72           <input type="hidden" name="redirect" value="{U_REDIRECT}">
    73           <label for="username">{L_USERNAME}</label>
    74           <input type="text" name="username" id="username" size="15" value="">
    75         </li>
    76         <li>
    77           <label for="password">{L_PASSWORD}</label>
    78           <input type="password" name="password" id="password" size="15">
    79         </li>
     69    <form method="post" action="{F_IDENTIFY}" class="filter" id="quickconnect">
     70      <fieldset>
     71        <legend>{lang:Connection}</legend>
     72   
     73        <label>
     74          {lang:Username}
     75          <input type="text" name="username" size="15" value="">
     76        </label>
     77       
     78        <label>
     79          {L_PASSWORD}
     80          <input type="password" name="password" size="15">
     81        </label>
     82       
    8083        <!-- BEGIN remember_me -->
    81         <li>
    82           <label for="remember_me">{L_REMEMBER_ME}</label>
    83           <input type="checkbox" name="remember_me" id="remember_me" value="1">
    84         </li>
     84        <label>
     85          {L_REMEMBER_ME}
     86          <input type="checkbox" name="remember_me" value="1">
     87        </label>
    8588        <!-- END remember_me -->
    86       </ul>
    87       <p><input type="submit" name="login" value="{L_SUBMIT}"></p>
     89   
     90        <p>
     91         <input type="submit" name="login" value="{lang:submit}">
     92        </p>
     93   
     94      </fieldset>   
    8895    </form>
    8996    <!-- END quickconnect -->
     97
    9098  </dd>
    9199</dl>
  • trunk/template/yoga/default-layout.css

    r912 r919  
    159159}
    160160
    161 FORM.properties UL, FORM#quickconnect UL, FORM#update UL {
     161FORM.properties UL, FORM#update UL {
    162162  list-style-type: none;
    163163  margin: 0;
     
    165165}
    166166
    167 FORM.properties LI, FORM#quickconnect UL, FORM#update UL  {
     167FORM.properties LI, FORM#update UL  {
    168168  margin-bottom: 0.5em;
    169169  padding: 0;
     
    179179}
    180180
    181 FORM#quickconnect LABEL {
    182   float: left;
    183   width: 30%;
    184   text-align: right;
    185   margin: 0.5em 0 0 0;
    186   padding: 0 0.5em 0 0;
    187 }
    188 
    189 FORM#quickconnect INPUT {
    190   margin-top: 0.5em;
     181FORM#quickconnect {
     182  margin: 0;
     183}
     184
     185FORM#quickconnect FIELDSET {
     186  margin: 5px;
     187}
     188
     189FORM#quickconnect P {
     190  text-align: center;
     191}
     192
     193FORM#quickconnect P INPUT {
     194  display: inline;
    191195}
    192196
Note: See TracChangeset for help on using the changeset viewer.