PHRAME VERSION 3.0.3
Bugfixes and minor improvements.

	General
	* All constant values used by Phrame are now preceeded with '_' for consistency.
	* You may now add a query string to any forward path in a module configuration. Contributed by Matthew Havilah.
	* Added the principle of tag libraries more or less similar to JSP tag libraries. Tag libraries enable you to
	  define functions that can be used in your web pages. Phrame comes with a library called 'PhrameTagLib.php' 
	  which is included in the /util subdirectory. To load the library, you have to define it in the options array
	  of your ActionServer. See the documentation of ActionServer on how to do this.

	action/ActionServer
	* constructor: added handling of _TAGLIBS parameter.
	* getModuleConfig(), getRequestProcessor(): corrected possible problem with the determination of a class name 
	  if the full name starts with a slash
	* getServerContext(): removed this method; use "new ServerContext()" instead.

	action/RequestProcessor
	* initModuleMessageResources(): changed the key under wich module message resources are cached
	  to _MESSAGES_KEY.'/'.the module prefix.
	* processActionCreate(), processActionForm(): corrected possible problem with the determination of a class name 
	  if the full name starts with a slash
	  
	actions/ViewAction
	* Bugfix [3.0.2_0001] superfluous redefinition of constructor.

	context/HttpRequest
	* constructor: corrected possible security flaw with HttpRequest->parameters: depending on the request method 
	   this property is now only filled with the contents of $_GET or $_POST. See 'Security Corner' department in the
	   December 2004 issue of PHP Architect.

	context/RequestDispatcher
	* constructor: added handling of optional query string in a RequestDispatcher's path.
	* forward(): removed all predefined variables like $_HTTP_REQUEST, $_ERRORS and _$TOKEN. If you want to
	   continue to use these variables (plus a whole bunch of other variables), you have to define the Phrame tag
	   library in the options array of your ActionServer. Also added just in time loading of tag libraries.

	utils/MessageResources
	* PropertyMessageResources->loadLocale(): changed the key under wich module message resources are cached
	  to _MESSAGES_KEY.'/'.the module prefix.

	
PHRAME VERSION 3.0.2
Bugfixes and minor improvements.

	General
	* Re-packaged Phrame's core classes to better reflect the Struts packages.
	* Changed source documentation to improve doc generation (e.g. by phpDocumentor).
	
	action/Action
	* getResources(): changed this method to return the MessageResources instance from the application
	  context.
	* setLocale(): coded this method.

	action/ActionServer
	* Bugfix [3.0.1_0002] incorrect _INCLUDE_DIRS processing.
	* Bugfix [3.0.1_0004] incorrect calculation of session idle interval.
	* constructor: added _PHP_ERROR_REPORTING configuration parameter; removed _DEBUG and _DETAIL
	  configuration parameters. Added correct setting of default value for session time out parameter, if applicable.
	  Added caching of internal message resources.
	* getModuleConfig(): changed caching of configs to the application context. Also, the ModuleConfig instance itself
	  is cached, rather than the internal map. Next to this caching, the current module is also separatly available in
	  the application context (attribute with name _MODULE_KEY). 

	action/RequestProcessor
	* Bugfix [3.0.1_0003] action->perform() compatibility. 
	* Bugfix [3.0.1_0005] incorrect update of last access time of a session.
	* Moved initialization of MessagesResources to a dedicated method, initMessageResources().

	actions/DispatchAction
	* execute(): changed call to method to be executed to use the $param variable.

	actions/ViewAction
	* prepare(): passed request parameter by reference rather than as a copy.
	* render(): implemented the request's RequestDispatcher to render the view.

	context/HttpSession
	* Bugfix [3.0.1_0005] incorrect update of last access time of a session.
	* updateLastAccessedTime(): removed this method since it is no longer used as a result of bugfix [3.0.1_0005].

	context/RequestDispatcher
	* Bugfix [3.0.1_0001] incorrect value assignment to $_TOKEN variable.
	* forward() Implemented new ServerContext class.

	context/ServerContext
	* Added this class as a wrapper for the application context.

	util/MessageResources
	* getMessage(): changed the usage of loadLocale() to be more like Struts.
	* loadLocale(): changed caching of messages to the application context. Also, the MessageResources  instance
	  itself is cached, rather than the messages array. 


PHRAME VERSION 3.0.1
Initial Phrame 3 version.