Changeset 1952
- Timestamp:
- 10/09/2015 05:43:36 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/style/trac/wp-trac.js
r1703 r1952 14 14 'ui-feedback' : 'Feedback is needed from the user interface perspective, generally from the UI team.', 15 15 'ux-feedback' : 'Feedback is needed from the user experience perspective, generally from a UX lead.', 16 'has-unit-tests' : 'Proposed solution has unit test coverage.', 16 17 'needs-unit-tests' : 'Ticket has a particular need for unit tests.', 17 18 'needs-docs' : 'Inline documentation is needed.', 18 19 'needs-codex' : 'The Codex needs to be updated or expanded.', 20 'has-screenshots' : 'Visual changes are documented with screenshots.', 21 'needs-screenshots' : 'Screenshots are needed as a visual change log.', 19 22 'commit' : 'Patch is a suggested commit candidate.', 20 23 'early' : 'Ticket should be addressed early in the next dev cycle.', … … 538 541 } else if ( 'needs-patch' === keyword ) { 539 542 wpTrac.workflow.removeKeyword( 'has-patch' ); 543 } 544 545 if ( 'has-unit-tests' === keyword ) { 546 wpTrac.workflow.removeKeyword( 'needs-unit-tests' ); 547 } else if ( 'needs-unit-tests' === keyword ) { 548 wpTrac.workflow.removeKeyword( 'has-unit-tests' ); 549 } 550 551 if ( 'has-screenshots' === keyword ) { 552 wpTrac.workflow.removeKeyword( 'needs-screenshots' ); 553 } else if ( 'needs-screenshots' === keyword ) { 554 wpTrac.workflow.removeKeyword( 'has-screenshots' ); 540 555 } 541 556
Note: See TracChangeset
for help on using the changeset viewer.