23 Feb, 2011
18 commits
-
Internationalization of the ActiveRecord error messages do not work yet.
-
ActionController::CgiResponse seems to be changed in Rails 2.3.5. Later we need to re-add the call to the cleanup method.
-
In Rails 2.3.5, that call was not working because the :include option was not being considered for some reason. Removed the :include and added the join explicitly in the query.
-
The test relied on updating the date, which for some reason din't work. Stubbing Time.now solved the problem.
-
We do not need the profile to be invalid, we just need to trigger the validation.
-
Truncate now takes length and omission parameters in a options hash
-
That test was actually testing that published_at was equal to created_at by default, but what we actually want is to set published_at to the time of creation!
-
Fixing tests to first parse the HTML and then test the contents, instead of rellying in the exact markup
-
For some reason terminology was being assigned twice and the test was failing.
-
The touch method provided by Rails 2.3.5 actually has a different semantics, and since it was only used in two places, it's better to inline the semantics we wanted.
-
In Rails 2.3.5 fixture_file_upload was moved to ActionController::TestProcess which by default is only available for functional tests
22 Feb, 2011
12 commits
-
This was only fixed on Feb 14th 2011: https://rails.lighthouseapp.com/projects/8994/tickets/4525-favor-in-all-code-instead-of-deprecated-as-interpolation-syntax-for-i18n
-
Besides nobody using it, the implementataion is really crappy so we are better without it.
-
This reverts commit 0fcf86d44896774ec82af0ea41ac6c61a95a3485.
-
Conflicts: app/controllers/application.rb lib/noosfero.rb lib/noosfero/i18n.rb test/test_helper.rb test/unit/consumption_test.rb
21 Feb, 2011
1 commit
20 Feb, 2011
3 commits
-
Conflicts: public/stylesheets/application.css
19 Feb, 2011
3 commits
-
(ActionItem1854)
-
- removed 'icon-scrap' CSS class (ActionItem1854)
-
(ActionItem1870)
18 Feb, 2011
2 commits
-
(ActionItem1889)
-
* Added tinymce editor on lead and body of suggested article * Added tiny mce on approval of suggested articles (ActionItem1887)
17 Feb, 2011
1 commit
-
Solve http://noosfero.org/Development/ActionItem1851 Unhappily, as i see, that is impossible to auto-test if a content is overflowing a sized box. That is also impossible to auto-test if the <pre> is bigger then the sized box, despite the content is forcing to be bigger, and that i can't explain. It's clientWidth shows it with the parent size. :-( The good news is that is really easy to correct! :-) We only need to style white-space: pre-wrap on <pre> elements inside line-brakes as it must do, and add brakes at the end of the horizontal space if need (what solves the bug). http://www.w3.org/TR/CSS21/text.html#propdef-white-space (ActionItem1851)