Ian Ward

Results 431 comments of Ian Ward

Love the idea of moving the sql-handling client side and the only server-side data queries being the equivalent of `seek` and `read` calls.

Some ideas from the meeting today: - we can cache tracking information in SOLR along with the dataset metadata - fastest for querying - SOLR index would need to be...

@amercader suggested moving these methods to IDatasetForm - would be more elegant e.g. for handling different types differently and for ckanext-scheming to control the whole dataset form progression @smotornyuk suggested...

> To migrate an existing package, all packages sharing the namespace must be migrated simultaneously. Should we create a new namespace for extensions to allow for the transition? e.g. `ckanext`...

When uploading the last ckanext-scheming release to pypi I got a warning about deprecation of packages with `"-"` in the name that pointed to https://peps.python.org/pep-0625/ Should we migrate/call our new...

It's not the control character check causing the test failure, it's the check for `"`, which isn't valid in postgres. I think the test should be updated to remove the...

`ckan db upgrade` should upgrade all tables including activated plugins. Make sure you run it with the same configuration you're using when running ckan.

instead of having a `package_owner_org_update` action why can't a user use `package_patch` with `owner_org=new_org`?

We have some strange duplication between the group membership code and organization owner_org relationships. If all you care about is organizations switch to joining on the owner_org and you should...

@rantoniuk you could use the dev image instead, i.e. ``` docker compose -f docker-compose.dev.yml exec ckan-dev ckan -c /srv/app/ckan.ini generate fake-data organization ``` @kowh-ai WDYT, should this be in the...