Making WordPress.org

Ticket #2179: 2179.diff

File 2179.diff, 1.8 KB (added by flixos90, 9 years ago)
  • wordpress.org/public_html/style/trac/wp-trac.js

    diff --git wordpress.org/public_html/style/trac/wp-trac.js wordpress.org/public_html/style/trac/wp-trac.js
    index a77b41c..7547d39 100644
    var wpTrac, coreKeywordList, gardenerKeywordList, coreFocusesList; 
    3636                'administration' : 'Administration related, but assigned a more specific component.',
    3737                'template' : 'Relating to theme templating, but assigned a more specific component.',
    3838                'multisite' : 'Relating to multisite, but assigned a more specific component.',
     39                'restapi' : 'Relating to the REST API, but assigned a more specific component.',
    3940                'performance' : 'Performance or caching (but not the Cache API component).'
    4041        };
    4142
    var wpTrac, coreKeywordList, gardenerKeywordList, coreFocusesList; 
    10921093                                var component = $(this).val();
    10931094                                if ( component === 'Network Admin' || component === 'Networks and Sites' ) {
    10941095                                        add( 'multisite' );
     1096                                } else if ( component === 'REST API' ) {
     1097                                        add( 'restapi' );
    10951098                                }
    10961099                        }
    10971100
  • wordpress.org/public_html/wp-content/plugins/trac-notifications/trac-notifications.php

    diff --git wordpress.org/public_html/wp-content/plugins/trac-notifications/trac-notifications.php wordpress.org/public_html/wp-content/plugins/trac-notifications/trac-notifications.php
    index bede16f..b7700b1 100644
    class wporg_trac_notifications { 
    8383
    8484        function get_trac_focuses() {
    8585                if ( 'core' === $this->trac ) {
    86                         return array( 'accessibility', 'administration', 'docs', 'javascript', 'multisite', 'performance', 'rtl', 'template', 'ui' );
     86                        return array( 'accessibility', 'administration', 'docs', 'javascript', 'multisite', 'performance', 'restapi', 'rtl', 'template', 'ui' );
    8787                }
    8888                return array();
    8989        }