[ckan-changes] [okfn/ckan] 2cb65e: [#707] Implement group_purge action function
GitHub
noreply at github.com
Thu Jul 18 10:37:05 UTC 2013
Branch: refs/heads/1045-deprecate-groups-available-and-organizations-available
Home: https://github.com/okfn/ckan
Commit: 2cb65e9fb4efc6fae37f2fcd7d4f3de7e7014690
https://github.com/okfn/ckan/commit/2cb65e9fb4efc6fae37f2fcd7d4f3de7e7014690
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-03-27 (Wed, 27 Mar 2013)
Changed paths:
M ckan/logic/action/delete.py
M ckan/logic/auth/delete.py
Log Message:
-----------
[#707] Implement group_purge action function
This is a rough first implementation, needs tests.
Commit: 2933dc28c2d609b84845bed1182160c870a83b6a
https://github.com/okfn/ckan/commit/2933dc28c2d609b84845bed1182160c870a83b6a
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-03-28 (Thu, 28 Mar 2013)
Changed paths:
M ckan/logic/auth/delete.py
Log Message:
-----------
[#707] Add args to group and org purge auth functions
Oops :)
Commit: 24f686da6cfee95b200e93ec91fafa8949a5de15
https://github.com/okfn/ckan/commit/24f686da6cfee95b200e93ec91fafa8949a5de15
Author: tobes <toby.junk at gmail.com>
Date: 2013-04-23 (Tue, 23 Apr 2013)
Changed paths:
M ckan/logic/auth/create.py
Log Message:
-----------
[#792] Fix auth function
Commit: 6322751558babe1bcacaf4ef8726a90087a0a830
https://github.com/okfn/ckan/commit/6322751558babe1bcacaf4ef8726a90087a0a830
Author: John Martin <me at johnmart.in>
Date: 2013-05-29 (Wed, 29 May 2013)
Changed paths:
M ckan/config/routing.py
M ckan/controllers/user.py
M ckan/public/base/less/dashboard.less
M ckan/public/base/less/nav.less
M ckan/templates/user/dashboard.html
A ckan/templates/user/dashboard_datasets.html
A ckan/templates/user/dashboard_groups.html
A ckan/templates/user/dashboard_organizations.html
Log Message:
-----------
[#626] Tweaks dashboard to have 3 new subpages
A my datasets, my orgs and my groups pages. Each one showing ownership of the
relevant items within it.
Commit: ec87d91cb6bd2013337e6c527410d2bd650820ec
https://github.com/okfn/ckan/commit/ec87d91cb6bd2013337e6c527410d2bd650820ec
Author: John Martin <me at johnmart.in>
Date: 2013-05-29 (Wed, 29 May 2013)
Changed paths:
M ckan/templates/user/edit.html
M ckan/templates/user/edit_base.html
Log Message:
-----------
[#506] Tidys up views to have better breadcrumbs for editin user
Commit: b81a5fb1e26f3606e91c5b4bf2ab85c084abce1e
https://github.com/okfn/ckan/commit/b81a5fb1e26f3606e91c5b4bf2ab85c084abce1e
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-04 (Tue, 04 Jun 2013)
Changed paths:
M ckan/tests/functional/api/test_activity.py
Log Message:
-----------
[#953] Add API tests for private dataset activities
Add tests that no activities are emitted when creating, updating or
deleting private datasets via the API.
These could be more detailed, e.g. test adding, deleting and updating
groups as well, or moving the dataset between groups or between orgs, or
testing what happens when a private dataset is made public or
vice-versa.
Commit: c0fffa78fc4e4d526fe7da9d2f5c06208ac65db7
https://github.com/okfn/ckan/commit/c0fffa78fc4e4d526fe7da9d2f5c06208ac65db7
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-04 (Tue, 04 Jun 2013)
Changed paths:
M ckan/templates/package/snippets/package_basic_fields.html
M ckan/templates/package/snippets/package_metadata_fields.html
Log Message:
-----------
[#953] Move new dataset visibility to first stage
Move the visibility option (public or private) when creating a dataset
to the first stage of the dataset creation form. This fixes the issue
(#953) that an activity is emitted when creating private datasets. Since
the dataset is actually created when the first form is submitted, and
the public/private setting is not chosen until the third form, the
dataset is public at the moment when it's created and an activity is
emitted.
It seems to make a lot more sense fo the visibility option to be on the
first form next to the organization option anyway.
Fixes #953.
Commit: ee65f70292ae80f1843a37aeaaeea1f3edb105a6
https://github.com/okfn/ckan/commit/ee65f70292ae80f1843a37aeaaeea1f3edb105a6
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-04 (Tue, 04 Jun 2013)
Changed paths:
M ckan/logic/auth/get.py
Log Message:
-----------
[#953] Allow anyone to read datasets with no org
If a dataset has no owner organization, authorize anyone to read that
dataset (regardless of whether it's public or private).
Commit: 3b9ae1c938d7a628ee3086d79f5ad562a0dd9f0f
https://github.com/okfn/ckan/commit/3b9ae1c938d7a628ee3086d79f5ad562a0dd9f0f
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-04 (Tue, 04 Jun 2013)
Changed paths:
M ckan/templates/package/snippets/package_basic_fields.html
Log Message:
-----------
[#953] Fix display or Organization and Visibility dropdowns
Fix the logic for displaying the Organization and Visibility dropdowns
when creating or updating a dataset.
We really need frontend tests for this.
I tested these cases manually:
User is not logged in and anon_create_dataset = True: neither
Organization nor Visibility shows, either when creating or when updating
a dataset.
User is logged in, but is not a member of any organization: neither
Organization nor Visibility shows, either when creating or when updating
a dataset. Tested both when the site has no organizations and when the
site does have orgs but user is not a member of any.
User is logged in, and is a member of an organization: Both Organization
and Visibility show when creating a dataset.
When creating a private dataset, no activities appear in the activity
stream.
User is logged in, and is a member of an organization, but dataset is
not a member of any org: neither Organization nor Visibility shows when
updating a dataset.
User is logged in, and is a member of an organization, and dataset is a
member of any org: Visibility shows but Organization does not show when
updating a dataset.
User is sysadmin, site has no orgs: neither Organization nor Visibility
shows when creating or updating a dataset.
User is sysadmin, site does have orgs: both Organization and Visibility
show when creating or updating a dataset.
Commit: 51fd21df16ab873654729a6911966df2c675d05a
https://github.com/okfn/ckan/commit/51fd21df16ab873654729a6911966df2c675d05a
Author: Ian Ward <ian at excess.org>
Date: 2013-06-04 (Tue, 04 Jun 2013)
Changed paths:
M ckan/logic/action/update.py
M ckan/tests/logic/test_action.py
Log Message:
-----------
resource_update: use package_update like resource_create does
Commit: d07da3b0b0b182f9d70fd00a87dfae3ab4c4db66
https://github.com/okfn/ckan/commit/d07da3b0b0b182f9d70fd00a87dfae3ab4c4db66
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-04 (Tue, 04 Jun 2013)
Changed paths:
M ckan/logic/auth/get.py
Log Message:
-----------
[#953] Don't show inactive datasets
Don't allow non-sysadmins to read inactive datasets.
This fixes a test that was failing.
Commit: f83b0c70e2766317846a7a8cdb43ba74924c125f
https://github.com/okfn/ckan/commit/f83b0c70e2766317846a7a8cdb43ba74924c125f
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-05 (Wed, 05 Jun 2013)
Changed paths:
M ckan/logic/schema.py
M ckan/logic/validators.py
M ckan/tests/functional/api/model/test_package.py
Log Message:
-----------
[#953] Don't allow private datasets with no organization
Add a validator to prevent private datasets with no organization from
being created by package_create or package_update.
Commit: 972b1c855f55110624e9d71cbf42c8b63b4e51f9
https://github.com/okfn/ckan/commit/972b1c855f55110624e9d71cbf42c8b63b4e51f9
Author: John Martin <me at johnmart.in>
Date: 2013-06-06 (Thu, 06 Jun 2013)
Changed paths:
A ckan/public/base/javascript/modules/dataset-visibility.js
M ckan/public/base/javascript/resource.config
M ckan/templates/package/snippets/package_basic_fields.html
Log Message:
-----------
[#953] Adds JS module for disabling visibility field on dataset creation
Essentially we get the current value of the visibility dropdown and then if no
org is selected then we disable the visibilty dropdown and set it to be public.
Commit: 5d1712effbb58bf690c0826ca6dbfa2266b77c4e
https://github.com/okfn/ckan/commit/5d1712effbb58bf690c0826ca6dbfa2266b77c4e
Author: tobes <toby.junk at gmail.com>
Date: 2013-06-11 (Tue, 11 Jun 2013)
Changed paths:
M ckan/controllers/user.py
M ckan/lib/helpers.py
M ckan/logic/action/get.py
M ckan/templates/group/snippets/group_item.html
M ckan/templates/organization/snippets/organization_item.html
M ckan/templates/user/dashboard_groups.html
M ckan/templates/user/dashboard_organizations.html
Log Message:
-----------
[#626] Use helper functions to get orgs/groups for dashboard plus cleanups
Commit: 6e6e8d7b258a26497374afa80cd00ae0f9a48454
https://github.com/okfn/ckan/commit/6e6e8d7b258a26497374afa80cd00ae0f9a48454
Author: tobes <toby.junk at gmail.com>
Date: 2013-06-11 (Tue, 11 Jun 2013)
Changed paths:
A .pipignore
M .tx/config
A CHANGELOG.rst
R CHANGELOG.txt
M CONTRIBUTING.rst
M LICENSE.txt
M bin/travis-build
M ckan/config/deployment.ini_tmpl
M ckan/config/environment.py
A ckan/config/install.py
M ckan/config/who.ini
M ckan/controllers/api.py
M ckan/controllers/group.py
M ckan/controllers/home.py
M ckan/controllers/package.py
M ckan/controllers/user.py
M ckan/i18n/bg/LC_MESSAGES/ckan.mo
M ckan/i18n/bg/LC_MESSAGES/ckan.po
M ckan/i18n/ca/LC_MESSAGES/ckan.mo
M ckan/i18n/ca/LC_MESSAGES/ckan.po
M ckan/i18n/check_po_files.py
M ckan/i18n/ckan.pot
M ckan/i18n/cs_CZ/LC_MESSAGES/ckan.mo
M ckan/i18n/cs_CZ/LC_MESSAGES/ckan.po
M ckan/i18n/de/LC_MESSAGES/ckan.mo
M ckan/i18n/de/LC_MESSAGES/ckan.po
A ckan/i18n/dv/LC_MESSAGES/ckan.mo
A ckan/i18n/dv/LC_MESSAGES/ckan.po
M ckan/i18n/el/LC_MESSAGES/ckan.mo
M ckan/i18n/el/LC_MESSAGES/ckan.po
A ckan/i18n/en_GB/LC_MESSAGES/ckan.mo
A ckan/i18n/en_GB/LC_MESSAGES/ckan.po
M ckan/i18n/es/LC_MESSAGES/ckan.mo
M ckan/i18n/es/LC_MESSAGES/ckan.po
A ckan/i18n/es_AR/LC_MESSAGES/ckan.mo
A ckan/i18n/es_AR/LC_MESSAGES/ckan.po
A ckan/i18n/fa_IR/LC_MESSAGES/ckan.mo
A ckan/i18n/fa_IR/LC_MESSAGES/ckan.po
M ckan/i18n/fi/LC_MESSAGES/ckan.mo
M ckan/i18n/fi/LC_MESSAGES/ckan.po
M ckan/i18n/fr/LC_MESSAGES/ckan.mo
M ckan/i18n/fr/LC_MESSAGES/ckan.po
M ckan/i18n/hu/LC_MESSAGES/ckan.mo
M ckan/i18n/hu/LC_MESSAGES/ckan.po
A ckan/i18n/id/LC_MESSAGES/ckan.mo
A ckan/i18n/id/LC_MESSAGES/ckan.po
A ckan/i18n/is/LC_MESSAGES/ckan.mo
A ckan/i18n/is/LC_MESSAGES/ckan.po
M ckan/i18n/it/LC_MESSAGES/ckan.mo
M ckan/i18n/it/LC_MESSAGES/ckan.po
M ckan/i18n/ja/LC_MESSAGES/ckan.mo
M ckan/i18n/ja/LC_MESSAGES/ckan.po
A ckan/i18n/ko_KR/LC_MESSAGES/ckan.mo
A ckan/i18n/ko_KR/LC_MESSAGES/ckan.po
M ckan/i18n/lt/LC_MESSAGES/ckan.mo
M ckan/i18n/lt/LC_MESSAGES/ckan.po
M ckan/i18n/lv/LC_MESSAGES/ckan.mo
M ckan/i18n/lv/LC_MESSAGES/ckan.po
A ckan/i18n/my_MM/LC_MESSAGES/ckan.mo
A ckan/i18n/my_MM/LC_MESSAGES/ckan.po
M ckan/i18n/nl/LC_MESSAGES/ckan.mo
M ckan/i18n/nl/LC_MESSAGES/ckan.po
M ckan/i18n/no/LC_MESSAGES/ckan.mo
M ckan/i18n/no/LC_MESSAGES/ckan.po
M ckan/i18n/pl/LC_MESSAGES/ckan.mo
M ckan/i18n/pl/LC_MESSAGES/ckan.po
M ckan/i18n/pt_BR/LC_MESSAGES/ckan.mo
M ckan/i18n/pt_BR/LC_MESSAGES/ckan.po
M ckan/i18n/ro/LC_MESSAGES/ckan.mo
M ckan/i18n/ro/LC_MESSAGES/ckan.po
M ckan/i18n/ru/LC_MESSAGES/ckan.mo
M ckan/i18n/ru/LC_MESSAGES/ckan.po
M ckan/i18n/sk/LC_MESSAGES/ckan.mo
M ckan/i18n/sk/LC_MESSAGES/ckan.po
M ckan/i18n/sl/LC_MESSAGES/ckan.mo
M ckan/i18n/sl/LC_MESSAGES/ckan.po
M ckan/i18n/sq/LC_MESSAGES/ckan.mo
M ckan/i18n/sq/LC_MESSAGES/ckan.po
M ckan/i18n/sr/LC_MESSAGES/ckan.mo
M ckan/i18n/sr/LC_MESSAGES/ckan.po
M ckan/i18n/sr_Latn/LC_MESSAGES/ckan.mo
M ckan/i18n/sr_Latn/LC_MESSAGES/ckan.po
M ckan/i18n/sv/LC_MESSAGES/ckan.mo
M ckan/i18n/sv/LC_MESSAGES/ckan.po
A ckan/i18n/tr/LC_MESSAGES/ckan.mo
A ckan/i18n/tr/LC_MESSAGES/ckan.po
A ckan/i18n/uk_UA/LC_MESSAGES/ckan.mo
A ckan/i18n/uk_UA/LC_MESSAGES/ckan.po
A ckan/i18n/zh_CN/LC_MESSAGES/ckan.mo
A ckan/i18n/zh_CN/LC_MESSAGES/ckan.po
A ckan/i18n/zh_TW/LC_MESSAGES/ckan.mo
A ckan/i18n/zh_TW/LC_MESSAGES/ckan.po
M ckan/lib/activity_streams.py
M ckan/lib/app_globals.py
M ckan/lib/base.py
M ckan/lib/cli.py
M ckan/lib/datapreview.py
M ckan/lib/dictization/model_dictize.py
M ckan/lib/helpers.py
M ckan/lib/plugins.py
M ckan/lib/render.py
M ckan/lib/search/index.py
M ckan/logic/__init__.py
M ckan/logic/action/create.py
M ckan/logic/action/delete.py
M ckan/logic/action/get.py
M ckan/logic/action/update.py
M ckan/logic/auth/__init__.py
M ckan/logic/auth/get.py
M ckan/logic/auth/update.py
M ckan/logic/converters.py
M ckan/logic/schema.py
M ckan/logic/validators.py
A ckan/migration/versions/068_add_package_extras_index.py
M ckan/model/package.py
R ckan/model/test_user.py
M ckan/new_authz.py
M ckan/plugins/interfaces.py
M ckan/public/base/css/main.css
R ckan/public/base/images/flags.png
M ckan/public/base/javascript/modules/autocomplete.js
M ckan/public/base/javascript/modules/basic-form.js
M ckan/public/base/javascript/modules/confirm-action.js
A ckan/public/base/javascript/modules/media-grid.js
M ckan/public/base/javascript/modules/related-item.js
A ckan/public/base/javascript/plugins/jquery.masonry.js
M ckan/public/base/javascript/resource.config
M ckan/public/base/javascript/tracking.js
M ckan/public/base/less/dataset.less
M ckan/public/base/less/footer.less
M ckan/public/base/less/group.less
M ckan/public/base/less/homepage.less
M ckan/public/base/less/iehacks.less
M ckan/public/base/less/layout.less
M ckan/public/base/less/media.less
M ckan/public/base/less/module.less
M ckan/public/base/less/prose.less
M ckan/templates/dataviewer/snippets/data_preview.html
M ckan/templates/group/about.html
M ckan/templates/group/snippets/group_item.html
M ckan/templates/group/snippets/group_list.html
M ckan/templates/home/index.html
M ckan/templates/organization/about.html
M ckan/templates/organization/bulk_process.html
M ckan/templates/organization/snippets/organization_item.html
M ckan/templates/organization/snippets/organization_list.html
M ckan/templates/package/new_resource.html
M ckan/templates/package/resource_edit.html
M ckan/templates/package/snippets/package_basic_fields.html
M ckan/templates/package/snippets/package_form.html
M ckan/templates/related/dashboard.html
M ckan/templates/related/snippets/related_item.html
M ckan/templates/related/snippets/related_list.html
M ckan/templates/revision/read.html
A ckan/templates/snippets/additional_info.html
M ckan/templates/snippets/facet_list.html
M ckan/templates/snippets/group_item.html
M ckan/templates/snippets/organization_item.html
M ckan/templates_legacy/package/new_package_form.html
M ckan/templates_legacy/package/resource_read.html
M ckan/tests/functional/api/test_activity.py
M ckan/tests/functional/test_user.py
M ckan/tests/lib/test_solr_package_search.py
M ckan/tests/logic/test_init.py
M ckan/tests/logic/test_member.py
M ckan/tests/models/test_user.py
M ckan/tests/schema/test_schema.py
A ckan/tests/test_coding_standards.py
M ckanext/datastore/commands.py
A ckanext/datastore/controller.py
M ckanext/datastore/db.py
M ckanext/datastore/logic/action.py
M ckanext/datastore/logic/auth.py
A ckanext/datastore/logic/schema.py
M ckanext/datastore/plugin.py
M ckanext/datastore/tests/test_create.py
M ckanext/datastore/tests/test_delete.py
A ckanext/datastore/tests/test_dump.py
M ckanext/datastore/tests/test_search.py
M ckanext/datastore/tests/test_unit.py
M ckanext/datastore/tests/test_upsert.py
R ckanext/jsonpreview/__init__.py
R ckanext/jsonpreview/plugin.py
R ckanext/jsonpreview/tests/__init__.py
R ckanext/jsonpreview/tests/test_preview.py
R ckanext/jsonpreview/theme/public/css/json.css
R ckanext/jsonpreview/theme/public/preview_json.js
R ckanext/jsonpreview/theme/public/resource.config
R ckanext/jsonpreview/theme/templates/json.html
M ckanext/pdfpreview/tests/test_preview.py
M ckanext/resourceproxy/controller.py
M ckanext/resourceproxy/tests/test_proxy.py
A ckanext/textpreview/__init__.py
A ckanext/textpreview/plugin.py
A ckanext/textpreview/tests/__init__.py
A ckanext/textpreview/tests/test_preview.py
A ckanext/textpreview/theme/public/LICENSE
A ckanext/textpreview/theme/public/css/text.css
A ckanext/textpreview/theme/public/highlight.pack.js
A ckanext/textpreview/theme/public/preview_text.js
A ckanext/textpreview/theme/public/resource.config
A ckanext/textpreview/theme/public/styles/default.css
A ckanext/textpreview/theme/public/styles/github.css
A ckanext/textpreview/theme/templates/text.html
A dev-requirements.txt
R doc/CHANGELOG.rst
M doc/_themes/sphinx-theme-okfn
M doc/api.rst
M doc/apps-ideas.rst
R doc/architecture.rst
M doc/authorization.rst
A doc/ckan-coding-standards.rst
R doc/ckan.logic.action.create.rst
R doc/ckan.logic.action.delete.rst
R doc/ckan.logic.action.get.rst
R doc/ckan.logic.action.update.rst
R doc/common-error-messages.rst
M doc/conf.py
M doc/configuration.rst
M doc/data-viewer.rst
R doc/database-dumps.rst
R doc/datastore-api.rst
R doc/datastore-setup.rst
M doc/datastore.rst
M doc/deployment.rst
A doc/documentation-guidelines.rst
M doc/email-notifications.rst
R doc/extension-templating.rst
R doc/extensions.rst
A doc/features.rst
R doc/filestore-api.rst
M doc/filestore.rst
M doc/form-integration.rst
M doc/frontend-development.rst
R doc/frontend-testing.rst
R doc/geospatial.rst
A doc/getting-started.rst
R doc/harvesting.rst
M doc/i18n.rst
R doc/images/1.png
R doc/images/2.png
R doc/images/3a.png
R doc/images/3b.png
R doc/images/4.png
R doc/images/5.png
R doc/images/6.png
R doc/images/7.png
R doc/images/8.png
R doc/images/8a.png
M doc/images/9.png
A doc/images/admin-page.png
R doc/images/i1.png
R doc/images/i2.png
R doc/images/i3.png
R doc/images/i4.png
R doc/images/i5.png
R doc/images/i6.png
R doc/images/i7.png
R doc/images/i8.png
R doc/images/virtualbox1-package.png
R doc/images/virtualbox11-ubuntu.png
R doc/images/virtualbox4-newvm.png
R doc/images/virtualbox5-vmtype.png
R doc/images/virtualbox6-vmloc.png
R doc/images/virtualbox7-startvm.png
R doc/images/virtualbox8-firstrun.png
R doc/images/virtualbox9-iso.png
M doc/index.rst
R doc/install-from-package-amazon.rst
R doc/install-from-package-virtualbox.rst
M doc/install-from-package.rst
M doc/install-from-source.rst
A doc/installing.rst
R doc/loading-data.rst
M doc/multilingual.rst
R doc/organizations_and_groups.rst
M doc/paster.rst
R doc/post-installation.rst
R doc/publisher-profile.rst
R doc/publishing-datasets.rst
M doc/python-coding-standards.rst
R doc/release-cycle.rst
A doc/release-process.rst
A doc/releases.rst
M doc/solr-setup.rst
A doc/stats.rst
M doc/tag-vocabularies.rst
M doc/templating.rst
M doc/test.rst
M doc/theming.rst
M doc/toolkit.rst
M doc/tracking.rst
A doc/upgrading-a-package-install.rst
A doc/upgrading-a-source-install.rst
M doc/writing-extensions.rst
M fabfile.py
R pip-requirements-docs.txt
R pip-requirements-test.txt
R pip-requirements.txt
A requirements.txt
M setup.py
M test-core.ini
Log Message:
-----------
Merge branch 'master' into 792-create-dataset-auth-improvement
Commit: 9d6f9dceb21e3e53f36a4fed44587b2e89c5ad19
https://github.com/okfn/ckan/commit/9d6f9dceb21e3e53f36a4fed44587b2e89c5ad19
Author: Nigel Babu <nigelbabu at gmail.com>
Date: 2013-06-12 (Wed, 12 Jun 2013)
Changed paths:
M ckan/logic/action/get.py
Log Message:
-----------
[#861] Change the logic for sorting dataset search
Default to metadata_modified desc if no query and relevance if there is
a query.
Commit: 5c770097a0bfc2269bd6c86cafdbe14ba082f464
https://github.com/okfn/ckan/commit/5c770097a0bfc2269bd6c86cafdbe14ba082f464
Author: tobes <toby.junk at gmail.com>
Date: 2013-06-13 (Thu, 13 Jun 2013)
Log Message:
-----------
@auth_sysadmins_check auth function decorator
Conflicts:
ckan/new_authz.py
trivial
Commit: c5a69716d9f5579cbadced6346bb5ef5edaa31d7
https://github.com/okfn/ckan/commit/c5a69716d9f5579cbadced6346bb5ef5edaa31d7
Author: tobes <toby.junk at gmail.com>
Date: 2013-06-13 (Thu, 13 Jun 2013)
Changed paths:
M ckan/logic/auth/create.py
Log Message:
-----------
[#792] Fix package_create auth function for sysadmins
Commit: 10e6c7fc90c274c7ea2c2cd12c03803970959e1d
https://github.com/okfn/ckan/commit/10e6c7fc90c274c7ea2c2cd12c03803970959e1d
Author: tobes <toby.junk at gmail.com>
Date: 2013-06-13 (Thu, 13 Jun 2013)
Changed paths:
M ckan/tests/logic/test_action.py
M ckanext/datastore/tests/test_search.py
Log Message:
-----------
[#792] Fix some tests now auth changes made
Commit: 655c2dd9d8e9ca7e6cbddf2d6d993262a8024a08
https://github.com/okfn/ckan/commit/655c2dd9d8e9ca7e6cbddf2d6d993262a8024a08
Author: Nigel Babu <nigelbabu at gmail.com>
Date: 2013-06-16 (Sun, 16 Jun 2013)
Changed paths:
M ckan/logic/action/get.py
Log Message:
-----------
[#861] Remove 'metadata_modified' from if
Also, modify the default sort order if there is a search query to be
"score desc, metadata_modified"
Commit: 067d43006fd542eee7a0a9a11fdec5f42c02add4
https://github.com/okfn/ckan/commit/067d43006fd542eee7a0a9a11fdec5f42c02add4
Author: Nigel Babu <nigelbabu at gmail.com>
Date: 2013-06-16 (Sun, 16 Jun 2013)
Changed paths:
M ckan/logic/action/get.py
Log Message:
-----------
[#861] Use the .get() function to look for 'q'
Commit: f1937a826f837cff8da3f249c6a947d12b072825
https://github.com/okfn/ckan/commit/f1937a826f837cff8da3f249c6a947d12b072825
Author: tobes <toby.junk at gmail.com>
Date: 2013-06-17 (Mon, 17 Jun 2013)
Changed paths:
M ckan/lib/base.py
M ckan/lib/helpers.py
M ckan/templates/header.html
Log Message:
-----------
[#1013] Improve performance when new_activities not needed
Commit: 8ef830e8ef54acad2f30ba9e2d8663ee22dda33b
https://github.com/okfn/ckan/commit/8ef830e8ef54acad2f30ba9e2d8663ee22dda33b
Author: tobes <toby.junk at gmail.com>
Date: 2013-06-18 (Tue, 18 Jun 2013)
Changed paths:
M ckan/logic/action/create.py
Log Message:
-----------
[#1013] Create dashboard on user create to fix tests
Commit: 190951a1f30445f49d4db2dc2680fab582b12e85
https://github.com/okfn/ckan/commit/190951a1f30445f49d4db2dc2680fab582b12e85
Author: tobes <toby.junk at gmail.com>
Date: 2013-06-19 (Wed, 19 Jun 2013)
Changed paths:
M ckan/logic/auth/create.py
Log Message:
-----------
[#729] Slight code refactor
Commit: 7517b85c03eec303e5dab29f31c5b3d91d98c929
https://github.com/okfn/ckan/commit/7517b85c03eec303e5dab29f31c5b3d91d98c929
Author: tobes <toby.junk at gmail.com>
Date: 2013-06-19 (Wed, 19 Jun 2013)
Changed paths:
M ckan/tests/test_coding_standards.py
Log Message:
-----------
[#792] Remove file from coding standards blacklist
Commit: 096b59eba84e8f3e7337502a7f652ec2b861f703
https://github.com/okfn/ckan/commit/096b59eba84e8f3e7337502a7f652ec2b861f703
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-19 (Wed, 19 Jun 2013)
Changed paths:
M .gitmodules
A .pipignore
M .tx/config
A CHANGELOG.rst
R CHANGELOG.txt
M CONTRIBUTING.rst
M LICENSE.txt
M README.rst
M bin/osx-postgres-mem.sh
M bin/travis-build
M ckan/config/deployment.ini_tmpl
M ckan/config/environment.py
A ckan/config/install.py
M ckan/config/routing.py
M ckan/config/who.ini
M ckan/controllers/api.py
M ckan/controllers/error.py
M ckan/controllers/feed.py
M ckan/controllers/group.py
M ckan/controllers/home.py
M ckan/controllers/organization.py
M ckan/controllers/package.py
M ckan/controllers/related.py
M ckan/controllers/revision.py
M ckan/controllers/storage.py
M ckan/controllers/tag.py
M ckan/controllers/user.py
M ckan/i18n/bg/LC_MESSAGES/ckan.mo
M ckan/i18n/bg/LC_MESSAGES/ckan.po
M ckan/i18n/ca/LC_MESSAGES/ckan.mo
M ckan/i18n/ca/LC_MESSAGES/ckan.po
M ckan/i18n/check_po_files.py
M ckan/i18n/ckan.pot
M ckan/i18n/cs_CZ/LC_MESSAGES/ckan.mo
M ckan/i18n/cs_CZ/LC_MESSAGES/ckan.po
M ckan/i18n/de/LC_MESSAGES/ckan.mo
M ckan/i18n/de/LC_MESSAGES/ckan.po
A ckan/i18n/dv/LC_MESSAGES/ckan.mo
A ckan/i18n/dv/LC_MESSAGES/ckan.po
M ckan/i18n/el/LC_MESSAGES/ckan.mo
M ckan/i18n/el/LC_MESSAGES/ckan.po
A ckan/i18n/en_GB/LC_MESSAGES/ckan.mo
A ckan/i18n/en_GB/LC_MESSAGES/ckan.po
M ckan/i18n/es/LC_MESSAGES/ckan.mo
M ckan/i18n/es/LC_MESSAGES/ckan.po
A ckan/i18n/es_AR/LC_MESSAGES/ckan.mo
A ckan/i18n/es_AR/LC_MESSAGES/ckan.po
A ckan/i18n/fa_IR/LC_MESSAGES/ckan.mo
A ckan/i18n/fa_IR/LC_MESSAGES/ckan.po
M ckan/i18n/fi/LC_MESSAGES/ckan.mo
M ckan/i18n/fi/LC_MESSAGES/ckan.po
M ckan/i18n/fr/LC_MESSAGES/ckan.mo
M ckan/i18n/fr/LC_MESSAGES/ckan.po
M ckan/i18n/hu/LC_MESSAGES/ckan.mo
M ckan/i18n/hu/LC_MESSAGES/ckan.po
A ckan/i18n/id/LC_MESSAGES/ckan.mo
A ckan/i18n/id/LC_MESSAGES/ckan.po
A ckan/i18n/is/LC_MESSAGES/ckan.mo
A ckan/i18n/is/LC_MESSAGES/ckan.po
M ckan/i18n/it/LC_MESSAGES/ckan.mo
M ckan/i18n/it/LC_MESSAGES/ckan.po
M ckan/i18n/ja/LC_MESSAGES/ckan.mo
M ckan/i18n/ja/LC_MESSAGES/ckan.po
A ckan/i18n/ko_KR/LC_MESSAGES/ckan.mo
A ckan/i18n/ko_KR/LC_MESSAGES/ckan.po
M ckan/i18n/lt/LC_MESSAGES/ckan.mo
M ckan/i18n/lt/LC_MESSAGES/ckan.po
M ckan/i18n/lv/LC_MESSAGES/ckan.mo
M ckan/i18n/lv/LC_MESSAGES/ckan.po
A ckan/i18n/my_MM/LC_MESSAGES/ckan.mo
A ckan/i18n/my_MM/LC_MESSAGES/ckan.po
M ckan/i18n/nl/LC_MESSAGES/ckan.mo
M ckan/i18n/nl/LC_MESSAGES/ckan.po
M ckan/i18n/no/LC_MESSAGES/ckan.mo
M ckan/i18n/no/LC_MESSAGES/ckan.po
M ckan/i18n/pl/LC_MESSAGES/ckan.mo
M ckan/i18n/pl/LC_MESSAGES/ckan.po
M ckan/i18n/pt_BR/LC_MESSAGES/ckan.mo
M ckan/i18n/pt_BR/LC_MESSAGES/ckan.po
M ckan/i18n/ro/LC_MESSAGES/ckan.mo
M ckan/i18n/ro/LC_MESSAGES/ckan.po
M ckan/i18n/ru/LC_MESSAGES/ckan.mo
M ckan/i18n/ru/LC_MESSAGES/ckan.po
M ckan/i18n/sk/LC_MESSAGES/ckan.mo
M ckan/i18n/sk/LC_MESSAGES/ckan.po
M ckan/i18n/sl/LC_MESSAGES/ckan.mo
M ckan/i18n/sl/LC_MESSAGES/ckan.po
M ckan/i18n/sq/LC_MESSAGES/ckan.mo
M ckan/i18n/sq/LC_MESSAGES/ckan.po
M ckan/i18n/sr/LC_MESSAGES/ckan.mo
M ckan/i18n/sr/LC_MESSAGES/ckan.po
M ckan/i18n/sr_Latn/LC_MESSAGES/ckan.mo
M ckan/i18n/sr_Latn/LC_MESSAGES/ckan.po
M ckan/i18n/sv/LC_MESSAGES/ckan.mo
M ckan/i18n/sv/LC_MESSAGES/ckan.po
A ckan/i18n/tr/LC_MESSAGES/ckan.mo
A ckan/i18n/tr/LC_MESSAGES/ckan.po
A ckan/i18n/uk_UA/LC_MESSAGES/ckan.mo
A ckan/i18n/uk_UA/LC_MESSAGES/ckan.po
A ckan/i18n/zh_CN/LC_MESSAGES/ckan.mo
A ckan/i18n/zh_CN/LC_MESSAGES/ckan.po
A ckan/i18n/zh_TW/LC_MESSAGES/ckan.mo
A ckan/i18n/zh_TW/LC_MESSAGES/ckan.po
M ckan/lib/activity_streams.py
M ckan/lib/alphabet_paginate.py
M ckan/lib/app_globals.py
M ckan/lib/base.py
M ckan/lib/cli.py
M ckan/lib/create_test_data.py
M ckan/lib/datapreview.py
M ckan/lib/dictization/model_dictize.py
M ckan/lib/dictization/model_save.py
M ckan/lib/email_notifications.py
M ckan/lib/formatters.py
M ckan/lib/helpers.py
M ckan/lib/mailer.py
M ckan/lib/navl/dictization_functions.py
M ckan/lib/navl/validators.py
M ckan/lib/package_saver.py
M ckan/lib/plugins.py
M ckan/lib/render.py
M ckan/lib/search/__init__.py
M ckan/lib/search/index.py
M ckan/lib/search/query.py
M ckan/logic/__init__.py
M ckan/logic/action/create.py
M ckan/logic/action/delete.py
M ckan/logic/action/get.py
M ckan/logic/action/update.py
M ckan/logic/auth/__init__.py
M ckan/logic/auth/create.py
M ckan/logic/auth/get.py
M ckan/logic/auth/update.py
M ckan/logic/converters.py
M ckan/logic/schema.py
M ckan/logic/validators.py
M ckan/migration/versions/067_turn_extras_to_strings.py
A ckan/migration/versions/068_add_package_extras_index.py
R ckan/misc.py
M ckan/model/__init__.py
M ckan/model/license.py
M ckan/model/meta.py
M ckan/model/package.py
M ckan/model/package_relationship.py
M ckan/model/tag.py
R ckan/model/test_user.py
M ckan/model/tracking.py
M ckan/new_authz.py
M ckan/plugins/interfaces.py
M ckan/plugins/toolkit.py
M ckan/public/base/css/main.css
R ckan/public/base/images/flags.png
M ckan/public/base/javascript/modules/autocomplete.js
M ckan/public/base/javascript/modules/basic-form.js
M ckan/public/base/javascript/modules/confirm-action.js
A ckan/public/base/javascript/modules/media-grid.js
M ckan/public/base/javascript/modules/related-item.js
M ckan/public/base/javascript/modules/resource-upload-field.js
A ckan/public/base/javascript/plugins/jquery.masonry.js
M ckan/public/base/javascript/resource.config
M ckan/public/base/javascript/tracking.js
M ckan/public/base/less/dataset.less
M ckan/public/base/less/footer.less
M ckan/public/base/less/group.less
M ckan/public/base/less/homepage.less
M ckan/public/base/less/iehacks.less
M ckan/public/base/less/layout.less
M ckan/public/base/less/media.less
M ckan/public/base/less/mixins.less
M ckan/public/base/less/module.less
M ckan/public/base/less/prose.less
M ckan/public/base/test/index.html
M ckan/public/base/test/spec/client.spec.js
M ckan/public/base/test/spec/modules/autocomplete.spec.js
M ckan/templates/activity_streams/activity_stream_items.html
M ckan/templates/dataviewer/snippets/data_preview.html
M ckan/templates/development/primer.html
A ckan/templates/development/snippets/actions.html
A ckan/templates/development/snippets/context.html
M ckan/templates/development/snippets/facet.html
M ckan/templates/development/snippets/media_grid.html
M ckan/templates/development/snippets/nav.html
M ckan/templates/development/snippets/page_header.html
R ckan/templates/development/snippets/toolbar.html
M ckan/templates/group/about.html
A ckan/templates/group/history.html
M ckan/templates/group/snippets/group_item.html
M ckan/templates/group/snippets/group_list.html
A ckan/templates/group/snippets/history_revisions.html
A ckan/templates/group/snippets/revisions_table.html
M ckan/templates/home/index.html
M ckan/templates/organization/about.html
M ckan/templates/organization/bulk_process.html
M ckan/templates/organization/index.html
M ckan/templates/organization/snippets/organization_form.html
M ckan/templates/organization/snippets/organization_item.html
M ckan/templates/organization/snippets/organization_list.html
A ckan/templates/package/history.html
M ckan/templates/package/new_resource.html
M ckan/templates/package/read_base.html
M ckan/templates/package/resource_edit.html
M ckan/templates/package/resource_read.html
M ckan/templates/package/search.html
M ckan/templates/package/snippets/data_api_button.html
A ckan/templates/package/snippets/history_revisions.html
M ckan/templates/package/snippets/package_basic_fields.html
M ckan/templates/package/snippets/package_form.html
A ckan/templates/package/snippets/revisions_table.html
M ckan/templates/related/dashboard.html
M ckan/templates/related/snippets/related_item.html
M ckan/templates/related/snippets/related_list.html
A ckan/templates/revision/__init__.py
A ckan/templates/revision/diff.html
A ckan/templates/revision/list.html
A ckan/templates/revision/read.html
A ckan/templates/revision/read_base.html
A ckan/templates/revision/snippets/revisions_list.html
A ckan/templates/snippets/additional_info.html
M ckan/templates/snippets/facet_list.html
M ckan/templates/snippets/group_item.html
M ckan/templates/snippets/organization_item.html
M ckan/templates/snippets/sort_by.html
M ckan/templates_legacy/package/new_package_form.html
M ckan/templates_legacy/package/read_core.html
M ckan/templates_legacy/package/resource_read.html
M ckan/tests/__init__.py
M ckan/tests/functional/api/test_activity.py
M ckan/tests/functional/api/test_dashboard.py
M ckan/tests/functional/test_home.py
M ckan/tests/functional/test_package.py
M ckan/tests/functional/test_pagination.py
M ckan/tests/functional/test_related.py
M ckan/tests/functional/test_user.py
M ckan/tests/lib/test_dictization.py
M ckan/tests/lib/test_email_notifications.py
M ckan/tests/lib/test_solr_package_search.py
M ckan/tests/logic/test_action.py
A ckan/tests/logic/test_init.py
M ckan/tests/logic/test_member.py
M ckan/tests/misc/test_format_text.py
M ckan/tests/models/test_package.py
M ckan/tests/models/test_user.py
M ckan/tests/schema/test_schema.py
A ckan/tests/test_coding_standards.py
M ckanext/datastore/commands.py
A ckanext/datastore/controller.py
M ckanext/datastore/db.py
M ckanext/datastore/logic/action.py
M ckanext/datastore/logic/auth.py
A ckanext/datastore/logic/schema.py
M ckanext/datastore/plugin.py
M ckanext/datastore/tests/test_configure.py
M ckanext/datastore/tests/test_create.py
M ckanext/datastore/tests/test_delete.py
A ckanext/datastore/tests/test_dump.py
M ckanext/datastore/tests/test_search.py
M ckanext/datastore/tests/test_unit.py
M ckanext/datastore/tests/test_upsert.py
M ckanext/example_idatasetform/plugin.py
A ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html
M ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html
R ckanext/jsonpreview/__init__.py
R ckanext/jsonpreview/plugin.py
R ckanext/jsonpreview/tests/__init__.py
R ckanext/jsonpreview/tests/test_preview.py
R ckanext/jsonpreview/theme/public/css/json.css
R ckanext/jsonpreview/theme/public/preview_json.js
R ckanext/jsonpreview/theme/public/resource.config
R ckanext/jsonpreview/theme/templates/json.html
M ckanext/pdfpreview/tests/test_preview.py
M ckanext/reclinepreview/theme/public/preview_recline.js
M ckanext/reclinepreview/theme/public/vendor/recline/recline.css
M ckanext/reclinepreview/theme/public/vendor/recline/recline.dataset.js
M ckanext/reclinepreview/theme/public/vendor/recline/recline.dataset.min.js
M ckanext/reclinepreview/theme/public/vendor/recline/recline.js
M ckanext/reclinepreview/theme/public/vendor/recline/recline.min.css
M ckanext/reclinepreview/theme/public/vendor/recline/recline.min.js
M ckanext/resourceproxy/controller.py
M ckanext/resourceproxy/tests/test_proxy.py
M ckanext/test_tag_vocab_plugin.py
A ckanext/textpreview/__init__.py
A ckanext/textpreview/plugin.py
A ckanext/textpreview/tests/__init__.py
A ckanext/textpreview/tests/test_preview.py
A ckanext/textpreview/theme/public/LICENSE
A ckanext/textpreview/theme/public/css/text.css
A ckanext/textpreview/theme/public/highlight.pack.js
A ckanext/textpreview/theme/public/preview_text.js
A ckanext/textpreview/theme/public/resource.config
A ckanext/textpreview/theme/public/styles/default.css
A ckanext/textpreview/theme/public/styles/github.css
A ckanext/textpreview/theme/templates/text.html
A dev-requirements.txt
R doc/CHANGELOG.rst
M doc/_templates/footer.html
M doc/_themes/sphinx-theme-okfn
M doc/api.rst
M doc/apps-ideas.rst
R doc/architecture.rst
M doc/authorization.rst
A doc/changelog.rst
A doc/ckan-coding-standards.rst
R doc/ckan.logic.action.create.rst
R doc/ckan.logic.action.delete.rst
R doc/ckan.logic.action.get.rst
R doc/ckan.logic.action.update.rst
R doc/commenting.rst
R doc/common-error-messages.rst
M doc/conf.py
M doc/configuration.rst
R doc/contrib.rst
A doc/contributing.rst
M doc/css-coding-standards.rst
M doc/data-viewer.rst
R doc/database-dumps.rst
R doc/datastore-api.rst
R doc/datastore-setup.rst
M doc/datastore.rst
M doc/deployment.rst
A doc/documentation-guidelines.rst
M doc/email-notifications.rst
R doc/extension-templating.rst
R doc/extensions.rst
A doc/features.rst
R doc/filestore-api.rst
M doc/filestore.rst
M doc/form-integration.rst
M doc/frontend-development.rst
R doc/frontend-testing.rst
R doc/geospatial.rst
A doc/getting-started.rst
R doc/harvesting.rst
M doc/i18n.rst
R doc/images/1.png
R doc/images/2.png
R doc/images/3a.png
R doc/images/3b.png
R doc/images/4.png
R doc/images/5.png
R doc/images/6.png
R doc/images/7.png
R doc/images/8.png
R doc/images/8a.png
M doc/images/9.png
A doc/images/admin-page.png
R doc/images/i1.png
R doc/images/i2.png
R doc/images/i3.png
R doc/images/i4.png
R doc/images/i5.png
R doc/images/i6.png
R doc/images/i7.png
R doc/images/i8.png
A doc/images/popular-dataset.png
A doc/images/popular-resource.png
A doc/images/sort-datasets-by-popularity.png
R doc/images/virtualbox1-package.png
R doc/images/virtualbox11-ubuntu.png
R doc/images/virtualbox4-newvm.png
R doc/images/virtualbox5-vmtype.png
R doc/images/virtualbox6-vmloc.png
R doc/images/virtualbox7-startvm.png
R doc/images/virtualbox8-firstrun.png
R doc/images/virtualbox9-iso.png
M doc/index.rst
R doc/install-from-package-amazon.rst
R doc/install-from-package-virtualbox.rst
M doc/install-from-package.rst
M doc/install-from-source.rst
A doc/installing.rst
M doc/javascript-coding-standards.rst
M doc/javascript-module-tutorial.rst
M doc/legacy-api.rst
R doc/loading-data.rst
M doc/multilingual.rst
R doc/organizations_and_groups.rst
M doc/paster.rst
R doc/post-installation.rst
R doc/publisher-profile.rst
R doc/publishing-datasets.rst
M doc/python-coding-standards.rst
R doc/release-cycle.rst
A doc/release-process.rst
M doc/resources.rst
M doc/solr-setup.rst
A doc/stats.rst
M doc/tag-vocabularies.rst
M doc/templating.rst
M doc/test.rst
M doc/theming.rst
M doc/toolkit.rst
A doc/tracking.rst
A doc/upgrade-package-ckan-1-to-2.rst
A doc/upgrade-package-to-minor-release.rst
A doc/upgrade-package-to-patch-release.rst
A doc/upgrade-source.rst
A doc/upgrading.rst
R doc/user-stories-list.rst
R doc/user-stories.rst
M doc/writing-extensions.rst
M fabfile.py
R pip-requirements-docs.txt
R pip-requirements-test.txt
R pip-requirements.txt
A requirements.txt
M setup.py
M test-core.ini
Log Message:
-----------
Merge branch 'master' of github.com:okfn/ckan into 707-implement-group-purging
Commit: 82952b0de241d8cc279e8cafa9ef22dc90d3ae87
https://github.com/okfn/ckan/commit/82952b0de241d8cc279e8cafa9ef22dc90d3ae87
Author: tobes <toby.junk at gmail.com>
Date: 2013-06-19 (Wed, 19 Jun 2013)
Changed paths:
M ckan/controllers/user.py
M ckan/lib/repoze_patch.py
Log Message:
-----------
[#1025] User log in/out fixes including i18n and non standard root url
Commit: c2f27074470ac8a444bc68f6866f90fb43562abd
https://github.com/okfn/ckan/commit/c2f27074470ac8a444bc68f6866f90fb43562abd
Author: tobes <toby.junk at gmail.com>
Date: 2013-06-19 (Wed, 19 Jun 2013)
Changed paths:
M ckan/tests/functional/test_user.py
Log Message:
-----------
[#1025] Fix failing tests due to extra redirect etc (stupid tests)
Commit: fabb8b9c96a304d28abb6c6153845698c9098afa
https://github.com/okfn/ckan/commit/fabb8b9c96a304d28abb6c6153845698c9098afa
Author: John Martin <me at johnmart.in>
Date: 2013-06-20 (Thu, 20 Jun 2013)
Changed paths:
M .gitmodules
A .pipignore
A CHANGELOG.rst
R CHANGELOG.txt
M CONTRIBUTING.rst
M LICENSE.txt
M bin/travis-build
M ckan/config/deployment.ini_tmpl
M ckan/config/environment.py
M ckan/controllers/api.py
M ckan/controllers/group.py
M ckan/controllers/home.py
M ckan/controllers/package.py
M ckan/controllers/user.py
M ckan/i18n/cs_CZ/LC_MESSAGES/ckan.mo
M ckan/i18n/cs_CZ/LC_MESSAGES/ckan.po
M ckan/lib/app_globals.py
M ckan/lib/base.py
M ckan/lib/cli.py
M ckan/lib/datapreview.py
M ckan/lib/dictization/model_dictize.py
M ckan/lib/email_notifications.py
M ckan/lib/helpers.py
M ckan/lib/navl/dictization_functions.py
M ckan/lib/plugins.py
M ckan/lib/search/__init__.py
M ckan/lib/search/index.py
M ckan/logic/__init__.py
M ckan/logic/action/create.py
M ckan/logic/action/delete.py
M ckan/logic/action/get.py
M ckan/logic/action/update.py
M ckan/logic/auth/__init__.py
M ckan/logic/auth/get.py
M ckan/logic/auth/update.py
M ckan/logic/converters.py
M ckan/logic/schema.py
M ckan/logic/validators.py
A ckan/migration/versions/068_add_package_extras_index.py
M ckan/model/meta.py
R ckan/model/test_user.py
M ckan/new_authz.py
M ckan/plugins/interfaces.py
M ckan/public/base/css/main.css
M ckan/public/base/javascript/modules/autocomplete.js
M ckan/public/base/javascript/modules/confirm-action.js
A ckan/public/base/javascript/modules/media-grid.js
M ckan/public/base/javascript/modules/related-item.js
M ckan/public/base/javascript/modules/resource-upload-field.js
A ckan/public/base/javascript/plugins/jquery.masonry.js
M ckan/public/base/javascript/resource.config
M ckan/public/base/less/dataset.less
M ckan/public/base/less/homepage.less
M ckan/public/base/less/iehacks.less
M ckan/public/base/less/layout.less
M ckan/public/base/less/media.less
M ckan/public/base/less/module.less
M ckan/public/base/less/prose.less
M ckan/templates/group/about.html
M ckan/templates/group/snippets/group_item.html
M ckan/templates/group/snippets/group_list.html
M ckan/templates/home/index.html
M ckan/templates/organization/about.html
M ckan/templates/organization/snippets/organization_form.html
M ckan/templates/organization/snippets/organization_item.html
M ckan/templates/organization/snippets/organization_list.html
M ckan/templates/package/new_resource.html
M ckan/templates/package/read_base.html
M ckan/templates/package/resource_edit.html
M ckan/templates/package/resource_read.html
M ckan/templates/package/snippets/package_basic_fields.html
M ckan/templates/package/snippets/package_form.html
M ckan/templates/related/dashboard.html
M ckan/templates/related/snippets/related_item.html
M ckan/templates/related/snippets/related_list.html
A ckan/templates/snippets/additional_info.html
M ckan/templates/snippets/group_item.html
M ckan/templates/snippets/organization_item.html
M ckan/templates_legacy/package/new_package_form.html
M ckan/templates_legacy/package/resource_read.html
M ckan/tests/__init__.py
M ckan/tests/functional/test_related.py
M ckan/tests/functional/test_user.py
M ckan/tests/lib/test_email_notifications.py
M ckan/tests/lib/test_solr_package_search.py
M ckan/tests/logic/test_action.py
M ckan/tests/models/test_user.py
M ckan/tests/schema/test_schema.py
M ckan/tests/test_coding_standards.py
M ckanext/datastore/commands.py
M ckanext/datastore/controller.py
M ckanext/datastore/db.py
M ckanext/datastore/logic/action.py
M ckanext/datastore/logic/auth.py
A ckanext/datastore/logic/schema.py
M ckanext/datastore/plugin.py
M ckanext/datastore/tests/test_create.py
M ckanext/datastore/tests/test_delete.py
M ckanext/datastore/tests/test_dump.py
M ckanext/datastore/tests/test_search.py
M ckanext/datastore/tests/test_unit.py
M ckanext/datastore/tests/test_upsert.py
M ckanext/example_idatasetform/plugin.py
R ckanext/jsonpreview/__init__.py
R ckanext/jsonpreview/plugin.py
R ckanext/jsonpreview/tests/__init__.py
R ckanext/jsonpreview/tests/test_preview.py
R ckanext/jsonpreview/theme/public/css/json.css
R ckanext/jsonpreview/theme/public/preview_json.js
R ckanext/jsonpreview/theme/public/resource.config
R ckanext/jsonpreview/theme/templates/json.html
M ckanext/pdfpreview/tests/test_preview.py
M ckanext/resourceproxy/controller.py
M ckanext/resourceproxy/tests/test_proxy.py
M ckanext/test_tag_vocab_plugin.py
A ckanext/textpreview/__init__.py
A ckanext/textpreview/plugin.py
A ckanext/textpreview/tests/__init__.py
A ckanext/textpreview/tests/test_preview.py
A ckanext/textpreview/theme/public/LICENSE
A ckanext/textpreview/theme/public/css/text.css
A ckanext/textpreview/theme/public/highlight.pack.js
A ckanext/textpreview/theme/public/preview_text.js
A ckanext/textpreview/theme/public/resource.config
A ckanext/textpreview/theme/public/styles/default.css
A ckanext/textpreview/theme/public/styles/github.css
A ckanext/textpreview/theme/templates/text.html
A dev-requirements.txt
R doc/CHANGELOG.rst
M doc/api.rst
R doc/architecture.rst
M doc/background-tasks.rst
A doc/ckan-coding-standards.rst
R doc/ckan.logic.action.create.rst
R doc/ckan.logic.action.delete.rst
R doc/ckan.logic.action.get.rst
R doc/ckan.logic.action.update.rst
R doc/common-error-messages.rst
M doc/conf.py
M doc/configuration.rst
M doc/data-viewer.rst
R doc/database-dumps.rst
R doc/datastore-api.rst
R doc/datastore-setup.rst
M doc/datastore.rst
M doc/deployment.rst
A doc/documentation-guidelines.rst
M doc/email-notifications.rst
R doc/extensions.rst
A doc/features.rst
R doc/filestore-api.rst
M doc/filestore.rst
M doc/frontend-development.rst
R doc/frontend-testing.rst
A doc/getting-started.rst
A doc/images/admin-page.png
R doc/importing-datasets.rst
M doc/index.rst
M doc/install-from-package.rst
M doc/install-from-source.rst
A doc/installing.rst
M doc/multilingual.rst
M doc/paster.rst
R doc/post-installation.rst
R doc/publishing-datasets.rst
M doc/python-coding-standards.rst
R doc/release-cycle.rst
M doc/release-process.rst
M doc/tag-vocabularies.rst
M doc/test.rst
M doc/theming.rst
A doc/upgrade-package-ckan-1-to-2.rst
A doc/upgrade-package-to-minor-release.rst
A doc/upgrade-package-to-patch-release.rst
A doc/upgrade-source.rst
A doc/upgrading.rst
A doc/writing-extensions.rst
M fabfile.py
R pip-requirements-docs.txt
R pip-requirements-test.txt
R pip-requirements.txt
A requirements.txt
M setup.py
Log Message:
-----------
Merge master
Commit: ff5006db281a4cf0ae94fd7ec8f81475d5dd7146
https://github.com/okfn/ckan/commit/ff5006db281a4cf0ae94fd7ec8f81475d5dd7146
Author: John Martin <me at johnmart.in>
Date: 2013-06-20 (Thu, 20 Jun 2013)
Changed paths:
M ckan/public/base/less/media.less
M ckan/public/base/less/module.less
M ckan/public/base/less/toolbar.less
M ckan/templates/user/dashboard.html
M ckan/templates/user/dashboard_groups.html
M ckan/templates/user/dashboard_organizations.html
Log Message:
-----------
[#626] Fix for dashboard templates to go full width
Commit: 227477b88fa6fdc1b480153c551c273bf837854b
https://github.com/okfn/ckan/commit/227477b88fa6fdc1b480153c551c273bf837854b
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-20 (Thu, 20 Jun 2013)
Changed paths:
A .idea/codeStyleSettings.xml
M ckan/tests/functional/api/model/test_group.py
Log Message:
-----------
[#707] Add tests for group_purge
Commit: ef1403cb52afcfaa935a5f618f0947b612d795b8
https://github.com/okfn/ckan/commit/ef1403cb52afcfaa935a5f618f0947b612d795b8
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-21 (Fri, 21 Jun 2013)
Changed paths:
A ckan/tests/functional/api/model/test_organization.py
Log Message:
-----------
[#707] Add tests for organization purging
Commit: 3bd0c590119f8f11ecdf0a91d160126b1e835b6f
https://github.com/okfn/ckan/commit/3bd0c590119f8f11ecdf0a91d160126b1e835b6f
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-21 (Fri, 21 Jun 2013)
Changed paths:
M ckan/tests/functional/api/model/test_group.py
Log Message:
-----------
[#707] Refactor the group_purge tests
Make them more like the organization_purge tests
Commit: a1287520123abb00f3677b4a80b89e1cee269901
https://github.com/okfn/ckan/commit/a1287520123abb00f3677b4a80b89e1cee269901
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-21 (Fri, 21 Jun 2013)
Changed paths:
M ckan/templates/package/read_base.html
M ckan/templates/package/resource_read.html
M ckanext/pdfpreview/theme/public/resource.config
A ckanext/pdfpreview/theme/public/vendor/l10n/ar/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ar/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ca/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ca/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ca/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/cs/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/cs/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/da/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/da/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/da/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/de/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/de/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/el/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/el/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/el/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/en-US/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/en-US/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/en-US/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/es/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/es/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/es/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fi/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fi/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/fi/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fr/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fr/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/fr/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/he/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/he/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/it/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/it/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ja/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ja/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ja/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ko/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ko/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ko/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/locale.properties.js
A ckanext/pdfpreview/theme/public/vendor/l10n/lt/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/lt/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/lt/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/nl/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/nl/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/nl/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/pl/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/pl/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/pl/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/pt-BR/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/pt-BR/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ro/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ro/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ru/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ru/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/sr/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/sr/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/sv/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/sv/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/sv/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/tr/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/tr/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/tr/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/vi/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/vi/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/vi/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-CN/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-CN/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-CN/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-TW/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-TW/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-TW/viewer.properties
M ckanext/pdfpreview/theme/public/vendor/pdfjs/pdf.js
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/compatibility.min.js
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/debugger.js
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/debugger.min.js
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-check.svg
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-comment.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-help.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-insert.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-key.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-newparagraph.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-note.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-paragraph.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-next-rtl.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-next.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-previous-rtl.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-previous.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/loading-small.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/shadow.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/toolbarButton-presentationMode.png
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/locale.properties.js
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.css
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.js
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.min.css
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.min.js
M ckanext/pdfpreview/theme/public/vendor/webL10n/l10n.js
R ckanext/pdfpreview/theme/public/vendor/webL10n/l10n.min.js
M ckanext/pdfpreview/theme/templates/pdf.html
Log Message:
-----------
Merge branch 'master' of github.com:okfn/ckan into 707-implement-group-purging
Commit: d67e696fce47e4a089dfb5cdd6cdef086943eb9c
https://github.com/okfn/ckan/commit/d67e696fce47e4a089dfb5cdd6cdef086943eb9c
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-21 (Fri, 21 Jun 2013)
Changed paths:
R .idea/codeStyleSettings.xml
Log Message:
-----------
[#707] Delete accidentally committed .idea/ dir
Commit: 81ab509f2d79c5168aeef9a44d69e8644b1d9ca4
https://github.com/okfn/ckan/commit/81ab509f2d79c5168aeef9a44d69e8644b1d9ca4
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-21 (Fri, 21 Jun 2013)
Changed paths:
M ckan/logic/action/delete.py
Log Message:
-----------
[#707] Add group_purge and organization_purge docstrings
Commit: 9ed3ffa0adbea97a3fa337e762c9fbfe37acb600
https://github.com/okfn/ckan/commit/9ed3ffa0adbea97a3fa337e762c9fbfe37acb600
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-21 (Fri, 21 Jun 2013)
Changed paths:
M ckan/tests/functional/api/model/test_organization.py
Log Message:
-----------
[#707] PEP8
Commit: ab17fcdfc1dc188dcdaaeb03269a794ae106350f
https://github.com/okfn/ckan/commit/ab17fcdfc1dc188dcdaaeb03269a794ae106350f
Author: tobes <toby.junk at gmail.com>
Date: 2013-06-26 (Wed, 26 Jun 2013)
Changed paths:
M .gitmodules
M CHANGELOG.rst
M bin/ckan_edit_local.py
M ckan/config/deployment.ini_tmpl
M ckan/controllers/api.py
M ckan/controllers/group.py
M ckan/controllers/package.py
M ckan/lib/activity_streams.py
M ckan/lib/base.py
M ckan/lib/cli.py
M ckan/lib/email_notifications.py
M ckan/lib/helpers.py
M ckan/lib/i18n.py
M ckan/lib/navl/dictization_functions.py
M ckan/lib/plugins.py
M ckan/lib/search/__init__.py
M ckan/logic/__init__.py
M ckan/logic/action/create.py
M ckan/logic/action/get.py
M ckan/logic/action/update.py
M ckan/logic/auth/delete.py
M ckan/logic/auth/get.py
M ckan/logic/schema.py
M ckan/logic/validators.py
M ckan/model/license.py
M ckan/model/meta.py
M ckan/model/user.py
M ckan/new_authz.py
M ckan/plugins/interfaces.py
M ckan/plugins/toolkit.py
M ckan/public/base/css/main.css
M ckan/public/base/javascript/modules/resource-upload-field.js
M ckan/public/base/less/ckan.less
M ckan/public/base/less/dataset.less
M ckan/public/base/less/homepage.less
M ckan/public/base/less/layout.less
M ckan/public/base/less/module.less
A ckan/public/base/less/search.less
M ckan/public/base/less/toolbar.less
M ckan/templates/admin/base.html
M ckan/templates/group/about.html
M ckan/templates/group/activity_stream.html
M ckan/templates/group/admins.html
M ckan/templates/group/base_form_page.html
M ckan/templates/group/followers.html
M ckan/templates/group/index.html
M ckan/templates/group/read.html
M ckan/templates/group/read_base.html
M ckan/templates/header.html
M ckan/templates/home/index.html
M ckan/templates/organization/about.html
M ckan/templates/organization/activity_stream.html
M ckan/templates/organization/base_form_page.html
M ckan/templates/organization/bulk_process.html
M ckan/templates/organization/edit_base.html
M ckan/templates/organization/index.html
M ckan/templates/organization/member_new.html
M ckan/templates/organization/members.html
M ckan/templates/organization/read.html
M ckan/templates/organization/read_base.html
M ckan/templates/organization/snippets/organization_form.html
M ckan/templates/package/activity.html
M ckan/templates/package/activity_stream.html
M ckan/templates/package/edit.html
M ckan/templates/package/followers.html
M ckan/templates/package/history.html
M ckan/templates/package/read.html
M ckan/templates/package/read_base.html
M ckan/templates/package/related_list.html
M ckan/templates/package/resource_edit.html
M ckan/templates/package/resource_read.html
M ckan/templates/package/search.html
M ckan/templates/package/snippets/additional_info.html
M ckan/templates/package/snippets/resources_list.html
R ckan/templates/package/snippets/search_form.html
M ckan/templates/package/snippets/tags.html
M ckan/templates/page.html
M ckan/templates/snippets/organization.html
A ckan/templates/snippets/search_form.html
M ckan/templates/user/dashboard.html
M ckan/templates/user/edit_base.html
M ckan/templates/user/read_base.html
M ckan/tests/__init__.py
M ckan/tests/functional/test_related.py
M ckan/tests/functional/test_user.py
M ckan/tests/lib/test_email_notifications.py
M ckan/tests/logic/test_action.py
M ckan/tests/test_coding_standards.py
M ckanext/datastore/db.py
M ckanext/datastore/logic/action.py
M ckanext/datastore/plugin.py
M ckanext/datastore/tests/test_create.py
M ckanext/datastore/tests/test_delete.py
M ckanext/datastore/tests/test_dump.py
M ckanext/datastore/tests/test_search.py
M ckanext/datastore/tests/test_unit.py
M ckanext/datastore/tests/test_upsert.py
M ckanext/example_idatasetform/plugin.py
M ckanext/pdfpreview/theme/public/resource.config
A ckanext/pdfpreview/theme/public/vendor/l10n/ar/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ar/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ca/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ca/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ca/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/cs/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/cs/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/da/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/da/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/da/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/de/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/de/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/el/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/el/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/el/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/en-US/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/en-US/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/en-US/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/es/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/es/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/es/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fi/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fi/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/fi/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fr/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fr/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/fr/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/he/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/he/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/it/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/it/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ja/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ja/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ja/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ko/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ko/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ko/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/locale.properties.js
A ckanext/pdfpreview/theme/public/vendor/l10n/lt/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/lt/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/lt/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/nl/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/nl/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/nl/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/pl/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/pl/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/pl/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/pt-BR/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/pt-BR/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ro/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ro/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ru/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ru/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/sr/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/sr/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/sv/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/sv/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/sv/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/tr/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/tr/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/tr/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/vi/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/vi/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/vi/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-CN/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-CN/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-CN/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-TW/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-TW/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-TW/viewer.properties
M ckanext/pdfpreview/theme/public/vendor/pdfjs/pdf.js
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/compatibility.min.js
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/debugger.js
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/debugger.min.js
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-check.svg
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-comment.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-help.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-insert.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-key.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-newparagraph.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-note.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-paragraph.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-next-rtl.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-next.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-previous-rtl.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-previous.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/loading-small.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/shadow.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/toolbarButton-presentationMode.png
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/locale.properties.js
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.css
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.js
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.min.css
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.min.js
M ckanext/pdfpreview/theme/public/vendor/webL10n/l10n.js
R ckanext/pdfpreview/theme/public/vendor/webL10n/l10n.min.js
M ckanext/pdfpreview/theme/templates/pdf.html
M ckanext/reclinepreview/theme/public/preview_recline.js
M ckanext/test_tag_vocab_plugin.py
M doc/conf.py
M doc/data-viewer.rst
M doc/index.rst
M doc/installing.rst
M doc/paster.rst
M doc/release-process.rst
R doc/releases.rst
M doc/toolkit.rst
A doc/upgrade-package-ckan-1-to-2.rst
A doc/upgrade-package-to-minor-release.rst
A doc/upgrade-package-to-patch-release.rst
A doc/upgrade-source.rst
R doc/upgrading-a-package-install.rst
R doc/upgrading-a-source-install.rst
A doc/upgrading.rst
Log Message:
-----------
Merge branch 'master' into 792-create-dataset-auth-improvement
Conflicts:
ckan/logic/auth/create.py
ckan/tests/test_coding_standards.py
trivial
Commit: 09705da2781304e828b448c339ddeed90ece8b46
https://github.com/okfn/ckan/commit/09705da2781304e828b448c339ddeed90ece8b46
Author: tobes <toby.junk at gmail.com>
Date: 2013-06-26 (Wed, 26 Jun 2013)
Changed paths:
M CHANGELOG.rst
M bin/ckan_edit_local.py
M ckan/config/deployment.ini_tmpl
M ckan/controllers/api.py
M ckan/controllers/group.py
M ckan/lib/activity_streams.py
M ckan/lib/base.py
M ckan/lib/helpers.py
M ckan/lib/i18n.py
M ckan/lib/plugins.py
M ckan/logic/action/create.py
M ckan/logic/action/get.py
M ckan/logic/action/update.py
M ckan/logic/auth/create.py
M ckan/logic/auth/delete.py
M ckan/logic/auth/get.py
M ckan/logic/schema.py
M ckan/logic/validators.py
M ckan/model/license.py
M ckan/model/user.py
M ckan/new_authz.py
M ckan/plugins/toolkit.py
M ckan/public/base/css/main.css
M ckan/public/base/less/ckan.less
M ckan/public/base/less/dataset.less
M ckan/public/base/less/homepage.less
M ckan/public/base/less/layout.less
M ckan/public/base/less/module.less
A ckan/public/base/less/search.less
M ckan/public/base/less/toolbar.less
M ckan/templates/admin/base.html
M ckan/templates/group/about.html
M ckan/templates/group/activity_stream.html
M ckan/templates/group/admins.html
M ckan/templates/group/base_form_page.html
M ckan/templates/group/followers.html
M ckan/templates/group/index.html
M ckan/templates/group/read.html
M ckan/templates/group/read_base.html
M ckan/templates/header.html
M ckan/templates/home/index.html
M ckan/templates/organization/about.html
M ckan/templates/organization/activity_stream.html
M ckan/templates/organization/base_form_page.html
M ckan/templates/organization/bulk_process.html
M ckan/templates/organization/edit_base.html
M ckan/templates/organization/index.html
M ckan/templates/organization/member_new.html
M ckan/templates/organization/members.html
M ckan/templates/organization/read.html
M ckan/templates/organization/read_base.html
M ckan/templates/package/activity.html
M ckan/templates/package/activity_stream.html
M ckan/templates/package/edit.html
M ckan/templates/package/followers.html
M ckan/templates/package/history.html
M ckan/templates/package/read.html
M ckan/templates/package/read_base.html
M ckan/templates/package/related_list.html
M ckan/templates/package/resource_edit.html
M ckan/templates/package/resource_read.html
M ckan/templates/package/search.html
M ckan/templates/package/snippets/additional_info.html
M ckan/templates/package/snippets/resources_list.html
R ckan/templates/package/snippets/search_form.html
M ckan/templates/package/snippets/tags.html
M ckan/templates/page.html
M ckan/templates/snippets/organization.html
A ckan/templates/snippets/search_form.html
M ckan/templates/user/dashboard.html
M ckan/templates/user/edit_base.html
M ckan/templates/user/read_base.html
M ckan/tests/functional/test_user.py
M ckan/tests/test_coding_standards.py
M ckanext/datastore/db.py
M ckanext/datastore/logic/action.py
M ckanext/datastore/plugin.py
M ckanext/datastore/tests/test_create.py
M ckanext/datastore/tests/test_delete.py
M ckanext/datastore/tests/test_dump.py
M ckanext/datastore/tests/test_search.py
M ckanext/datastore/tests/test_unit.py
M ckanext/datastore/tests/test_upsert.py
M ckanext/pdfpreview/theme/public/resource.config
A ckanext/pdfpreview/theme/public/vendor/l10n/ar/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ar/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ca/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ca/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ca/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/cs/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/cs/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/da/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/da/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/da/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/de/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/de/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/el/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/el/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/el/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/en-US/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/en-US/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/en-US/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/es/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/es/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/es/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fi/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fi/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/fi/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fr/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fr/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/fr/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/he/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/he/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/it/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/it/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ja/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ja/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ja/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ko/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ko/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ko/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/locale.properties.js
A ckanext/pdfpreview/theme/public/vendor/l10n/lt/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/lt/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/lt/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/nl/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/nl/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/nl/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/pl/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/pl/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/pl/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/pt-BR/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/pt-BR/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ro/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ro/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ru/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ru/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/sr/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/sr/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/sv/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/sv/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/sv/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/tr/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/tr/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/tr/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/vi/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/vi/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/vi/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-CN/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-CN/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-CN/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-TW/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-TW/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-TW/viewer.properties
M ckanext/pdfpreview/theme/public/vendor/pdfjs/pdf.js
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/compatibility.min.js
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/debugger.js
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/debugger.min.js
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-check.svg
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-comment.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-help.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-insert.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-key.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-newparagraph.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-note.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-paragraph.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-next-rtl.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-next.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-previous-rtl.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-previous.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/loading-small.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/shadow.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/toolbarButton-presentationMode.png
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/locale.properties.js
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.css
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.js
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.min.css
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.min.js
M ckanext/pdfpreview/theme/public/vendor/webL10n/l10n.js
R ckanext/pdfpreview/theme/public/vendor/webL10n/l10n.min.js
M ckanext/pdfpreview/theme/templates/pdf.html
M ckanext/reclinepreview/theme/public/preview_recline.js
R doc/changelog.rst
M doc/toolkit.rst
Log Message:
-----------
Merge branch 'master' into 1025-user-login-fixes
Commit: 6180c75a080e1d3c4110f70daa93580ad4ad2e7e
https://github.com/okfn/ckan/commit/6180c75a080e1d3c4110f70daa93580ad4ad2e7e
Author: tobes <toby.junk at gmail.com>
Date: 2013-06-26 (Wed, 26 Jun 2013)
Changed paths:
M ckan/controllers/user.py
Log Message:
-----------
[#1039] make sure came_from url is sane (local)
Commit: ab420ff7daf195c7a96ae51928f8f3e4bf2aeddb
https://github.com/okfn/ckan/commit/ab420ff7daf195c7a96ae51928f8f3e4bf2aeddb
Author: tobes <toby.junk at gmail.com>
Date: 2013-06-26 (Wed, 26 Jun 2013)
Changed paths:
M ckan/controllers/user.py
Log Message:
-----------
[#1039] Minor code cleanup - unused imports
Commit: 7d2e35c0452ca58033dc5bba82894cc2bc6cd2e6
https://github.com/okfn/ckan/commit/7d2e35c0452ca58033dc5bba82894cc2bc6cd2e6
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-26 (Wed, 26 Jun 2013)
Changed paths:
M ckan/lib/helpers.py
Log Message:
-----------
[#626] Tweak groups_available docstring
Commit: cdedd6f92cbff20a5136cc36ce0ea6f1c6495272
https://github.com/okfn/ckan/commit/cdedd6f92cbff20a5136cc36ce0ea6f1c6495272
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-26 (Wed, 26 Jun 2013)
Changed paths:
M ckan/logic/action/get.py
Log Message:
-----------
[#626] Tweak docstring for am_member param
Commit: b0d33865311a6e896cffee94c06926319aa2a4e1
https://github.com/okfn/ckan/commit/b0d33865311a6e896cffee94c06926319aa2a4e1
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-26 (Wed, 26 Jun 2013)
Changed paths:
M ckan/lib/helpers.py
Log Message:
-----------
[#626] Tweak docstring for am_member param
Commit: 01adb1017cd36fb8882b88a68ec435be7520d77c
https://github.com/okfn/ckan/commit/01adb1017cd36fb8882b88a68ec435be7520d77c
Author: John Martin <me at johnmart.in>
Date: 2013-06-26 (Wed, 26 Jun 2013)
Changed paths:
M CHANGELOG.rst
M bin/ckan_edit_local.py
M ckan/config/deployment.ini_tmpl
M ckan/controllers/api.py
M ckan/controllers/group.py
M ckan/controllers/organization.py
M ckan/controllers/package.py
M ckan/lib/activity_streams.py
M ckan/lib/base.py
M ckan/lib/datapreview.py
M ckan/lib/helpers.py
M ckan/lib/i18n.py
M ckan/lib/plugins.py
M ckan/logic/action/create.py
M ckan/logic/action/get.py
M ckan/logic/action/update.py
M ckan/logic/auth/create.py
M ckan/logic/auth/delete.py
M ckan/logic/auth/get.py
M ckan/logic/schema.py
M ckan/logic/validators.py
M ckan/model/license.py
M ckan/model/user.py
M ckan/new_authz.py
M ckan/plugins/interfaces.py
M ckan/plugins/toolkit.py
M ckan/public/base/css/main.css
M ckan/public/base/less/ckan.less
M ckan/public/base/less/dataset.less
M ckan/public/base/less/homepage.less
M ckan/public/base/less/layout.less
M ckan/public/base/less/module.less
A ckan/public/base/less/search.less
M ckan/public/base/less/toolbar.less
M ckan/templates/admin/base.html
M ckan/templates/group/about.html
M ckan/templates/group/activity_stream.html
M ckan/templates/group/admins.html
M ckan/templates/group/base_form_page.html
M ckan/templates/group/followers.html
M ckan/templates/group/index.html
M ckan/templates/group/read.html
M ckan/templates/group/read_base.html
M ckan/templates/header.html
M ckan/templates/home/index.html
M ckan/templates/organization/about.html
M ckan/templates/organization/activity_stream.html
M ckan/templates/organization/base_form_page.html
M ckan/templates/organization/bulk_process.html
M ckan/templates/organization/edit_base.html
M ckan/templates/organization/index.html
M ckan/templates/organization/member_new.html
M ckan/templates/organization/members.html
M ckan/templates/organization/read.html
M ckan/templates/organization/read_base.html
M ckan/templates/package/activity.html
M ckan/templates/package/activity_stream.html
M ckan/templates/package/edit.html
M ckan/templates/package/followers.html
M ckan/templates/package/history.html
M ckan/templates/package/read.html
M ckan/templates/package/read_base.html
M ckan/templates/package/related_list.html
M ckan/templates/package/resource_edit.html
M ckan/templates/package/search.html
M ckan/templates/package/snippets/additional_info.html
M ckan/templates/package/snippets/resources_list.html
R ckan/templates/package/snippets/search_form.html
M ckan/templates/package/snippets/tags.html
M ckan/templates/page.html
M ckan/templates/snippets/organization.html
A ckan/templates/snippets/search_form.html
M ckan/templates/user/dashboard.html
M ckan/templates/user/dashboard_datasets.html
M ckan/templates/user/dashboard_groups.html
M ckan/templates/user/dashboard_organizations.html
M ckan/templates/user/read_base.html
M ckan/tests/functional/test_user.py
M ckan/tests/test_coding_standards.py
M ckanext/datastore/db.py
M ckanext/datastore/logic/action.py
M ckanext/datastore/plugin.py
M ckanext/datastore/tests/test_create.py
M ckanext/datastore/tests/test_delete.py
M ckanext/datastore/tests/test_dump.py
M ckanext/datastore/tests/test_search.py
M ckanext/datastore/tests/test_unit.py
M ckanext/datastore/tests/test_upsert.py
M ckanext/pdfpreview/plugin.py
M ckanext/pdfpreview/tests/test_preview.py
M ckanext/pdfpreview/theme/public/resource.config
A ckanext/pdfpreview/theme/public/vendor/l10n/ar/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ar/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ca/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ca/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ca/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/cs/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/cs/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/da/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/da/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/da/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/de/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/de/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/el/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/el/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/el/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/en-US/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/en-US/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/en-US/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/es/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/es/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/es/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fi/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fi/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/fi/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fr/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fr/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/fr/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/he/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/he/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/it/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/it/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ja/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ja/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ja/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ko/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ko/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ko/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/locale.properties.js
A ckanext/pdfpreview/theme/public/vendor/l10n/lt/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/lt/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/lt/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/nl/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/nl/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/nl/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/pl/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/pl/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/pl/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/pt-BR/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/pt-BR/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ro/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ro/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ru/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ru/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/sr/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/sr/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/sv/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/sv/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/sv/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/tr/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/tr/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/tr/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/vi/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/vi/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/vi/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-CN/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-CN/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-CN/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-TW/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-TW/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-TW/viewer.properties
M ckanext/pdfpreview/theme/public/vendor/pdfjs/pdf.js
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/compatibility.min.js
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/debugger.js
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/debugger.min.js
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-check.svg
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-comment.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-help.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-insert.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-key.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-newparagraph.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-note.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-paragraph.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-next-rtl.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-next.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-previous-rtl.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-previous.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/loading-small.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/shadow.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/toolbarButton-presentationMode.png
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/locale.properties.js
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.css
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.js
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.min.css
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.min.js
M ckanext/pdfpreview/theme/public/vendor/webL10n/l10n.js
R ckanext/pdfpreview/theme/public/vendor/webL10n/l10n.min.js
M ckanext/pdfpreview/theme/templates/pdf.html
M ckanext/reclinepreview/theme/public/preview_recline.js
M ckanext/textpreview/plugin.py
M ckanext/textpreview/tests/test_preview.py
M doc/_themes/sphinx-theme-okfn
M doc/toolkit.rst
Log Message:
-----------
Merged master
Commit: 348cbaa4d06c0cad5988292258f5b0f94000ae44
https://github.com/okfn/ckan/commit/348cbaa4d06c0cad5988292258f5b0f94000ae44
Author: John Martin <me at johnmart.in>
Date: 2013-06-26 (Wed, 26 Jun 2013)
Changed paths:
M ckan/templates/user/dashboard.html
Log Message:
-----------
[#626] Small textual tweak
Commit: 0838215b652879f4cca797310c3287d0a0e18e77
https://github.com/okfn/ckan/commit/0838215b652879f4cca797310c3287d0a0e18e77
Author: tobes <toby.junk at gmail.com>
Date: 2013-06-26 (Wed, 26 Jun 2013)
Changed paths:
M ckan/controllers/user.py
Log Message:
-----------
[#1039] Fix for own domain
Commit: 2ebad5b325fbc94da1805458505ce10a19bb3936
https://github.com/okfn/ckan/commit/2ebad5b325fbc94da1805458505ce10a19bb3936
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-26 (Wed, 26 Jun 2013)
Changed paths:
M ckan/tests/logic/test_action.py
Log Message:
-----------
[#953] Fix a broken test
This test was trying to create private datasets that don't belong to any
organization, which isn't allowed.
Commit: b2bcc99b11bf6293dca51ecbe8241dde8268785f
https://github.com/okfn/ckan/commit/b2bcc99b11bf6293dca51ecbe8241dde8268785f
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-27 (Thu, 27 Jun 2013)
Changed paths:
M .gitmodules
A .pipignore
M CHANGELOG.rst
M LICENSE.txt
M bin/ckan_edit_local.py
M bin/travis-build
M ckan/__init__.py
M ckan/config/deployment.ini_tmpl
M ckan/config/routing.py
M ckan/controllers/api.py
M ckan/controllers/group.py
M ckan/controllers/organization.py
M ckan/controllers/package.py
M ckan/lib/activity_streams.py
M ckan/lib/app_globals.py
M ckan/lib/base.py
M ckan/lib/celery_app.py
M ckan/lib/cli.py
M ckan/lib/datapreview.py
M ckan/lib/email_notifications.py
M ckan/lib/helpers.py
M ckan/lib/i18n.py
M ckan/lib/navl/dictization_functions.py
M ckan/lib/plugins.py
M ckan/lib/search/__init__.py
M ckan/logic/__init__.py
M ckan/logic/action/create.py
M ckan/logic/action/delete.py
M ckan/logic/action/get.py
M ckan/logic/action/update.py
M ckan/logic/auth/create.py
M ckan/logic/auth/delete.py
M ckan/logic/auth/get.py
M ckan/logic/converters.py
M ckan/logic/schema.py
M ckan/logic/validators.py
A ckan/migration/versions/068_add_package_extras_index.py
M ckan/model/license.py
M ckan/model/meta.py
R ckan/model/test_user.py
M ckan/model/user.py
M ckan/new_authz.py
M ckan/plugins/interfaces.py
M ckan/plugins/toolkit.py
M ckan/public/base/css/main.css
M ckan/public/base/javascript/modules/autocomplete.js
M ckan/public/base/javascript/modules/confirm-action.js
A ckan/public/base/javascript/modules/media-grid.js
M ckan/public/base/javascript/modules/related-item.js
M ckan/public/base/javascript/modules/resource-upload-field.js
A ckan/public/base/javascript/plugins/jquery.masonry.js
M ckan/public/base/javascript/resource.config
M ckan/public/base/less/ckan.less
M ckan/public/base/less/dataset.less
M ckan/public/base/less/homepage.less
M ckan/public/base/less/iehacks.less
M ckan/public/base/less/layout.less
M ckan/public/base/less/media.less
M ckan/public/base/less/module.less
A ckan/public/base/less/search.less
M ckan/public/base/less/toolbar.less
M ckan/templates/admin/base.html
M ckan/templates/group/about.html
M ckan/templates/group/activity_stream.html
M ckan/templates/group/admins.html
M ckan/templates/group/base_form_page.html
M ckan/templates/group/edit.html
A ckan/templates/group/edit_base.html
M ckan/templates/group/followers.html
M ckan/templates/group/index.html
M ckan/templates/group/member_new.html
M ckan/templates/group/members.html
M ckan/templates/group/read.html
M ckan/templates/group/read_base.html
M ckan/templates/group/snippets/group_item.html
M ckan/templates/group/snippets/group_list.html
M ckan/templates/header.html
M ckan/templates/home/index.html
M ckan/templates/organization/about.html
M ckan/templates/organization/activity_stream.html
M ckan/templates/organization/base_form_page.html
M ckan/templates/organization/bulk_process.html
M ckan/templates/organization/edit_base.html
M ckan/templates/organization/index.html
M ckan/templates/organization/member_new.html
M ckan/templates/organization/members.html
M ckan/templates/organization/read.html
M ckan/templates/organization/read_base.html
M ckan/templates/organization/snippets/organization_form.html
M ckan/templates/organization/snippets/organization_item.html
M ckan/templates/organization/snippets/organization_list.html
M ckan/templates/package/activity.html
M ckan/templates/package/activity_stream.html
M ckan/templates/package/edit.html
M ckan/templates/package/followers.html
M ckan/templates/package/history.html
M ckan/templates/package/new_resource.html
M ckan/templates/package/read.html
M ckan/templates/package/read_base.html
M ckan/templates/package/related_list.html
M ckan/templates/package/resource_edit.html
M ckan/templates/package/resource_read.html
M ckan/templates/package/search.html
M ckan/templates/package/snippets/additional_info.html
M ckan/templates/package/snippets/resources_list.html
R ckan/templates/package/snippets/search_form.html
M ckan/templates/package/snippets/tags.html
M ckan/templates/page.html
M ckan/templates/related/dashboard.html
M ckan/templates/related/snippets/related_item.html
M ckan/templates/related/snippets/related_list.html
M ckan/templates/snippets/group_item.html
M ckan/templates/snippets/organization.html
M ckan/templates/snippets/organization_item.html
A ckan/templates/snippets/search_form.html
M ckan/templates/user/dashboard.html
M ckan/templates/user/edit_base.html
M ckan/templates/user/read_base.html
M ckan/tests/__init__.py
M ckan/tests/functional/test_related.py
M ckan/tests/functional/test_user.py
M ckan/tests/lib/test_email_notifications.py
M ckan/tests/logic/test_action.py
M ckan/tests/models/test_user.py
M ckan/tests/schema/test_schema.py
M ckan/tests/test_coding_standards.py
M ckanext/datastore/controller.py
M ckanext/datastore/db.py
M ckanext/datastore/logic/action.py
M ckanext/datastore/logic/auth.py
M ckanext/datastore/plugin.py
M ckanext/datastore/tests/test_create.py
M ckanext/datastore/tests/test_delete.py
M ckanext/datastore/tests/test_dump.py
M ckanext/datastore/tests/test_search.py
M ckanext/datastore/tests/test_unit.py
M ckanext/datastore/tests/test_upsert.py
M ckanext/example_idatasetform/plugin.py
M ckanext/pdfpreview/plugin.py
M ckanext/pdfpreview/tests/test_preview.py
M ckanext/pdfpreview/theme/public/resource.config
A ckanext/pdfpreview/theme/public/vendor/l10n/ar/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ar/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ca/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ca/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ca/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/cs/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/cs/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/da/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/da/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/da/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/de/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/de/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/el/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/el/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/el/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/en-US/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/en-US/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/en-US/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/es/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/es/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/es/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fi/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fi/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/fi/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fr/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fr/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/fr/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/he/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/he/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/it/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/it/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ja/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ja/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ja/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ko/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ko/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ko/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/locale.properties.js
A ckanext/pdfpreview/theme/public/vendor/l10n/lt/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/lt/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/lt/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/nl/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/nl/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/nl/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/pl/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/pl/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/pl/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/pt-BR/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/pt-BR/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ro/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ro/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ru/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ru/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/sr/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/sr/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/sv/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/sv/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/sv/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/tr/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/tr/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/tr/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/vi/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/vi/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/vi/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-CN/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-CN/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-CN/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-TW/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-TW/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-TW/viewer.properties
M ckanext/pdfpreview/theme/public/vendor/pdfjs/pdf.js
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/compatibility.min.js
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/debugger.js
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/debugger.min.js
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-check.svg
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-comment.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-help.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-insert.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-key.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-newparagraph.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-note.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-paragraph.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-next-rtl.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-next.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-previous-rtl.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-previous.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/loading-small.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/shadow.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/toolbarButton-presentationMode.png
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/locale.properties.js
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.css
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.js
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.min.css
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.min.js
M ckanext/pdfpreview/theme/public/vendor/webL10n/l10n.js
R ckanext/pdfpreview/theme/public/vendor/webL10n/l10n.min.js
M ckanext/pdfpreview/theme/templates/pdf.html
M ckanext/reclinepreview/theme/public/preview_recline.js
M ckanext/resourceproxy/controller.py
M ckanext/resourceproxy/tests/test_proxy.py
M ckanext/test_tag_vocab_plugin.py
M ckanext/textpreview/plugin.py
M ckanext/textpreview/tests/test_preview.py
A dev-requirements.txt
M doc/_themes/sphinx-theme-okfn
M doc/conf.py
M doc/data-viewer.rst
M doc/datastore.rst
M doc/documentation-guidelines.rst
M doc/index.rst
M doc/install-from-source.rst
M doc/installing.rst
M doc/paster.rst
M doc/release-process.rst
R doc/releases.rst
M doc/test.rst
M doc/toolkit.rst
A doc/upgrade-package-ckan-1-to-2.rst
A doc/upgrade-package-to-minor-release.rst
A doc/upgrade-package-to-patch-release.rst
A doc/upgrade-source.rst
R doc/upgrading-a-package-install.rst
R doc/upgrading-a-source-install.rst
A doc/upgrading.rst
M fabfile.py
R pip-requirements-docs.txt
R pip-requirements-test.txt
R pip-requirements.txt
A requirements.txt
M setup.py
Log Message:
-----------
Merge branch 'master' of github.com:okfn/ckan into resource_update-use-package_update
Commit: 936b44916f839109658613a417fa16afb2db3c7a
https://github.com/okfn/ckan/commit/936b44916f839109658613a417fa16afb2db3c7a
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-27 (Thu, 27 Jun 2013)
Changed paths:
M ckan/logic/action/delete.py
Log Message:
-----------
[#707] Add a docstring to _group_or_org_purge
Commit: 288050e641a8d70a9a12fdbd0925a71616b8c910
https://github.com/okfn/ckan/commit/288050e641a8d70a9a12fdbd0925a71616b8c910
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-27 (Thu, 27 Jun 2013)
Changed paths:
M ckan/logic/action/delete.py
Log Message:
-----------
[#707] Correct a typo in a docstring
Commit: 7a9f64b6b37c2e35edd1673dbbd1e8b604c37f72
https://github.com/okfn/ckan/commit/7a9f64b6b37c2e35edd1673dbbd1e8b604c37f72
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-27 (Thu, 27 Jun 2013)
Changed paths:
M ckan/logic/action/delete.py
Log Message:
-----------
[#707] Small _group_or_org_purge refactor
Commit: f7f4955c9982d703ae83bf8167a55d662f56b177
https://github.com/okfn/ckan/commit/f7f4955c9982d703ae83bf8167a55d662f56b177
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-27 (Thu, 27 Jun 2013)
Changed paths:
M ckan/tests/functional/api/model/test_group.py
M ckan/tests/functional/api/model/test_organization.py
Log Message:
-----------
[#707] Remove some unnecessary test code
These actions are not what's being tested here
Commit: bb429ae2b38405ff662070ef4cca7b663faf08df
https://github.com/okfn/ckan/commit/bb429ae2b38405ff662070ef4cca7b663faf08df
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-27 (Thu, 27 Jun 2013)
Changed paths:
M ckan/logic/action/delete.py
Log Message:
-----------
[#707] Add 'cannot be undone' warnings to *_purge APIs
Commit: 26477470abac3c25be45c13661f9d61f319be98d
https://github.com/okfn/ckan/commit/26477470abac3c25be45c13661f9d61f319be98d
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-27 (Thu, 27 Jun 2013)
Changed paths:
M ckan/tests/functional/api/model/test_group.py
M ckan/tests/functional/api/model/test_organization.py
Log Message:
-----------
[#707] Refactor group_ and organization_purge tests
Combine the group and organization purge tests into one test class, to
avoid so much code duplication in the tests.
Commit: e2265f6b195df81d7e555c02d7ff70cac1d104ae
https://github.com/okfn/ckan/commit/e2265f6b195df81d7e555c02d7ff70cac1d104ae
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-27 (Thu, 27 Jun 2013)
Changed paths:
A ckan/tests/functional/api/model/test_group_and_organization_purge.py
R ckan/tests/functional/api/model/test_organization.py
Log Message:
-----------
[#707] Rename group and org purge test module
Now that the one module tests both group and organization purge, it
needs a different name.
Commit: aa0c9f851fbfffb7a8472f0467501b51b1ce2b1b
https://github.com/okfn/ckan/commit/aa0c9f851fbfffb7a8472f0467501b51b1ce2b1b
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-27 (Thu, 27 Jun 2013)
Changed paths:
M ckan/tests/functional/api/model/test_group.py
Log Message:
-----------
[#707] Remove unneeded imports from test_group.py
Commit: 3fb00b6735b5443a6f5be9192e048e4b57e92687
https://github.com/okfn/ckan/commit/3fb00b6735b5443a6f5be9192e048e4b57e92687
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-27 (Thu, 27 Jun 2013)
Changed paths:
M CHANGELOG.rst
Log Message:
-----------
[#1052] Add CHANGELOG item about IPackageController change
Commit: 8edbdbd7049e23024c29d5ce9b5020d5db381db2
https://github.com/okfn/ckan/commit/8edbdbd7049e23024c29d5ce9b5020d5db381db2
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-27 (Thu, 27 Jun 2013)
Changed paths:
M ckan/controllers/package.py
M ckan/lib/datapreview.py
M ckan/lib/helpers.py
M ckan/templates/group/base_form_page.html
M ckan/templates/group/edit.html
M ckan/templates/group/edit_base.html
M ckan/templates/group/index.html
M ckan/templates/group/new.html
M ckan/templates/group/read_base.html
A ckan/templates/group/snippets/helper.html
A ckan/templates/group/snippets/info.html
M ckan/templates/organization/index.html
M ckan/templates/organization/new.html
A ckan/templates/organization/snippets/helper.html
M ckan/templates/package/resource_read.html
M ckan/templates/package/snippets/resource_item.html
M ckan/templates_legacy/package/resource_read.html
Log Message:
-----------
Merge branch 'master' of github.com:okfn/ckan into resource_update-use-package_update
Commit: 74d185fb6fa4dc81b040cc955ffffdd90b8fff0c
https://github.com/okfn/ckan/commit/74d185fb6fa4dc81b040cc955ffffdd90b8fff0c
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-27 (Thu, 27 Jun 2013)
Changed paths:
M CHANGELOG.rst
M ckan/logic/action/update.py
M ckan/tests/logic/test_action.py
Log Message:
-----------
Merge branch 'resource_update-use-package_update'
Commit: c71fdc29ccd2b72ce517fa4f22588b74707b5805
https://github.com/okfn/ckan/commit/c71fdc29ccd2b72ce517fa4f22588b74707b5805
Author: tobes <toby.junk at gmail.com>
Date: 2013-06-28 (Fri, 28 Jun 2013)
Changed paths:
M ckan/lib/helpers.py
Log Message:
-----------
[#1013] Add docstring
Commit: 4fb90b54e3e56fcf61dfd590c5446bebe4a312d6
https://github.com/okfn/ckan/commit/4fb90b54e3e56fcf61dfd590c5446bebe4a312d6
Author: Nigel Babu <nigelbabu at gmail.com>
Date: 2013-06-28 (Fri, 28 Jun 2013)
Changed paths:
M ckan/logic/auth/create.py
M ckan/tests/logic/test_action.py
M ckanext/datastore/tests/test_search.py
Log Message:
-----------
Merge pull request #792 from okfn/792-create-dataset-auth-improvement
"Add Dataset" button shows when you can't use it
Commit: 8d55e1342131acb3e24bdcb310ade6ed3482f1e2
https://github.com/okfn/ckan/commit/8d55e1342131acb3e24bdcb310ade6ed3482f1e2
Author: tobes <toby.junk at gmail.com>
Date: 2013-06-28 (Fri, 28 Jun 2013)
Changed paths:
M CHANGELOG.rst
M bin/ckan_edit_local.py
M ckan/__init__.py
M ckan/config/deployment.ini_tmpl
M ckan/config/routing.py
M ckan/controllers/api.py
M ckan/controllers/group.py
M ckan/controllers/organization.py
M ckan/controllers/package.py
M ckan/lib/activity_streams.py
M ckan/lib/base.py
M ckan/lib/celery_app.py
M ckan/lib/datapreview.py
M ckan/lib/helpers.py
M ckan/lib/i18n.py
M ckan/lib/plugins.py
M ckan/logic/action/create.py
M ckan/logic/action/delete.py
M ckan/logic/action/get.py
M ckan/logic/action/update.py
M ckan/logic/auth/create.py
M ckan/logic/auth/delete.py
M ckan/logic/auth/get.py
M ckan/logic/schema.py
M ckan/logic/validators.py
M ckan/model/license.py
M ckan/model/user.py
M ckan/new_authz.py
M ckan/plugins/interfaces.py
M ckan/plugins/toolkit.py
M ckan/public/base/css/main.css
M ckan/public/base/less/ckan.less
M ckan/public/base/less/dataset.less
M ckan/public/base/less/homepage.less
M ckan/public/base/less/layout.less
M ckan/public/base/less/module.less
A ckan/public/base/less/search.less
M ckan/public/base/less/toolbar.less
M ckan/templates/admin/base.html
M ckan/templates/group/about.html
M ckan/templates/group/activity_stream.html
M ckan/templates/group/admins.html
M ckan/templates/group/base_form_page.html
M ckan/templates/group/edit.html
A ckan/templates/group/edit_base.html
M ckan/templates/group/followers.html
M ckan/templates/group/index.html
M ckan/templates/group/member_new.html
M ckan/templates/group/members.html
M ckan/templates/group/new.html
M ckan/templates/group/read.html
M ckan/templates/group/read_base.html
A ckan/templates/group/snippets/helper.html
A ckan/templates/group/snippets/info.html
M ckan/templates/header.html
M ckan/templates/home/index.html
M ckan/templates/organization/about.html
M ckan/templates/organization/activity_stream.html
M ckan/templates/organization/base_form_page.html
M ckan/templates/organization/bulk_process.html
M ckan/templates/organization/edit_base.html
M ckan/templates/organization/index.html
M ckan/templates/organization/member_new.html
M ckan/templates/organization/members.html
M ckan/templates/organization/new.html
M ckan/templates/organization/read.html
M ckan/templates/organization/read_base.html
A ckan/templates/organization/snippets/helper.html
M ckan/templates/package/activity.html
M ckan/templates/package/activity_stream.html
M ckan/templates/package/edit.html
M ckan/templates/package/followers.html
M ckan/templates/package/history.html
M ckan/templates/package/read.html
M ckan/templates/package/read_base.html
M ckan/templates/package/related_list.html
M ckan/templates/package/resource_edit.html
M ckan/templates/package/resource_read.html
M ckan/templates/package/search.html
M ckan/templates/package/snippets/additional_info.html
M ckan/templates/package/snippets/resource_item.html
M ckan/templates/package/snippets/resources_list.html
R ckan/templates/package/snippets/search_form.html
M ckan/templates/package/snippets/tags.html
M ckan/templates/page.html
M ckan/templates/snippets/organization.html
A ckan/templates/snippets/search_form.html
M ckan/templates/user/dashboard.html
M ckan/templates/user/edit_base.html
M ckan/templates/user/read_base.html
M ckan/templates_legacy/package/resource_read.html
M ckan/tests/functional/test_user.py
M ckan/tests/logic/test_action.py
M ckan/tests/test_coding_standards.py
M ckanext/datastore/db.py
M ckanext/datastore/logic/action.py
M ckanext/datastore/plugin.py
M ckanext/datastore/tests/test_create.py
M ckanext/datastore/tests/test_delete.py
M ckanext/datastore/tests/test_dump.py
M ckanext/datastore/tests/test_search.py
M ckanext/datastore/tests/test_unit.py
M ckanext/datastore/tests/test_upsert.py
M ckanext/pdfpreview/plugin.py
M ckanext/pdfpreview/tests/test_preview.py
M ckanext/reclinepreview/theme/public/preview_recline.js
M ckanext/resourceproxy/controller.py
M ckanext/textpreview/plugin.py
M ckanext/textpreview/tests/test_preview.py
R doc/changelog.rst
M doc/toolkit.rst
Log Message:
-----------
Merge branch 'master' into 707-implement-group-purging
Commit: a548a79c05a9aea6bb7c9a224a2a1cc6fef6612c
https://github.com/okfn/ckan/commit/a548a79c05a9aea6bb7c9a224a2a1cc6fef6612c
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-28 (Fri, 28 Jun 2013)
Changed paths:
M ckan/lib/helpers.py
Log Message:
-----------
[#1013] Tweak h.new_activities() docstring
Commit: 7ac276e0b121b5c948ace8f73a4c2d78cb26a661
https://github.com/okfn/ckan/commit/7ac276e0b121b5c948ace8f73a4c2d78cb26a661
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-28 (Fri, 28 Jun 2013)
Changed paths:
M ckan/lib/base.py
M ckan/lib/helpers.py
M ckan/logic/action/create.py
M ckan/templates/header.html
Log Message:
-----------
Merge branch '1013-new-activities-fixup'
Conflicts:
ckan/logic/action/create.py
Commit: 0732360973d34557c80831564ef4eea0d9d149dd
https://github.com/okfn/ckan/commit/0732360973d34557c80831564ef4eea0d9d149dd
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-28 (Fri, 28 Jun 2013)
Changed paths:
M ckan/logic/action/create.py
Log Message:
-----------
[#1023] Tweak a comment
Make it clear which line the comment applies to (and that applies to
only one line)
Commit: 1001489f8e2f355c3c062dce9d2b0d7f6277e7c6
https://github.com/okfn/ckan/commit/1001489f8e2f355c3c062dce9d2b0d7f6277e7c6
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-28 (Fri, 28 Jun 2013)
Changed paths:
M ckan/logic/action/create.py
Log Message:
-----------
Fix a string format
Use .format() not %s
Commit: edd92521b69ed6fe444956b79d4b9207ddf73f5c
https://github.com/okfn/ckan/commit/edd92521b69ed6fe444956b79d4b9207ddf73f5c
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-28 (Fri, 28 Jun 2013)
Changed paths:
M ckan/tests/test_coding_standards.py
Log Message:
-----------
Remove 066_default_package_type.py from TestPep8 blacklist
Commit: 16a013fd990df266e0c967a5e66254971825c520
https://github.com/okfn/ckan/commit/16a013fd990df266e0c967a5e66254971825c520
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-28 (Fri, 28 Jun 2013)
Changed paths:
M ckan/logic/action/create.py
Log Message:
-----------
Fix a bug in a str.format() call
Commit: 21d99b69a682c507795e5d05d5e28b154dbb0d8a
https://github.com/okfn/ckan/commit/21d99b69a682c507795e5d05d5e28b154dbb0d8a
Author: joetsoi <joe.yeung.tsoi at gmail.com>
Date: 2013-06-28 (Fri, 28 Jun 2013)
Changed paths:
M .gitmodules
A .pipignore
M CHANGELOG.rst
M LICENSE.txt
M bin/ckan_edit_local.py
M bin/travis-build
M ckan/__init__.py
M ckan/config/deployment.ini_tmpl
M ckan/config/routing.py
M ckan/controllers/api.py
M ckan/controllers/group.py
M ckan/controllers/home.py
M ckan/controllers/organization.py
M ckan/controllers/package.py
M ckan/lib/activity_streams.py
M ckan/lib/app_globals.py
M ckan/lib/base.py
M ckan/lib/celery_app.py
M ckan/lib/cli.py
M ckan/lib/datapreview.py
M ckan/lib/dictization/model_dictize.py
M ckan/lib/email_notifications.py
M ckan/lib/helpers.py
M ckan/lib/i18n.py
M ckan/lib/navl/dictization_functions.py
M ckan/lib/plugins.py
M ckan/lib/search/__init__.py
M ckan/logic/__init__.py
M ckan/logic/action/create.py
M ckan/logic/action/delete.py
M ckan/logic/action/get.py
M ckan/logic/action/update.py
M ckan/logic/auth/create.py
M ckan/logic/auth/delete.py
M ckan/logic/auth/get.py
M ckan/logic/converters.py
M ckan/logic/schema.py
M ckan/logic/validators.py
A ckan/migration/versions/068_add_package_extras_index.py
M ckan/model/license.py
M ckan/model/meta.py
R ckan/model/test_user.py
M ckan/model/user.py
M ckan/new_authz.py
M ckan/plugins/interfaces.py
M ckan/plugins/toolkit.py
M ckan/public/base/css/main.css
M ckan/public/base/javascript/modules/autocomplete.js
M ckan/public/base/javascript/modules/confirm-action.js
A ckan/public/base/javascript/modules/media-grid.js
M ckan/public/base/javascript/modules/related-item.js
M ckan/public/base/javascript/modules/resource-upload-field.js
A ckan/public/base/javascript/plugins/jquery.masonry.js
M ckan/public/base/javascript/resource.config
M ckan/public/base/less/ckan.less
M ckan/public/base/less/dataset.less
M ckan/public/base/less/homepage.less
M ckan/public/base/less/iehacks.less
M ckan/public/base/less/layout.less
M ckan/public/base/less/media.less
M ckan/public/base/less/module.less
A ckan/public/base/less/search.less
M ckan/public/base/less/toolbar.less
M ckan/templates/admin/base.html
M ckan/templates/group/about.html
M ckan/templates/group/activity_stream.html
M ckan/templates/group/admins.html
M ckan/templates/group/base_form_page.html
M ckan/templates/group/edit.html
A ckan/templates/group/edit_base.html
M ckan/templates/group/followers.html
M ckan/templates/group/index.html
M ckan/templates/group/member_new.html
M ckan/templates/group/members.html
M ckan/templates/group/read.html
M ckan/templates/group/read_base.html
M ckan/templates/group/snippets/group_item.html
M ckan/templates/group/snippets/group_list.html
M ckan/templates/header.html
M ckan/templates/home/index.html
M ckan/templates/organization/about.html
M ckan/templates/organization/activity_stream.html
M ckan/templates/organization/base_form_page.html
M ckan/templates/organization/bulk_process.html
M ckan/templates/organization/edit_base.html
M ckan/templates/organization/index.html
M ckan/templates/organization/member_new.html
M ckan/templates/organization/members.html
M ckan/templates/organization/read.html
M ckan/templates/organization/read_base.html
M ckan/templates/organization/snippets/organization_form.html
M ckan/templates/organization/snippets/organization_item.html
M ckan/templates/organization/snippets/organization_list.html
M ckan/templates/package/activity.html
M ckan/templates/package/activity_stream.html
M ckan/templates/package/edit.html
M ckan/templates/package/followers.html
M ckan/templates/package/history.html
M ckan/templates/package/new_resource.html
M ckan/templates/package/read.html
M ckan/templates/package/read_base.html
M ckan/templates/package/related_list.html
M ckan/templates/package/resource_edit.html
M ckan/templates/package/resource_read.html
M ckan/templates/package/search.html
M ckan/templates/package/snippets/additional_info.html
M ckan/templates/package/snippets/package_basic_fields.html
M ckan/templates/package/snippets/package_form.html
M ckan/templates/package/snippets/resource_item.html
M ckan/templates/package/snippets/resources_list.html
R ckan/templates/package/snippets/search_form.html
M ckan/templates/package/snippets/tags.html
M ckan/templates/page.html
M ckan/templates/related/dashboard.html
M ckan/templates/related/snippets/related_item.html
M ckan/templates/related/snippets/related_list.html
A ckan/templates/snippets/additional_info.html
M ckan/templates/snippets/group_item.html
M ckan/templates/snippets/organization.html
M ckan/templates/snippets/organization_item.html
A ckan/templates/snippets/search_form.html
M ckan/templates/user/dashboard.html
M ckan/templates/user/edit_base.html
M ckan/templates/user/read_base.html
M ckan/templates_legacy/package/new_package_form.html
M ckan/templates_legacy/package/resource_read.html
M ckan/tests/__init__.py
M ckan/tests/functional/test_related.py
M ckan/tests/functional/test_user.py
M ckan/tests/lib/test_email_notifications.py
M ckan/tests/lib/test_solr_package_search.py
M ckan/tests/logic/test_action.py
M ckan/tests/models/test_user.py
M ckan/tests/schema/test_schema.py
M ckan/tests/test_coding_standards.py
M ckanext/datastore/controller.py
M ckanext/datastore/db.py
M ckanext/datastore/logic/action.py
M ckanext/datastore/logic/auth.py
M ckanext/datastore/plugin.py
M ckanext/datastore/tests/test_create.py
M ckanext/datastore/tests/test_delete.py
M ckanext/datastore/tests/test_dump.py
M ckanext/datastore/tests/test_search.py
M ckanext/datastore/tests/test_unit.py
M ckanext/datastore/tests/test_upsert.py
M ckanext/example_idatasetform/plugin.py
M ckanext/pdfpreview/plugin.py
M ckanext/pdfpreview/tests/test_preview.py
M ckanext/pdfpreview/theme/public/resource.config
A ckanext/pdfpreview/theme/public/vendor/l10n/ar/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ar/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ca/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ca/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ca/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/cs/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/cs/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/da/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/da/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/da/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/de/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/de/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/el/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/el/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/el/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/en-US/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/en-US/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/en-US/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/es/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/es/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/es/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fi/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fi/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/fi/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fr/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/fr/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/fr/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/he/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/he/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/it/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/it/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ja/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ja/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ja/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ko/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ko/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ko/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/locale.properties.js
A ckanext/pdfpreview/theme/public/vendor/l10n/lt/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/lt/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/lt/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/nl/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/nl/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/nl/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/pl/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/pl/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/pl/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/pt-BR/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/pt-BR/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ro/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ro/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/ru/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/ru/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/sr/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/sr/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/sv/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/sv/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/sv/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/tr/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/tr/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/tr/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/vi/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/vi/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/vi/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-CN/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-CN/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-CN/viewer.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-TW/chrome.properties
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-TW/metadata.inc
A ckanext/pdfpreview/theme/public/vendor/l10n/zh-TW/viewer.properties
M ckanext/pdfpreview/theme/public/vendor/pdfjs/pdf.js
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/compatibility.min.js
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/debugger.js
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/debugger.min.js
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-check.svg
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-comment.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-help.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-insert.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-key.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-newparagraph.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-note.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/annotation-paragraph.svg
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-next-rtl.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-next.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-previous-rtl.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/findbarButton-previous.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/loading-small.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/shadow.png
A ckanext/pdfpreview/theme/public/vendor/pdfviewer/images/toolbarButton-presentationMode.png
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/locale.properties.js
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.css
M ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.js
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.min.css
R ckanext/pdfpreview/theme/public/vendor/pdfviewer/viewer.min.js
M ckanext/pdfpreview/theme/public/vendor/webL10n/l10n.js
R ckanext/pdfpreview/theme/public/vendor/webL10n/l10n.min.js
M ckanext/pdfpreview/theme/templates/pdf.html
M ckanext/reclinepreview/theme/public/preview_recline.js
M ckanext/resourceproxy/controller.py
M ckanext/resourceproxy/tests/test_proxy.py
M ckanext/test_tag_vocab_plugin.py
M ckanext/textpreview/plugin.py
M ckanext/textpreview/tests/test_preview.py
A dev-requirements.txt
M doc/_themes/sphinx-theme-okfn
M doc/conf.py
M doc/configuration.rst
M doc/data-viewer.rst
M doc/datastore.rst
M doc/documentation-guidelines.rst
M doc/index.rst
M doc/install-from-package.rst
M doc/install-from-source.rst
M doc/installing.rst
M doc/paster.rst
M doc/release-process.rst
R doc/releases.rst
M doc/test.rst
M doc/toolkit.rst
A doc/upgrade-package-ckan-1-to-2.rst
A doc/upgrade-package-to-minor-release.rst
A doc/upgrade-package-to-patch-release.rst
A doc/upgrade-source.rst
R doc/upgrading-a-package-install.rst
R doc/upgrading-a-source-install.rst
A doc/upgrading.rst
M fabfile.py
R pip-requirements-docs.txt
R pip-requirements-test.txt
R pip-requirements.txt
A requirements.txt
M setup.py
Log Message:
-----------
Merge branch 'master' into 953-bug-creating-a-private-dataset-emits-an-activity
Conflicts:
ckan/logic/schema.py
ckan/logic/validators.py
ckan/public/base/javascript/resource.config
Commit: 18313625003d4b4be5227a07dceff6c5a65674b1
https://github.com/okfn/ckan/commit/18313625003d4b4be5227a07dceff6c5a65674b1
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-28 (Fri, 28 Jun 2013)
Changed paths:
M ckan/logic/auth/create.py
M ckan/tests/logic/test_action.py
M ckanext/datastore/tests/test_search.py
Log Message:
-----------
Merge branch 'master' of github.com:okfn/ckan
Commit: abd658984b76884862359c15276f6cacb211d291
https://github.com/okfn/ckan/commit/abd658984b76884862359c15276f6cacb211d291
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-28 (Fri, 28 Jun 2013)
Changed paths:
M dev-requirements.txt
Log Message:
-----------
[#1059] Upgrade pep8 dependency to latest version
Commit: bd937518e8d4ba226ba1a7b0369ce4be27148943
https://github.com/okfn/ckan/commit/bd937518e8d4ba226ba1a7b0369ce4be27148943
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-06-28 (Fri, 28 Jun 2013)
Changed paths:
M ckan/migration/versions/066_default_package_type.py
Log Message:
-----------
[#1059] Delete a random empty line
This empty line makes the file fail verification with older versions of
pep8.
Commit: c322a03ba77b02dc37688f813b88285b21769d36
https://github.com/okfn/ckan/commit/c322a03ba77b02dc37688f813b88285b21769d36
Author: tobes <toby.junk at gmail.com>
Date: 2013-06-28 (Fri, 28 Jun 2013)
Changed paths:
M ckan/migration/versions/066_default_package_type.py
M dev-requirements.txt
Log Message:
-----------
Merge pull request #1059 from okfn/1059-upgrade-pep8-module
Upgrade pep8 module to latest
Commit: 30dd328f1f0735795039a24cedce76eb244740a5
https://github.com/okfn/ckan/commit/30dd328f1f0735795039a24cedce76eb244740a5
Author: kindly <kindly at gmail.com>
Date: 2013-06-28 (Fri, 28 Jun 2013)
Changed paths:
M ckan/controllers/group.py
M ckan/controllers/organization.py
M ckan/controllers/package.py
M ckan/lib/datapreview.py
M ckan/lib/helpers.py
M ckan/plugins/interfaces.py
M ckan/public/base/css/main.css
M ckan/public/base/less/ckan.less
M ckan/tests/test_coding_standards.py
M ckanext/pdfpreview/plugin.py
M ckanext/pdfpreview/tests/test_preview.py
M ckanext/resourceproxy/controller.py
M ckanext/textpreview/plugin.py
M ckanext/textpreview/tests/test_preview.py
Log Message:
-----------
Merge branch 'master' into 1025-user-login-fixes
Commit: d456c5d224823891b9efd32f091372b9c72bad85
https://github.com/okfn/ckan/commit/d456c5d224823891b9efd32f091372b9c72bad85
Author: kindly <kindly at gmail.com>
Date: 2013-06-28 (Fri, 28 Jun 2013)
Changed paths:
M ckan/controllers/user.py
M ckan/lib/repoze_patch.py
M ckan/tests/functional/test_user.py
Log Message:
-----------
Merge branch '1025-user-login-fixes'
Commit: 495e63c2c9c5d6a76995b3464c1e82caad834322
https://github.com/okfn/ckan/commit/495e63c2c9c5d6a76995b3464c1e82caad834322
Author: joetsoi <joe.yeung.tsoi at gmail.com>
Date: 2013-06-30 (Sun, 30 Jun 2013)
Changed paths:
M CHANGELOG.rst
M ckan/lib/base.py
M ckan/lib/helpers.py
M ckan/logic/action/create.py
M ckan/logic/action/update.py
M ckan/logic/auth/create.py
M ckan/migration/versions/066_default_package_type.py
M ckan/templates/group/base_form_page.html
M ckan/templates/group/edit.html
M ckan/templates/group/edit_base.html
M ckan/templates/group/index.html
M ckan/templates/group/new.html
M ckan/templates/group/read_base.html
A ckan/templates/group/snippets/helper.html
A ckan/templates/group/snippets/info.html
M ckan/templates/header.html
M ckan/templates/organization/index.html
M ckan/templates/organization/new.html
A ckan/templates/organization/snippets/helper.html
M ckan/tests/logic/test_action.py
M ckan/tests/test_coding_standards.py
M ckanext/datastore/tests/test_search.py
M dev-requirements.txt
Log Message:
-----------
Merge branch 'master' into 953-bug-creating-a-private-dataset-emits-an-activity
Commit: 96799ac5c8f6f4a1a101db32ad2c0e5ccb4caa67
https://github.com/okfn/ckan/commit/96799ac5c8f6f4a1a101db32ad2c0e5ccb4caa67
Author: joetsoi <joe.yeung.tsoi at gmail.com>
Date: 2013-07-01 (Mon, 01 Jul 2013)
Changed paths:
M ckanext/datastore/tests/test_search.py
Log Message:
-----------
[#953] fix datastore tests
create an organization in setup and use it in package_create
Commit: 0b5cdaaebc1bdee27f5331e33395a4b86effc12f
https://github.com/okfn/ckan/commit/0b5cdaaebc1bdee27f5331e33395a4b86effc12f
Author: tobes <toby.junk at gmail.com>
Date: 2013-07-01 (Mon, 01 Jul 2013)
Changed paths:
M ckan/lib/formatters.py
Log Message:
-----------
[#1041] Make localised_nice_date formatter more flexible
Commit: cce4309e8878dbe2d40952ca355184951a322f2b
https://github.com/okfn/ckan/commit/cce4309e8878dbe2d40952ca355184951a322f2b
Author: tobes <toby.junk at gmail.com>
Date: 2013-07-01 (Mon, 01 Jul 2013)
Changed paths:
M ckan/lib/helpers.py
Log Message:
-----------
[#1041] h.render_datetime() use localised_nice_date() for i18n
Commit: a2b2f56a34c5887cb49cd5f7ec5944b2b2008479
https://github.com/okfn/ckan/commit/a2b2f56a34c5887cb49cd5f7ec5944b2b2008479
Author: tobes <toby.junk at gmail.com>
Date: 2013-07-01 (Mon, 01 Jul 2013)
Changed paths:
M ckan/tests/functional/test_package.py
M ckan/tests/lib/test_helpers.py
Log Message:
-----------
[#1041] Test fixes
Commit: a2b6388d81eb681c01881138c128ddc94fdb6e0f
https://github.com/okfn/ckan/commit/a2b6388d81eb681c01881138c128ddc94fdb6e0f
Author: tobes <toby.junk at gmail.com>
Date: 2013-07-01 (Mon, 01 Jul 2013)
Changed paths:
M ckan/logic/action/get.py
Log Message:
-----------
[#626] Add display_name to group/org list for user action
Commit: 4ad56de7064e60059731e3097b934d0d6309fd80
https://github.com/okfn/ckan/commit/4ad56de7064e60059731e3097b934d0d6309fd80
Author: amercader <amercadero at gmail.com>
Date: 2013-07-01 (Mon, 01 Jul 2013)
Changed paths:
M ckan/logic/auth/get.py
M ckan/logic/schema.py
M ckan/logic/validators.py
A ckan/public/base/javascript/modules/dataset-visibility.js
M ckan/public/base/javascript/resource.config
M ckan/templates/package/snippets/package_basic_fields.html
M ckan/templates/package/snippets/package_metadata_fields.html
M ckan/tests/functional/api/model/test_package.py
M ckan/tests/functional/api/test_activity.py
M ckan/tests/logic/test_action.py
M ckanext/datastore/tests/test_search.py
Log Message:
-----------
Merge branch '953-bug-creating-a-private-dataset-emits-an-activity'
Commit: ccd12d389a732d2c90620cee7debce5dcc1673ec
https://github.com/okfn/ckan/commit/ccd12d389a732d2c90620cee7debce5dcc1673ec
Author: amercader <amercadero at gmail.com>
Date: 2013-07-01 (Mon, 01 Jul 2013)
Changed paths:
M ckan/lib/formatters.py
M ckan/lib/helpers.py
M ckan/tests/functional/test_package.py
M ckan/tests/lib/test_helpers.py
Log Message:
-----------
Merge branch '1041-render-datetime-i18n'
Commit: cac55c623cfd3d9840a05fc392a61cf3a40b03cd
https://github.com/okfn/ckan/commit/cac55c623cfd3d9840a05fc392a61cf3a40b03cd
Author: tobes <toby.junk at gmail.com>
Date: 2013-07-01 (Mon, 01 Jul 2013)
Changed paths:
M ckan/logic/action/get.py
Log Message:
-----------
Merge branch '861-order-by-dropdown'
Commit: d1b8b4e3b8add8116b8afeb8df657272df4b7455
https://github.com/okfn/ckan/commit/d1b8b4e3b8add8116b8afeb8df657272df4b7455
Author: tobes <toby.junk at gmail.com>
Date: 2013-07-01 (Mon, 01 Jul 2013)
Changed paths:
M ckan/lib/formatters.py
M ckan/lib/helpers.py
M ckan/logic/auth/get.py
M ckan/logic/schema.py
M ckan/logic/validators.py
A ckan/public/base/javascript/modules/dataset-visibility.js
M ckan/public/base/javascript/resource.config
M ckan/templates/package/snippets/package_basic_fields.html
M ckan/templates/package/snippets/package_metadata_fields.html
M ckan/tests/functional/api/model/test_package.py
M ckan/tests/functional/api/test_activity.py
M ckan/tests/functional/test_package.py
M ckan/tests/lib/test_helpers.py
M ckan/tests/logic/test_action.py
M ckanext/datastore/tests/test_search.py
Log Message:
-----------
Merge branch 'master' of github.com:okfn/ckan
Commit: b3fa9c8bb7c035ce18254d2be210555829385854
https://github.com/okfn/ckan/commit/b3fa9c8bb7c035ce18254d2be210555829385854
Author: tobes <toby.junk at gmail.com>
Date: 2013-07-01 (Mon, 01 Jul 2013)
Changed paths:
M ckan/config/routing.py
M ckan/controllers/user.py
M ckan/lib/helpers.py
M ckan/logic/action/get.py
M ckan/public/base/less/dashboard.less
M ckan/public/base/less/media.less
M ckan/public/base/less/module.less
M ckan/public/base/less/nav.less
M ckan/public/base/less/toolbar.less
M ckan/templates/user/dashboard.html
A ckan/templates/user/dashboard_datasets.html
A ckan/templates/user/dashboard_groups.html
A ckan/templates/user/dashboard_organizations.html
M ckan/templates/user/edit.html
M ckan/templates/user/edit_base.html
Log Message:
-----------
Merge branch '626-dashboard-update'
Commit: c0f2eb64d9d82a794f6c5d9db1e758f71157df90
https://github.com/okfn/ckan/commit/c0f2eb64d9d82a794f6c5d9db1e758f71157df90
Author: tobes <toby.junk at gmail.com>
Date: 2013-07-01 (Mon, 01 Jul 2013)
Changed paths:
M ckan/templates/admin/config.html
M ckan/templates/admin/index.html
M ckan/templates/footer.html
M ckan/templates/package/search.html
Log Message:
-----------
[#1062] Fix doc language link
Commit: 7315cc848b099a12bec80e3797b3507b9859bdc7
https://github.com/okfn/ckan/commit/7315cc848b099a12bec80e3797b3507b9859bdc7
Author: tobes <toby.junk at gmail.com>
Date: 2013-07-01 (Mon, 01 Jul 2013)
Changed paths:
M ckan/templates/admin/config.html
M ckan/templates/admin/index.html
M ckan/templates/footer.html
M ckan/templates/package/search.html
Log Message:
-----------
[#1062] Remove lang from docs
Commit: 7e59901d5cb09849fde8250e149ed9c031d089c8
https://github.com/okfn/ckan/commit/7e59901d5cb09849fde8250e149ed9c031d089c8
Author: Nigel Babu <nigelbabu at gmail.com>
Date: 2013-07-01 (Mon, 01 Jul 2013)
Changed paths:
M ckan/templates/admin/config.html
M ckan/templates/admin/index.html
M ckan/templates/footer.html
M ckan/templates/package/search.html
Log Message:
-----------
Merge pull request #1062 from okfn/1062-doc-lang-fix
Doc language fix
Commit: ab593ccf0362f086f46785e564439cbc3b3903bf
https://github.com/okfn/ckan/commit/ab593ccf0362f086f46785e564439cbc3b3903bf
Author: tobes <toby.junk at gmail.com>
Date: 2013-07-01 (Mon, 01 Jul 2013)
Changed paths:
M ckan/logic/action/get.py
Log Message:
-----------
Revert "[#861] Use the .get() function to look for 'q'"
This reverts commit 067d43006fd542eee7a0a9a11fdec5f42c02add4.
Commit: 6fe1d24b19acf303dbf652d7217e3e6cc5a666a8
https://github.com/okfn/ckan/commit/6fe1d24b19acf303dbf652d7217e3e6cc5a666a8
Author: tobes <toby.junk at gmail.com>
Date: 2013-07-01 (Mon, 01 Jul 2013)
Changed paths:
M ckan/logic/action/get.py
Log Message:
-----------
Revert "[#861] Remove 'metadata_modified' from if"
This reverts commit 655c2dd9d8e9ca7e6cbddf2d6d993262a8024a08.
Commit: 38891ce98168f74cd51eb6a2de9c9a287cc316b1
https://github.com/okfn/ckan/commit/38891ce98168f74cd51eb6a2de9c9a287cc316b1
Author: tobes <toby.junk at gmail.com>
Date: 2013-07-01 (Mon, 01 Jul 2013)
Changed paths:
M ckan/logic/action/get.py
Log Message:
-----------
Revert "[#861] Change the logic for sorting dataset search"
This reverts commit 9d6f9dceb21e3e53f36a4fed44587b2e89c5ad19.
Commit: 48aa6dc3c2755cc7eff15cffcf8ef45f424a58f4
https://github.com/okfn/ckan/commit/48aa6dc3c2755cc7eff15cffcf8ef45f424a58f4
Author: tobes <toby.junk at gmail.com>
Date: 2013-07-01 (Mon, 01 Jul 2013)
Changed paths:
M ckan/public/base/css/main.css
Log Message:
-----------
Recompile css
Commit: 3cd6d25cfa07d5c46f2c0e0d31c393f48b762717
https://github.com/okfn/ckan/commit/3cd6d25cfa07d5c46f2c0e0d31c393f48b762717
Author: tobes <toby.junk at gmail.com>
Date: 2013-07-01 (Mon, 01 Jul 2013)
Changed paths:
M ckan/templates/admin/config.html
M ckan/templates/admin/index.html
M ckan/templates/footer.html
M ckan/templates/package/search.html
Log Message:
-----------
Merge branch 'master' of github.com:okfn/ckan
Commit: aacae58fa480dcad041e996c943bb7ea7a364d10
https://github.com/okfn/ckan/commit/aacae58fa480dcad041e996c943bb7ea7a364d10
Author: tobes <toby.junk at gmail.com>
Date: 2013-07-01 (Mon, 01 Jul 2013)
Changed paths:
M ckan/templates/admin/config.html
M ckan/templates/admin/index.html
M ckan/templates/footer.html
M ckan/templates/package/search.html
Log Message:
-----------
[#1062] Toby is stupid
Commit: 9eea461444450fe4557a8887130b56eec9d13483
https://github.com/okfn/ckan/commit/9eea461444450fe4557a8887130b56eec9d13483
Author: amercader <amercadero at gmail.com>
Date: 2013-07-01 (Mon, 01 Jul 2013)
Changed paths:
M .tx/config
Log Message:
-----------
[#1065] Update transifex host in .tx/config
You'll proabably need to update your ~/.transifexrc file as well.
Commit: 9580fdb9c991ebb056eb287a340ce84e1dbf67ec
https://github.com/okfn/ckan/commit/9580fdb9c991ebb056eb287a340ce84e1dbf67ec
Author: John Martin <me at johnmart.in>
Date: 2013-07-02 (Tue, 02 Jul 2013)
Changed paths:
M ckan/templates/group/admins.html
M ckan/templates/group/followers.html
M ckan/templates/group/history.html
M ckan/templates/organization/admins.html
M ckan/templates/organization/read.html
Log Message:
-----------
[#1063] Removes nested '.module-content' from primary_content_inner
Commit: 55960d69716d09d25287c3faea202b3c1e4ac5c4
https://github.com/okfn/ckan/commit/55960d69716d09d25287c3faea202b3c1e4ac5c4
Author: amercader <amercadero at gmail.com>
Date: 2013-07-02 (Tue, 02 Jul 2013)
Changed paths:
M ckan/templates/group/admins.html
M ckan/templates/group/followers.html
M ckan/templates/group/history.html
M ckan/templates/organization/admins.html
M ckan/templates/organization/read.html
Log Message:
-----------
Merge branch '1063-org-template-tweak'
Commit: af3929196cc2dabc7ad79f17ff288e60ca07cc7d
https://github.com/okfn/ckan/commit/af3929196cc2dabc7ad79f17ff288e60ca07cc7d
Author: tobes <toby.junk at gmail.com>
Date: 2013-07-02 (Tue, 02 Jul 2013)
Changed paths:
M ckan/tests/functional/api/model/test_group_and_organization_purge.py
Log Message:
-----------
[#707] Pep8 fixes - trivial
Commit: e6b119d6f538cb073edeef6664aedfd87e69dcd9
https://github.com/okfn/ckan/commit/e6b119d6f538cb073edeef6664aedfd87e69dcd9
Author: tobes <toby.junk at gmail.com>
Date: 2013-07-02 (Tue, 02 Jul 2013)
Changed paths:
M ckan/logic/action/delete.py
M ckan/logic/auth/delete.py
A ckan/tests/functional/api/model/test_group_and_organization_purge.py
Log Message:
-----------
Merge branch '707-implement-group-purging'
Commit: 779952c2d37f2a3c68a3fb128e92ed89ad59d5b3
https://github.com/okfn/ckan/commit/779952c2d37f2a3c68a3fb128e92ed89ad59d5b3
Author: John Martin <me at johnmart.in>
Date: 2013-07-02 (Tue, 02 Jul 2013)
Changed paths:
M ckan/templates/package/base.html
Log Message:
-----------
[#1071] Closes hanging <li> when package is associated with org
Commit: 5aefeb3655e94ce927983b9a29624ef6ea642083
https://github.com/okfn/ckan/commit/5aefeb3655e94ce927983b9a29624ef6ea642083
Author: John Martin <me at johnmart.in>
Date: 2013-07-02 (Tue, 02 Jul 2013)
Changed paths:
M ckan/templates/package/read_base.html
M ckan/templates/snippets/organization.html
Log Message:
-----------
[#1072] Adds organization title or org context on package read pages
Commit: 773b0e13359922797a25a6a2410b252fd239d460
https://github.com/okfn/ckan/commit/773b0e13359922797a25a6a2410b252fd239d460
Author: Dominik Moritz <domoritz at gmail.com>
Date: 2013-07-03 (Wed, 03 Jul 2013)
Changed paths:
M ckanext/datastore/db.py
M ckanext/datastore/tests/test_create.py
M ckanext/datastore/tests/test_search.py
Log Message:
-----------
[#1067] Resolve issues with % in column names in search
Commit: cca66d914bf270dd12524b2640778db37cf5c0a7
https://github.com/okfn/ckan/commit/cca66d914bf270dd12524b2640778db37cf5c0a7
Author: Dominik Moritz <domoritz at gmail.com>
Date: 2013-07-03 (Wed, 03 Jul 2013)
Changed paths:
M ckanext/datastore/logic/action.py
M ckanext/datastore/tests/test_delete.py
Log Message:
-----------
[#1067] Test % in delete, resolve unicode issues in messages
Commit: 77c78461bc490fa954453e7000502ba1503cbb6f
https://github.com/okfn/ckan/commit/77c78461bc490fa954453e7000502ba1503cbb6f
Author: Dominik Moritz <domoritz at gmail.com>
Date: 2013-07-03 (Wed, 03 Jul 2013)
Changed paths:
M ckanext/datastore/plugin.py
Log Message:
-----------
No need to pass context to action because it is implicitly added
Commit: fb49b74fff2f10e9061df0a89dc69cfdda9cb906
https://github.com/okfn/ckan/commit/fb49b74fff2f10e9061df0a89dc69cfdda9cb906
Author: Dominik Moritz <domoritz at gmail.com>
Date: 2013-07-03 (Wed, 03 Jul 2013)
Changed paths:
M ckanext/datastore/plugin.py
Log Message:
-----------
Revert "No need to pass context to action because it is implicitly added"
This reverts commit 77c78461bc490fa954453e7000502ba1503cbb6f.
Commit: a925f1c77ad274f05343334a064fe831a564c20f
https://github.com/okfn/ckan/commit/a925f1c77ad274f05343334a064fe831a564c20f
Author: John Martin <me at johnmart.in>
Date: 2013-07-03 (Wed, 03 Jul 2013)
Changed paths:
M ckan/templates/snippets/organization.html
Log Message:
-----------
[#1072] Docstring update
Commit: 590ad4060b811aa6a9f3f490e9014d67d806e254
https://github.com/okfn/ckan/commit/590ad4060b811aa6a9f3f490e9014d67d806e254
Author: amercader <amercadero at gmail.com>
Date: 2013-07-04 (Thu, 04 Jul 2013)
Changed paths:
M ckan/templates/package/base.html
Log Message:
-----------
Merge branch '1071-close-div'
Commit: a84601c86fe0314478c8d27220a2368bf48faf18
https://github.com/okfn/ckan/commit/a84601c86fe0314478c8d27220a2368bf48faf18
Author: John Martin <me at johnmart.in>
Date: 2013-07-10 (Wed, 10 Jul 2013)
Changed paths:
M ckan/public/base/css/fuchsia.css
M ckan/public/base/css/green.css
M ckan/public/base/css/maroon.css
M ckan/public/base/css/red.css
Log Message:
-----------
[#1084] Manually adding other theme css so they are more up to date in master for devs
Commit: d969187708ae683e44fd38d9764944e4358ed56c
https://github.com/okfn/ckan/commit/d969187708ae683e44fd38d9764944e4358ed56c
Author: John Martin <me at johnmart.in>
Date: 2013-07-16 (Tue, 16 Jul 2013)
Changed paths:
M ckan/templates/user/read_base.html
Log Message:
-----------
[#1110] Fixes user read_base.html templates
Commit: e41255803f7207298742a5d049e3c4bc3a560a82
https://github.com/okfn/ckan/commit/e41255803f7207298742a5d049e3c4bc3a560a82
Author: John Martin <me at johnmart.in>
Date: 2013-07-16 (Tue, 16 Jul 2013)
Changed paths:
M ckan/public/base/css/fuchsia.css
M ckan/public/base/css/green.css
M ckan/public/base/css/maroon.css
M ckan/public/base/css/red.css
Log Message:
-----------
Merge pull request #1084 from okfn/1084-update-other-themes
Icons from header.html visulalized badly
Commit: ccc41adb21c6cd1019a83e6a0cdc4e344c3883a7
https://github.com/okfn/ckan/commit/ccc41adb21c6cd1019a83e6a0cdc4e344c3883a7
Author: tobes <toby.junk at gmail.com>
Date: 2013-07-16 (Tue, 16 Jul 2013)
Changed paths:
M ckan/templates/user/read_base.html
Log Message:
-----------
Merge branch '1110-user-read_base-fixes'
Commit: 44139fc6bf57e2fd052ceaaef06bba767d25ebe5
https://github.com/okfn/ckan/commit/44139fc6bf57e2fd052ceaaef06bba767d25ebe5
Author: Dominik Moritz <domoritz at gmail.com>
Date: 2013-07-16 (Tue, 16 Jul 2013)
Changed paths:
M ckanext/datastore/tests/test_delete.py
Log Message:
-----------
[#1067] Add note about dangerous code to make @tobes happy.
Commit: 42b48b3c1a8eaf449f2acb084caf07fb668dc285
https://github.com/okfn/ckan/commit/42b48b3c1a8eaf449f2acb084caf07fb668dc285
Author: Dominik Moritz <domoritz at gmail.com>
Date: 2013-07-16 (Tue, 16 Jul 2013)
Changed paths:
M ckanext/datastore/plugin.py
Log Message:
-----------
[#1111] Remove unwanted print
Commit: f91e7e65a1fa5c6818dd02f3496b0a65a96ab346
https://github.com/okfn/ckan/commit/f91e7e65a1fa5c6818dd02f3496b0a65a96ab346
Author: tobes <toby.junk at gmail.com>
Date: 2013-07-17 (Wed, 17 Jul 2013)
Changed paths:
M ckanext/datastore/db.py
M ckanext/datastore/logic/action.py
M ckanext/datastore/tests/test_create.py
M ckanext/datastore/tests/test_delete.py
M ckanext/datastore/tests/test_search.py
Log Message:
-----------
Merge branch '1067-datastore-percent-issues'
Commit: 037a61e62bf8196dcf9bd2d3d698b5d6688ce3d0
https://github.com/okfn/ckan/commit/037a61e62bf8196dcf9bd2d3d698b5d6688ce3d0
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-07-18 (Thu, 18 Jul 2013)
Changed paths:
M .tx/config
Log Message:
-----------
Merge branch '1065-update-transifex-host'
Commit: 5fdab93a0a0389a8ba15bca2bc6ea3c6caf1af2d
https://github.com/okfn/ckan/commit/5fdab93a0a0389a8ba15bca2bc6ea3c6caf1af2d
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2013-07-18 (Thu, 18 Jul 2013)
Changed paths:
M .tx/config
M CHANGELOG.rst
M ckan/config/routing.py
M ckan/controllers/user.py
M ckan/lib/base.py
M ckan/lib/formatters.py
M ckan/lib/helpers.py
M ckan/lib/repoze_patch.py
M ckan/logic/action/create.py
M ckan/logic/action/delete.py
M ckan/logic/action/get.py
M ckan/logic/action/update.py
M ckan/logic/auth/create.py
M ckan/logic/auth/delete.py
M ckan/logic/auth/get.py
M ckan/logic/schema.py
M ckan/logic/validators.py
M ckan/migration/versions/066_default_package_type.py
M ckan/public/base/css/fuchsia.css
M ckan/public/base/css/green.css
M ckan/public/base/css/main.css
M ckan/public/base/css/maroon.css
M ckan/public/base/css/red.css
A ckan/public/base/javascript/modules/dataset-visibility.js
M ckan/public/base/javascript/resource.config
M ckan/public/base/less/dashboard.less
M ckan/public/base/less/media.less
M ckan/public/base/less/module.less
M ckan/public/base/less/nav.less
M ckan/public/base/less/toolbar.less
M ckan/templates/admin/config.html
M ckan/templates/admin/index.html
M ckan/templates/footer.html
M ckan/templates/group/admins.html
M ckan/templates/group/followers.html
M ckan/templates/group/history.html
M ckan/templates/header.html
M ckan/templates/organization/admins.html
M ckan/templates/organization/read.html
M ckan/templates/package/base.html
M ckan/templates/package/read_base.html
M ckan/templates/package/search.html
M ckan/templates/package/snippets/package_basic_fields.html
M ckan/templates/package/snippets/package_metadata_fields.html
M ckan/templates/snippets/organization.html
M ckan/templates/user/dashboard.html
A ckan/templates/user/dashboard_datasets.html
A ckan/templates/user/dashboard_groups.html
A ckan/templates/user/dashboard_organizations.html
M ckan/templates/user/edit.html
M ckan/templates/user/edit_base.html
M ckan/templates/user/read_base.html
A ckan/tests/functional/api/model/test_group_and_organization_purge.py
M ckan/tests/functional/api/model/test_package.py
M ckan/tests/functional/api/test_activity.py
M ckan/tests/functional/test_package.py
M ckan/tests/functional/test_user.py
M ckan/tests/lib/test_helpers.py
M ckan/tests/logic/test_action.py
M ckan/tests/test_coding_standards.py
M ckanext/datastore/db.py
M ckanext/datastore/logic/action.py
M ckanext/datastore/plugin.py
M ckanext/datastore/tests/test_create.py
M ckanext/datastore/tests/test_delete.py
M ckanext/datastore/tests/test_search.py
M dev-requirements.txt
Log Message:
-----------
Merge branch 'master' of github.com:okfn/ckan into 1045-deprecate-groups-available-and-organizations-available
Conflicts:
ckan/lib/helpers.py
ckan/templates/package/snippets/package_basic_fields.html
Compare: https://github.com/okfn/ckan/compare/c98190b59253...5fdab93a0a03
More information about the ckan-changes
mailing list