RE: Verity - how to EXCLUDE a single file from the search?

2001-11-30 Thread UXB Internet

Lex,

Name all HTML files you DO NOT want included in the indexing as *.html and
all files to include in the index as *.htm or *.cfm.  Then only include the
*.htm and *.cfm when you create the index.


Best regards,

Dennis Powers
UXB Internet
(203)879-2844
http://www.uxbinfo.com/

-Original Message-
From: Les Mizzell [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 29, 2001 9:08 PM
To: CF-Talk
Subject: Re: Verity - how to EXCLUDE a single file from the search?

 If you are using CF 5.0 the Verity Spider can do this.

Get's worse - this site is on a shared server, so I have no access to CF
Admin.

Ideas on doing it WITHOUT the admin?

--
Les Mizzell
-
-
People need to realize that every time
they mention about how fragile our
planet is, it's like asking outer-space
aliens to come invade us.
Jack Handey
-
-


~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Verity - how to EXCLUDE a single file from the search?

2001-11-29 Thread Garza, Jeff

If you are using CF 5.0 the Verity Spider can do this.  You can configure it
to exclude any number of individual files based on name, path or regular
expression pattern matches.  Caveat is that it only works on the Localhost
address space.  So if you are using host header redirection on your
webserver you'll have to either assign localhost to that website or buy the
full spider...

Geesh... I'm starting to sound like the VSpider Zealot of the CF-Talk
List...  Am I that bad? ;^)

Anyway, I did a presentation for this earlier this year.  If any of you are
interested in the information, you can find the presentation, some related
Macromedia documentation (the Advanced CF5.0 Administration Guide in PDF
format -- has all the goodies on K2 and the Verity Spider) and some demo
batch files at http://www.spectrumastro.com/veritydemo/index.cfm

Enjoy,

Jeff Garza
Lead Developer/Webmaster
Spectrum Astro, Inc.
[EMAIL PROTECTED]
http://www.spectrumastro.com

-Original Message-
From: Les Mizzell
To: CF-Talk
Sent: 11/29/01 6:24 PM
Subject: Verity - how to EXCLUDE a single file from the search?

Title pretty much says it

I need to EXCLUDE a single file from a Verity index. Anybody got a good
way
to do this?

Basically, it's a framed site, and it's possible to pull up the
navigation
frame as one of the search results, since most of the main terms you'd
be
searching for exists in that frame!

--
Les Mizzell
-
-
People need to realize that every time
they mention about how fragile our
planet is, it's like asking outer-space
aliens to come invade us.
Jack Handey
-
-


~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Verity - how to EXCLUDE a single file from the search?

2001-11-29 Thread Les Mizzell

 If you are using CF 5.0 the Verity Spider can do this.

Get's worse - this site is on a shared server, so I have no access to CF
Admin.

Ideas on doing it WITHOUT the admin?

--
Les Mizzell
-
-
People need to realize that every time
they mention about how fragile our
planet is, it's like asking outer-space
aliens to come invade us.
Jack Handey
-
-

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Verity - how to EXCLUDE a single file from the search?

2001-11-29 Thread Max Paperno

Les, can you change the file extension on this file to something that won't get 
indexed?  I've done that before, but depends on what it is, of course.  Get creative  
:)

HTH,
-Max


-
Maxim Paperno, CTO
World Design Group, Inc.
[ CF Development and Hosting since 1996 ]
http://www.WorldDesign.com/

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Verity - how to EXCLUDE a single file from the search?

2001-11-29 Thread Les Mizzell

 Les, can you change the file extension on this file to something that
won't get indexed?


I'm thinking of just moving the file in question to a directory outside the
index parameters


Would be nice to know a way to do it when using the CFCOLLECTION tag
though

--
Les Mizzell
-
-
People need to realize that every time
they mention about how fragile our
planet is, it's like asking outer-space
aliens to come invade us.
Jack Handey
-
-

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Verity - how to EXCLUDE a single file from the search?

2001-11-29 Thread Chris Wigginton

Cool new feature of ColdFusion 5 is that the Verity Spider is included as
part of the distribution.  The license is for localhost only.

The Verity spider has some great capabilities to numerous to mention here,
but here's a taste.

The spider can use a command file to build the collection, one of the
parameters is the capability of using a regular expression.  The below is
from the docs;

-regexp 
Specifies the use of regular expressions rather than the default wildcard
expressions for the following options: -exclude, -indexclude, -include,
-indinclude, -skip, -indskip, -preferred, and -nofollow. 

