[tryton-debian-vcs] tryton-client branch debian-wheezy-2.2 updated. debian/2.2.11-1-2-gfa5dcac
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Thu Dec 12 12:57:15 UTC 2013
The following commit has been merged in the debian-wheezy-2.2 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-client.git;a=commitdiff;h=debian/2.2.11-1-2-gfa5dcac
commit fa5dcac73471e335fe30973d4e11ca0d742493e3
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Thu Dec 12 13:56:56 2013 +0100
Releasing debian version 2.2.12-1.
diff --git a/debian/changelog b/debian/changelog
index 984f516..860e43c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-client (2.2.12-1) unstable; urgency=low
+
+ * Merging upstream version 2.2.12.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Thu, 12 Dec 2013 13:39:40 +0100
+
tryton-client (2.2.11-1) unstable; urgency=high
* Merging upstream version 2.2.11.
commit c25d1700501869cf1290dcc275ccc0fcca4b9c80
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Thu Dec 12 13:35:44 2013 +0100
Merging upstream version 2.2.12.
diff --git a/CHANGELOG b/CHANGELOG
index f13ed51..d0edb8c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 2.2.12 - 2013-12-04
+* Bug fixes (see mercurial logs for details)
+
Version 2.2.11 - 2013-11-03
* Bug fixes (see mercurial logs for details)
* Sanitize report file extension
diff --git a/PKG-INFO b/PKG-INFO
index ce9cbba..e1f8efc 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: tryton
-Version: 2.2.11
+Version: 2.2.12
Summary: Tryton client
Home-page: http://www.tryton.org/
Author: B2CK
diff --git a/tryton.egg-info/PKG-INFO b/tryton.egg-info/PKG-INFO
index ce9cbba..e1f8efc 100644
--- a/tryton.egg-info/PKG-INFO
+++ b/tryton.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: tryton
-Version: 2.2.11
+Version: 2.2.12
Summary: Tryton client
Home-page: http://www.tryton.org/
Author: B2CK
diff --git a/tryton/common/common.py b/tryton/common/common.py
index 00ad4bd..16dd909 100644
--- a/tryton/common/common.py
+++ b/tryton/common/common.py
@@ -9,6 +9,7 @@ import gettext
import os
import re
import logging
+from functools import partial
from tryton.config import CONFIG
from tryton.config import TRYTON_ICON, PIXMAPS_DIR, DATA_DIR
import time
@@ -912,8 +913,9 @@ def send_bugtracker(msg):
protocol = 'http'
if ssl or hasattr(socket, 'ssl'):
protocol = 'https'
+ quote = partial(urllib.quote, safe="!$&'()*+,;=:")
server = xmlrpclib.Server(('%s://%s:%s@' + CONFIG['roundup.xmlrpc'])
- % (protocol, user, password), allow_none=True)
+ % (protocol, quote(user), quote(password)), allow_none=True)
if hashlib:
msg_md5 = hashlib.md5(msg).hexdigest()
else:
diff --git a/tryton/version.py b/tryton/version.py
index ae1e1c5..a886797 100644
--- a/tryton/version.py
+++ b/tryton/version.py
@@ -1,7 +1,7 @@
#This file is part of Tryton. The COPYRIGHT file at the top level of
#this repository contains the full copyright notices and license terms.
PACKAGE = "tryton"
-VERSION = "2.2.11"
+VERSION = "2.2.12"
LICENSE = "GPL-3"
WEBSITE = "http://www.tryton.org/"
--
tryton-client
More information about the tryton-debian-vcs
mailing list