Custom Query (2152 matches)
Results (2098 - 2100 of 2152)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1462 | fixed | Multi-Instance CKAN Solr Search Issues | amercader | thejimmyg |
Description |
With the 1.5 package release, CKAN instances over-write each other's indexes. Adria has a fix. I'd like to see a new CKAN 1.5.1 release with the Solr changes merged and the Solr site ID set up as part of the install ckan.site_id = dgu-os.okfn.org. I'd also like the ability to search on ID and to have the ID directly visible on the package page. We need to decide how to do this upgrade without affecting existing CKAN solr indexes. |
|||
#1469 | fixed | Geo-spatial search on the front end | amercader | thejimmyg |
Description |
Now that we have a geospatial search API, we should build a front-end that integrates with the existing search for displaying results. |
|||
#1490 | fixed | Standardize output from package listings coming from the logic layer | amercader | amercader |
Description |
Right now, the two logic functions that return a list of packages (package_search [1] and group_packages_list [2])use custom functions to generate the output dict. That's suboptimal because:
In general only the functions present in lib/dictization/model_dictize.py should be used to build the output of a logic function, in that case package_dictize. If necessary, they can be modified to include missing properties, like on this particular case the "isopen" property, needed by the template renderer. [1] https://github.com/okfn/ckan/blob/master/ckan/logic/action/get.py#L685 [2] https://github.com/okfn/ckan/blob/master/ckan/logic/action/get.py#L442 |