Changes between Version 23 and Version 24 of TracHoursHowto


Ignore:
Timestamp:
Oct 27, 2015, 9:01:33 AM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • TracHoursHowto

    v23 v24  
    1111[[Image(nav.png, border=1)]]
    1212
    13 [wiki:TracHoursPlugin TracHours] introduces new screens, at `/hours` (the query view) and `/hours/<ticket number>` (the hours view for that ticket). [wiki:TracHoursPlugin TracHours] also modifies the ticket screen to display estimated and total hours (''see below'') and the roadmap view to compute the hours (if the `TracHoursRoadmapFilter` component is enabled):
     13[wiki:TracHoursPlugin TracHours] introduces new screens, at `/hours` (the query view) and `/hours/<ticket number>` (the hours view for that ticket). [wiki:TracHoursPlugin TracHours] also modifies the ticket screen to display estimated and total hours (see below) and the roadmap view to compute the hours (if the `TracHoursRoadmapFilter` component is enabled):
    1414
    1515[[Image(milestone.png, border=1)]]
     
    3030[[Image(ticket_hours.png, border=1)]]
    3131
    32 If you have `TRAC_ADMIN` permission (''as shown''), you can add and edit hours for any user. Otherwise you will only be able to add and edit hours as yourself if you have the `TICKET_ADD_HOURS` permission). If you are not logged in, you can view hours but not add them. You can also edit existing hours from this screen (only your own, unless you're a `TRAC_ADMIN`). If you add hours with a description, the addition will be logged to the ticket comments and appropriate notifications will be sent.
     32If you have `TRAC_ADMIN` permission (as shown), you can add and edit hours for any user. Otherwise you will only be able to add and edit hours as yourself if you have the `TICKET_ADD_HOURS` permission). If you are not logged in, you can view hours but not add them. You can also edit existing hours from this screen (only your own, unless you're a `TRAC_ADMIN`). If you add hours with a description, the addition will be logged to the ticket comments and appropriate notifications will be sent.
    3333
    3434== Viewing Hours for Several Tickets
     
    6060In addition to being able to log hours by comments through the web, `TracHoursByComments` also plays nicely with other methods of annotating tickets:
    6161 * hours may be added via replies to ticket emails using the MailToTracPlugin. Make sure that you have `TracHoursByComment` in your `[mail]` handlers for the link to be properly marked up:
    62 {{{
     62{{{#!ini
    6363[mail]
    6464handlers = RemoveQuotes, TracHoursByComment, ReplyToTicket, EmailToTicket
    6565}}}
    6666 * hours may be added via an svn post-commit hook, at least the one in RepositoryHookSystemPlugin. Make sure you include a ticket reference:
    67 {{{
     67{{{#!sh
    6868svn ci -m 'add footnote, took 2 hours ; refs #6'
    6969}}}
    70 
    71 '''<- TracHoursPlugin wiki page'''