Custom Query (1173 matches)
Results (199 - 201 of 1173)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #5381 | cant-reproduce | API inbox.major queries faulty | ||
| Description |
Disjoint queries occasionally return the same activity: |
|||
| #761 | fixed | [Python 2.6] OrderedDict ImportError | ||
| Description |
When using Python 2.6, the
The source of error is in the Fortunately, we've ordereddict[3]. When I imported 'OrderedDict' from this module. Bingo, it worked[4]. A possible fix for this bug would be to first test whether importing OrderedDict from 'collections' doesn't throw an ImportError, if it does (meaning the user has Python 2.6), import OrderedDict from 'ordereddict'. [1]: http://pastebin.com/c06J5H7j [2]: In Python 2.6, there is no OrderedDict in 'collections'. [3]: https://pypi.python.org/pypi/ordereddict [4]: here is the diff http://pastebin.com/VYtQFW3a |
|||
| #528 | fixed | pagination fails from user page | ||
| Description |
I experienced a problem, when trying to go to the second page of a user (https://example.org/u/username/). I just got a Server Error. After trying around, I could find out, that it had to do with a wrong URL in the NextPage Link. Instead of: https://example.org/u/username/gallery/?page=2 it should have been: https://example.org/u/username/?page=2 In the file: mediagoblin/templates/mediagoblin/utils/pagination.html the "base_url" is set by "request.full_path". I tried to set it instead with "request.urlgen('mediagoblin.user_pages.user_home', user= request.user.username)" and it worked. But I am not sure if this would interfere with some other parts... thanks in advance |
|||
