29 Jul, 2013
4 commits
-
Having this vendored code at all sucks
-
In Ruby 1.9, \w represents only [a-zA-Z0-9_]. To also catch non-letter characters (such as Japanese characters), we need the [[:word:]] character class, which includes Unicodes categories Letter, Mark, Number, and Connector_Punctuation. Reference: http://www.ruby-doc.org/core-1.9.3/Regexp.html
28 Jul, 2013
1 commit
26 Jul, 2013
10 commits
24 Jul, 2013
3 commits
-
…lid?(attr) in ActiveModel::Errors class by [:attr].any?
23 Jul, 2013
8 commits
-
All task email notifications are disabled for now; TaskMailer will probably need to be rewritten.
19 Jul, 2013
5 commits
-
Conflicts: app/helpers/boxes_helper.rb app/models/comment.rb app/views/comment/_comment.rhtml app/views/comment/_comment_form.rhtml app/views/content_viewer/_comment.html.erb app/views/content_viewer/_comment.rhtml app/views/content_viewer/_comment_form.html.erb app/views/content_viewer/_comment_form.rhtml app/views/profile/send_mail.html.erb config/routes.rb debian/control
17 Jul, 2013
5 commits
16 Jul, 2013
4 commits
-
Introducing bug (http://noosfero.org/Development/ActionItem2705) temporarily in order to avoid the performance issues associated with the necessary loading of all posts to run display_to?. When we develop a scoped way to retrieve this contents we then will be able to fix this bug. (ActionItem2706)