24 Jun, 2015
1 commit
23 Jun, 2015
1 commit
20 Jun, 2015
2 commits
19 Jun, 2015
2 commits
-
This was breaking the asset pipeline for me when running in production mode
18 Jun, 2015
3 commits
-
This reverts commit 190a130ea45fb5911016be68cfb1038f762ea313.
17 Jun, 2015
17 commits
-
organizations: use display_name on short_name See merge request !554
-
Use profile homepage The profile homepage is not used in some places See merge request !555
-
Issue #63 Language selection bug - Fixed wrong language selected when accessing a translation page of an article. See Issue #63 for more details. See merge request !559
-
tokeninput: don't focus on init to avoid page scroll down This happens for example on /admin/features with feature members_whitelist_enabled with one member added, the page will load and scroll to token input See merge request !594
-
Shopping cart bugs Same of #601, but against master. See merge request !606
-
Signed-off-by: André Bernardes <andrebsguedes@gmail.com> Signed-off-by: Arthur Del Esposte <arthurmde@gmail.com> Signed-off-by: Fabio Teixeira <fabio1079@gmail.com> Signed-off-by: Gabriela Navarro <navarro1703@gmail.com> Signed-off-by: Tallys Martins <tallysmartins@gmail.com>
-
- Added image label - Added image to article body - Changed some minor positioning Signed-off-by: André Bernardes <andrebsguedes@gmail.com> Signed-off-by: Arthur Del Esposte <arthurmde@gmail.com> Signed-off-by: Fábio Teixeira <fabio1079@gmail.com> Signed-off-by: Gabriela Navarro <navarro1703@gmail.com> Signed-off-by: Tallys Martins <tallysmartins@gmail.com>
-
Set current profile and add name and email to user_data http://noosfero.org/Development/ActionItem3150 See merge request !228
-
application-js: encapsulate dom element on jQuery before calling hide() See merge request !556
16 Jun, 2015
10 commits
-
folder: let word wrap work (do not short filenames) See merge request !503
-
This also removes short_filename as it is now unused
-
Expire LocationBlock cache on profile's location change http://noosfero.org/Development/ActionItem3217 See merge request !259
-
Search category with an autocomplete http://noosfero.org/Development/ActionItem3149 See merge request !227
-
Speed up role assignments fetch http://noosfero.org/Development/ActionItem3197 See merge request !252
-
(ActionItem3149)
-
Add column last update in the CMS file listings http://noosfero.org/Development/ActionItem2982 See merge request !105
-
Conflicts: app/views/cms/_view_items.html.erb config/locales/en.yml
-
Fix JS from fullscreen This patch fixes the JS that was returning null on article view page and not making the "Zoom in" of image feature appear. See merge request !602
15 Jun, 2015
1 commit
-
Signed-off-by: Gabriela Navarro <navarro1703@gmail.com>
14 Jun, 2015
1 commit
-
Support plugin to be defined as module instead of object This makes possible for a plugin to be defined as module and have its main class defined inside it with the name Base (e.g. MyPlugin::Base). The advantages of this is to correctly scope plugins constants inside the module. There are many conflicts with the core if the plugin is defined as klass, for example: - if you define a MyPlugin::DisplayHelper you'll get the error 'warning: toplevel constant DisplayHelper referenced by MyPlugin::DisplayHelper' and your class won't be loaded unless you put a "require 'my_plugin/display_helper'" - `require` is also needed for contants with the sames of constants declared under Noosfero::Plugin. For example, if you define a MyPlugin::Manager or MyPlugin::Settings, Noosfero::Plugin::Manager or Noosfero::Plugin::Settings will be returned instead of your plugin's definition. - other hard to debug errors may also happen. This also encapsulates loading procedures into methods of Noosfero::Plugin. See merge request !482
13 Jun, 2015
2 commits
-
This makes possible for a plugin to be defined as module and have its main class defined inside it with the name Base (e.g. MyPlugin::Base). The advantages of this is to correctly scope plugins constants inside the module. There are many conflicts with the core if the plugin is defined as klass, for example: - if you define a MyPlugin::DisplayHelper you'll get the error 'warning: toplevel constant DisplayHelper referenced by MyPlugin::DisplayHelper' and your class won't be loaded unless you put a "require 'my_plugin/display_helper'" - `require` is also needed for contants with the sames of constants declared under Noosfero::Plugin. For example, if you define a MyPlugin::Manager or MyPlugin::Settings, Noosfero::Plugin::Manager or Noosfero::Plugin::Settings will be returned instead of your plugin's definition. - other hard to debug errors may also happen. This also encapsulates loading procedures into methods of Noosfero::Plugin.