Changes between Version 16 and Version 17 of SCS_ISSUE_TRACKER_MAINTENANCE_R1


Ignore:
Timestamp:
10/14/08 17:12:04 (17 years ago)
Author:
astea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SCS_ISSUE_TRACKER_MAINTENANCE_R1

    v16 v17  
    4141 * rules about relationship with other tasks, if planned and unplanned overlap. 
    4242= Implementation = 
    43 These functions ware added into the [source:/manage/sched/sophie2-wbs.py] file: 
    44  * outImportancedEffort 
     43== New Custom Fields == 
     44These functions were added into the [source:/manage/sched/sophie2-wbs.py] file: 
     45 * '''outImportancedEffort''' 
    4546  * 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. 
    4647  * Usage: 
     
    4849   * In the sophie2-wbs.py uncommnet the outImportancedEffort() call 
    4950   * Execute:  
    50  {{{ 
     51{{{ 
    5152 python sophie2-wbs.py | bash 
    52  }}} 
     53}}} 
    5354 
    54  * outUpdateCustom  
     55 * '''outUpdateCustom''' 
    5556  * 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]. 
    5657  * Usage: 
     
    5859   * In the sophie2-wbs.py uncommnet the outUpdateCustom(sys.argv[1]) call 
    5960   * Execute:  
    60  {{{ 
     61{{{ 
    6162 python sophie2-wbs.py effort | bash 
    6263 //this will update the effort field 
    6364  sophie2-wbs.py importance | bash 
    6465 //this will update the importance field 
    65  }}} 
     66}}} 
    6667 
    67  
     68== Unplanned Tasks == 
    6869= Testing = 
    6970= Comments =