Changeset 1238
- Timestamp:
- 11/04/06 23:49:45 (2 years ago)
- Location:
- trunk/src
- Files:
-
- 12 modified
-
filter/AgaviFilterChain.class.php (modified) (2 diffs)
-
filter/AgaviFormPopulationFilter.class.php (modified) (2 diffs)
-
logging/AgaviFileLoggerAppender.class.php (modified) (1 diff)
-
logging/AgaviLogger.class.php (modified) (2 diffs)
-
logging/AgaviLoggerAppender.class.php (modified) (2 diffs)
-
logging/AgaviLoggerManager.class.php (modified) (2 diffs)
-
logging/AgaviLoggerMessage.class.php (modified) (1 diff)
-
logging/AgaviPassthruLoggerLayout.class.php (modified) (2 diffs)
-
logging/AgaviRotatingFileLoggerAppender.class.php (modified) (2 diffs)
-
renderer/AgaviPhpRenderer.class.php (modified) (1 diff)
-
renderer/AgaviRenderer.class.php (modified) (3 diffs)
-
renderer/AgaviXslRenderer.class.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/filter/AgaviFilterChain.class.php
r1063 r1238 51 51 52 52 /** 53 * @var AgaviResp inse The Response instance that is handed to filters.53 * @var AgaviResponse The Response instance that is handed to filters. 54 54 */ 55 55 protected $response = null; … … 97 97 * Register a filter with this chain. 98 98 * 99 * @param Agavi Filter A Filter implementation instance.99 * @param AgaviIFilter A Filter implementation instance. 100 100 * 101 101 * @author Sean Kerr <skerr@mojavi.org> -
trunk/src/filter/AgaviFormPopulationFilter.class.php
r1206 r1238 66 66 * 67 67 * @param AgaviFilterChain The filter chain. 68 * @param AgaviResponse A Response instance. 68 69 * 69 70 * @throws <b>AgaviFilterException</b> If an error occurs during execution. … … 409 410 * @param array An associative array of initialization parameters. 410 411 * 411 * @throws <b>AgaviFilterException</b> If an error occurs during initialization 412 * @throws <b>AgaviFilterException</b> If an error occurs during 413 * initialization 412 414 * 413 415 * @author David Zuelke <dz@bitxtender.com> -
trunk/src/logging/AgaviFileLoggerAppender.class.php
r1233 r1238 62 62 * appending. 63 63 * 64 * @return integer64 * @return resource The open file handle. 65 65 * 66 66 * @author Bob Zoller <bob@agavi.org> -
trunk/src/logging/AgaviLogger.class.php
r1233 r1238 15 15 16 16 /** 17 * AgaviLogger provides an easy way to manage multiple log destinations and write18 * to them all simultaneously.17 * AgaviLogger provides an easy way to manage multiple log destinations and 18 * write to them all simultaneously. 19 19 * 20 20 * @package agavi … … 106 106 * If an appender with the name already exists, an exception will be thrown. 107 107 * 108 * @param string An appender name.108 * @param string An appender name. 109 109 * @param AgaviLoggerAppender An Appender instance. 110 110 * 111 * @throws <b>AgaviLoggingException</b> If an appender with the name already112 * exists.111 * @throws <b>AgaviLoggingException</b> If an appender with the name 112 * already exists. 113 113 * 114 114 * @author Sean Kerr <skerr@mojavi.org> -
trunk/src/logging/AgaviLoggerAppender.class.php
r1233 r1238 15 15 16 16 /** 17 * AgaviLoggerAppender allows you to specify a destination for log data and provide 18 * a custom layout for it, through which all log messages will be formatted. 17 * AgaviLoggerAppender allows you to specify a destination for log data and 18 * provide a custom layout for it, through which all log messages will be 19 * formatted. 19 20 * 20 21 * @package agavi … … 69 70 * Retrieve the layout. 70 71 * 71 * @return AgaviLoggerLayout A Layout instance, if it has been set, otherwise null. 72 * @return AgaviLoggerLayout A Layout instance, if it has been set, 73 * otherwise null. 72 74 * 73 75 * @author Sean Kerr <skerr@mojavi.org> -
trunk/src/logging/AgaviLoggerManager.class.php
r1233 r1238 54 54 * Initialize this AgaviLoggingManager. 55 55 * 56 * @param AgaviContext An AgaviContext instance. 57 * @param array An array of initialization parameters. 58 * 56 59 * @throws <b>AgaviInitializationException</b> If an error occurs while 57 * initializing a LoggingManager.60 * initializing this instance. 58 61 * 59 62 * @author David Zuelke <dz@bitxtender.com> … … 124 127 * @param string A logger name. 125 128 * 126 * @return AgaviLogger A Logger, if the logger has been removed, else null. 127 * 128 * @throws <b>AgaviLoggingException</b> If the logger name is default, which 129 * cannot be removed. 129 * @return AgaviLogger A Logger, if the logger has been removed, else 130 * null. 131 * 132 * @throws <b>AgaviLoggingException</b> If the logger name is default, 133 * which cannot be removed. 130 134 * 131 135 * @author David Zuelke <dz@bitxtender.com> -
trunk/src/logging/AgaviLoggerMessage.class.php
r1233 r1238 94 94 * @param int The priority level. 95 95 * 96 * @return Message96 * @return AgaviLoggerMessage 97 97 * 98 98 * @author Bob Zoller <bob@agavi.org> -
trunk/src/logging/AgaviPassthruLoggerLayout.class.php
r1233 r1238 15 15 16 16 /** 17 * AgaviPassthruLoggerLayout is an AgaviLoggerLayout that will return the AgaviLoggerMessage text18 * unaltered.17 * AgaviPassthruLoggerLayout is an AgaviLoggerLayout that will return the 18 * AgaviLoggerMessage text unaltered. 19 19 * 20 20 * @package agavi … … 32 32 * Format a message. 33 33 * 34 * @param AgaviLoggerMessage A AgaviLoggerMessage instance.34 * @param AgaviLoggerMessage An AgaviLoggerMessage instance. 35 35 * 36 36 * @return string A formatted message. -
trunk/src/logging/AgaviRotatingFileLoggerAppender.class.php
r1233 r1238 14 14 15 15 /** 16 * AgaviRotatingFileLoggerAppender extends AgaviFileLoggerAppender by enabling per-day log files17 * and removing unwanted old log files.16 * AgaviRotatingFileLoggerAppender extends AgaviFileLoggerAppender by enabling 17 * per-day log files and removing unwanted old log files. 18 18 * 19 19 * <b>Required parameters:</b> … … 24 24 * 25 25 * # <b>cycle</b> - [7] - Number of log files to keep. 26 * # <b>prefix</b> - [core.app_name-] - Log filename prefix.26 * # <b>prefix</b> - [core.app_name-] - Log filename prefix. 27 27 * # <b>suffix</b> - [.log] - Log filename suffix. 28 28 * -
trunk/src/renderer/AgaviPhpRenderer.class.php
r962 r1238 89 89 * 90 90 * Note: This will return null because PHP itself has no engine reference. 91 * 92 * @return null 91 93 */ 92 94 public function getEngine() 93 95 { 96 return null; 94 97 } 95 98 -
trunk/src/renderer/AgaviRenderer.class.php
r1166 r1238 202 202 * for this Renderer instance will be appended ("literal" false) or not (true) 203 203 * 204 * @param array The (decorator) template info given by the View. 204 * @param array The (decorator) template info given by the View. 205 * @param string The extension prefix. 206 * @param string The extension seperator. 205 207 * 206 208 * @return string A template file name. … … 391 393 * It puts the returned data into the View (if appropriate) 392 394 * 395 * @param AgaviFilterChain The filter chain. 396 * @param AgaviResponse The response. 397 * 393 398 * @author David Zuelke <dz@bitxtender.com> 394 399 * @since 0.11.0 … … 405 410 * It puts the returned data into the View (if appropriate) 406 411 * 412 * @param AgaviFilterChain The filter chain. 413 * @param AgaviResponse The response. 414 * 407 415 * @author David Zuelke <dz@bitxtender.com> 408 416 * @since 0.11.0 -
trunk/src/renderer/AgaviXslRenderer.class.php
r1063 r1238 149 149 * @param string The error's message. 150 150 * 151 * @return null152 *153 151 * @author Noah Fontes <impl@cynigram.com> 154 152 * @since 0.11.0 … … 230 228 * @param DOMNode The element to append to. 231 229 * @param array The attributes to add to the XML document. 232 *233 * @return null234 230 * 235 231 * @author Noah Fontes <impl@cynigram.com> … … 265 261 * Retrieve the template engine associated with this view. 266 262 * 267 * @return XSLTProcessor A template engine instance used for this 268 * class. 263 * @return XSLTProcessor A template engine instance used for this class. 269 264 * 270 265 * @author Noah Fontes <impl@cynigram.com> … … 279 274 /** 280 275 * Render the presentation to the Response. 281 *282 * @return null283 276 * 284 277 * @author Noah Fontes <impl@cynigram.com>

