16 May, 2016
1 commit
12 May, 2016
1 commit
-
- Added notifications for Organizations; - Only the profile admin can create them; - show_only_in_homepage option here works with profile homepage; - Rename plugin to be more consistent with new features; - Old plugin folder still exists, so old users can switch automatically when migrating; - If you want to start using it, activate "admin_notifications" plugin instead of "environment_notification" - Adds plugin namespace to tables, classes and modules; Signed-off-by: Gabriel Silva <gabriel93.silva@gmail.com> Signed-off-by: Lucas Severo <lucassalves65@gmail.com> Signed-off-by: Marcos Ronaldo <marcos.rpj2@gmail.com> Signed-off-by: Thiago Ribeiro <thiagitosouza@gmail.com> (cherry picked from commit 283dd97a1f7a90d709a0e252fcc3debbf122614a)
05 May, 2016
1 commit
-
Signed-off-by: Marcos Ronaldo <marcos.rpj2@gmail.com> Signed-off-by: Tallys Martins <tallysmartins@gmail.com>
04 May, 2016
1 commit
-
Signed-off-by: Macartur Sousa <macartur.sc@gmail.com> Signed-off-by: Marcos Ronaldo <marcos.rpj2@gmail.com> (cherry picked from commit 1bafef867058ffb54590687467041ede3e7832a5) Conflicts: lib/noosfero/api/helpers.rb test/unit/api/helpers_test.rb
19 Apr, 2016
26 commits
-
progressbar is not maintained anymore and debian now packages only ruby-progressbar
01 Apr, 2016
1 commit
-
Show posts and content based on locale and replaces post with its translation.
29 Mar, 2016
3 commits
-
Remove HTML generation from container_block plugin It now uses BoxesHelper logic instead of HTML generation within the model violating MVC. As it is a class within a module (`ContainerBlockPlugin::ContainerBlock`) `BoxesHelper` required fixes to handle the module prefix when searching for the proper view to render. Previously it would wrongly search for `blocks/container_block_plugin/container.html.erb` instead of `blocks/container.html.erb`. In case gitlab build does not start, here is the Travis build: https://travis-ci.org/rafamanzo/noosfero/builds/118607978 See merge request !827
-
It now relies on BoxesHelper logic and thus the method got removed. As it was the only subject of unit tests, The unit tests for this class have been removed (most of the logic is tested through functional tests).
25 Mar, 2016
1 commit
-
It now uses BoxesHelper logic instead of HTML generation within the model violating MVC. As it is a class within a module (`ContainerBlockPlugin::ContainerBlock`) `BoxesHelper` required fixes to handle the module prefix when searching for the proper view to render. Previously it would wrongly search for `blocks/container_block_plugin/container.html.erb` instead of `blocks/container.html.erb`.
24 Mar, 2016
1 commit
-
Improve oauth client This MR is related to oauth-client plugin. Fix a bug in edit of providers and improve documentation. Making this plugin up-to-date. See merge request !821
23 Mar, 2016
4 commits
-
Signed-off-by: Lucas Kanashiro <kanashiro.duarte@gmail.com> Signed-off-by: Macartur Sousa <macartur.sc@gmail.com>
-
Signed-off-by: Lucas Kanashiro <kanashiro.duarte@gmail.com> Signed-off-by: Macartur Sousa <macartur.sc@gmail.com>
-
This method was producing view code from within the model which is a violation of MVC. Part of the code was extracted into the new helper and most of it became a view. This follow the standard for using BoxesHelper#render_block_footer.
-
This method was producing view code from within the model which is a violation of MVC. Part of the code was extracted into the new helper and most of it became a view. This follow the standard for using BoxesHelper#render_block_content.