[ckan-changes] commit/ckan: 3 new changesets
Bitbucket
commits-noreply at bitbucket.org
Fri Sep 30 14:44:44 UTC 2011
3 new changesets in ckan:
http://bitbucket.org/okfn/ckan/changeset/4dd7254b11ca/
changeset: 4dd7254b11ca
branch: release-v1.4.3
user: dread
date: 2011-09-14 12:26:59
summary: [branch] close.
affected #: 0 files (-1 bytes)
http://bitbucket.org/okfn/ckan/changeset/b434c5be83d8/
changeset: b434c5be83d8
branch: release-v1.4.3.1
user: dread
date: 2011-09-30 12:11:43
summary: [tests][s]: #1365 Added test to demonstrate the way that ckanclient sends search parameters, in anticipation of solr search changes on default branch.
affected #: 1 file (-1 bytes)
--- a/ckan/tests/lib/test_package_search.py Fri Sep 30 10:58:40 2011 +0100
+++ b/ckan/tests/lib/test_package_search.py Fri Sep 30 11:11:43 2011 +0100
@@ -99,6 +99,14 @@
result = self.backend.query_for(model.Package).run(query=u'Expenditure Government China')
assert len(result['results']) == 0, self._pkg_names(result)
+ def test_2_title_as_q_parameter(self):
+ result = self.backend.query_for(model.Package).run(query=u'title:Opengov.se')
+ assert self._pkg_names(result) == 'se-opengov', self._pkg_names(result)
+
+ def test_2_title_as_own_parameter(self):
+ result = self.backend.query_for(model.Package).run(fields={'title': u'Opengov.se'})
+ assert self._pkg_names(result) == 'se-opengov', self._pkg_names(result)
+
def test_3_licence(self):
## this should result, but it is here to check that at least it does not error
result = self.backend.query_for(model.Package).run(query=u'license:"OKD::Other (PublicsDomain)"')
http://bitbucket.org/okfn/ckan/changeset/d15d81aa63cf/
changeset: d15d81aa63cf
branch: release-v1.4.3.1
user: dread
date: 2011-09-30 16:42:01
summary: [MANIFEST.in]: #1367 Added in migrate.cfg which may have stopped migration operations in PyPI downloads.
affected #: 2 files (-1 bytes)
--- a/CHANGELOG.txt Fri Sep 30 11:11:43 2011 +0100
+++ b/CHANGELOG.txt Fri Sep 30 15:42:01 2011 +0100
@@ -1,6 +1,17 @@
CKAN CHANGELOG
++++++++++++++
+v1.4.3.1 2011-09-30
+===================
+Minor:
+ * Added files to allow debian packaging of CKAN
+ * Added Catalan translation
+
+Bug fixes:
+ * Incorrect Group creation form parameter caused exception (#1347)
+ * Incorrect AuthGroup creation form parameter caused exception (#1346)
+
+
v1.4.3 2011-09-13
=================
Major:
--- a/MANIFEST.in Fri Sep 30 11:11:43 2011 +0100
+++ b/MANIFEST.in Fri Sep 30 15:42:01 2011 +0100
@@ -2,7 +2,7 @@
recursive-include ckan/public *
recursive-include ckan/config *.ini
recursive-include ckan/templates *
-recursive-include ckan/requires *
recursive-include ckan *.ini
prune .hg
include CHANGELOG.txt
+include ckan/migration/migrate.cfg
\ No newline at end of file
Repository URL: https://bitbucket.org/okfn/ckan/
--
This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
More information about the ckan-changes
mailing list