Changeset 715 for framework/trunk

Show
Ignore:
Timestamp:
05/14/08 07:49:41 (4 months ago)
Author:
kroche
Message:

Fix for Application.cfc based version

Location:
framework/trunk/scaffolder
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • framework/trunk/scaffolder/dsp_scaffolding.cfm

    r713 r715  
    141141        // If the xml filename is changed we attempt to read the new xml file. 
    142142        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)#'; 
    145145                var startFilePath = filename.slice(0,rootDirectory.length); 
    146146                var endFilePath = filename.slice(rootDirectory.length,filename.length); 
  • framework/trunk/scaffolder/manager.cfm

    r714 r715  
    1313<cfif isDefined("url.scaffolding.go") OR isDefined("form.scaffolding.go")> 
    1414        <!--- Set up all the required file and URL paths ---> 
    15         <cfinclude template="act_findfilepaths.cfm"> 
     15        <cfinclude template="/scaffolder/act_findfilepaths.cfm"> 
    1616         
    1717        <!--- Copy URL and Form scope to attributes ---> 
     
    2525        <!--- If we asked for the user interface, show it then stop. Next step will be called by the interface so we stop. ---> 
    2626        <cfif ListFindNoCase(attributes.scaffolding.go,"display")> 
    27                 <cfinclude template="dsp_scaffolding.cfm"> 
     27                <cfinclude template="/scaffolder/dsp_scaffolding.cfm"> 
    2828                <cfabort> 
    2929        </cfif>