Changeset 3137
- Timestamp:
- 05/13/2016 10:08:41 PM (9 years ago)
- Location:
- sites/trunk/trac.wordpress.org/templates
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/trac.wordpress.org/templates/core/site-specific.html
r2952 r3137 6 6 <head py:match="head" py:attrs="select('@*')"> 7 7 ${select('*|comment()|text()')} 8 <link rel="stylesheet" href=" //s.w.org/wp-content/plugins/trac-notifications/make-core.css?ver=3" />8 <link rel="stylesheet" href="https://s.w.org/wp-content/plugins/trac-notifications/make-core.css?ver=3" /> 9 9 </head> 10 10 -
sites/trunk/trac.wordpress.org/templates/core/wporg-menu.html
r1805 r3137 6 6 <div id="headline"> 7 7 <div class="wrapper"> 8 <h2><a href=" //make.wordpress.org/core/">Make WordPress Core</a></h2>8 <h2><a href="https://make.wordpress.org/core/">Make WordPress Core</a></h2> 9 9 <div class="menu-container"><ul class="menu"> 10 <li><a href="http ://make.wordpress.org/core/">Blog</a></li>11 <li><a href="http ://make.wordpress.org/core/handbook/">Handbook</a></li>12 <li><a class="open-ticket-report" href="http ://make.wordpress.org/core/reports/">Tickets</a></li>13 <li><a href="http ://make.wordpress.org/core/components/">Components</a></li>14 <li class="icon browser"><a title="Browse Source" href=" //core.trac.wordpress.org/browser">Browse Source</a></li>15 <li class="icon timeline"><a title="Trac Timeline" href=" //core.trac.wordpress.org/timeline">Trac Timeline</a></li>16 <li class="icon newticket"><a title="Create a New Ticket" href=" //wordpress.org/support/bb-login.php?redirect_to=https://core.trac.wordpress.org/newticket">Create a New Ticket</a></li>10 <li><a href="https://make.wordpress.org/core/">Blog</a></li> 11 <li><a href="https://make.wordpress.org/core/handbook/">Handbook</a></li> 12 <li><a class="open-ticket-report" href="https://make.wordpress.org/core/reports/">Tickets</a></li> 13 <li><a href="https://make.wordpress.org/core/components/">Components</a></li> 14 <li class="icon browser"><a title="Browse Source" href="https://core.trac.wordpress.org/browser">Browse Source</a></li> 15 <li class="icon timeline"><a title="Trac Timeline" href="https://core.trac.wordpress.org/timeline">Trac Timeline</a></li> 16 <li class="icon newticket"><a title="Create a New Ticket" href="https://wordpress.org/support/bb-login.php?redirect_to=https://core.trac.wordpress.org/newticket">Create a New Ticket</a></li> 17 17 </ul></div> 18 18 </div> -
sites/trunk/trac.wordpress.org/templates/site-ticket.html
r1999 r3137 5 5 6 6 <?python 7 profile_link = ' //profiles.wordpress.org/'7 profile_link = 'https://profiles.wordpress.org/' 8 8 9 9 field_types = [ 'milestone', 'priority', 'type', 'severity', 'version', 'component', 'keywords', 'focuses', ] … … 36 36 <td py:match="td[@headers='h_reporter']" py:attrs="select('@*')"> 37 37 <a href="${profile_link + ticket.reporter}"> 38 <img class="avatar" src=" //wordpress.org/grav-redirect.php?user=${ticket.reporter}&s=48" srcset="//wordpress.org/grav-redirect.php?user=${ticket.reporter}&s=96 2x" height="48" width="48" />38 <img class="avatar" src="https://wordpress.org/grav-redirect.php?user=${ticket.reporter}&s=48" srcset="https://wordpress.org/grav-redirect.php?user=${ticket.reporter}&s=96 2x" height="48" width="48" /> 39 39 </a> 40 40 ${select('*|comment()|text()')} … … 44 44 <td py:match="td[@headers='h_owner']" py:attrs="select('@*')"> 45 45 <a href="${profile_link + ticket.owner}" py:if="ticket.owner"> 46 <img class="avatar" src=" //wordpress.org/grav-redirect.php?user=${ticket.owner}&s=48" srcset="//wordpress.org/grav-redirect.php?user=${ticket.owner}&s=96 2x" height="48" width="48" />46 <img class="avatar" src="https://wordpress.org/grav-redirect.php?user=${ticket.owner}&s=48" srcset="https://wordpress.org/grav-redirect.php?user=${ticket.owner}&s=96 2x" height="48" width="48" /> 47 47 </a> 48 48 ${select('*|comment()|text()')} -
sites/trunk/trac.wordpress.org/templates/site.html
r2923 r3137 7 7 scripts_version = '62' 8 8 project_slug = req.environ['HTTP_HOST'].split(':')[0].split('.')[0] 9 wporg_endpoint = ' //make.wordpress.org/' + project_slug + '/'9 wporg_endpoint = 'https://make.wordpress.org/' + project_slug + '/' 10 10 is_bug_gardener = 'TICKET_EDIT_DESCRIPTION' in perm(resource) 11 11 project_name = project['name'].replace('Trac', '').strip() … … 14 14 15 15 if project_slug == 'bbpress' : 16 support_link = ' //bbpress.org/forums/'16 support_link = 'https://bbpress.org/forums/' 17 17 elif project_slug == 'buddypress' : 18 support_link = ' //buddypress.org/support/topics/'18 support_link = 'https://buddypress.org/support/topics/' 19 19 else : 20 support_link = ' //wordpress.org/support/'21 22 profile_to_edit = ' //wordpress.org/support/profile/'20 support_link = 'https://wordpress.org/support/' 21 22 profile_to_edit = 'https://wordpress.org/support/profile/' 23 23 24 24 # Fix https://meta.trac.wordpress.org/ticket/21 … … 42 42 <xi:include href="wporg-head.html" /> 43 43 <meta name="viewport" content="width=device-width" /> 44 <link rel='stylesheet' href=' //s.w.org/wp-includes/css/dashicons.min.css?20150710' type='text/css' />45 <link rel="stylesheet" type="text/css" href=" //s.w.org/style/trac/wp-trac.css?${scripts_version}" />46 <link py:if="req.session['authenticated']" rel="stylesheet" href=" //s.w.org/wp-includes/css/wp-auth-check.css?ver=3.9-alpha" type="text/css" media="all" />44 <link rel='stylesheet' href='https://s.w.org/wp-includes/css/dashicons.min.css?20150710' type='text/css' /> 45 <link rel="stylesheet" type="text/css" href="https://s.w.org/style/trac/wp-trac.css?${scripts_version}" /> 46 <link py:if="req.session['authenticated']" rel="stylesheet" href="https://s.w.org/wp-includes/css/wp-auth-check.css?ver=3.9-alpha" type="text/css" media="all" /> 47 47 48 48 <script py:attrs="select('@*')"></script> … … 92 92 <strong>Do not report potential security vulnerabilities here.</strong><br /> 93 93 94 See the <a href=" //make.wordpress.org/core/handbook/reporting-security-vulnerabilities/">Security FAQ</a> and contact <a class="mail-link" href="mailto:security@wordpress.org">security@wordpress.org</a>.94 See the <a href="https://make.wordpress.org/core/handbook/reporting-security-vulnerabilities/">Security FAQ</a> and contact <a class="mail-link" href="mailto:security@wordpress.org">security@wordpress.org</a>. 95 95 </p> 96 96 </py:choose> … … 106 106 <li>Please provide any additional information that you think we'd find useful. (OS and browser for UI defects, server environment for crashes, etc.)</li> 107 107 </ul> 108 <p>You can search for existing tickets <a href="/search">here</a>. For more help, please see the <a href=" //make.wordpress.org/core/handbook/reporting-bugs/">contributor handbook</a>.</p>108 <p>You can search for existing tickets <a href="/search">here</a>. For more help, please see the <a href="https://make.wordpress.org/core/handbook/reporting-bugs/">contributor handbook</a>.</p> 109 109 110 110 </div> … … 127 127 <p><strong>Caution!</strong> This ticket was assigned to the Security component.</p> 128 128 <p><strong>If this is a potential security vulnerability, DO NOT REPORT IT HERE.</strong></p> 129 <p>Instead, read the <a class="ext-link" href=" //codex.wordpress.org/FAQ_Security"><span class="icon"> </span>Security FAQ</a> and email us at <a class="mail-link" href="mailto:security@wordpress.org"><span class="icon"> </span>security@wordpress.org</a>.</p>129 <p>Instead, read the <a class="ext-link" href="https://codex.wordpress.org/FAQ_Security"><span class="icon"> </span>Security FAQ</a> and email us at <a class="mail-link" href="mailto:security@wordpress.org"><span class="icon"> </span>security@wordpress.org</a>.</p> 130 130 </div> 131 131 </py:if> … … 233 233 Notifications are sent to the email listed in <a href="${profile_to_edit}${req.session['sid']}">your WordPress.org profile</a><py:if test="req.session['email']"> (${req.session['email']})</py:if>. 234 234 <py:if test="notifications_enabled"> 235 Notification preferences can be configured <a href=" //${wporg_endpoint}notifications/">here</a>.235 Notification preferences can be configured <a href="https://${wporg_endpoint}notifications/">here</a>. 236 236 </py:if> 237 237 </div> … … 267 267 268 268 <!--! JavaScript --> 269 <script src=" //s.w.org/style/trac/jquery.caret.min.js?ver=2015-02-01"></script>270 <script src=" //s.w.org/style/trac/jquery.atwho.min.js?ver=1.0.1"></script>271 <script src=" //s.w.org/style/trac/wp-trac.js?${scripts_version}"></script>269 <script src="https://s.w.org/style/trac/jquery.caret.min.js?ver=2015-02-01"></script> 270 <script src="https://s.w.org/style/trac/jquery.atwho.min.js?ver=1.0.1"></script> 271 <script src="https://s.w.org/style/trac/wp-trac.js?${scripts_version}"></script> 272 272 273 273 <!--! Check for security buzzwords on new tickets --> 274 <script py:if="req.environ['PATH_INFO'] == '/newticket'" src=" //s.w.org/style/trac/trac-security.js?${scripts_version}"></script>274 <script py:if="req.environ['PATH_INFO'] == '/newticket'" src="https://s.w.org/style/trac/trac-security.js?${scripts_version}"></script> 275 275 276 276 <!--! New ticket possibly related tickets for Core Trac --> 277 <script py:if="req.environ['PATH_INFO'] == '/newticket' and project_slug == 'core'" src=" //s.w.org/style/trac/trac-search.js?${scripts_version}"></script>277 <script py:if="req.environ['PATH_INFO'] == '/newticket' and project_slug == 'core'" src="https://s.w.org/style/trac/trac-search.js?${scripts_version}"></script> 278 278 279 279 <!--! Analytics for Core Trac --> … … 297 297 <div id="wp-auth-check"> 298 298 <div class="wp-auth-check-close" tabindex="0" title="Close"></div> 299 <div class="wp-auth-fallback"><p><b class="wp-auth-fallback-expired" tabindex="0">Session expired</b></p><p><a href=" //wordpress.org/support/bb-login.php" target="_blank">Please log in again.</a> The login page will open in a new window. After logging in you can close it and return to this page.</p>299 <div class="wp-auth-fallback"><p><b class="wp-auth-fallback-expired" tabindex="0">Session expired</b></p><p><a href="https://wordpress.org/support/bb-login.php" target="_blank">Please log in again.</a> The login page will open in a new window. After logging in you can close it and return to this page.</p> 300 300 </div> 301 301 </div> -
sites/trunk/trac.wordpress.org/templates/ticket_change.diff
r1976 r3137 19 19 + <span class="avatar" py:if="change"> 20 20 + <span class="username-line"><a href="//profiles.wordpress.org/${authorinfo(change.author)}" class="profile-link"> 21 + <img src=" //wordpress.org/grav-redirect.php?user=${authorinfo(change.author)}&s=48" srcset="//wordpress.org/grav-redirect.php?user=${authorinfo(change.author)}&s=96 2x" height="48" width="48" /> @<span class="username" data-username="${change.author}">${authorinfo(change.author)}</span></a></span>21 + <img src="https://wordpress.org/grav-redirect.php?user=${authorinfo(change.author)}&s=48" srcset="https://wordpress.org/grav-redirect.php?user=${authorinfo(change.author)}&s=96 2x" height="48" width="48" /> @<span class="username" data-username="${change.author}">${authorinfo(change.author)}</span></a></span> 22 22 + <py:if test="'date' in change"> 23 23 + <br /><span class="time-ago">${dateinfo(change.date)} ago</span> -
sites/trunk/trac.wordpress.org/templates/ticket_change.html
r1983 r3137 37 37 <span class="avatar" py:if="change"> 38 38 <span class="username-line"> 39 <img src=" //wordpress.org/grav-redirect.php?user=${authorinfo(change.author)}&s=48" srcset="//wordpress.org/grav-redirect.php?user=${authorinfo(change.author)}&s=96 2x" height="48" width="48" />39 <img src="https://wordpress.org/grav-redirect.php?user=${authorinfo(change.author)}&s=48" srcset="https://wordpress.org/grav-redirect.php?user=${authorinfo(change.author)}&s=96 2x" height="48" width="48" /> 40 40 ${wiki_to_html(context, change.comment, escape_newlines=preserve_newlines)} 41 41 </span> … … 76 76 <py:when test="'author' in change"> 77 77 <span class="avatar" py:if="change"> 78 <span class="username-line"><a href=" //profiles.wordpress.org/${authorinfo(change.author)}" class="profile-link">79 <img src=" //wordpress.org/grav-redirect.php?user=${authorinfo(change.author)}&s=48" srcset="//wordpress.org/grav-redirect.php?user=${authorinfo(change.author)}&s=96 2x" height="48" width="48" /> @<span class="username" data-username="${change.author}">${authorinfo(change.author)}</span></a></span>78 <span class="username-line"><a href="https://profiles.wordpress.org/${authorinfo(change.author)}" class="profile-link"> 79 <img src="https://wordpress.org/grav-redirect.php?user=${authorinfo(change.author)}&s=48" srcset="https://wordpress.org/grav-redirect.php?user=${authorinfo(change.author)}&s=96 2x" height="48" width="48" /> @<span class="username" data-username="${change.author}">${authorinfo(change.author)}</span></a></span> 80 80 <py:if test="'date' in change"> 81 81 <br /><span class="time-ago">${dateinfo(change.date)} ago</span> -
sites/trunk/trac.wordpress.org/templates/wporg-footer.html
r975 r3137 7 7 <div class="wrapper"> 8 8 <ul> 9 <li><a href=" //wordpress.org/about/" title="An introduction to the WordPress project">About</a></li>10 <li><a href=" //wordpress.org/news/" title="News and Updates">Blog</a></li>11 <li><a href=" //wordpress.org/hosting/" title="Recommended web hosting providers">Hosting</a></li>9 <li><a href="https://wordpress.org/about/" title="An introduction to the WordPress project">About</a></li> 10 <li><a href="https://wordpress.org/news/" title="News and Updates">Blog</a></li> 11 <li><a href="https://wordpress.org/hosting/" title="Recommended web hosting providers">Hosting</a></li> 12 12 <li><a href="http://jobs.wordpress.net/" title="Find or post WordPress jobs">Jobs</a></li> 13 13 </ul> 14 14 15 15 <ul> 16 <li><a href=" //wordpress.org/support/" title="Forums, documentation, and other resources">Support</a></li>17 <li><a href=" //developer.wordpress.org" title="Resources for WordPress developers">Developers</a></li>18 <li><a href=" //make.wordpress.org/" title="Give back to WordPress through code, support, translation and more">Get Involved</a></li>19 <li><a href=" //learn.wordpress.org/" title="Workshops and training materials">Learn</a></li>16 <li><a href="https://wordpress.org/support/" title="Forums, documentation, and other resources">Support</a></li> 17 <li><a href="https://developer.wordpress.org" title="Resources for WordPress developers">Developers</a></li> 18 <li><a href="https://make.wordpress.org/" title="Give back to WordPress through code, support, translation and more">Get Involved</a></li> 19 <li><a href="https://learn.wordpress.org/" title="Workshops and training materials">Learn</a></li> 20 20 </ul> 21 21 22 22 <ul> 23 <li><a href=" //wordpress.org/showcase/" title="Some of the best WordPress sites on the Web">Showcase</a></li>24 <li><a href=" //wordpress.org/plugins/" title="Add extra functionality to WordPress">Plugins</a></li>25 <li><a href=" //wordpress.org/themes/" title="Make your WordPress pretty">Themes</a></li>26 <li><a href=" //wordpress.org/ideas/" title="Share your ideas for improving WordPress">Ideas</a></li>23 <li><a href="https://wordpress.org/showcase/" title="Some of the best WordPress sites on the Web">Showcase</a></li> 24 <li><a href="https://wordpress.org/plugins/" title="Add extra functionality to WordPress">Plugins</a></li> 25 <li><a href="https://wordpress.org/themes/" title="Make your WordPress pretty">Themes</a></li> 26 <li><a href="https://wordpress.org/ideas/" title="Share your ideas for improving WordPress">Ideas</a></li> 27 27 </ul> 28 28 29 29 <ul> 30 <li><a href="http ://central.wordcamp.org/" title="Find a WordPress event near you">WordCamp</a></li>31 <li><a href="http ://wordpress.tv/" title="Videos, tutorials, and WordCamp sessions">WordPress.TV</a></li>32 <li><a href=" //buddypress.org/" title="A set of plugins to transform your WordPress into a social network">BuddyPress</a></li>33 <li><a href=" //bbpress.org/" title="Fast, slick forums built on WordPress">bbPress</a></li>30 <li><a href="https://central.wordcamp.org/" title="Find a WordPress event near you">WordCamp</a></li> 31 <li><a href="https://wordpress.tv/" title="Videos, tutorials, and WordCamp sessions">WordPress.TV</a></li> 32 <li><a href="https://buddypress.org/" title="A set of plugins to transform your WordPress into a social network">BuddyPress</a></li> 33 <li><a href="https://bbpress.org/" title="Fast, slick forums built on WordPress">bbPress</a></li> 34 34 </ul> 35 35 36 36 <ul> 37 <li><a href="http ://wordpress.com/?ref=wporg-footer" title="Hassle-free WordPress hosting">WordPress.com</a></li>38 <li><a href="http ://ma.tt/" title="Co-founder of WordPress, an example of what WordPress can do">Matt</a></li>39 <li><a href=" //wordpress.org/about/privacy/" title="WordPress.org Privacy Policy">Privacy</a></li>40 <li><a href=" //wordpress.org/about/license/" title="WordPress is open source software">License / GPLv2</a></li>37 <li><a href="https://wordpress.com/?ref=wporg-footer" title="Hassle-free WordPress hosting">WordPress.com</a></li> 38 <li><a href="https://ma.tt/" title="Co-founder of WordPress, an example of what WordPress can do">Matt</a></li> 39 <li><a href="https://wordpress.org/about/privacy/" title="WordPress.org Privacy Policy">Privacy</a></li> 40 <li><a href="https://wordpress.org/about/license/" title="WordPress is open source software">License / GPLv2</a></li> 41 41 </ul> 42 42 … … 59 59 </script> 60 60 <script type="text/javascript">_qevents.push( { qacct:"p-18-mFEk4J448M"} );</script> 61 <noscript><img src=" //pixel.quantserve.com/pixel/p-18-mFEk4J448M.gif" style="display: none;" border="0" height="1" width="1" alt=""/></noscript>61 <noscript><img src="https://pixel.quantserve.com/pixel/p-18-mFEk4J448M.gif" style="display: none;" border="0" height="1" width="1" alt=""/></noscript> 62 62 63 63 </html> -
sites/trunk/trac.wordpress.org/templates/wporg-head.html
r2369 r3137 4 4 py:strip=""> 5 5 6 <link href=' //fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,400,300,600&subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic' rel='stylesheet' type='text/css' />7 <link rel="stylesheet" href=" //s.w.org/style/wp4.css?39" />6 <link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,400,300,600&subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic' rel='stylesheet' type='text/css' /> 7 <link rel="stylesheet" href="https://s.w.org/style/wp4.css?39" /> 8 8 <!--[if lte IE 8]> 9 9 <style type="text/css"> 10 @import url(" //s.w.org/style/ie.css?1");10 @import url("https://s.w.org/style/ie.css?1"); 11 11 </style> 12 12 <![endif]--> -
sites/trunk/trac.wordpress.org/templates/wporg-header.html
r1806 r3137 8 8 <a id="mobile-menu-button" class="" href="#" onclick="toggleMenu();"></a> 9 9 10 <h1><a href=" //wordpress.org">WordPress.org</a></h1>10 <h1><a href="https://wordpress.org">WordPress.org</a></h1> 11 11 12 12 <div id="head-search"> 13 <form action=" //wordpress.org/search/do-search.php" method="get">13 <form action="https://wordpress.org/search/do-search.php" method="get"> 14 14 <label for="global-search" class="screen-reader-text">Search WordPress.org for:</label> 15 15 <input id="global-search" class="text" name="search" type="text" value="" maxlength="150" placeholder="Search WordPress.org" /> … … 19 19 <div style="clear:both"></div> 20 20 <ul id="wporg-header-menu"> 21 <li><a href=" //wordpress.org/showcase/" title="See some of the sites built on WordPress.">Showcase</a></li>22 <li><a href=" //wordpress.org/themes/" title="Find just the right look for your website.">Themes</a></li>23 <li><a href=" //wordpress.org/plugins/" title="Plugins can extend WordPress to do almost anything you can imagine."21 <li><a href="https://wordpress.org/showcase/" title="See some of the sites built on WordPress.">Showcase</a></li> 22 <li><a href="https://wordpress.org/themes/" title="Find just the right look for your website.">Themes</a></li> 23 <li><a href="https://wordpress.org/plugins/" title="Plugins can extend WordPress to do almost anything you can imagine." 24 24 class="${'current' if project_slug == 'plugins' else None}">Plugins</a> 25 25 <div class="uparrow"></div> 26 26 </li> 27 <li><a href=" //wordpress.org/mobile/" title="Take your website on the go!">Mobile</a></li>28 <li><a href=" //wordpress.org/support/" title="Forums, documentation, help.">Support</a>27 <li><a href="https://wordpress.org/mobile/" title="Take your website on the go!">Mobile</a></li> 28 <li><a href="https://wordpress.org/support/" title="Forums, documentation, help.">Support</a> 29 29 <ul class="nav-submenu"> 30 <li><a href=" //wordpress.org/support/" title="Support and discussion forums.">Forums</a></li>31 <li><a href=" //codex.wordpress.org/Main_Page" title="Documentation, tutorials, best practices.">Documentation</a></li>30 <li><a href="https://wordpress.org/support/" title="Support and discussion forums.">Forums</a></li> 31 <li><a href="https://codex.wordpress.org/Main_Page" title="Documentation, tutorials, best practices.">Documentation</a></li> 32 32 </ul> 33 33 <div class="uparrow"></div> 34 34 </li> 35 <li><a href=" //make.wordpress.org/" title="Contribute your knowledge." class="${'current' if project_slug != 'plugins' else None}">Get Involved</a></li>36 <li><a href=" //wordpress.org/about/" title="About the WordPress Organization, and where we're going.">About</a></li>37 <li><a href=" //wordpress.org/news/" title="Come here for the latest scoop.">Blog</a></li>38 <li><a href=" //wordpress.org/hosting/" title="Find a home for your blog.">Hosting</a></li>39 <li id="download" class="button download-button"><a href=" //wordpress.org/download/" title="Get it. Got it? Good.">Download WordPress</a></li>35 <li><a href="https://make.wordpress.org/" title="Contribute your knowledge." class="${'current' if project_slug != 'plugins' else None}">Get Involved</a></li> 36 <li><a href="https://wordpress.org/about/" title="About the WordPress Organization, and where we're going.">About</a></li> 37 <li><a href="https://wordpress.org/news/" title="Come here for the latest scoop.">Blog</a></li> 38 <li><a href="https://wordpress.org/hosting/" title="Find a home for your blog.">Hosting</a></li> 39 <li id="download" class="button download-button"><a href="https://wordpress.org/download/" title="Get it. Got it? Good.">Download WordPress</a></li> 40 40 </ul> 41 41 <div style="clear:both"></div>
Note: See TracChangeset
for help on using the changeset viewer.