Changeset 1296
- Timestamp:
- 01/24/08 15:42:33 (9 months ago)
- Files:
-
- trunk/src/main/php/net/stubbles/ioc/stubBinder.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ioc/stubBindingScopeSingleton.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ioc/stubBindingScopes.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ioc/stubClassBinding.php (modified) (7 diffs)
- trunk/src/main/php/net/stubbles/ioc/stubInjector.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ipo/request/filters/stubAbstractFilterDecorator.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ipo/request/filters/stubRegexFilterDecorator.php (modified) (2 diffs)
- trunk/src/main/php/net/stubbles/ipo/session/resourcemanager/stubSessionResourceManager.php (modified) (3 diffs)
- trunk/src/main/php/net/stubbles/ipo/session/resourcemanager/stubSessionResourceManagerPreInterceptor.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/rdbms/stubDatabaseConnectionData.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/reflection/annotations/stubAbstractAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/reflection/annotations/stubAnnotationCache.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/reflection/annotations/stubAnnotationFactory.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/reflection/stubReflectionProperty.php (modified) (2 diffs)
- trunk/src/main/php/net/stubbles/util/validators/stubExtFilterValidator.php (modified) (3 diffs)
- trunk/src/main/php/net/stubbles/websites/stubPage.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/websites/variantmanager/types/stubAbstractVariant.php (modified) (2 diffs)
- trunk/src/main/php/net/stubbles/websites/xml/stubXMLPageElementCachingDecorator.php (modified) (2 diffs)
- trunk/src/main/php/net/stubbles/websites/xml/stubXMLPageElementDecorator.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/rss/stubRSSFeedGenerator.php (modified) (2 diffs)
- trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLAttributeAnnotation.php (modified) (2 diffs)
- trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLFragmentAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLMatcherAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLStrategyAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLTagAnnotation.php (modified) (2 diffs)
- trunk/src/main/php/net/stubbles/xml/serializer/stubXMLSerializer.php (modified) (2 diffs)
- trunk/src/main/php/net/stubbles/xml/stubAbstractXMLStreamWriter.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/xml/stubDomXMLStreamWriter.php (modified) (3 diffs)
- trunk/src/main/php/net/stubbles/xml/stubLibXmlXMLStreamWriter.php (modified) (2 diffs)
- trunk/src/main/php/net/stubbles/xml/xsl/util/stubXSLImageDimensions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/ioc/stubBinder.php
r1222 r1296 40 40 * Injector used by this binder 41 41 * 42 * @var stubInjector42 * @var stubInjector 43 43 */ 44 44 protected $injector = null; trunk/src/main/php/net/stubbles/ioc/stubBindingScopeSingleton.php
r1222 r1296 21 21 * Instances in this scope 22 22 * 23 * @var array<string,objct>23 * @var array<string,object> 24 24 */ 25 25 protected $instances = array(); trunk/src/main/php/net/stubbles/ioc/stubBindingScopes.php
r1222 r1296 19 19 * Scope for singleton objects 20 20 * 21 * @var string21 * @var string 22 22 */ 23 23 public static $SINGLETON = null; trunk/src/main/php/net/stubbles/ioc/stubClassBinding.php
r1222 r1296 22 22 * The injector used by this binding 23 23 * 24 * @var stubInjector24 * @var stubInjector 25 25 */ 26 26 protected $injector = null; … … 28 28 * The type for this binding 29 29 * 30 * @var string30 * @var string 31 31 */ 32 32 protected $type = null; … … 34 34 * The class that implements this binding 35 35 * 36 * @var stubReflectionClass36 * @var stubReflectionClass 37 37 */ 38 38 protected $impl = null; … … 40 40 * Annotated with a name 41 41 * 42 * @var string42 * @var string 43 43 */ 44 44 protected $name = null; … … 46 46 * Scope of the binding 47 47 * 48 * @var stubBindingScope48 * @var stubBindingScope 49 49 */ 50 50 protected $scope = null; … … 52 52 * Instance this type is bound to 53 53 * 54 * @var object54 * @var object 55 55 */ 56 56 protected $instance = null; … … 58 58 * The provider to use for this binding 59 59 * 60 * @var stubInjectionProvider60 * @var stubInjectionProvider 61 61 */ 62 62 protected $provider = null; trunk/src/main/php/net/stubbles/ioc/stubInjector.php
r1222 r1296 24 24 * bindings used by the injector that are not yet in the index 25 25 * 26 * @var array<stubBinding>26 * @var array<stubBinding> 27 27 */ 28 28 protected $bindings = array(); trunk/src/main/php/net/stubbles/ipo/request/filters/stubAbstractFilterDecorator.php
r1293 r1296 21 21 * decorated filter 22 22 * 23 * @var stubFilter23 * @var stubFilter 24 24 */ 25 25 protected $decoratedFilter; trunk/src/main/php/net/stubbles/ipo/request/filters/stubRegexFilterDecorator.php
r1274 r1296 23 23 /** 24 24 * indicates the decorator behavior: 25 * 25 26 * decorate the filter (apply regex) *before* the 26 27 * actual method call. 27 *28 * @var int29 28 */ 30 29 const STRATEGY_BEFORE = -1; 31 30 /** 32 31 * indicates the decorator behavior: 32 * 33 33 * decorate the filter (apply regex) *after* the 34 34 * actual method call. 35 *36 * @var int37 35 */ 38 36 const STRATEGY_AFTER = 1; 39 37 /** 40 38 * Decorator Strategy: 39 * 41 40 * <ul> 42 41 * <li>self::BEFORE_STRAGTEGY</li> … … 44 43 * </ul> 45 44 * 46 * @var int45 * @var int 47 46 */ 48 47 protected $strategy; 48 49 49 /** 50 50 * regex 51 51 * 52 * @var string52 * @var string 53 53 */ 54 54 protected $regex; trunk/src/main/php/net/stubbles/ipo/session/resourcemanager/stubSessionResourceManager.php
r1234 r1296 27 27 * all available interfaces and the matching implementations 28 28 * 29 * @var array<string,string>29 * @var array<string,string> 30 30 */ 31 31 protected $resourceDefinitions = array(); … … 33 33 * all resources 34 34 * 35 * @var array<string,object>35 * @var array<string,object> 36 36 */ 37 37 protected $resources = array(); … … 39 39 * session of the request 40 40 * 41 * @var stubSession41 * @var stubSession 42 42 */ 43 43 protected $session; trunk/src/main/php/net/stubbles/ipo/session/resourcemanager/stubSessionResourceManagerPreInterceptor.php
r1294 r1296 27 27 * all configured resources as read from session-resources.xml 28 28 * 29 * @var array<string,array<string>>29 * @var array<string,array<string>> 30 30 */ 31 31 protected $resourceConfig = array(); trunk/src/main/php/net/stubbles/rdbms/stubDatabaseConnectionData.php
r1281 r1296 32 32 protected $fqClassName = 'net::stubbles::rdbms::pdo::stubDatabasePDOConnection'; 33 33 /** 34 * Data Source Name, or DSN, contains the information required to 35 * connect to the database 34 * Data Source Name, or DSN, contains the information required to connect to the database 36 35 * 37 36 * @var string trunk/src/main/php/net/stubbles/reflection/annotations/stubAbstractAnnotation.php
r1227 r1296 19 19 * The name of the annotation 20 20 * 21 * @var string21 * @var string 22 22 */ 23 23 protected $annotationName; trunk/src/main/php/net/stubbles/reflection/annotations/stubAnnotationCache.php
r1114 r1296 20 20 * Property to store annotations 21 21 * 22 * @var array<string,array>22 * @var array<string,array> 23 23 */ 24 24 private static $annotations = array(stubAnnotation::TARGET_CLASS => array(), trunk/src/main/php/net/stubbles/reflection/annotations/stubAnnotationFactory.php
r1227 r1296 23 23 * Prefixes that can be prepended to class names 24 24 * 25 * @var array25 * @var array 26 26 */ 27 27 private static $prefixes = array('stub'); trunk/src/main/php/net/stubbles/reflection/stubReflectionProperty.php
r1227 r1296 23 23 * Name of the class 24 24 * 25 * @var string25 * @var string 26 26 */ 27 27 protected $className; … … 35 35 * Name of the property 36 36 * 37 * @var string37 * @var string 38 38 */ 39 39 protected $propertyName; trunk/src/main/php/net/stubbles/util/validators/stubExtFilterValidator.php
r1230 r1296 20 20 * The filter to use 21 21 * 22 * @var int22 * @var int 23 23 */ 24 24 protected $filter; … … 27 27 * The options to use 28 28 * 29 * @var array29 * @var array 30 30 */ 31 31 protected $options = array(); … … 34 34 * The flags to use 35 35 * 36 * @var int36 * @var int 37 37 */ 38 38 protected $flags = FILTER_FLAG_NONE; trunk/src/main/php/net/stubbles/websites/stubPage.php
r1293 r1296 25 25 * Resources that are used by this page 26 26 * 27 * @var array<string,string>27 * @var array<string,string> 28 28 */ 29 29 protected $resources = array(); trunk/src/main/php/net/stubbles/websites/variantmanager/types/stubAbstractVariant.php
r1265 r1296 46 46 protected $name = ''; 47 47 /** 48 * Title of the variant, only used when exporting the 49 * variant configuration 48 * Title of the variant, only used when exporting the variant configuration 50 49 * 51 50 * @var string … … 53 52 protected $title = ''; 54 53 /** 55 * alias of the variant, only used when exporting the 56 * variant configuration 54 * alias of the variant, only used when exporting the variant configuration 57 55 * 58 56 * @var string trunk/src/main/php/net/stubbles/websites/xml/stubXMLPageElementCachingDecorator.php
r1231 r1296 20 20 * Lifetime of the cache 21 21 * 22 * @var int22 * @var int 23 23 */ 24 24 private $lifetime = 3600; … … 27 27 * Set the lifetime of the cache 28 28 * 29 * @param int29 * @param int 30 30 */ 31 31 public function setLifetime($lifetime) trunk/src/main/php/net/stubbles/websites/xml/stubXMLPageElementDecorator.php
r1293 r1296 19 19 * The decorated element 20 20 * 21 * @var stubXMLPageElement21 * @var stubXMLPageElement 22 22 */ 23 23 protected $element; trunk/src/main/php/net/stubbles/xml/rss/stubRSSFeedGenerator.php
r1281 r1296 98 98 protected $lastBuildDate = null; 99 99 /** 100 * URL points to RSS file format documentation 101 * 100 102 * A URL that points to the documentation for the format used in the RSS 101 103 * file. It's probably a pointer to this page. It's for people who might … … 107 109 protected $docs = 'http://rssboard.org/rss-specification'; 108 110 /** 109 * number of minutes that indicates how long a channel can be cached 110 * before refreshing from the source 111 * number of minutes that indicates how long a channel can be cached before refreshing from the source 111 112 * 112 113 * @var int trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLAttributeAnnotation.php
r1229 r1296 26 26 * Name of the XML attribute 27 27 * 28 * @var string28 * @var string 29 29 */ 30 30 protected $attributeName; … … 32 32 * Whether an empty value should be skipped 33 33 * 34 * @var boolean34 * @var boolean 35 35 */ 36 36 protected $skipEmpty = true; trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLFragmentAnnotation.php
r1229 r1296 26 26 * Name of the XML tag 27 27 * 28 * @var string28 * @var string 29 29 */ 30 30 protected $tagName; trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLMatcherAnnotation.php
r1276 r1296 29 29 * Pattern of the properties, that should be serialized 30 30 * 31 * @var string31 * @var string 32 32 */ 33 33 protected $pattern; trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLStrategyAnnotation.php
r1229 r1296 23 23 * The strategy to use for this class 24 24 * 25 * @var int25 * @var int 26 26 */ 27 27 protected $value; trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLTagAnnotation.php
r1229 r1296 27 27 * Name of the XML tag 28 28 * 29 * @var string29 * @var string 30 30 */ 31 31 protected $tagName; … … 33 33 * Name of the XML tag for elements if this element is indexed 34 34 * 35 * @var string35 * @var string 36 36 */ 37 37 protected $elementTagName = null; trunk/src/main/php/net/stubbles/xml/serializer/stubXMLSerializer.php
r1265 r1296 56 56 * Default options 57 57 * 58 * @var array58 * @var array 59 59 */ 60 60 private $defaultOpts = array(self::OPT_ROOT_TAG => null, … … 65 65 * Currently used options 66 66 * 67 * @var array67 * @var array 68 68 */ 69 69 private $opts; trunk/src/main/php/net/stubbles/xml/stubAbstractXMLStreamWriter.php
r1127 r1296 31 31 * List of supported features 32 32 * 33 * @var array33 * @var array 34 34 */ 35 35 protected $features = array(); trunk/src/main/php/net/stubbles/xml/stubDomXMLStreamWriter.php
r1265 r1296 22 22 * List of supported features 23 23 * 24 * @var array24 * @var array 25 25 */ 26 26 protected $features = array(stubXMLStreamWriter::FEATURE_AS_DOM, … … 30 30 * DOM Document 31 31 * 32 * @var DOMDocument32 * @var DOMDocument 33 33 */ 34 34 protected $doc; … … 36 36 * Stores al opened elements 37 37 * 38 * @var array38 * @var array 39 39 */ 40 40 protected $elementStack = array(); trunk/src/main/php/net/stubbles/xml/stubLibXmlXMLStreamWriter.php
r1271 r1296 22 22 * List of supported features 23 23 * 24 * @var array24 * @var array 25 25 */ 26 26 protected $features = array(stubXMLStreamWriter::FEATURE_AS_DOM); … … 28 28 * Writer 29 29 * 30 * @var XMLWriter30 * @var XMLWriter 31 31 */ 32 32 protected $writer; trunk/src/main/php/net/stubbles/xml/xsl/util/stubXSLImageDimensions.php
r1281 r1296 19 19 { 20 20 /** 21 * a list of file types where the key corresponds to the IMAGETYPE 22 * constants of PHP 21 * a list of file types where the key corresponds to the IMAGETYPE constants of PHP 23 22 * 24 23 * @var array<int,string>
