Package: pycsw / 2.6.2+dfsg-2

0002-Remove-externally-linked-files.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
From: Johan Van de Wauw <johan.vandewauw@gmail.com>
Date: Mon, 29 Sep 2014 21:20:49 +0200
Subject: Remove externally linked files

W3C and jquery
---
 tests/index.html | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

--- a/tests/gen_html.py
+++ b/tests/gen_html.py
@@ -49,7 +49,7 @@ print('''
                 border: 0px;
             }
         </style>
-        <script type="text/javascript" src="http://code.jquery.com/jquery-%s.min.js"></script>
+        <script type="text/javascript" src="jquery/jquery.js"></script>
         <script type="text/javascript">
             $(document).ready(function() {
                 $('.xml').change(function() {
@@ -84,7 +84,7 @@ print('''
             });
         </script>
     </head>
-''' % JQUERY_VERSION)
+''')
 
 print('''
     <body>
@@ -150,8 +150,8 @@ print('''
             </ul>
         <hr/>
         <footer>
-            <a href="http://validator.w3.org/check?verbose=1&amp;uri=referer" title="Valid HTML 5!"><img class="flat" src="http://www.w3.org/html/logo/downloads/HTML5_Badge_32.png" alt="Valid HTML 5!" height="32" width="32"/></a>
-            <a href="http://jigsaw.w3.org/css-validator/check/referer" title="Valid CSS!"><img class="flat" src="http://jigsaw.w3.org/css-validator/images/vcss-blue" alt="Valid CSS!" height="31" width="88"/></a>
+            <a href="http://validator.w3.org/check?verbose=1&amp;uri=referer" title="Valid HTML 5!">Valid HTML 5!</a>
+            <a href="http://jigsaw.w3.org/css-validator/check/referer" title="Valid CSS!">Valid CSS!</a>
         </footer>
     </body>
 </html>