Validator support added. Not yet enabled.
This commit is contained in:
parent
84c6a4ee91
commit
c1fe56c53e
|
@ -23,12 +23,14 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: tomas $
|
Author : $Author: tomas $
|
||||||
Version : $Revision: 1.19 $
|
Version : $Revision: 1.20 $
|
||||||
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/MetaData.php,v $
|
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/MetaData.php,v $
|
||||||
|
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
define('DEBUG', FALSE);
|
define('DEBUG', FALSE);
|
||||||
#define('DEBUG', TRUE);
|
#define('DEBUG', TRUE);
|
||||||
|
define('VALIDATE', FALSE);
|
||||||
|
#define('VALIDATE', TRUE);
|
||||||
define('MODIFY_LAST_MATCH', TRUE);
|
define('MODIFY_LAST_MATCH', TRUE);
|
||||||
|
|
||||||
require_once "XML/Util.php";
|
require_once "XML/Util.php";
|
||||||
|
@ -448,6 +450,14 @@ class MetaData{
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
$tree = $parser->getTree();
|
$tree = $parser->getTree();
|
||||||
|
//echo"<pre>";var_dump($tree);exit;
|
||||||
|
if(VALIDATE){
|
||||||
|
require_once"Validator.php";
|
||||||
|
require_once"audioClipFormat.php";
|
||||||
|
$val =& new Validator($audioClipFormat);
|
||||||
|
$res = $val->validate($tree);
|
||||||
|
if(PEAR::isError($res)) return $res;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return PEAR::raiseError(
|
return PEAR::raiseError(
|
||||||
|
|
Loading…
Reference in New Issue