summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-02-20 19:31:32 +0100
committerPacho Ramos <pacho@gentoo.org>2016-02-20 19:31:32 +0100
commit031ceb4bc4a53dca5c20906459ff08b8c48f7c5e (patch)
treeee1b081d58989215ab12530f6cd38e58277a1649 /dev-util/reviewboard/files
parentRemove masked for removal packages (diff)
downloadgentoo-031ceb4bc4a53dca5c20906459ff08b8c48f7c5e.tar.gz
gentoo-031ceb4bc4a53dca5c20906459ff08b8c48f7c5e.tar.bz2
gentoo-031ceb4bc4a53dca5c20906459ff08b8c48f7c5e.zip
Remove masked for removal packages
Diffstat (limited to 'dev-util/reviewboard/files')
-rw-r--r--dev-util/reviewboard/files/1.7.28-docs.patch52
-rw-r--r--dev-util/reviewboard/files/CVE-2013-2209-sec.patch74
2 files changed, 0 insertions, 126 deletions
diff --git a/dev-util/reviewboard/files/1.7.28-docs.patch b/dev-util/reviewboard/files/1.7.28-docs.patch
deleted file mode 100644
index 99741d2e40d0..000000000000
--- a/dev-util/reviewboard/files/1.7.28-docs.patch
+++ /dev/null
@@ -1,52 +0,0 @@
-Avoid un-needed downloading od object.infv files, fix conf.py for docs/manual
-diff -ur ReviewBoard-1.7.7.1.orig/docs/codebase/conf.py ReviewBoard-1.7.7.1/docs/codebase/conf.py
---- docs/codebase/conf.py 2013-04-22 04:40:29.000000000 +0800
-+++ docs/codebase/conf.py 2013-06-16 15:35:59.639256650 +0800
-@@ -197,7 +197,3 @@
-
- # If false, no module index is generated.
- #latex_use_modindex = True
--
--
--# Example configuration for intersphinx: refer to the Python standard library.
--intersphinx_mapping = {'http://docs.python.org/dev': None}
-diff -ur ReviewBoard-1.7.7.1.orig/docs/manual/conf.py ReviewBoard-1.7.7.1/docs/manual/conf.py
---- docs/manual/conf.py 2013-04-22 04:40:29.000000000 +0800
-+++ docs/manual/conf.py 2013-06-16 15:36:30.592256658 +0800
-@@ -30,9 +30,14 @@
-
- import reviewboard
- from reviewboard import settings
-+from reviewboard.settings import EXTENSIONS_STATIC_ROOT, ROOT_URLCONF
- from django.core.management import setup_environ
-+from django import conf
-+from settings_local import DATABASES
-+conf.EXTENSIONS_STATIC_ROOT=EXTENSIONS_STATIC_ROOT
-+conf.settings.DATABASES=DATABASES
- setup_environ(settings)
--
-+conf.settings.ROOT_URLCONF=ROOT_URLCONF
-
- # If your extensions are in another directory, add it here. If the directory
- # is relative to the documentation root, use os.path.abspath to make it
-@@ -223,7 +223,4 @@
- latex_show_pagerefs = True
-
-
--# Example configuration for intersphinx: refer to the Python standard library.
--intersphinx_mapping = {'http://docs.python.org/dev': None}
--
- todo_include_todos = True
-diff -ur
-ReviewBoard-1.7.7.1.orig/docs/releasenotes/conf.py
-ReviewBoard-1.7.7.1/docs/releasenotes/conf.py
---- docs/releasenotes/conf.py 2013-04-22 04:40:29.000000000 +0800
-+++ docs/releasenotes/conf.py 2013-06-16 15:36:53.119256665 +0800
-@@ -202,7 +202,3 @@
-
- # If false, no module index is generated.
- #latex_use_modindex = True
--
--
--# Example configuration for intersphinx: refer to the Python standard library.
--intersphinx_mapping = {'https://www.reviewboard.org/docs/manual/dev': None}
diff --git a/dev-util/reviewboard/files/CVE-2013-2209-sec.patch b/dev-util/reviewboard/files/CVE-2013-2209-sec.patch
deleted file mode 100644
index 1b41c3c6f0d2..000000000000
--- a/dev-util/reviewboard/files/CVE-2013-2209-sec.patch
+++ /dev/null
@@ -1,74 +0,0 @@
-From 4aaacbb1e628a80803ba1a55703db38fccdf7dbf Mon Sep 17 00:00:00 2001
-From: Christian Hammond <chipx86@chipx86.com>
-Date: Fri, 21 Jun 2013 23:33:16 -0700
-Subject: [PATCH] Fix an XSS vulnerability in the reviews dropdown.
-
-The reviews dropdown had a bad vulnerability where it would assume the
-user's full name is valid HTML. This allowed the user to craft a script
-tag that would be executed every time the name appeared in the dropdown.
-
-This vulnerability exists in 1.6.x, 1.7.x, and the in-development 1.8.
-There are no known attacks in the wild.
-
-This was reported by Craig Young at Tripwire.
-#---
-# reviewboard/htdocs/media/rb/js/reviews.js | 6 ++++--
-# 1 file changed, 4 insertions(+), 2 deletions(-)
-
-#diff --git a/reviewboard/htdocs/media/rb/js/reviews.js b/reviewboard/htdocs/media/rb/js/reviews.js
-#index 6340744..035872f 100644
-#--- a/reviewboard/htdocs/media/rb/js/reviews.js
-#+++ b/reviewboard/htdocs/media/rb/js/reviews.js
-#@@ -352,10 +352,12 @@ $.fn.reviewsAutoComplete = function(options) {
-# $(this)
-# .autocomplete({
-# formatItem: function(data) {
-#- var s = data[options.nameKey];
-#+ var s = data[options.nameKey],
-#+ desc;
-#
-# if (options.descKey) {
-#- s += " <span>(" + data[options.descKey] + ")</span>";
-#+ desc = $('<div/>').text(data[options.descKey]).html();
-#+ s += " <span>(" + desc + ")</span>";
-# }
-#
- # return s;
-#--
-#1.8.1.6
-diff -ur ReviewBoard-1.7.7.1.orig/reviewboard/htdocs/static/rb/js/reviews.js ReviewBoard-1.7.7.1/reviewboard/htdocs/static/rb/js/reviews.js
---- reviewboard/htdocs/static/rb/js/reviews.js 2013-04-22 04:40:30.000000000 +0800
-+++ reviewboard/htdocs/static/rb/js/reviews.js 2013-06-28 10:38:29.514298074 +0800
-@@ -257,10 +257,12 @@
- $(this)
- .rbautocomplete({
- formatItem: function(data) {
-- var s = data[options.nameKey];
-+ var s = data[options.nameKey],
-+ desc;
-
- if (options.descKey && data[options.descKey]) {
-- s += " <span>(" + data[options.descKey] + ")</span>";
-+ desc = $('<div/>').text(data[options.descKey]).html();
-+ s += " <span>(" + desc + ")</span>";
- }
-
- return s;
-diff -ur ReviewBoard-1.7.7.1.orig/reviewboard/static/rb/js/reviews.js ReviewBoard-1.7.7.1/reviewboard/static/rb/js/reviews.js
---- reviewboard/static/rb/js/reviews.js 2013-04-22 04:40:29.000000000 +0800
-+++ reviewboard/static/rb/js/reviews.js 2013-06-28 10:40:09.922290974 +0800
-@@ -257,10 +257,12 @@
- $(this)
- .rbautocomplete({
- formatItem: function(data) {
-- var s = data[options.nameKey];
-+ var s = data[options.nameKey],
-+ desc;
-
- if (options.descKey && data[options.descKey]) {
-- s += " <span>(" + data[options.descKey] + ")</span>";
-+ desc = $('<div/>').text(data[options.descKey]).html();
-+ s += " <span>(" + desc + ")</span>";
- }
-
- return s;