Changeset 11775
- Timestamp:
- 04/20/2022 12:57:58 AM (3 years ago)
- Location:
- sites/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/trac.wordpress.org/templates/site.html
r11705 r11775 5 5 6 6 <?python 7 scripts_version = '1 74'7 scripts_version = '155' 8 8 project_slug = req.environ['HTTP_HOST'].split(':')[0].split('.')[0] 9 9 wporg_endpoint = 'https://make.wordpress.org/' + project_slug + '/' … … 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,'description') or contains(@class,'comment')]" py:attrs="select('@*')">319 <?python320 from genshi.core import TEXT, Markup321 def nofollow_ugc(stream):322 for kind, data, pos in stream:323 if kind is TEXT and isinstance( data, Markup ) and ( 'ext-link' in data ):324 data = Markup( data.replace( '<' + 'a class="ext-link"', '<' + 'a class="ext-link" rel="ugc nofollow"' ) )325 yield kind, data, pos326 ?>327 ${nofollow_ugc(select('*|comment()|text()'))}328 </div>329 316 330 317 <body py:match="body" id="wordpress-org" class="${project_slug} trac wporg-make make-${project_slug}" py:attrs="select('@*')"> -
sites/trunk/wordpress.org/public_html/style/trac/wp-trac.js
r11705 r11775 25 25 'needs-copy-review' : 'Input is needed from a copywriter with regards to the suggested verbiage changes.', 26 26 'needs-docs' : 'Inline documentation is needed.', 27 'needs- codex' : 'The Codexneeds to be updated or expanded.',27 'needs-user-docs' : 'The User Documentation needs to be updated or expanded.', 28 28 'has-screenshots' : 'Visual changes are documented with screenshots.', 29 29 'needs-screenshots' : 'Screenshots are needed as a visual change log.',
Note: See TracChangeset
for help on using the changeset viewer.