<!DOCTYPE html>
<html>
  <head>
</head>
<body style='font: 12pt Roboto, "DejaVu Sans", Arial; margin-left: 5px; margin-right: 5px;'>
<div id="entry">
<h1 style='font: 12pt Roboto, "DejaVu Sans", Arial; display:block; background: #c0cf88; border-bottom: solid 3px #573; padding: 5px; margin-top: 0px; color: #573;'><a href="https://kallithea-scm.org/repos/kallithea/changeset/18c9eb22c29cf06969f2bc886efc096a861a2e6a" style="text-decoration: none; font-weight: bold; color: #573;">auth: Fix tomcat throwing '505 HTTP Version Not Supported' when trying to log in to Atlassian Crowd with usernames that contain spaces  If you try to log in ...</a></h1>
<div id="body">
Robert James Dennington committed on 2016-01-15 14:38:27<br />branch: stable<br />changeset: <a href="https://kallithea-scm.org/repos/kallithea/changeset/18c9eb22c29cf06969f2bc886efc096a861a2e6a">18c9eb22</a><pre>auth: Fix tomcat throwing '505 HTTP Version Not Supported' when trying to log in to Atlassian Crowd with usernames that contain spaces

If you try to log in to Kallithea via the Crowd auth module, and the username
contains a space, it fails. Tomcat on the Crowd server gives error '505 HTTP
Version Not Supported'.

Further investigation showed that the username was not being quoted. E.g. for
the user 'test account', the REST URL should contain 'test%20account' but
actually was containing 'test account'. When Tomcat received this HTTP request
it interprets the word 'account' as the HTTP version because of the space. This
obviously isn't a valid HTTP version.

This bug is fixed by using urllib2.quote on the username to ensure that special
characters are correctly quoted. After making that change on my local install,
the user 'test account' was able to log in successfully.

 M kallithea/lib/auth_modules/auth_crowd.py (2 lines added, 2 lines removed)</pre>
</div>
</div>
</div>
</body>
</html>

<!DOCTYPE html>
<html>
  <head>
</head>
<body style='font: 12pt Roboto, "DejaVu Sans", Arial; margin-left: 5px; margin-right: 5px;'>
<div id="entry">
<h1 style='font: 12pt Roboto, "DejaVu Sans", Arial; display:block; background: #c0cf88; border-bottom: solid 3px #573; padding: 5px; margin-top: 0px; color: #573;'><a href="https://kallithea-scm.org/repos/kallithea/changeset/dba6c44f0a3097fd7833d9b68aae73e85051b61d" style="text-decoration: none; font-weight: bold; color: #573;">auth: Fix bug where usernames are not consistently capitalized when using crowd login  If you try to log in to Kallithea via the Crowd auth module then the c...</a></h1>
<div id="body">
Robert James Dennington committed on 2016-01-15 14:55:27<br />branch: stable<br />tag: tip<br />changeset: <a href="https://kallithea-scm.org/repos/kallithea/changeset/dba6c44f0a3097fd7833d9b68aae73e85051b61d">dba6c44f</a><pre>auth: Fix bug where usernames are not consistently capitalized when using crowd login

If you try to log in to Kallithea via the Crowd auth module then the
capitalization of your username in Kallithea changes on every login based on
how you capitalized it in the login form.

E.g. Log in with "TestDude", username is entered as "TestDude" then log in
again, but this time as "tesTduDe", and your username gets changed to
"tesTduDe". etc.

Fix for this is to use the 'name' field returned from Crowd when saving the
username. This way the username is always capitalized identically to the record
in Crowd.

 M kallithea/lib/auth_modules/auth_crowd.py (1 lines added, 1 lines removed)</pre>
</div>
</div>
</div>
</body>
</html>