Changeset 655

Show
Ignore:
Timestamp:
06/17/07 00:02:41 (1 year ago)
Author:
raphael
Message:

Fixed #197: Link to user's domain
Replaced some icons with new ones
gui/client/add_subdomain.php displays subdomain has no correct mount point when first opening

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/CHANGELOG

    r653 r655  
    1010|               * gui: disable stats-alias in client menu         | 
    1111\_________________________________________________________________/ 
     12 
     132007-06-16 Raphael Geissert 
     14        - GUI: 
     15                * Fixed #197: Link to user's domain 
     16                * Replaced some icons with new ones 
     17                * client/add_subdomain.php displays subdomain has no correct mount point when first opening 
    1218 
    13192007-06-15 Raphael Geissert 
  • trunk/gui/client/add_subdomain.php

    r645 r655  
    170170 
    171171function check_subdomain_data(&$tpl, &$sql, $user_id, $dmn_name) { 
    172         $domain_id = get_user_domain_id($sql, $user_id); 
    173  
    174         if (isset($_POST['uaction']) && $_POST['uaction'] === 'add_subd') { 
    175                 if (empty($_POST['subdomain_name'])) { 
    176                 set_page_message(tr('Please specify subdomain name!')); 
    177                 return; 
    178                 } 
    179  
    180             $sub_name = strtolower($_POST['subdomain_name']); 
    181                 $sub_name = get_punny($sub_name); 
    182  
    183             if (isset($_POST['subdomain_mnt_pt']) && $_POST['subdomain_mnt_pt'] !== '') { 
    184                 $sub_mnt_pt = strtolower($_POST['subdomain_mnt_pt']); 
    185                         $sub_mnt_pt = decode_idna($sub_mnt_pt); 
    186             } 
    187             else 
    188                 $sub_mnt_pt = "/"; 
    189  
    190             if (subdmn_exists($sql, $user_id, $domain_id, $sub_name)) { 
    191                 set_page_message(tr('Subdomain already exists!')); 
    192             } else if (@chk_subdname($sub_name.".".$dmn_name) > 0) { 
    193                 set_page_message(tr('Wrong subdomain syntax!')); 
    194             } else if (subdmn_mnt_pt_exists($sql, $user_id, $domain_id, $sub_name, $sub_mnt_pt)) { 
    195                 set_page_message(tr('Subdomain mount point already exists!')); 
    196             } else if (@chk_mountp($sub_mnt_pt) > 0){ 
    197                 set_page_message(tr('Incorrect mount point syntax')); 
    198                 } else { 
    199                 subdomain_schedule($sql, $user_id, $domain_id, $sub_name, $sub_mnt_pt); 
    200                 set_page_message(tr('Subdomain scheduled for addition!')); 
    201                 header('Location:manage_domains.php'); 
    202                 exit(0); 
    203                 } 
    204         } 
    205         else { 
    206         set_page_message(tr('Subdomain has not correct mount point')); 
     172    $domain_id = get_user_domain_id($sql, $user_id); 
     173 
     174    if (isset($_POST['uaction']) && $_POST['uaction'] === 'add_subd') { 
     175        if (empty($_POST['subdomain_name'])) { 
     176            set_page_message(tr('Please specify subdomain name!')); 
     177            return; 
     178        } 
     179 
     180        $sub_name = strtolower($_POST['subdomain_name']); 
     181        $sub_name = get_punny($sub_name); 
     182 
     183        if (isset($_POST['subdomain_mnt_pt']) && $_POST['subdomain_mnt_pt'] !== '') { 
     184            $sub_mnt_pt = strtolower($_POST['subdomain_mnt_pt']); 
     185            $sub_mnt_pt = decode_idna($sub_mnt_pt); 
     186        } else { 
     187            $sub_mnt_pt = "/"; 
     188        } 
     189 
     190        if (subdmn_exists($sql, $user_id, $domain_id, $sub_name)) { 
     191            set_page_message(tr('Subdomain already exists!')); 
     192        } else if (@chk_subdname($sub_name.".".$dmn_name) > 0) { 
     193            set_page_message(tr('Wrong subdomain syntax!')); 
     194        } else if (subdmn_mnt_pt_exists($sql, $user_id, $domain_id, $sub_name, $sub_mnt_pt)) { 
     195            set_page_message(tr('Subdomain mount point already exists!')); 
     196        } else if (@chk_mountp($sub_mnt_pt) > 0){ 
     197            set_page_message(tr('Incorrect mount point syntax')); 
     198        } else { 
     199            subdomain_schedule($sql, $user_id, $domain_id, $sub_name, $sub_mnt_pt); 
     200            set_page_message(tr('Subdomain scheduled for addition!')); 
     201            header('Location:manage_domains.php'); 
     202            exit(0); 
     203        } 
    207204    } 
    208205} 
  • trunk/gui/themes/omega_original/admin/custom_menus.tpl

    r626 r655  
    7171                              {LINK}</td> 
    7272                            <td class="{CONTENT}" align="center">{LEVEL}</td> 
    73                             <td width="100" class="{CONTENT}" align="center"><img src="{THEME_COLOR_PATH}/images/icons/edit.gif" width="16" height="16" border="0" align="absmiddle"> <a href="custom_menus.php?edit_id={BUTONN_ID}"  class="link">{TR_EDIT}</a></td> 
    74                             <td width="100" class="{CONTENT}" align="center"><img src="{THEME_COLOR_PATH}/images/icons/delete.gif" width="16" height="16" border="0" align="absmiddle"> <a href="#"  onClick="action_delete('custom_menus.php?delete_id={BUTONN_ID}')" class="link">{TR_DELETE}</a></td> 
     73                            <td width="100" class="{CONTENT}" align="center"><img src="{THEME_COLOR_PATH}/images/icons/edit.png" width="16" height="16" border="0" align="absmiddle"> <a href="custom_menus.php?edit_id={BUTONN_ID}"  class="link">{TR_EDIT}</a></td> 
     74                            <td width="100" class="{CONTENT}" align="center"><img src="{THEME_COLOR_PATH}/images/icons/delete.png" width="16" height="16" border="0" align="absmiddle"> <a href="#"  onClick="action_delete('custom_menus.php?delete_id={BUTONN_ID}')" class="link">{TR_DELETE}</a></td> 
    7575                          </tr> 
    7676                          <!-- EDP: button_list --> 
  • trunk/gui/themes/omega_original/admin/hp.tpl

    r626 r655  
    6868                                <td class="{CLASS_TYPE_ROW}"><a href="../orderpanel/package_info.php?user_id={ADMIN_ID}&amp;id={HP_ID}" target="_blank" title="{PLAN_SHOW}">{PLAN_NAME}</a></td> 
    6969                            <td align="center" class="{CLASS_TYPE_ROW}">{PURCHASING}</td> 
    70                             <td class="{CLASS_TYPE_ROW}" align="center"><img src="{THEME_COLOR_PATH}/images/icons/edit.gif" width="16" height="16" border="0" align="absmiddle"> <a href="ehp.php?hpid={HP_ID}" class="link">{TR_EDIT}</a></td> 
     70                            <td class="{CLASS_TYPE_ROW}" align="center"><img src="{THEME_COLOR_PATH}/images/icons/edit.png" width="16" height="16" border="0" align="absmiddle"> <a href="ehp.php?hpid={HP_ID}" class="link">{TR_EDIT}</a></td> 
    7171                                <!-- BDP: hp_delete --> 
    72                             <td class="{CLASS_TYPE_ROW}" align="center"><img src="{THEME_COLOR_PATH}/images/icons/delete.gif" width="16" height="16" border="0" align="absmiddle"> <a href="#" onClick="delete_account('dhp.php?hpid={HP_ID}')" class="link">{PLAN_ACTION}</a></td> 
     72                            <td class="{CLASS_TYPE_ROW}" align="center"><img src="{THEME_COLOR_PATH}/images/icons/delete.png" width="16" height="16" border="0" align="absmiddle"> <a href="#" onClick="delete_account('dhp.php?hpid={HP_ID}')" class="link">{PLAN_ACTION}</a></td> 
    7373                                <!-- EDP: hp_delete --> 
    7474                          </tr> 
  • trunk/gui/themes/omega_original/admin/ip_manage.tpl

    r626 r655  
    7171                            <td align="center" nowrap class="{IP_CLASS}">{DOMAIN}</td> 
    7272                            <td class="{IP_CLASS}" nowrap align="center">{ALIAS}</td> 
    73                             <td class="{IP_CLASS}" nowrap align="center"><img src="{THEME_COLOR_PATH}/images/icons/delete.gif" width="16" height="16" border="0" align="absmiddle"> <a href="#" onClick="action_delete('delete_ip.php?delete_id={DELETE_ID}')" class="link">{TR_UNINSTALL}</a></td> 
     73                            <td class="{IP_CLASS}" nowrap align="center"><img src="{THEME_COLOR_PATH}/images/icons/delete.png" width="16" height="16" border="0" align="absmiddle"> <a href="#" onClick="action_delete('delete_ip.php?delete_id={DELETE_ID}')" class="link">{TR_UNINSTALL}</a></td> 
    7474                          </tr> 
    7575                          <!-- EDP: ip_row --> 
  • trunk/gui/themes/omega_original/admin/lostpassword.tpl

    r626 r655  
    1212        <!-- BDP: logged_from --><table width="100%"  border="00" cellspacing="0" cellpadding="0"> 
    1313      <tr> 
    14         <td height="20" nowrap background="{THEME_COLOR_PATH}/images/button.gif">&nbsp;&nbsp;&nbsp;<a href="change_user_interface.php?action=go_back"><img src="{THEME_COLOR_PATH}/images/icons/close_interface.gif" width="18" height="18" border="0" align="absmiddle"></a> <font color="red">{YOU_ARE_LOGGED_AS}</font> </td> 
     14        <td height="20" nowrap background="{THEME_COLOR_PATH}/images/button.gif">&nbsp;&nbsp;&nbsp;<a href="change_user_interface.php?action=go_back"><img src="{THEME_COLOR_PATH}/images/icons/close_interface.png" width="18" height="18" border="0" align="absmiddle"></a> <font color="red">{YOU_ARE_LOGGED_AS}</font> </td> 
    1515      </tr> 
    1616    </table> 
  • trunk/gui/themes/omega_original/admin/manage_sessions.tpl

    r626 r655  
    7373                            <td class="{ADMIN_CLASS}">{ADMIN_USERNAME}</td> 
    7474                            <td class="{ADMIN_CLASS}">{LOGIN_TIME}</td> 
    75                             <td width="150" class="{ADMIN_CLASS}"><img src="{THEME_COLOR_PATH}/images/icons/delete.gif" width="16" height="16" border="0" align="absmiddle" /> <a href="{KILL_LINK}" class="link">{TR_DELETE}</a> </td> 
     75                            <td width="150" class="{ADMIN_CLASS}"><img src="{THEME_COLOR_PATH}/images/icons/delete.png" width="16" height="16" border="0" align="absmiddle" /> <a href="{KILL_LINK}" class="link">{TR_DELETE}</a> </td> 
    7676                          </tr> 
    7777                          <!-- EDP: user_session --> 
  • trunk/gui/themes/omega_original/admin/manage_users.tpl

    r626 r655  
    9797              <!-- EDP: admin_delete_show --> 
    9898              <!-- BDP: admin_delete_link --> 
    99               <img src="{THEME_COLOR_PATH}/images/icons/delete.gif" width="16" height="16" border="0" align="absmiddle" /> <a href="#" onClick="action_delete('{URL_DELETE_ADMIN}', '{ADMIN_USERNAME}')" class="link">{TR_DELETE}</a> 
     99              <img src="{THEME_COLOR_PATH}/images/icons/delete.png" width="16" height="16" border="0" align="absmiddle" /> <a href="#" onClick="action_delete('{URL_DELETE_ADMIN}', '{ADMIN_USERNAME}')" class="link">{TR_DELETE}</a> 
    100100              <!-- EDP: admin_delete_link --> 
    101101            </td> 
     
    147147        <td class="{RSL_CLASS}" align="center">{RESELLER_CREATED_ON}</td> 
    148148        <td class="{RSL_CLASS}" align="center">{RSL_CREATED_BY}</td> 
    149         <td width="150" align="center" class="{RSL_CLASS}"><img src="{THEME_COLOR_PATH}/images/icons/details.gif" width="18" height="18" border="0" align="absmiddle" /> <a href="{URL_CHANGE_INTERFACE}" class="link">{GO_TO_USER_INTERFACE}</a></td> 
    150         <td width="100" align="center" class="{RSL_CLASS}"><img src="{THEME_COLOR_PATH}/images/icons/delete.gif" width="16" height="16" border="0" align="absmiddle" /> <a href="#" onClick="action_delete('{URL_DELETE_RSL}', '{RSL_USERNAME}')" class="link">{TR_DELETE}</a></td> 
     149        <td width="150" align="center" class="{RSL_CLASS}"><img src="{THEME_COLOR_PATH}/images/icons/details.png" width="18" height="18" border="0" align="absmiddle" /> <a href="{URL_CHANGE_INTERFACE}" class="link">{GO_TO_USER_INTERFACE}</a></td> 
     150        <td width="100" align="center" class="{RSL_CLASS}"><img src="{THEME_COLOR_PATH}/images/icons/delete.png" width="16" height="16" border="0" align="absmiddle" /> <a href="#" onClick="action_delete('{URL_DELETE_RSL}', '{RSL_USERNAME}')" class="link">{TR_DELETE}</a></td> 
    151151      </tr> 
    152152      <!-- EDP: rsl_item --> 
     
    199199          </table></td> 
    200200          <td colspan="2" align="right" nowrap="nowrap"><input type="hidden" name="details" value="" /> 
    201                 <img src="{THEME_COLOR_PATH}/images/icons/show_alias.jpg" width="15" height="16" align="absmiddle" /> <a href="#" class="link" onClick="return sbmt(document.forms[0],'{SHOW_DETAILS}');">{TR_VIEW_DETAILS}</a> </td> 
     201                <img src="{THEME_COLOR_PATH}/images/icons/show_alias.png" width="15" height="16" align="absmiddle" /> <a href="#" class="link" onClick="return sbmt(document.forms[0],'{SHOW_DETAILS}');">{TR_VIEW_DETAILS}</a> </td> 
    202202        </tr> 
    203203        <!-- BDP: usr_message --> 
     
    220220          <td width="25" align="center">&nbsp;</td> 
    221221          <td class="{USR_CLASS}" align="center"><a href="#" onClick="action_status('{URL_CHNAGE_STATUS}')" class="link"><img src="{THEME_COLOR_PATH}/images/icons/{STATUS_ICON}" width="18" height="18" border="0" /></a></td> 
    222           <td class="{USR_CLASS}"><a href="{URL_EDIT_USR}" class="link">{USR_USERNAME} </a> </td> 
     222          <td class="{USR_CLASS}"><a href="http://www.{USR_USERNAME}/" target="_blank" class="link"><img src="{THEME_COLOR_PATH}/images/icons/goto.png" width="18" height="18" border="0"/></a><a href="{URL_EDIT_USR}" class="link">{USR_USERNAME} </a> </td> 
    223223          <td class="{USR_CLASS}" align="center">{USER_CREATED_ON}</td> 
    224224          <td class="{USR_CLASS}" align="center">{USR_CREATED_BY}</td> 
    225           <td width="80" align="center" nowrap="nowrap" class="{USR_CLASS}"><img src="{THEME_COLOR_PATH}/images/icons/bullet.gif" width="18" height="18" border="0" align="absmiddle" /> <a href="domain_details.php?domain_id={DOMAIN_ID}" class="link">{TR_DETAILS}</a></td> 
    226           <td width="80" align="center" nowrap="nowrap" class="{USR_CLASS}"><img src="{THEME_COLOR_PATH}/images/icons/details.gif" width="18" height="18" border="0" align="absmiddle" /> <a href="{URL_CHANGE_INTERFACE}" class="link">{GO_TO_USER_INTERFACE}</a></td> 
     225          <td width="80" align="center" nowrap="nowrap" class="{USR_CLASS}"><img src="{THEME_COLOR_PATH}/images/icons/identity.png" width="18" height="18" border="0" align="absmiddle" /> <a href="domain_details.php?domain_id={DOMAIN_ID}" class="link">{TR_DETAILS}</a></td> 
     226          <td width="80" align="center" nowrap="nowrap" class="{USR_CLASS}"><img src="{THEME_COLOR_PATH}/images/icons/details.png" width="18" height="18" border="0" align="absmiddle" /> <a href="{URL_CHANGE_INTERFACE}" class="link">{GO_TO_USER_INTERFACE}</a></td> 
    227227          <td width="80" align="center" nowrap="nowrap" class="{USR_CLASS}"><!-- BDP: usr_delete_show --> 
    228228            {TR_DELETE} 
    229229            <!-- EDP: usr_delete_show --> 
    230230                <!-- BDP: usr_delete_link --> 
    231                 <img src="{THEME_COLOR_PATH}/images/icons/delete.gif" width="16" height="16" border="0" align="absmiddle" /> <a href="#" onClick="action_delete('{URL_DELETE_USR}', '{USR_USERNAME}')" class="link">{TR_DELETE}</a> 
     231                <img src="{THEME_COLOR_PATH}/images/icons/delete.png" width="16" height="16" border="0" align="absmiddle" /> <a href="#" onClick="action_delete('{URL_DELETE_USR}', '{USR_USERNAME}')" class="link">{TR_DELETE}</a> 
    232232                <!-- EDP: usr_delete_link --> 
    233233          </td> 
     
    237237          <td align="center">&nbsp;</td> 
    238238          <td class="content4" align="center">&nbsp;</td> 
    239           <td colspan="7" class="content4">&nbsp;&nbsp;<img src="{THEME_COLOR_PATH}/images/icons/show_alias.jpg" width="15" height="16" align="absmiddle" />&nbsp;{ALIAS_DOMAIN}</td> 
     239          <td colspan="7" class="content4">&nbsp;&nbsp;<img src="{THEME_COLOR_PATH}/images/icons/show_alias.png" width="15" height="16" align="absmiddle" />&nbsp;{ALIAS_DOMAIN}</td> 
    240240        </tr> 
    241241        <!-- EDP: user_details --> 
  • trunk/gui/themes/omega_original/admin/menu_general_information.tpl

    r584 r655  
    5252    </tr> 
    5353    <tr> 
    54       <td class="logoutbutton"><a href="../index.php?logout"><img src="{THEME_COLOR_PATH}/images/icons/logout_interface.gif" border="0" height="18" width="18" /></a><a href="../index.php?logout" class="logout">{TR_MENU_LOGOUT}</a></td> 
     54      <td class="logoutbutton"><a href="../index.php?logout"><img src="{THEME_COLOR_PATH}/images/icons/logout_interface.png" border="0" height="18" width="18" /></a><a href="../index.php?logout" class="logout">{TR_MENU_LOGOUT}</a></td> 
    5555    </tr> 
    5656    <tr> 
  • trunk/gui/themes/omega_original/admin/menu_manage_users.tpl

    r584 r655  
    6464    </tr> 
    6565    <tr> 
    66       <td class="logoutbutton"><a href="../index.php?logout"><img src="{THEME_COLOR_PATH}/images/icons/logout_interface.gif" border="0" height="18" width="18" /></a><a href="../index.php?logout" class="logout">{TR_MENU_LOGOUT}</a></td> 
     66      <td class="logoutbutton"><a href="../index.php?logout"><img src="{THEME_COLOR_PATH}/images/icons/logout_interface.png" border="0" height="18" width="18" /></a><a href="../index.php?logout" class="logout">{TR_MENU_LOGOUT}</a></td> 
    6767    </tr> 
    6868    <tr> 
  • trunk/gui/themes/omega_original/admin/menu_settings.tpl

    r584 r655  
    7676    </tr> 
    7777    <tr> 
    78       <td class="logoutbutton"><a href="../index.php?logout"><img src="{THEME_COLOR_PATH}/images/icons/logout_interface.gif" border="0" height="18" width="18" /></a><a href="../index.php?logout" class="logout">{TR_MENU_LOGOUT}</a></td> 
     78      <td class="logoutbutton"><a href="../index.php?logout"><img src="{THEME_COLOR_PATH}/images/icons/logout_interface.png" border="0" height="18" width="18" /></a><a href="../index.php?logout" class="logout">{TR_MENU_LOGOUT}</a></td> 
    7979    </tr> 
    8080    <tr> 
  • trunk/gui/themes/omega_original/admin/menu_statistics.tpl

    r584 r655  
    3434    </tr> 
    3535    <tr> 
    36       <td class="logoutbutton"><a href="../index.php?logout"><img src="{THEME_COLOR_PATH}/images/icons/logout_interface.gif" border="0" height="18" width="18" /></a><a href="../index.php?logout" class="logout">{TR_MENU_LOGOUT}</a></td> 
     36      <td class="logoutbutton"><a href="../index.php?logout"><img src="{THEME_COLOR_PATH}/images/icons/logout_interface.png" border="0" height="18" width="18" /></a><a href="../index.php?logout" class="logout">{TR_MENU_LOGOUT}</a></td> 
    3737    </tr> 
    3838    <tr> 
  • trunk/gui/themes/omega_original/admin/menu_support_system.tpl

    r584 r655  
    3434    </tr> 
    3535    <tr> 
    36       <td class="logoutbutton"><a href="../index.php?logout"><img src="{THEME_COLOR_PATH}/images/icons/logout_interface.gif" border="0" height="18" width="18" /></a><a href="../index.php?logout" class="logout">{TR_MENU_LOGOUT}</a></td> 
     36      <td class="logoutbutton"><a href="../index.php?logout"><img src="{THEME_COLOR_PATH}/images/icons/logout_interface.png" border="0" height="18" width="18" /></a><a href="../index.php?logout" class="logout">{TR_MENU_LOGOUT}</a></td> 
    3737    </tr> 
    3838    <tr> 
  • trunk/gui/themes/omega_original/admin/menu_system_tools.tpl

    r584 r655  
    5252    </tr> 
    5353    <tr> 
    54       <td class="logoutbutton"><a href="../index.php?logout"><img src="{THEME_COLOR_PATH}/images/icons/logout_interface.gif" border="0" height="18" width="18" /></a><a href="../index.php?logout" class="logout">{TR_MENU_LOGOUT}</a></td> 
     54      <td class="logoutbutton"><a href="../index.php?logout"><img src="{THEME_COLOR_PATH}/images/icons/logout_interface.png" border="0" height="18" width="18" /></a><a href="../index.php?logout" class="logout">{TR_MENU_LOGOUT}</a></td> 
    5555    </tr> 
    5656    <tr> 
  • trunk/gui/themes/omega_original/admin/multilanguage.tpl

    r626 r655  
    7070                            <tr> 
    7171                              <td width="25" nowrap="nowrap">&nbsp;</td> 
    72                               <td class="{LANG_CLASS}" nowrap="nowrap"><img src="{THEME_COLOR_PATH}/images/icons/bullet.gif" width="16" height="16" align="left" /> {LANGUAGE}</td> 
     72                              <td class="{LANG_CLASS}" nowrap="nowrap"><img src="{THEME_COLOR_PATH}/images/icons/locale.png" width="16" height="16" align="left" /> {LANGUAGE}</td> 
    7373                              <td class="{LANG_CLASS}" nowrap="nowrap">{MESSAGES}</td> 
    7474                              <td class="{LANG_CLASS}" width="100" nowrap="nowrap" align="center"><!-- BDP: lang_def --> 
     
    7979                <!-- EDP: lang_radio --> 
    8080                              </td> 
    81                               <td class="{LANG_CLASS}" width="100" nowrap="nowrap"><img src="{THEME_COLOR_PATH}/images/icons/details.gif" width="18" height="18" border="0" align="absmiddle" /> <a href="{URL_EXPORT}" class="link" target="_blank">{TR_EXPORT}</a> </td> 
    82                               <td class="{LANG_CLASS}" width="100" nowrap="nowrap"><img src="{THEME_COLOR_PATH}/images/icons/delete.gif" width="16" height="16" border="0" align="absmiddle" /> 
     81                              <td class="{LANG_CLASS}" width="100" nowrap="nowrap"><img src="{THEME_COLOR_PATH}/images/icons/details.png" width="18" height="18" border="0" align="absmiddle" /> <a href="{URL_EXPORT}" class="link" target="_blank">{TR_EXPORT}</a> </td> 
     82                              <td class="{LANG_CLASS}" width="100" nowrap="nowrap"><img src="{THEME_COLOR_PATH}/images/icons/delete.png" width="16" height="16" border="0" align="absmiddle" /> 
    8383                                  <!-- BDP: lang_delete_show --> 
    8484                                {TR_UNINSTALL} 
  • trunk/gui/themes/omega_original/admin/settings_ports.tpl

    r626 r655  
    9797                                </select> 
    9898                              </td> 
    99                               <td class="{CLASS}" width="100" nowrap="nowrap"><img src="{THEME_COLOR_PATH}/images/icons/delete.gif" width="16" height="16" border="0" align="absmiddle"> 
     99                              <td class="{CLASS}" width="100" nowrap="nowrap"><img src="{THEME_COLOR_PATH}/images/icons/delete.png" width="16" height="16" border="0" align="absmiddle"> 
    100100                                  <!-- BDP: port_delete_show --> 
    101101                                {TR_DELETE} 
  • trunk/gui/themes/omega_original/admin/ss_closed.tpl

    r626 r655  
    7272          <tr> 
    7373            <td width="25" nowrap="nowrap" class="{CONTENT}"><b>{NEW}</b></td> 
    74             <td class="{CONTENT}" nowrap="nowrap"><img src="{THEME_COLOR_PATH}/images/icons/document.gif" width="12" height="15" align="left" /> 
     74            <td class="{CONTENT}" nowrap="nowrap"><img src="{THEME_COLOR_PATH}/images/icons/document.png" width="12" height="15" align="left" /> 
    7575                    <script language="JavaScript" type="text/javascript"> 
    7676                                                        document.write('<a href="view_ticket.php?ticket_id={ID}&screenwidth='+screen.width+'" class="link">'); 
     
    7979            <td class="{CONTENT}" nowrap="nowrap" align="center">{URGENCY}</td> 
    8080            <td class="{CONTENT}" nowrap="nowrap" align="center">{LAST_DATE}</td> 
    81             <td class="{CONTENT}" nowrap="nowrap" align="center"><img src="{THEME_COLOR_PATH}/images/icons/delete.gif" width="16" height="16" border="0" align="absmiddle" /> <a href="#" onClick="action_delete('delete_ticket.php?ticket_id={ID}')" class="link">{TR_DELETE}</a></td> 
     81            <td class="{CONTENT}" nowrap="nowrap" align="center"><img src="{THEME_COLOR_PATH}/images/icons/delete.png" width="16" height="16" border="0" align="absmiddle" /> <a href="#" onClick="action_delete('delete_ticket.php?ticket_id={ID}')" class="link">{TR_DELETE}</a></td> 
    8282          </tr> 
    8383          <!-- EDP: tickets_item --> 
  • trunk/gui/themes/omega_original/admin/support_system.tpl

    r626 r655  
    7474            <td width="25" nowrap="nowrap" class="{CONTENT}"><b>{NEW}</b></td> 
    7575            <td class="{CONTENT}" nowrap="nowrap" align="left">{FROM}</td> 
    76             <td class="{CONTENT}" nowrap="nowrap"><img src="{THEME_COLOR_PATH}/images/icons/document.gif" width="12" height="15" align="left" /> 
     76            <td class="{CONTENT}" nowrap="nowrap"><img src="{THEME_COLOR_PATH}/images/icons/document.png" width="12" height="15" align="left" /> 
    7777                    <script language="JavaScript" type="text/javascript"> 
    7878                                                        document.write('<a href="view_ticket.php?ticket_id={ID}&screenwidth='+screen.width+'" class="link">'); 
     
    8181            <td class="{CONTENT}" nowrap="nowrap" align="center">{URGENCY}</td> 
    8282            <td class="{CONTENT}" nowrap="nowrap" align="center">{LAST_DATE}</td> 
    83             <td class="{CONTENT}" nowrap="nowrap" align="center"><img src="{THEME_COLOR_PATH}/images/icons/delete.gif" width="16" height="16" border="0" align="absmiddle" /> <a href="#" onClick="action_delete('delete_ticket.php?ticket_id={ID}')" class="link">{TR_DELETE}</a></td> 
     83            <td class="{CONTENT}" nowrap="nowrap" align="center"><img src="{THEME_COLOR_PATH}/images/icons/delete.png" width="16" height="16" border="0" align="absmiddle" /> <a href="#" onClick="action_delete('delete_ticket.php?ticket_id={ID}')" class="link">{TR_DELETE}</a></td> 
    8484          </tr> 
    8585          <!-- EDP: tickets_item --> 
  • trunk/gui/themes/omega_original/client/add_alias.tpl

    r626 r655  
    4545        var dname  = document.forms[0].elements['ndomain_name'].value; 
    4646        dname = dname.toLowerCase(); 
    47         dname = dname.replace(/�i, "ae"); 
    48         dname = dname.replace(/�"ue"); 
    49         dname = dname.replace(/�, "oe"); 
    50         dname = dname.replace(/�gi, "ss"); 
     47        dname = dname.replace(/�/gi, "ae"); 
     48        dname = dname.replace(/�/gi, "ue"); 
     49        dname = dname.replace(/�/gi, "oe"); 
     50        dname = dname.replace(/�/gi, "ss"); 
    5151        document.forms[0].elements['ndomain_mpoint'].value = "/" + dname.replace('.','_'); 
    5252} 
     
    101101<!-- BDP: logged_from --><table width="100%"  border="0" cellspacing="0" cellpadding="0"> 
    102102      <tr> 
    103         <td height="20" nowrap background="{THEME_COLOR_PATH}/images/button.gif">&nbsp;&nbsp;&nbsp;<a href="change_user_interface.php?action=go_back"><img src="{THEME_COLOR_PATH}/images/icons/close_interface.gif" width="18" height="18" border="0" align="absmiddle"></a> <font color="red">{YOU_ARE_LOGGED_AS}</font> </td> 
     103        <td height="20" nowrap background="{THEME_COLOR_PATH}/images/button.gif">&nbsp;&nbsp;&nbsp;<a href="change_user_interface.php?action=go_back"><img src="{THEME_COLOR_PATH}/images/icons/close_interface.png" width="18" height="18" border="0" align="absmiddle"></a> <font color="red">{YOU_ARE_LOGGED_AS}</font> </td> 
    104104      </tr> 
    105105    </table> 
  • trunk/gui/themes/omega_original/client/add_ftp_acc.tpl

    r626 r655