01 Dec, 2015
6 commits
30 Nov, 2015
7 commits
-
Conflicts: app/models/environment.rb app/views/profile_editor/_person.html.erb db/schema.rb lib/noosfero/api/v1/comments.rb lib/noosfero/api/v1/people.rb test/unit/api/people_test.rb
-
Conflicts: app/helpers/forms_helper.rb app/views/cms/edit.html.erb lib/noosfero/api/entities.rb lib/noosfero/api/v1/comments.rb lib/noosfero/api/v1/search.rb test/unit/api/search_test.rb
27 Nov, 2015
1 commit
-
Instead of stopping the service, running migrations etc (those take time), and then starting again, let's only restart the service after the uprada has already happened. Now that we are using unicorn, which supports restarting with dropping connections, with this we should have 0 downtime upgrades. Also removed some unecessary buts deom debian/noosfero.prerm: - remove restarting of memcached, which is broken behavior as it could affect other services using memcached. Just set a namespace for our cache keys, and all caches will be automatically invalidated when the application is restarted after an upgrade with a new version number - remove removal of cache/*, since script/production already does that. NOTE: since this behavior change depends on changes to the prerm script, this won't take effect until the next upgrade _after_ the upgrade to first version including this change.
25 Nov, 2015
5 commits
-
Newsletter and Sniffer plugins bug fixes Fixes some bugs found: - Check box in newsletter moderation task page wasn't showing up; - Newsletter header in moderation task page wasn't exactly like the preview of the newsletter since a padding was added; - Sniffer plugin wasn't filtering out enterprises based on distance. See merge request !736
-
`sniffer_plugin_distance` is a virtual attribute of profile and seems like it can only be accessed by a get method call now, so I replaced a `[]` call by a send.
-
regex should work regardless of the position of id in the tag
24 Nov, 2015
2 commits
23 Nov, 2015
19 commits
-
Events from the past was being displayed with "future" class and vice-versa
-
Custom fields can be added to any profile through the admin panel in the 'Fields' section. They have the same behaviour as the current Noosfero's fields (active, signup, required and privacy). Signed-off-by: Fabio Teixeira <fabio1079@gmail.com> Signed-off-by: Gustavo Coelho <gust.rod.coelho@gmail.com> Signed-off-by: Joenio Costa <joenio@colivre.coop.br> Signed-off-by: Macartur de Sousa <macartur.sc@gmail.com> Signed-off-by: Marcos Ramos <ms.ramos@outlook.com> Signed-off-by: Marcos Ronaldo <marcos.rpj2@gmail.com> Signed-off-by: Pedro de Lyra <pedrodelyra@gmail.com> Signed-off-by: Tallys Martins <tallysmartins@gmail.com>
-
Fixes that unit test
-
The search will return previously created articles of that type (such as the home page of a user that was created during the tests)