Roger Oberholtzer | 1 Jul 07:55
Picon

[Trac] Re: Batch Modify plugin


On Tue, 2009-06-30 at 12:21 -0700, jevans wrote:

> Hi Roger,
> Does it show check boxes next to each field and are you able to check
> them?  If so, that should enable the fields you check.

The check boxes work. But I cannot do anything in the fields themselves.
Like enter text in a field, or select a milestone. The only exception is
the Comment field, which acts as expected.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users@...
To unsubscribe from this group, send email to trac-users+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Stephan | 1 Jul 10:28
Picon

[Trac] Re: Trac 0.11 so slow!!!!!


My trac installation was very slow as well...
until I did the mentioned "SetInputFilter None"-trick! :)

I'm running Trac on Windows2000 Server/Apache2/mod_python.

Thanks a lot!

On 19 Jun., 21:01, itbhp <itb...@...> wrote:
> I also found trac very slow and after reading what you have written
> about it  I came up with a solution.
>
>         <Location /tracProj>
>            SetInputFilter None ## This line disable deflate module
> only for this site. <---
>            SetHandler mod_python
>            PythonInterpreter main_interpreter
>            PythonHandler trac.web.modpython_frontend
>            PythonOption TracEnv /var/trac/proj
>         </Location>
>
> Hope it helps.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users@...
To unsubscribe from this group, send email to trac-users+unsubscribe <at> googlegroups.com
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

(Continue reading)

Christian Boos | 1 Jul 10:52
Picon

[Trac] Re: Trac 0.11 so slow!!!!!


Hello,

Stephan wrote:
> My trac installation was very slow as well...
> until I did the mentioned "SetInputFilter None"-trick! :)
>
> I'm running Trac on Windows2000 Server/Apache2/mod_python.
>
> Thanks a lot!
>   

Could people having that issue also try the newly released Trac 
0.11.5rc1 *without* that trick, to see if the underlying problem was fixed?

