Changeset 45fa64c in github


Ignore:
Timestamp:
Nov 18, 2011 7:51:28 AM (18 months ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
Children:
e37e7dd
Parents:
307e684
Message:
  • Added About tab in Settings
Files:
2 added
6 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    rc1fcd1b r45fa64c  
    22=========================== 
    33 
     4- Added About tab in Settings 
     5- TinyMCE: 
     6  - updated to 3.4.6 
     7  - security issue: removed moxieplayer (embedding flv and mp4 is not supported anymore) 
     8 
     9RELEASE 0.7-beta 
     10---------------- 
    411- Fix handling of HTML form elements in messages (#1485137) 
    512- Fix regression in setting recipient to self when replying to a Sent message (#1487074) 
     
    1825- Fix error on opening searched LDAP contact (#1488144) 
    1926- Fix redundant line break in flowed format (#1488146) 
    20 - TinyMCE: 
    21   - updated to 3.4.6 
    22   - security issue: removed moxieplayer (embedding flv and mp4 is not supported anymore) 
    2327- Fix IDN address validation issue (#1488137) 
    2428- Fix JS error when dst_active checkbox doesn't exist (#1488133) 
  • program/js/app.js

    rfa9edc3 r45fa64c  
    156156 
    157157    // enable general commands 
    158     this.enable_command('logout', 'mail', 'addressbook', 'settings', 'save-pref', 'compose', 'undo', true); 
     158    this.enable_command('logout', 'mail', 'addressbook', 'settings', 'save-pref', 'compose', 'undo', 'about', true); 
    159159 
    160160    if (this.env.permaurl) 
     
    503503      case 'logout': 
    504504        this.switch_task(command); 
     505        break; 
     506 
     507      case 'about': 
     508        location.href = '?_task=settings&_action=about'; 
    505509        break; 
    506510 
  • program/localization/en_US/labels.inc

    r710b1bd r45fa64c  
    344344// settings 
    345345$labels['settingsfor']  = 'Settings for'; 
    346  
     346$labels['about'] = 'About'; 
    347347$labels['preferences']  = 'Preferences'; 
    348348$labels['userpreferences']  = 'User preferences'; 
     
    466466$labels['undo'] = 'Undo'; 
    467467 
     468$labels['plugin'] = 'Plugin'; 
     469$labels['version'] = 'Version'; 
     470$labels['source'] = 'Source'; 
     471$labels['license'] = 'License'; 
     472$labels['webpage'] = 'Webpage'; 
     473 
    468474// units 
    469475$labels['B'] = 'B'; 
  • program/localization/pl_PL/labels.inc

    r710b1bd r45fa64c  
    488488$labels['isdraft'] = 'To jest kopia robocza wiadomości.'; 
    489489$labels['autocompletesingle'] = 'Nie pokazuj alternatywnych adresów przy autouzupełnianiu'; 
     490$labels['plugin'] = 'Wtyczka'; 
     491$labels['version'] = 'Wersja'; 
     492$labels['source'] = 'Źródła'; 
     493$labels['license'] = 'Licencja'; 
     494$labels['webpage'] = 'Strona internetowa'; 
     495$labels['about'] = 'O programie'; 
    490496 
    491497?> 
  • skins/default/includes/settingstabs.html

    rcc97ea0 r45fa64c  
    33<span id="settingstabfolders" class="tablink"><roundcube:button command="folders" type="link" label="folders" title="managefolders" class="tablink" /></span> 
    44<span id="settingstabidentities" class="tablink"><roundcube:button command="identities" type="link" label="identities" title="manageidentities" class="tablink" /></span> 
     5<span id="settingstababout" class="tablink"><roundcube:button command="about" type="link" label="about" title="about" class="tablink" /></span> 
    56<roundcube:container name="tabs" id="tabsbar" /> 
    67<script type="text/javascript"> if (window.rcmail) rcmail.add_onload(rcube_init_settings_tabs); </script> 
  • skins/default/settings.css

    r24f812dc r45fa64c  
    171171  font-family: monospace; 
    172172} 
     173 
     174#license 
     175{ 
     176  margin-left: 20px; 
     177  left: 20px; 
     178  width: 500px; 
     179  height: 250px; 
     180  background: url(images/watermark.gif) no-repeat center; 
     181} 
     182 
     183#license .sysname 
     184{ 
     185  font-size: 18px; 
     186  font-weight: bold; 
     187} 
     188 
     189#license .copyright 
     190{ 
     191  font-weight: bold; 
     192} 
     193 
     194#license .license, 
     195#license .links 
     196{ 
     197  margin-top: 30px; 
     198} 
     199 
     200#pluginlist 
     201{ 
     202  border: 1px solid #999; 
     203  margin-left: 20px; 
     204  top: 300px; 
     205  left: 20px; 
     206  width: 500px; 
     207} 
     208 
     209#pluginlist td.source, 
     210#pluginlist td.license, 
     211#pluginlist td.version 
     212{ 
     213  text-align: center; 
     214} 
     215 
     216div.crop 
     217{ 
     218  overflow: auto; 
     219} 
Note: See TracChangeset for help on using the changeset viewer.