[ckan-changes] [okfn/ckan] f6026f: Merge master
GitHub
noreply at github.com
Mon Nov 19 16:19:05 UTC 2012
Branch: refs/heads/1635-feature-email-notifications-for-activity-streams
Home: https://github.com/okfn/ckan
Commit: f6026f9c9d5c6d82e41aa58af71453b9df0cdf04
https://github.com/okfn/ckan/commit/f6026f9c9d5c6d82e41aa58af71453b9df0cdf04
Author: John Martin <me at johnmart.in>
Date: 2012-11-14 (Wed, 14 Nov 2012)
Changed paths:
M ckan/config/routing.py
M ckan/controllers/group.py
M ckan/lib/activity_streams.py
M ckan/lib/dictization/model_dictize.py
M ckan/lib/dictization/model_save.py
M ckan/lib/helpers.py
M ckan/logic/action/create.py
M ckan/logic/action/delete.py
M ckan/logic/action/get.py
M ckan/logic/converters.py
M ckan/logic/schema.py
M ckan/logic/validators.py
A ckan/migration/versions/061_add_follower__group_table.py
M ckan/model/__init__.py
M ckan/model/follower.py
M ckan/public/base/javascript/modules/popover-context.js
M ckan/public/base/less/activity.less
M ckan/public/base/less/iehacks.less
A ckan/templates/ajax_snippets/popover-context-group.html
A ckan/templates/group/about.html
M ckan/templates/group/activity_stream.html
A ckan/templates/group/admins.html
A ckan/templates/group/followers.html
M ckan/templates/group/read.html
M ckan/templates/user/read.html
M ckan/tests/functional/api/test_follow.py
M ckan/tests/functional/test_activity.py
Log Message:
-----------
Merge master
Commit: ac6d81fb37bae61911ecb839c9c46c42449dde18
https://github.com/okfn/ckan/commit/ac6d81fb37bae61911ecb839c9c46c42449dde18
Author: John Martin <me at johnmart.in>
Date: 2012-11-14 (Wed, 14 Nov 2012)
Changed paths:
M ckan/public/base/less/iehacks.less
Log Message:
-----------
IE fixes for top account dropdown
Commit: 7a353d0a3f1705c8c3a56d1da087f79eb4f48269
https://github.com/okfn/ckan/commit/7a353d0a3f1705c8c3a56d1da087f79eb4f48269
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2012-11-14 (Wed, 14 Nov 2012)
Changed paths:
M ckan/config/routing.py
M ckan/controllers/group.py
M ckan/lib/activity_streams.py
M ckan/lib/dictization/model_dictize.py
M ckan/lib/dictization/model_save.py
M ckan/lib/helpers.py
M ckan/logic/action/create.py
M ckan/logic/action/delete.py
M ckan/logic/action/get.py
M ckan/logic/converters.py
M ckan/logic/schema.py
M ckan/logic/validators.py
A ckan/migration/versions/061_add_follower__group_table.py
M ckan/model/__init__.py
M ckan/model/follower.py
M ckan/public/base/javascript/modules/popover-context.js
M ckan/public/base/less/activity.less
M ckan/public/base/less/iehacks.less
A ckan/templates/ajax_snippets/popover-context-group.html
A ckan/templates/group/about.html
M ckan/templates/group/activity_stream.html
A ckan/templates/group/admins.html
A ckan/templates/group/followers.html
M ckan/templates/group/read.html
M ckan/templates/user/read.html
M ckan/tests/functional/api/test_follow.py
M ckan/tests/functional/test_activity.py
Log Message:
-----------
Merge branch 'master' of github.com:okfn/ckan into 3009-on-site-notification-of-new-activity
Conflicts:
ckan/public/base/less/iehacks.less
Commit: 04d32acf204476709e0aeda9a19855ebb0c58e4d
https://github.com/okfn/ckan/commit/04d32acf204476709e0aeda9a19855ebb0c58e4d
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2012-11-14 (Wed, 14 Nov 2012)
Changed paths:
M ckan/public/base/less/iehacks.less
Log Message:
-----------
Merge branch '3009-on-site-notification-of-new-activity' of github.com:okfn/ckan into 3009-on-site-notification-of-new-activity
Conflicts:
ckan/public/base/less/iehacks.less
Commit: 367aee938d9efdd0841cfb903de0a3fb53525108
https://github.com/okfn/ckan/commit/367aee938d9efdd0841cfb903de0a3fb53525108
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2012-11-14 (Wed, 14 Nov 2012)
Changed paths:
R ckan/migration/versions/061_add_dashboard_table.py
A ckan/migration/versions/062_add_dashboard_table.py
Log Message:
-----------
[#3009] Rename migration script
Clashed with another branch
Commit: cb3984e594768ecef113517a168b8b42f631df24
https://github.com/okfn/ckan/commit/cb3984e594768ecef113517a168b8b42f631df24
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2012-11-14 (Wed, 14 Nov 2012)
Changed paths:
M ckan/logic/action/get.py
M ckan/model/activity.py
Log Message:
-----------
[#3009] Refactor activity streams SQLAlchemy queries
This is necessary so that we can get the number of new activities in the
user's dashboard activity stream, not counting activities from the user
herself.
Rewrite the activity streams queries in a building blocks fashion. For
example:
_user_activity_query(user_id)
Returns a query for all activities from or about a given user, used for
the user's public activity stream.
_activities_from_everything_followed_by_user_query(user_id)
Returns a query from all activities from everything the given user
follows.
_dashboard_activity_query(user_id)
Used for the user's dashboard, returns the union of
_user_activity_query(user_id) and
_activities_from_everything_followed_by_user_query(user_id).
Now we can call _dashboard_activity_query(user_id) to get the activities
for the user's dashboard, and we can call
_activities_from_everything_followed_by_user_query(user_id) to get the
number of new activities on the user's dashboard, not counting the
activities from the user herself.
Also move all the activity streams SQLAlchemy queries out of
logic/action/get.py (except for the group's activity stream which is
problematic) and into model/activity.py, because I want to encapsulate
SQLAlchemy in the model and avoid using it from the logic.
This also groups all the activity streams queries together in the code
and makes them easier to understand and build on.
Commit: 73fe090f22e0414e987c229d8b4f5b95118fa60b
https://github.com/okfn/ckan/commit/73fe090f22e0414e987c229d8b4f5b95118fa60b
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2012-11-14 (Wed, 14 Nov 2012)
Changed paths:
M ckan/logic/action/get.py
M ckan/logic/auth/get.py
Log Message:
-----------
[#3009] Refactor dashboard_activity_list() auth
Add auth functions for dashboard_activity_list and
dashboard_new_activities_count.
Commit: 1cb7b539fcbdfe53c153c97f651deef44b7395e9
https://github.com/okfn/ckan/commit/1cb7b539fcbdfe53c153c97f651deef44b7395e9
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2012-11-14 (Wed, 14 Nov 2012)
Changed paths:
M ckan/logic/action/get.py
Log Message:
-----------
[#3009] Don't notify a user about her own activities
Commit: 8469a508a6add6a8bae578e273cdf64cef8b2fdf
https://github.com/okfn/ckan/commit/8469a508a6add6a8bae578e273cdf64cef8b2fdf
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2012-11-14 (Wed, 14 Nov 2012)
Changed paths:
M ckan/logic/auth/get.py
Log Message:
-----------
[#3009] Use is_authorized not check_access to wrap auth function
I think this is the right way to do it
Commit: eb086d5da0ccbe7ea46b6f2bb70aafc0474dd748
https://github.com/okfn/ckan/commit/eb086d5da0ccbe7ea46b6f2bb70aafc0474dd748
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2012-11-14 (Wed, 14 Nov 2012)
Changed paths:
M ckan/lib/activity_streams.py
M ckan/logic/action/get.py
Log Message:
-----------
[#3009] Don't mark the user's own activities as new on her dashboard
Commit: fc626a5caf1d0ade528aae527f2efef7482aebca
https://github.com/okfn/ckan/commit/fc626a5caf1d0ade528aae527f2efef7482aebca
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2012-11-14 (Wed, 14 Nov 2012)
Changed paths:
M ckan/logic/auth/publisher/get.py
Log Message:
-----------
[#3009] Add new auth functions to publisher auth profile
This fixes a publisher auth test that was failing.
Commit: 8ea022a01f5578ddbf418e9c10d7d03c5f57fc32
https://github.com/okfn/ckan/commit/8ea022a01f5578ddbf418e9c10d7d03c5f57fc32
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2012-11-14 (Wed, 14 Nov 2012)
Changed paths:
M ckan/tests/functional/api/test_activity.py
Log Message:
-----------
[#3009] Fix some broken activity streams tests
These were all broken by the addition of 'is_new' to activity stream
dicts in dashboard_activity_list.
I removed one broken test that didn't seem to be testing what it thought
it was testing.
Commit: 2bfde7c1411e609c09e2443b9bd1439473f42900
https://github.com/okfn/ckan/commit/2bfde7c1411e609c09e2443b9bd1439473f42900
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2012-11-15 (Thu, 15 Nov 2012)
Changed paths:
M ckan/tests/functional/api/test_dashboard.py
Log Message:
-----------
[#3009] Better tests for on-site activity stream notifications API
Test both the dashboard_new_activities_count and the marking of new
activities with 'is_new': True in dashboard_activity_list, and test that
the user's own activities are not counted as new but activities from
things she follows are.
Commit: 78cbd6228c41d7b7abe333bb9bcb511e310664fe
https://github.com/okfn/ckan/commit/78cbd6228c41d7b7abe333bb9bcb511e310664fe
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2012-11-15 (Thu, 15 Nov 2012)
Changed paths:
M ckan/tests/functional/api/test_dashboard.py
Log Message:
-----------
[#3009] Delete an unnecessary comment
Commit: 79e28c0485b039831fa3812bea3637b272d6afbc
https://github.com/okfn/ckan/commit/79e28c0485b039831fa3812bea3637b272d6afbc
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2012-11-15 (Thu, 15 Nov 2012)
Changed paths:
M ckan/lib/activity_streams.py
Log Message:
-----------
[#3009] Delete an unnecessary line
Commit: af925e247f8c224662f17202926541938e39031b
https://github.com/okfn/ckan/commit/af925e247f8c224662f17202926541938e39031b
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2012-11-15 (Thu, 15 Nov 2012)
Changed paths:
M ckan/logic/action/get.py
Log Message:
-----------
[#3009] Delete an unused function
Commit: aed806f72134f728af7eee468f695bc6f5fbcfd4
https://github.com/okfn/ckan/commit/aed806f72134f728af7eee468f695bc6f5fbcfd4
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2012-11-15 (Thu, 15 Nov 2012)
Changed paths:
M ckan/controllers/user.py
M ckan/logic/action/get.py
M ckan/tests/functional/api/test_dashboard.py
Log Message:
-----------
[#3009] Mark new activities terminology consistent
Always use new/old activities, don't mix in other terms like
read/unread, seen/unseen.
Commit: 3007c853ae90b7317bff955cd5837d58d59cfded
https://github.com/okfn/ckan/commit/3007c853ae90b7317bff955cd5837d58d59cfded
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2012-11-15 (Thu, 15 Nov 2012)
Changed paths:
M ckan/logic/action/get.py
M ckan/logic/auth/get.py
M ckan/logic/auth/publisher/get.py
Log Message:
-----------
[#3009] Fix auth for dashboard_mark_all_new_activities_as_old
I think this is the correct way to do it, so that the auth function can
be overridden by IAuth plugins.
Commit: 11be4834e86228987b763249521c7e931dee2d4d
https://github.com/okfn/ckan/commit/11be4834e86228987b763249521c7e931dee2d4d
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2012-11-15 (Thu, 15 Nov 2012)
Changed paths:
M ckan/tests/functional/api/test_dashboard.py
Log Message:
-----------
[#3009] Add max. num. new activities test
Commit: 36c33efc2b6e8fab0ecf9326100d0fbe85a7086d
https://github.com/okfn/ckan/commit/36c33efc2b6e8fab0ecf9326100d0fbe85a7086d
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2012-11-15 (Thu, 15 Nov 2012)
Changed paths:
M doc/common-error-messages.rst
Log Message:
-----------
Merge branch 'master' of github.com:okfn/ckan into 3009-on-site-notification-of-new-activity
Commit: 326a7c02001d5f0871b9c578021056eff593d57f
https://github.com/okfn/ckan/commit/326a7c02001d5f0871b9c578021056eff593d57f
Author: tobes <toby.junk at gmail.com>
Date: 2012-11-19 (Mon, 19 Nov 2012)
Changed paths:
M ckan/controllers/group.py
M ckan/templates/user/dashboard.html
Log Message:
-----------
Merge branch 'master' into 3009-on-site-notification-of-new-activity
Commit: 6388d8d0f9cf2c7c4e7ce50a3564de3379bca45e
https://github.com/okfn/ckan/commit/6388d8d0f9cf2c7c4e7ce50a3564de3379bca45e
Author: Sean Hammond <seanhammond at lavabit.com>
Date: 2012-11-19 (Mon, 19 Nov 2012)
Changed paths:
M ckan/controllers/user.py
M ckan/lib/activity_streams.py
M ckan/logic/action/get.py
M ckan/logic/auth/get.py
M ckan/logic/auth/publisher/get.py
R ckan/migration/versions/061_add_dashboard_table.py
A ckan/migration/versions/062_add_dashboard_table.py
M ckan/model/activity.py
M ckan/public/base/less/iehacks.less
M ckan/tests/functional/api/test_activity.py
M ckan/tests/functional/api/test_dashboard.py
Log Message:
-----------
Merge branch 'master' of github.com:okfn/ckan into 1635-feature-email-notifications-for-activity-streams
Compare: https://github.com/okfn/ckan/compare/7a5df8e780b3...6388d8d0f9cf
More information about the ckan-changes
mailing list