Changeset 11548
- Timestamp:
- 02/14/2022 07:24:51 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/trac.wordpress.org/templates/site.html
r11544 r11548 314 314 <textarea class="${select('@class')} wp-exclude-emoji" id="${select('@id')}" name="${select('@name')}" rows="${select('@rows')}" cols="${select('@cols')}">${select('*|comment()|text()')}</textarea> 315 315 </py:match> 316 317 <!--! Mark description/comment links as nofollow user-generated-content. --> 318 <div py:match="div[contains(@class,'searchable')]" py:attrs="select('@*')"> 319 <?python 320 from genshi.core import TEXT, Markup 321 def nofollow_ugc(stream): 322 for kind, data, pos in stream: 323 if kind is TEXT: 324 data = data.replace( 'class="ext-link"', 'class="ext-link" rel="ugc nofollow"' ) 325 data = Markup( data ) 326 yield kind, data, pos 327 ?> 328 ${nofollow_ugc(select('*|comment()|text()'))} 329 </div> 316 330 317 331 <body py:match="body" id="wordpress-org" class="${project_slug} trac wporg-make make-${project_slug}" py:attrs="select('@*')">
Note: See TracChangeset
for help on using the changeset viewer.