Custom Query (2152 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (25 - 27 of 2152)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Ticket Resolution Summary Owner Reporter
#1333 fixed Move form converters to ckan core amercader amercader

Reported by amercader, 3 years ago.

Description

Functions like convert_to_extras and convert_from_extras will be widely used from extensions and should be on ckan core.

#1334 fixed "AttributeError: 'NoneType' object has no attribute 'name'" exception when logging in amercader amercader

Reported by amercader, 3 years ago.

Description

On same cases this exception is thrown when logging in:

File '/home/adria/dev/envs/iati/src/ckan/ckan/controllers/user.py', line 252 in logged_in
  user_dict = get_action('user_show')(context,data_dict)
File '/home/adria/dev/envs/iati/src/ckan/ckan/logic/action/get.py', line 414 in user_show
  revision_dict = revision_show(context,{'id':revision.id})
File '/home/adria/dev/envs/iati/src/ckan/ckan/logic/action/get.py', line 332 in revision_show
  ref_package_by=ref_package_by)
File '/home/adria/dev/envs/iati/src/ckan/ckan/model/__init__.py', line 317 in revision_as_dict
  for pkg in revision.packages]
AttributeError: 'NoneType' object has no attribute 'name'
#1337 fixed Group extras are JSON endoded in the REST API responses amercader amercader

Reported by amercader, 3 years ago.

Description

Instead of this:

extras: {
type: ""Primary source""
license_id: ""localauth-withrights""
publisher_frequency: ""2Pre\u00f1o \u20ac $ \u00e0dri\u00e0""
}

we should return this:

extras: {
type: "Primary source",
license_id: "localauth-withrights",
publisher_frequency: "2Preño € $ àdrià",
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Note: See TracQuery for help on using queries.