02 Oct, 2015
11 commits
-
content_viewer: defer @page.hit yeah, now we have unicorn for that :) See merge request !678
-
Handle privacity in WorkAssignment submissions properly WorkAssingment submissions weren't considering the show_to_follows attribute. As result, the submissions' download privacity did not work properly. See merge request !690
-
Replaces remaining colorbox in the code with modal Colorbox was replaced with modal api, but we still had instances in the code of colorbox uses and they were broken so this patch is to fix those. See merge request !689
-
search: resolve translations at runtime If you resolve the translation calls -- _("...") -- at load time they will not be translated based on the current user's language. SearchHelper::FILTERS_TRANSLATIONS was not used anywhere, so it got removed. See merge request !686
-
Improve pagination default Also %s/will_paginate/pagination_links to use the default on forum, blog and cms Signed-off-by: Tallys Martins <tallysmartins@yahoo.com.br> Signed-off-by: Melissa Wen <melissa@colivre.coop.br> See merge request !685
-
If you resolve the translation calls -- _("...") -- at load time they will not be translated based on the current user's language. SearchHelper::FILTERS_TRANSLATIONS was not used anywhere, so it got removed.
-
Fixes pages that appear public even when environment is private 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". See commit message for explanation of what was done and why. Closes issue #124 See merge request !679
-
Fixes compatibility in newsletter plugin with CSV exported by Excel Allow different types of delimiter used for the CSV file with additional emails imported by newsletter plugin. This change is meant to improve compatibility for users under Windows in pt br and Excel, which only exports semicolon delimited CSV. See merge request !683
01 Oct, 2015
6 commits
-
Also %s/will_paginate/pagination_links to use the default on forum, blog and cms Signed-off-by: Tallys Martins <tallysmartins@yahoo.com.br> Signed-off-by: Melissa Wen <melissa@colivre.coop.br>
-
It was temporarily disabled for tests
-
Enable users to explicitly install plugins' gems. Also, return error when install/dependencies fail.
30 Sep, 2015
3 commits
-
Windows systems with pt_br have problem in exporting CSV with comma as delimiter through Excel, so to improve compatibility I decided to loop through delimiter types when parsing and importing recipients. Since I try different types of delimiter and stick with the first one that gives me a valid content, it's always possible (albeit unlikely) the file can be parsed incorrectly.
29 Sep, 2015
8 commits
28 Sep, 2015
6 commits
-
The plugin still has some structural problems
-
Adding a Dockerfile that builds de development environment. I pushed the first built machine with this Dockerfile on the following repository: https://hub.docker.com/r/noosfero/dev/ I'm assuming the responsibility on maintaining this image updated with the lastest master branch. Whoever feels like help maintaining it send an email to noosfero-dev requesting access to the repository.
26 Sep, 2015
6 commits
-
Notification plugin code improvments Improve Environment Notification plugin's code to attempt to [Plugins Architecture Guidelines](http://noosfero.org/bin/view/Development/PluginsArchitecture) The main improvments is related to js and css scope as suggested in MR !650. See merge request !680
-
Split application.css into several partials Keeped controllers/views structure See merge request !666
-
Keeped controllers/views structure
-
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.