Custom Query (2152 matches)
Results (679 - 681 of 2152)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#940 | wontfix | OpenID login via google for same user generates 2 different openid urls | pudo | rgrp |
Description |
This has been noted twice in the last couple of weeks. Checking around my guess is this is due to someone logging in to www.ckan.net and ckan.net. Google generates openid based on the RP (requesting party) which is the requesting domain url unless the openid.realm is set. See:
To fix this we should set the openid.realm (not sure how atm). If this is not possible an alternative is to make sure we redirect all users to a single site url (perhaps using ckan config option site_url, or doing this in apache). Cost: 1h |
|||
#941 | wontfix | Submit apps or ideas for apps related to datasets (extension) | thejimmyg | rgrp |
Description |
The basic purpose of this extension is provide a way to record 'apps' (applications) that relate to datasets in CKAN. Both existing apps and ideas for apps should be permitted. |
|||
#947 | duplicate | Move the assignment of roles to a package on package creation to an extension | rgrp | |
Description |
At the moment the assignment of user roles on package creation is done in setup_user_roles method in ckan/model/authz.py and is hard-coded. This can be a pain to override (you can use a Plugin listening for package create events) and makes some things such as putting system in restricted mode more complex than it should be (see ticket:833). An elegant solution would be to move this into an Extension this simplifies the code and make it easier for people override (just remove the default extension and plugin your own). |