Not sure yet when I'll get to this, but I thought I could share some ideas:

  • The port will be a great opportunity to improve performance, thanks to improvements that have been achieved in the core search (for example, we'll get rid of a temporary database table).
  • I'm not too happy with the faceted_search_variables table. It was a quick way to get up and running with multiple search environments, where facet modules could easily add their own per-environment settings. Although improving the variables system is not an absolute requirement for the port to D6, the Schema API should make it almost as easy as the current system to manage module-specific persistent variables, but with a much cleaner data structure.

Comments

zilla’s picture

hello david - this module is amazing, and i *think* it may be in use at ostatic.com (om malik's new open source site)...

i was wondering what the status of hte d6 release looks like - i'm more than happy to test out a dev roll-up if you wind up posting it to the project page...

zilla’s picture

hi, sorry to pester, just wondering if this is still on its way to drupal 6 - would love to use it! happy to test and screw around with it if and when there's a dev or beta..

David Lesieur’s picture

Unfortunately, I did not have time yet to work on the D6 port... But an update will be posted here whenever progress is made. ;)

zilla’s picture

thanks david, looking forward to seeing it! this kind of search and drilldown is truly the most intuitive way to deal with large content sites on drupal built around large taxonomies and multiple vocabularies...very cool stuff.

David Lesieur’s picture

I am currently in the process of cleaning up/refactoring the query building logic, particularly around the keyword search. This should lead to the removal of a temporary table, as has been done in Drupal 6 core. Ultimately, this will also help with the D6 port.

francewhoa’s picture

Subscribing

I agree with zilla I have tried all search related modules and for my project Faceted Search is

truly the most intuitive way to deal with large content sites on drupal built around large taxonomies and multiple vocabularies

I'm actually using it with Drupal 5.7 and would like to use it with Drupal 6 too.

Awesome module thanks David.

killes@www.drop.org’s picture

is there anything one could do to help with the port?

Macronomicus’s picture

Two thumbs up for the 6.x port!

whereisian’s picture

Subscribing. Looking forward to seeing this brilliant module in D6.

Macronomicus’s picture

Just checking in to see how your getting on. I'm quite excited to see/test this for 6.x! I am missing this module much since I switched to 6.x..... been using taxonomy_browser as a temporary fix; but it pales in comparison to your quite excellent much anticipated creation!

Please let us know if you need any help!

Cheers!
^_^

David Lesieur’s picture

Actually, funding would help... If anyone has a budget for this work, please contact me.

DenRaf’s picture

Status: Active » Needs work
StatusFileSize
new44.82 KB

I started the port to drupal 6. The basics are working for me. Just the Faceted Search Views and Field Keyword Filter plugins will not work for sure.

I will post my progress on my blog for sure: http://www.denraf.be/content/facetedsearch-module-drupal-6

The patch is against HEAD.

David Lesieur’s picture

Awesome! I've started reviewing the patch.

Because this is a big patch, unless there are major problems with it I'm likely to commit it so we can refine the code from CVS HEAD. Otherwise, I'm afraid the patch would be hard to maintain as the module continues to evolve.

Thanks!

David Lesieur’s picture

StatusFileSize
new42.82 KB

There was a fatal error (Unsupported operand types in includes/common.inc on line 1269) when selecting a term from the Guided search, which is fixed in the attached patch (a call to url() was not updated with the new array argument). I've also fixed a few cosmetic details.

Still, the results page is always empty at the moment. This qualifies as a major issue preventing me from committing the patch...

Two other issues in this patch that will also need to be solved:

  • Use the 'serial' type for auto-increment fields in the schema.
  • See how Drupal 6 has replaced the old _element_sort() function, and apply the same trick in Faceted Search, rather than adding the old function to faceted_search.module.
fasdalf@fasdalf.ru’s picture

I use windows so i can't apply patch. Could someone post here patched module for windows'users?

David Lesieur’s picture

Please see Howto: Apply patches on Windows. Personally, I use Cygwin.

DenRaf’s picture

StatusFileSize
new107.76 KB

Here a new patch. The results do show up now.

When you want to use the serial type, we'll need to redesign the db schema.

The old_element_sort is now moved to a template file and is not in a function anymore.

You can test it at my blog (http://www.denraf.be)

niklp’s picture

Subscribing (apologies)

Wimmmmm’s picture

Hi, Raf & David,

I noticed that hierarchical taxonomies are not (yet) supported in the port to 6.
I have a "locations" tax, with provinces in the root, and "area's" below each province.

When viewing my faceted list, I get all terms in the facet, not just the root provinces.
When choosing a province in the facet, I also expect to see my selection plus the areas in that province, but port shows no further refinement.

Bug or feature?

David Lesieur’s picture

@WimJanin: Thanks for the report. These problems are bugs... So the patch still needs work.

henry_searle’s picture

Hi guys,

Excellent work on getting this patch done.
I've only had one major problem with it where if I type something into the keyword search nothing happens.
If you manipulate the url you can get it to search but it doesn't show what you've typed in so the user won't necessarily know that its worked.
Plus the user would have to change the url to change.
I've been looking through the code but don't really know enough about the module, Drupal or php to come up with a solution to this.
Thanks again

elly’s picture

Hiya - I tried to apply the patch and got a ton of errors. Should I be trying to patch the release from the main project page, or should I bet trying to patch HEAD?

dydecker’s picture

subscribing

catorghans’s picture

#22 same here

David Lesieur’s picture

Normally the patch must be applied to HEAD, but I have not reviewed the last patch. Also, it could be that it does not apply anymore because HEAD has changed since the patch was posted.

catorghans’s picture

If I look at the dates your last suggestion is probably right.

Isn't it time for a D6 dev version? Or do you want to have a 1.0 for 5 before a real port to 6 is started?

David Lesieur’s picture

I would not mind releasing a D6 version before a 5.x-1.0 version. I'm just too busy with other work at the moment to work on the D6 port.

Issues have been reported regarding the last patch, so there is some clear work to do for anyone who's interested. Good code reviews and tests can also help.

francewhoa’s picture

I can provide tests for D6 version.

David Lesieur’s picture

Version: 6.x-1.x-dev » 5.x-1.x-dev

I have committed the patch #17 (with some changes), so we have a better basis for polishing the details.

Some to do items:

  • Guided search seems to basically work. Keyword search does not. I have only done minimal testing so far.
  • Environment id generation is broken in faceted_search_edit_form_submit() and is a temporary hack. Need to use SchemaAPI's serial type.
  • Add field descriptions in hook_schema().
  • Inadequate page title in faceted_search_edit_form when adding a new environment.
  • Get rid of _faceted_search_element_sort().
  • Document the upgrade path from Drupal 5. Existing update hooks have been removed.
francewhoa’s picture

Version: 5.x-1.x-dev » 6.x-1.x-dev

HEAD version of Faceted Search for Drupal 6.x can be download at: http://drupal.org/node/145191

francewhoa’s picture

Title: Port Faceted Search to Drupal 6 » Port to Drupal 6
Status: Needs review » Needs work
StatusFileSize
new3.56 KB
new46.27 KB
new58.63 KB
new100.56 KB
new39.18 KB
new27.59 KB

Here are my testing results with faceted_search 6.x-1.x-dev (Last updated: August 26, 2008 - 05:04) downloaded from this page. Using a Drupal 6.4 fresh intall and Devel module to quickly generate dummy content. Tested on all major browsers: Firefox 3.01, Opera 9.52, Safari 3.11 & IE 7.

The good news:

  • Guided Search works smooth and fine. This is awesome.
  • When mouseover Guided Search results the subcategory popup is working on all major browsers.

The bad news:

  1. Sub-module Faceted Search Views is incompatible with the 6.4 version of Drupal core. To reproduce install module faceted_search then visit module admin page. A red X will show. Attached screenshot (1_incompatible.png).

    [EDIT: fixed by DenRaf in comment #56:] Sub-module Field Keyword Filter are incompatible with the 6.4 version of Drupal core. To reproduce install module faceted_search then visit module admin page. A red X will show. Attached screenshot (1_incompatible.png).
  2. EDIT: fixed by DenRaf in comment #47: With Guided Search content created by anonymous users is not clickable. Expected result is to be able to click on a link to initiate a search. Link could be something like 'anonymous (24)'. Attached screenshot (2_author_anonymous.png).
  3. EDIT: fixed by DenRaf in comment #45: On Faceted Search admin page when clicking Save and edit button we get redirected to the wrong page. To reproduce visit Administer > Site configuration > Faceted search > Click on Save and edit button. Then we get redirected to:

    http://mywebsite.com/admin/settings/faceted_search1

    Expected redirection should be to stay into the same page:

    http://mywebsite.com/admin/settings/faceted_search/1

    We notice in the above first link that the slash '/' before the 1 is missing. Attached screenshots (3a_Save_and_edit_Button.png & 3b_RedirectToWrongPage.png).
  4. EDIT: fixed by DenRaf in comment #45: Rebuild the Taxonomy Facets index link return fatal error. To reproduce visit Administer > Site configuration > Faceted search > Click on rebuild the Taxonomy Facets index link. Then the next screen will return the following fatal error:

    Unsupported operand types in /mywebsitepath/includes/common.inc on line 1275

    Expected result is a next screen with a confirmation message. Attached screenshots (4a_rebuild_the_Taxonomy.png & 4b_fatal_error_rebuild_tax.png).
  5. EDIT: fixed by Gerhard in comment #50: Keyword search does not work but this can be ignore for now because above post #29 do mention that 'Keyword search does not work'.

Hope this testing help.

The following are notes to myself for future reference. Before using Faceted Search I must run cron and re-index the site. Otherwise search won't work properly:

  • Re-index is located under Administer > Site configuration > Re-Index site button
  • Cron is located under Administer > Reports > Status report > run cron manually link
David Lesieur’s picture

Wow! Thanks for this detailed report! That provides good directions for anyone who would like to help with the port.

David Lesieur’s picture

Another bug: The "Related Categories" block is broken — categories are either wrong (e.g. Date Authored facet) or do not show up (e.g. Content Type facet, Author facet).

james.nadeau’s picture

I would like to use this module for a search function to a new plant finder drupal site for garden.org. Our writers have already entered a good amount of content(cck fields and nodes) to test this search on. I look forward to getting this to work with drupal 6.4. Thanks to everyone before this who have given me some leads on where to start!

I'm going to look into getting the keyword search working as that is what is really important to our organization. Any helpful tips are appreciated.

I have moderate experience as a php programmer and drupal developer, but this will be some of the first work I'll be doing on a module of this complexity and one I haven't created from scratch. Wish me luck!

ps David, this is an awesome module, great work

Anonymous’s picture

subscribing

chasz’s picture

+1

Rosamunda’s picture

+1 subscribing!!!

keithmorr’s picture

subscribing

korayal’s picture

subscribing

niklp’s picture

Title: Port to Drupal 6 » Port Faceted Search to Drupal 6

Just changing this so it's better visible in tracker pages.

no2e’s picture

subscribing

regi.bradley’s picture

subscribing

jseffel’s picture

Subscribing.

ajross’s picture

subscribing

DenRaf’s picture

StatusFileSize
new6.78 KB

@Onopoc: thank you for the very detailed testing. Was very helpfull.

I've created a patch that fixes 1, 3 and 4. For 1, I just make it possible to enable it, did not test these functions.

I've been working on 2 already, but just not there yet.

The patch is against faceted_search-6.x-1.x-dev.tar.gz of 2/09/08

ianchan’s picture

subscribing

DenRaf’s picture

StatusFileSize
new8.74 KB

K, also issue 2 is fixed. It took al lot of debugging to find it, but as you can see in the patch it are only minor changes.

francewhoa’s picture

Great. Thanks DenRaf. I'll try to test your patches this weekend.

root_of_roots’s picture

testing and subscribing

gerhard killesreiter’s picture

Here's an updated patch which fixes a couple of notices and makes the keyword search work.

gerhard killesreiter’s picture

StatusFileSize
new13.18 KB

_Here_ it is

David Lesieur’s picture

@DefRaf & Gerhard: Excellent work! I just committed the patch #51. However, I have added missing t()'s and I haven't included the changes to faceted_search_views.info since that module is not Views 2-ready.

Keyword search now works, and the issues reported by Onopoc in #31 are all fixed, except the first one (incompatible sub-modules).

Summary of known bugs and tasks left to do:

  1. The "Related Categories" block is broken — categories are either wrong (e.g. Date Authored facet) or do not show up (e.g. Content Type facet, Author facet).
  2. Environment id generation is broken in faceted_search_edit_form_submit() and is a temporary hack. Need to use SchemaAPI's serial type.
  3. Add field descriptions in hook_schema().
  4. Inadequate page title in faceted_search_edit_form when adding a new environment.
  5. Get rid of _faceted_search_element_sort().
  6. Faceted Search Views not ported yet.
  7. Field Keyword Filter not ported yet. It relies on Field Indexer, which unfortunately is also not ported yet.
  8. Move administration functions into separate .admin.inc files.
  9. Document the upgrade path from Drupal 5. Note: All old 5.x update hook implementations have been removed, which means one will have to update to the latest 5.x version of Faceted Search before updating a site to Drupal 6.
francewhoa’s picture

StatusFileSize
new50.08 KB
new36.72 KB
new123.68 KB

@DefRaf, Gerhard & David: Thanks for all the patches.

Here are my testing results with current HEAD faceted_search 6.x-1.x-dev (September 28, 2008 - 05:04). Hope this help.

The good news:

  • Keyword search works.
  • All issues reported in #31 are indeed fixed. Except the first one but that's normal because sub-modules Faceted Search Views & Field Keyword Filter are still under development.

The bad news:

  1. A small thing with Keyword search. If user search for number '0' (zero without quotes ' ') no result or message is return. Instead user gets redirected to Faceted Search detail search page. This action is confusing. Expected result is to return: 'Current search [×] 0'. Plus the results if any and if no result return message 'Your search yielded no results' (Find attached screenshot done with number '9' zero_expected_result.png). I tried all numbers and they work fine except number '0'.

    To reproduce:
      1. Create a few pages with number '0' in body.
      2. In Keyword search field type in '0'. Click on Search button. (Find attached screenshot zero_step_2.png)
      3. User gets redirected to Faceted Search detail search page. Without any result or message. (Find attached screenshot zero_step_3.png)

I didn't test Faceted Search Views because it's still under development. I'll test when it's ready.

Testing done with:

  • Current HEAD faceted_search 6.x-1.x-dev (September 28, 2008 - 05:04).
  • Drupal 6.4 fresh install
  • Most popular browsers: Firefox, Opera, Safari, IE
  • Devel module to quickly generate dummy content.
clems’s picture

Thanks for porting this great module to Drupal 6. Does anyone have a patch or any sort of info on how to port the remaining sub-modules Search Views and Field Indexer to v6? I absolutely need those.

root_of_roots’s picture

@clems

Might try Deadwood . It may work out of the box, but often it requires a little to a lot of modifying. A couple of modules I tried with this worked - but not 100%.

DenRaf’s picture

StatusFileSize
new8.28 KB

Quick patch here to fix issue mentioned in #53 as also to make it possible to enable the field_keyword_filter module since I made a quick port of the field_indexer module.

David Lesieur’s picture

Status: Needs work » Needs review
francewhoa’s picture

Title: Port to Drupal 6 » Port Faceted Search to Drupal 6
StatusFileSize
new86.99 KB
new50.1 KB
new27.49 KB
new350.89 KB

If someone else wants to help with testing or development here is the module Faceted Search for Drupal 6.x unofficial #58. Made with patch #56 applied against current HEAD faceted_search 6.x-1.x-dev (September 28, 2008 - 05:04). Important: This is an unofficial version and it should be install only on test or development server NOT on production (live) server. Enjoy.

@DenRaf : Thanks for patch on #56. I tested it and sub-module Faceted Field Keyword Filter is now compatible with the 6.4 version of Drupal core.

I haven't tested yet your quick port of the Field Indexer module. When done I'll create another comment with my results at this page.

Patch on #56 fixes only part of issue #53 though. The good new is that searching for the number zero '0' will return a result. But the bad news is that the result is mixed with all available data. Attached screenshot (2_zero_issue.png). To reproduce:

  1. Create a few pages with dummy content. Make sure there's no number zero in any page.
  2. Create one page with number '0' anywhere in body field.
  3. In Keyword search field type in '0'. Click on Search button.
  4. The search will return the page with number '0' that's great but this result is mix with all the other pages. In my testing the result is mix with the other 49 pages for a total of 50 pages. Attached screenshot (2_zero_issue.png)
     
    Expected result is to return only the page created at step 2. The page with the zero. Attached screenshot (2_zero_expected.png). This screenshot is a search result with number one '1' instead of '0'. Hope this help.

Task left to do if someone else wants to help:

  • Sub-module Faceted Search Views is incompatible with Drupal 6.4. Drupal 6.4 module admin says 'This version is incompatible with the 6.4 version of Drupal core.' To reproduce install this unofficial module faceted_search then visit module admin page. A red X will show beside the sub-module Faceted Search Views so the module can't be activated. Attached screenshot (1_Faceted_Search_Views.png). Expected result is to be able to check the module to active it.
mfricke’s picture

StatusFileSize
new11.21 KB

Using drupal 6.5, I am getting the following error warning on every update of content: that line 192 of the taxonomy_facets.module uses an invalid argument (screenshot attached). I am not immersed in this but I will try to have a look.

Good work!

Martin

brianV’s picture

StatusFileSize
new646 bytes

Faceted Search Views is now compatible once the attached patch is applied.

There were some syntax errors that needed to be cleaned up in faceted_search_views.info.

Module is only half-ported - working on fixing some remaining bugs....

**Edit** What needs to be done to do this module 'right' somewhat exceeds my time and views knowledge at this point. Perhaps someone more familiar with the Views2 API would like to take a crack at it...

eliosh’s picture

subscribe, sorry :-(

jazic’s picture

thanks, will give the latest a test.

eliosh’s picture

Today's test :
I have a complete vocabulary for Italian's regions, province and cities. The hierarchy is like this :

Regions
   Provinces
      Cities

If i tag a node with a city, with faceted search in D5 i can browse starting from Region, than select the province and so the city (you can try this on www.youitaly.it).
Now, with D6, i repeat the same step as D5. Imported the same vocabulary, but now faceted search show me only the city.
I try to change "hierarchy" field in database table "vocabulary" from 0 to 1, but with the value "1" it doesn't work at all.

I hope i was clear.

Is there anything i made wrong ?
The version of FS i'm using is 6.x-dev of 21/10/2008. Drupal is the latest (6.5)

Thanks

pisco23’s picture

subscribe

kulvik’s picture

Great work guys! I'll jump in and help test this.

Best regards,
Thomas Kulvik

Ny Media AS
www.nymedia.no
+47 4000 7955

dropchew’s picture

Seems like 6.x doesn't work with views 2, cant seem to find the arg for facted search environment id in views 2...

OneTwoTait’s picture

subscribe. :)

that0n3guy’s picture

Subscribed

So its my understanding that views does not work quite yet... is that still true?

francewhoa’s picture

Status: Needs work » Needs review
StatusFileSize
new342.54 KB

If someone else wants to help with testing or development here is the latest module Faceted Search for Drupal 6.x unofficial version #69. Untested. Faceted Search Views should now be compatible. Made with patch #60 from brianV. Patch applied against current HEAD faceted_search 6.x-1.x-dev (October 20, 2008 - 17:05). Important: This is an unofficial version and it should be install only on test or development server NOT on production (live) server. Enjoy.

decibel.places’s picture

I'm using faceted search on D6 to expose some taxonomy categories for a certain role "buyer" as well as search the content

Not using Views or anything else fancy, it's working fine for what I need, using faceted_search-6.x-1.x-dev.tar.gz

It's a closed site, used for tracking leads from web campaign ads for various clients, using webforms, ThemeKey (really handy, for paths created with taxonomy + pathauto) and additional stats by GA, Woopra and Clicky.

coconnor’s picture

Subscribing...

scott859’s picture

Subscribing...

David Lesieur’s picture

Hi, I have been a bit quiet lately, taken over by other projects. Thank you all for your contributions (and your patience!). Your work has allowed many people to get started with Faceted Search on Drupal 6! I'll soon be able to put more time on Faceted Search, and I hope to release a solid Drupal 6 version early next year.

Bilalx’s picture

Good to hear that, we are waiting :)

chawl’s picture

Component: Code » Documentation

Why not use as a menu system ;)

Tx for an excellent drilldown solution.

subscribing.

chawl’s picture

Component: Documentation » Code

Sorry ...

David Lesieur’s picture

Status: Needs review » Needs work

Btw, there is no difference between the current dev version and Onopoc's version (#69), except for the changes to faceted_search_views.info. However, those changes are insufficient to make Faceted Search Views work with Views 2. I won't update the info file until the module really works.

David Lesieur’s picture

I have begun working on major changes to address issues mentioned in #52. I might be able to deliver results in a few days.

David Lesieur’s picture

As of today, the dev version should work pretty well with Drupal 6. The only major component that's still missing is Views integration.

Of course, everyone is welcome to test and report bugs/issues. :-)