(see TracDownload#LatestReleaseCandidate)

-- Christian

> On 19 Jun., 21:01, itbhp <itb...@...> wrote:
>   
>> I also found trac very slow and after reading what you have written
>> about it  I came up with a solution.
>>
>>         <Location /tracProj>
>>            SetInputFilter None ## This line disable deflate module
>> only for this site. <---
>>            SetHandler mod_python
>>            PythonInterpreter main_interpreter
>>            PythonHandler trac.web.modpython_frontend
(Continue reading)

Nigel Garbett | 1 Jul 08:39

[Trac] Fault trend graph generation

I'm looking to generate graphs of the number of faults in various states
over time so that fault trends can be analysed. I have looked at the
list of plugins but cannot see one that seems to provide this kind of
functionality. Can anyone suggest a suitable pluggin or a good way of
producing these kind of trend graphs.  - Something that allows the
priorities and ticket states to be plotted within each trace in a
similar way to commercial packages such as Clear Quest would be ideal.

Thanks,

Nigel. 

Nigel Garbett

Principal Software Engineer

Ultra Electronics

Communications & Integrated Systems

Bridgeport Road

Greenford 

Middlesex

UB6 8UA

Tel +44(0) 20 8 813 4655

(Continue reading)

mgl | 1 Jul 09:02
Picon

[Trac] Reduce RAM usage


Hello,

I'm just setting up a new server running svn/trac for a project I'm
working on.  The VPS we're running on has debian 5 installed, and has
minimal RAM allocated to it.  When apache is started, our ram usage
sits at about 50mb...once someone hits the trac page, though, it jumps
to about 130mb or so, and stays there even after any activity on the
web page stops.  Is this likely to be specific to Trac, or would it be
a general apache configuration issue?

If anyone has suggestions on how I can minimize the memory usage, that
would be great.

Mike

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users@...
To unsubscribe from this group, send email to trac-users+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

ReneMT | 1 Jul 10:37

[Trac] Grant right to create new versions to non-TRAC_ADMIN users


Hi all!

I want to use the "version" property of a ticket to specify, in which
version it has been implemented. This is no problem in general as I
can modify the property for a ticket when releasing a new product
version.

But for our internal workflow I want to grant certain users the right
to create new versions in trac. Basically this means the "version
admin" panel has to be accessible for this users. But I don't want to
give TRAC_ADMIN rights to them.

Is there any (user friendly) way to do this - or will be there in the
future?

Regards,
ReneMT

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users@...
To unsubscribe from this group, send email to trac-users+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

osimons | 1 Jul 13:39
Picon

[Trac] (XML)RPC plugin news


Hi all,

I've recently started maintaining the http://trac-hacks.org/wiki/XmlRpcPlugin,
and have spent some time fixing and closing issues to make it work
well with newer Trac 0.11. There are not yet any formal releases, and
I suspect there are some more things I want to improve before I get to
that point. Install the latest from trunk if you are using Trac 0.11.

Among the hightlights:
* Full support for ticket workflows (in getActions() and update())
* Trac 0.11 fine-grained permissions support across all methods
* Support for JSON-RPC as alternative protocol (use py26 or
simplejson)
* Type and data normalization for all input and output
* Functional unit tests to help maintain quality as things change

The /xmlrpc (or /jsonrpc) urls now provides slightly more
documentation about using the protocols, and also notes about
improvements + deprecated usage. I'll likely also add a formal
changelog to the viewed documentation as well, to make it easier to
keep updated on API changes over time.

Check the log messages for all the gory details:

http://trac-hacks.org/log/xmlrpcplugin

The current status as reflected by open tickets:

http://trac-hacks.org/query?status=!closed&component=XmlRpcPlugin
(Continue reading)

jevans | 1 Jul 15:42
Picon

[Trac] Re: Grant right to create new versions to non-TRAC_ADMIN users


On Jul 1, 3:37 am, ReneMT <rene.martin.tud...@...> wrote:
> Hi all!
>
> I want to use the "version" property of a ticket to specify, in which
> version it has been implemented. This is no problem in general as I
> can modify the property for a ticket when releasing a new product
> version.
>
> But for our internal workflow I want to grant certain users the right
> to create new versions in trac. Basically this means the "version
> admin" panel has to be accessible for this users. But I don't want to
> give TRAC_ADMIN rights to them.
>
> Is there any (user friendly) way to do this - or will be there in the
> future?
>
> Regards,
> ReneMT

Would TICKET_ADMIN work for you or is that still too much?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users@...
To unsubscribe from this group, send email to trac-users+unsubscribe <at> googlegroups.com
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

jevans | 1 Jul 15:53
Picon

[Trac] Re: Batch Modify plugin


On Jul 1, 12:55 am, Roger Oberholtzer <roger.oberholt...@...>
wrote:
> On Tue, 2009-06-30 at 12:21 -0700, jevans wrote:
> > Hi Roger,
> > Does it show check boxes next to each field and are you able to check
> > them?  If so, that should enable the fields you check.
>
> The check boxes work. But I cannot do anything in the fields themselves.
> Like enter text in a field, or select a milestone. The only exception is
> the Comment field, which acts as expected.

Sorry I don't have further ideas for you.  They work for me.  I get
the same options as when editing an individual ticket (just doesn't/
can't show 'current' values).  I don't know reasons it might not work
for you.  We have Trac 0.11.4 and latest 0.11 Batch Modify plug-in.
- jevans
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users@...
To unsubscribe from this group, send email to trac-users+unsubscribe <at> googlegroups.com
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Roger Oberholtzer | 1 Jul 16:11
Picon

[Trac] Re: Batch Modify plugin


On Wed, 2009-07-01 at 06:53 -0700, jevans wrote:
> 
> On Jul 1, 12:55 am, Roger Oberholtzer <roger.oberholt...@...>
> wrote:
> > On Tue, 2009-06-30 at 12:21 -0700, jevans wrote:
> > > Hi Roger,
> > > Does it show check boxes next to each field and are you able to check
> > > them?  If so, that should enable the fields you check.
> >
> > The check boxes work. But I cannot do anything in the fields themselves.
> > Like enter text in a field, or select a milestone. The only exception is
> > the Comment field, which acts as expected.
> 
> Sorry I don't have further ideas for you.  They work for me.  I get
> the same options as when editing an individual ticket (just doesn't/
> can't show 'current' values).  I don't know reasons it might not work
> for you.  We have Trac 0.11.4 and latest 0.11 Batch Modify plug-in.

I understand about not being able to show current values, as they may be
different for each ticket.

I have trac 0.12multirepos from 2009-05-19, as well as the current
plug-in. 

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users@...
To unsubscribe from this group, send email to trac-users+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
(Continue reading)


Gmane