]> git.donarmstrong.com Git - dak.git/commitdiff
Remove links to HTML and CSS validators.
authorAnsgar Burchardt <ansgar@debian.org>
Mon, 13 Jan 2014 18:10:42 +0000 (19:10 +0100)
committerAnsgar Burchardt <ansgar@debian.org>
Mon, 13 Jan 2014 18:11:06 +0000 (19:11 +0100)
This also gets rid of external (non-debian.org) and unencrypted resources.

dak/queue_report.py
dak/show_deferred.py
dak/show_new.py

index 5e164285d8372599d8537bc922f644a77a99393c..a7086d897a68c54ffc4232bc429c616eb72465e6 100755 (executable)
@@ -242,14 +242,6 @@ def footer():
     one version.<br />
     You may want to look at <a href="https://ftp-master.debian.org/REJECT-FAQ.html">the REJECT-FAQ</a>
       for possible reasons why one of the above packages may get rejected.</p>
-      <p>
-      <a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10"
-        alt="Valid XHTML 1.0 Strict" height="31" width="88" /></a>
-      <a href="http://jigsaw.w3.org/css-validator/">
-        <img style="border:0;width:88px;height:31px" src="http://jigsaw.w3.org/css-validator/images/vcss"
-        alt="Valid CSS!" />
-      </a>
-      </p>
     </div> </body> </html>
     """
 
index a76fd389ea8ef484feba22ff99ef35c1c5356291..13ce3de615ad3c99ce6757f16f8b3a2bf2575804 100755 (executable)
@@ -87,12 +87,6 @@ def header():
 def footer():
     res = "<p class=\"validate\">Timestamp: %s (UTC)</p>" % (time.strftime("%d.%m.%Y / %H:%M:%S", time.gmtime()))
     res += "<p class=\"timestamp\">There are <a href=\"/stat.html\">graphs about the queues</a> available.</p>"
-    res += """<a href="http://validator.w3.org/check?uri=referer">
-    <img border="0" src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!" height="31" width="88"></a>
-        <a href="http://jigsaw.w3.org/css-validator/check/referer">
-    <img border="0" src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"
-     height="31" width="88"></a>
-    """
     res += "</body></html>"
     return res.encode('utf-8')
 
index eff1116afe1dec1e14a60109aee8e35e6bba781d..64ea22874d0d36096e86f9b1c77c43444ce2bacd 100755 (executable)
@@ -137,16 +137,7 @@ def html_header(name, missing):
 def html_footer():
     result = """    <p class="validate">Timestamp: %s (UTC)</p>
 """% (time.strftime("%d.%m.%Y / %H:%M:%S", time.gmtime()))
-    result += """    <p><a href="http://validator.w3.org/check?uri=referer">
-      <img src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"
-      style="border: none; height: 31px; width: 88px" /></a>
-    <a href="http://jigsaw.w3.org/css-validator/check/referer">
-      <img src="http://jigsaw.w3.org/css-validator/images/vcss"
-      alt="Valid CSS!" style="border: none; height: 31px; width: 88px" /></a>
-    </p>
-  </body>
-</html>
-"""
+    result += "</body></html>"
     return result
 
 ################################################################################