11 Jan, 2011
1 commit
-
(ActionItem1771)
09 Dec, 2010
1 commit
-
* English text review * Letting the administrator edit all fields which are going to be published before accepting the article. * Letting administrator highlight the new article. * Making the size of the lead and body fields consistent with other UI parts * Removed inconsistent styling * Updated database schema file (ActionItem1732)
07 Dec, 2010
1 commit
-
(ActionItem1769)
04 Oct, 2010
1 commit
-
(ActionItem1685)
21 Sep, 2010
1 commit
-
* The users member of a community shoudl be notified with the information of where that noficication is. * The friendship relationship should be notified to the both users * If the article is created automaticaly according its template this article should not be notified * The article approval should not notify the article with the user who aproved it as the user that made the article (ActionItem1303)
11 Sep, 2010
1 commit
-
(ActionItem1303)
15 Aug, 2010
1 commit
-
- Added a new jQuery UI theme - Added jQuery Cookie plugin (ActionItem1412)
06 Aug, 2010
1 commit
-
(ActionItem1605)
05 Aug, 2010
1 commit
-
(ActionItem1610)
22 Jul, 2010
1 commit
-
* Created a new table inputs * For each consumption of a profile was created an input to each product of the profile * Removed consumptions table (ActionItem1435)
13 Jul, 2010
1 commit
-
- Old interface for category selection was removed - Allow nil for product name - Procuct category is mandatory for new products - Optimizing some functional tests - Categories have attribute to set if accept or no products (ActionItem1391)
02 Jul, 2010
1 commit
18 May, 2010
1 commit
-
- Old setting field 'visible' removed (ActionItem1499)
05 Mar, 2010
1 commit
-
* The problem ocurred because the body of PublishedArticles is empty and it must call the body of the article to which it references to. This is done through the to_html method. * Also included fast_create defaults for blog. (ActionItem1395)
20 Jan, 2010
2 commits
-
(ActionItem1367)
-
Conflicts: po/de/noosfero.po po/pt/noosfero.po
18 Jan, 2010
1 commit
-
* Not allowing people to signup without a name * Adding a migrate to set identifier as name for people that are already without a name * Changing the field "Full Name" to "Name" and to become red when not filled * Adding new db:schema (ActionItem1352)
13 Jan, 2010
1 commit
-
(ActionItem1357)
18 Dec, 2009
1 commit
-
This way we can reuse that logic (fast creation with a category and/or adding a category) in other tests for search functionality.
11 Dec, 2009
1 commit
-
This time: * test/functional/search_controller_test.rb * test/functional/profile_editor_controller_test.rb The time gain was small, so perhaps we need to formulate another strategy for functional tests. The way we are doing them, they always require hitting the database.
25 Nov, 2009
1 commit
-
(ActionItem1255)
31 Oct, 2009
1 commit
-
* Moved all object creation helper methods into Noosfero::Factory * Added a new and faster version of create_user. * Adjusted some test cases tests to use the new factory methods This comprised removing a lot of bad smells from the tests, involving eliminating uneeded database hits. * reviewed ProfileTest for speed as a case study. The test suite used to take ~ 40 seconds to run, now it takes ~ 14 seconds. If we do this to all test suites, we can dramatically reduce the time we need to run all the tests * Added a rake task test:smells to list potential test smells. Started with probably unecessary and/or too slow database hits * In the end, running all the tests now takes ~ 13 minutes on Colivre's development machine, instead of the ~ 30 minutes it used to. (ActionItem1279)
27 Oct, 2009
1 commit
-
* transformed script/feed-updater into a controller script. It starts and stops together with the production system (script/production) * moved the update (daemon) logic into FeedUpdater class. It knows which feeds must be updated and when, and when it should stop running. * concentrated the fetch (download) logic into FeedHandler class. It knows how to update a specific feed. * implemented the concept of "enabled" and "expired" in both ExternalFeed and FeedReaderBlock. The feed updater looks for feeds that are both enabled *and* expired to update. * Disabled feed reader blocks get re-enabled when their address is changed. * fixed a bug that made some feeds crash when using PostgreSQL (CGI::unescapeHTML transforms Numeric Character References into iso-8859-1 data and PostgreSQL won't accept that into a UTF-8 database) * Removed sleep(1) calls from script/production, they don't seem to be useful * Added an index for the type column in `blocks` table. (ActionItem1243)