Wildcard expressions allow the use of the asterisk ( * ) for text strings,
and the question mark ( ? ) for single characters. 

 This wildcard expression...  Will apply to these text strings...  
a*t 
 although, attitude, audit 
 
file?.htm 
 files.htm, file1.htm, filer.htm 
 
name?.* 
 names.txt, name.doc, named.blank, names.ext 


just search on spider in the docs.  


Regards,


Chris
 



-Original Message-
From: Les Mizzell [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 29, 2001 8:36 PM
To: CF-Talk
Subject: Re: Verity - how to EXCLUDE a single file from the search?


 Les, can you change the file extension on this file to something that
won't get indexed?


I'm thinking of just moving the file in question to a directory outside the
index parameters


Would be nice to know a way to do it when using the CFCOLLECTION tag
though

--
Les Mizzell
-
-
People need to realize that every time
they mention about how fragile our
planet is, it's like asking outer-space
aliens to come invade us.
Jack Handey
-
-


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Verity - how to EXCLUDE a single file from the search?

2001-11-29 Thread Garza, Jeff

Liz,

Unfortunately on a shared host you are pretty much done...  

To effectively use the spider you'll need command line access as well as
full access to the CF Administrator.  Your best bet is to move it to an
outside directory or if it's just plain old HTML rename it as an .inc file
and CFINCLUDE it inside your nav page.  

When I've needed to do this in the past (and I was using 4.5) I would create
a ColdFusion Mapping (is this possible with your host?) and put all my
includes (header, footer, navigation) there.  That way I was really only
indexing the meat of the site.

Good Luck!

Jeff Garza
Webmaster/Lead Developer
Spectrum Astro, Inc.
[EMAIL PROTECTED]

-Original Message-
From: Les Mizzell
To: CF-Talk
Sent: 11/29/01 7:35 PM
Subject: Re: Verity - how to EXCLUDE a single file from the search?

 Les, can you change the file extension on this file to something that
won't get indexed?


I'm thinking of just moving the file in question to a directory outside
the
index parameters


Would be nice to know a way to do it when using the CFCOLLECTION tag
though

--
Les Mizzell
-
-
People need to realize that every time
they mention about how fragile our
planet is, it's like asking outer-space
aliens to come invade us.
Jack Handey
-
-


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Verity - how to EXCLUDE a single file from the search?

2001-11-29 Thread Les Mizzell

O...

Got a few sites on servers that I've admin access to, and we've just
upgraded them to CF 5.  The below is VERY nice to know.

Thanks!

Darned those shared server clients!

--
Les Mizzell
-
-
People need to realize that every time
they mention about how fragile our
planet is, it's like asking outer-space
aliens to come invade us.
Jack Handey
-
-
Chris Wigginton [EMAIL PROTECTED] wrote in message
47FD4196C273D411950300508BCF1978B97A90@S0001EXC0006">news:47FD4196C273D411950300508BCF1978B97A90@S0001EXC0006...
 Cool new feature of ColdFusion 5 is that the Verity Spider is included as
 part of the distribution.  The license is for localhost only.

 The Verity spider has some great capabilities to numerous to mention here,
 but here's a taste.

 The spider can use a command file to build the collection, one of the
 parameters is the capability of using a regular expression.  The below is
 from the docs;

 -regexp
 Specifies the use of regular expressions rather than the default wildcard
 expressions for the following options: -exclude, -indexclude, -include,
 -indinclude, -skip, -indskip, -preferred, and -nofollow.

 Wildcard expressions allow the use of the asterisk ( * ) for text strings,
 and the question mark ( ? ) for single characters.

  This wildcard expression...  Will apply to these text strings...
 a*t
  although, attitude, audit

 file?.htm
  files.htm, file1.htm, filer.htm

 name?.*
  names.txt, name.doc, named.blank, names.ext


 just search on spider in the docs.


 Regards,


 Chris




 -Original Message-
 From: Les Mizzell [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, November 29, 2001 8:36 PM
 To: CF-Talk
 Subject: Re: Verity - how to EXCLUDE a single file from the search?


  Les, can you change the file extension on this file to something that
 won't get indexed?


 I'm thinking of just moving the file in question to a directory outside
the
 index parameters


 Would be nice to know a way to do it when using the CFCOLLECTION tag
 though

 --
 Les Mizzell
 -
 -
 People need to realize that every time
 they mention about how fragile our
 planet is, it's like asking outer-space
 aliens to come invade us.
 Jack Handey
 -
 -


 
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists