Re: List of states, cities, zips

2006-08-12 Thread Dave Lyons
not free but only $5 and updated monthly
http://teamredline.com/zc/default.asp

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249672
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


ftp in cfe

2006-08-12 Thread Dave Lyons
ok wtf do you gotta do to get simple ftp to work in cfe?
It's my last major hurdle to get moved over but im quite tired of manually 
doing the ftp'n.

And no im not doing enterprise stuff and I don't want ant or any of that, I 
just want to ftp from here to there, no rocket science, no frills.

btw~ mike, the cfe-list link on site doesn't work.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249671
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: text file difference

2006-08-12 Thread Denny Valliant
I've got a cfc I made a long time ago based on this HoF post:

http://www.houseoffusion.com/groups/CF-Talk/thread.cfm/threadid:34641#174620

It's too long to post, and not in good enough shape for cflib, but I can
send it to you;
'specially if you want to clean it up and submit it to cflib.
:denny

On 8/12/06, Chad Gray <[EMAIL PROTECTED]> wrote:
>
> Does anyone have code to compare two chunks of text and highlight the
> difference between the two?
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249670
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Not receiving HOF Digest

2006-08-12 Thread Dave Lyons
I hadn't gotten digest for quite some time either

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249669
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ServletContext and application scope

2006-08-12 Thread Barney Boisvert
Have your listener instantiate them into a static context class (of
your divination), and then pull them out of that with CFMX as needed,
almost certainly via a context CFC that wraps the context class:

public class MyListener ... {
  ... contextInitialized() {
MyJavaContext.setObjectOne(new WhateverObject());
...
  }
}

public class MyJavaContext ... {
  private static Object objectOne;
  public static void setObjectOne(Object oo) {
objectOne = oo;
  }
  public static Object getObjectOne() {
return objectOne;
  }
}


  

  


Note that a hard kill of the web container (e.g. JVM segfaults) isn't
going to get to destroy the objects nicely, but there isn't really a
way around that.

Another, quite possibly better, would be to just use
onApplicationStart and onApplicationEnd in Application.cfc to either
instantiate the three objects, or use a CFLOCK to instantiate them
into the server scope safely for access by multiple applications.
You'd still want a CFC context as before, but it'd be a lot simpler,
as it'd be accessing standard CF objects.

cheers,
barneyb

On 8/12/06, David Murphy <[EMAIL PROTECTED]> wrote:
> Hello
>
> I've setup a listener that performs some housekeeping when CFMX starts up or 
> shuts down using the contextDestroyed / contextInitialized methods.
>
> I need to be able to instatiate 3 single java objects upon CFMX startup and 
> then make them globally available to be shared within CFMX. When CFMX shuts 
> down I need to be able to call methods on those 3 objects to perform tidy-up 
> tasks before cleanly shutting them down.
>
> I was thinking of storing these shared objects in the ServletContext object 
> but I was hoping to first get some guidance on how best to approach this?
>
> Many thanks, David
>
-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 100 invites.

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249668
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


text file difference

2006-08-12 Thread Chad Gray
Does anyone have code to compare two chunks of text and highlight the 
difference between the two?


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249667
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: OT: Linux MS Word Conversion

2006-08-12 Thread Denny Valliant
There's also POI:
http://jakarta.apache.org/poi/hwpf/index.html

Not gonna cut it though, I'd bet. ;-)  They can use some help...

I think OpenOffice has a "batch" converter, don't recall how good/what it
actually does though...
:den

On 8/12/06, Doug R <[EMAIL PROTECTED]> wrote:
>
> Are you looking for an automated solution or manual?  If manual, you
> should
> be able to open in openoffice[1], and open office has a .pdf conversion
> tool
>
> [1] - www.openoffice.org
>
> On 8/12/06, Daniel Hikel <[EMAIL PROTECTED]> wrote:
> >
> > Good Evening,
> >
> > Does anybody know a solution to convert a Word document to PDF, TIFF,
> JPG
> > or
> > Postscript file unter a Debian linux system?
> >
> > I am looking for a solution which supports tables, images and customer
> > formats.
> >
> > Thanks for any ideas in advance!!
> >
> > Daniel
> >
> >
> >
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249666
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ServletContext and application scope

