Changeset 11635
- Timestamp:
- 03/04/2022 12:06:32 AM (3 years ago)
- Location:
- sites/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/trac.wordpress.org/templates/site.html
r11627 r11635 5 5 6 6 <?python 7 scripts_version = '1 69'7 scripts_version = '170' 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
r11627 r11635 1665 1665 1666 1666 function init() { 1667 // TODO: If this is added to other Trac's, expand this..1668 1667 if ( $body.hasClass( 'core' ) ) { 1669 1668 trac = 'core'; … … 1674 1673 primaryGitRepo = 'WordPress/wordpress.org'; 1675 1674 primaryGitRepoDesc = 'WordPress.org Meta GitHub mirror'; 1675 } else if ( $body.hasClass( 'bbpress' ) ) { 1676 trac = 'bbpress'; 1677 primaryGitRepo = 'bbpress/bbPress'; 1678 primaryGitRepoDesc = 'bbPress GitHub mirror'; 1679 } else if ( $body.hasClass( 'buddypress' ) ) { 1680 trac = 'buddypress'; 1681 primaryGitRepo = 'buddypress/buddypress'; 1682 primaryGitRepoDesc = 'BuddyPress GitHub mirror'; 1676 1683 } 1677 1684
Note: See TracChangeset
for help on using the changeset viewer.