jeromev’s picture

Hey David,
I tried it yesterday evening, but could’nt get the “related gategories” block. I just downloaded the dev you just submitted, and boom! It works!!
Great job. I’ll let you know if I find any bug/issue.
Happy new year!
jv

storable’s picture

Love the search, but is there any way to make the URL more search engine friendly? my.website.com/fsearch/results/taxonomy:4711.3846,4301 is not exactly search friendly.

Thank you,
storable

David Lesieur’s picture

@storable: this is discussed in #227627: Use term names and term ids in paths.

yurtboy’s picture

Category: task » bug

I got this error right after installing faceted unofficial
user warning: Table 'db.view_view' doesn't exist query: SELECT v.name FROM view_view v INNER JOIN view_argument a ON a.vid = v.vid WHERE a.type = 'faceted_search_results' ORDER BY v.name in /somepathhere/modules/faceted_search_unofficial_no_69/faceted_search_views.module on line 18.

David Lesieur’s picture

Category: bug » task

At this point, please ignore the unofficial package that's been posted in this thread. Try the 6-x-1.x-dev package from the project's page instead.

mikeytown2’s picture

K got it working on a live site... What can I do to help with getting the views submodule working?
http://www.bluediamondhomeandrv.com/

Junro’s picture

subscribe

kpaul’s picture

