Changeset 10509
- Timestamp:
- 12/11/2020 03:48:52 AM (4 years ago)
- Location:
- sites/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/trac.wordpress.org/templates/site.html
r10372 r10509 5 5 6 6 <?python 7 scripts_version = '14 8'7 scripts_version = '149' 8 8 project_slug = req.environ['HTTP_HOST'].split(':')[0].split('.')[0] 9 9 wporg_endpoint = 'https://make.wordpress.org/' + project_slug + '/' -
sites/trunk/wordpress.org/public_html/style/trac/wp-trac.js
r10373 r10509 10 10 'reporter-feedback' : 'Feedback is needed from the reporter.', 11 11 'dev-feedback' : 'Feedback is needed from a core developer.', 12 'dev-reviewed' : 'Indicates that a ticket has been reviewed by two committers and can be backported when used in combination with the commit keyword.', 12 13 '2nd-opinion' : 'A second opinion is desired for the problem or solution.', 13 14 'close' : 'The ticket is a candidate for closure.', … … 81 82 }; 82 83 83 gardenerKeywordList = [ 'commit', 'early', 'i18n-change', 'good-first-bug', 'fixed-major' ];84 gardenerKeywordList = [ 'commit', 'early', 'i18n-change', 'good-first-bug', 'fixed-major', 'dev-reviewed' ]; 84 85 85 86 // phpDocumentor tags, but also a few common @-terms. … … 1195 1196 } else if ( 'needs-dev-note' === keyword ) { 1196 1197 wpTrac.workflow.removeKeyword( 'has-dev-note' ); 1198 } 1199 1200 if ( 'dev-reviewed' === keyword ) { 1201 wpTrac.workflow.removeKeyword( 'dev-feedback' ); 1197 1202 } 1198 1203
Note: See TracChangeset
for help on using the changeset viewer.