08 Apr, 2014

1 commit


23 Apr, 2013

1 commit


15 Jan, 2013

1 commit


27 Dec, 2012

1 commit


25 Dec, 2012

1 commit


06 Nov, 2012

1 commit


15 Aug, 2012

1 commit


24 May, 2012

1 commit


19 May, 2012

1 commit


15 Apr, 2012

2 commits


03 Apr, 2012

1 commit


19 Feb, 2012

1 commit


22 Dec, 2011

1 commit


27 Nov, 2011

1 commit

  • Conflicts:
    	app/controllers/admin_controller.rb
    	app/controllers/application.rb
    	app/controllers/public/account_controller.rb
    	app/controllers/public/content_viewer_controller.rb
    	lib/noosfero/i18n.rb
    	test/functional/account_controller_test.rb
    	test/functional/admin_controller_test.rb
    	test/unit/contact_test.rb
    	test/unit/profile_test.rb
    Antonio Terceiro
     

16 Aug, 2011

1 commit


09 Aug, 2011

1 commit


05 Aug, 2011

1 commit


26 Jul, 2011

1 commit


18 May, 2011

1 commit

  • Change acts_as_searcheable to always index schema_path. If multitenancy
    if off or the database isn't PostgreSQL, then schema_path method returns
    an empty string and is not used at find_by_contents.
    
    Change find_by_contents adding options separating options from paginate,
    solr and rails's find. With Solr search capabilities, combined search
    (solr + rails find) won't be necessary in the future.
    Also change find_by_contents to return a hash where there are the
    facets found and also the results.
    
    Related tests pass with this change
    Braulio Bhavamitra
     

10 Apr, 2011

1 commit


04 Apr, 2011

1 commit


03 Apr, 2011

1 commit


25 Feb, 2011

1 commit


23 Feb, 2011

1 commit


22 Feb, 2011

1 commit


01 Feb, 2011

1 commit


27 Jan, 2011

1 commit


20 Jan, 2011

1 commit

  • - Default theme while running tests should be a real theme (using
      'noosfero' theme)
    - Disable translation while running tests
    Joenio Costa
     

11 Sep, 2010

2 commits


30 Aug, 2010

1 commit


27 Aug, 2010

1 commit


22 Jul, 2010

1 commit


17 Jul, 2010

1 commit


13 Jul, 2010

1 commit


05 Apr, 2010

1 commit


05 Feb, 2010

2 commits


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)
    Antonio Terceiro