People I have a BUG with a patch that I want to submit and I can't get the ticket in the trac system. Even worst, I had a real hard time finding the link to add a new ticket. Help wasn't to helpfull. :-(
Can someone give me a flow from after I logged in to the part where I have to add the report? Else I'll just send the patch to Thomas or this list.
On Jun 9, 2006, at 5:04 AM, Martin Marques wrote:
People I have a BUG with a patch that I want to submit and I can't
get the ticket in the trac system. Even worst, I had a real hard
time finding the link to add a new ticket. Help wasn't to
helpfull. :-(Can someone give me a flow from after I logged in to the part where
I have to add the report? Else I'll just send the patch to Thomas
or this list.--
Lic. Martín Marqués | SELECT 'mmarques' || Centro de Telemática | '@' || 'unl.edu.ar'; Universidad Nacional | DBA, Programador, del Litoral | Administrador
Could you post it to the list so we can see it? :)
Rich
On Fri, 9 Jun 2006 08:04:22 -0700, richs@whidbey.net wrote:
On Jun 9, 2006, at 5:04 AM, Martin Marques wrote:
People I have a BUG with a patch that I want to submit and I can't
get the ticket in the trac system. Even worst, I had a real hard
time finding the link to add a new ticket. Help wasn't to
helpfull. :-(Can someone give me a flow from after I logged in to the part where
I have to add the report? Else I'll just send the patch to Thomas
or this list.Could you post it to the list so we can see it? :)
OK, below it the problem and the patch.
Now, I kept looking at trac to see how to add the new ticket, and I found (after logging in) http://trac.roundcube.net/trac.cgi/newticket which gave me this error:
Permission Denied
TICKET_CREATE privileges are required to perform this operation
OK, I get it, but why can't I create a new ticket? Or am I totally mistaken and this is not the way to report a bug with trac?
By the way, my username is mmarques
To the BUG:
I've been seeing lots of errors in the log/errors file related to DELETE commands to the DB (PostgreSQL in my case):
[09-Jun-2006 08:27:23 -0300] DB Error: DB Error: unknown error Query: DELETE FROM messages WHERE user_id='1' AND cache_key='pgsql-ayuda.msg' AND idx>=FALSE [nativecode=ERROR: el operador no existe: integer >= boolean HINT: Ning?n operador coincide con el nombre y el tipo de los argumentos. Puede desear agregar conversiones expl?citas de tipos.] in /var/www/html/roundcubemail/program/include/rcube_db.inc on line 478
Tracking down the error I found out that in the DELETE execution, sometimes the last argument wasn't passed right, and I found out that it was related to the clear_message_cache method in rcube_imap.
Here's the patch:
$ svn diff program/include/rcube_imap.inc Index: program/include/rcube_imap.inc =================================================================== --- program/include/rcube_imap.inc (revision 259) +++ program/include/rcube_imap.inc (working copy) @@ -1052,8 +1052,8 @@ $start_index = 100000; foreach ($a_uids as $uid) {
$index = array_search($uid, $a_cache_index);
$start_index = min($index, $start_index);
if(($index = array_search($uid, $a_cache_index)) !== FALSE)
$start_index = min($index, $start_index);
}
// clear cache from the lowest index on
P.D.: Is it posible to add a reply-to the list?
On Fri, 9 Jun 2006 14:00:04 -0300, Martin Marques martin@bugs.unl.edu.ar wrote:
On Fri, 9 Jun 2006 08:04:22 -0700, richs@whidbey.net wrote:
On Jun 9, 2006, at 5:04 AM, Martin Marques wrote:
People I have a BUG with a patch that I want to submit and I can't
get the ticket in the trac system. Even worst, I had a real hard
time finding the link to add a new ticket. Help wasn't to
helpfull. :-(Can someone give me a flow from after I logged in to the part where
I have to add the report? Else I'll just send the patch to Thomas
or this list.Now, I kept looking at trac to see how to add the new ticket, and I found (after logging in) http://trac.roundcube.net/trac.cgi/newticket which gave me this error:
Permission Denied
TICKET_CREATE privileges are required to perform this operation
OK, I get it, but why can't I create a new ticket? Or am I totally mistaken and this is not the way to report a bug with trac?
By the way, my username is mmarques
I'm having a similar issue. I can't add a ticket, comment on existing ones, or mark anything completed.
I've contributed code to the CVS/SVN and I'd like to be able to add comment on and/or mark completed the related tickets -- especially since they've been fixed for months now.
Can I get my permissions tweaked?
Thanks!
-- Andrew Fladmark
On Fri, 9 Jun 2006 10:09:50 -0700, Andrew Fladmark afladmark@orbital-webcom wrote:
I'm having a similar issue. I can't add a ticket, comment on existing ones, or mark anything completed.
I've contributed code to the CVS/SVN and I'd like to be able to add comment on and/or mark completed the related tickets -- especially since they've been fixed for months now.
Can I get my permissions tweaked?
Who's in charge of the managment of the trac/SVN server?
Well, there have been some Spam attacks to the Wiki and some Tickets were closed by anonymous user so we decided to restrict anonymous access. But registered users should be ably to create tickets anyway. I've added the TICKET_CREATE privileges to anonymous again but changing tickets requires an authenticated user.
Regards, Thomas
Martin Marques wrote:
On Fri, 9 Jun 2006 10:09:50 -0700, Andrew Fladmark afladmark@orbital-webcom wrote:
I'm having a similar issue. I can't add a ticket, comment on existing ones, or mark anything completed.
I've contributed code to the CVS/SVN and I'd like to be able to add comment on and/or mark completed the related tickets -- especially since they've been fixed for months now.
Can I get my permissions tweaked?
Who's in charge of the managment of the trac/SVN server?
On Wed, 14 Jun 2006 08:03:43 +0200, Thomas Bruederli roundcube@gmail.com wrote:
Well, there have been some Spam attacks to the Wiki and some Tickets were closed by anonymous user so we decided to restrict anonymous access. But registered users should be ably to create tickets anyway. I've added the TICKET_CREATE privileges to anonymous again but changing tickets requires an authenticated user.
Yes, I got the privileges the day after and put my tickets, with patches. Have you seen them yet (they're small bugs with no more the a 1 or 4 line patch) #1483834, #1483835, #1483836 (this last one has no patch, but I could look at it).