Author Topic: New File Added: MVISION v2.2 - Horizontal / Vertical Layout  (Read 63046 times)

Offline rewen125

  • Newbie
  • *
  • Posts: 1
New File Added: MVISION v2.2 - Horizontal / Vertical Layout
« Reply #15 on: February 13, 2009, 10:53:51 PM »
To fix the spinning icon that never ends be sure to add the line:

Code: [Select]
$rcmail_config['preview_pane_vertical'] = TRUE;

to the main config file. This wasn't in the INSTALL file included with the download, but IS listed above in an earlier post.

Offline lacri

  • Full Member
  • ***
  • Posts: 179
    • http://www.php-lexikon.de
New File Added: MVISION v2.2 - Horizontal / Vertical Layout
« Reply #16 on: February 23, 2009, 10:09:14 AM »
@youds

with this modification (add >0 to w and h)
Code: [Select]
if(w>0){
width=w.toString().match(/\%$/)?w:w+"px";
}
if(h>0){
height=h.toString().match(/\%$/)?h:h+"px";
}


on the default RC Skin the Window Size Changer in the Mail Screen dont work anymore.

when i set it back to
Code: [Select]
if(w){
width=w.toString().match(/\%$/)?w:w+"px";
}
if(h){
height=h.toString().match(/\%$/)?h:h+"px";
}


the window size changer works fine with RC Default Skin, only the errors on IE will back on your MVision Skin.

Sorry for my bad english

Offline Romulux

  • Jr. Member
  • **
  • Posts: 11
New File Added: MVISION v2.2 - Horizontal / Vertical Layout
« Reply #17 on: March 18, 2009, 06:10:18 PM »
Quote from: walkeral;17035
I've found that this problem only occurs when horizontal mode is set as the default in the Roundcube main.inc.php file. Ensure that this line is present (as per the installation instructions):

Code: [Select]
$rcmail_config['preview_pane_vertical'] = TRUE;

That should get rid of the loading icon. When you log in, click "horizontal" at the bottom to switch modes. This is then stored as a cookie so it will remain the same when you log in subsequently. This brings me on to another bug I've found.

I am currently running Roundcube in a sub-directory underneath a Joomla installation. It works fine until the above cookie is set, then I keep getting error 500 whenever I try and access a Joomla-based page. It appears that the cookie name 'layout' is used by Joomla in some way. This occurred using Firefox 3.1b2 and IE7.

To fix it, I've renamed the cookie to roundcube_layout (see templates/mail.html, lines 96, 119, and 152). It might be worth putting this into the next release.

I've also found a slight layout issue in the folders list (see attached screenshot). A few tweaks to the widths in #folder-manager and the #subscription-table entries in settings.css should fix this.

Otherwise, it looks excellent.



Hi, Renaming the cookie doesn't fix the bug. IE7 is not changing the layout nor loading messages. The skin works fine in Opera 9.64 and FF 3.07, but is useless for IE users.

Any ideas how to make it work in IE? I think it's an important issue, coz' it's not always the case, that users may "choose" their browser (eg. a given IE-browser at the office, and no admin rights).

Offline rolltidega

  • Newbie
  • *
  • Posts: 2
New File Added: MVISION v2.2 - Horizontal / Vertical Layout
« Reply #18 on: March 19, 2009, 11:32:19 AM »
I added this skin/theme and made the appropriate changes to the config file and every time I try to access the roundcube page i am rewarded with a blank page.  If i revert back to the previous settings I can get my login page to come up.  Any ideas?

Offline blair.sawler

  • Jr. Member
  • **
  • Posts: 34
MVISION Mark as read/unread Button
« Reply #19 on: March 21, 2009, 04:24:23 PM »
Quote from: zer0;16915
how come there is no "Mark as read/unread" option in this? can anyone make a patch please?

thanx


You can find the patch for this using this post:

http://www.roundcubeforum.net/theme-releases/3001-mvision-updated-upgraded-v2-4.html#post12468

Offline smika

  • Newbie
  • *
  • Posts: 1
New File Added: MVISION v2.2 - Horizontal / Vertical Layout
« Reply #20 on: March 22, 2009, 05:07:12 PM »
After I solved the ajax loading issue, I can see my message in my inbox. The only problem i have, is that i can't open or read an email. I am using 2.2 of this template (also 2.1 didn;t work) with 0.2.1 of roundcube.

Thanks a lot,

Smika

Edit: I am using firefox!

