source: timingandestimationplugin/branches/trac0.12-Permissions/timingandestimationplugin/usermanual.py

Last change on this file was 14061, checked in by Russ Tyndall, 9 years ago

branched for trac1.0

File size: 7.7 KB
RevLine 
[1119]1user_manual_title = "Timing and Estimation Plugin User Manual"
[7840]2user_manual_version = 14
[1119]3user_manual_wiki_title = "TimingAndEstimationPluginUserManual"
4user_manual_content = """
[4265]5
[2390]6[[PageOutline]]
7= Timing and Estimation Plugin User Manual =
8[http://trac-hacks.org/wiki/TimingAndEstimationPlugin TimingAndEstimationPlugin on TracHacks] | [http://trac-hacks.org/report/9?COMPONENT=TimingAndEstimationPlugin Open Tickets] | [http://trac-hacks.org/newticket?component=TimingAndEstimationPlugin&owner=bobbysmith007 New Ticket]  |
9[http://trac-hacks.org/browser/timingandestimationplugin/trunk Web Browsable Source Code]
[1119]10
[2390]11== Abstract Design Goal ==
12My goal in writing this plugin was to use as much of the existing structure as possible (therefore not needing to add extra structure that might make maintainability difficult).  The largest downside I have found to this is that there is no way to attach more permissions to anything.
13
[1119]14== Custom Ticket Fields ==
15In adhering to our design goal, rather than creating a new ticket interface, I create some custom fields and a small daemon to watch over them. 
16
17=== Fields: ===
18 * '''Hours to Add''' This field functions as a time tracker.  When you add hours to it , those hours get added to the total hours field.  The person  who made the change is there fore credited with the hours spent on it.
[1670]19 * '''Total Hours''' This field is the total number of hours that have been added to the project. This has been made uneditable by including javascript which replaces the input box with a span containing its value
20   * Reports might not agree with each other if this is manually edited (which is possible if you disable javascript).
[1119]21 * '''Is this billable?''' An extra flag on tickets so that they can be marked as billable / not billable.
[1670]22 * '''Estimated Hours''' a field that contains the estimated amount of work
[1119]23=== Future Fields ===
24 * '''Ticket Rate''' The ability to attach a cost per hour or total amount to an individual ticket
25
[4265]26== Billing / Management Page / Time Reports ==
[1119]27This page provide a small interface for querying the tickets and adding a bill date at the current time. 
28This interface mostly just gives you links that match the interface to open any of the give reports,
29providing it the correct set of input parameters
30
[4265]31The direct url is '/Billing'.
32
33=== No Permissions Branch ===
[2538]34The 'Management' button should be in the main title bar.  It is possible that if you are viewing at a low resolution, it was pushed off the edge of the screen.  Also if you are not logged in with report_view permissions, it will not show that button.
35
[4265]36=== Permissions Branch ===
37The 'Time Reports' button should be in the main title bar.  Whether or not you see this will be based on whether your user has TIME_VIEW permissions.
[2538]38
39
[4265]40
41
[1119]42=== Set Bill Date ===
43
[13377]44This button will add now as a bill date.  This is mostly to make it easier to select the last time you billed.
[1119]45
46== Reports ==
[2349]47=== Report Types ===
[1119]48We provide a few different reports for querying different types of data:
49    * '''Billing Reports''' Currently the billing reports are the only time based reports, and are therefore useful for getting an estimate what tickets had times (and totals), and which developers spent their time where.
50       * Ticket Work Summary
51       * Milestone Work Summary
52       * Developer Work Summary
53    * '''Ticket/Hour Reports''' These reports are useful for reviewing estimates on a large scale or getting an idea of the project at large.  These reports currently ignore the time.
54       * Ticket Hours
55       * Ticket Hours with Description
56       * Ticket Hours Grouped By Component
57       * Ticket Hours Grouped By Component with Description
58       * Ticket Hours Grouped By Milestone
59       * Ticket Hours Grouped By Milestone with Description
[2349]60=== Adding More Reports ===
61To add reports to the Management screen sections, you must run the following sql against your trac database
62Remember to fill in the @reportID of the report you want to insert, and to select the insert statement for the section of your choice.
[2390]63 * {{{INSERT INTO custom_report (id, uuid, maingroup, subgroup, version, ordering) VALUES (@reportID , @uuid, 'Timing and Estimation Plugin', 'Billing Reports', 1, 0);}}}
64 * {{{INSERT INTO custom_report (id, uuid, maingroup, subgroup, version, ordering) VALUES (@reportID , @uuid, 'Timing and Estimation Plugin', 'Ticket/Hour Reports', 1, 0);}}}
[1119]65
[2390]66''NB: @uuid is a globally uninque identifier created via a tool such as {{{uuidgen}}} on Linux or various [http://www.famkruithof.net/uuid/uuidgen online tools]. It is used in this plugin to provide programatic reference to specific reports such that they can be upgraded successfully on future revisions of the plugin''
67
[2349]68=== Removing a Report ===
69To remove reports from the Management page, run the following query.
[2390]70Remember to fill in the @reportID of the report you want to modify.
[2349]71 * To remove for this version of the plugin (will be over written in future plugin upgrades)
[2390]72   * {{{UPDATE custom_report SET maingroup='x'||maingroup WHERE report = @reportID;}}}
[2349]73 * To remove permanently (wont be over written in future plugin upgrades)
[2390]74   * {{{UPDATE custom_report SET version=9999, maingroup='x'||maingroup WHERE report = @reportID;}}}
75''NB: The 'x' part is not important - you just need to make the column read something other than 'Timing and Estimation Plugin'.''
[2349]76
77=== TAKE NOTE ===
78 '''The reports can only be called from the Management Page. They will not work from the Trac View Tickets page. (Due to the custom variables that need values).'''
79
[4265]80== Permissions Branch ==
81Recently a branch of this plugin was sponsored by [http://www.obsidiansoft.com/ Obsidian Software] so that it would support per field permissions. 
82
83This is accomplished with Genshi 5 stream filters in trac 11.  This code draws from the [http://trac-hacks.org/wiki/BlackMagicTicketTweaksPlugin BlackMagicTicketTweaksPlugin]
[7840]84{{{
85#!html
86<br />
87<a href="http://www.obsidiansoft.com/" >
88<img src="http://trac-hacks.org/attachment/wiki/TimeEstimationUserManual/obsidian-logo.gif?format=raw" />
89</a>
90}}}
[4265]91
92=== Configuration ===
93There is a new trac.ini configuration section which is filled in by default as follows.
94{{{
95#!ini
96[field settings] # per field permissions
97
98# a list of all the fields to apply permissions to
[7840]99fields = billable, totalhours, hours, estimatedhours, internal
[4265]100
101# a bunch of:
102# field.permission = PERMISSION:consequence
[7840]103#
104#  If PERMISSION=ALWAYS, then the consequence always occurs
105#    eg: billable.permission = ALWAYS:hide
106#        will always result in billable being hidden, irrespective of user permissions   
107#
[4265]108# where consequence is one of: hide, remove, disable
109#    hide - replaces with hidden input
110#    remove - removes element
111#    disable - removes input in favor of text
112billable.permission = TIME_VIEW:hide, TIME_RECORD:disable
113totalhours.permission = TIME_VIEW:remove, TIME_RECORD:disable
[14061]114hours.permission = TIME_VIEW:remove, TIME_RECORD:disable
[4265]115estimatedhours.permission = TIME_RECORD:disable
[7840]116internal.permission = TIME_RECORD:hide
[4265]117}}}
118
[4293]119It also adds an "Internal" checkbox which allows you to set a ticket as internal.  For this policy to work correctly you need to add a line to the trac section of the config telling it which permission policies to use.  (The setup will attempt to put this line of configuration in place. )  The permission that looks at currently is 'TIME_ADMIN'.  To change that group set the internalgroup of the ticket section in the trac.ini as follows:
120
121{{{
122#!ini
123[ticket]
[7840]124internalgroup = TRAC_ADMIN #or whatever group / permission you want
[4293]125
126[trac]
127permission_policies = InternalTicketsPolicy, DefaultPermissionPolicy, LegacyAttachmentPolicy
128}}}
129
[1119]130== Future Improvements ==
[7840]131 * [http://trac-hacks.org/report/9?COMPONENT=TimingAndEstimationPlugin See tickets] at the [http://trac-hacks.org/wiki/TimingAndEstimationPlugin project trac]
[1119]132
133"""
Note: See TracBrowser for help on using the repository browser.