Sean Hammond
Sean Hammond
Run with no config file. Useful for platforms like Heroku or for Docker etc
``` IOError: [Errno 2] No such file or directory: 'example/settings_local.py' ```
ckanserviceprovider always uses the werkzeug proxyfix middleware: https://github.com/ckan/ckan-service-provider/blob/master/ckanserviceprovider/web.py#L130 (apparently to make it work with gunicorn: https://github.com/ckan/ckan-service-provider/commit/99b675d68980e9aa44b27ad8569724651f4e1fa0) But [the docs](http://werkzeug.pocoo.org/docs/0.9/contrib/fixers/#werkzeug.contrib.fixers.ProxyFix) say: > Do not use this middleware in non-proxy setups for...
Hey, the datastorer_upload script is crashing on SA with the traceback below. I think this is the Excel file that it crashes while trying to parse: http://data.sa.gov.au/dataset/liquor-gaming-licences/resource/51139b10-7835-41ea-b6ec-d29964d619cd It'd be good...
This just means you don't have to manually delete a group's memberships before deleting a group, you can just delete the group and all its memberships will be automatically deleted...
When creating a group, the user `my_group.creator` should also be added as the first user in `my_group.members`. With `factories.Group` this currently works correctly as long as no `members` argument is...
Want to change: `import ckanclient` -> `import ckanclient.CatalogClient` `import datastore` -> `import ckanclient.DataStoreClient` Move stuff out of `ckanclient/__init__.py` into `catalog.py`: ``` ckanclient/ catalog.py datastore.py ``` Maybe also do the samething...
Currently files in a new snapshot will only be hard-linked to existing files in the latest snapshot. Find all existing snapshot directories in the target directory and pass rsync a...