Custom Query (2152 matches)
Results (682 - 684 of 2152)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#953 | fixed | Add tagline/description to template and set in configuration | rgrp | rgrp |
Description |
Have a tagline / description are under main title and set if from ckan.site_description config variable. |
|||
#954 | fixed | [super] API version 3 | kindly | rgrp |
Description |
Child tickets:
Move to a format that has a separate responseHeader and response. A standard package response{ responseHeader: { status: 0, } response: {package-dict} } On error: { responseHeader: { status: {err-code}, error: 'message' } response: none } A search queryBased directly on solr. { responseHeader: { status: 0, } response: { numFound: 5, start: 0 docs: [ ] } } IssuesThis is a breaking change for clients References |
|||
#960 | fixed | Support non-ascii character in internal error messages | pudo | rgrp |
Description |
Just saw an error like the following which looks like it is to do with having a user object with non-ascii characters in it. Either get rid of 'cast' to str type here or do it in a unicode aware way. Should do this not just here but everywhere we can find in the code base. Module ckan.controllers.package:302 in edit << am_authz = self.authorizer.am_authorized(c, model.Action.EDIT, pkg) if not am_authz: abort(401, str(gettext('User %r not authorized to edit %s') % (c.user, id))) auth_for_change_state = self.authorizer.am_authorized(c, model.Action.CHANGE_STATE, pkg) >> abort(401, str(gettext('User %r not authorized to edit %s') % (c.user, id))) UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 1: ordinal not in range(128) EstimateCost: 1h |
Note: See TracQuery
for help on using queries.