~bkerensa/ubuntu/saucy/moin/1.9.5-5

« back to all changes in this revision

Viewing changes to MoinMoin/auth/openidrp.py

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2008-07-24 23:50:51 UTC
  • Revision ID: james.westby@ubuntu.com-20080724235051-qzjvwmfslyahnjnx
Tags: 1.7.1-1
* New upstream release.  Closes: bug#492233, thanks to Teodor.
  + Fixes bogus empty page creation.  Closes: bug#489146, thanks to
    Sam Morris.
* Recommend python-xml, needed for RSS feeds.  Closes: bug#488777,
  thanks to Sam Morris.
* Add patch 10001 to disable RenderAsDocbook if python-xml is not
  available. Closes: bug#487741, thanks to Franklin Piat.
* Update cdbs snippets:
  + Move dependency cleanup to new local snippet package-relations.mk.
  + Update copyright-check output to more closely match proposed new
    copyright file format.
  + Update README.cdbs-tweaks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
135
135
        query = {}
136
136
        for key in request.form:
137
137
            query[key] = request.form[key][0]
138
 
        return_to = get_multistage_continuation_url(request, self.name,
139
 
                                                    {'oidstage': '1'})
140
 
        info = oidconsumer.complete(query, return_to=return_to)
 
138
        current_url = get_multistage_continuation_url(request, self.name,
 
139
                                                      {'oidstage': '1'})
 
140
        info = oidconsumer.complete(query, current_url)
141
141
        if info.status == consumer.FAILURE:
142
142
            return CancelLogin(_('OpenID error: %s.') % info.message)
143
143
        elif info.status == consumer.CANCEL: