Gmail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
Discussions > Google Search Appliance/Google Mini > Remove the omitted feature from the google mini
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  9 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Grimm  
View profile  
 More options Oct 2 2008, 9:51 am
From: Grimm <cl...@carfind.co.za>
Date: Thu, 2 Oct 2008 06:51:05 -0700 (PDT)
Local: Thurs, Oct 2 2008 9:51 am
Subject: Remove the omitted feature from the google mini
Hi,

We have just recieved our Google Mini last week friday and are busy
setting it on our website and are busy creating the search page.

However we have hit a snag, when you do a search you get about 4
results and below it you get the following message "In order to show
you the most relevant results, we have omitted some entries very
similar to the 5 already displayed.If you like, you can repeat the
search with the omitted results included. " when you click the link it
shows all relavant results.

How do i remove the omitted feature, so than when a search is done it
will show all results

Thanks
Clive


    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Pablo Solera  
View profile  
 More options Oct 2 2008, 10:05 am
From: Pablo Solera <pablo.sole...@gmail.com>
Date: Thu, 2 Oct 2008 07:05:42 -0700 (PDT)
Local: Thurs, Oct 2 2008 10:05 am
Subject: Re: Remove the omitted feature from the google mini
Hi Clive,

Try using &filter=0 on your search query.

You can take a look what it does here:
http://code.google.com/apis/searchappliance/documentation/50/xml_refe...

hth,

Pablo

On Oct 2, 3:51 pm, Grimm <cl...@carfind.co.za> wrote:


    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Thiru  
View profile  
 More options Oct 2 2008, 7:03 pm
From: Thiru <thiru.fo...@gmail.com>
Date: Thu, 2 Oct 2008 16:03:30 -0700 (PDT)
Local: Thurs, Oct 2 2008 7:03 pm
Subject: Re: Remove the omitted feature from the google mini
Pablo is right on the mark. If you do not want to append a search
parameter in your query, alternatively you can you the following
method. This involves editing the frontend xslt stylesheet.

1. For normal search results page:

In the stylesheet, search for : <!-- * space_normalized_query: q = /
GSP/Q * -->

and make that area look like this, (Note : the value zero will turnoff
the filtering functionality)

</xsl:if>
<input type="hidden" name="filter" value="0"/>
</xsl:template>

<!-- * space_normalized_query: q = /GSP/Q * -->

2. For advanced search results page:

Look for :
<!--====Advanced Search Options======-->

and add the following line before it :

<input type="hidden" name="filter" value="0"/>

So this is how it should look afterwards:

<input type="hidden" name="filter" value="0"/>
<!--====Advanced Search Options======-->

After saving the stylesheet, you might need to add &proxyreload=1 to
the search URL to reload the stylesheet. If you view the source of the
search page, you should see :

<input type="hidden" name="filter" value="0">

---

On Oct 2, 7:05 am, Pablo Solera <pablo.sole...@gmail.com> wrote:


    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "None Re: Remove the omitted feature from the Google mini" by Clive Bromfield
Clive Bromfield  
View profile  
 More options Oct 3 2008, 2:29 am
From: "Clive Bromfield" <cl...@carfind.co.za>
Date: Fri, 3 Oct 2008 08:29:33 +0200
Local: Fri, Oct 3 2008 2:29 am
Subject: RE: None Re: Remove the omitted feature from the Google mini
Thanks,

However I'm not sure weather to replace the existing code or do I add it in.


    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
brianj...@gmail.com  
View profile  
 More options Oct 3 2008, 5:07 am
From: brianj...@gmail.com
Date: Fri, 3 Oct 2008 02:07:05 -0700 (PDT)
Local: Fri, Oct 3 2008 5:07 am
Subject: Re: None Re: Remove the omitted feature from the Google mini
Hi Clive,

You might want to read the instructions again. :-) I think he is
telling you what to look for and what to replace. Also feel free to
test it yourself. :-)

Brian

On 10月3日, 午後3:29, "Clive Bromfield" <cl...@carfind.co.za> wrote:


    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Remove the omitted feature from the google mini" by Matt
Matt  
View profile  
 More options Oct 17 2008, 11:26 am
From: Matt <fra...@butlertech.org>
Date: Fri, 17 Oct 2008 08:26:42 -0700 (PDT)
Local: Fri, Oct 17 2008 11:26 am
Subject: Re: Remove the omitted feature from the google mini
Thiru,

In part 1 of your answer, you say "make that area look like this..."

Do you mean replace the line

<!-- * space_normalized_query: q = /
GSP/Q * -->

With the code you gave above? Or do you mean, add the code directly
above that line? Or do you mean, integrate the code with the code
above this line? It is unclear exactly what you meant.

On Oct 2, 7:03 pm, Thiru <thiru.fo...@gmail.com> wrote:


    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Thiru  
View profile  
 More options Oct 17 2008, 2:10 pm
From: Thiru <thiru.fo...@gmail.com>
Date: Fri, 17 Oct 2008 11:10:02 -0700 (PDT)
Local: Fri, Oct 17 2008 2:10 pm
Subject: Re: Remove the omitted feature from the google mini
Hi Matt,

On part 1, You need to search for the string
"space_normalized_query:". The vanilla xslt code will look like this :

  </xsl:if>
</xsl:template>

<!-- *** space_normalized_query: q = /GSP/Q *** -->

Now you want to add the line <input type="hidden" name="filter"
value="0"/> right below the string </xsl:if>. The modified code should
look like this:

  </xsl:if>
<input type="hidden" name="filter" value="0"/>
</xsl:template>

<!-- *** space_normalized_query: q = /GSP/Q *** -->

Cheers,
Thiru

On Oct 17, 8:26 am, Matt <fra...@butlertech.org> wrote:


    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Matt  
View profile  
 More options Oct 17 2008, 2:12 pm
From: Matt <fra...@butlertech.org>
Date: Fri, 17 Oct 2008 11:12:46 -0700 (PDT)
Local: Fri, Oct 17 2008 2:12 pm
Subject: Re: Remove the omitted feature from the google mini
Thanks Thiru,

That works perfectly. Do I need to do that on the default frontend or
the custom front end that I've configured?

On Oct 17, 2:10 pm, Thiru <thiru.fo...@gmail.com> wrote:


    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Thiru  
View profile  
 More options Oct 17 2008, 5:36 pm
From: Thiru <thiru.fo...@gmail.com>
Date: Fri, 17 Oct 2008 14:36:32 -0700 (PDT)
Local: Fri, Oct 17 2008 5:36 pm
Subject: Re: Remove the omitted feature from the google mini
Your choice :)

Cheers,
Thiru

On Oct 17, 11:12 am, Matt <fra...@butlertech.org> wrote:


    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google