2006-08-12 Thread Dan Plesse
David,

Are you talking about
HttpSessionListener


http://cephas.net/blog/2003/01/26/coldfusion-httpsessionlistener-interface/

 What happens when you initialize the three objects inside the
listener?

 I was going to tell you to use the
coldfusion.bootstrap.BootstrapServlet but
 that's for adding servlets at runtime. sorry :)



On 8/12/06, David Murphy <[EMAIL PROTECTED]> wrote:
>
> Hello
>
> I've setup a listener that performs some housekeeping when CFMX starts up
> or shuts down using the contextDestroyed / contextInitialized methods.
>
> I need to be able to instatiate 3 single java objects upon CFMX startup
> and then make them globally available to be shared within CFMX. When CFMX
> shuts down I need to be able to call methods on those 3 objects to perform
> tidy-up tasks before cleanly shutting them down.
>
> I was thinking of storing these shared objects in the ServletContext
> object but I was hoping to first get some guidance on how best to approach
> this?
>
> Many thanks, David
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249665
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT: Linux MS Word Conversion

2006-08-12 Thread Doug R
Are you looking for an automated solution or manual?  If manual, you should
be able to open in openoffice[1], and open office has a .pdf conversion tool

[1] - www.openoffice.org

On 8/12/06, Daniel Hikel <[EMAIL PROTECTED]> wrote:
>
> Good Evening,
>
> Does anybody know a solution to convert a Word document to PDF, TIFF, JPG
> or
> Postscript file unter a Debian linux system?
>
> I am looking for a solution which supports tables, images and customer
> formats.
>
> Thanks for any ideas in advance!!
>
> Daniel
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249664
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


OT: Linux MS Word Conversion

2006-08-12 Thread Daniel Hikel
Good Evening,

Does anybody know a solution to convert a Word document to PDF, TIFF, JPG or
Postscript file unter a Debian linux system?

I am looking for a solution which supports tables, images and customer
formats.

Thanks for any ideas in advance!!

Daniel


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249663
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


ServletContext and application scope

2006-08-12 Thread David Murphy
Hello

I've setup a listener that performs some housekeeping when CFMX starts up or 
shuts down using the contextDestroyed / contextInitialized methods.

I need to be able to instatiate 3 single java objects upon CFMX startup and 
then make them globally available to be shared within CFMX. When CFMX shuts 
down I need to be able to call methods on those 3 objects to perform tidy-up 
tasks before cleanly shutting them down.

I was thinking of storing these shared objects in the ServletContext object but 
I was hoping to first get some guidance on how best to approach this?

Many thanks, David

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249662
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT: Anybody able to uninstall and reinstall Office 2007 Beta

2006-08-12 Thread Robertson-Ravo, Neil (RX)
What does it say in the release docs?






"This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Rick Faircloth
To: CF-Talk
Sent: Sat Aug 12 16:52:08 2006
Subject: OT:  Anybody able to uninstall and reinstall Office 2007 Beta

Good day, all.

Sorry for the OT, but I've searched everytwhere and can't find an solution.

I've been running MS Office Pro 2007 Beta for a couple of months, and, apart
from some quirky performance, it's worked fine.

I thought they might have updated the Beta, so I decided to uninstall,
redownload (at $1.50), and reinstall.

However, each time I run the reinstall an error is caused and the
installation stops.

Anybody been through this and have any advice?

Thanks,

Rick




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249661
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Validation Protection from Javascript Disabled browsers

2006-08-12 Thread James Holmes
This is what I've started doing with CFAJAX. It's a time saver.

On 8/12/06, Tanguy Rademakers <[EMAIL PROTECTED]> wrote:
> One idea is to find a way to access your server side validation functions 
> with "AJAX!(tm)(c)", which is actually pretty trivial, even without using a 
> framework of some kind. That way you only have to write your validation code 
> once, and every input or whatever uses standard js - think 
> serverValidate(this). And if your users don't have js enabled, you fall back 
> to the exact same validation code running on the server.

