summaryrefslogtreecommitdiff
path: root/community-testing/cherokee/fix-ctk-path-handler-match.patch
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2012-02-11 12:04:22 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2012-02-11 12:04:22 +0100
commit020644b613452cc7ab48474b463e4a9d1088d8a3 (patch)
treeb1e2ae353ab1f58e0513bf5cef15ea87eacba1ff /community-testing/cherokee/fix-ctk-path-handler-match.patch
parent9268c5eeb9d68cd786f5a7beaed3b5672adb5287 (diff)
parent9d1489b877a1fa7c2674cf1f744804db42d93bfc (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/librep/PKGBUILD extra/pixman/PKGBUILD
Diffstat (limited to 'community-testing/cherokee/fix-ctk-path-handler-match.patch')
-rw-r--r--community-testing/cherokee/fix-ctk-path-handler-match.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/community-testing/cherokee/fix-ctk-path-handler-match.patch b/community-testing/cherokee/fix-ctk-path-handler-match.patch
deleted file mode 100644
index abd20c5ef..000000000
--- a/community-testing/cherokee/fix-ctk-path-handler-match.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff -upr cherokee-1.2.99.orig/admin/CTK/CTK/Server.py cherokee-1.2.99/admin/CTK/CTK/Server.py
---- cherokee-1.2.99.orig/admin/CTK/CTK/Server.py 2011-06-06 14:17:35.000000000 +0300
-+++ cherokee-1.2.99/admin/CTK/CTK/Server.py 2011-09-16 03:31:06.000000000 +0300
-@@ -121,8 +121,11 @@ class ServerHandler (pyscgi.SCGIHandler)
- my_thread.scgi_conn = self
- my_thread.request_url = url
-
-+ # Drop the query string before matching against the handlers
-+ path = url.split('?', 1)[0]
-+
- for published in server._web_paths:
-- if re.match (published._regex, url):
-+ if re.match (published._regex, path):
- # POST
- if published._method == 'POST':
- post = self._process_post()