Changeset 1972
- Timestamp:
- 11/21/2009 11:29:49 AM (4 months ago)
- Location:
- framework/1-8-0/trunk
- Files:
-
- 20 modified
-
filters/EventArgsFilter.cfc (modified) (1 diff)
-
filters/EventBeanFilter.cfc (modified) (1 diff)
-
filters/PermissionsFilter.cfc (modified) (1 diff)
-
filters/RequiredFieldsFilter.cfc (modified) (1 diff)
-
framework/AppManager.cfc (modified) (3 diffs)
-
framework/CacheHandler.cfc (modified) (1 diff)
-
framework/EventFilterManager.cfc (modified) (2 diffs)
-
framework/ListenerInvoker.cfc (modified) (1 diff)
-
framework/ListenerManager.cfc (modified) (2 diffs)
-
framework/PluginManager.cfc (modified) (2 diffs)
-
framework/PropertyManager.cfc (modified) (2 diffs)
-
framework/commands/FilterCommand.cfc (modified) (1 diff)
-
framework/commands/NotifyCommand.cfc (modified) (1 diff)
-
framework/commands/ViewPageCommand.cfc (modified) (1 diff)
-
framework/invokers/CFCInvoker_Event.cfc (modified) (1 diff)
-
framework/invokers/CFCInvoker_EventArgs.cfc (modified) (1 diff)
-
framework/invokers/EventArgsInvoker.cfc (modified) (1 diff)
-
framework/invokers/EventInvoker.cfc (modified) (1 diff)
-
logging/loggers/AbstractLogger.cfc (modified) (1 diff)
-
logging/loggers/MachIILog/Logger.cfc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
framework/1-8-0/trunk/filters/EventArgsFilter.cfc
r1892 r1972 67 67 PUBLIC FUNCTIONS 68 68 ---> 69 <cffunction name="filterEvent" access="public" returntype="boolean" 69 <cffunction name="filterEvent" access="public" returntype="boolean" output="false" 70 70 hint="Runs the filter event."> 71 71 <cfargument name="event" type="MachII.framework.Event" required="true" /> -
framework/1-8-0/trunk/filters/EventBeanFilter.cfc
r1892 r1972 95 95 PUBLIC FUNCTIONS 96 96 ---> 97 <cffunction name="filterEvent" access="public" returntype="boolean" 97 <cffunction name="filterEvent" access="public" returntype="boolean" output="false" 98 98 hint="DEPRECATED. Runs the filter event."> 99 99 <cfargument name="event" type="MachII.framework.Event" required="true" /> -
framework/1-8-0/trunk/filters/PermissionsFilter.cfc
r1892 r1972 82 82 PUBLIC FUNCTIONS 83 83 ---> 84 <cffunction name="filterEvent" access="public" returntype="boolean" output=" true"84 <cffunction name="filterEvent" access="public" returntype="boolean" output="false" 85 85 hint="Runs the filter event."> 86 86 <cfargument name="event" type="MachII.framework.Event" required="true" /> -
framework/1-8-0/trunk/filters/RequiredFieldsFilter.cfc
r1892 r1972 90 90 PUBLIC FUNCTIONS 91 91 ---> 92 <cffunction name="filterEvent" access="public" returntype="boolean" 92 <cffunction name="filterEvent" access="public" returntype="boolean" output="false" 93 93 hint="Runs the filter event."> 94 94 <cfargument name="event" type="MachII.framework.Event" required="true" /> -
framework/1-8-0/trunk/framework/AppManager.cfc
r1897 r1972 104 104 </cffunction> 105 105 106 <cffunction name="configure" access="public" returntype="void" 106 <cffunction name="configure" access="public" returntype="void" output="false" 107 107 hint="Calls configure() on each of the manager instances."> 108 108 … … 129 129 </cffunction> 130 130 131 <cffunction name="deconfigure" access="public" returntype="void" 131 <cffunction name="deconfigure" access="public" returntype="void" output="false" 132 132 hint="Calls deconfigure() on each of the manager instances."> 133 133 … … 305 305 hint="Sets the AppLoader instance."> 306 306 <cfargument name="appLoader" type="MachII.framework.AppLoader" required="true" /> 307 <cfset variables.appLoader = arguments.appLoader /> 307 <cfif NOT inModule()> 308 <cfset application[getAppKey()].appLoader = arguments.appLoader /> 309 <cfelse> 310 <cfset application[getAppKey()]["appLoader_" &getModuleName()] = arguments.appLoader /> 311 </cfif> 308 312 </cffunction> 309 313 <cffunction name="getAppLoader" access="public" returntype="MachII.framework.AppLoader" output="false" 310 314 hint="Returns the AppLoader instance."> 311 <cfreturn variables.appLoader /> 315 <cfif NOT inModule()> 316 <cfreturn application[getAppKey()].appLoader /> 317 <cfelse> 318 <cfreturn application[getAppKey()]["appLoader_" &getModuleName()] /> 319 </cfif> 312 320 </cffunction> 313 321 -
framework/1-8-0/trunk/framework/CacheHandler.cfc
r1892 r1972 90 90 PUBLIC FUNCTIONS 91 91 ---> 92 <cffunction name="handleCache" access="public" returntype="boolean" 92 <cffunction name="handleCache" access="public" returntype="boolean" output="true" 93 93 hint="Handles a cache."> 94 94 <cfargument name="event" type="MachII.framework.Event" required="true" /> -
framework/1-8-0/trunk/framework/EventFilterManager.cfc
r1892 r1972 174 174 </cffunction> 175 175 176 <cffunction name="configure" access="public" returntype="void" 176 <cffunction name="configure" access="public" returntype="void" output="false" 177 177 hint="Configures each of the registered EventFilters."> 178 178 … … 188 188 </cffunction> 189 189 190 <cffunction name="deconfigure" access="public" returntype="void" 190 <cffunction name="deconfigure" access="public" returntype="void" output="false" 191 191 hint="Performs deconfiguration logic."> 192 192 -
framework/1-8-0/trunk/framework/ListenerInvoker.cfc
r1892 r1972 64 64 PUBLIC FUNCTIONS 65 65 ---> 66 <cffunction name="invokeListener" access="public" returntype="void" 66 <cffunction name="invokeListener" access="public" returntype="void" output="true" 67 67 hint="Invokes the target Listener with the Event."> 68 68 <cfargument name="event" type="MachII.framework.Event" required="true" -
framework/1-8-0/trunk/framework/ListenerManager.cfc
r1892 r1972 216 216 </cffunction> 217 217 218 <cffunction name="configure" access="public" returntype="void" 218 <cffunction name="configure" access="public" returntype="void" output="false" 219 219 hint="Configures each of the registered listeners and its' invoker."> 220 220 … … 231 231 </cffunction> 232 232 233 <cffunction name="deconfigure" access="public" returntype="void" 233 <cffunction name="deconfigure" access="public" returntype="void" output="false" 234 234 hint="Performs deconfigure logic."> 235 235 -
framework/1-8-0/trunk/framework/PluginManager.cfc
r1892 r1972 182 182 </cffunction> 183 183 184 <cffunction name="configure" access="public" returntype="void" 184 <cffunction name="configure" access="public" returntype="void" output="false" 185 185 hint="Configures each of the registered Plugins."> 186 186 … … 196 196 </cffunction> 197 197 198 <cffunction name="deconfigure" access="public" returntype="void" 198 <cffunction name="deconfigure" access="public" returntype="void" output="false" 199 199 hint="Performs deconfiguration logic."> 200 200 -
framework/1-8-0/trunk/framework/PropertyManager.cfc
r1892 r1972 277 277 </cffunction> 278 278 279 <cffunction name="configure" access="public" returntype="void" 279 <cffunction name="configure" access="public" returntype="void" output="false" 280 280 hint="Prepares the configurable properties for use."> 281 281 … … 293 293 </cffunction> 294 294 295 <cffunction name="deconfigure" access="public" returntype="void" 295 <cffunction name="deconfigure" access="public" returntype="void" output="false" 296 296 hint="Performs deconfiguration logic."> 297 297 -
framework/1-8-0/trunk/framework/commands/FilterCommand.cfc
r1892 r1972 72 72 PUBLIC FUNCTIONS 73 73 ---> 74 <cffunction name="execute" access="public" returntype="boolean" 74 <cffunction name="execute" access="public" returntype="boolean" output="true" 75 75 hint="Executes the command."> 76 76 <cfargument name="event" type="MachII.framework.Event" required="true" /> -
framework/1-8-0/trunk/framework/commands/NotifyCommand.cfc
r1892 r1972 78 78 PUBLIC FUNCTIONS 79 79 ---> 80 <cffunction name="execute" access="public" returntype="boolean" 80 <cffunction name="execute" access="public" returntype="boolean" output="true" 81 81 hint="Executes the command."> 82 82 <cfargument name="event" type="MachII.framework.Event" required="true" /> -
framework/1-8-0/trunk/framework/commands/ViewPageCommand.cfc
r1892 r1972 78 78 PUBLIC FUNCTIONS 79 79 ---> 80 <cffunction name="execute" access="public" returntype="boolean" 80 <cffunction name="execute" access="public" returntype="boolean" output="true" 81 81 hint="Executes the command."> 82 82 <cfargument name="event" type="MachII.framework.Event" required="true" /> -
framework/1-8-0/trunk/framework/invokers/CFCInvoker_Event.cfc
r1892 r1972 67 67 PUBLIC FUNCTIONS 68 68 ---> 69 <cffunction name="invokeListener" access="public" returntype="void" 69 <cffunction name="invokeListener" access="public" returntype="void" output="true" 70 70 hint="DEPRECATED. Invokes the Listener."> 71 71 <cfargument name="event" type="MachII.framework.Event" required="true" -
framework/1-8-0/trunk/framework/invokers/CFCInvoker_EventArgs.cfc
r1892 r1972 62 62 PUBLIC FUNCTIONS 63 63 ---> 64 <cffunction name="invokeListener" access="public" returntype="void" 64 <cffunction name="invokeListener" access="public" returntype="void" output="true" 65 65 hint="DEPRECATED. Invokes the Listener."> 66 66 <cfargument name="event" type="MachII.framework.Event" required="true" -
framework/1-8-0/trunk/framework/invokers/EventArgsInvoker.cfc
r1908 r1972 63 63 PUBLIC FUNCTIONS 64 64 ---> 65 <cffunction name="invokeListener" access="public" returntype="void" 65 <cffunction name="invokeListener" access="public" returntype="void" output="true" 66 66 hint="Invokes the Listener."> 67 67 <cfargument name="event" type="MachII.framework.Event" required="true" -
framework/1-8-0/trunk/framework/invokers/EventInvoker.cfc
r1908 r1972 59 59 PUBLIC FUNCTIONS 60 60 ---> 61 <cffunction name="invokeListener" access="public" returntype="void" 61 <cffunction name="invokeListener" access="public" returntype="void" output="true" 62 62 hint="Invokes the Listener."> 63 63 <cfargument name="event" type="MachII.framework.Event" required="true" -
framework/1-8-0/trunk/logging/loggers/AbstractLogger.cfc
r1936 r1972 91 91 PUBLIC FUNCTIONS 92 92 ---> 93 <cffunction name="onRequestEnd" access="public" returntype="void" 93 <cffunction name="onRequestEnd" access="public" returntype="void" output="true" 94 94 hint="On request end logic for this logger. Override to provide custom on request end logic."> 95 <!--- Note that leaving off the 'output' attribute requires all output to be96 surrounded by cfoutput tags --->97 95 <cfabort showerror="This method is abstract and must be overrided if onRequestEnd functionality is required." /> 98 96 </cffunction> -
framework/1-8-0/trunk/logging/loggers/MachIILog/Logger.cfc
r1934 r1972 139 139 PUBLIC FUNCTIONS 140 140 ---> 141 <cffunction name="onRequestEnd" access="public" returntype="void" 141 <cffunction name="onRequestEnd" access="public" returntype="void" output="true" 142 142 hint="Displays output for this logger."> 143 144 <!--- Note that leaving off the 'output' attribute requires all output to be145 surrounded by cfoutput tags --->146 143 147 144 <cfset var data = ArrayNew(1) />
