- Timestamp:
- 05/14/08 07:49:41 (3 months ago)
- Location:
- framework/trunk/scaffolder
- Files:
-
- 2 modified
-
dsp_scaffolding.cfm (modified) (1 diff)
-
manager.cfm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
framework/trunk/scaffolder/dsp_scaffolding.cfm
r713 r715 141 141 // If the xml filename is changed we attempt to read the new xml file. 142 142 function changeFile(filename){ 143 var rootDirectory = '#JSStringFormat( variables.rootDirectory)#';144 var rootURL = '#JSStringFormat( variables.rootURL)#';143 var rootDirectory = '#JSStringFormat(rootDirectory)#'; 144 var rootURL = '#JSStringFormat(rootURL)#'; 145 145 var startFilePath = filename.slice(0,rootDirectory.length); 146 146 var endFilePath = filename.slice(rootDirectory.length,filename.length); -
framework/trunk/scaffolder/manager.cfm
r714 r715 13 13 <cfif isDefined("url.scaffolding.go") OR isDefined("form.scaffolding.go")> 14 14 <!--- Set up all the required file and URL paths ---> 15 <cfinclude template=" act_findfilepaths.cfm">15 <cfinclude template="/scaffolder/act_findfilepaths.cfm"> 16 16 17 17 <!--- Copy URL and Form scope to attributes ---> … … 25 25 <!--- If we asked for the user interface, show it then stop. Next step will be called by the interface so we stop. ---> 26 26 <cfif ListFindNoCase(attributes.scaffolding.go,"display")> 27 <cfinclude template=" dsp_scaffolding.cfm">27 <cfinclude template="/scaffolder/dsp_scaffolding.cfm"> 28 28 <cfabort> 29 29 </cfif>
