[ckan-changes] [ckan/ckan] 81fd9e: [#3180] backport html5lib dep
GitHub
noreply at github.com
Thu Aug 25 15:09:17 UTC 2016
Branch: refs/heads/release-v2.5.3
Home: https://github.com/ckan/ckan
Commit: 81fd9e4829901617a27ab31a86082ce477997175
https://github.com/ckan/ckan/commit/81fd9e4829901617a27ab31a86082ce477997175
Author: Ian Ward <ian at excess.org>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M requirements.txt
Log Message:
-----------
[#3180] backport html5lib dep
Commit: a4520def1f7bf167579333cc2d7fa5a543dae371
https://github.com/ckan/ckan/commit/a4520def1f7bf167579333cc2d7fa5a543dae371
Author: yingqiaogit <qiaoying at hotmail.com>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M ckan/controllers/package.py
Log Message:
-----------
retrieve the title of a package in a selected lanuage rather than in the form of a dictionary when a multi-language plugin is used
Conflicts:
ckan/controllers/package.py
Commit: 8871a6707c3736c8d8b526a864b861dcfc81db44
https://github.com/ckan/ckan/commit/8871a6707c3736c8d8b526a864b861dcfc81db44
Author: amercader <amercadero at gmail.com>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M ckan/logic/action/delete.py
M ckan/tests/logic/action/test_get.py
Log Message:
-----------
[#3078] Don't show deleted users/datasets on member_list
The members table is stateful, ie it has a state=active/deleted field which
was not updated when deleting a dataset or user.
This commit sets the state of all user/dataset memberships to deleted
and adds some tests
Commit: faddd58983cf163e4a97677179b344f9f3eba754
https://github.com/ckan/ckan/commit/faddd58983cf163e4a97677179b344f9f3eba754
Author: Florian Brucker <florian.brucker at mb.karlsruhe.de>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M ckan/ckan_nose_plugin.py
M ckan/lib/base.py
M ckan/lib/datapreview.py
M ckan/lib/helpers.py
M ckan/logic/action/get.py
Log Message:
-----------
Fix #3093: Incorrect usage of `str.split`.
Commit: b928013639381570f5bdd5be4a32ddeafa790e00
https://github.com/ckan/ckan/commit/b928013639381570f5bdd5be4a32ddeafa790e00
Author: amercader <amercadero at gmail.com>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M ckan/logic/action/create.py
M ckan/logic/schema.py
M ckan/tests/logic/action/test_create.py
Log Message:
-----------
[#3108] Raise validation errors on group/org_member_create
Add not_missing to the schema and raise the errors on the action. Adds
some tests as well
Commit: 0fd0f80b2493c50c66d11f0f7ce160f44a292795
https://github.com/ckan/ckan/commit/0fd0f80b2493c50c66d11f0f7ce160f44a292795
Author: amercader <amercadero at gmail.com>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M ckan/logic/schema.py
Log Message:
-----------
[#3108] Allow to renferece groups and users by id or name
Conflicts:
ckan/logic/schema.py
Commit: 2a94a866fb41e86dde39b640726d355c42e5281f
https://github.com/ckan/ckan/commit/2a94a866fb41e86dde39b640726d355c42e5281f
Author: amercader <amercadero at gmail.com>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M ckan/tests/logic/action/test_create.py
Log Message:
-----------
[#3108] Add back plugin unload command
Commit: c00e192d447d5c183b227cebd00a2c793a21bade
https://github.com/ckan/ckan/commit/c00e192d447d5c183b227cebd00a2c793a21bade
Author: amercader <amercadero at gmail.com>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M ckan/logic/schema.py
Log Message:
-----------
[#3108] Remove redundant validator
Commit: 4b5eee8dc6517d3eb5b708b3dd64bf1afebf8e8a
https://github.com/ckan/ckan/commit/4b5eee8dc6517d3eb5b708b3dd64bf1afebf8e8a
Author: Florian Brucker <florian.brucker at mb.karlsruhe.de>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M ckan/templates/package/snippets/resource_view.html
M ckan/tests/controllers/test_package.py
Log Message:
-----------
[#3128] Render resource view descriptions as Markdown.
Previously, CKAN rendered resource view descriptions as plain text, in
contrast to the help text given in the resource view edit form which
says that Markdown is supported.
Conflicts:
ckan/tests/controllers/test_package.py
Commit: 247ced5491278891fab24a1817aedbe0aa91c4b4
https://github.com/ckan/ckan/commit/247ced5491278891fab24a1817aedbe0aa91c4b4
Author: Sergey Motornyuk <sergey.motornyuk at linkdigital.com.au>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M ckan/public/base/javascript/modules/resource-view-filters-form.js
Log Message:
-----------
Fix autocomplete request url.
Wrapped previously hardcoded url into ckan.url function
Commit: 25a57a6f262c9579cbfc7ab88f23dbe716f7c95c
https://github.com/ckan/ckan/commit/25a57a6f262c9579cbfc7ab88f23dbe716f7c95c
Author: amercader <amercadero at gmail.com>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M ckan/logic/action/update.py
M ckan/tests/logic/action/test_update.py
Log Message:
-----------
[#3199] Update revisions on bulk operations
`bulk_update_private`, `bulk_update_public` and ``bulk_update_delete`
changed the `package` table and the search index but not the revision
table, which caused the changes to not be reflected everywhere.
This fixes the model query and adds a bunch of tests.
Conflicts:
ckan/tests/logic/action/test_update.py
Commit: cf5dc50639e9f6160a97a6cdd408879ea14bf150
https://github.com/ckan/ckan/commit/cf5dc50639e9f6160a97a6cdd408879ea14bf150
Author: amercader <amercadero at gmail.com>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M ckan/logic/action/update.py
M ckan/tests/logic/action/test_update.py
Log Message:
-----------
[#3199] Only update the latest revision
Compare: https://github.com/ckan/ckan/compare/61f020b537c3...cf5dc50639e9
More information about the ckan-changes
mailing list