> I agree with the descriptine file names, etc., but what's
> wrong with naming
> it *.udf?

People could download and view your UDFs. I've even used .cfm extensions
on xml files for that reason. I also have a system in place where any
file with a 3-letter prefix and underscore (e.g. act_deleteaccount.cfm)
cannot be run directly. You do this by placing

<cfif REFind("/..._", CGI.SCRIPT_NAME)>
        <cflocation url="">
</cfif>

in application.cfm . This is similar to a technique in fusebox where you
force everything thru index.cfm .

Matthew Walker
http://www.matthewwalker.net.nz/

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Reply via email to