diff --git a/ckan/public/scripts/application.js b/ckan/public/scripts/application.js index 8dbd95af994..245e3f0a1b5 100644 --- a/ckan/public/scripts/application.js +++ b/ckan/public/scripts/application.js @@ -16,7 +16,7 @@ var CKAN = CKAN || {}; }); CKAN.Utils.setupMarkdownEditor($('.markdown-editor')); // bootstrap collapse - $('.collapse').collapse(); + $('.collapse').collapse({toggle: false}); // set up ckan js var config = { endpoint: CKAN.SITE_URL + '/' diff --git a/ckan/templates/_snippet/data-api-help.html b/ckan/templates/_snippet/data-api-help.html index ddef8633078..e1655709b01 100644 --- a/ckan/templates/_snippet/data-api-help.html +++ b/ckan/templates/_snippet/data-api-help.html @@ -26,7 +26,13 @@

- +

The Data API builds directly on ElasticSearch, with a resource API + endpoint being equivalent to a single index 'type' in ElasticSearch. + This means you can directly re-use ElasticSearch + client libraries when connecting to the API endpoint.

+
@@ -53,12 +59,6 @@

-

The Data API builds directly on ElasticSearch, with a resource API - endpoint being equivalent to a single index 'type' in ElasticSearch. - This means you can directly re-use ElasticSearch - client libraries when connecting to the API endpoint.

diff --git a/ckan/templates/package/resource_read.html b/ckan/templates/package/resource_read.html index 2c34db9af12..b1ed8ea9343 100644 --- a/ckan/templates/package/resource_read.html +++ b/ckan/templates/package/resource_read.html @@ -22,10 +22,6 @@ height: 28px; } - .header .recline-query-editor .text-query input { - height: 20px; - } - .recline-query-editor .pagination ul { margin: 0; padding: 0; diff --git a/doc/ckan_form_guidance.doc b/doc/ckan_form_guidance.doc deleted file mode 100644 index c65bf618d59..00000000000 Binary files a/doc/ckan_form_guidance.doc and /dev/null differ diff --git a/doc/datastore.rst b/doc/datastore.rst index d656d64ad51..395de84ce36 100644 --- a/doc/datastore.rst +++ b/doc/datastore.rst @@ -3,8 +3,8 @@ DataStore and the Data API ========================== The CKAN DataStore provides a database for structured storage of data together -with a powerful Web API, all seamlessly integrated into the CKAN interface and -authorization system. +with a powerful Web-accesible Data API, all seamlessly integrated into the CKAN +interface and authorization system. Overview ========