initial
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
RewriteEngine On
|
||||
|
||||
#if we've already been rewritten to use index.cfm/* format, don't make a circular request
|
||||
RewriteRule index\.cfm/* - [L]
|
||||
|
||||
RewriteRule ^(.*)$ index.cfm/$1
|
||||
@@ -0,0 +1,16 @@
|
||||
component extends="taffy.core.api" {
|
||||
|
||||
this.name = "taffy_ParentAppExample";//same name as api folder application.cfc
|
||||
|
||||
variables.framework = {};
|
||||
variables.framework.beanFactory = "";
|
||||
|
||||
function onApplicationStart(){
|
||||
include "../mixin/appInit.cfm";
|
||||
|
||||
variables.framework.beanFactory = application.beanFactory;
|
||||
|
||||
return super.onApplicationStart();
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
<!---
|
||||
DO NOT DELETE THIS FILE
|
||||
===============================
|
||||
This file is necessary for Taffy to work, but should be blank.
|
||||
All requests funnel through it, but are handled by framework internal functionality.
|
||||
--->
|
||||
Reference in New Issue
Block a user