RoundCube Webmail Forum  

Go Back   RoundCube Webmail Forum > Third Party Contributions > API Based Plugins

For more information about the ads and why they're here, please see the FAQ

View Poll Results: Do you think right click funtionality is a good idea?
Yes 158 91.33%
No 6 3.47%
Maybe 9 5.20%
Don't Care / Know 0 0%
Voters: 173. You may not vote on this poll

Reply
  #91  
Old 02-09-2010, 08:38 AM
Registered User
 
Join Date: Mar 2008
Posts: 11
Default

Quote:
Originally Posted by skaero View Post
Look at the top of the index.php for the version.
I believe we are speaking about different software, I could not find a index.php file inside contextmenu tree...

Code:
root@server:/roundcube/plugins/contextmenu# find -name index.php
root@server:/roundcube/plugins/contextmenu#
On top of contextmenu.php:

Code:
<?php

/**
 * ContextMenu
 *
 * Plugin to add a context menu to the message list
 *
 * @version 1.2
 * @author Philip Weir
 * @url http://roundcube.net/plugins/contextmenu
 */
class contextmenu extends rcube_plugin
{
__________________
--
Marcio Merlone
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #92  
Old 02-09-2010, 09:05 AM
skaero's Avatar
Super Moderator
 
Join Date: Jun 2006
Location: USA - New Mexico
Posts: 1,378
Send a message via ICQ to skaero Send a message via AIM to skaero Send a message via MSN to skaero Send a message via Yahoo to skaero
Default

The RoundCube version number its in <RC root>/index.php
__________________
SKaero.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #93  
Old 02-09-2010, 09:22 AM
Registered User
 
Join Date: Mar 2008
Posts: 11
Lightbulb

Quote:
Originally Posted by skaero View Post
The RoundCube version number its in <RC root>/index.php
Ah! Original question was, and I tought still was, about contextmenu version. As I said before, I am using latest stable roundcubemail-0.3.1. Sorry.
__________________
--
Marcio Merlone
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #94  
Old 02-09-2010, 11:23 AM
Super Moderator
 
Join Date: May 2007
Posts: 835
Default

ok so we still need to find out what the problem is then since afaik it works fine for other people (and for myself)

When you right click is the RC contextmenu displayed under the browser one or not at all?
Is there anything in your rc error log (rc root/logs/erros)?
__________________
RoundCube Patches & Plugins: Managesieve, SpamAssassin Prefs, and more…
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #95  
Old 02-10-2010, 09:26 AM
Registered User
 
Join Date: Mar 2008
Posts: 11
Thumbs down

Quote:
Originally Posted by JohnDoh View Post
When you right click is the RC contextmenu displayed under the browser one or not at all?
Is there anything in your rc error log (rc root/logs/erros)?
Contextmenu is not displayed at all, no sign of it, no browser's context menu either when plugin is enabled.
I was using syslog to log errors from rc, then changed to

Code:
$rcmail_config['debug_level'] = 4;
# $rcmail_config['log_driver'] = 'syslog';
$rcmail_config['log_driver'] = 'file';
All other config params where left as defaults. Chmodded +w logs dir, and no error log were created. I tried $rcmail_config['debug_level'] = 4; because 1 did not do anything and I gave it a try. So, to answer your question, no, there is nothing on error log.

I have firebug 1.5.0, and nothing goes to console, no network ajax activity, zero.
__________________
--
Marcio Merlone
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #96  
Old 02-11-2010, 07:34 AM
Super Moderator
 
Join Date: May 2007
Posts: 835
Default

could you pm me login details for a test account and i'll see if i can see what wrong.
__________________
RoundCube Patches & Plugins: Managesieve, SpamAssassin Prefs, and more…
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #97  
Old 02-25-2010, 07:52 AM
Registered User
 
Join Date: Jan 2010
Posts: 28
Default

Hi folks!

Thanks for the great work with RC and the lots of plugins. I've discovered some strange behaviour of the contextmenu plugin that I have installed on two different servers, both running RC 0.3.1 and the same versions of contextmenu.

On the first server, the folder list when selecting "move message to" is limited in it's height and you can scroll through the folders. On the other server, the sizing of the folder list fails, it is enlarged as long as the folder list.

The logs do not show up any errors and as said: both versions of the installed roundcube and plugin are identical.

EDIT:

Found the reason - but the solution needs to be implemented in the script: $idx in $nestLevel == 0 never reaches a value greater than 5, so no scroll_up_pas and scroll_down_act classes are being added.

my range of NestLevels and Indices looks like this. when telling the script to echo it right before the end of the fundction _gen_folder_list():

nL: 1, idx: 7
nL: 2, idx: 2
nL: 3, idx: 6
nL: 4, idx: 2
nL: 4, idx: 3
nL: 4, idx: 1
nL: 3, idx: 4
nL: 2, idx: 4
nL: 1, idx: 2
nL: 0, idx: 2

I do not have dozens of folders inside the main inbox, but subscribtions to several other mail boxes.

Regards
Ruediger

Last edited by Granada; 02-25-2010 at 12:17 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #98  
Old 02-26-2010, 07:30 AM
Super Moderator
 
Join Date: May 2007
Posts: 835
Default

fixed in the repo.
__________________
RoundCube Patches & Plugins: Managesieve, SpamAssassin Prefs, and more…
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #99  
Old 02-26-2010, 09:16 AM
Registered User
 
Join Date: Jan 2010
Posts: 28
Default

@JohnDoh:

Thanks for the quick fix! It's the same way that I hacked up the script to make it work here after I found out what went wrong - a simple counter for the total numer of folders to be listed.

Regards
Ruediger
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #100  
Old 03-01-2010, 07:00 PM
Roundcube Newcomer
 
Join Date: Feb 2010
Posts: 7
Default

thx 4 the hack, it works fine now.

greetings
dakky
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


LinkBacks (?)
LinkBack to this Thread: http://www.roundcubeforum.net/7-third-party-contributions/46-api-based-plugins/4331-right-click-functionality.html
Posted By For Type Date
RoundCube Patches & Plugins This thread Refback 06-11-2009 02:27 PM

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 09:16 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0
Copyright © 2006-2008 RoundCube Webmail Community