Ricordisamoa has uploaded a new change for review. https://gerrit.wikimedia.org/r/221091
Change subject: Fix some HTML validation errors ...................................................................... Fix some HTML validation errors * escape & in URLs * use lowercase tags Wall of shame: https://validator.w3.org/check?uri=https%3A%2F%2Ftools.wmflabs.org Change-Id: Id419b47a81a34aeb7f362c9b7dddf9ed20ddefeb --- M www/content/list.php 1 file changed, 5 insertions(+), 5 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/labs/toollabs refs/changes/91/221091/1 diff --git a/www/content/list.php b/www/content/list.php index 89418bb..6316fa5 100644 --- a/www/content/list.php +++ b/www/content/list.php @@ -4,10 +4,10 @@ <h2>Useful links</h2> <ul> <li><a href="https://wikitech.wikimedia.org/wiki/Nova_Resource:Tools">Tools project page on wikitech</a> (find out more about the Tools project)</li> - <li><a href="https://wikitech.wikimedia.org/w/index.php?title=Special:UserLogin&returnto=Main+Page&type=signup">Create a Labs account</a> (you must have a Labs account to access the Tools project)</li> + <li><a href="https://wikitech.wikimedia.org/w/index.php?title=Special:UserLogin&returnto=Main+Page&type=signup">Create a Labs account</a> (you must have a Labs account to access the Tools project)</li> <li><a href="https://wikitech.wikimedia.org/wiki/Special:NovaKey">Add a public SSH key</a> (you’ll need this to access Labs servers using SSH)</li> <li><a href="https://wikitech.wikimedia.org/wiki/Special:FormEdit/Tools_Access_Request">Request access to the Tools project</a> (Join us!)</li> - <li><a href="https://wikitech.wikimedia.org/w/index.php?title=Special:NovaServiceGroup&action=addservicegroup&projectname=tools">Create New Tool</a></li> + <li><a href="https://wikitech.wikimedia.org/w/index.php?title=Special:NovaServiceGroup&action=addservicegroup&projectname=tools">Create New Tool</a></li> <li><a href="http://git.wikimedia.org/summary/labs%2Ftoollabs.git">Source code repository of this web</a></li> </ul> @@ -28,9 +28,9 @@ global $purifier; print $purifier->purify($t['description']); if(array_key_exists('author', $t)) - print "<BR/><I>Author(s): " . $purifier->purify($t['author']) . "</I>"; + print "<br/><i>Author(s): " . $purifier->purify($t['author']) . "</i>"; if(array_key_exists('repository', $t)) - print "<BR/><a href=\"" . htmlspecialchars($t['repository']) . "\">Source</a>"; + print "<br/><a href=\"" . htmlspecialchars($t['repository']) . "\">Source</a>"; } } @@ -79,7 +79,7 @@ ?> <span class="mw-editsection"> - [<a href="https://wikitech.wikimedia.org/w/index.php?title=Special:NovaServiceGroup&action=managemembers&projectname=tools&servicegroupname=tools.<?=$tool?>">manage</a> maintainers] + [<a href="https://wikitech.wikimedia.org/w/index.php?title=Special:NovaServiceGroup&action=managemembers&projectname=tools&servicegroupname=tools.<?=$tool?>">manage</a> maintainers] </span> </td> <td class="tool-maintainers"><?php -- To view, visit https://gerrit.wikimedia.org/r/221091 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Id419b47a81a34aeb7f362c9b7dddf9ed20ddefeb Gerrit-PatchSet: 1 Gerrit-Project: labs/toollabs Gerrit-Branch: master Gerrit-Owner: Ricordisamoa <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
