BugListConf in split format
# configuration for bug list database cols=record_id:summary:assigned_to:priority:status add_form=""" <table> <tr> <td>Summary:</td><td> <font color=red><missing data value for key "summaryField"></font></td> </tr><tr> <td>Priority:</td><td> <font color=red><missing data value for key "priorityFieldRadio"></font></td> </tr><tr> <td>Description:</td><td><font color=red><missing data value for key "descriptionFieldTextarea"></font></td> </tr><tr> <td>Assigned to:</td><td> <font color=red><missing data value for key "assigned_toField"></font></td> </tr><tr> <td>Status:</td><td> <font color=red><missing data value for key "statusFieldRadio"></font></td> </tr><tr> <td>Bug id:</td><td> <font color=red><missing data value for key "record_idField"></font></td> </tr><tr> </tr> </table> <font color=red><missing data value for key "SaveButton"></font> <font color=red><missing data value for key "CancelButton"></font><br> | # configuration for bug list database cols=record_id:summary:assigned_to:priority:status add_form=""" <table> <tr> <td>Summary:</td><td> %(summaryField)s</td> </tr><tr> <td>Priority:</td><td> %(priorityFieldRadio)s</td> </tr><tr> <td>Description:</td><td>%(descriptionFieldTextarea)s</td> </tr><tr> <td>Assigned to:</td><td> %(assigned_toField)s</td> </tr><tr> <td>Status:</td><td> %(statusFieldRadio)s</td> </tr><tr> <td>Bug id:</td><td> %(record_idField)s</td> </tr><tr> </tr> </table> %(SaveButton)s %(CancelButton)s<br> |
""" # field info field=record_id default_value=<font color=red><missing data value for key "next_page_num"></font> | """ # field info field=record_id default_value=%(next_page_num)s |
field=assigned_to default_value=Tim | field=assigned_to default_value=Tim |
field=description type=Textarea | field=description type=Textarea |
field=priority type=Radio default_value=medium possible_values="""low medium high""" colors="""low:#ffff90 medium:#ffa500 high:#ff4040""" | field=priority type=Radio default_value=medium possible_values="""low medium high""" colors="""low:#ffff90 medium:#ffa500 high:#ff4040""" |
field=status type=Radio default_value=open possible_values="""open in progress fixed duplicate rejected""" colors="""open:#ffd0d0 started:#d0d000 fixed:#d0ffd0 duplicate:#ffffd0 rejected:#c08080""" | field=status type=Radio default_value=open possible_values="""open in progress fixed duplicate rejected""" colors="""open:#ffd0d0 started:#d0d000 fixed:#d0ffd0 duplicate:#ffffd0 rejected:#c08080""" |