Changes between Version 16 and Version 17 of SCS_ISSUE_TRACKER_MAINTENANCE_R1
- Timestamp:
- 10/14/08 17:12:04 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SCS_ISSUE_TRACKER_MAINTENANCE_R1
v16 v17 41 41 * rules about relationship with other tasks, if planned and unplanned overlap. 42 42 = Implementation = 43 These functions ware added into the [source:/manage/sched/sophie2-wbs.py] file: 44 * outImportancedEffort 43 == New Custom Fields == 44 These functions were added into the [source:/manage/sched/sophie2-wbs.py] file: 45 * '''outImportancedEffort''' 45 46 * Overview: The function takes no arguments and generates SQL queries that insert data in the ticket_custom table. This is where the custom fields "importance" and "effort" are stored. This function was used and there is effort and importance for all issues. It will not be used again. If something needs to be changed a function that updates the fields must be used. 46 47 * Usage: … … 48 49 * In the sophie2-wbs.py uncommnet the outImportancedEffort() call 49 50 * Execute: 50 51 {{{ 51 52 python sophie2-wbs.py | bash 52 53 }}} 53 54 54 * outUpdateCustom55 * '''outUpdateCustom''' 55 56 * Overview: This function takes one argument: "importance" or "effort". It generates SQL queries that update the information in ticket_custom table according to the [source:/manage/sched/sophie2-wbs.py]. 56 57 * Usage: … … 58 59 * In the sophie2-wbs.py uncommnet the outUpdateCustom(sys.argv[1]) call 59 60 * Execute: 60 61 {{{ 61 62 python sophie2-wbs.py effort | bash 62 63 //this will update the effort field 63 64 sophie2-wbs.py importance | bash 64 65 //this will update the importance field 65 66 }}} 66 67 67 68 == Unplanned Tasks == 68 69 = Testing = 69 70 = Comments =