[Trac] permission settings to integrate with mylyn

2007-11-28 Thread aldana
hi, with my provided account login data i can only access to trac from mylyn if anonymous user has permission TRAC_ADMIN. of course this is not a good setting. if removing TRAC_ADMIN from anonymous i get a permission denied from mylyn. what permission-action is neccessary to access to mylyn

[Trac] Re: permission settings to integrate with mylyn

2007-11-28 Thread Thijs Triemstra | Collab
Have you tried XML_RPC? I noticed there's a bug with the xmlrpc plugin that doesn't see TRAC_ADMIN as a valid permission to make xml- rpc calls. Thijs On Nov 28, 2007, at 11:12 AM, aldana wrote: hi, with my provided account login data i can only access to trac from mylyn if anonymous

[Trac] Re: permission settings to integrate with mylyn

2007-11-28 Thread aldana
yes, i am using trac 0.11 and therefore plugin tracxmlrpc 1.0.0 is set. with me it is a bit different, when having set permissions TRAC_ADMIN or XML_RPC to anonymous any other users can login through xml-rpc. when removing them no one can use xml-rpc though other accounts do have respective

[Trac] Mylyn connector and TimingAndEstimation plugin

2007-11-28 Thread Jani Tiainen
I'm using Mylyn Trac connector with TimingAndEstimation plugin. Everything works well, except if I add time from Mylyn, total hours don't change which is very, very inconvenient. I think that it's problem with XML-RPC that don't fire ticket change notification when ticket gets changed...

[Trac] Re: Mylyn connector and TimingAndEstimation plugin

2007-11-28 Thread Alec Thomas
On 11/28/07, Jani Tiainen [EMAIL PROTECTED] wrote: I'm using Mylyn Trac connector with TimingAndEstimation plugin. Everything works well, except if I add time from Mylyn, total hours don't change which is very, very inconvenient. I think that it's problem with XML-RPC that don't fire

[Trac] Re: Owner is logged-in user in TracQuery

2007-11-28 Thread Zach Cox
Here's my query: [[TicketQuery(status=new|assigned|reopenedowner=$USER)]] Nothing is displayed, so I guess it doesn't work. :( On Nov 28, 2007 2:49 AM, Erik Andersson [EMAIL PROTECTED] wrote: Hi Did you try owner=$USER ? (http://trac.edgewall.org/wiki/TracReports) In 0.11 you can

[Trac] Re: Mylyn connector and TimingAndEstimation plugin

2007-11-28 Thread Jani Tiainen
Alec Thomas kirjoitti: On 11/28/07, Jani Tiainen [EMAIL PROTECTED] wrote: I'm using Mylyn Trac connector with TimingAndEstimation plugin. Everything works well, except if I add time from Mylyn, total hours don't change which is very, very inconvenient. I think that it's problem with

[Trac] Re: permission settings to integrate with mylyn

2007-11-28 Thread C. Daniel Chase
aldana wrote: yes, i am using trac 0.11 and therefore plugin tracxmlrpc 1.0.0 is set. I can't recall where I first read it, but I do remember reading somewhere you must use the trunk version of the xmlrpc plugin when using with Trac .11dev. Here's a blog posting describing the same

[Trac] TracInstall : Troubles in admin.py

2007-11-28 Thread dev . fabien . alin
Hi all, I am new on Trac. I've just tried to install it... but i got an error during the compilation : byte-compiling /usr/lib/python2.5/site-packages/trac/scripts/admin.py to admin.pyc File /usr/lib/python2.5/site-packages/trac/scripts/admin.py, line 17 from __future__ import generators

[Trac] Re: TracInstall : Troubles in admin.py

2007-11-28 Thread Emmanuel Blot
Download the latest release (0.10.4) from http://trac.edgewall.org/wiki/TracDownload#LatestStableRelease 0.9.6 is quite old, and I'm sure it has been ever tested with Python 2.5 Cheers, Manu On 11/28/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi all, I am new on Trac. I've just tried

[Trac] Re: A first contact with trac

2007-11-28 Thread joluinfante
Ok, Daniel. Thanks for your answers. I have more questions... * Where I can learn about create components. Can a component be created by a gui interface or, I need update parameters files with vi? * Where I can learn about default workflow? * You say in the new version, the workflow will can be

[Trac] Re: TracInstall : Troubles in admin.py

2007-11-28 Thread Fabien Alin
Yes. That's great. I've just tried the 0.10.4, and it's ok. Thanks a lot. Regards, Fabien On Nov 28, 2007 3:37 PM, Emmanuel Blot [EMAIL PROTECTED] wrote: Download the latest release (0.10.4) from http://trac.edgewall.org/wiki/TracDownload#LatestStableRelease 0.9.6 is quite old, and I'm

[Trac] Specify Date Range for Reports

2007-11-28 Thread guthriepat
Folks, I'm a bit new to the TRACS reporting and my SQL skills are non- existent. However I need to generate reports from tickets we put into TRACS. I want to create a report that will only give me closed tickets for a specified date range (typically, 1 month like you can do in the timeline

[Trac] Re: Specify Date Range for Reports

2007-11-28 Thread Erik Andersson
Hi You can do something like: SELECT t.id,t.summary,t.component,t.milestone FROM ticket AS t,ticket_change AS tc WHERE t.id=tc.ticket AND field='status' AND newvalue='closed' AND strftime('%Y-%m-%d',datetime(tc.time, 'unixepoch'),'localtime') = datetime('$FROM','localtime') AND

[Trac] Re: A first contact with trac

2007-11-28 Thread Erik Andersson
Hi See http://trac.edgewall.org For the creation of components you can use webadmin ( http://trac.edgewall.org/wiki/WebAdmin). And for workflow start by reading this - http://trac.edgewall.org/wiki/TracWorkflow Cheers / Erik On Nov 28, 2007 3:23 PM, joluinfante [EMAIL PROTECTED] wrote: Ok,