Offline medamaoyaji

  • Newbie
  • *
  • Posts: 1
New File Added: MVISION v2.2 - Horizontal / Vertical Layout
« Reply #21 on: March 30, 2009, 07:07:19 AM »
Quote from: udi111;16707
..see attached image


I'm having exactly the same problem..

How can we fix that?

Offline tjohnson11

  • Newbie
  • *
  • Posts: 0
New File Added: MVISION v2.2 - Horizontal / Vertical Layout
« Reply #22 on: April 01, 2009, 10:22:30 PM »
This theme has a bunch of hidden links inside the login.html file. If you try and remove them, the page no longer loads correctly.

Seems pretty devious of the code writer to "hide" the links to get more links to their development page. :mad:

Offline torqueo

  • Newbie
  • *
  • Posts: 1
New File Added: MVISION v2.2 - Horizontal / Vertical Layout
« Reply #23 on: April 09, 2009, 11:56:35 PM »
great skin, but unfortunately it seems import contacts is gone with it...

Offline bearnar

  • Newbie
  • *
  • Posts: 2
New File Added: MVISION v2.2 - Horizontal / Vertical Layout
« Reply #24 on: April 29, 2009, 06:37:48 AM »
Hi! Is there any way to fix the bug that some e-mails with long url's or long text, just gets cut of (as if it continues out of the screen), instead of starting on a new line? Incredably annyoing when trying to read something, and then suddenly the sentence gets lost.. Anyone? :)

Offline mweis

  • Newbie
  • *
  • Posts: 1
New File Added: MVISION v2.2 - Horizontal / Vertical Layout
« Reply #25 on: May 06, 2009, 01:48:25 AM »
hy,

i've installed the theme, but i have a problem by expanding my subfolders such aus "Archiv\Bestellungen\ABC". I see Archiv, i see Bestellungen but i cannot expand to ABC...is there any solution for this problem?

Offline zefix

  • Newbie
  • *
  • Posts: 5
New File Added: MVISION v2.2 - Horizontal / Vertical Layout
« Reply #26 on: July 20, 2009, 04:33:11 AM »
Quote from: rewen125;17037
To fix the spinning icon that never ends be sure to add the line:

Code: [Select]
$rcmail_config['preview_pane_vertical'] = TRUE;

to the main config file. This wasn't in the INSTALL file included with the download, but IS listed above in an earlier post.


This dows not work with the 0.3-beta release.

Offline zefix

  • Newbie
  • *
  • Posts: 5
New File Added: MVISION v2.2 - Horizontal / Vertical Layout
« Reply #27 on: July 20, 2009, 05:15:14 AM »
Hi,

after installation ov this skin my attachment preview work, but the window is too small so pictures are in a very small frame.
How could I fix this (see attachment).

Offline mokshkhurana

  • Newbie
  • *
  • Posts: 1
Problem with MVISION v2.2
« Reply #28 on: July 20, 2009, 03:28:17 PM »
I send out messages using dada mail in plain text format and the messages are getting cut off if they are too long in the preview pane. I love the skin but is there a solution to it?

Offline milkfat

  • Newbie
  • *
  • Posts: 1
New File Added: MVISION v2.2 - Horizontal / Vertical Layout
« Reply #29 on: July 31, 2009, 05:55:07 PM »
I was able to get MVISION v2.2 to work with RoundCube 0.3-RC1.  MVISION references the javascript function rcube_get_object_pos() which seems to have been removed from common.js in RC 0.3.

The fix is to insert the code below into ~/mvision2_en/skins/paneswitch.js

Quote
//return the absolute position of an object within the document
function rcube_get_object_pos(obj)
  {
  if(typeof(obj)=='string')
    obj = rcube_find_object(obj);

  if(!obj) return {x:0, y:0};

  var iX = (bw.layers) ? obj.x : obj.offsetLeft;
  var iY = (bw.layers) ? obj.y : obj.offsetTop;

  if(bw.ie || bw.mz)
    {
    var elm = obj.offsetParent;
    while(elm && elm!=null)
      {
      iX += elm.offsetLeft;
      iY += elm.offsetTop;
      elm = elm.offsetParent;
      }
    }

  //if(bw.mac && bw.ie5) iX += document.body.leftMargin;
  //if(bw.mac && bw.ie5) iY += document.body.topMargin;

  return {x:iX, y:iY};
  }
« Last Edit: July 31, 2009, 05:58:19 PM by milkfat »