any word on when Faceted Search Views will be compat with D6.8 and now D6.9?

thanks!

that0n3guy’s picture

Hey all...

I am in need of views 2 integration but am no coder...

I thought I would post this: http://views.doc.logrus.com/

Its the doc's for views 2 api, maybe this will help give someone a boost.

Thanks for everyone's great work!

liliplanet’s picture

subscribe, thx!

bugster’s picture

StatusFileSize
new3.73 KB

This is a views2 patch, this is still WIP.

It will work if you patched the info file (dependency bug)

If you are using database prefixes then you will also need to patch the query function from the class faceted_search_query in the file faceted_search.inc.
You will have to put curly braces into the join for the heap table. ( wrapper_begin and wrapper_end )

in the default view you will have to provide a pager

Berry.

mikeytown2’s picture

Patch Does Work, tested on my local machine. I want to get Faceted Search working with boost before I roll this out on my live site.

David Lesieur’s picture

Nice! I haven't tried it yet, but here are some quick comments on the code:

  • You could probably avoid the 'id' argument by renaming the 'search' argument as 'faceted_search'. I think we could trust a 'faceted_search' argument to contain our $search object without having to check a second argument.
  • I think Views now provides convenient functions for retrieving the list of existing views. We might want to replace the db_query("SELECT name FROM {views_view} ORDER BY name"); call.
  • Please run your module through Coder module to make it more compliant with Drupal coding standards.
