diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 06:49:00 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 06:49:00 +0000 |
commit | 93907d0c009d758811b54e7984337477a39f05cf (patch) | |
tree | a34881e1b02ccd5281ca58a799877f2d5e80d778 /debian/patches/0005-Fix-privacy-breach-generic-caused-by-atom-xml-templa.patch | |
parent | Adding upstream version 4.6.0. (diff) | |
download | crmsh-2ea0fb6d531ba65bd9455cfec822078f81145ec6.tar.xz crmsh-2ea0fb6d531ba65bd9455cfec822078f81145ec6.zip |
Adding debian version 4.6.0-1.debian/4.6.0-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/0005-Fix-privacy-breach-generic-caused-by-atom-xml-templa.patch')
-rw-r--r-- | debian/patches/0005-Fix-privacy-breach-generic-caused-by-atom-xml-templa.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/debian/patches/0005-Fix-privacy-breach-generic-caused-by-atom-xml-templa.patch b/debian/patches/0005-Fix-privacy-breach-generic-caused-by-atom-xml-templa.patch new file mode 100644 index 0000000..beb880b --- /dev/null +++ b/debian/patches/0005-Fix-privacy-breach-generic-caused-by-atom-xml-templa.patch @@ -0,0 +1,28 @@ +From: Richard B Winters <rik@mmogp.com> +Date: Fri, 29 Jan 2016 10:43:46 -0500 +Subject: Fix privacy-breach-generic caused by atom xml template + + - Modifies the atom xml template so as not to breach + privacy by using remote resources. + +Change-Id: I0043f9815620a3b88546c481f416b6ebebe66472 +Signed-off-by: Richard B Winters <rik@mmogp.com> +--- + doc/website-v1/make-news.py | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/doc/website-v1/make-news.py b/doc/website-v1/make-news.py +index f3c9073..89271d2 100644 +--- a/doc/website-v1/make-news.py ++++ b/doc/website-v1/make-news.py +@@ -21,8 +21,8 @@ ATOM_TEMPLATE = """<?xml version="1.0" encoding="utf-8"?> + <feed xmlns="http://www.w3.org/2005/Atom"> + <title>crmsh</title> + <subtitle>Cluster manager shell news</subtitle> +-<link href="http://crmsh.github.io/atom.xml" rel="self" /> +-<link href="http://crmsh.github.io/" /> ++<link href="/atom.xml" rel="self" /> ++<link href="/" /> + <id>%(id)s</id> + <updated>%(updated)s</updated> + %(entries)s |