Add python-eventlet package to MOS 9.0 repository
[packages/trusty/python-eventlet.git] / debian / patches / fixed-privacy-breach-in-examples.patch
1 Description: Fixed privacy breach in examples
2  Upstream is referencing external websites, we don't allow this.
3 Author: Thomas Goirand <zigo@debian.org>
4 Forwarded: no
5 Last-Update: 2015-05-27
6
7 --- python-eventlet-0.17.4.orig/examples/websocket.html
8 +++ python-eventlet-0.17.4/examples/websocket.html
9 @@ -3,8 +3,8 @@
10  <head>
11  <!-- idea and code swiped from 
12  http://assorted.svn.sourceforge.net/viewvc/assorted/real-time-plotter/trunk/src/rtp.html?view=markup -->
13 -<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
14 -<script src="http://people.iola.dk/olau/flot/jquery.flot.js"></script>
15 +<script src="jquery.min.js"></script>
16 +<script src="jquery.flot.js"></script>
17  <script>
18  window.onload = function() {
19      var data = {};
20 --- python-eventlet-0.17.4.orig/examples/websocket_chat.html
21 +++ python-eventlet-0.17.4/examples/websocket_chat.html
22 @@ -1,7 +1,7 @@
23  <!DOCTYPE html>
24  <html>
25  <head>
26 -<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
27 +<script src="jquery.min.js"></script>
28  <script>
29  window.onload = function() {
30    var data = {};