17 lines
407 B
Plaintext
17 lines
407 B
Plaintext
<cfcomponent extends="taffy.core.api">
|
|
<cfscript>
|
|
|
|
this.name = hash(getCurrentTemplatePath());
|
|
|
|
variables.framework = {};
|
|
variables.framework.serializer = "taffy.bonus.AnythingToXmlRepresentation";
|
|
|
|
function onApplicationStart(){
|
|
application.anythingToXml = createObject("component", "anythingtoxml.AnythingToXML").init();
|
|
|
|
return super.onApplicationStart();
|
|
}
|
|
|
|
</cfscript>
|
|
</cfcomponent>
|