13 Nov, 2015
1 commit
-
- Add several endpoints - Add some API documentation - Fix plugins API hotspot Signed-off-by: Victor Costa <vfcosta@gmail.com> Signed-off-by: Leandro Nunes dos Santos <leandronunes@gmail.com> Signed-off-by: Evandro Junior <evandrojr@gmail.com> Signed-off-by: Rodrigo Souto <rodrigo@colivre.coop.br> Signed-off-by: Caio SBA <caio@colivre.coop.br> Signed-off-by: Carlos Purificacao <carloseugenio@gmail.com> Signed-off-by: Ábner Silva de Oliveira <abner.oliveira@serpro.gov.br> Signed-off-by: Aurelio A. Heckert <aurelio@colivre.coop.br> Signed-off-by: Evandro Magalhaes Leite Junior <evandro.leite@serpro.gov.br> Signed-off-by: Marcelo Júnior <maljunior@gmail.com> Signed-off-by: Michel Felipe de Oliveira Ferreira <michel.ferreira@serpro.gov.br> Signed-off-by: Larissa Reis <larissa@colivre.coop.br> Signed-off-by: ABNER SILVA DE OLIVEIRA <abner.oliveira@serpro.gov.br> Signed-off-by: Luciano Prestes Cavalcanti <lucianopcbr@gmail.com> Signed-off-by: Marcos Ronaldo <marcos.rpj2@gmail.com> Signed-off-by: Simião Carvalho <simiaosimis@gmail.com> Signed-off-by: Gabriel Silva <gabriel93.silva@gmail.com>
02 Oct, 2015
1 commit
26 Sep, 2015
1 commit
-
This fixes a bug in which some pages (eg. a profile page) were visible to unlogged users even if the environment has enabled "show content only to members". The problem happened because some controllers use `before_filter :login_required` so they can apply it to some specific methods, effectively overriding the one set in `application_controller`. That before filter set in `application_controller` is the one used to make the environment private when that feature is enabled, so when a controller overrides it, some methods are not required login even when the environment is private. So I fixed the problem by using a different `before_filter` to take care specifically of private environments. Now every page requires login when an environment is private, except the pages in `account_controller` necessary for login and signup.
16 Sep, 2015
1 commit
15 Sep, 2015
1 commit
13 Sep, 2015
1 commit
29 Aug, 2015
1 commit
15 Aug, 2015
1 commit
13 Aug, 2015
1 commit
10 Aug, 2015
1 commit
-
that's usually the default behaviour nowadays so that users don't need to relogin after a browser restart
24 Jul, 2015
3 commits
-
I18n.locale does not accept nil
25 Jun, 2015
1 commit
07 May, 2015
1 commit
-
Add alternative redirect's behavior when user is '~' This is a new feature to create generic URL's related to usernames in Noosfero. It is useful for internal links on articles and for general links on themes. Examples: - If you're logged in as "test" and you go to /~/blog it will redirect you to /test/blog - If you're logged in as "test" and you go to /myprofile/~ it will redirect you to /myprofile/test - If you're not logged in and you go to /profile/~ or any other link using "~" it will give you a not found page(404). See merge request !518
27 Apr, 2015
1 commit
-
When the :profile parameter is '~', replace it with the identifier of the currently logged-in user and redirect. This is useful for example for adding direct links to the control panel of the current user in documentation. Signed-off-by: Antonio Terceiro <terceiro@colivre.coop.br> Signed-off-by: Arthur Del Esposte <arthurmde@gmail.com> Signed-off-by: David Carlos <ddavidcarlos1392@gmail.com> Signed-off-by: Gabriela Navarro <navarro1703@gmail.com>
26 Mar, 2015
1 commit
23 Feb, 2015
1 commit
-
Allow Access-Control-Allow-Credentials in Access-Control-Allow-Origin http://noosfero.org/Development/ActionItem3029 See merge request !129
10 Feb, 2015
2 commits
-
Customize template on controllers with use_custom_design See merge request !93
03 Feb, 2015
1 commit
-
Conflicts: app/controllers/my_profile/profile_editor_controller.rb app/helpers/search_helper.rb app/models/invitation.rb app/models/person.rb app/views/cms/view.html.erb app/views/templates/index.html.erb plugins/community_track/views/content_viewer/_step_item.html.erb test/functional/home_controller_test.rb test/unit/person_test.rb test/unit/profile_test.rb
13 Nov, 2014
1 commit
-
Support for custom locales for hosted environments using the multitenancy support and noosfero domains. Some environments need personalized translations and this hopefully offers a clean way to do it based on domains as well. Related to MR 195 (ActionItem3113)
18 Sep, 2014
1 commit
08 Sep, 2014
1 commit
-
Conflicts: app/controllers/application_controller.rb app/controllers/my_profile/memberships_controller.rb app/controllers/public/account_controller.rb app/helpers/application_helper.rb app/helpers/layout_helper.rb app/helpers/token_helper.rb app/views/account/signup.html.erb app/views/layouts/_javascript.html.erb db/schema.rb test/functional/application_controller_test.rb
03 Sep, 2014
1 commit
02 Sep, 2014
1 commit
-
(ActionItem3191)
17 Jul, 2014
1 commit
-
Conflicts: app/models/environment.rb app/views/features/index.rhtml
08 Jul, 2014
1 commit
07 Jul, 2014
1 commit
04 Jul, 2014
1 commit
30 Jun, 2014
1 commit
22 May, 2014
1 commit
13 May, 2014
1 commit
-
Conflicts: app/helpers/application_helper.rb app/helpers/layout_helper.rb app/models/community.rb app/models/enterprise.rb app/models/product_category.rb app/views/account/change_password.html.erb config/boot.rb config/environment.rb config/routes.rb lib/noosfero/plugin.rb test/unit/enterprise_activation_test.rb test/unit/person_notifier_test.rb
05 May, 2014
1 commit
03 Apr, 2014
1 commit
07 Mar, 2014
2 commits
-
Conflicts: lib/noosfero/plugin/routes.rb plugins/container_block/test/unit/block_test.rb plugins/container_block/test/unit/environment_test.rb plugins/container_block/test/unit/profile_test.rb plugins/container_block/views/blocks/container.html.erb
-
Conflicts: config/initializers/dependencies.rb debian/control lib/noosfero/core_ext.rb lib/noosfero/plugin/routes.rb
05 Mar, 2014
1 commit
25 Feb, 2014
1 commit
11 Feb, 2014
1 commit
-
Don't render layout for javascript format This is the default behaviour for Rails when rendering .js.erb files. Check http://stackoverflow.com/questions/4060300/when-rendering-js-erb-file-it-renders-layout-with-the-javascript-is-it-a-bug