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
2
votes
1 answer

Linux (ubuntu). SVN + TRAC. Displaying SVN project in TRAC

I have already installed trac + svn (Linux Ubuntu). It is necessary that a TRAC could see a list of files in the SVN repository. In localhost/trac/browser/ I see the error: "Unsupported version control system "svn": libneon-gnutls.so.27: cannot open…
Andrei
  • 1,125
  • 2
  • 15
  • 29
2
votes
2 answers

Trac sqlite date query

I am having a hell of a time generating a report with dates of creation for my tickets. here is my sqlite query( I am directly querying the db) .header on .mode csv .output opentickets.csv SELECT DISTINCT id AS ticket, summary, status, priority,…
user1769538
  • 85
  • 1
  • 2
  • 4
2
votes
2 answers

Deploying Trac 1.0 with Apache - 'chrome' and 'site' folders MIA

I just installed a copy of Trac 1.0 using easy_install-2.6, but am having trouble deciphering the "Deploy Trac" section of the Install documentation. After issuing easy_install-2.6 Trac=1.0, I then created my environment as so: trac-admin…
a coder
  • 7,530
  • 20
  • 84
  • 131
2
votes
1 answer

How could I figure out $ENV of trac?

I install trac by bitnami on win7_64 and setup a project when the dialog box ask me. When I create a new repository, I want to sync with it and I type "trac-admin $ENV repository resync "libs_and_apps" error message "Error: No Trac environment found…
StereoMatching
  • 4,971
  • 6
  • 38
  • 70
2
votes
0 answers

Trac to MediaWiki conversion

I'm trying to convert an xml dump from trac db to mediawiki format. I'm using the following perl script to perform the conversion: #!/usr/bin/perl # trac2mw # Converts a trac wiki to MediaWiki format # Input: # MySQL XML export of the Trac…
Zatla00
  • 419
  • 3
  • 17
2
votes
2 answers

Post Commit Hook with Trac and SVN

So I am having a few problems with settings this up. Let me explain. I have three files in my d:\svn\hooks file (D:\ is not windows drive) post-commit.bat trac-post-commit-hook.cmd trac-post-commit-hook I have setup the post-commit.bat file in…
Andy
2
votes
2 answers

Trac and VisualSVN Walkthrough?

Is there a detailed Trac and VisualSVN Integration Walkthrough? There is a plugin that was released for http://www.visualsvn.com/server/trac/ - but it seems that there are lots of issues. Does anyone know of a walkthrough?
Andy
2
votes
3 answers

Exporting trac tickets to MS Project

I want to share data between Trac and MS Project. To import data to Trac I can use CSV import plugin, but I don't know if there's a way to export data from Trac to Project. Anyone has some ideas?
krojew
  • 1,297
  • 15
  • 38
1
vote
2 answers

mod_python caching of variables

I'm using mod_python to run Trac in Apache. I'm developing a plugin and am not sure how global variables are stored/cached. I am new to python and have googled the subject and found that mod_python caches python modules (I think). However, I would…
Chris B
  • 5,311
  • 11
  • 45
  • 57
1
vote
1 answer

How to connect Trac Version 0.12 to SVN

In Trac 0.12 ,trac-admin no longer asks questions related to repositories. So how can i connect the Trac system to the SVN and make it show the "Browse Source" tab in the GUI? Thanks for any advices, Sven p.s: I used this tutorial for installing…
svendeswan
  • 75
  • 1
  • 9
1
vote
2 answers

TracStatsPlugin there is no code stats

Sorry for my language. I have problem with TracStatsPlugin. I added in trac.ini following lines: [components] tracstats.* = enabled [stats] root = /home/tracDirectory Now I have stats for wiki and tickets but no for code. What can be wrong ? I add…
1
vote
1 answer

How to apply new naming schema on existing Trac usernames?

My company's user naming schema changed and we like to apply the new naming schema on our existing Trac instance. We already added the new users, so new tickets and changes will use the new names. What's left to do is to migrate the user names for…
roskakori
  • 3,139
  • 1
  • 30
  • 29
1
vote
2 answers

Trac Single Signon not working as mentioned in the cookbook

I am using Trac 0.12.3 in a multi project setup with subversion and am using AccountManagerPlugin from the trunk. The default index page enlists all the project directories and clicking on any of them takes me to the trac page for that project. When…
gentrobot
  • 673
  • 6
  • 25
1
vote
2 answers

Migrating from Trac to Redmine on another computer

Is it possible to migrate a Trac database to Redmine if the two systems are in different machines any other way than by copying Trac to the other machine? Migration within the same box is easy: http://www.redmine.org/wiki/redmine/RedmineMigrate, but…
Makis
  • 12,468
  • 10
  • 62
  • 71
1
vote
3 answers

svn merge doesn't merge

I'm trying to merge some hotfixes from trunk onto a branch. When I compare trunk/foo.py and branches/feature/foo.py, I see differences. Yet, when I run svn merge https:///trunk/foo.py foo.py, no changes get merged. Retrying with the…
quanticle
  • 4,872
  • 6
  • 32
  • 42