Changes between Version 1 and Version 2 of BambooTracPlugin


Ignore:
Timestamp:
May 22, 2009, 2:20:29 AM (15 years ago)
Author:
Geoff Jacobs
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BambooTracPlugin

    v1 v2  
    66
    77This plugin works very similar to the HudsonTracPlugin (and was almost completely based on it), LuntbuildTracIntegration plugin and the Trac Continuum plugin. The build results are obtained from one of the RSS feeds Bamboo provides.
     8
     9== Dependencies ==
     10
     11This plugin requires that the [http://www.feedparser.org/ python-feedparser]
     12library is installed on your system.
     13
     14== Installation ==
     15
     16{{{
     17easy_install http://trac-hacks.org/svn/bambootracplugin/0.11/
     18}}}
     19
     20Enable the plugin in trac.ini.
     21
     22{{{
     23[components]
     24bambootrac.bambootracplugin.* = enabled
     25}}}
     26
     27== Configuration ==
     28
     29At a minimum, you need the feed_url parameter
     30{{{
     31[bamboo]
     32feed_url= http://localhost/bamboo/rss/createAllBuildsRssFeed.action?feedType=rssAll&os_username=user&os_password=pass
     33}}}
     34
     35If you're using basic authentication on your bamboo installation, you '''should''' be able to use the following configuration
     36{{{
     37[bamboo]
     38feed_url= http://localhost/bamboo/rss/createAllBuildsRssFeed.action?feedType=rssAll&os_authType=basic
     39username = yourusername
     40password = yourpassword
     41}}}
     42
     43''Please note that I haven't tested the Basic authentication, and just used the same code that the HudsonTracPlugin was using''
    844
    945== Bugs/Feature Requests ==
     
    2359You can check out BambooTracPlugin from [http://trac-hacks.org/svn/bambootracplugin here] using Subversion, or [source:bambootracplugin browse the source] with Trac.
    2460
    25 == Example ==
    26 
    27 coming soon...
    28 
    2961== Recent Changes ==
    3062