deb.li bugtracker

Please add and discuss bugs and issues with deb.li here.

Hey Bernd, with python-sqlalchemy 0.6.1 some things have changed and so the deb.li code does not work anymore (godebian-server.py will fail to start). I have two small fixes that makes the code work again. I have uploaded the patch to patch-for-debli-startup.patch


deb.li is mangling some percent-encoded characters. For example:

jwilk@moszumanska:~$ ~bzed/godebian-client/add_url 'http://www.example.com/?q=foo%2Bbar'
xekG
jwilk@moszumanska:~$ curl -s --include 'http://deb.li/xekG' | grep -m1 ^Location
Location: http://www.example.com/?q=foo+bar

Note that %2B has been replaced with + in the query string, but these are entirely different things: the former denotes the plus character, while the latter denotes the space character.


There is a patch series from Paul Wise attached to this page: [....]