22 Mar, 2016
4 commits
-
Removes date fields format customization Aims to fix a bug where the _datepicker_ component was not able to correctly retrieve the date displayed in the text field due format compatibility. Since there is no reliable way to convert the formats (used by `strftime` and the _datepicker_), the option to customize the date format was removed from the `date_field` and `date_range_field` helpers. See merge request !811
21 Mar, 2016
1 commit
18 Mar, 2016
1 commit
-
Signed-off-by: Gabriel Silva <gabriel93.silva@gmail.com>
17 Mar, 2016
1 commit
16 Mar, 2016
1 commit
-
Add a help message for the user. Closes #144
15 Mar, 2016
2 commits
-
The core has been refactored in order to remove HTML generation from models. On the other hand there are many plugins relying on such behaviour. This provides a failsafe in order to keep them working until the necessary refactors for each plugin do not get done.
-
Signed-off-by: Marcos Ronaldo <marcos.rpj2@gmail.com> Signed-off-by: Gustavo Jaruga <darkshades@gmail.com>
10 Mar, 2016
20 commits
-
It was extracted into a helper and view which are the correct handlers for such logic.
-
This is one more step into decoupling HTML generation from models. All models with such method are expected to go through this refactor.
-
This was a missing refactor from bbf064e9b984a6ca29ff543e486f5b256bc46b2d.
-
After creating the ArticleBlock view test at ff15413b2a8dca45d9f64e57270f294e351a0098 this test got broken. The root cause was the inclusion of ApplicationHelper for the article_block_test which led to `custom_options_article` for CMSHelper tests to fail as the BlogHelper (included by ApplicationHelper) was overriding the method. This has been fized by remove the include to ApplicationHelper and extract the necessary methods to separate helpers which led to two new methods for ArticleHelper and one new helper the ButtonsHelper.
-
By removing the content method, it is now necessary to turn the test into a view one using the BoxesHelper method and properly stubbing other helpers. The view required fix at the html escaping method call synthax.
-
After removing the content method it is now necessary to use BoxesHelper#render_block_content. The view required fixes as it was still supposing the old interface coupled into the model instead of receiving the model object. And it had a programming error that prevented results from getting displayed.
-
also: * rename login_block.html.erb -> login.html.erb * created symlinks for ProfileListBlock subclasses
08 Mar, 2016
5 commits
-
Closes !511
-
For example http://cirandas.net/dtygel/blog?month=10&year=2011/wp-login.php crashes on date parsing Answering request as if no date arguments were passed. Closes !419 Signed-off-by: Rodrigo Souto <rodrigo@colivre.coop.br> Signed-off-by: Braulio Bhavamitra <braulio@eita.org.br>
-
Closes !467 Signed-off-by: Braulio Bhavamitra <brauliobo@gmail.com> Signed-off-by: Rodrigo Souto <rodrigo@colivre.coop.br>
-
For profiles with specific domains registered, the navigation should use the URL for the environment, which are right the context of the navigation links Closes !484
07 Mar, 2016
1 commit
-
Also define all roles as default set for profile_members_controller.
03 Mar, 2016
1 commit
-
Signed-off-by: Gustavo Jaruga <darkshades@gmail.com> Signed-off-by: Marcos Ronaldo <marcos.rpj2@gmail.com>
26 Feb, 2016
2 commits
-
- changes pagination to use api-pagination gem - new endpoints to boxes, activities, and profiles - new exposed attributes for some entities - other minor changes Signed-off-by: Leandro Nunes dos Santos <leandronunes@gmail.com> Signed-off-by: Marcos Ronaldo <marcos.rpj2@gmail.com> Signed-off-by: Michel Felipe de Oliveira Ferreira <michel.ferreira@serpro.gov.br> Signed-off-by: Victor Costa <vfcosta@gmail.com>
-
- Adds use of filtered members to mailing queue executed by send_mail action Signed-off-by: Gustavo Jaruga <darksshades@gmail.com> Signed-off-by: Marcos Ronaldo <marcos.rpj2@gmail.com> Signed-off-by: Michel Felipe de Oliveira Ferreira <michel.ferreira@serpro.gov.br>
25 Feb, 2016
1 commit
-
Fix article comments ordering Fix article's comments ordering bug (had wrong logic before correction) and pagination missing bug (js was overwriting pagination after ajax request). References: https://softwarepublico.gov.br/gitlab/softwarepublico/softwarepublico/issues/630 https://softwarepublico.gov.br/gitlab/softwarepublico/softwarepublico/issues/632 See merge request !792