Template:FeatureBugzilla: Difference between revisions
add code showing features from bug tracker |
m Use same color for all rows in a category |
||
(13 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{| style="background-color:#FFABAB" | <noinclude> | ||
|TODO | == Verwendung == | ||
| | Show feature requests from bugzilla, syntax: {{FeatureBugzilla|product-name|target-milestone}} | ||
<br>For example: {{FeatureBugzilla|umbrello|2.17 (KDE Applications 15.08)}} | |||
</noinclude> | |||
{| border=1 style="border: 1px solid gray; width:100% !important;" | |||
|- style="background-color:#FFABAB;" | |||
|align="center" colspan=2 | TODO | |||
|- style="background-color:#FFABAB;" | |||
| | |||
<bugzilla display="list"> | <bugzilla display="list"> | ||
{ | { | ||
"product": "{{{1|empty}}}", | "product": "{{{1|empty}}}", | ||
"status" : "CONFIRMED", | "status" : "CONFIRMED", | ||
"severity" : "wishlist", | |||
"target_milestone": "{{{2|---}}}", | "target_milestone": "{{{2|---}}}", | ||
"include_fields" : [ "product", "id", "summary", "assigned_to"] | "include_fields" : [ "product", "id", "summary", "assigned_to"] | ||
} | } | ||
</bugzilla> | </bugzilla> | ||
|- style="background-color:#FFFFA0;" | |||
|IN PROGRESS | |align="center" colspan=2 |IN PROGRESS | ||
| | |- style="background-color:#FFFFA0;" | ||
| | |||
<bugzilla display="list"> | <bugzilla display="list"> | ||
{ | { | ||
"product": "{{{1|empty}}}", | "product": "{{{1|empty}}}", | ||
"status" : "ASSIGNED", | "status" : "ASSIGNED", | ||
"severity" : "wishlist", | |||
"target_milestone": "{{{2|---}}}", | "target_milestone": "{{{2|---}}}", | ||
"include_fields" : [ "product", "id", "summary", "assigned_to"] | "include_fields" : [ "product", "id", "summary", "assigned_to"] | ||
} | } | ||
</bugzilla> | </bugzilla> | ||
|- style="background-color:#ABFFAB;" | |||
|DONE | |align="center" colspan=2 | DONE | ||
| | |- style="background-color:#ABFFAB;" | ||
| | |||
<bugzilla display="list"> | <bugzilla display="list"> | ||
{ | { | ||
"product": "{{{1|empty}}}", | "product": "{{{1|empty}}}", | ||
"status" : "RESOLVED", | "status" : "RESOLVED", | ||
"severity" : "wishlist", | |||
"target_milestone": "{{{2|---}}}", | "target_milestone": "{{{2|---}}}", | ||
"include_fields" : [ "product", "id", "summary", "assigned_to"] | "include_fields" : [ "product", "id", "summary", "assigned_to"] | ||
} | } | ||
</bugzilla> | </bugzilla> | ||
|} |
Latest revision as of 17:45, 1 October 2015
Verwendung
Show feature requests from bugzilla, syntax: {{FeatureBugzilla|product-name|target-milestone}}
For example: {{FeatureBugzilla|umbrello|2.17 (KDE Applications 15.08)}}
TODO | |
<bugzilla display="list"> { "product": "empty", "status" : "CONFIRMED", "severity" : "wishlist", "target_milestone": "---", "include_fields" : [ "product", "id", "summary", "assigned_to"] } </bugzilla> | |
IN PROGRESS | |
<bugzilla display="list"> { "product": "empty", "status" : "ASSIGNED", "severity" : "wishlist", "target_milestone": "---", "include_fields" : [ "product", "id", "summary", "assigned_to"] } </bugzilla> | |
DONE | |
<bugzilla display="list"> { "product": "empty", "status" : "RESOLVED", "severity" : "wishlist", "target_milestone": "---", "include_fields" : [ "product", "id", "summary", "assigned_to"] } </bugzilla> |