Custom Query (2152 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (1126 - 1128 of 2152)

Ticket Resolution Summary Owner Reporter
#950 fixed Move importer controller to ckanext-importer dread dread

Reported by dread, 3 years ago.

Description

ckan/controllers/importer.py provides a Pylons UI for importing spreadsheet data into CKAN. This would better live in an extension than core CKAN.

In the same move, ckan/tests/misc/test_spreadsheet_importer.py, which is used by importer.py as well as various dgu data importers, should move into ckanext.

#953 fixed Add tagline/description to template and set in configuration rgrp rgrp

Reported by rgrp, 3 years ago.

Description

Have a tagline / description are under main title and set if from ckan.site_description config variable.

#954 fixed [super] API version 3 kindly rgrp

Reported by rgrp, 3 years ago.

Description

Child tickets:

  • #1107 Move package autocomplete from package controller and move to API
  • #1087 version and contact info api call

Move to a format that has a separate responseHeader and response.

A standard package response

{
  responseHeader: {
    status: 0,
  }    
  response: {package-dict}
}

On error:

{
  responseHeader: {
    status: {err-code},
    error: 'message'
  }    
  response: none
}

A search query

Based directly on solr.

{
  responseHeader: {
    status: 0,
  }    
  response: {
    numFound: 5,
    start: 0
    docs: [
    ]
  }
}

Issues

This is a breaking change for clients

References

Note: See TracQuery for help on using queries.