Home | 簡體中文 | 繁體中文 | 雜文 | 知乎專欄 | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 視頻教程 | 打賞(Donations) | About
知乎專欄多維度架構 微信號 netkiller-ebook | QQ群:128659835 請註明“讀者”

第 166 章 TRAC

目錄

166.1. Ubuntu 安裝
166.1.1. source code
166.1.2. easy_install
166.1.3. Apache httpd
166.2. CentOS 安裝
166.2.1. trac.ini
166.2.2. standalone
166.2.3. Using Authentication
166.2.4. trac-admin
166.2.4.1. Permissions
166.2.4.2. Resync
166.3. Project Environment
166.3.1. Sqlite
166.3.2. MySQL
166.3.3. Plugin
166.3.3.1. AccountManagerPlugin
166.3.3.2. Subtickets
166.4. trac.ini
166.4.1. repository
166.4.2. attachment 附件配置
166.5. trac-admin
166.5.1. adduser script
166.6. FAQ
166.6.1. TracError: Cannot load Python bindings for MySQL
166.7. Apache Bloodhound

http://trac.edgewall.org

166.1. Ubuntu 安裝

166.1.1. source code

過程 166.1. TRAC - source

  1. setup.py

    wget http://peak.telecommunity.com/dist/ez_setup.py
    python ez_setup.py
    					
  2. Trac

    wget http://download.edgewall.org/trac/Trac-1.1.1.tar.gz
    tar zxvf Trac-1.1.1.tar.gz
    cd Trac-1.1.1
    sudo python ./setup.py install
    cd ..
    					

166.1.2. easy_install

過程 166.2. TRAC - easy_install

  1. easy_install

    $ sudo apt-get install python-setuptools
    					
  2. Installing Trac

    sudo easy_install Pygments
    sudo easy_install Genshi
    sudo easy_install Trac
    					

    ClearSilver

    sudo apt-get install python-clearsilver
    					

    python svn

     sudo apt-get install python-svn python-svn-dbg
    					

    create svn repos

    $ svnadmin create /home/netkiller/repos
    					

166.1.3. Apache httpd

			
# cat /etc/httpd/conf.d/trac.conf
<VirtualHost *:80>
  # Change this to the domain which points to your host, i.e. the domain
  # you set as "phabricator.base-uri".
  ServerName trac.repo

  <Location />
    SetHandler mod_python
    PythonInterpreter main_interpreter
    PythonHandler trac.web.modpython_frontend
    PythonOption TracEnv /gitroot/trac/default
    PythonOption TracUriRoot /
  </Location>
# Replace all occurrences of /srv/trac with your trac root below
# and uncomment the respective SetEnv and PythonOption directives.
#  <LocationMatch /cgi-bin/trac\.f?cgi>
#	SetEnv TRAC_ENV /srv/trac
#  </LocationMatch>
#  <IfModule mod_python.c>
#    <Location /cgi-bin/trac.cgi>
#      SetHandler mod_python
#      PythonHandler trac.web.modpython_frontend
#      #PythonOption TracEnv /srv/trac
#    </Location>
#  </IfModule>
</VirtualHost>