-- Topica Digest --
RE: FuseDocs: <passthrough>?
By [EMAIL PROTECTED]
Maximum loops over a cfmoduled fuseaction?
By [EMAIL PROTECTED]
Re: FuseDocs: <passthrough>?
By [EMAIL PROTECTED]
Fusebox structure question
By [EMAIL PROTECTED]
RE: Fusebox structure question
By [EMAIL PROTECTED]
Re: Fusebox structure question
By [EMAIL PROTECTED]
RE: Fusebox structure question
By [EMAIL PROTECTED]
RE: Flexible Menus in FB3
By [EMAIL PROTECTED]
Re: Fusebox structure question
By [EMAIL PROTECTED]
RE: VTM's for Dreamweaver?
By [EMAIL PROTECTED]
Fusebox.org Source (or other sites)
By [EMAIL PROTECTED]
RE: Fusebox.org Source (or other sites)
By [EMAIL PROTECTED]
RE: <cfsetting enablecfoutputonly="Yes">
By [EMAIL PROTECTED]
RE: <cfsetting enablecfoutputonly="Yes"> - solved!!
By [EMAIL PROTECTED]
OT: Old copy of CF 1.5?
By [EMAIL PROTECTED]
RE: Flexible Menus in FB3
By [EMAIL PROTECTED]
------------------------------------------------------------
Date: Mon, 24 Jun 2002 15:29:35 -0400
From: "Brian Kotek" <[EMAIL PROTECTED]>
Subject: RE: FuseDocs: <passthrough>?
This is a multi-part message in MIME format.
------=_NextPart_000_001B_01C21B93.F2405500
Content-Type: text/plain;
charset="us-ascii"
Content-Transfer-Encoding: 7bit
Bill, an important distinction is that passthrough values both go in and
come out, but *are not changed or modified by the fuse*.
-----Original Message-----
From: Bill King [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 24, 2002 3:24 PM
To: [EMAIL PROTECTED]
Subject: RE: FuseDocs: <passthrough>?
I assumed this is for variables that can be both in and out scoped.
- BILL -
-----Original Message-----
From: Urs Bertschy [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 24, 2002 12:53 PM
To: [EMAIL PROTECTED]
Subject: FuseDocs: <passthrough>?
I just discovered in some fusedocs examples that sometimes a
<passthrough>-element is used. But I am still not sure for what reason
this element is used for?
Could anybody please explain?
Thanks
Urs
==^================================================================
This email was sent to: [EMAIL PROTECTED]
EASY UNSUBSCRIBE click here: http://topica.com/u/?bUrFMa.bVLfuO
Or send an email to: [EMAIL PROTECTED]
T O P I C A -- Register now to manage your mail!
http://www.topica.com/partner/tag02/register
==^================================================================
------=_NextPart_000_001B_01C21B93.F2405500
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">
<TITLE>Message</TITLE>
<META content="MSHTML 6.00.2716.2200" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><SPAN class=933322819-24062002><FONT face=Arial color=#0000ff size=2>Bill,
an important distinction is that passthrough values both go in and come out, but
*are not changed or modified by the fuse*.</FONT></SPAN></DIV>
<BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px">
<DIV></DIV>
<DIV class=OutlookMessageHeader lang=en-us dir=ltr align=left><FONT
face=Tahoma size=2>-----Original Message-----<BR><B>From:</B> Bill King
[mailto:[EMAIL PROTECTED]] <BR><B>Sent:</B> Monday, June 24, 2002 3:24
PM<BR><B>To:</B> [EMAIL PROTECTED]<BR><B>Subject:</B> RE: FuseDocs:
<passthrough>?<BR><BR></FONT></DIV>
<DIV><SPAN class=644161819-24062002><FONT face=Arial color=#0000ff size=2>I
assumed this is for variables that can be both in and out
scoped.</FONT></SPAN></DIV>
<DIV><SPAN class=644161819-24062002><FONT face=Arial color=#0000ff
size=2></FONT></SPAN> </DIV>
<DIV><SPAN class=644161819-24062002><FONT face=Arial color=#0000ff size=2>-
BILL -</FONT></SPAN></DIV>
<BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px">
<DIV class=OutlookMessageHeader dir=ltr align=left><FONT face=Tahoma
size=2>-----Original Message-----<BR><B>From:</B> Urs Bertschy
[mailto:[EMAIL PROTECTED]]<BR><B>Sent:</B> Monday, June 24, 2002 12:53
PM<BR><B>To:</B> [EMAIL PROTECTED]<BR><B>Subject:</B> FuseDocs:
<passthrough>?<BR><BR></FONT></DIV>
<DIV><FONT face=Arial size=2>I just discovered in some fusedocs
examples that sometimes a <passthrough>-element is used. But
I am still not sure for what reason this element is used for?</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Could anybody please explain?</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>Urs</FONT></DIV></BLOCKQUOTE></BLOCKQUOTE>
</BODY></HTML>
------=_NextPart_000_001B_01C21B93.F2405500--
------------------------------
Date: Mon, 24 Jun 2002 20:50:05 +0100
From: "Julian Halliwell" <[EMAIL PROTECTED]>
Subject: Maximum loops over a cfmoduled fuseaction?
I'm trying to generate static pages from an FB3 app by calling all the
fuseactions with cfmodule inside a cfloop and generating a file output for
each possible page.
This works fine... except that if I specify more than precisely 37 looped
fuseaction calls, all the loops will complete OK *but* CF (4.5) won't allow
any more processing once it's finished.
I've tried stripping away as much as I can to get at the problem and it
seems to be the fact that I'm calling the fusebox within the looped cfmodule
that's making the difference.
eg.
-----------------------------------------------
<cfloop index="x" from="1" to="38">
<cfmodule template="#fusebox.rootPath#test.cfm">
</cfloop>
This line will be processed OK
----------------------------------------
But
-----------------------------------------------
<cfloop index="x" from="1" to="38">
<cfmodule template="#fusebox.rootPath##self#">
</cfloop>
The loop will execute perfectly BUT this line will not be processed.
----------------------------------------
Anyone else come up against this when doing static site generation from FB?
Julian.
------------------------------
Date: Mon, 24 Jun 2002 15:58:35 -0400
From: Steve Nelson <[EMAIL PROTECTED]>
Subject: Re: FuseDocs: <passthrough>?
--------------4E16566FE132610D3264A5E6
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Passthrough was actually deprecated (not officially, but it most likely will
be), because it didn't make any sense. request.urltoken would be an <in> but not
an <out> thus acheiving the exact same thing as a <passthrough> with one less
thing to learn.
The idea of passthrough was that a variable would be passed in without being
changed in that fuse. The common example of this was a hidden form field passing
<out> data that was passed <in>. The problem is that the scope may change, so it
didn't make sense. For example:
<in>
<string name="first_name" scope="request"/>
</in>
<out>
<string name="first_name" scope="formorURL"/>
</out>
Is much less flexible than:
<passthrough>
<string name="first_name" scope="formorURL"/>
</passthrough>
In the passthrough example, the incoming data is not a formorURL, so it's not
clear what the incoming variable is.
We'll make an official decision about this in the standards committee.
Steve Nelson
Brian Kotek wrote:
> Passthrough is used for values that the fuse takes in and then passes out
> without altering. A common example might be "request.urltoken" appended to
> all URLS and form postings if you are using cookieless session management.
>
> -----Original Message-----
> From: Urs Bertschy [mailto:[EMAIL PROTECTED]]
> Sent: Monday, June 24, 2002 2:53 PM
> To: [EMAIL PROTECTED]
> Subject: FuseDocs: <passthrough>?
>
> I just discovered in some fusedocs examples that sometimes a
> <passthrough>-element is used. But I am still not sure for what
> reason this element is used for? Could anybody please
> explain? Thanks Urs
>
>
--------------4E16566FE132610D3264A5E6
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<body bgcolor="#FFFFFF">
Passthrough was actually deprecated (not officially, but it most likely
will be), because it didn't make any sense. request.urltoken would be an
<in> but not an <out> thus acheiving the exact same thing as a <passthrough>
with one less thing to learn.
<p>The idea of passthrough was that a variable would be passed in without
being changed in that fuse. The common example of this was a hidden form
field passing <out> data that was passed <in>. The problem is that
the scope may change, so it didn't make sense. For example:
<p><in>
<br> <string name="first_name" scope="request"/>
<br></in>
<br><out>
<br> <string name="first_name" scope="formorURL"/>
<br></out>
<p>Is much less flexible than:
<br><passthrough>
<br> <string name="first_name" scope="formorURL"/>
<br></passthrough>
<p>In the passthrough example, the incoming data is not a formorURL, so
it's not clear what the incoming variable is.
<p>We'll make an official decision about this in the standards committee.
<p>Steve Nelson
<p>Brian Kotek wrote:
<blockquote TYPE=CITE><style></style>
<span class=557385718-24062002><font face="Arial"><font color="#0000FF"><font
size=-1>Passthrough
is used for values that the fuse takes in and then passes out without altering.
A common example might be "request.urltoken" appended to all URLS and form
postings if you are using cookieless session management.</font></font></font></span>
<blockquote dir=ltr style="MARGIN-RIGHT: 0px">
<div class="OutlookMessageHeader" lang="en-us" dir="ltr"><font face="Tahoma"><font
size=-1>-----Original
Message-----</font></font>
<br><font face="Tahoma"><font size=-1><b>From:</b> Urs Bertschy [<A
HREF="mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>]</font></font>
<br><font face="Tahoma"><font size=-1><b>Sent:</b> Monday, June 24, 2002
2:53 PM</font></font>
<br><font face="Tahoma"><font size=-1><b>To:</b> [EMAIL PROTECTED]</font></font>
<br><font face="Tahoma"><font size=-1><b>Subject:</b> FuseDocs:
<passthrough>?</font></font>
<br> </div>
<font face="Arial"><font size=-1>I just discovered in some fusedocs examples
that sometimes a <passthrough>-element is used. But I am still not sure
for what reason this element is used for?</font></font> <font face="Arial"><font
size=-1>Could
anybody please explain?</font></font> <font face="Arial"><font
size=-1>Thanks</font></font> <font face="Arial"><font
size=-1>Urs</font></font></blockquote>
</blockquote>
</body>
</html>
--------------4E16566FE132610D3264A5E6--
------------------------------
Date: Mon, 24 Jun 2002 17:11:31 -0500
From: "Geoff Hankerson" <[EMAIL PROTECTED]>
Subject: Fusebox structure question
I am new to Fusebox although not new to Cold Fusion. I have a few questions
on how to set it up:
1. I am using CF Server MX on WinXP Pro root directory resides in
C:\CfusionMX\wwwroot\
2. I have put the core fusebox v3 files in a folder called lawoffice which
is my root folder for this application (It is at
C:\CfusionMX\wwwroot\\lawoffice)
3. I have 2 subdirectories: findalawyer and resources. I have mapped them in
fbx_circuits.cfm as follows:
<cfset fusebox.Circuits.home="lawoffice">
<cfset fusebox.Circuits.findalawyer="home/findalawyernt">
<cfset fusebox.Circuits.resources="home/resources">
4. In the fbx_Settings.cfm file I have specified this:
<cfparam name="attributes.fuseaction" default="home.start">
5. In fbx_switch.cfm I have this:
<cfswitch expression = "#fusebox.fuseaction#">
<cfcase value="start,defaultfuseaction">
<cfinclude template="dspHome.cfm"
</cfcase>
<cfdefaultcase>
<!---This will just display an error message and is useful in catching
typos of fuseaction names while developing--->
<cfoutput>This is the cfdefaultcase tag. I received a fuseaction called
"#attributes.fuseaction#" and I don't know what to do with it.</cfoutput>
</cfdefaultcase>
</cfswitch>
6. In dspHome.cfm I just have this:
This is the home page
When I run index.cfm I get this:
I could not find fbx_Switch.cfm (or one of its components such as an
included fuse) in the "home" circuit. If you think this error is incorrect,
turn off the Fusebox suppress error messages flag by setting
fusebox.SuppressErrors to FALSE, and you will receive ColdFusion's "normal"
error output.
Where have I gone wrong?
------------------------------
Date: Mon, 24 Jun 2002 16:16:57 -0600
From: "Jared Stark" <[EMAIL PROTECTED]>
Subject: RE: Fusebox structure question
<cfset fusebox.Circuits.home="lawoffice">
<cfset fusebox.Circuits.findalawyer="home/findalawyernt">
<cfset fusebox.Circuits.resources="home/resources">
Change "home/findalawyernt" -> "lawoffice/findalawyernt">
Etc...
That should fix it.
Jared
-----Original Message-----
From: Geoff Hankerson [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 24, 2002 4:12 PM
To: [EMAIL PROTECTED]
Subject: Fusebox structure question
I am new to Fusebox although not new to Cold Fusion. I have a few
questions
on how to set it up:
1. I am using CF Server MX on WinXP Pro root directory resides in
C:\CfusionMX\wwwroot\
2. I have put the core fusebox v3 files in a folder called lawoffice
which
is my root folder for this application (It is at
C:\CfusionMX\wwwroot\\lawoffice)
3. I have 2 subdirectories: findalawyer and resources. I have mapped
them in
fbx_circuits.cfm as follows:
<cfset fusebox.Circuits.home="lawoffice">
<cfset fusebox.Circuits.findalawyer="home/findalawyernt">
<cfset fusebox.Circuits.resources="home/resources">
4. In the fbx_Settings.cfm file I have specified this:
<cfparam name="attributes.fuseaction" default="home.start">
5. In fbx_switch.cfm I have this:
<cfswitch expression = "#fusebox.fuseaction#">
<cfcase value="start,defaultfuseaction">
<cfinclude template="dspHome.cfm"
</cfcase>
<cfdefaultcase>
<!---This will just display an error message and is useful in catching
typos of fuseaction names while developing--->
<cfoutput>This is the cfdefaultcase tag. I received a fuseaction
called
"#attributes.fuseaction#" and I don't know what to do with
it.</cfoutput>
</cfdefaultcase>
</cfswitch>
6. In dspHome.cfm I just have this:
This is the home page
When I run index.cfm I get this:
I could not find fbx_Switch.cfm (or one of its components such as an
included fuse) in the "home" circuit. If you think this error is
incorrect,
turn off the Fusebox suppress error messages flag by setting
fusebox.SuppressErrors to FALSE, and you will receive ColdFusion's
"normal"
error output.
Where have I gone wrong?
------------------------------
Date: Mon, 24 Jun 2002 17:22:27 -0500
From: "Geoff Hankerson" <[EMAIL PROTECTED]>
Subject: Re: Fusebox structure question
Thanks Jared but that did not do the trick.
CF doesn't find the fbx_switch.cfm file
An execption occurs:
17:20:37.037 - Template Exception - in
C:\CFusionMX\wwwroot\lawOffice\fbx_fusebox30_CF50.cfm : line 238
Line 238 is this: <cfoutput><cfinclude
template="#FB_.fuseboxpath#fbx_Switch.cfm">
So fbx_switch is not being found. Any idea why?
----- Original Message -----
From: "Jared Stark" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, June 24, 2002 5:16 PM
Subject: RE: Fusebox structure question
> <cfset fusebox.Circuits.home="lawoffice">
> <cfset fusebox.Circuits.findalawyer="home/findalawyernt">
> <cfset fusebox.Circuits.resources="home/resources">
>
> Change "home/findalawyernt" -> "lawoffice/findalawyernt">
>
> Etc...
>
> That should fix it.
>
> Jared
>
> -----Original Message-----
> From: Geoff Hankerson [mailto:[EMAIL PROTECTED]]
> Sent: Monday, June 24, 2002 4:12 PM
> To: [EMAIL PROTECTED]
> Subject: Fusebox structure question
>
> I am new to Fusebox although not new to Cold Fusion. I have a few
> questions
> on how to set it up:
>
> 1. I am using CF Server MX on WinXP Pro root directory resides in
> C:\CfusionMX\wwwroot\
>
> 2. I have put the core fusebox v3 files in a folder called lawoffice
> which
> is my root folder for this application (It is at
> C:\CfusionMX\wwwroot\\lawoffice)
>
> 3. I have 2 subdirectories: findalawyer and resources. I have mapped
> them in
> fbx_circuits.cfm as follows:
>
> <cfset fusebox.Circuits.home="lawoffice">
> <cfset fusebox.Circuits.findalawyer="home/findalawyernt">
> <cfset fusebox.Circuits.resources="home/resources">
>
> 4. In the fbx_Settings.cfm file I have specified this:
> <cfparam name="attributes.fuseaction" default="home.start">
>
> 5. In fbx_switch.cfm I have this:
> <cfswitch expression = "#fusebox.fuseaction#">
>
> <cfcase value="start,defaultfuseaction">
> <cfinclude template="dspHome.cfm"
> </cfcase>
>
> <cfdefaultcase>
> <!---This will just display an error message and is useful in catching
> typos of fuseaction names while developing--->
> <cfoutput>This is the cfdefaultcase tag. I received a fuseaction
> called
> "#attributes.fuseaction#" and I don't know what to do with
> it.</cfoutput>
> </cfdefaultcase>
>
> </cfswitch>
>
> 6. In dspHome.cfm I just have this:
> This is the home page
>
> When I run index.cfm I get this:
> I could not find fbx_Switch.cfm (or one of its components such as an
> included fuse) in the "home" circuit. If you think this error is
> incorrect,
> turn off the Fusebox suppress error messages flag by setting
> fusebox.SuppressErrors to FALSE, and you will receive ColdFusion's
> "normal"
> error output.
>
> Where have I gone wrong?
>
>
------------------------------
Date: Mon, 24 Jun 2002 16:30:52 -0600
From: "Jared Stark" <[EMAIL PROTECTED]>
Subject: RE: Fusebox structure question
Geoff,
My apologies. I didn't look as closely at youf message as I should
have.
Have you tried setting the fusebox.SuppressErrors variable to FALSE in
the core file to see what message you get? Sometimes the real error
isn't that it can't find the file, but since the SuppressErrors variable
defaults to TRUE you only get the message you are seeing.
Try changing that and let me know what you get.
Jared
-----Original Message-----
From: Geoff Hankerson [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 24, 2002 4:22 PM
To: [EMAIL PROTECTED]
Subject: Re: Fusebox structure question
Thanks Jared but that did not do the trick.
CF doesn't find the fbx_switch.cfm file
An execption occurs:
17:20:37.037 - Template Exception - in
C:\CFusionMX\wwwroot\lawOffice\fbx_fusebox30_CF50.cfm : line 238
Line 238 is this: <cfoutput><cfinclude
template="#FB_.fuseboxpath#fbx_Switch.cfm">
So fbx_switch is not being found. Any idea why?
----- Original Message -----
From: "Jared Stark" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, June 24, 2002 5:16 PM
Subject: RE: Fusebox structure question
> <cfset fusebox.Circuits.home="lawoffice">
> <cfset fusebox.Circuits.findalawyer="home/findalawyernt">
> <cfset fusebox.Circuits.resources="home/resources">
>
> Change "home/findalawyernt" -> "lawoffice/findalawyernt">
>
> Etc...
>
> That should fix it.
>
> Jared
>
> -----Original Message-----
> From: Geoff Hankerson [mailto:[EMAIL PROTECTED]]
> Sent: Monday, June 24, 2002 4:12 PM
> To: [EMAIL PROTECTED]
> Subject: Fusebox structure question
>
> I am new to Fusebox although not new to Cold Fusion. I have a few
> questions
> on how to set it up:
>
> 1. I am using CF Server MX on WinXP Pro root directory resides in
> C:\CfusionMX\wwwroot\
>
> 2. I have put the core fusebox v3 files in a folder called lawoffice
> which
> is my root folder for this application (It is at
> C:\CfusionMX\wwwroot\\lawoffice)
>
> 3. I have 2 subdirectories: findalawyer and resources. I have mapped
> them in
> fbx_circuits.cfm as follows:
>
> <cfset fusebox.Circuits.home="lawoffice">
> <cfset fusebox.Circuits.findalawyer="home/findalawyernt">
> <cfset fusebox.Circuits.resources="home/resources">
>
> 4. In the fbx_Settings.cfm file I have specified this:
> <cfparam name="attributes.fuseaction" default="home.start">
>
> 5. In fbx_switch.cfm I have this:
> <cfswitch expression = "#fusebox.fuseaction#">
>
> <cfcase value="start,defaultfuseaction">
> <cfinclude template="dspHome.cfm"
> </cfcase>
>
> <cfdefaultcase>
> <!---This will just display an error message and is useful in
catching
> typos of fuseaction names while developing--->
> <cfoutput>This is the cfdefaultcase tag. I received a fuseaction
> called
> "#attributes.fuseaction#" and I don't know what to do with
> it.</cfoutput>
> </cfdefaultcase>
>
> </cfswitch>
>
> 6. In dspHome.cfm I just have this:
> This is the home page
>
> When I run index.cfm I get this:
> I could not find fbx_Switch.cfm (or one of its components such as an
> included fuse) in the "home" circuit. If you think this error is
> incorrect,
> turn off the Fusebox suppress error messages flag by setting
> fusebox.SuppressErrors to FALSE, and you will receive ColdFusion's
> "normal"
> error output.
>
> Where have I gone wrong?
>
>
------------------------------
Date: Mon, 24 Jun 2002 17:38:49 -0600
From: Steve Bryant <[EMAIL PROTECTED]>
Subject: RE: Flexible Menus in FB3
I think it definitely has potential. I am guessing that you would then use
it with several different sorts of menu structures?
Actually, it might be best to take the discussion off-line. I would
actually be interested in participating on this if you would like some input.
You also might want to consider passing variables other than just the
fuseaction. Some menu items might be related to a particular identifier
within a fuseaction. (If multiple pages can be called with one fuseaction
as in LeeF's example).
Steve
At 05:21 PM 6/24/2002 +0100, you wrote:
>Steve,
>
>Yes you have that correct now.
>
>As to categories and subcategories I would plan to allow the tag to specify
>the parent item of the item to be added, that would allow mutiple levels if
>neccessary. I have not decided how I would do that, but maybe if the item
>was a couple of levels down I would have to specify the parent's name or
>even grandparent's name if parent is not unique. For example:
>
>in simple cases
><cf_menuItem name="add" parent="Invoice" fuseaction="circuit.fuseaction">
>
>Or when needed
>
><cf_menuItem name="add" parent="Invoice">
><cf_menuItem name="special" parent="Invoice.add"
>fuseaction="circuit.fuseaction>
>
>When there is no fuseaction it becomes a parent with subitems.
>
>What do you think ?
>
>Kevin
>
>-----Original Message-----
>From: Steve Bryant [mailto:[EMAIL PROTECTED]]
>Sent: 24 June 2002 18:11
>To: [EMAIL PROTECTED]
>Subject: RE: Flexible Menus in FB3
>
>
>I must have misunderstood. Let me review my new interpretation of what you
>are saying:
>
>Each circuit will have a mnu_something file. That file could add zero or
>more menu items to the menu. If the file does not exist, no menu items are
>added.
>
>If that is what you are saying then, yes, I would say that has some
>potential.
>
>How would you handle major categories versus subcategories in menus?
>
>At 04:41 PM 6/24/2002 +0100, you wrote:
> >Steve,
> >
> >The file mnu_somthing could add as may items as it wanted to the menu. If
> >the file does not exist none would be added.
> >
> >So there is a one to zero/many ratio.
> >
> >Kevin
> >
> >-----Original Message-----
> >From: Steve Bryant [mailto:[EMAIL PROTECTED]]
> >Sent: 24 June 2002 17:20
> >To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
> >Subject: Re: Flexible Menus in FB3
> >
> >
> >I like the concept. But I know that for me there is rarely (if ever) a one
> >to one ratio between circuits and menu items. Circuits are based upon
> >logical divisions in functionality. Menu items are based upon tasks that
> >the user might want to do. They don't necessarily correlate.
> >
> >At 03:50 PM 6/24/2002 +0100, Kevin Roche wrote:
> >
> > >Hi,
> > >
> > >I have a need for a flexible menu system which will allow us to add
>modules
> > >to a fusebox application and have the new modules automatically appear in
> > >the menus. The modules would in each case be a new circuit or two
>circuits
> > >which would be installed in a directory below one of the existing
>circuits.
> > >
> > >Has anyone else has done this?
> > >
> > >My thoughts are going in the direction of implementing it as follows.
> > >
> > >1/ Create a custom tag to add menu items. The tag would simply add the
> > >information to a structure which would be read during execution of the
> > >layout file to build the actual menu.
> > >
> > >2/ The above tag could be called any time during the execution of the
>code
> > >to add a new item to the menu.
> > >
> > >3/ At the start of processing (perhaps in fbx_settings) I would call a
> > >routine that would look in the structure created by fbx_circuits to find
> >all
> > >the directories in the application and look for a file called
>mnu_somthing
> > >to add items to the menu.
> > >
> > >OR
> > >
> > >4/ Similar to 3 but only look below the current circuit's directory.
> > >
> > >What do you guys think ?
> > >
> > >Would this be a good way to create menus in general for fusebox ?
> > >
> > >Kevin Roche
>
------------------------------
Date: Mon, 24 Jun 2002 17:33:52 -0500
From: "Geoff Hankerson" <[EMAIL PROTECTED]>
Subject: Re: Fusebox structure question
Never mind I see I didn't close a cfinclude tag. erhh - it's Monday my
brain is still mush from the weekend.
Thanks for the help though. I appreciate it.
----- Original Message -----
From: "Jared Stark" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, June 24, 2002 5:30 PM
Subject: RE: Fusebox structure question
> Geoff,
> My apologies. I didn't look as closely at youf message as I should
> have.
>
> Have you tried setting the fusebox.SuppressErrors variable to FALSE in
> the core file to see what message you get? Sometimes the real error
> isn't that it can't find the file, but since the SuppressErrors variable
> defaults to TRUE you only get the message you are seeing.
>
> Try changing that and let me know what you get.
>
> Jared
>
> -----Original Message-----
> From: Geoff Hankerson [mailto:[EMAIL PROTECTED]]
> Sent: Monday, June 24, 2002 4:22 PM
> To: [EMAIL PROTECTED]
> Subject: Re: Fusebox structure question
>
> Thanks Jared but that did not do the trick.
> CF doesn't find the fbx_switch.cfm file
>
> An execption occurs:
> 17:20:37.037 - Template Exception - in
> C:\CFusionMX\wwwroot\lawOffice\fbx_fusebox30_CF50.cfm : line 238
> Line 238 is this: <cfoutput><cfinclude
> template="#FB_.fuseboxpath#fbx_Switch.cfm">
>
> So fbx_switch is not being found. Any idea why?
>
> ----- Original Message -----
> From: "Jared Stark" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Monday, June 24, 2002 5:16 PM
> Subject: RE: Fusebox structure question
>
> > <cfset fusebox.Circuits.home="lawoffice">
> > <cfset fusebox.Circuits.findalawyer="home/findalawyernt">
> > <cfset fusebox.Circuits.resources="home/resources">
> >
> > Change "home/findalawyernt" -> "lawoffice/findalawyernt">
> >
> > Etc...
> >
> > That should fix it.
> >
> > Jared
> >
> > -----Original Message-----
> > From: Geoff Hankerson [mailto:[EMAIL PROTECTED]]
> > Sent: Monday, June 24, 2002 4:12 PM
> > To: [EMAIL PROTECTED]
> > Subject: Fusebox structure question
> >
> > I am new to Fusebox although not new to Cold Fusion. I have a few
> > questions
> > on how to set it up:
> >
> > 1. I am using CF Server MX on WinXP Pro root directory resides in
> > C:\CfusionMX\wwwroot\
> >
> > 2. I have put the core fusebox v3 files in a folder called lawoffice
> > which
> > is my root folder for this application (It is at
> > C:\CfusionMX\wwwroot\\lawoffice)
> >
> > 3. I have 2 subdirectories: findalawyer and resources. I have mapped
> > them in
> > fbx_circuits.cfm as follows:
> >
> > <cfset fusebox.Circuits.home="lawoffice">
> > <cfset fusebox.Circuits.findalawyer="home/findalawyernt">
> > <cfset fusebox.Circuits.resources="home/resources">
> >
> > 4. In the fbx_Settings.cfm file I have specified this:
> > <cfparam name="attributes.fuseaction" default="home.start">
> >
> > 5. In fbx_switch.cfm I have this:
> > <cfswitch expression = "#fusebox.fuseaction#">
> >
> > <cfcase value="start,defaultfuseaction">
> > <cfinclude template="dspHome.cfm"
> > </cfcase>
> >
> > <cfdefaultcase>
> > <!---This will just display an error message and is useful in
> catching
> > typos of fuseaction names while developing--->
> > <cfoutput>This is the cfdefaultcase tag. I received a fuseaction
> > called
> > "#attributes.fuseaction#" and I don't know what to do with
> > it.</cfoutput>
> > </cfdefaultcase>
> >
> > </cfswitch>
> >
> > 6. In dspHome.cfm I just have this:
> > This is the home page
> >
> > When I run index.cfm I get this:
> > I could not find fbx_Switch.cfm (or one of its components such as an
> > included fuse) in the "home" circuit. If you think this error is
> > incorrect,
> > turn off the Fusebox suppress error messages flag by setting
> > fusebox.SuppressErrors to FALSE, and you will receive ColdFusion's
> > "normal"
> > error output.
> >
> > Where have I gone wrong?
> >
> >
>
>
------------------------------
Date: Tue, 25 Jun 2002 09:32:35 +0800
From: "Kay Smoljak" <[EMAIL PROTECTED]>
Subject: RE: VTM's for Dreamweaver?
OK,
For everyone who asked for it, here's a repost of my hack to get
comment-free color coding in DWMX. I hope to get that last little niggle
with it fixed soon, but I'm working 70+ hour weeks at the moment so
it'll have to wait :)
I'm hoping we can incorporate this into Erki's Fusebox extension but I
don't know if it'll work.
Now for the hack:
After all the complaining about DWMX and the removal of the Studio "bug"
that allowed commented out FuseDocs to display normally by adding an end
HTML comment (ie <!--- -->), I've been hacking DWMX's code coloring XML
files to try and get around this. I've come up with the following - it's
not perfect (the </fusedoc> always looks commented, can't figure out
why), but it's enough to work with and will stop you going crazy if it's
been bugging you.
Paste the following code into the top of your ColorCoding.xml file,
right underneath the first <codeColoring> tag. You'll find this file in
"drive:\Documents and Settings\username\Application
Data\Macromedia\Dreamweaver MX\Configuration\CodeColoring\" (for Win2K
and XP, don't know about 98), and you might want to make a backup first:
<scheme name="FuseDoc" id="FuseDoc" priority="10">
<ignoreCase>Yes</ignoreCase>
<ignoreTags>No</ignoreTags>
<blockStart doctypes="ColdFusion,CFC"
scheme="outerTag"><![CDATA[<fusedoc]]></blockStart>
<blockEnd><![CDATA[</fusedoc]]></blockEnd>
<defaultText name="FuseDocText"
id="CodeColor_FuseDocText" />
<defaultTag name="FuseDocTag" id="CodeColor_FuseDocTag"
/>
<defaultAttribute />
<stringStart name="Attribute Value"
id="CodeColor_FuseDocString"><![CDATA["]]></stringStart>
<stringEnd><![CDATA["]]></stringEnd>
</scheme>
Provided you have imported the FuseDoc DTD and specified that it applies
to ColdFusion document types (that's the really important step), you
should have three new color coding items in your Preferences -> Code
Coloring -> ColdFusion dialog: FuseDoc Attribute Value, FuseDoc
FuseDocTag, and FuseDoc FuseDocText as well as FD4.dtd (or whatever your
imported DTD was called). (FuseDocText may not work properly). Set these
colours to whatever you want, and voila! No more stinky commented-out
FuseDocs.
Kay.
------------------------------
Date: Tue, 25 Jun 2002 06:59:33 +0000
From: Ben Koshy <[EMAIL PROTECTED]>
Subject: Fusebox.org Source (or other sites)
I remember when Fusebox.org used to allow members to download the source
code that drives the website to use as a "real world" example to learn
Fusebox from... is this still possible? Or perhaps even the
Techspedition website? I find all the layout examples on the .org site
quite trivial and I like to reverse-engineer/learn from examples that
are rooted in a a real-world application.
Would you guys consider releasing the source? I understand if there's
some sensitive code (commerial product) or security reasons behind it
all though...
------------------------------
Date: Tue, 25 Jun 2002 00:27:20 -0700
From: "Erik Voldengen" <[EMAIL PROTECTED]>
Subject: RE: Fusebox.org Source (or other sites)
It's actually pretty messy now, and not much fusedocs in
the code I've seen and worked on. Wouldn't do you much
good.
I believe Nat and Jeff's new book has an accompanying site
that is just what you are looking for. I'm not sure if it's
up yet, but I understand it will soon be.
-Erik
> -----Original Message-----
> From: Ben Koshy [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, June 25, 2002 12:00 AM
> To: [EMAIL PROTECTED]
> Subject: Fusebox.org Source (or other sites)
>
>
> I remember when Fusebox.org used to allow members to download the source
> code that drives the website to use as a "real world" example to learn
> Fusebox from... is this still possible? Or perhaps even the
> Techspedition website? I find all the layout examples on the .org site
> quite trivial and I like to reverse-engineer/learn from examples that
> are rooted in a a real-world application.
>
> Would you guys consider releasing the source? I understand if there's
> some sensitive code (commerial product) or security reasons behind it
> all though...
>
>
>
------------------------------
Date: Tue, 25 Jun 2002 09:25:22 +0100
From: Dave Phipps <[EMAIL PROTECTED]>
Subject: RE: <cfsetting enablecfoutputonly="Yes">
Hi,
I am not actually using the cfsetting tag anywhere in my code as I haven't
even got to that stage yet. In an extended search of the site the only
occurrence of the cfsetting tag is in the fbx core file. All I have in my
site at the moment is a very basic header and footer and a fuseaction which
just displays a line of text. Only the code that is within a cfouput
block is being executed unless I add an additional <cfsetting = "no"> tag
to the root fbx_Settings file.
Why is this suddenly happening on this app and not on any others that are
essentially using the same codebase running on the same machine?
Any ideas?
Thanks
Dave
At 10:53 6/24/2002 -0500, you wrote:
>I've had a lot of troubles with <cfsetting inside fuses. Especially
>when calling several fuses where each file has a <cfsetting tag. I had
>a similar experience where none of the html outside of the cfoutput tags
>would render. I switched to using <cfsilent> block around my code.
><cfsilent> does not send anything to the browser, so you have to be
>careful where you use it. If there's an error within the cfsilent
>block, the error message is srupressed as well. Other that that, I've
>not had any problems with cfsilent.
>
>Thanks -
>
>Tom Schreck
>817-252-4900
>[EMAIL PROTECTED]
>
>I have not failed. I've found 10,000 ways that won't work.
>
>- Thomas Edison
>
>
>-----Original Message-----
>From: Dave Phipps [mailto:[EMAIL PROTECTED]]
>Sent: Monday, June 24, 2002 10:43 AM
>To: Fusebox List
>Subject: <cfsetting enablecfoutputonly="Yes">
>
>Hi,
>
>I have just started to lay the groundwork for a small fb3 app that I am
>putting together by basically creating a new folder and copying the core
>
>files to it then editing the circuits, settings and switches to fit into
>
>the new app. I have just create the header file with a simple
>navigation
>bar (text links at top of page). I also have a breadcrumb one row
>below. Now this is all held in a table.
>
>However when I check the page in the browser none of the html outside of
>
>the cfoutput tags is being rendered? Someone else had a similar problem
>on
>another list this morning. The fix was to do a <cfsetting
>enablecfoutputonly="No"> in the fbx_settings file.
>
>What I want to know is why on this application is this happening when
>the
>same code base being used in other apps on the same machine is fine. I
>have done an extended search of the application and the only occurrence
>of
>the <cfsetting> tag is in the fbx_core file. Is this a CFMX issue?
>
>Anyone seen this before? How can I resiolve it? Apart from putting a
><cfsetting enablecfoutputonly="No"> into every fbx_settings file?
>
>MTIA
>
>Dave Phipps
>
>
>============================================
>Phipps CF Development
>Oxford, Oxfordshire.
>Telephone: +44(0)7718 896696
>http://www.phipps-cf.co.uk
>============================================
>
============================================
Phipps CF Development
Oxford, Oxfordshire.
Telephone: +44(0)7718 896696
http://www.phipps-cf.co.uk
============================================
------------------------------
Date: Tue, 25 Jun 2002 09:41:44 +0100
From: Dave Phipps <[EMAIL PROTECTED]>
Subject: RE: <cfsetting enablecfoutputonly="Yes"> - solved!!
Hi,
I was obviously asleep when I wrote the code as I had included my header
and footer files in the root fbx_Layout file instead of the typicallayout
file!
I need some coffee!
Thanks anyway.
Dave
At 09:25 6/25/2002 +0100, you wrote:
>Hi,
>
>I am not actually using the cfsetting tag anywhere in my code as I haven't
>even got to that stage yet. In an extended search of the site the only
>occurrence of the cfsetting tag is in the fbx core file. All I have in
>my site at the moment is a very basic header and footer and a fuseaction
>which just displays a line of text. Only the code that is within a
>cfouput block is being executed unless I add an additional <cfsetting =
>"no"> tag to the root fbx_Settings file.
>
>Why is this suddenly happening on this app and not on any others that are
>essentially using the same codebase running on the same machine?
>
>Any ideas?
>
>Thanks
>
>Dave
>
>
>At 10:53 6/24/2002 -0500, you wrote:
>>I've had a lot of troubles with <cfsetting inside fuses. Especially
>>when calling several fuses where each file has a <cfsetting tag. I had
>>a similar experience where none of the html outside of the cfoutput tags
>>would render. I switched to using <cfsilent> block around my code.
>><cfsilent> does not send anything to the browser, so you have to be
>>careful where you use it. If there's an error within the cfsilent
>>block, the error message is srupressed as well. Other that that, I've
>>not had any problems with cfsilent.
>>
>>Thanks -
>>
>>Tom Schreck
>>817-252-4900
>>[EMAIL PROTECTED]
>>
>>I have not failed. I've found 10,000 ways that won't work.
>>
>>- Thomas Edison
>>
>>
>>-----Original Message-----
>>From: Dave Phipps [mailto:[EMAIL PROTECTED]]
>>Sent: Monday, June 24, 2002 10:43 AM
>>To: Fusebox List
>>Subject: <cfsetting enablecfoutputonly="Yes">
>>
>>Hi,
>>
>>I have just started to lay the groundwork for a small fb3 app that I am
>>putting together by basically creating a new folder and copying the core
>>
>>files to it then editing the circuits, settings and switches to fit into
>>
>>the new app. I have just create the header file with a simple
>>navigation
>>bar (text links at top of page). I also have a breadcrumb one row
>>below. Now this is all held in a table.
>>
>>However when I check the page in the browser none of the html outside of
>>
>>the cfoutput tags is being rendered? Someone else had a similar problem
>>on
>>another list this morning. The fix was to do a <cfsetting
>>enablecfoutputonly="No"> in the fbx_settings file.
>>
>>What I want to know is why on this application is this happening when
>>the
>>same code base being used in other apps on the same machine is fine. I
>>have done an extended search of the application and the only occurrence
>>of
>>the <cfsetting> tag is in the fbx_core file. Is this a CFMX issue?
>>
>>Anyone seen this before? How can I resiolve it? Apart from putting a
>><cfsetting enablecfoutputonly="No"> into every fbx_settings file?
>>
>>MTIA
>>
>>Dave Phipps
>>
>>
>>============================================
>>Phipps CF Development
>>Oxford, Oxfordshire.
>>Telephone: +44(0)7718 896696
>>http://www.phipps-cf.co.uk
>>============================================
>
>
>============================================
>Phipps CF Development
>Oxford, Oxfordshire.
>Telephone: +44(0)7718 896696
>http://www.phipps-cf.co.uk
>============================================
>
============================================
Phipps CF Development
Oxford, Oxfordshire.
Telephone: +44(0)7718 896696
http://www.phipps-cf.co.uk
============================================
------------------------------
Date: Tue, 25 Jun 2002 09:09:59 +0000
From: "omar gatto" <[EMAIL PROTECTED]>
Subject: OT: Old copy of CF 1.5?
A quick plea for help: Anyone know where I can get a copy of CF 1.5 when it
was still DBML and dbml.exe was CGI only?
Thanks,
Mike Gatto
_________________________________________________________________
Join the world�s largest e-mail service with MSN Hotmail.
http://www.hotmail.com
------------------------------
Date: Tue, 25 Jun 2002 10:29:36 +0100
From: "Kevin Roche" <[EMAIL PROTECTED]>
Subject: RE: Flexible Menus in FB3
Douglas,
Thanks, That is an iteresting tool even thogh it is not what I really
wanted.
Kevin
-----Original Message-----
From: Douglas Brown [mailto:[EMAIL PROTECTED]]
Sent: 24 June 2002 18:10
To: [EMAIL PROTECTED]
Subject: Re: Flexible Menus in FB3
Not sure if this is what you are looking for, but check it out
http://www.cfcomet.com/utilities/CF_EasyNav_v1-1.zip
Douglas Brown
Email: [EMAIL PROTECTED]
----- Original Message -----
From: "Steve Bryant" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, June 24, 2002 10:11 AM
Subject: RE: Flexible Menus in FB3
> I must have misunderstood. Let me review my new interpretation
of what you
> are saying:
>
> Each circuit will have a mnu_something file. That file could
add zero or
> more menu items to the menu. If the file does not exist, no
menu items are
> added.
>
> If that is what you are saying then, yes, I would say that has
some potential.
>
> How would you handle major categories versus subcategories in
menus?
>
> At 04:41 PM 6/24/2002 +0100, you wrote:
> >Steve,
> >
> >The file mnu_somthing could add as may items as it wanted to
the menu. If
> >the file does not exist none would be added.
> >
> >So there is a one to zero/many ratio.
> >
> >Kevin
> >
> >-----Original Message-----
> >From: Steve Bryant [mailto:[EMAIL PROTECTED]]
> >Sent: 24 June 2002 17:20
> >To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
> >Subject: Re: Flexible Menus in FB3
> >
> >
> >I like the concept. But I know that for me there is rarely
(if ever) a one
> >to one ratio between circuits and menu items. Circuits are
based upon
> >logical divisions in functionality. Menu items are based upon
tasks that
> >the user might want to do. They don't necessarily correlate.
> >
> >At 03:50 PM 6/24/2002 +0100, Kevin Roche wrote:
> >
> > >Hi,
> > >
> > >I have a need for a flexible menu system which will allow
us to add modules
> > >to a fusebox application and have the new modules
automatically appear in
> > >the menus. The modules would in each case be a new circuit
or two circuits
> > >which would be installed in a directory below one of the
existing circuits.
> > >
> > >Has anyone else has done this?
> > >
> > >My thoughts are going in the direction of implementing it
as follows.
> > >
> > >1/ Create a custom tag to add menu items. The tag would
simply add the
> > >information to a structure which would be read during
execution of the
> > >layout file to build the actual menu.
> > >
> > >2/ The above tag could be called any time during the
execution of the code
> > >to add a new item to the menu.
> > >
> > >3/ At the start of processing (perhaps in fbx_settings) I
would call a
> > >routine that would look in the structure created by
fbx_circuits to find
> >all
> > >the directories in the application and look for a file
called mnu_somthing
> > >to add items to the menu.
> > >
> > >OR
> > >
> > >4/ Similar to 3 but only look below the current circuit's
directory.
> > >
> > >What do you guys think ?
> > >
> > >Would this be a good way to create menus in general for
fusebox ?
> > >
> > >Kevin Roche
>
>
===
>
>
------------------------------
End of [EMAIL PROTECTED] digest, issue 835