Questions tagged [trac]

Trac is an enhanced wiki and issue tracking system for software development projects. Trac uses a minimalistic approach to web-based software project management.

Trac is an open source, web-based project management and bug-tracking tool. The program is inspired by CVSTrac, and was originally named svntrac due to its ability to interface with Subversion. It is developed and maintained by Edgewall Software.

Trac is written in Python. Until mid-2005, it was available under the GNU General Public License; since version 0.9, it has been released under a modified BSD license. Both are free software licenses.

Mission: to help developers write great software while staying out of the way. Trac should impose as little as possible on a team's established development process and policies.

It provides an interface to Subversion (or other version control systems), an integrated Wiki and convenient reporting facilities.

Trac allows wiki markup in issue descriptions and commit messages, creating links and seamless references between bugs, tasks, changesets, files and wiki pages. A timeline shows all current and past project events in order, making the acquisition of an overview of the project and tracking progress very easy. The roadmap shows the road ahead, listing the upcoming milestones.

719 questions
0
votes
1 answer

How to get environment path in Trac

I'm trying to create a plugin to import tasks from a file when a new file been added to a certain folder. After parsing the file I can create a new ticket like this: tkt = Ticket(env) tkt['reporter'] = 'me' tkt['summary'] = 'my new…
konart
  • 1,714
  • 1
  • 12
  • 19
0
votes
1 answer

Basic authentification does not work if tracd running from script

I am trying to setup trac 0.12.5 on debian 7. Trac is running as standalone service, tracd. I've generated .htpasswd file for basic authentification according with wiki instructions. When I run tracd from console, evetything is ok, I can log into…
Reci
  • 85
  • 9
0
votes
1 answer

How do I highlight a certain source line in trac?

Say I've got this source snippet in a trac ticket: var a = 1; var b = 2; alert(b); In order to have it rendered as source code, I put up the needed {{{ ... }}} block around the statement: {{{#!js var a = 1; var b = 2; alert(b); }}} How…
eckes
  • 64,417
  • 29
  • 168
  • 201
0
votes
1 answer

Trac wiki subpage linking

I have Trac wiki page with multiple subpages like (wiki:)Rootpage/More info/Details/Details on details I need to create links on the last subpage on this path. If I put it [[Rootpage/More info/Details/Details on details]] Trac suggests me to…
mjgirl
  • 1,214
  • 7
  • 24
  • 42
0
votes
2 answers

Listing trac wiki pages by username

Recently we have installed Trac as our issue tracker and wiki. In the index page of the wiki you can list documents using "Index by Title" and "Index by date" i want to add another link "Index by username". Any ideas??
0
votes
1 answer

Trac - Git integration

Is it possible to setup trac with git to do the following. 1.) Given a ticket, identify which files were changed. 2.) (The inverse) - given a file, identify for which tickets it was modified. Is there a way to setup this functionality with trac and…
0
votes
2 answers

How to create a Trac report containing all tickets needing an answer?

We are using Trac to handle support for our clients. I wonder if there is a way to create a report to help us identify the tickets unanswered. That is the ones where the last comment is not from the owner. Any idea how to do that ?
Ote
  • 301
  • 1
  • 5
  • 16
0
votes
1 answer

Trac: How to change order of menu items

How do I change a Trac project so the timeline is the first menu entry, and the default page when entering the project? I can alter the order of entries in the project's conf file but I will still end up in the Wiki when entering. I can disable the…
Pekka
  • 442,112
  • 142
  • 972
  • 1,088
0
votes
1 answer

Trac XML-RPC Plugin: the number of tickets

Can I get the number of tickets using the Trac XML-RPC Plugin, without requiring all tickets from the server? The trac API describes parameter "format=count", but it does not work for me ... I'm trying to run the following code: import…
Sank
  • 121
  • 1
  • 4
0
votes
1 answer

Trac tickets have file reference

I am a trac newbie. I would like to make my trac tickets have automatic references to change-sets in my git repository. I.e. if i commit with git commit -m "Refs #1 - some commit" . I would like for the ticket itself to show the changeset that was…
Derek
  • 11,715
  • 32
  • 127
  • 228
0
votes
1 answer

trac: custom ticket state not visible in timeline

I am using AdvancedTicketWorkflowPlugin 0.10dev and I have created my own ticket state (claimed_fixed). Everything seems to work, but changes about claiming fixed are not visible in the timeline. I checked timeline section in trac.ini, but haven't…
gruszczy
  • 40,948
  • 31
  • 128
  • 181
0
votes
1 answer

TestLink and Trac Integration

this is my situation. I have TestLink 1.9.7 installed and working, along with Trac installed and working on the same machine. I'm trying to get the two to integrate, but I'm having some difficulty. I was able to install the XMLRPC plugin (I had an…
Riddari
  • 1,713
  • 3
  • 26
  • 57
0
votes
1 answer

redmine:migrate_from_trac -stack level too deep error

After successful installation of redmine , trying to migrate the datas from trac to redmine . i am getting the following error.... . Any work around to fix this user@user:~/redmine-2.3$ rake redmine:migrate_from_trac RAILS_ENV="production" …
guny
  • 197
  • 4
  • 19
0
votes
2 answers

Replace a trac site with a basic redirect page

We have trac site set up to listen on /tracproj/, this swiftly passes control onto mod_python and does some python magic (I'm a php coder :-p); anyway. I have a project at /tracproj/{projectname} and I'd like to replace all requests to that url with…
Christopher Lightfoot
  • 1,147
  • 1
  • 11
  • 27
0
votes
1 answer

Trac ticket does not get updated via SVN hooks

I have a Trac and SVN setup done on my server. I have integrated SVN-Trac using post commit hook and post-revprop-change hook. itsWhen I perform a commit, I can see the timeline on trac getting updated but the corresponding ticket does not get…
SDS
  • 73
  • 1
  • 6