Questions tagged [trac]

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.

Trac allows hyperlinking information between a bug database, revision control and wiki content. It also serves as a web interface to the following revision control systems: Subversion, Git, Mercurial, Bazaar, Perforce and Darcs.

Other features include:

  • Project management (Roadmap, Milestones, etc.)
  • Ticket system (bug tracking, tasks, etc.)
  • Fine-grained permissions (since 0.11)
  • Timeline of all recent activity
  • Wiki (syntax similar to MoinMoin)
  • Customized reporting
  • VCS web interface
  • RSS Feeds
  • Multiple project support (planned for post-1.0 versions)
  • Environment extensibility (via Python plugins)
  • iCalendar export
  • Multiple Repository Support per environment (since 0.12)
  • Interface localizations (since 0.12)

Source: wikipedia

124 questions
3
votes
2 answers

Standalone Trac (tracd) woes

I have installed and configured trac and it runs fine using the standalone tracd command. The problem is this: when I exit the terminal it suddenly terminates. I have tried: CTRL+Z, bg: now tracd runs but does not respond after I exit the terminal.…
noname
  • 115
  • 2
  • 6
3
votes
2 answers

How can I protect some wiki page in TRAC?

I have TRAC instance running and I need to protect few specific pages from some authenticated users, while giving access to those pages to certain other users. * UPDATE * : Authenticated users have wiki_view privileges, but I need to prevent certain…
alexus
  • 12,342
  • 27
  • 115
  • 173
3
votes
0 answers

Trac permission denied for SVN repo

I'm running Apache2,SVN & Trac on OpenSUSE. SVN works like a charm. I've initialized trac environment for one of my SVN repositories for trac to show source code in it's repo browser and I set the repository up in the Trac web admin. I also ran the…
plesatejvlk
  • 131
  • 4
3
votes
1 answer

Running trac on a web-server

I want to install trac on my server. I found TracInstall to intall trac step by step. I stopped at the point Running trac on a Web-Server because I do not really understand what all the paths mean. E.g. Example: Apache and ScriptAlias Assuming the…
DarkLeafyGreen
  • 273
  • 5
  • 7
  • 23
3
votes
3 answers

TracError: Repository not found

I'm getting that error when trying to execute trac-admin /path/to/trac repository resync /path/to/svnroot/repo1 Both paths exist. I'm trying to use Trac 0.12 with several svn repositories. I could resync the first one without problems, but…
Jorge Arévalo
  • 197
  • 1
  • 11
3
votes
2 answers

How do I configure an ldap server on ubuntu 11.04 ? (for use with subversion and trac)

I have an Ubuntu server 11.04 on ec2 (I'm mentioning this, as it appears things have changed in this version from previous ubuntu releases, when it regards LDAP configuration). I want to configure it as a subversion server with trac, for private…
Doron
  • 543
  • 1
  • 6
  • 14
3
votes
2 answers

Composite pages in Trac

Is there a feature (or plugin, or macro) in Trac that allows one to include sections from other wiki pages? For instance, if each of my servers has a wiki page about it, and a section on the DNS info, is it possible to create a page that contains…
pufferfish
  • 2,660
  • 9
  • 37
  • 40
3
votes
4 answers

Probelms Intstalling Trac using apt-get Ubuntu Jaunty

I'm having some issues getting apt to install trac correctly on my Ubuntu Jaunty Box. Using the command 'apt-get install trac' I get the following output: root@myserver:~# apt-get install trac Reading package lists... Done Building dependency tree …
Ben Waine
  • 163
  • 5
3
votes
1 answer

"python_init: Python version mismatch" logged in Apache error.log

Installed the BitNami Trac Stack on a new Windows 2003 R2 Virtual Server to replace an aging Subversion/Trac installation on a rapidly failing physical server. I am adapting the default installation a little to make Subversion available through…
Richard Slater
  • 3,228
  • 2
  • 28
  • 42
2
votes
1 answer

When and why does trac itself change trac.ini?

Are there occasions where trac rewrites / resets trac.ini on its own? During normal operation, I sometimes get the error "The environment needs to be upgraded." However I found that this, apparently, is due to trac resetting trac.ini, with e.g. the…
fbmd
  • 126
  • 7
2
votes
1 answer

WYSIWYG Trac editor with reStructuredText

We're using trac, and using it's inbuilt reStructured Text throughout our wiki, since we process our trac wiki pages with another programme and convert them to another format. RST is a more widely available format. We'd like to have a WYSIWYG editor…
Amandasaurus
  • 30,211
  • 62
  • 184
  • 246
2
votes
1 answer

How to correctly set up Tracd behind Nginx?

Running tracd and accessing its web directly works fine. However, I want it sitting behind nginx, accessible by going to example.com/trac/. To that end, I've made the following change to the nginx configuration: location /trac/ { proxy_pass…
liszt
  • 151
  • 1
  • 7
2
votes
2 answers

Trac and ssh password synchronization

I have a standalone server (Ubuntu 9.04) set up for a project that uses Trac (Apache, mod_python) and subversion. I create local user accounts so project members that are given commit access to the repository use ssh... sudo adduser --ingroup…
Joel
  • 175
  • 1
  • 6
2
votes
0 answers

Is it possible to integrate Trac with VisualSVN Server 3?

In older versions of the VisualSVN server, it was possible to integrate the Trac bugtracking system using a plugin found here: https://www.visualsvn.com/server/trac/ Unfortunately, now this page just says: The Trac plug-in for VisualSVN Server is…
nikie
  • 121
  • 3
2
votes
0 answers

Trac + SVN post commit hook not working

I have a Trac environment with SVN repository linked. I am trying to setup SVN post commit hook to automatically update Trac tickets and add references etc. In /var/lib/svn/repository/hooks/post-commit I have REPOS="$1" REV="$2" /usr/bin/python…
1
2
3
8 9