Custom Query (2152 matches)
Results (595 - 597 of 2152)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#266 | fixed | Package feed | johnbywater | dread |
Description |
As a user I want to track changes to a particular package. Provide an Atom feed, linked from the package read page. |
|||
#267 | fixed | Diffs for object that is created in that revision | johnbywater | rgrp |
Description |
Currently this raises an exception because there is no package/package_revision in existence at from_revision. |
|||
#270 | fixed | Refactor ckan/lib/importer and ckanclient/loader. | johnbywater | johnbywater |
Description |
There is code to create packages in-process (ckan/lib/importer) and via HTTP (ckanclient/loaders/base). There is also code to read different kinds of package source (Google Spreadsheets spreadsheet, other spreadsheet). Propose to refactor all this to have template method in base command class (subclasses may implement command line interface, graphical user interface, or Web interface), where the template method calls on aggregated strategy objects for: reading raw spreadsheet data from spreadsheet application; for inferring CKAN package entities from the raw spreadsheet data; and for writing package entities to CKAN service. Spreadsheet readers to be factored to allow for variations of spreadsheet application. Raw data inferrers to allow for variations in spreadsheet cell structure. CKAN writer strategies to allow for either CKAN client or direct linking. Actual cases then supported by specifying existing strategies (or defining new ones) in a script that invokes the command class. |