Changeset 1704
- Timestamp:
- 07/05/2015 09:52:34 AM (9 years ago)
- Location:
- sites/trunk/trac.wordpress.org/templates
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/trac.wordpress.org/templates/site.html
r1174 r1704 67 67 <link rel="stylesheet" type="text/css" href="//s.w.org/style/trac/wp-trac.css?${scripts_version}" /> 68 68 <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" /> 69 69 70 70 <script py:attrs="select('@*')"></script> 71 71 … … 225 225 <td py:match="td[@headers='h_reporter']" py:attrs="select('@*')"> 226 226 <a href="${profile_link + ticket.reporter}"> 227 <img class="avatar" src="//wordpress.org/grav-redirect.php?user=${ticket.reporter}&s=36" height="36" width="36" />227 <img class="avatar" src="//wordpress.org/grav-redirect.php?user=${ticket.reporter}&s=36" srcset="//wordpress.org/grav-redirect.php?user=${ticket.reporter}&s=72 2x" height="36" width="36" /> 228 228 </a> 229 229 ${select('*|comment()|text()')} … … 233 233 <td py:match="td[@headers='h_owner']" py:attrs="select('@*')"> 234 234 <a href="${profile_link + ticket.owner}" py:if="ticket.owner"> 235 <img class="avatar" src="//wordpress.org/grav-redirect.php?user=${ticket.owner}&s=36" height="36" width="36" />235 <img class="avatar" src="//wordpress.org/grav-redirect.php?user=${ticket.owner}&s=36" srcset="//wordpress.org/grav-redirect.php?user=${ticket.reporter}&s=72 2x" height="36" width="36" /> 236 236 </a> 237 237 ${select('*|comment()|text()')} -
sites/trunk/trac.wordpress.org/templates/ticket_change.diff
r1176 r1704 10 10 + <span class="avatar" py:if="change"> 11 11 + <a href="//profiles.wordpress.org/${authorinfo(change.author)}" class="profile-link"> 12 + <img src="//wordpress.org/grav-redirect.php?user=${authorinfo(change.author)}&s=36" height="36" width="36" /> @<span class="username" data-username="${change.author}">${authorinfo(change.author)}</span></a>12 + <img src="//wordpress.org/grav-redirect.php?user=${authorinfo(change.author)}&s=36" srcset="//wordpress.org/grav-redirect.php?user=${authorinfo(change.author)}&s=72 2x" height="36" width="36" /> @<span class="username" data-username="${change.author}">${authorinfo(change.author)}</span></a> 13 13 + <py:if test="'date' in change"> 14 14 + — ${dateinfo(change.date)} ago -
sites/trunk/trac.wordpress.org/templates/ticket_change.html
r1176 r1704 53 53 <span class="avatar" py:if="change"> 54 54 <a href="//profiles.wordpress.org/${authorinfo(change.author)}" class="profile-link"> 55 <img src="//wordpress.org/grav-redirect.php?user=${authorinfo(change.author)}&s=36" height="36" width="36" /> @<span class="username" data-username="${change.author}">${authorinfo(change.author)}</span></a>55 <img src="//wordpress.org/grav-redirect.php?user=${authorinfo(change.author)}&s=36" srcset="//wordpress.org/grav-redirect.php?user=${authorinfo(change.author)}&s=72 2x" height="36" width="36" /> @<span class="username" data-username="${change.author}">${authorinfo(change.author)}</span></a> 56 56 <py:if test="'date' in change"> 57 57 — ${dateinfo(change.date)} ago
Note: See TracChangeset
for help on using the changeset viewer.