04 Feb, 2016
1 commit
-
These changes avoid searching for sessions with a wrong schema in a multi domain setup.
02 Feb, 2016
3 commits
-
This was previously done to avoid crashes on development environment, but some selenium tests, for unknown reasons, produces requests where Environment.default returns nil even though all steps passes.
-
Tinymce fields are not filled normally as other fields. In order to fill them, had to use execute_script to set the content of the editor object. This fix might be necessary in other tests as well.
01 Feb, 2016
3 commits
-
Signed-off-by: Tallys Martins <tallysmartins@yahoo.com.br>
30 Jan, 2016
1 commit
-
Selenium tests were broken in clicking inside the content selection box. Some HTML structures, such as `<li>` tags nested to `<a>` tags, may not get along with Selenium and the browser interaction. But are perfectly fine for the final user. As we do not want to modify the current behaviour in order to pass tests, here we handle Selenium's error properly so tests can still pass without modifying current code. NOTICE: This only works with selenium-webdriver 2.50.0 and up.
29 Jan, 2016
2 commits
-
Don't know exactly why but adding this make all tests pass.
28 Jan, 2016
9 commits
-
Count distinct - Multiple fields in paginate Fix sql query error with `distinct` into a **COUNT()** database function with multiple fields. The problem was caused by the gem `will_paginate` on version **3.0.5**. In their new version **3.0.7** this bug was fixed!! See merge request !777
-
Set correct header for csrf token The header setted from application.js has to be equal to the key used in verified_request? See merge request !778
-
This will avoid, or at least reduce the chances of, having the CI builds falling over on temporary network failures.
-
Noosfero 1.4~rc2
26 Jan, 2016
5 commits
-
Don't know exactly why but adding this make all tests pass.
25 Jan, 2016
6 commits
-
Fix oauth client plugin Fix broken tests: https://travis-ci.org/vfcosta/noosfero/jobs/104698347#L1254 Downgrade to a working version of omniauth-oauth2: https://github.com/intridea/omniauth-oauth2/issues/81 See merge request !775
-
See https://github.com/intridea/omniauth-oauth2/issues/81
-
- We don't need to test drag and drop to add blocks here, so I just assume the block is already added. - Fixes the class to search for the Edit button, since recent-content-block class is being used in more than one place now.
-
Removes duplicated rendering of custom fields on organization forms Signed-off-by: Marcos Ramos <msramos@outlook.com> Signed-off-by: Marcos Ronaldo <marcos.rpj2@gmail.com> See merge request !772
22 Jan, 2016
1 commit
-
Signed-off-by: Marcos Ramos <msramos@outlook.com> Signed-off-by: Marcos Ronaldo <marcos.rpj2@gmail.com>
21 Jan, 2016
9 commits
-
These tests weren't working because acessing the signup before breaks the return_to.
-
Currently translated at 100.0% (53 of 53 strings)
-
Currently translated at 100.0% (2124 of 2124 strings)
-
Due to how will_paginate 3.0 works, we need to actually load the paginated collection data by querying it as an array before calling size() with not arguments directly on it.
-
It is already recommended by rails, but it will not be installed on some scenarios. Since it is mentioned in the Gemfile, let's depend on it directly.
-
The standard gettext:po:update task is leaving duplicated strings in the PO files, what breaks a few gettext-related tools. So after calling gettext:po:update, we will normalize the PO files by removing duplicated strings.