Changes between Version 51 and Version 52 of TracHoursPlugin


Ignore:
Timestamp:
Aug 15, 2013, 10:33:50 AM (11 years ago)
Author:
Ryan J Ollos
Comment:

Removed invalid browser links.

Legend:

Unmodified
Added
Removed
Modified
  • TracHoursPlugin

    v51 v52  
    4444!TracHours consists of a number of components that work together to help track your time:
    4545
    46 === [source:trachoursplugin/0.11/trachours/hours.py TracHoursPlugin ] ===
     46=== TracHoursPlugin ===
    4747
    4848`TracHoursPlugin` is the core component of !TracHours.
     
    5757This component must be enabled to use any functionality from the TracHoursPlugin
    5858
    59 === [source:trachoursplugin/0.11/trachours/setup.py SetupTracHours ] ===
     59=== SetupTracHours ===
    6060
    6161`SetupTracHours` sets up the database and custom fields for the TracHoursPlugin.  You must enable this component for anything to work, including the `TracHoursPlugin` component.
    6262
    63 === [source:trachoursplugin/0.11/trachours/web_ui.py TracHoursRoadmapFilter] ===
     63=== TracHoursRoadmapFilter ===
    6464
    6565`TracHoursRoadmapFilter` adds hours information for milestones at `/roadmap` and `/milestone/<milestone name>`
    6666
    67 === [source:trachoursplugin/0.11/trachours/web_ui.py TracHoursSidebarProvider] ===
     67=== TracHoursSidebarProvider ===
    6868
    6969The `TracHoursSidebarProvider` component uses the TicketSidebarProviderPlugin (if enabled) to add a form to each ticket for direct addition of hours to the ticket.  Hours will be logged as the authenticated user and comments will not be made.
     
    7171[[Image(hours-ticket-sidebar.png, border=1)]]
    7272
    73 === [source:trachoursplugin/0.11/trachours/ticket.py TracHoursByComment] ===
     73=== TracHoursByComment ===
    7474
    7575The `TracHoursByComment` component enables adding hours by ticket comments.  Comments containing snippets like `5 hours`, `1 hour`, `3.7 hours`, or `0:30 hours` will be added to the total hours for the ticket, if the commenter has the `TICKET_ADD_HOURS` permission.
    7676
    77 === [source:trachoursplugin/0.11/trachours/multiproject.py MultiprojectHours] ===
     77=== MultiprojectHours ===
    7878
    7979The TracHoursPlugin exports RSS from the `/hours` handler.  This has been utilized in consumption to provide hours reports across projects sharing the same parent directory.  If `trachours.multiproject` is enabled, then `/hours/multiproject` will become a handler front-ending hours reports throughout the project and a link to this will appear on the `/hours` page to `/hours/multiproject`.
     
    106106 * Download and install the plugin.
    107107 * Enable the plugin. Use either the webadmin interface or add the following lines to the {{{trac.ini}}} file:
    108 {{{
    109 #!ini
     108{{{#!ini
    110109[components]
    111110trachours.* = enabled