Changes between Version 13 and Version 14 of TeamcityPluginIntegration


Ignore:
Timestamp:
Mar 25, 2016, 12:30:05 PM (8 years ago)
Author:
figaro
Comment:

From http to https

Legend:

Unmodified
Added
Removed
Modified
  • TeamcityPluginIntegration

    v13 v14  
    55== Description
    66
    7 This is an integration plugin for Continuous Integration and Build Server [http://www.jetbrains.com/teamcity/ Teamcity]. Teamcity is a free build and integration server by the !JetBrains company.
     7This is an integration plugin for Continuous Integration and Build Server [http://www.jetbrains.com/teamcity/ Teamcity]. Teamcity is a build and integration server by the !JetBrains company. It is free to use, but proprietary licensed.
    88
    99== Bugs/Feature Requests
     
    2828
    2929 1. Install the `lxml` package. for example: `sudo apt-get install python-lxml` on Ubuntu.
    30  1. Add a special user in you teamcity installation for this Trac plugin.
     30 1. Add a special user in you Teamcity installation for this Trac plugin.
    3131 1. Get latest version from svn:
    3232 {{{#!sh
    33  svn co http://trac-hacks.org/svn/teamcitypluginintegration
     33 svn co https://trac-hacks.org/svn/teamcitypluginintegration
    3434 }}}
    3535 1. Build egg-file and put it to Trac plugins dir:
     
    5252 {{{#!ini
    5353 [teamcity]
    54  base_url = http://<you_ci_server>:<port>  # base url to TC server, WITHOUT trailing slash
     54 base_url = http://<your_ci_server>:<port>  # base url to TC server, WITHOUT trailing slash
    5555 username = trac
    56  password = trac1                          # TC credentials which plugin will use to access TC server
    57  cache_dir = /tmp/teamcity_cache           # Plugin will cache here build logs from teamcity
    58  builds = bt1,bt2                          # a list of buildTypeId from TC to follow
    59  limit = 10080                             # Number of minutes for timeline.
    60                                            # Plugin will add events to timeline for builds which are newer then now()-limit
     56 password = trac1                           # TC credentials which plugin will use to access TC server
     57 cache_dir = /tmp/teamcity_cache            # Plugin will cache here build logs from Teamcity
     58 builds = bt1,bt2                           # A list of buildTypeId from TC to follow
     59 limit = 10080                              # Number of minutes for timeline
     60                                            # Plugin will add events to timeline for builds which are newer then now()-limit
    6161 }}}
    6262 All of described settings can be added to `trac.ini` directly or enabled via the admin interface.
     
    6464== Example
    6565
    66 This plugin provides 'build' events from Teamcity server to Trac timeline and creates control buttons and progressbars for selected teamcity builds.
     66This plugin provides 'build' events from Teamcity server to your Trac timeline and creates control buttons and progress bars for selected Teamcity builds.
    6767
    6868== Recent Changes