Changes between Version 22 and Version 23 of HudsonTracPlugin


Ignore:
Timestamp:
Aug 13, 2015, 4:48:52 PM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes, tagged with license

Legend:

Unmodified
Added
Removed
Modified
  • HudsonTracPlugin

    v22 v23  
    11[[PageOutline(2-5,Contents,pullout)]]
    22
    3 = Hudson Trac Integration Plugin (works also for Jenkins)
     3= Hudson and Jenkins integration into Trac
    44
    55== Description
    66
    7 Integrate [http://hudson-ci.org/ Hudson] or the actual fork [http://jenkins-ci.org/ Jenkins] build results into the Trac timeline and (optionally) provide a navbar menu to link to the Hudson instance.
     7This plugin integrates [http://hudson-ci.org/ Hudson] or the actual fork [http://jenkins-ci.org/ Jenkins] build results into the Trac timeline and (optionally) provides a navbar menu to link to the Hudson instance.
    88
    99This plugin works very similar to the LuntbuildTracIntegration plugin and the [http://dev.rectang.com/projects/continutrac Trac Continuum] plugin. The build results are obtained from the Hudson remote API.
     
    1515[[Image(hudson_plugin_screenshot.png, border=1)]]
    1616
    17 == Configuration
     17== Bugs/Feature Requests
    1818
    19 As with all plugins, you must enable it explicitly, either via Trac's Admin panel (Admin -> General -> Plugins) or by directly editing trac.ini:
    20 {{{
    21 #!ini
     19Existing bugs and feature requests for HudsonTracPlugin are [query:status!=closed&component=HudsonTracPlugin&order=priority here].
     20
     21If you have any issues, create a [/newticket?component=HudsonTracPlugin new ticket].
     22
     23[[TicketQuery(component=HudsonTracPlugin,group=type,format=progress)]]
     24
     25== Download
     26
     27Download the [download:hudsontracplugin zipped source].
     28
     29== Source
     30
     31Check out [/svn/hudsontracplugin using Subversion], or [source:hudsontracplugin browse the source] with Trac.
     32
     33== Installation
     34
     35General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page.
     36
     37As with all plugins, you must enable it explicitly, either via Trac's Admin panel (Admin -> General -> Plugins) or by directly editing your `trac.ini` file:
     38{{{#!ini
    2239[components]
    2340hudsontrac.* = enabled
    2441}}}
    2542
    26 There are the following options you can configure in your trac.ini under the section `[hudson]`. If you have the IniAdminPlugin installed they will show up on the Trac Admin page under `hudson`:
     43== Configuration
     44
     45There are the following options you can configure in your `trac.ini` under the section `[hudson]`. If you have the IniAdminPlugin installed they will show up on the Trac Admin page under `hudson`:
    2746 job_url::
    2847   The url of the top-level hudson page if you want to display all
     
    84103   triggered the build if any, else show no author for the build).
    85104
    86 Example trac.ini (not necessary if using the defaults):
    87 {{{
    88 #!ini
     105Example `trac.ini` (not necessary if using the defaults):
     106{{{#!ini
    89107[hudson]
    90108job_url = http://localhost/hudson/job/build_foo/
     
    95113Lastly, make sure you assign users the `BUILD_VIEW` permission in order for them to be able to see the builds in the timeline.
    96114
    97 == Bugs/Feature Requests
    98 
    99 Existing bugs and feature requests for HudsonTracPlugin are [query:status!=closed&component=HudsonTracPlugin&order=priority here].
    100 
    101 If you have any issues, create a [/newticket?component=HudsonTracPlugin&owner=roadrunner new ticket].
    102 
    103 [[TicketQuery(component=HudsonTracPlugin,group=type,format=progress)]]
    104 
    105 == Download and Source ==
    106 
    107 Download the [download:hudsontracplugin zipped source], check out [/svn/hudsontracplugin using Subversion], or [source:hudsontracplugin browse the source] with Trac.
    108 
    109115== Upgrade Notes
    110116
     
    112118
    113119If you are upgrading from version 0.2 of this plugin (pre r6683) then you will need to make the following changes:
    114  * the `feed_url` option has been replaced by the `job_url` option; the latter points to the top-level hudson page or to a job page, not an RSS feed anymore.
    115  * the `display_subprojects` has been renamed `display_modules`
    116  * you must assign users the `BUILD_VIEW` permission in order for them to see the builds
     120 * The `feed_url` option has been replaced by the `job_url` option; the latter points to the top-level hudson page or to a job page, not an RSS feed anymore.
     121 * The `display_subprojects` has been renamed `display_modules`.
     122 * You must assign users the `BUILD_VIEW` permission in order for them to see the builds.
    117123 * The [http://www.feedparser.org/ python-feedparser] library is no longer required.
    118124