Wednesday, April 18, 2018

Trac



Trac is a lightweight, open source issue tracking and project management tool that builds on Subversion byadding flexible web-based issue tracking, wiki, and reporting functionalities.
Install trac on Ubuntu:
http://trac.edgewall.org/wiki/0.11/TracOnUbuntu
Install Software Packages
sudo apt-get install apache2 libapache2-mod-python libapache2-svn python-setuptools subversion python-subversion
You may need install python Easy Install first.(http://peak.telecommunity.com/DevCenter/EasyInstall)
python ez_setup.py
sudo easy_install Trac
Setting Up a Trac Project
sudo mkdir -p /var/data/trac
trac-admin /var/data/trac/myproject initenv
sudo chown -R www-data:www-data /var/data/trac
By default, Trac will use an embedded SQLite database, which is sufficient for small projects.
Running Trac on the Standalone Server
tracd --port 8000 /var/data/trac/myproject
Then Your projects will be available on separate URLs: http://localhost:8000/myproject.
or:
python tracd -p 8000 \
--auth project1,/data/svn/svn-digest -auth-file,"Subversion repository" \
--auth project2,/data/svn/svn-digest -auth-file,"Subversion repository" \
/data/trac/project1 /data/trac/project2
Integrate Trac with Apache Server
You can set up authentication to use the same Apache basic or digest authentication that you use for your Subversion installation: simply use the same authentication type (AuthType), realm name (AuthName), and authentication file (AuthUserFile or AuthDigestFile).
LoadModule python_module modules/mod_python.so
<Location /trac>
SetHandler mod_python
PythonInterpreter main_interpreter
PythonHandler trac.web.modpython_frontend
PythonOption TracEnvParentDir /var/data/trac
PythonOption TracUriRoot /trac
PythonOption PYTHON_EGG_CACHE /tmp
</Location>
# use the following for one authorization for all projects
<LocationMatch "/trac/[^/]+/login">
AuthType Basic
AuthName "Myproject Repository"
AuthUserFile /etc/apache2/myproject.passwd
Require valid-user
</LocationMatch>
Restart Apache: sudo apache2 -k restart
Access your project: https://servername/trac/myproject
Administrating the Trac Site
trac-admin /var/data/trac/myproject permission add yuanyun TRAC_ADMIN
Trac Plugins
http://trac.edgewall.org/wiki/TracPlugins
Plugins are packaged as Python eggs. To use egg based plugins in Trac, you need to have setuptools installed.
easy_install http://trac-hacks.org/svn/usermanagerplugin/0.11
If Trac reports permission errors after installing a zipped egg and you would rather not bother providing a egg cache directory writable by the web server, you can get around it by simply unzipping the egg. Just pass --always-unzip to easy_install:
easy_install --always-unzip TracSpamFilter-0.2.1dev_r5943-py2.4.egg
You should end up with a directory having the same name as the zipped egg (complete with .egg extension) and containing its uncompressed contents.
Enabling the plugin
We can use trac web admin or edit trac project configuration file - trac.ini.
[components]
tracspamfilter.* = enabled
Tailoring the Trac Web Site: Using the Wiki Function
Headings
Headings and subheadings can be written using "=" and "==,"
Lists
You can use "*" for unordered lists, as shown here:
* Cats
* Burmese
* Siamese
Preformatted text can be displayed using {{{...}}}:
Trac tickets:
Trac issue tickets can be referenced using either the "ticket" link type (ticket:123) or the # shorthand form (#123).
Source code files:
Trac provides many ways to set up links to your source code. At the simplest level, files in the source code repository can be referred to using the "source:"
Using the Trac Ticket Management System
Creating a New Ticket
Customizing Trac Ticket Fields
Trac lets you customize the ticket screen in via its Admin pages.
Browsing the Source Code Repository
Using RSS and ICalendar

Useful plugins:
http://trac-hacks.org/wiki/UserManagerPlugin
http://trac-hacks.org/wiki/StractisticsPlugin
http://trac-hacks.org/svn/masterticketsplugin/0.11/
http://trac-hacks.org/wiki/TagsPlugin
http://stackoverflow.com/questions/194361/what-are-some-recommended-plugins-for-trac
http://trac-hacks.org/wiki/TicketImportPlugin

Labels

Review (572) System Design (334) System Design - Review (198) Java (189) Coding (75) Interview-System Design (65) Interview (63) Book Notes (59) Coding - Review (59) to-do (45) Linux (43) Knowledge (39) Interview-Java (35) Knowledge - Review (32) Database (31) Design Patterns (31) Big Data (29) Product Architecture (28) MultiThread (27) Soft Skills (27) Concurrency (26) Cracking Code Interview (26) Miscs (25) Distributed (24) OOD Design (24) Google (23) Career (22) Interview - Review (21) Java - Code (21) Operating System (21) Interview Q&A (20) System Design - Practice (20) Tips (19) Algorithm (17) Company - Facebook (17) Security (17) How to Ace Interview (16) Brain Teaser (14) Linux - Shell (14) Redis (14) Testing (14) Tools (14) Code Quality (13) Search (13) Spark (13) Spring (13) Company - LinkedIn (12) How to (12) Interview-Database (12) Interview-Operating System (12) Solr (12) Architecture Principles (11) Resource (10) Amazon (9) Cache (9) Git (9) Interview - MultiThread (9) Scalability (9) Trouble Shooting (9) Web Dev (9) Architecture Model (8) Better Programmer (8) Cassandra (8) Company - Uber (8) Java67 (8) Math (8) OO Design principles (8) SOLID (8) Design (7) Interview Corner (7) JVM (7) Java Basics (7) Kafka (7) Mac (7) Machine Learning (7) NoSQL (7) C++ (6) Chrome (6) File System (6) Highscalability (6) How to Better (6) Network (6) Restful (6) CareerCup (5) Code Review (5) Hash (5) How to Interview (5) JDK Source Code (5) JavaScript (5) Leetcode (5) Must Known (5) Python (5)

Popular Posts