26 Jul, 2011
14 commits
-
Commit 9f1eccfda207dd5a1e9befa1ca58e60b760531d2 from repo https://github.com/brauliobo/acts_as_solr_reloaded
-
Only search the content for one page, loading more than a hundred results is slow cause solr send xmls for us to parse.
-
Only paginate with pg_options was given. This fixes a bug on the browse controller where not all results were shown.
-
Again, unlike acts_as_ferret, acts_as_solr doesn't work without the Solr server. So to avoid debian postinst script rake db:data:minimal to fail disable it.
-
For the task 'package' check first if solr was already downloaded. If so, then include it on the tarball. Also invoke solr:download task for test task and development script.
-
Solr uses stop words configuration on the server and not on application level. So stop words code and tests were deleted Do not throw 'Out of sync' exceptions when ordering with acts_as_solr. Use the results from the database ignoring index results not present in the database.
18 May, 2011
5 commits
-
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
-
Task solr:download downloads, unpacks and installs Solr+Jetty 3.1.0 inside acts_as_solr plugin. Also fix PID filename according to the standard. Downloading Solr is necessary cause it's too big to include with noosfero (~13mb) and is not available for Debian Lenny.
12 May, 2011
4 commits
-
- http://gitorious.org/noosfero - git://gitorious.org/noosfero/noosfero.git
-
This reverts commit 1ebe4f84dc0910b6ded065b60ed0e58612a93659. Conflicts: features/step_definitions/noosfero_steps.rb test/functional/manage_products_controller_test.rb
11 May, 2011
10 commits
-
This old commit doesn't works! This reverts commit 3e5f93f48a85241667456ceba454dc13afe02335.
-
Also replaced create_user by fast_create on test (ActionItem356)
-
This is an enterprise block that shows all people that added the enterprise as "favorite". (ActionItem356)
-
- log files are in tmp/pids/*.output - using 'default' as default value for '-i' option (ActionItem1898)
-
(ActionItem1941)
-
(ActionItem1941)
-
(ActionItem1996)
10 May, 2011
7 commits
-
(ActionItem1963)
-
This patch creates some tasks to run noosfero plugins' tests through rake. For further information take a look at: http://noosfero.org/Development/PluginsArchitecture#Tasks (ActionItem1996)
-
(ActionItem1996)
-
Signed-off-by: Daniela Soares Feitosa <danielafeitosa@colivre.coop.br>
-
(ActionItem1970)
-
* Features: - Extension of ActionMailer::Base so that it can append or prepend new paths to view_paths and each instance of it has it's own view paths. So if I define Mailer < ActionMailer::Base, my new class Mailer will have an independent view_path from ActionMailer, despite having a default value equal to it. - Adding new method root_path for Plugins. * Fixes: - select_country helper receive options too. - Passing request form through ajax serialize instead of hardcoded.