-- 
CFAJAX docs and other useful articles:
http://www.bifrost.com.au/blog/

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249660
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


OT: Anybody able to uninstall and reinstall Office 2007 Beta

2006-08-12 Thread Rick Faircloth
Good day, all.

Sorry for the OT, but I've searched everytwhere and can't find an solution.

I've been running MS Office Pro 2007 Beta for a couple of months, and, apart 
from some quirky performance, it's worked fine.

I thought they might have updated the Beta, so I decided to uninstall, 
redownload (at $1.50), and reinstall.

However, each time I run the reinstall an error is caused and the installation 
stops.

Anybody been through this and have any advice?

Thanks,

Rick


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249659
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Validation Protection from Javascript Disabled browsers

2006-08-12 Thread Claude Schneegans
 >>users can easily disable Javascript once
the page has rendered the form, without refreshing the browser.

Then use an onsubmit event to set a hidden field to some check value and
check for that value on server side.
You may also set the action url to some "Let your Javascript enabled" 
message page,
and change it for the real page in an onsubmit event.

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249658
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Fusebox 2

2006-08-12 Thread Mingo Hagen
Doug wrote:
> Any suggestions
> on being able to tell if the tag is getting called upon?
put some text in it, to see if it is loaded...


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249657
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT: Changing views at runtime with mach-ii

2006-08-12 Thread Brian Rinaldi
Rich,

I still reccomend posting this to the mach-ii list (especially because I am
fairly new to mach-ii) but it hit me as soon as I posted my response that
this does't sound like it needs a plugin. This would be similar to how you
handle a login - logged in show the home page view , not logged in show the
login view. Couldn't you just announce different events based upon whatever
you are testing   and then
map these to different events that call the proper layout? Anyway, maybe a
plugin isn't the right path - but my advice here is based upon somewhat
limited experience...so as I said, I recommend posting it to the mach-ii
list as well.


- Brian Rinaldi
blog - http://www.remotesynthesis.com/blog
CF Open Source List - http://www.remotesynthesis.com/cfopensourcelist
Boston CFUG - http://www.bostoncfug.org


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249656
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: OT: Changing views at runtime with mach-ii

2006-08-12 Thread Brian Rinaldi
Rich,

I recommend posting this to the mach-ii mailing list. People are quite
helpful on that list and it is possible someone has a plugin like that
already created. You can join the list through topica at
http://lists.topica.com/lists/mach-ii-coldfusion/

- Brian Rinaldi
blog - http://www.remotesynthesis.com/blog
CF Open Source List - http://www.remotesynthesis.com/cfopensourcelist
Boston CFUG - http://www.bostoncfug.org


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249655
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Fusebox 2

2006-08-12 Thread Doug
I guess I better give a little more info. I just got back into using CF and
installed it on windows 2000 advanced server using sql 2000. I am using
(localhost) and a virtual site. One weird thing is that when I first
installed the app, which worked fine long ago, I forgot to include
formurl2attributes.cfm in the custom tag path and it did not throw an error
saying that the tag was not installed. Anyhow I installed the tag into the
tag directory and set the debug option to 1 and I still cannot see what
variables it is picking up by viewing the page source. I am thinking that my
app is not seeing the custom tag. Could this be the problem? Any suggestions
on being able to tell if the tag is getting called upon?


Doug




- Original Message -
From: "John Blayter" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, August 11, 2006 10:15 PM
Subject: Re: Fusebox 2


> I think you need to loose your double quotes around your fuseaction
>
> something
>
> should be
>
> something
>
> On 8/11/06, Doug <[EMAIL PROTECTED]> wrote:
> > I know this is an old version, but I like it. I am having trouble
linking to the index.cfm though. I am using (localhost) and it is hitting
the index.cfm and calling the default page, but it will not go to anyother
page. I am using CF 5.0 if that would matter.
> >
> > IE:
> >
> > something
> >
> > When I click this link it simply refreshes the current page which is the

> >
> >
> >
> > Any ideas?
> >
> >
> >
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249654
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Fusebox 2

