Luis Majano Forums Notification: Post to AppMapping and Handlers location etc

Title: RE: AppMapping and Handlers location etc
Thread: AppMapping and Handlers location etc
Forum: Bugs (ColdBox)
Conference: ColdBox
User: puc

Luis,

Thnaks for that. I think we may still need a dev mapping, althought I
don't use this myself, I image others would.

I'm not sure what you mean my my
application structure, I gave you a folder structure in my orginal post above.
That's pretty much it i think.

Also, I had made a couple of changes to the
1.2.0 release which I'm not sure if they are already changed in version 2.0.0.
They are:

1]Changed logger CFC to stope URL encoding the log file names.

File
: coldbox\system\plugins\logger.cfc (init function line 35)

Changed to:
<cfset variables.instance.logfilename =
replace(replace(getSetting("AppName"),"
","","all"),".","_","all"
)>

2] Changed controller.cfc to stop stray ampersand being appended to url
when relocating.

File : coldbox\system\controller.cfc (setNextEvent
function
line 204)

Changed to:
<cfif len(trim(arguments.queryString))>
<cflocation
url="#cgi.SCRIPT_NAME#?event=#arguments.event#&#arguments.queryString#
"" addtoken="no">
<cfelse>
    <cflocation
url="#cgi.SCRIPT_NAME#?event=#arguments.event#"
addtoken="no">
</cfif>

Ask me if you need more info.

http://www.luismajano.com/forums/index.cfm?event=ehMessages.dspMessages&threadid=4AF6978D-123F-6116-423A3E4BDD3DF6B6