06 Aug, 2014
1 commit
-
Conflicts: app/controllers/application_controller.rb app/models/profile.rb app/views/friends/index.html.erb app/views/invite/_personalize_invitation_mail.html.erb test/functional/invite_controller_test.rb
04 Aug, 2014
5 commits
-
(ActionItem3234)
-
(ActionItem3234)
-
Applying changes Ewout and Daniel asked.
-
I decided to use the local storage approach offered by the plugin and not the cookie approach because this information is irrelevant to the server so it doesn't make much sense to send it to the server along with every request (like cookies). (ActionItem3238)
-
(ActionItem3238)
01 Aug, 2014
1 commit
31 Jul, 2014
2 commits
29 Jul, 2014
1 commit
28 Jul, 2014
4 commits
-
Conflicts: app/controllers/my_profile/memberships_controller.rb app/models/profile.rb app/views/friends/index.html.erb test/unit/profile_test.rb
-
Conflicts: app/views/friends/index.rhtml app/views/invite/_select_address_book.rhtml app/views/invite/select_friends.rhtml app/views/profile/friends.rhtml config/routes.rb plugins/stoa/lib/ext/person.rb test/functional/invite_controller_test.rb test/unit/invite_member_test.rb
27 Jul, 2014
1 commit
-
(ActionItem3234)
25 Jul, 2014
2 commits
-
To make presentation easier, adds a label to SEARCHABLE_FIELDS as part of a hash.
-
To make presentation easier, adds a label to SEARCHABLE_FIELDS as part of a hash.
24 Jul, 2014
1 commit
19 Jul, 2014
2 commits
-
Removes the need of a hotspot to offer the possibility of searching members by usp_id on invite page. The previous hotspot to provide extra search fields was deemed too specific and complicated. Refactor from commits: 844304db138e2c7bb6234be39301f054b7a657cb 8470293887b42804d572dcffc5ee02af1a0d2ff6 -
Removes the need of a hotspot to offer the possibility of searching members by usp_id on invite page. The previous hotspot to provide extra search fields was deemed too specific and complicated. Refactor from commits: 844304db138e2c7bb6234be39301f054b7a657cb 8470293887b42804d572dcffc5ee02af1a0d2ff6
18 Jul, 2014
1 commit
30 Jun, 2014
1 commit
27 Jun, 2014
2 commits
26 Jun, 2014
4 commits
25 Jun, 2014
1 commit
-
The user searched shouldn't be a member of the community already, because those are filtered out.
24 Jun, 2014
1 commit
17 Jun, 2014
2 commits
-
Conflicts: plugins/display_content/test/unit/display_content_block_test.rb
16 Jun, 2014
3 commits
-
'\w-' is the same of 'a-zA-Z0-9_-' (ActionItem3122)
14 Jun, 2014
5 commits
-
(ActionItem2859)
-
ActiveResource::Errors#invalid? is deprecated on Rails 3 and was replaced by ActiveModel::Errors#include?
-
To avoid Rails throwing rollback transaction errors before each test, the connection with the temporary stoa database is established before all tests instead of between tests. This way transactions aren't interrupted by database disconnections.
-
Appending with Pathname#+ caused the File.open to search for the config file in '/config.yml' instead of StoaPlugin.root_path/config.yml, throwing a "No such file or directory" error. This patch fixes that error.