-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bd11486
commit 0bbab2c
Showing
9 changed files
with
77 additions
and
65 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
test-harness/modules_app/TestModule/wires/InlineHelloWorld.cfm
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
component { | ||
|
||
// Module Properties | ||
this.title = "testingmodule"; | ||
this.author = ""; | ||
this.webURL = ""; | ||
this.description = ""; | ||
this.version = "1.0.0"; | ||
// If true, looks for views in the parent first, if not found, then in the module. Else vice-versa | ||
this.viewParentLookup = true; | ||
// If true, looks for layouts in the parent first, if not found, then in module. Else vice-versa | ||
this.layoutParentLookup = true; | ||
// Module Entry Point | ||
this.entryPoint = "testingmodule"; | ||
// Inherit Entry Point | ||
this.inheritEntryPoint = false; | ||
// Model Namespace | ||
this.modelNamespace = "testingmodule"; | ||
// CF Mapping | ||
this.cfmapping = "testingmodule"; | ||
// Auto-map models | ||
this.autoMapModels = true; | ||
// Module Dependencies | ||
this.dependencies = []; | ||
|
||
function configure(){ | ||
|
||
// parent settings | ||
parentSettings = { | ||
|
||
}; | ||
|
||
settings = { | ||
|
||
}; | ||
|
||
layoutSettings = { | ||
defaultLayout = "Main.cfm" | ||
}; | ||
|
||
routes = []; | ||
|
||
resources = []; | ||
|
||
interceptorSettings = { | ||
customInterceptionPoints = "" | ||
}; | ||
|
||
interceptors = []; | ||
|
||
} | ||
|
||
} |
11 changes: 11 additions & 0 deletions
11
test-harness/modules_app/testingmodule/myComponents/NestedModuleComponent.cfm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<cfscript> | ||
data = { | ||
"title": "Nested module component" | ||
} | ||
</cfscript> | ||
|
||
<cfoutput> | ||
<div> | ||
#title# | ||
</div> | ||
</cfoutput> |
11 changes: 11 additions & 0 deletions
11
test-harness/modules_app/testingmodule/wires/NestedModuleDefaultComponent.cfm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<cfscript> | ||
data = { | ||
"title": "Nested module component using default wires location" | ||
} | ||
</cfscript> | ||
|
||
<cfoutput> | ||
<div> | ||
#title# | ||
</div> | ||
</cfoutput> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters