Files
DomFramework/version.php
Dominique Fournier d975e363a9 Start 0.53 version :
FEATURES ADDED:
  * httpclient : add rawData support
  * httpclient : add getContent () method
  * httpclient : de-zip the content of the page if Content-Encoding = gzip

  CORRECTED BUGS:
  * renderer : if the output is not defined in domframework, do not generate an
    error to allow the loading of the class by the autoloader
  * authentication : do not try to log in debug an array like a string
  * httpclient : when the Content-Length is set to 0, waiting socket is not
    needed



git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@4814 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
2018-12-28 09:13:41 +00:00

15 lines
497 B
PHP

<?php
/** DomFramework
@package domframework
@author Dominique Fournier <dominique@fournier38.fr> */
/** This is the version of DomFramework.
It can be used to test if the framework is uptodate for the application
with :
require ("domframework/version.php");
if (!defined ("DOMFRAMEWORK_VERSION") ||
version_compare (DOMFRAMEWORK_VERSION, "0.6") < 0)
die ("Your DomFramework version is too old : 0.6 minimum\n"); */
define ("DOMFRAMEWORK_VERSION", "0.53");