2006-08-12 Thread Doug
Oh hell, I was tired last night while writing the email. The It does not
actually have "" around it. Any ideas other than that one?



- Original Message -
From: "Robertson-Ravo, Neil (RX)" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Saturday, August 12, 2006 12:34 AM
Subject: Re: Fusebox 2


> "lose"
>
> :-)
>
>
>
>
>
> "This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
> Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
> Registered in England, Number 678540.  It contains information which is
> confidential and may also be privileged.  It is for the exclusive use of
the
> intended recipient(s).  If you are not the intended recipient(s) please
note
> that any form of distribution, copying or use of this communication or the
> information in it is strictly prohibited and may be unlawful.  If you have
> received this communication in error please return it to the sender or
call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within
this
> communication are not necessarily those expressed by Reed Exhibitions."
> Visit our website at http://www.reedexpo.com
>
> -Original Message-
> From: John Blayter
> To: CF-Talk
> Sent: Sat Aug 12 05:15:24 2006
> Subject: Re: Fusebox 2
>
> I think you need to loose your double quotes around your fuseaction
>
> something
>
> should be
>
> something
>
> On 8/11/06, Doug <[EMAIL PROTECTED]> wrote:
> > I know this is an old version, but I like it. I am having trouble
linking
> to the index.cfm though. I am using (localhost) and it is hitting the
> index.cfm and calling the default page, but it will not go to anyother
page.
> I am using CF 5.0 if that would matter.
> >
> > IE:
> >
> > something
> >
> > When I click this link it simply refreshes the current page which is the
> 
> >
> >
> >
> > Any ideas?
> >
> >
> >
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249653
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Guestbook Help

2006-08-12 Thread Coldfusion
If your using a database to house the message, just trim down to say 200-300
characters.



But I would use Captcha to help stop it being a bot or something posting the
messages.


-Original Message-
From: Steve LaBadie [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 11, 2006 10:41 PM
To: CF-Talk
Subject: Guestbook Help

I have a cf guestbook that is receiving annoying advertising and people
leaving very long messages.  Any suggestions on limiting the length in the
textarea?  I know I can't stop the advertising, but looking for options.
 
Steve



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249652
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Application.cfc extends other Application.cfc?

2006-08-12 Thread James Holmes
I would assume not. In a standard CFC the parent is accessible via
SUPER - maybe try that in the onRequestStart() of the child class:



On 8/12/06, Loathe <[EMAIL PROTECTED]> wrote:
> I do this shouldn't the onRequestStart() method of the parent execute?
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249651
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Changing views at runtime with mach-ii

2006-08-12 Thread Hugo Ahlenius
Hi Richard,

You know that there is a Mach-II mailing list, right?

What you need to set up is a branching point in the logic, so that a new
event (which creates your desired view) is announced. Most commonly a
listener or a filter would do an announcement, but it could also be a
plugin.

/hugo

--
Hugo Ahlenius

-
Hugo Ahlenius  E-Mail: [EMAIL PROTECTED]
Project OfficerPhone:  +46 8 412 1427
UNEP GRID-Arendal  Fax:+46 8 723 0348
Stockholm Office   Mobile: +46 733 467111
   WWW:   http://www.grida.no
   Skype:callto:fraxxinus
-



|-Original Message-
|From: Richard Kroll [mailto:[EMAIL PROTECTED]
|Sent: Friday, August 11, 2006 18:37
|To: CF-Talk
|Subject: OT: Changing views at runtime with mach-ii
|
|Hell all,
|
|I'm struggling to find a way to dynamically change a view at runtime in

|Mach-ii and hoped someone here could point me in the right direction.
|I've got clients that like to see different views depending on the
|situation and I was trying to create a plug-in to swap the called view
|at runtime but am running into a roadblock in how I can manipulate
|this.
|Has anyone here run into this sort of problem?  I've found in the
|mach-ii framework where the call happens, but the path to the view is
|in the arguments scope which my plug-in cannot access.  Any direction
|would be greatly appreciated!
|
|
|
|Rich
|
|
|
|
|
|

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249650
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4