trac

Managing users in a private TRAC

Are there plugins for trac that enable cookie based authentication instead of http authentication, and allow keeping the site private for unknown users? We want to allow customers outside the office to log in, add and look at the tickets on their projects, but not the projects for our other clients. Non techie users are always confused ...

How best to do Agile Development with Trac?

We use Trac as our bug tracking / development / wiki system and I was wondering if anyone has experience and uses some of the Trac Agile/Scrum plugins or functionalities? Anything you'd recommend? Or would it be better to duplicate Trac tickets as dead-tree user story index cards and a hand-drawn burndown chart? Note that I found a s...

Trac and closed source

I'm working on a closed source (for now) project that I'd like to write a wiki and ticket system about. Trac has a well-integrated wiki and bug/issue-tracking system, and has good integration with Subversion. Webfaction offers Subversion, Trac and a whole lot of programmer-friendly options in a web host. So I'm seriously thinking of usin...

How do you handle multiple (overlapping) projects in trac?

We are using trac and are really satisfied with it. However, out of the box, trac is best suited for single-project environments only. I'd be interested to hear about the various approaches people take to make it work with multiple projects nevertheless and their experiences with them. Are there any plugins to recommend? Any patches, twe...

Getting TRAC to run on IIS7

Im trying to get Trac upp and running on my IIS/w2008 server using this FAQ: TracOnWindowsIisAjp Everything upp until "3. Install Tomcat AJP Connector for IIS" works ok. I then define my directories as : C:\wwwroot\trac.evju.biz\AJP\, in the bin catalog I place the dll file, and 3 config files with this content: isapi_redirect-1.2.26.p...

How do you run Trac on a public server?

Since the TFS is too big for our project, we want to use subversion and Trac. The hosting environment is Windows 2003 and IIS. There are some options: Run tracd Run Apache with mod_python Run tracd with AJP Protocol and the isapi-redirector We tend to integrate Trac with IIS and the isapi-redirector. What would you suggest? ...

Is there an equivalent to Trac written in PHP?

Is there an equivalent to Trac written in PHP? I need something that integrates with SVN and is free. It should allow me to browse the SVN source, have some kind of bug tracking and show recent changes in the SVN. A wiki isn't essential. Thanks in advance. ...

Trac documentation?

I'm trying to write my first little plugin for Trac and am kind of lost as to what the API exactly is. For example, exactly which fields are offered for "ticket" objects, among many other things. Does anyone know of a good place to look for Trac API documentation? Can't find anything on the web site but maybe I'm just looking wrong... ...

How do I export Trac tickets to MS Excel including the ticket description, with formatting?

I need to be able to export Trac tickets from a report or custom query to Excel, including the ticket description. The catch is that the description must be formatted as defined by the wiki syntax rather than displaying the raw text. ...

Does trac support the following features?

Does Trac support the following features? Ability to save and track planned tasks for developers by time and days. So I will be able to see when any of the tasks is expected to be done. Ability to see who and how many time in the past worked on some project and task Ability to see free human resources at any time for definite day in th...

Has anyone tried the trac to fogbugz conversion/import tool?

http://our.fogbugz.com/default.asp?W977 I suspect it will be a simple task, but just thought I would ask before I tried it. If you have used it, how did it go? Any caveats or things to help? Can the changes be undone automatically? Anything you would have done differently or configured in trac beforehand to make it go easier? By th...

Improving our dev environment at work

In the near future i will get some 2 weeks for moving and improving our development environment at work. We mainly develop one large PHP/MySQL project with 2-10 developers. At the moment we have one dev server, running apache with mod_userdir, each dev has a /public_html folder in his (samba-accessible) home. For VCS and Project Manage...

Is there a good tool for documenting/monitoring System Tests?

Hi everyone, I'm looking for a tool to design, document, and monitor System Tests for a product. The basics of what I need are: 1) A tool that can represent some kind of Inheritance between tests (i.e., one test which sets up another or somesuch). 2) A tool that will allow me to monitor specific runs of the tests seperately, per versi...

Integrate TortoiseSVN with Redmine

I'm trying to integrate Redmine with TortoiseSVN, but I was not able to do that because TSVN always gives me this error" "There are no issue-tracker providers available." I have made these steps : On my project folder properties I have added "bugtraq:url -> http://myweb/../issues/show/%BUGID%" On Redmine settings I have added t...

Adding Multi-User Approval Process in trac Workflow

I have selected trac for my organization's project management tool; and I'd like to modify the default workflow as follows: A new "enchancement" ticket can be created by all members All new "enchancement" tickets need to be approved by the same 4 people before it can be assigned to a developer for work. "defect" & "task" tickets need n...

anyone know of a plugin (or service) email autoresponder for trac?

Eric Willis' response to this question: http://stackoverflow.com/questions/563041/receive-emails-in-a-net-service-c prompted me to start thinking of creating a general purpose (initially for trac only) autoresponder and issue creator that listens to some "support" email account, creates an issue in your issue tracker and responds to th...

How do I edit project components in TRAC

When creating New Ticket in the TRAC it shows a selectbox for component in the Ticket Properties. I only have two dummy options: component1 and component2. How do I edit this list? How do I add more components to the project? ...

How to create report with tickets closed at certain date in Trac

I wish to create a report that would list all the tickets that were closed in a certain period of time. The pseudo-code would be like SELECT * FROM tickets WHERE closed AND date_closed = 'january 2009' The part I am unable to resolve is date_closed = 'january 2009'. Is there a way to do it in Trac? I am not interested in particular...

When deploying TRAC/Subversion (SVN) on Apache with mod_wsgi, TRAC doesn't open any page at all

I've deployed trac using apache/mod_wsgi (no SSL) (preferable, since the problem I'm facing with CGI is performance), and it works fine WITHOUT SVN integration. But I actually need SVN, so when I configure the repository path (i.e: repository_dir = c:/projects/svn/my_project) I can't even get my project TRAC to even open any of its pages...

How do you add event to Trac event time line

I am writing a plug-in for Trac. I would like to add an event to the time line each time the plug-in receives some data from a Git post-receive hook. Looking at the timeline API, it seems you can only add new source of events. So you are responsible for retrieving and displaying the data. I would prefer saving my event to an existent so...