-- Topica Digest --
CFmodule problems on linux
By [EMAIL PROTECTED]
Re: CFmodule problems on linux
By [EMAIL PROTECTED]
Re: CFmodule problems on linux
By [EMAIL PROTECTED]
Re: CFmodule problems on linux
By [EMAIL PROTECTED]
Re: CFmodule problems on linux
By [EMAIL PROTECTED]
Re: CFmodule problems on linux
By [EMAIL PROTECTED]
Problems with MX
By [EMAIL PROTECTED]
RE: SSL's Security and Fusebox
By [EMAIL PROTECTED]
Forum FB3? Open source?
By [EMAIL PROTECTED]
Re: Forum FB3? Open source?
By [EMAIL PROTECTED]
RE: Forum FB3? Open source?
By [EMAIL PROTECTED]
OT: ReplaceNoCase help?
By [EMAIL PROTECTED]
Re: OT: ReplaceNoCase help?
By [EMAIL PROTECTED]
RE: ReplaceNoCase help?
By [EMAIL PROTECTED]
RE: ReplaceNoCase help?
By [EMAIL PROTECTED]
RE: ReplaceNoCase help?
By [EMAIL PROTECTED]
RE: Forum FB3? Open source?
By [EMAIL PROTECTED]
Hal's "Scope Creep" on AListApart.com
By [EMAIL PROTECTED]
Re: Forum FB3? Open source?
By [EMAIL PROTECTED]
RE: Fusebox.org source code
By [EMAIL PROTECTED]
RE: Fusebox.org source code
By [EMAIL PROTECTED]
RE: SSL's Security and Fusebox Clarification
By [EMAIL PROTECTED]
Re: ReplaceNoCase help?
By [EMAIL PROTECTED]
Adalon - Sample fusebox projects
By [EMAIL PROTECTED]
------------------------------------------------------------
Date: Mon, 30 Sep 2002 12:41:51 +0100
From: Dave Phipps <[EMAIL PROTECTED]>
Subject: CFmodule problems on linux
Hi,
I have just created a small search form which I want to module in to the
navigation pages.
My search form is located in the root directory with my layout pages all
being in the layouts directory below the root.
When I CFmodule the root index.cfm file with the fuseaction set to
home.search on my WinXP dev box it all works and displays the search form
where I want it to.
However, migrating to the production Linux running CF 5 I cannot get the
same code to work. I just keep getting the following error:
Error Occurred While Processing Request
Error Diagnostic InformationTemplate file not found. HTTP/1.0 404 Object
Not FoundNote: If you wish to use an absolute template path (e.g.
TEMPLATE="/mypath/index.cfm") with CFINCLUDE then you must create a mapping
for the path using the ColdFusion Administrator. Using relative paths (e.g.
TEMPLATE="index.cfm" or TEMPLATE="../index.cfm") does not require the
creation of any special mappings. It is therefore recommended that you use
relative paths with CFINCLUDE whenever possible.
The code snippet I am using is like so:
<cfmodule template="../#request.self#" fuseaction="home.search"
suppresslayout="true">
This exact code works fine on my dev box but fails on the production Linux
server.
Any ideas?
Cheers
Dave
------------------------------
Date: Mon, 30 Sep 2002 21:55:51 +1000
From: "Lee Borkman" <[EMAIL PROTECTED]>
Subject: Re: CFmodule problems on linux
Hi Dave,
It doesn't actually look like the problem is wit the cfmodule call, but with a
cfinclude somewhere. Are you by any chance using absolute paths in any
cfincludes? Even if you aren't, it would be wise to check that the case of your
filenames exactly matches your cfinclude/cfmodule calls. That's always a
problem when going from Windows to Nix.
Let us know,
LeeBB
----- Original Message -----
From: Dave Phipps <[EMAIL PROTECTED]>
> Hi,
>
> I have just created a small search form which I want to module in to the
> navigation pages.
>
> My search form is located in the root directory with my layout pages all
> being in the layouts directory below the root.
>
> When I CFmodule the root index.cfm file with the fuseaction set to
> home.search on my WinXP dev box it all works and displays the search form
> where I want it to.
>
> However, migrating to the production Linux running CF 5 I cannot get the
> same code to work. I just keep getting the following error:
>
> Error Occurred While Processing Request
> Error Diagnostic InformationTemplate file not found. HTTP/1.0 404 Object
> Not FoundNote: If you wish to use an absolute template path (e.g.
> TEMPLATE="/mypath/index.cfm") with CFINCLUDE then you must create a mapping
> for the path using the ColdFusion Administrator. Using relative paths (e.g.
> TEMPLATE="index.cfm" or TEMPLATE="../index.cfm") does not require the
> creation of any special mappings. It is therefore recommended that you use
> relative paths with CFINCLUDE whenever possible.
>
>
> The code snippet I am using is like so:
>
> <cfmodule template="../#request.self#" fuseaction="home.search"
> suppresslayout="true">
>
> This exact code works fine on my dev box but fails on the production Linux
> server.
>
------------------------------
Date: Mon, 30 Sep 2002 13:18:25 +0100
From: Dave Phipps <[EMAIL PROTECTED]>
Subject: Re: CFmodule problems on linux
Hi Lee,
All the case-sensitive stuff seems to be fine. Here is the case that is
being called in the cfmodule:
<cfcase value="search">
<cfset attributes.suppresslayout="true">
<cfset XFA.search="home.search_results">
<cfinclude template="dsp_search_form.cfm">
</cfcase>
And this is the module being called from layouts/dsp_nav_header.cfm.
<cfmodule template="../#request.self#" fuseaction="home.search"
suppresslayout="true">
I can't seem to fathom why it is falling over on the linux box. There
doesn't appear to be anything out of place.
At 21:55 9/30/2002 +1000, you wrote:
>Hi Dave,
>
>It doesn't actually look like the problem is wit the cfmodule call, but with a
>cfinclude somewhere. Are you by any chance using absolute paths in any
>cfincludes? Even if you aren't, it would be wise to check that the case
>of your
>filenames exactly matches your cfinclude/cfmodule calls. That's always a
>problem when going from Windows to Nix.
>
>Let us know,
>LeeBB
>
>----- Original Message -----
>From: Dave Phipps <[EMAIL PROTECTED]>
>
> > Hi,
> >
> > I have just created a small search form which I want to module in to the
> > navigation pages.
> >
> > My search form is located in the root directory with my layout pages all
> > being in the layouts directory below the root.
> >
> > When I CFmodule the root index.cfm file with the fuseaction set to
> > home.search on my WinXP dev box it all works and displays the search form
> > where I want it to.
> >
> > However, migrating to the production Linux running CF 5 I cannot get the
> > same code to work. I just keep getting the following error:
> >
> > Error Occurred While Processing Request
> > Error Diagnostic InformationTemplate file not found. HTTP/1.0 404 Object
> > Not FoundNote: If you wish to use an absolute template path (e.g.
> > TEMPLATE="/mypath/index.cfm") with CFINCLUDE then you must create a mapping
> > for the path using the ColdFusion Administrator. Using relative paths (e.g.
> > TEMPLATE="index.cfm" or TEMPLATE="../index.cfm") does not require the
> > creation of any special mappings. It is therefore recommended that you use
> > relative paths with CFINCLUDE whenever possible.
> >
> >
> > The code snippet I am using is like so:
> >
> > <cfmodule template="../#request.self#" fuseaction="home.search"
> > suppresslayout="true">
> >
> > This exact code works fine on my dev box but fails on the production Linux
> > server.
> >
>
>
>__________________________________________/Fusebox Conference!
>
> Sign up for the Fusebox Conference today!
> October 26th & 27th: Orlando, FL, just before MACR DevCon.
> 2 jam-packed days, 15 speakers in three tracks, World Fuseball
> Championship
> http://www.fusebox.org/index.cfm?fuseaction=conference.main
>
------------------------------
Date: Mon, 30 Sep 2002 22:20:50 +1000
From: "Lee Borkman" <[EMAIL PROTECTED]>
Subject: Re: CFmodule problems on linux
And the line showing the error is the cfmodule call? Is that right? I don't
want to harp on the point, but have you checked the case of all your fbx_ files?
The fusebox.org core likes "fbx_Settings.cfm", etc, whereas FEX expects
"fbx_settings.cfm".
Can you confirm that the error is in the cfmodule call by commenting it out?
Sorry if I'm being obvious ;-)
See ya,
LeeBB
----- Original Message -----
From: Dave Phipps <[EMAIL PROTECTED]>
> Hi Lee,
>
> All the case-sensitive stuff seems to be fine. Here is the case that is
> being called in the cfmodule:
>
> <cfcase value="search">
> <cfset attributes.suppresslayout="true">
> <cfset XFA.search="home.search_results">
> <cfinclude template="dsp_search_form.cfm">
> </cfcase>
>
> And this is the module being called from layouts/dsp_nav_header.cfm.
>
> <cfmodule template="../#request.self#" fuseaction="home.search"
> suppresslayout="true">
>
...
> At 21:55 9/30/2002 +1000, you wrote:
> >Hi Dave,
> >
> >It doesn't actually look like the problem is wit the cfmodule call, but with
a
> >cfinclude somewhere. Are you by any chance using absolute paths in any
> >cfincludes? Even if you aren't, it would be wise to check that the case
> >of your
> >filenames exactly matches your cfinclude/cfmodule calls. That's always a
> >problem when going from Windows to Nix.
> >
...
------------------------------
Date: Mon, 30 Sep 2002 13:34:08 +0100
From: Dave Phipps <[EMAIL PROTECTED]>
Subject: Re: CFmodule problems on linux
If I upload the search form page do you think it might have worked!! What
a dumba**. I forgot to upload the search form!!
I need some more coffee!!
Cheers for the help.
Dave
The default layout is called without the search form and everything is
fine. The only page I have
At 22:20 9/30/2002 +1000, you wrote:
>And the line showing the error is the cfmodule call? Is that right? I don't
>want to harp on the point, but have you checked the case of all your fbx_
>files?
>The fusebox.org core likes "fbx_Settings.cfm", etc, whereas FEX expects
>"fbx_settings.cfm".
>
>Can you confirm that the error is in the cfmodule call by commenting it out?
>
>Sorry if I'm being obvious ;-)
>
>See ya,
>LeeBB
>
>----- Original Message -----
>From: Dave Phipps <[EMAIL PROTECTED]>
>
>
>
> > Hi Lee,
> >
> > All the case-sensitive stuff seems to be fine. Here is the case that is
> > being called in the cfmodule:
> >
> > <cfcase value="search">
> > <cfset attributes.suppresslayout="true">
> > <cfset XFA.search="home.search_results">
> > <cfinclude template="dsp_search_form.cfm">
> > </cfcase>
> >
> > And this is the module being called from layouts/dsp_nav_header.cfm.
> >
> > <cfmodule template="../#request.self#" fuseaction="home.search"
> > suppresslayout="true">
> >
>...
>
> > At 21:55 9/30/2002 +1000, you wrote:
> > >Hi Dave,
> > >
> > >It doesn't actually look like the problem is wit the cfmodule call,
> but with
>a
> > >cfinclude somewhere. Are you by any chance using absolute paths in any
> > >cfincludes? Even if you aren't, it would be wise to check that the case
> > >of your
> > >filenames exactly matches your cfinclude/cfmodule calls. That's always a
> > >problem when going from Windows to Nix.
> > >
>...
>
>
>__________________________________________/Fusebox Conference!
>
> Sign up for the Fusebox Conference today!
> October 26th & 27th: Orlando, FL, just before MACR DevCon.
> 2 jam-packed days, 15 speakers in three tracks, World Fuseball
> Championship
> http://www.fusebox.org/index.cfm?fuseaction=conference.main
>
------------------------------
Date: Mon, 30 Sep 2002 22:37:04 +1000
From: "Lee Borkman" <[EMAIL PROTECTED]>
Subject: Re: CFmodule problems on linux
Yeah. That's the *other* problem when going from Windows to Unix. Maybe you
should try some actual caffeine in your coffee.
Bye now,
Lee
----- Original Message -----
From: Dave Phipps <[EMAIL PROTECTED]>
> If I upload the search form page do you think it might have worked!! What
> a dumba**. I forgot to upload the search form!!
>
... it would be wise to check that the case
> > > >of your
> > > >filenames exactly matches your cfinclude/cfmodule calls. That's always a
> > > >problem when going from Windows to Nix.
> > > >
------------------------------
Date: Mon, 30 Sep 2002 09:30:55 -0400
From: "Mike Elmalem" <[EMAIL PROTECTED]>
Subject: Problems with MX
This is a multi-part message in MIME format.
------=_NextPart_000_0022_01C26864.1363A170
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 8bit
Hello All,
I am having a little bit of a problem getting a small site to work on an MX machine on
a shared hosting environment.
The sever has J2EE sessions enabled. I keep getting errors of pages not found but
when I look at the url and in the directory those pages are there.
Another strange thing is my dsn variables and siteroot variables that I set in
application.cfm don't seem to be working properly.
Has anyone experience any of these issues?
Thanks
Mike
------=_NextPart_000_0022_01C26864.1363A170
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: 8bit
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2800.1106" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>Hello All,</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>I am having a little bit of a problem getting a
small site to work on an MX machine on a shared hosting
environment.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>The sever has J2EE sessions enabled. I keep
getting errors of pages not found but when I look at the url and in the
directory those pages are there.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Another strange thing is my dsn variables and
siteroot variables that I set in application.cfm don't seem to be working
properly.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Has anyone experience any of these
issues?</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Thanks </FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Mike</FONT></DIV>
</BODY></HTML>
------=_NextPart_000_0022_01C26864.1363A170--
------------------------------
Date: Mon, 30 Sep 2002 16:32:18 +0300
From: "Tero Pikala" <[EMAIL PROTECTED]>
Subject: RE: SSL's Security and Fusebox
Maybe following thing would be good for you:
1. put all your code into separate directory not under webroot
2. create mapping into that directory in ColdFusion admin
3. create index.cfm file into webroot that includes correct fusebox core file
from directory created in step 1.
4. add some intelligent code into your index.cfm file that for example only allows
un-secure access to few specific files that you don't want to secure.
Now you can have your application in one place and only those fuses that can be
accessed without SSL are accessible. As a bonus you don't have to worry about
people accessing those files directly since there isn't url that "sees" them.
Tero Pikala
-----Original Message-----
From: Chris Brinker [mailto:[EMAIL PROTECTED]]
Sent: 27. syyskuuta 2002 0:59
To: [EMAIL PROTECTED]
Subject: SSL's Security and Fusebox
I am attempting to get fusebox methodology implemented at work, and my boss
brought up an interesting question.
"How do you implement SSL in such an abstract version of the file includes?"
I could only think of having an https:// version of FB3 running seperately
however it would lead to some concerns as to duplication of fuses and code
synchranization.
Anyone have a good solution to some of an app being SSL'd but some of it
not?
Thanks in advance,
Chris Brinker
_________________________________________________________________
Send and receive Hotmail on your mobile device: http://mobile.msn.com
__________________________________________/Fusebox Conference!
Sign up for the Fusebox Conference today!
October 26th & 27th: Orlando, FL, just before MACR DevCon.
2 jam-packed days, 15 speakers in three tracks, World Fuseball
Championship
http://www.fusebox.org/index.cfm?fuseaction=conference.main
------------------------------
Date: Mon, 30 Sep 2002 09:13:41 -0500
From: "Chris Brinker" <[EMAIL PROTECTED]>
Subject: Forum FB3? Open source?
Hello,
I was just wondering if anyone has an open source forum application based
in Fusebox 3. The best I have found so far is OpenForums, the only downside
being that it is does not readily support MySQL and that just happens to be
the DB that my company is using.
Before I go reinventing the wheel I figured I'd ask and see if any one had
one done already?
Thanks,
Chris Brinker
_________________________________________________________________
MSN Photos is the easiest way to share and print your photos:
http://photos.msn.com/support/worldwide.aspx
------------------------------
Date: Mon, 30 Sep 2002 16:41:38 +0200
From: "Roeligan" <[EMAIL PROTECTED]>
Subject: Re: Forum FB3? Open source?
i think they will be supporting MySQL soon. Anywayz they will when the new
version comes out (which supports queries from queries)
----- Original Message -----
From: "Chris Brinker" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, September 30, 2002 4:13 PM
Subject: Forum FB3? Open source?
> Hello,
> I was just wondering if anyone has an open source forum application
based
> in Fusebox 3. The best I have found so far is OpenForums, the only
downside
> being that it is does not readily support MySQL and that just happens to
be
> the DB that my company is using.
>
> Before I go reinventing the wheel I figured I'd ask and see if any one had
> one done already?
>
> Thanks,
> Chris Brinker
>
> _________________________________________________________________
> MSN Photos is the easiest way to share and print your photos:
> http://photos.msn.com/support/worldwide.aspx
>
>
> __________________________________________/Fusebox Conference!
>
> Sign up for the Fusebox Conference today!
> October 26th & 27th: Orlando, FL, just before MACR DevCon.
> 2 jam-packed days, 15 speakers in three tracks, World Fuseball
> Championship
> http://www.fusebox.org/index.cfm?fuseaction=conference.main
>
>
------------------------------
Date: Mon, 30 Sep 2002 11:35:10 -0400
From: <[EMAIL PROTECTED]>
Subject: RE: Forum FB3? Open source?
> Before I go reinventing the wheel I figured I'd ask and see
> if any one had one done already?
Also don't forget to consider helping out the OpenForums project by
modifying their code to be mySQL compliant. Rewriting the SQL parts of
OpenForums shouldn't be that hard to do, and definitely less work than
completely re-inventing the wheel. Then just donate the mySQL compliant
code back to the project and the next guy in your shoes benefits also.
Sometimes people who like to use Open Source / free apps don't consider the
opportunities (responsibilities?) they have to give back to the community
they draw from. You may not have the time, and that's ok too, but at least
consider that option. :)
-Cameron
-----------------
Cameron Childress
Sumo Consulting Inc.
---
cell: 678-637-5072
aim: cameroncf
email: [EMAIL PROTECTED]
> -----Original Message-----
> From: Chris Brinker [mailto:[EMAIL PROTECTED]]
> Sent: Monday, September 30, 2002 10:14 AM
> To: [EMAIL PROTECTED]
> Subject: Forum FB3? Open source?
>
>
> Hello,
> I was just wondering if anyone has an open source forum
> application based
> in Fusebox 3. The best I have found so far is OpenForums, the
> only downside
> being that it is does not readily support MySQL and that just
> happens to be
> the DB that my company is using.
>
> Before I go reinventing the wheel I figured I'd ask and see
> if any one had
> one done already?
>
> Thanks,
> Chris Brinker
>
> _________________________________________________________________
> MSN Photos is the easiest way to share and print your photos:
> http://photos.msn.com/support/worldwide.aspx
>
>
> __________________________________________/Fusebox Conference!
>
> Sign up for the Fusebox Conference today!
> October 26th & 27th: Orlando, FL, just before MACR DevCon.
> 2 jam-packed days, 15 speakers in three tracks, World Fuseball
> Championship
> http://www.fusebox.org/index.cfm?fuseaction=conference.main
>
>
------------------------------
Date: Mon, 30 Sep 2002 17:04:29 +0100
From: Dave Phipps <[EMAIL PROTECTED]>
Subject: OT: ReplaceNoCase help?
Hi,
Sorry for the OT post but I can't seem to send to the usual channels today
- email playing up.
I am trying to remove a body tag that appears in a verity search and throws
the wrong background image in. I am trying the following but to no avail:
#ReplaceNoCase(summary, "<body
background='http://www.methodist.org.uk/flame/homepics/back.gif'
bgcolor='#ffffff'>", " ")#
Can any tell me how best to remove all body tags and any attributes from a
piece of verity generated text?
If I could remove all opening and closing body tags then this would really
solve the problem.
Any suggestions?
MTIA
Dave
------------------------------
Date: Mon, 30 Sep 2002 19:01:47 +0300
From: Erki Esken <[EMAIL PROTECTED]>
Subject: Re: OT: ReplaceNoCase help?
> If I could remove all opening and closing body tags then this would
> really solve the problem. Any suggestions?
Regular expressions! This sould replace both starting and ending tags:
REReplaceNoCase(summary, "</?body[^>]*>", "", "ALL")
.erki
------------------------------
Date: Mon, 30 Sep 2002 17:04:35 +0100
From: "Tim Blair" <[EMAIL PROTECTED]>
Subject: RE: ReplaceNoCase help?
Dave,
There were a couple of replies in the cf-dev list...
rereplacenocase(summary, "<[/]{0,}body[^>]*>", "", "ALL")
Tim.
-------------------------------------------------------
Tim Blair
Web Application Engineer, Rawnet Limited
Direct Phone : +44 (0) 1344 393 441
Switchboard : +44 (0) 1344 393 040
-------------------------------------------------------
rawnet ltd
Atrium Court
Bracknell [EMAIL PROTECTED]
Berkshire Tel : +44 (0) 1344 393 040
RG12 1BW, UK http://www.rawnet.com
-------------------------------------------------------
This message may contain information which is legally
privileged and/or confidential. If you are not the
intended recipient, you are hereby notified that any
unauthorised disclosure, copying, distribution or use
of this information is strictly prohibited. Such
notification notwithstanding, any comments, opinions,
information or conclusions expressed in this message
are those of the originator, not of rawnet limited,
unless otherwise explicitly and independently indicated
by an authorised representative of rawnet limited.
-------------------------------------------------------
> -----Original Message-----
> From: Dave Phipps [mailto:[EMAIL PROTECTED]]
> Sent: 30 September 2002 17:04
> To: [EMAIL PROTECTED]
> Subject: OT: ReplaceNoCase help?
>
>
> Hi,
>
> Sorry for the OT post but I can't seem to send to the usual
> channels today
>
> I am trying to remove a body tag that appears in a verity
> search and throws
> the wrong background image in. I am trying the following but
> to no avail:
>
> #ReplaceNoCase(summary, "<body
> background='http://www.methodist.org.uk/flame/homepics/back.gif'
> bgcolor='#ffffff'>", " ")#
>
> Can any tell me how best to remove all body tags and any
> attributes from a
> piece of verity generated text?
>
> If I could remove all opening and closing body tags then this
> would really
> solve the problem.
>
> Any suggestions?
>
> MTIA
>
> Dave
>
>
> __________________________________________/Fusebox Conference!
>
> Sign up for the Fusebox Conference today!
> October 26th & 27th: Orlando, FL, just before MACR DevCon.
> 2 jam-packed days, 15 speakers in three tracks, World Fuseball
> Championship
> http://www.fusebox.org/index.cfm?fuseaction=conference.main
>
>
>
>
------------------------------
Date: Mon, 30 Sep 2002 09:11:48 -0700
From: "Barney Boisvert" <[EMAIL PROTECTED]>
Subject: RE: ReplaceNoCase help?
This will eliminate all open or close body tags. You could easily use
REreplaceNoCase, but I'd imagine this is probably faster.
REreplaceNoCase(summary, "</?body[^>]*>", "", "all")
In english, it matches a '<', followed by an optional '/', followed by the
word 'body' (in any case, because of the function), followed by any number
of non-'>' characters, followed by a '>' character, and replaces it with
nothing.
barneyb
-----Original Message-----
From: Dave Phipps [mailto:[EMAIL PROTECTED]]
Sent: Monday, September 30, 2002 9:04 AM
To: [EMAIL PROTECTED]
Subject: OT: ReplaceNoCase help?
Hi,
Sorry for the OT post but I can't seem to send to the usual channels today
- email playing up.
I am trying to remove a body tag that appears in a verity search and throws
the wrong background image in. I am trying the following but to no avail:
#ReplaceNoCase(summary, "<body
background='http://www.methodist.org.uk/flame/homepics/back.gif'
bgcolor='#ffffff'>", " ")#
Can any tell me how best to remove all body tags and any attributes from a
piece of verity generated text?
If I could remove all opening and closing body tags then this would really
solve the problem.
Any suggestions?
MTIA
Dave
__________________________________________/Fusebox Conference!
Sign up for the Fusebox Conference today!
October 26th & 27th: Orlando, FL, just before MACR DevCon.
2 jam-packed days, 15 speakers in three tracks, World Fuseball
Championship
http://www.fusebox.org/index.cfm?fuseaction=conference.main
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.391 / Virus Database: 222 - Release Date: 9/19/2002
------------------------------
Date: Mon, 30 Sep 2002 17:30:04 +0100
From: Dave Phipps <[EMAIL PROTECTED]>
Subject: RE: ReplaceNoCase help?
Thanks everyone,
I posted to the cf-dev list but I never received the mail I sent and
certainly got no replies. What's strange is I had some stuff from that
list this morning and now I get nothing. I think I need to look into the
problem.
Just for info:
The reason my email is all screwy is because it was being run on an Apple
Xserve which since it was colocated in London has continually crashed for
no reason. After 4 weeks Apple finally sent an engineer to replace the
processor and logic board. He then took the 2500 GBP piece of the latest
technology and promptly broke the pins off the processor - twice!!
Apple now will only give a refund on the server and service contract not on
the 400-1000 GBP of time wasted travelling to London on several occasions
to apply software upgrades and the inconvenience of 12 hours of downtime
whilst email was transferred over to a Cobalt.
If you are thinking of buying an Xserve - think twice and buy 3 Cobalts
instead.
HTH
Dave
At 17:04 9/30/2002 +0100, you wrote:
>Dave,
>
>There were a couple of replies in the cf-dev list...
>
>rereplacenocase(summary, "<[/]{0,}body[^>]*>", "", "ALL")
>
>Tim.
>
>-------------------------------------------------------
>Tim Blair
>Web Application Engineer, Rawnet Limited
>Direct Phone : +44 (0) 1344 393 441
>Switchboard : +44 (0) 1344 393 040
>-------------------------------------------------------
>rawnet ltd
>Atrium Court
>Bracknell [EMAIL PROTECTED]
>Berkshire Tel : +44 (0) 1344 393 040
>RG12 1BW, UK http://www.rawnet.com
>-------------------------------------------------------
>This message may contain information which is legally
>privileged and/or confidential. If you are not the
>intended recipient, you are hereby notified that any
>unauthorised disclosure, copying, distribution or use
>of this information is strictly prohibited. Such
>notification notwithstanding, any comments, opinions,
>information or conclusions expressed in this message
>are those of the originator, not of rawnet limited,
>unless otherwise explicitly and independently indicated
>by an authorised representative of rawnet limited.
>-------------------------------------------------------
>
>
>
>
> > -----Original Message-----
> > From: Dave Phipps [mailto:[EMAIL PROTECTED]]
> > Sent: 30 September 2002 17:04
> > To: [EMAIL PROTECTED]
> > Subject: OT: ReplaceNoCase help?
> >
> >
> > Hi,
> >
> > Sorry for the OT post but I can't seem to send to the usual
> > channels today
>
> >
> > I am trying to remove a body tag that appears in a verity
> > search and throws
> > the wrong background image in. I am trying the following but
> > to no avail:
> >
> > #ReplaceNoCase(summary, "<body
> > background='http://www.methodist.org.uk/flame/homepics/back.gif'
> > bgcolor='#ffffff'>", " ")#
> >
> > Can any tell me how best to remove all body tags and any
> > attributes from a
> > piece of verity generated text?
> >
> > If I could remove all opening and closing body tags then this
> > would really
> > solve the problem.
> >
> > Any suggestions?
> >
> > MTIA
> >
> > Dave
> >
> >
> > __________________________________________/Fusebox Conference!
> >
> > Sign up for the Fusebox Conference today!
> > October 26th & 27th: Orlando, FL, just before MACR DevCon.
> > 2 jam-packed days, 15 speakers in three tracks, World Fuseball
> > Championship
> > http://www.fusebox.org/index.cfm?fuseaction=conference.main
> >
> >
> >
> >
>
>
>__________________________________________/Fusebox Conference!
>
> Sign up for the Fusebox Conference today!
> October 26th & 27th: Orlando, FL, just before MACR DevCon.
> 2 jam-packed days, 15 speakers in three tracks, World Fuseball
> Championship
> http://www.fusebox.org/index.cfm?fuseaction=conference.main
>
------------------------------
Date: Mon, 30 Sep 2002 11:33:56 -0500
From: "Chris Brinker" <[EMAIL PROTECTED]>
Subject: RE: Forum FB3? Open source?
Well,
I did indeed get and install and use the Open Forum project. However I ran
into (as others have as well) a large problem with dropping the circuit into
my app. I was wondering from anyone that has used this project before, have
you had any problems with paths? It seems to be that a very large amount of
path modifications are necessary to get this to work.
Thanks,
Chris
> > Before I go reinventing the wheel I figured I'd ask and see
> > if any one had one done already?
>
>Also don't forget to consider helping out the OpenForums project by
>modifying their code to be mySQL compliant. Rewriting the SQL parts of
>OpenForums shouldn't be that hard to do, and definitely less work than
>completely re-inventing the wheel. Then just donate the mySQL compliant
>code back to the project and the next guy in your shoes benefits also.
>
>Sometimes people who like to use Open Source / free apps don't consider the
>opportunities (responsibilities?) they have to give back to the community
>they draw from. You may not have the time, and that's ok too, but at least
>consider that option. :)
>
>-Cameron
_________________________________________________________________
Send and receive Hotmail on your mobile device: http://mobile.msn.com
------------------------------
Date: Mon, 30 Sep 2002 22:38:54 +0300
From: "Erki Esken" <[EMAIL PROTECTED]>
Subject: Hal's "Scope Creep" on AListApart.com
Just noticed that latest "A List Apart" edition has Hal's
"Scope Creep" article in it:
http://www.alistapart.com/stories/scopecreep/
Also read the discussion:
http://www.alistapart.com/stories/scopecreep/discuss/
.erki
------------------------------
Date: Mon, 30 Sep 2002 20:13:21 -0500
From: Chris Montgomery <[EMAIL PROTECTED]>
Subject: Re: Forum FB3? Open source?
Howdy Chris,
Monday, September 30, 2002, 11:33:56 AM, Chris Brinker wrote:
CB> I did indeed get and install and use the Open Forum project. However I ran
CB> into (as others have as well) a large problem with dropping the circuit into
CB> my app. I was wondering from anyone that has used this project before, have
CB> you had any problems with paths? It seems to be that a very large amount of
CB> path modifications are necessary to get this to work.
I didn't need to do any path mods because I call it with an absolute URL.
Seems to work fine that way.
And as far as using mySql, here's what the install.txt file says:
NOTE: mySQL support is pending, but will not be complete until the 4.1
release, as openForums requires the use of subselects.
Chris Montgomery monty @ airtightweb.com
--
Airtight Web Services http://www.airtightweb.com
Web Development, Web Project Management, Software Sales
210-490-3249/888-745-7603
------------------------------
Date: Tue, 1 Oct 2002 01:57:08 +0000
From: Ahmadie Thaha <[EMAIL PROTECTED]>
Subject: RE: Fusebox.org source code
Dear Erik, I have the book. But, why you are worry to distribute the
fusebox.org source code, and prefere some one to buy a book with it's
source code? Is there any secret code in the fusebox.org that no one of
us can read it?
Erik Voldengen wrote:
> No, sorry. Nat and Jeff's book has a companion site with
> full source code, though. Maybe you could take a look at
> that. www.fusium.com/go/book if you want more information.
>
> -Erik
>
>
> > -----Original Message-----
> > From: Ahmadie Thaha [mailto:[EMAIL PROTECTED]]
> > Sent: Sunday, September 29, 2002 5:04 AM
> > To: [EMAIL PROTECTED]
> > Subject: Fusebox.org source code
> >
> >
> > Is there a link to get fusebox.org source code?
> >
> >
> > __________________________________________/Fusebox Conference!
> >
> > Sign up for the Fusebox Conference today!
> > October 26th & 27th: Orlando, FL, just before MACR DevCon.
> > 2 jam-packed days, 15 speakers in three tracks, World Fuseball
> > Championship
> > http://www.fusebox.org/index.cfm?fuseaction=conference.main
> >
> >
> >
>
>
>
------------------------------
Date: Mon, 30 Sep 2002 20:10:21 -0700
From: "Nat Papovich" <[EMAIL PROTECTED]>
Subject: RE: Fusebox.org source code
The fusebox.org site is an amalgamation of a couple year's worth of a couple
developers each adding spices to the pot. There is nothing special hidden,
no secret code. It would just be an anti-learning tool if you were to review
it seeking advice about how to build Fusebox apps (kinda like the petstore
app that MACR made).
Also, the site runs on MSSQL, and distributing it with the db would be very
bandwidth-intensive.
NAT
> -----Original Message-----
> From: Ahmadie Thaha [mailto:[EMAIL PROTECTED]]
> Sent: Monday, September 30, 2002 6:57 PM
> To: [EMAIL PROTECTED]
> Subject: RE: Fusebox.org source code
>
>
> Dear Erik, I have the book. But, why you are worry to distribute the
> fusebox.org source code, and prefere some one to buy a book with it's
> source code? Is there any secret code in the fusebox.org that no one of
> us can read it?
>
>
> Erik Voldengen wrote:
> > No, sorry. Nat and Jeff's book has a companion site with
> > full source code, though. Maybe you could take a look at
> > that. www.fusium.com/go/book if you want more information.
> >
> > -Erik
> >
> >
> > > -----Original Message-----
> > > From: Ahmadie Thaha [mailto:[EMAIL PROTECTED]]
> > > Sent: Sunday, September 29, 2002 5:04 AM
> > > To: [EMAIL PROTECTED]
> > > Subject: Fusebox.org source code
> > >
> > >
> > > Is there a link to get fusebox.org source code?
> > >
> > >
> > > __________________________________________/Fusebox Conference!
> > >
> > > Sign up for the Fusebox Conference today!
> > > October 26th & 27th: Orlando, FL, just before MACR DevCon.
> > > 2 jam-packed days, 15 speakers in three tracks, World Fuseball
> > > Championship
> > > http://www.fusebox.org/index.cfm?fuseaction=conference.main
> > >
> > >
> > >
> >
> >
> >
>
>
> __________________________________________/Fusebox Conference!
>
> Sign up for the Fusebox Conference today!
> October 26th & 27th: Orlando, FL, just before MACR DevCon.
> 2 jam-packed days, 15 speakers in three tracks, World Fuseball
> Championship
> http://www.fusebox.org/index.cfm?fuseaction=conference.main
>
>
>
------------------------------
Date: Tue, 1 Oct 2002 11:20:33 +0800
From: "Kay Smoljak" <[EMAIL PROTECTED]>
Subject: RE: SSL's Security and Fusebox Clarification
Hi Chris,
Sorry I didn't get around to posting this sooner... this is how we
operate with SSL:
If the client has their own certificate - ie https://www.client.com - I
just use a variable in my layout files, links etc to switch between
secure and non-secure - ie
<img src="<cfif
attributes.isSecure>#attributes.sslBaseURL#</cfif>image.jpg">
If the client is a cheapskate and are using a shared ssl cert - ie
https://www.someoneelse.com/client/ - they generally have a folder
outside of their web root which links to the subdirectory of the SSL
domain (please excuse my ignorance of the exact IIS terminology). This
is where my method shines - my clients are obviously all cheapskates!
Shared cert directory structure would have:
clientroot/
ssl
www
odbc
etc.
Normal web files would go in 'www', secure is in 'ssl'.
The tricky bit that Lee helped me work out a while ago (thanks Leebles!)
is to cfinclude the core file from the ssl dir - ie have an index.cfm in
the ssl dir with <cfinclude template="../www/index.cfm">. Then
everything works like magic again, no worries about duplicating settings
etc.
The only thing you have to watch out for is that your sessions etc are
not carried across - IIS thinks you are on a separate server once you
switch domain names. I've found that if you have all your secure stuff
in a popup window, and the main window on your normal domain stays open,
you can reference sessions in the popup window as long as cookies are
enabled. Also works with a "target="_blank" window if you're nice to the
non-javascript crowd, but then you have to keep track of which method
they used so you can close windows after yourself etc.
Hope that helps,
Kay.
______________________________________________________
Kay Smoljak Web Developer PerthWeb Pty Ltd
Level 9/105 St George's Tc - Perth - Western Australia
Ph: (08) 9226 1366 Fax: (08) 9226 1375
www.perthweb.com.au developer.perthweb.com.au
> -----Original Message-----
> From: Chris Brinker [mailto:[EMAIL PROTECTED]]
> Sent: Friday, 27 September 2002 10:56 AM
> To: [EMAIL PROTECTED]
> Subject: RE: SSL's Security and Fusebox Clarification
>
>
> The way that SSL's are currently implemented on our websites
> is along the
> lines of a single folder lets say website.com Within which
> resides all CFM's
> about the site (much like I assume every website out there is
> layed out)
> within which we have a /secure folder inside which reside
> files that are
> "SSL Secured" and as such we address then through the
https:// protocol.
Cert's are used and the ever popular "Padlock" appears on the browser.
As far as I have collected the only file in the "FB3" methodology that
officially gets executed is the index.cfm in the root directory. I guess
the
question would be then, how can you sometimes secure index.cfm with SSL
and
at other times, not secure it?
Maybe I am way off here, but any help you could give would make life
easier
over here :)
Thanks In advance,
Chris Brinker
_________________________________________________________________
Send and receive Hotmail on your mobile device: http://mobile.msn.com
__________________________________________/Fusebox Conference!
Sign up for the Fusebox Conference today!
October 26th & 27th: Orlando, FL, just before MACR DevCon.
2 jam-packed days, 15 speakers in three tracks, World Fuseball
Championship
http://www.fusebox.org/index.cfm?fuseaction=conference.main
------------------------------
Date: Tue, 1 Oct 2002 00:30:05 -0400
From: "CFEditor" <[EMAIL PROTECTED]>
Subject: Re: ReplaceNoCase help?
Dave,
If you have RegEx questions, you might want to try the CF-RegEx list or CF-Talk on
House of Fusion. I've seen a lot of them answered there.
Judith Dinowitz
Mistress of the House
House of Fusion
http://www.houseoffusion.com
> Thanks everyone,
>
> I posted to the cf-dev list but I never received the mail I sent and
> certainly got no replies. What's strange is I had some stuff from that
> list this morning and now I get nothing. I think I need to look into the
> problem.
>
> Just for info:
>
> The reason my email is all screwy is because it was being run on an Apple
> Xserve which since it was colocated in London has continually crashed for
> no reason. After 4 weeks Apple finally sent an engineer to replace the
> processor and logic board. He then took the 2500 GBP piece of the latest
> technology and promptly broke the pins off the processor - twice!!
>
> Apple now will only give a refund on the server and service contract not on
> the 400-1000 GBP of time wasted travelling to London on several occasions
> to apply software upgrades and the inconvenience of 12 hours of downtime
> whilst email was transferred over to a Cobalt.
>
> If you are thinking of buying an Xserve - think twice and buy 3 Cobalts
> instead.
>
> HTH
>
> Dave
>
>
> At 17:04 9/30/2002 +0100, you wrote:
> >Dave,
> >
> >There were a couple of replies in the cf-dev list...
> >
> >rereplacenocase(summary, "<[/]{0,}body[^>]*>", "", "ALL")
> >
> >Tim.
> >
------------------------------
Date: Tue, 1 Oct 2002 12:27:36 +0200
From: "Stefan d. Koning" <[EMAIL PROTECTED]>
Subject: Adalon - Sample fusebox projects
This is a multi-part message in MIME format.
------_=_NextPart_001_01C26935.29136ABE
Content-Type: text/plain;
charset="us-ascii"
Content-Transfer-Encoding: 8bit
Can anybody tell me where I can find and download more sample fusebox
project designs in Adalon? The default sample project only consists of 1
circuit, and I'm very interested how an entire website, using multiple
circuits, is to be designed in Adalon.
Thanks,
Stefan de Koning
-----Original Message-----
From: Phil Broussard [mailto:[EMAIL PROTECTED]]
Sent: vrijdag 27 september 2002 16:57
To: [EMAIL PROTECTED]
Subject: Adalon
So what does everyone think of Adalon? Any pro's or con's I should know
about?
http://www.synthis.com/products/adalon/overview.jsp
Phillip Broussard
http://www.fillworks.com/
http://www.loungeroyale.com/
00101010101111110010101000001101
00001010001000000010110100101101
Decoder Ring (http://www.loungeroyale.com/experiences/coderring/)
------_=_NextPart_001_01C26935.29136ABE
Content-Type: text/html;
charset="us-ascii"
Content-Transfer-Encoding: 8bit
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=us-ascii">
<meta name=Generator content="Microsoft Word 10 (filtered)">
<style>
<!--
/* Font Definitions */
@font-face
{font-family:Tahoma;
panose-1:2 11 6 4 3 5 4 4 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin:0in;
margin-bottom:.0001pt;
font-size:12.0pt;
font-family:"Times New Roman";}
a:link, span.MsoHyperlink
{color:blue;
text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
{color:blue;
text-decoration:underline;}
pre
{margin:0in;
margin-bottom:.0001pt;
font-size:10.0pt;
font-family:"Courier New";}
span.EmailStyle18
{font-family:Arial;
color:navy;}
@page Section1
{size:8.5in 11.0in;
margin:1.0in 1.25in 1.0in 1.25in;}
div.Section1
{page:Section1;}
-->
</style>
</head>
<body bgcolor=white lang=EN-US link=blue vlink=blue>
<div class=Section1>
<p class=MsoNormal><font size=2 color=navy face=Arial><span style='font-size:
10.0pt;font-family:Arial;color:navy'> </span></font></p>
<p class=MsoNormal><font size=2 color=navy face=Arial><span style='font-size:
10.0pt;font-family:Arial;color:navy'>Can anybody tell me where I can find and
download more sample fusebox project designs in Adalon? The default sample
project only consists of 1 circuit, and I’m very interested how an entire
website, using multiple circuits, is to be designed in Adalon.</span></font></p>
<p class=MsoNormal><font size=2 color=navy face=Arial><span style='font-size:
10.0pt;font-family:Arial;color:navy'> </span></font></p>
<p class=MsoNormal><font size=2 color=navy face=Arial><span style='font-size:
10.0pt;font-family:Arial;color:navy'>Thanks,</span></font></p>
<p class=MsoNormal><font size=2 color=navy face=Arial><span style='font-size:
10.0pt;font-family:Arial;color:navy'>Stefan de Koning</span></font></p>
<p class=MsoNormal><font size=2 color=navy face=Arial><span style='font-size:
10.0pt;font-family:Arial;color:navy'> </span></font></p>
<p class=MsoNormal><font size=2 color=navy face=Arial><span style='font-size:
10.0pt;font-family:Arial;color:navy'> </span></font></p>
<p class=MsoNormal style='margin-left:.5in'><font size=2 face=Tahoma><span
style='font-size:10.0pt;font-family:Tahoma'>-----Original Message-----<br>
<b><span style='font-weight:bold'>From:</span></b> Phil Broussard
[mailto:[EMAIL PROTECTED]] <br>
<b><span style='font-weight:bold'>Sent:</span></b> vrijdag 27 september 2002
16:57<br>
<b><span style='font-weight:bold'>To:</span></b> [EMAIL PROTECTED]<br>
<b><span style='font-weight:bold'>Subject:</span></b> Adalon</span></font></p>
<p class=MsoNormal style='margin-left:.5in'><font size=3 face="Times New Roman"><span
style='font-size:12.0pt'> </span></font></p>
<div>
<p class=MsoNormal style='margin-left:.5in'><font size=2 face=Arial><span
style='font-size:10.0pt;font-family:Arial'>So what does everyone think of
Adalon? Any pro's or con's I should know about?</span></font></p>
</div>
<div>
<p class=MsoNormal style='margin-left:.5in'><font size=3 face="Times New Roman"><span
style='font-size:12.0pt'> </span></font></p>
</div>
<div>
<p class=MsoNormal style='margin-left:.5in'><font size=2 face=Arial><span
style='font-size:10.0pt;font-family:Arial'><a
href="http://www.synthis.com/products/adalon/overview.jsp">http://www.synthis.com/products/adalon/overview.jsp</a></span></font></p>
</div>
<div>
<p class=MsoNormal style='margin-left:.5in'><font size=3 face="Times New Roman"><span
style='font-size:12.0pt'> </span></font></p>
</div>
<div>
<p class=MsoNormal style='margin-left:.5in'><font size=2 face=Arial><span
style='font-size:10.0pt;font-family:Arial'>Phillip Broussard<br>
<a href="http://www.fillworks.com/">http://www.fillworks.com/</a><br>
<a
href="http://www.loungeroyale.com/">http://www.loungeroyale.com/</a></span></font></p>
</div>
<div>
<p class=MsoNormal style='margin-left:.5in'><font size=3 face="Times New Roman"><span
style='font-size:12.0pt'> </span></font></p>
</div>
<div>
<p class=MsoNormal style='margin-left:.5in'><font size=2 face=Arial><span
style='font-size:10.0pt;font-family:Arial'>00101010101111110010101000001101<br>
00001010001000000010110100101101<br>
Decoder Ring (<a
href="http://www.loungeroyale.com/experiences/coderring/">http://www.loungeroyale.com/experiences/coderring/</a>)</span></font></p>
</div>
<div>
<p class=MsoNormal style='margin-left:.5in'><font size=3 face="Times New Roman"><span
style='font-size:12.0pt'> </span></font></p>
</div>
<div>
<p class=MsoNormal style='margin-left:.5in'><font size=3 face="Times New Roman"><span
style='font-size:12.0pt'> </span></font></p>
</div>
</div>
</body>
</html>
------_=_NextPart_001_01C26935.29136ABE--
------------------------------
__________________________________________/Fusebox Conference!
Sign up for the Fusebox Conference today!
October 26th & 27th: Orlando, FL, just before MACR DevCon.
2 jam-packed days, 15 speakers in three tracks, World Fuseball
Championship
http://www.fusebox.org/index.cfm?fuseaction=conference.main
End of [EMAIL PROTECTED] digest, issue 954