Roundcube Community Forum

 

New File Added: MVISION v2.1 New Release - Internet Explorer 8 Update

Started by youds, January 23, 2009, 01:13:01 PM

Previous topic - Next topic

youds

Downloads: A new file has been added by  youds:

MVISION v2.1 New Release - Internet Explorer 8 Update

Three Pane Liquid Layout with Horizontal or Vertical support in all A-Grade browsers including Internet Explorer 8
Features

    * Three Pane Liquid Layout
    * Fully supports Horizontal and Vertical layout views
    * Additional configuration for either Horizontal or Vertical layout
    * End user support for dynamically switching between Horizontal and Vertical layouts
    * Friendly looking theme with nice graphics


Supported Browsers

    * Internet Explorer 6 (horizontal / vertical)
    * Internet Explorer 7 (horizontal / vertical)
    * Internet Explorer 8 (horizontal / vertical)
    * Firefox 2 (horizontal / vertical)
    * Firefox 3 (horizontal / vertical)
    * Safari (horizontal / vertical)
    * Opera (horizontal / vertical)

See http://www.roundcubethemes.net for screenshots

Requirements

    * A working installation of RoundCube WebMail
    * You should upgrade to the latest version of RoundCube WebMail due to a security vulnerability found in older versions. Older versions are however supported; the latest version at the time of writing this article is roundcubemail-0.2-stable.tar.gz which is fully supported by this theme.

youds

Installing from command line
cd skins
wget http://www.roundcubethemes.net/downloads/mvision2.1.tar.gz
tar -zxf mvision2.1.tar.gz
vi ../config/main.inc.php
# make configuration file changes as directed below

Installing via FTP
Go to the "skins" directory in the RoundCube base path
Unzip the "mvision2-1.zip" file
Return back to the RoundCube base path
Go to the "config" directory and edit the "main.inc.php" file as directed below

Configuration file changes (main.inc.php)
  1) $rcmail_config['skin'] = 'mvision2_en';
   2) $rcmail_config['list_cols'] = array('subject', 'from', 'date', 'attachment'); // remove "size" and "flag" (flag will still appear however)
   3) $rcmail_config['preview_pane'] = TRUE;
   4) Additional configuration line required; $rcmail_config['preview_pane_vertical'] = TRUE;


For Users with Microsoft Script Debugger
When changing between "Vertical" and "Horizontal" users will see an error message.
To correct this, alter file program/js/common.js to reflect changes below:
if(w>0){
width=w.toString().match(/\%$/)?w:w+"px";
}
if(h>0){
height=h.toString().match(/\%$/)?h:h+"px";
}
The original code would of appeared like:
if(w){
width=w.toString().match(/\%$/)?w:w+"px";
}
if(h){
height=h.toString().match(/\%$/)?h:h+"px";
}
You need to add >0 to the if(w) and if(h) lines

Good luck! :)

bbnet