mikeytown2’s picture

Status: Needs work » Needs review

K got it working with boost and views, so its now live. Only Manufactured Homes and Used have it
http://www.bluediamondhomeandrv.com/

but if you want to browse it all here's the "secret" faceted entrances that exposes all
http://www.bluediamondhomeandrv.com/manufactured-homes
http://www.bluediamondhomeandrv.com/pre-owned

mcreature’s picture

Subscribing

sunfish’s picture

I'm trying to display search results using a custom view defined in Views2. Is Faceted Search a possible solution? If so, how do you make Faceted Search Views compatible with Drupal 6.9?

David Lesieur’s picture

@sunfish: See the above patch (#90). I have not tried it yet, but mikeytown2 reported that it works for him.

sunfish’s picture

Yes, it does seem to work. The only thing is Field Keyword Filter cannot be enabled becasue Field_Indexer is missing.
Is it possible to include a plain vanilla keyword search block a la drupal default search block?

mikeytown2’s picture

David Lesieur’s picture

@sunfish: Field Indexer is a separate module: http://drupal.org/project/field_indexer.

jeromev’s picture

Patch #90 works great. Thanks Berry!
jv

playfulwolf’s picture

subscribe

mudd’s picture

Subscribe

doughold’s picture

subscribing

David Lesieur’s picture

Status: Needs review » Fixed

Although bugster's version (#90) was a good start and properly filtering the search results, it was not complete since the guided search was not taking the view's filters into account.

I have just completed this work and committed it. I have also removed the unnecessary faceted_search_views_views_api() function, changed the view retrieval to use Views' API and to only select appropriate views, made some code simplifications, and fixed code style issues.

The README.txt file has been updated with new instructions for Views integration.

The port of Faceted Search to Drupal 6 and Views 2 is now complete!

Junro’s picture

Thanks ^^ Congratulations! Great job :)

salaDDodger’s picture

Great Work!! Thank You so much :)

doughold’s picture

Just in time! I was struggling with the views integration yesterday afternoon, and vualah, a beta release with everything working beautifully that night! Thanks guys!

eliosh’s picture

Great David, and thanks to everybody who works on this issue.

kpaul’s picture

sorry about that...

mikeytown2’s picture

@kpaul, open a new issue for your question. This thread is marked as fixed.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.