dos -> unix line endings on CasAuthentication's CAS library

This commit is contained in:
Brion Vibber 2010-01-11 15:42:17 -08:00
parent 824fd78a8e
commit 116c5f6839
13 changed files with 4847 additions and 4847 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,190 +1,190 @@
<?php <?php
/** /**
* @file CAS/PGTStorage/pgt-db.php * @file CAS/PGTStorage/pgt-db.php
* Basic class for PGT database storage * Basic class for PGT database storage
*/ */
/** /**
* @class PGTStorageDB * @class PGTStorageDB
* The PGTStorageDB class is a class for PGT database storage. An instance of * The PGTStorageDB class is a class for PGT database storage. An instance of
* this class is returned by CASClient::SetPGTStorageDB(). * this class is returned by CASClient::SetPGTStorageDB().
* *
* @author Pascal Aubry <pascal.aubry at univ-rennes1.fr> * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr>
* *
* @ingroup internalPGTStorageDB * @ingroup internalPGTStorageDB
*/ */
class PGTStorageDB extends PGTStorage class PGTStorageDB extends PGTStorage
{ {
/** /**
* @addtogroup internalPGTStorageDB * @addtogroup internalPGTStorageDB
* @{ * @{
*/ */
/** /**
* a string representing a PEAR DB URL to connect to the database. Written by * a string representing a PEAR DB URL to connect to the database. Written by
* PGTStorageDB::PGTStorageDB(), read by getURL(). * PGTStorageDB::PGTStorageDB(), read by getURL().
* *
* @hideinitializer * @hideinitializer
* @private * @private
*/ */
var $_url=''; var $_url='';
/** /**
* This method returns the PEAR DB URL to use to connect to the database. * This method returns the PEAR DB URL to use to connect to the database.
* *
* @return a PEAR DB URL * @return a PEAR DB URL
* *
* @private * @private
*/ */
function getURL() function getURL()
{ {
return $this->_url; return $this->_url;
} }
/** /**
* The handle of the connection to the database where PGT's are stored. Written by * The handle of the connection to the database where PGT's are stored. Written by
* PGTStorageDB::init(), read by getLink(). * PGTStorageDB::init(), read by getLink().
* *
* @hideinitializer * @hideinitializer
* @private * @private
*/ */
var $_link = null; var $_link = null;
/** /**
* This method returns the handle of the connection to the database where PGT's are * This method returns the handle of the connection to the database where PGT's are
* stored. * stored.
* *
* @return a handle of connection. * @return a handle of connection.
* *
* @private * @private
*/ */
function getLink() function getLink()
{ {
return $this->_link; return $this->_link;
} }
/** /**
* The name of the table where PGT's are stored. Written by * The name of the table where PGT's are stored. Written by
* PGTStorageDB::PGTStorageDB(), read by getTable(). * PGTStorageDB::PGTStorageDB(), read by getTable().
* *
* @hideinitializer * @hideinitializer
* @private * @private
*/ */
var $_table = ''; var $_table = '';
/** /**
* This method returns the name of the table where PGT's are stored. * This method returns the name of the table where PGT's are stored.
* *
* @return the name of a table. * @return the name of a table.
* *
* @private * @private
*/ */
function getTable() function getTable()
{ {
return $this->_table; return $this->_table;
} }
// ######################################################################## // ########################################################################
// DEBUGGING // DEBUGGING
// ######################################################################## // ########################################################################
/** /**
* This method returns an informational string giving the type of storage * This method returns an informational string giving the type of storage
* used by the object (used for debugging purposes). * used by the object (used for debugging purposes).
* *
* @return an informational string. * @return an informational string.
* @public * @public
*/ */
function getStorageType() function getStorageType()
{ {
return "database"; return "database";
} }
/** /**
* This method returns an informational string giving informations on the * This method returns an informational string giving informations on the
* parameters of the storage.(used for debugging purposes). * parameters of the storage.(used for debugging purposes).
* *
* @public * @public
*/ */
function getStorageInfo() function getStorageInfo()
{ {
return 'url=`'.$this->getURL().'\', table=`'.$this->getTable().'\''; return 'url=`'.$this->getURL().'\', table=`'.$this->getTable().'\'';
} }
// ######################################################################## // ########################################################################
// CONSTRUCTOR // CONSTRUCTOR
// ######################################################################## // ########################################################################
/** /**
* The class constructor, called by CASClient::SetPGTStorageDB(). * The class constructor, called by CASClient::SetPGTStorageDB().
* *
* @param $cas_parent the CASClient instance that creates the object. * @param $cas_parent the CASClient instance that creates the object.
* @param $user the user to access the data with * @param $user the user to access the data with
* @param $password the user's password * @param $password the user's password
* @param $database_type the type of the database hosting the data * @param $database_type the type of the database hosting the data
* @param $hostname the server hosting the database * @param $hostname the server hosting the database
* @param $port the port the server is listening on * @param $port the port the server is listening on
* @param $database the name of the database * @param $database the name of the database
* @param $table the name of the table storing the data * @param $table the name of the table storing the data
* *
* @public * @public
*/ */
function PGTStorageDB($cas_parent,$user,$password,$database_type,$hostname,$port,$database,$table) function PGTStorageDB($cas_parent,$user,$password,$database_type,$hostname,$port,$database,$table)
{ {
phpCAS::traceBegin(); phpCAS::traceBegin();
// call the ancestor's constructor // call the ancestor's constructor
$this->PGTStorage($cas_parent); $this->PGTStorage($cas_parent);
if ( empty($database_type) ) $database_type = CAS_PGT_STORAGE_DB_DEFAULT_DATABASE_TYPE; if ( empty($database_type) ) $database_type = CAS_PGT_STORAGE_DB_DEFAULT_DATABASE_TYPE;
if ( empty($hostname) ) $hostname = CAS_PGT_STORAGE_DB_DEFAULT_HOSTNAME; if ( empty($hostname) ) $hostname = CAS_PGT_STORAGE_DB_DEFAULT_HOSTNAME;
if ( $port==0 ) $port = CAS_PGT_STORAGE_DB_DEFAULT_PORT; if ( $port==0 ) $port = CAS_PGT_STORAGE_DB_DEFAULT_PORT;
if ( empty($database) ) $database = CAS_PGT_STORAGE_DB_DEFAULT_DATABASE; if ( empty($database) ) $database = CAS_PGT_STORAGE_DB_DEFAULT_DATABASE;
if ( empty($table) ) $table = CAS_PGT_STORAGE_DB_DEFAULT_TABLE; if ( empty($table) ) $table = CAS_PGT_STORAGE_DB_DEFAULT_TABLE;
// build and store the PEAR DB URL // build and store the PEAR DB URL
$this->_url = $database_type.':'.'//'.$user.':'.$password.'@'.$hostname.':'.$port.'/'.$database; $this->_url = $database_type.':'.'//'.$user.':'.$password.'@'.$hostname.':'.$port.'/'.$database;
// XXX should use setURL and setTable // XXX should use setURL and setTable
phpCAS::traceEnd(); phpCAS::traceEnd();
} }
// ######################################################################## // ########################################################################
// INITIALIZATION // INITIALIZATION
// ######################################################################## // ########################################################################
/** /**
* This method is used to initialize the storage. Halts on error. * This method is used to initialize the storage. Halts on error.
* *
* @public * @public
*/ */
function init() function init()
{ {
phpCAS::traceBegin(); phpCAS::traceBegin();
// if the storage has already been initialized, return immediatly // if the storage has already been initialized, return immediatly
if ( $this->isInitialized() ) if ( $this->isInitialized() )
return; return;
// call the ancestor's method (mark as initialized) // call the ancestor's method (mark as initialized)
parent::init(); parent::init();
//include phpDB library (the test was introduced in release 0.4.8 for //include phpDB library (the test was introduced in release 0.4.8 for
//the integration into Tikiwiki). //the integration into Tikiwiki).
if (!class_exists('DB')) { if (!class_exists('DB')) {
include_once('DB.php'); include_once('DB.php');
} }
// try to connect to the database // try to connect to the database
$this->_link = DB::connect($this->getURL()); $this->_link = DB::connect($this->getURL());
if ( DB::isError($this->_link) ) { if ( DB::isError($this->_link) ) {
phpCAS::error('could not connect to database ('.DB::errorMessage($this->_link).')'); phpCAS::error('could not connect to database ('.DB::errorMessage($this->_link).')');
} }
var_dump($this->_link); var_dump($this->_link);
phpCAS::traceBEnd(); phpCAS::traceBEnd();
} }
/** @} */ /** @} */
} }
?> ?>

View File

@ -1,249 +1,249 @@
<?php <?php
/** /**
* @file CAS/PGTStorage/pgt-file.php * @file CAS/PGTStorage/pgt-file.php
* Basic class for PGT file storage * Basic class for PGT file storage
*/ */
/** /**
* @class PGTStorageFile * @class PGTStorageFile
* The PGTStorageFile class is a class for PGT file storage. An instance of * The PGTStorageFile class is a class for PGT file storage. An instance of
* this class is returned by CASClient::SetPGTStorageFile(). * this class is returned by CASClient::SetPGTStorageFile().
* *
* @author Pascal Aubry <pascal.aubry at univ-rennes1.fr> * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr>
* *
* @ingroup internalPGTStorageFile * @ingroup internalPGTStorageFile
*/ */
class PGTStorageFile extends PGTStorage class PGTStorageFile extends PGTStorage
{ {
/** /**
* @addtogroup internalPGTStorageFile * @addtogroup internalPGTStorageFile
* @{ * @{
*/ */
/** /**
* a string telling where PGT's should be stored on the filesystem. Written by * a string telling where PGT's should be stored on the filesystem. Written by
* PGTStorageFile::PGTStorageFile(), read by getPath(). * PGTStorageFile::PGTStorageFile(), read by getPath().
* *
* @private * @private
*/ */
var $_path; var $_path;
/** /**
* This method returns the name of the directory where PGT's should be stored * This method returns the name of the directory where PGT's should be stored
* on the filesystem. * on the filesystem.
* *
* @return the name of a directory (with leading and trailing '/') * @return the name of a directory (with leading and trailing '/')
* *
* @private * @private
*/ */
function getPath() function getPath()
{ {
return $this->_path; return $this->_path;
} }
/** /**
* a string telling the format to use to store PGT's (plain or xml). Written by * a string telling the format to use to store PGT's (plain or xml). Written by
* PGTStorageFile::PGTStorageFile(), read by getFormat(). * PGTStorageFile::PGTStorageFile(), read by getFormat().
* *
* @private * @private
*/ */
var $_format; var $_format;
/** /**
* This method returns the format to use when storing PGT's on the filesystem. * This method returns the format to use when storing PGT's on the filesystem.
* *
* @return a string corresponding to the format used (plain or xml). * @return a string corresponding to the format used (plain or xml).
* *
* @private * @private
*/ */
function getFormat() function getFormat()
{ {
return $this->_format; return $this->_format;
} }
// ######################################################################## // ########################################################################
// DEBUGGING // DEBUGGING
// ######################################################################## // ########################################################################
/** /**
* This method returns an informational string giving the type of storage * This method returns an informational string giving the type of storage
* used by the object (used for debugging purposes). * used by the object (used for debugging purposes).
* *
* @return an informational string. * @return an informational string.
* @public * @public
*/ */
function getStorageType() function getStorageType()
{ {
return "file"; return "file";
} }
/** /**
* This method returns an informational string giving informations on the * This method returns an informational string giving informations on the
* parameters of the storage.(used for debugging purposes). * parameters of the storage.(used for debugging purposes).
* *
* @return an informational string. * @return an informational string.
* @public * @public
*/ */
function getStorageInfo() function getStorageInfo()
{ {
return 'path=`'.$this->getPath().'\', format=`'.$this->getFormat().'\''; return 'path=`'.$this->getPath().'\', format=`'.$this->getFormat().'\'';
} }
// ######################################################################## // ########################################################################
// CONSTRUCTOR // CONSTRUCTOR
// ######################################################################## // ########################################################################
/** /**
* The class constructor, called by CASClient::SetPGTStorageFile(). * The class constructor, called by CASClient::SetPGTStorageFile().
* *
* @param $cas_parent the CASClient instance that creates the object. * @param $cas_parent the CASClient instance that creates the object.
* @param $format the format used to store the PGT's (`plain' and `xml' allowed). * @param $format the format used to store the PGT's (`plain' and `xml' allowed).
* @param $path the path where the PGT's should be stored * @param $path the path where the PGT's should be stored
* *
* @public * @public
*/ */
function PGTStorageFile($cas_parent,$format,$path) function PGTStorageFile($cas_parent,$format,$path)
{ {
phpCAS::traceBegin(); phpCAS::traceBegin();
// call the ancestor's constructor // call the ancestor's constructor
$this->PGTStorage($cas_parent); $this->PGTStorage($cas_parent);
if (empty($format) ) $format = CAS_PGT_STORAGE_FILE_DEFAULT_FORMAT; if (empty($format) ) $format = CAS_PGT_STORAGE_FILE_DEFAULT_FORMAT;
if (empty($path) ) $path = CAS_PGT_STORAGE_FILE_DEFAULT_PATH; if (empty($path) ) $path = CAS_PGT_STORAGE_FILE_DEFAULT_PATH;
// check that the path is an absolute path // check that the path is an absolute path
if (getenv("OS")=="Windows_NT"){ if (getenv("OS")=="Windows_NT"){
if (!preg_match('`^[a-zA-Z]:`', $path)) { if (!preg_match('`^[a-zA-Z]:`', $path)) {
phpCAS::error('an absolute path is needed for PGT storage to file'); phpCAS::error('an absolute path is needed for PGT storage to file');
} }
} }
else else
{ {
if ( $path[0] != '/' ) { if ( $path[0] != '/' ) {
phpCAS::error('an absolute path is needed for PGT storage to file'); phpCAS::error('an absolute path is needed for PGT storage to file');
} }
// store the path (with a leading and trailing '/') // store the path (with a leading and trailing '/')
$path = preg_replace('|[/]*$|','/',$path); $path = preg_replace('|[/]*$|','/',$path);
$path = preg_replace('|^[/]*|','/',$path); $path = preg_replace('|^[/]*|','/',$path);
} }
$this->_path = $path; $this->_path = $path;
// check the format and store it // check the format and store it
switch ($format) { switch ($format) {
case CAS_PGT_STORAGE_FILE_FORMAT_PLAIN: case CAS_PGT_STORAGE_FILE_FORMAT_PLAIN:
case CAS_PGT_STORAGE_FILE_FORMAT_XML: case CAS_PGT_STORAGE_FILE_FORMAT_XML:
$this->_format = $format; $this->_format = $format;
break; break;
default: default:
phpCAS::error('unknown PGT file storage format (`'.CAS_PGT_STORAGE_FILE_FORMAT_PLAIN.'\' and `'.CAS_PGT_STORAGE_FILE_FORMAT_XML.'\' allowed)'); phpCAS::error('unknown PGT file storage format (`'.CAS_PGT_STORAGE_FILE_FORMAT_PLAIN.'\' and `'.CAS_PGT_STORAGE_FILE_FORMAT_XML.'\' allowed)');
} }
phpCAS::traceEnd(); phpCAS::traceEnd();
} }
// ######################################################################## // ########################################################################
// INITIALIZATION // INITIALIZATION
// ######################################################################## // ########################################################################
/** /**
* This method is used to initialize the storage. Halts on error. * This method is used to initialize the storage. Halts on error.
* *
* @public * @public
*/ */
function init() function init()
{ {
phpCAS::traceBegin(); phpCAS::traceBegin();
// if the storage has already been initialized, return immediatly // if the storage has already been initialized, return immediatly
if ( $this->isInitialized() ) if ( $this->isInitialized() )
return; return;
// call the ancestor's method (mark as initialized) // call the ancestor's method (mark as initialized)
parent::init(); parent::init();
phpCAS::traceEnd(); phpCAS::traceEnd();
} }
// ######################################################################## // ########################################################################
// PGT I/O // PGT I/O
// ######################################################################## // ########################################################################
/** /**
* This method returns the filename corresponding to a PGT Iou. * This method returns the filename corresponding to a PGT Iou.
* *
* @param $pgt_iou the PGT iou. * @param $pgt_iou the PGT iou.
* *
* @return a filename * @return a filename
* @private * @private
*/ */
function getPGTIouFilename($pgt_iou) function getPGTIouFilename($pgt_iou)
{ {
phpCAS::traceBegin(); phpCAS::traceBegin();
$filename = $this->getPath().$pgt_iou.'.'.$this->getFormat(); $filename = $this->getPath().$pgt_iou.'.'.$this->getFormat();
phpCAS::traceEnd($filename); phpCAS::traceEnd($filename);
return $filename; return $filename;
} }
/** /**
* This method stores a PGT and its corresponding PGT Iou into a file. Echoes a * This method stores a PGT and its corresponding PGT Iou into a file. Echoes a
* warning on error. * warning on error.
* *
* @param $pgt the PGT * @param $pgt the PGT
* @param $pgt_iou the PGT iou * @param $pgt_iou the PGT iou
* *
* @public * @public
*/ */
function write($pgt,$pgt_iou) function write($pgt,$pgt_iou)
{ {
phpCAS::traceBegin(); phpCAS::traceBegin();
$fname = $this->getPGTIouFilename($pgt_iou); $fname = $this->getPGTIouFilename($pgt_iou);
if ( $f=fopen($fname,"w") ) { if ( $f=fopen($fname,"w") ) {
if ( fputs($f,$pgt) === FALSE ) { if ( fputs($f,$pgt) === FALSE ) {
phpCAS::error('could not write PGT to `'.$fname.'\''); phpCAS::error('could not write PGT to `'.$fname.'\'');
} }
fclose($f); fclose($f);
} else { } else {
phpCAS::error('could not open `'.$fname.'\''); phpCAS::error('could not open `'.$fname.'\'');
} }
phpCAS::traceEnd(); phpCAS::traceEnd();
} }
/** /**
* This method reads a PGT corresponding to a PGT Iou and deletes the * This method reads a PGT corresponding to a PGT Iou and deletes the
* corresponding file. * corresponding file.
* *
* @param $pgt_iou the PGT iou * @param $pgt_iou the PGT iou
* *
* @return the corresponding PGT, or FALSE on error * @return the corresponding PGT, or FALSE on error
* *
* @public * @public
*/ */
function read($pgt_iou) function read($pgt_iou)
{ {
phpCAS::traceBegin(); phpCAS::traceBegin();
$pgt = FALSE; $pgt = FALSE;
$fname = $this->getPGTIouFilename($pgt_iou); $fname = $this->getPGTIouFilename($pgt_iou);
if ( !($f=fopen($fname,"r")) ) { if ( !($f=fopen($fname,"r")) ) {
phpCAS::trace('could not open `'.$fname.'\''); phpCAS::trace('could not open `'.$fname.'\'');
} else { } else {
if ( ($pgt=fgets($f)) === FALSE ) { if ( ($pgt=fgets($f)) === FALSE ) {
phpCAS::trace('could not read PGT from `'.$fname.'\''); phpCAS::trace('could not read PGT from `'.$fname.'\'');
} }
fclose($f); fclose($f);
} }
// delete the PGT file // delete the PGT file
@unlink($fname); @unlink($fname);
phpCAS::traceEnd($pgt); phpCAS::traceEnd($pgt);
return $pgt; return $pgt;
} }
/** @} */ /** @} */
} }
?> ?>

View File

@ -1,188 +1,188 @@
<?php <?php
/** /**
* @file CAS/PGTStorage/pgt-main.php * @file CAS/PGTStorage/pgt-main.php
* Basic class for PGT storage * Basic class for PGT storage
*/ */
/** /**
* @class PGTStorage * @class PGTStorage
* The PGTStorage class is a generic class for PGT storage. This class should * The PGTStorage class is a generic class for PGT storage. This class should
* not be instanciated itself but inherited by specific PGT storage classes. * not be instanciated itself but inherited by specific PGT storage classes.
* *
* @author Pascal Aubry <pascal.aubry at univ-rennes1.fr> * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr>
* *
* @ingroup internalPGTStorage * @ingroup internalPGTStorage
*/ */
class PGTStorage class PGTStorage
{ {
/** /**
* @addtogroup internalPGTStorage * @addtogroup internalPGTStorage
* @{ * @{
*/ */
// ######################################################################## // ########################################################################
// CONSTRUCTOR // CONSTRUCTOR
// ######################################################################## // ########################################################################
/** /**
* The constructor of the class, should be called only by inherited classes. * The constructor of the class, should be called only by inherited classes.
* *
* @param $cas_parent the CASclient instance that creates the current object. * @param $cas_parent the CASclient instance that creates the current object.
* *
* @protected * @protected
*/ */
function PGTStorage($cas_parent) function PGTStorage($cas_parent)
{ {
phpCAS::traceBegin(); phpCAS::traceBegin();
if ( !$cas_parent->isProxy() ) { if ( !$cas_parent->isProxy() ) {
phpCAS::error('defining PGT storage makes no sense when not using a CAS proxy'); phpCAS::error('defining PGT storage makes no sense when not using a CAS proxy');
} }
phpCAS::traceEnd(); phpCAS::traceEnd();
} }
// ######################################################################## // ########################################################################
// DEBUGGING // DEBUGGING
// ######################################################################## // ########################################################################
/** /**
* This virtual method returns an informational string giving the type of storage * This virtual method returns an informational string giving the type of storage
* used by the object (used for debugging purposes). * used by the object (used for debugging purposes).
* *
* @public * @public
*/ */
function getStorageType() function getStorageType()
{ {
phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called'); phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called');
} }
/** /**
* This virtual method returns an informational string giving informations on the * This virtual method returns an informational string giving informations on the
* parameters of the storage.(used for debugging purposes). * parameters of the storage.(used for debugging purposes).
* *
* @public * @public
*/ */
function getStorageInfo() function getStorageInfo()
{ {
phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called'); phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called');
} }
// ######################################################################## // ########################################################################
// ERROR HANDLING // ERROR HANDLING
// ######################################################################## // ########################################################################
/** /**
* string used to store an error message. Written by PGTStorage::setErrorMessage(), * string used to store an error message. Written by PGTStorage::setErrorMessage(),
* read by PGTStorage::getErrorMessage(). * read by PGTStorage::getErrorMessage().
* *
* @hideinitializer * @hideinitializer
* @private * @private
* @deprecated not used. * @deprecated not used.
*/ */
var $_error_message=FALSE; var $_error_message=FALSE;
/** /**
* This method sets en error message, which can be read later by * This method sets en error message, which can be read later by
* PGTStorage::getErrorMessage(). * PGTStorage::getErrorMessage().
* *
* @param $error_message an error message * @param $error_message an error message
* *
* @protected * @protected
* @deprecated not used. * @deprecated not used.
*/ */
function setErrorMessage($error_message) function setErrorMessage($error_message)
{ {
$this->_error_message = $error_message; $this->_error_message = $error_message;
} }
/** /**
* This method returns an error message set by PGTStorage::setErrorMessage(). * This method returns an error message set by PGTStorage::setErrorMessage().
* *
* @return an error message when set by PGTStorage::setErrorMessage(), FALSE * @return an error message when set by PGTStorage::setErrorMessage(), FALSE
* otherwise. * otherwise.
* *
* @public * @public
* @deprecated not used. * @deprecated not used.
*/ */
function getErrorMessage() function getErrorMessage()
{ {
return $this->_error_message; return $this->_error_message;
} }
// ######################################################################## // ########################################################################
// INITIALIZATION // INITIALIZATION
// ######################################################################## // ########################################################################
/** /**
* a boolean telling if the storage has already been initialized. Written by * a boolean telling if the storage has already been initialized. Written by
* PGTStorage::init(), read by PGTStorage::isInitialized(). * PGTStorage::init(), read by PGTStorage::isInitialized().
* *
* @hideinitializer * @hideinitializer
* @private * @private
*/ */
var $_initialized = FALSE; var $_initialized = FALSE;
/** /**
* This method tells if the storage has already been intialized. * This method tells if the storage has already been intialized.
* *
* @return a boolean * @return a boolean
* *
* @protected * @protected
*/ */
function isInitialized() function isInitialized()
{ {
return $this->_initialized; return $this->_initialized;
} }
/** /**
* This virtual method initializes the object. * This virtual method initializes the object.
* *
* @protected * @protected
*/ */
function init() function init()
{ {
$this->_initialized = TRUE; $this->_initialized = TRUE;
} }
// ######################################################################## // ########################################################################
// PGT I/O // PGT I/O
// ######################################################################## // ########################################################################
/** /**
* This virtual method stores a PGT and its corresponding PGT Iuo. * This virtual method stores a PGT and its corresponding PGT Iuo.
* @note Should never be called. * @note Should never be called.
* *
* @param $pgt the PGT * @param $pgt the PGT
* @param $pgt_iou the PGT iou * @param $pgt_iou the PGT iou
* *
* @protected * @protected
*/ */
function write($pgt,$pgt_iou) function write($pgt,$pgt_iou)
{ {
phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called'); phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called');
} }
/** /**
* This virtual method reads a PGT corresponding to a PGT Iou and deletes * This virtual method reads a PGT corresponding to a PGT Iou and deletes
* the corresponding storage entry. * the corresponding storage entry.
* @note Should never be called. * @note Should never be called.
* *
* @param $pgt_iou the PGT iou * @param $pgt_iou the PGT iou
* *
* @protected * @protected
*/ */
function read($pgt_iou) function read($pgt_iou)
{ {
phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called'); phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called');
} }
/** @} */ /** @} */
} }
// include specific PGT storage classes // include specific PGT storage classes
include_once(dirname(__FILE__).'/pgt-file.php'); include_once(dirname(__FILE__).'/pgt-file.php');
include_once(dirname(__FILE__).'/pgt-db.php'); include_once(dirname(__FILE__).'/pgt-db.php');
?> ?>

File diff suppressed because it is too large Load Diff

View File

@ -1,277 +1,277 @@
<?php <?php
/** /**
* @file domxml-php4-php5.php * @file domxml-php4-php5.php
* Require PHP5, uses built-in DOM extension. * Require PHP5, uses built-in DOM extension.
* To be used in PHP4 scripts using DOMXML extension. * To be used in PHP4 scripts using DOMXML extension.
* Allows PHP4/DOMXML scripts to run on PHP5/DOM. * Allows PHP4/DOMXML scripts to run on PHP5/DOM.
* (Requires PHP5/XSL extension for domxml_xslt functions) * (Requires PHP5/XSL extension for domxml_xslt functions)
* *
* Typical use: * Typical use:
* <pre> * <pre>
* { * {
* if (version_compare(PHP_VERSION,'5','>=')) * if (version_compare(PHP_VERSION,'5','>='))
* require_once('domxml-php4-to-php5.php'); * require_once('domxml-php4-to-php5.php');
* } * }
* </pre> * </pre>
* *
* Version 1.5.5, 2005-01-18, http://alexandre.alapetite.net/doc-alex/domxml-php4-php5/ * Version 1.5.5, 2005-01-18, http://alexandre.alapetite.net/doc-alex/domxml-php4-php5/
* *
* ------------------------------------------------------------------<br> * ------------------------------------------------------------------<br>
* Written by Alexandre Alapetite, http://alexandre.alapetite.net/cv/ * Written by Alexandre Alapetite, http://alexandre.alapetite.net/cv/
* *
* Copyright 2004, Licence: Creative Commons "Attribution-ShareAlike 2.0 France" BY-SA (FR), * Copyright 2004, Licence: Creative Commons "Attribution-ShareAlike 2.0 France" BY-SA (FR),
* http://creativecommons.org/licenses/by-sa/2.0/fr/ * http://creativecommons.org/licenses/by-sa/2.0/fr/
* http://alexandre.alapetite.net/divers/apropos/#by-sa * http://alexandre.alapetite.net/divers/apropos/#by-sa
* - Attribution. You must give the original author credit * - Attribution. You must give the original author credit
* - Share Alike. If you alter, transform, or build upon this work, * - Share Alike. If you alter, transform, or build upon this work,
* you may distribute the resulting work only under a license identical to this one * you may distribute the resulting work only under a license identical to this one
* - The French law is authoritative * - The French law is authoritative
* - Any of these conditions can be waived if you get permission from Alexandre Alapetite * - Any of these conditions can be waived if you get permission from Alexandre Alapetite
* - Please send to Alexandre Alapetite the modifications you make, * - Please send to Alexandre Alapetite the modifications you make,
* in order to improve this file for the benefit of everybody * in order to improve this file for the benefit of everybody
* *
* If you want to distribute this code, please do it as a link to: * If you want to distribute this code, please do it as a link to:
* http://alexandre.alapetite.net/doc-alex/domxml-php4-php5/ * http://alexandre.alapetite.net/doc-alex/domxml-php4-php5/
*/ */
function domxml_new_doc($version) {return new php4DOMDocument('');} function domxml_new_doc($version) {return new php4DOMDocument('');}
function domxml_open_file($filename) {return new php4DOMDocument($filename);} function domxml_open_file($filename) {return new php4DOMDocument($filename);}
function domxml_open_mem($str) function domxml_open_mem($str)
{ {
$dom=new php4DOMDocument(''); $dom=new php4DOMDocument('');
$dom->myDOMNode->loadXML($str); $dom->myDOMNode->loadXML($str);
return $dom; return $dom;
} }
function xpath_eval($xpath_context,$eval_str,$contextnode=null) {return $xpath_context->query($eval_str,$contextnode);} function xpath_eval($xpath_context,$eval_str,$contextnode=null) {return $xpath_context->query($eval_str,$contextnode);}
function xpath_new_context($dom_document) {return new php4DOMXPath($dom_document);} function xpath_new_context($dom_document) {return new php4DOMXPath($dom_document);}
class php4DOMAttr extends php4DOMNode class php4DOMAttr extends php4DOMNode
{ {
function php4DOMAttr($aDOMAttr) {$this->myDOMNode=$aDOMAttr;} function php4DOMAttr($aDOMAttr) {$this->myDOMNode=$aDOMAttr;}
function Name() {return $this->myDOMNode->name;} function Name() {return $this->myDOMNode->name;}
function Specified() {return $this->myDOMNode->specified;} function Specified() {return $this->myDOMNode->specified;}
function Value() {return $this->myDOMNode->value;} function Value() {return $this->myDOMNode->value;}
} }
class php4DOMDocument extends php4DOMNode class php4DOMDocument extends php4DOMNode
{ {
function php4DOMDocument($filename='') function php4DOMDocument($filename='')
{ {
$this->myDOMNode=new DOMDocument(); $this->myDOMNode=new DOMDocument();
if ($filename!='') $this->myDOMNode->load($filename); if ($filename!='') $this->myDOMNode->load($filename);
} }
function create_attribute($name,$value) function create_attribute($name,$value)
{ {
$myAttr=$this->myDOMNode->createAttribute($name); $myAttr=$this->myDOMNode->createAttribute($name);
$myAttr->value=$value; $myAttr->value=$value;
return new php4DOMAttr($myAttr,$this); return new php4DOMAttr($myAttr,$this);
} }
function create_cdata_section($content) {return new php4DOMNode($this->myDOMNode->createCDATASection($content),$this);} function create_cdata_section($content) {return new php4DOMNode($this->myDOMNode->createCDATASection($content),$this);}
function create_comment($data) {return new php4DOMNode($this->myDOMNode->createComment($data),$this);} function create_comment($data) {return new php4DOMNode($this->myDOMNode->createComment($data),$this);}
function create_element($name) {return new php4DOMElement($this->myDOMNode->createElement($name),$this);} function create_element($name) {return new php4DOMElement($this->myDOMNode->createElement($name),$this);}
function create_text_node($content) {return new php4DOMNode($this->myDOMNode->createTextNode($content),$this);} function create_text_node($content) {return new php4DOMNode($this->myDOMNode->createTextNode($content),$this);}
function document_element() {return new php4DOMElement($this->myDOMNode->documentElement,$this);} function document_element() {return new php4DOMElement($this->myDOMNode->documentElement,$this);}
function dump_file($filename,$compressionmode=false,$format=false) {return $this->myDOMNode->save($filename);} function dump_file($filename,$compressionmode=false,$format=false) {return $this->myDOMNode->save($filename);}
function dump_mem($format=false,$encoding=false) {return $this->myDOMNode->saveXML();} function dump_mem($format=false,$encoding=false) {return $this->myDOMNode->saveXML();}
function get_element_by_id($id) {return new php4DOMElement($this->myDOMNode->getElementById($id),$this);} function get_element_by_id($id) {return new php4DOMElement($this->myDOMNode->getElementById($id),$this);}
function get_elements_by_tagname($name) function get_elements_by_tagname($name)
{ {
$myDOMNodeList=$this->myDOMNode->getElementsByTagName($name); $myDOMNodeList=$this->myDOMNode->getElementsByTagName($name);
$nodeSet=array(); $nodeSet=array();
$i=0; $i=0;
if (isset($myDOMNodeList)) if (isset($myDOMNodeList))
while ($node=$myDOMNodeList->item($i)) while ($node=$myDOMNodeList->item($i))
{ {
$nodeSet[]=new php4DOMElement($node,$this); $nodeSet[]=new php4DOMElement($node,$this);
$i++; $i++;
} }
return $nodeSet; return $nodeSet;
} }
function html_dump_mem() {return $this->myDOMNode->saveHTML();} function html_dump_mem() {return $this->myDOMNode->saveHTML();}
function root() {return new php4DOMElement($this->myDOMNode->documentElement,$this);} function root() {return new php4DOMElement($this->myDOMNode->documentElement,$this);}
} }
class php4DOMElement extends php4DOMNode class php4DOMElement extends php4DOMNode
{ {
function get_attribute($name) {return $this->myDOMNode->getAttribute($name);} function get_attribute($name) {return $this->myDOMNode->getAttribute($name);}
function get_elements_by_tagname($name) function get_elements_by_tagname($name)
{ {
$myDOMNodeList=$this->myDOMNode->getElementsByTagName($name); $myDOMNodeList=$this->myDOMNode->getElementsByTagName($name);
$nodeSet=array(); $nodeSet=array();
$i=0; $i=0;
if (isset($myDOMNodeList)) if (isset($myDOMNodeList))
while ($node=$myDOMNodeList->item($i)) while ($node=$myDOMNodeList->item($i))
{ {
$nodeSet[]=new php4DOMElement($node,$this->myOwnerDocument); $nodeSet[]=new php4DOMElement($node,$this->myOwnerDocument);
$i++; $i++;
} }
return $nodeSet; return $nodeSet;
} }
function has_attribute($name) {return $this->myDOMNode->hasAttribute($name);} function has_attribute($name) {return $this->myDOMNode->hasAttribute($name);}
function remove_attribute($name) {return $this->myDOMNode->removeAttribute($name);} function remove_attribute($name) {return $this->myDOMNode->removeAttribute($name);}
function set_attribute($name,$value) {return $this->myDOMNode->setAttribute($name,$value);} function set_attribute($name,$value) {return $this->myDOMNode->setAttribute($name,$value);}
function tagname() {return $this->myDOMNode->tagName;} function tagname() {return $this->myDOMNode->tagName;}
} }
class php4DOMNode class php4DOMNode
{ {
var $myDOMNode; var $myDOMNode;
var $myOwnerDocument; var $myOwnerDocument;
function php4DOMNode($aDomNode,$aOwnerDocument) function php4DOMNode($aDomNode,$aOwnerDocument)
{ {
$this->myDOMNode=$aDomNode; $this->myDOMNode=$aDomNode;
$this->myOwnerDocument=$aOwnerDocument; $this->myOwnerDocument=$aOwnerDocument;
} }
function __get($name) function __get($name)
{ {
if ($name=='type') return $this->myDOMNode->nodeType; if ($name=='type') return $this->myDOMNode->nodeType;
elseif ($name=='tagname') return $this->myDOMNode->tagName; elseif ($name=='tagname') return $this->myDOMNode->tagName;
elseif ($name=='content') return $this->myDOMNode->textContent; elseif ($name=='content') return $this->myDOMNode->textContent;
else else
{ {
$myErrors=debug_backtrace(); $myErrors=debug_backtrace();
trigger_error('Undefined property: '.get_class($this).'::$'.$name.' ['.$myErrors[0]['file'].':'.$myErrors[0]['line'].']',E_USER_NOTICE); trigger_error('Undefined property: '.get_class($this).'::$'.$name.' ['.$myErrors[0]['file'].':'.$myErrors[0]['line'].']',E_USER_NOTICE);
return false; return false;
} }
} }
function append_child($newnode) {return new php4DOMElement($this->myDOMNode->appendChild($newnode->myDOMNode),$this->myOwnerDocument);} function append_child($newnode) {return new php4DOMElement($this->myDOMNode->appendChild($newnode->myDOMNode),$this->myOwnerDocument);}
function append_sibling($newnode) {return new php4DOMElement($this->myDOMNode->parentNode->appendChild($newnode->myDOMNode),$this->myOwnerDocument);} function append_sibling($newnode) {return new php4DOMElement($this->myDOMNode->parentNode->appendChild($newnode->myDOMNode),$this->myOwnerDocument);}
function attributes() function attributes()
{ {
$myDOMNodeList=$this->myDOMNode->attributes; $myDOMNodeList=$this->myDOMNode->attributes;
$nodeSet=array(); $nodeSet=array();
$i=0; $i=0;
if (isset($myDOMNodeList)) if (isset($myDOMNodeList))
while ($node=$myDOMNodeList->item($i)) while ($node=$myDOMNodeList->item($i))
{ {
$nodeSet[]=new php4DOMAttr($node,$this->myOwnerDocument); $nodeSet[]=new php4DOMAttr($node,$this->myOwnerDocument);
$i++; $i++;
} }
return $nodeSet; return $nodeSet;
} }
function child_nodes() function child_nodes()
{ {
$myDOMNodeList=$this->myDOMNode->childNodes; $myDOMNodeList=$this->myDOMNode->childNodes;
$nodeSet=array(); $nodeSet=array();
$i=0; $i=0;
if (isset($myDOMNodeList)) if (isset($myDOMNodeList))
while ($node=$myDOMNodeList->item($i)) while ($node=$myDOMNodeList->item($i))
{ {
$nodeSet[]=new php4DOMElement($node,$this->myOwnerDocument); $nodeSet[]=new php4DOMElement($node,$this->myOwnerDocument);
$i++; $i++;
} }
return $nodeSet; return $nodeSet;
} }
function children() {return $this->child_nodes();} function children() {return $this->child_nodes();}
function clone_node($deep=false) {return new php4DOMElement($this->myDOMNode->cloneNode($deep),$this->myOwnerDocument);} function clone_node($deep=false) {return new php4DOMElement($this->myDOMNode->cloneNode($deep),$this->myOwnerDocument);}
function first_child() {return new php4DOMElement($this->myDOMNode->firstChild,$this->myOwnerDocument);} function first_child() {return new php4DOMElement($this->myDOMNode->firstChild,$this->myOwnerDocument);}
function get_content() {return $this->myDOMNode->textContent;} function get_content() {return $this->myDOMNode->textContent;}
function has_attributes() {return $this->myDOMNode->hasAttributes();} function has_attributes() {return $this->myDOMNode->hasAttributes();}
function has_child_nodes() {return $this->myDOMNode->hasChildNodes();} function has_child_nodes() {return $this->myDOMNode->hasChildNodes();}
function insert_before($newnode,$refnode) {return new php4DOMElement($this->myDOMNode->insertBefore($newnode->myDOMNode,$refnode->myDOMNode),$this->myOwnerDocument);} function insert_before($newnode,$refnode) {return new php4DOMElement($this->myDOMNode->insertBefore($newnode->myDOMNode,$refnode->myDOMNode),$this->myOwnerDocument);}
function is_blank_node() function is_blank_node()
{ {
$myDOMNodeList=$this->myDOMNode->childNodes; $myDOMNodeList=$this->myDOMNode->childNodes;
$i=0; $i=0;
if (isset($myDOMNodeList)) if (isset($myDOMNodeList))
while ($node=$myDOMNodeList->item($i)) while ($node=$myDOMNodeList->item($i))
{ {
if (($node->nodeType==XML_ELEMENT_NODE)|| if (($node->nodeType==XML_ELEMENT_NODE)||
(($node->nodeType==XML_TEXT_NODE)&&!ereg('^([[:cntrl:]]|[[:space:]])*$',$node->nodeValue))) (($node->nodeType==XML_TEXT_NODE)&&!ereg('^([[:cntrl:]]|[[:space:]])*$',$node->nodeValue)))
return false; return false;
$i++; $i++;
} }
return true; return true;
} }
function last_child() {return new php4DOMElement($this->myDOMNode->lastChild,$this->myOwnerDocument);} function last_child() {return new php4DOMElement($this->myDOMNode->lastChild,$this->myOwnerDocument);}
function new_child($name,$content) function new_child($name,$content)
{ {
$mySubNode=$this->myDOMNode->ownerDocument->createElement($name); $mySubNode=$this->myDOMNode->ownerDocument->createElement($name);
$mySubNode->appendChild($this->myDOMNode->ownerDocument->createTextNode($content)); $mySubNode->appendChild($this->myDOMNode->ownerDocument->createTextNode($content));
$this->myDOMNode->appendChild($mySubNode); $this->myDOMNode->appendChild($mySubNode);
return new php4DOMElement($mySubNode,$this->myOwnerDocument); return new php4DOMElement($mySubNode,$this->myOwnerDocument);
} }
function next_sibling() {return new php4DOMElement($this->myDOMNode->nextSibling,$this->myOwnerDocument);} function next_sibling() {return new php4DOMElement($this->myDOMNode->nextSibling,$this->myOwnerDocument);}
function node_name() {return $this->myDOMNode->localName;} function node_name() {return $this->myDOMNode->localName;}
function node_type() {return $this->myDOMNode->nodeType;} function node_type() {return $this->myDOMNode->nodeType;}
function node_value() {return $this->myDOMNode->nodeValue;} function node_value() {return $this->myDOMNode->nodeValue;}
function owner_document() {return $this->myOwnerDocument;} function owner_document() {return $this->myOwnerDocument;}
function parent_node() {return new php4DOMElement($this->myDOMNode->parentNode,$this->myOwnerDocument);} function parent_node() {return new php4DOMElement($this->myDOMNode->parentNode,$this->myOwnerDocument);}
function prefix() {return $this->myDOMNode->prefix;} function prefix() {return $this->myDOMNode->prefix;}
function previous_sibling() {return new php4DOMElement($this->myDOMNode->previousSibling,$this->myOwnerDocument);} function previous_sibling() {return new php4DOMElement($this->myDOMNode->previousSibling,$this->myOwnerDocument);}
function remove_child($oldchild) {return new php4DOMElement($this->myDOMNode->removeChild($oldchild->myDOMNode),$this->myOwnerDocument);} function remove_child($oldchild) {return new php4DOMElement($this->myDOMNode->removeChild($oldchild->myDOMNode),$this->myOwnerDocument);}
function replace_child($oldnode,$newnode) {return new php4DOMElement($this->myDOMNode->replaceChild($oldnode->myDOMNode,$newnode->myDOMNode),$this->myOwnerDocument);} function replace_child($oldnode,$newnode) {return new php4DOMElement($this->myDOMNode->replaceChild($oldnode->myDOMNode,$newnode->myDOMNode),$this->myOwnerDocument);}
function set_content($text) function set_content($text)
{ {
if (($this->myDOMNode->hasChildNodes())&&($this->myDOMNode->firstChild->nodeType==XML_TEXT_NODE)) if (($this->myDOMNode->hasChildNodes())&&($this->myDOMNode->firstChild->nodeType==XML_TEXT_NODE))
$this->myDOMNode->removeChild($this->myDOMNode->firstChild); $this->myDOMNode->removeChild($this->myDOMNode->firstChild);
return $this->myDOMNode->appendChild($this->myDOMNode->ownerDocument->createTextNode($text)); return $this->myDOMNode->appendChild($this->myDOMNode->ownerDocument->createTextNode($text));
} }
} }
class php4DOMNodelist class php4DOMNodelist
{ {
var $myDOMNodelist; var $myDOMNodelist;
var $nodeset; var $nodeset;
function php4DOMNodelist($aDOMNodelist,$aOwnerDocument) function php4DOMNodelist($aDOMNodelist,$aOwnerDocument)
{ {
$this->myDOMNodelist=$aDOMNodelist; $this->myDOMNodelist=$aDOMNodelist;
$this->nodeset=array(); $this->nodeset=array();
$i=0; $i=0;
if (isset($this->myDOMNodelist)) if (isset($this->myDOMNodelist))
while ($node=$this->myDOMNodelist->item($i)) while ($node=$this->myDOMNodelist->item($i))
{ {
$this->nodeset[]=new php4DOMElement($node,$aOwnerDocument); $this->nodeset[]=new php4DOMElement($node,$aOwnerDocument);
$i++; $i++;
} }
} }
} }
class php4DOMXPath class php4DOMXPath
{ {
var $myDOMXPath; var $myDOMXPath;
var $myOwnerDocument; var $myOwnerDocument;
function php4DOMXPath($dom_document) function php4DOMXPath($dom_document)
{ {
$this->myOwnerDocument=$dom_document; $this->myOwnerDocument=$dom_document;
$this->myDOMXPath=new DOMXPath($dom_document->myDOMNode); $this->myDOMXPath=new DOMXPath($dom_document->myDOMNode);
} }
function query($eval_str,$contextnode) function query($eval_str,$contextnode)
{ {
if (isset($contextnode)) return new php4DOMNodelist($this->myDOMXPath->query($eval_str,$contextnode->myDOMNode),$this->myOwnerDocument); if (isset($contextnode)) return new php4DOMNodelist($this->myDOMXPath->query($eval_str,$contextnode->myDOMNode),$this->myOwnerDocument);
else return new php4DOMNodelist($this->myDOMXPath->query($eval_str),$this->myOwnerDocument); else return new php4DOMNodelist($this->myDOMXPath->query($eval_str),$this->myOwnerDocument);
} }
function xpath_register_ns($prefix,$namespaceURI) {return $this->myDOMXPath->registerNamespace($prefix,$namespaceURI);} function xpath_register_ns($prefix,$namespaceURI) {return $this->myDOMXPath->registerNamespace($prefix,$namespaceURI);}
} }
if (extension_loaded('xsl')) if (extension_loaded('xsl'))
{//See also: http://alexandre.alapetite.net/doc-alex/xslt-php4-php5/ {//See also: http://alexandre.alapetite.net/doc-alex/xslt-php4-php5/
function domxml_xslt_stylesheet($xslstring) {return new php4DomXsltStylesheet(DOMDocument::loadXML($xslstring));} function domxml_xslt_stylesheet($xslstring) {return new php4DomXsltStylesheet(DOMDocument::loadXML($xslstring));}
function domxml_xslt_stylesheet_doc($dom_document) {return new php4DomXsltStylesheet($dom_document);} function domxml_xslt_stylesheet_doc($dom_document) {return new php4DomXsltStylesheet($dom_document);}
function domxml_xslt_stylesheet_file($xslfile) {return new php4DomXsltStylesheet(DOMDocument::load($xslfile));} function domxml_xslt_stylesheet_file($xslfile) {return new php4DomXsltStylesheet(DOMDocument::load($xslfile));}
class php4DomXsltStylesheet class php4DomXsltStylesheet
{ {
var $myxsltProcessor; var $myxsltProcessor;
function php4DomXsltStylesheet($dom_document) function php4DomXsltStylesheet($dom_document)
{ {
$this->myxsltProcessor=new xsltProcessor(); $this->myxsltProcessor=new xsltProcessor();
$this->myxsltProcessor->importStyleSheet($dom_document); $this->myxsltProcessor->importStyleSheet($dom_document);
} }
function process($dom_document,$xslt_parameters=array(),$param_is_xpath=false) function process($dom_document,$xslt_parameters=array(),$param_is_xpath=false)
{ {
foreach ($xslt_parameters as $param=>$value) foreach ($xslt_parameters as $param=>$value)
$this->myxsltProcessor->setParameter('',$param,$value); $this->myxsltProcessor->setParameter('',$param,$value);
$myphp4DOMDocument=new php4DOMDocument(); $myphp4DOMDocument=new php4DOMDocument();
$myphp4DOMDocument->myDOMNode=$this->myxsltProcessor->transformToDoc($dom_document->myDOMNode); $myphp4DOMDocument->myDOMNode=$this->myxsltProcessor->transformToDoc($dom_document->myDOMNode);
return $myphp4DOMDocument; return $myphp4DOMDocument;
} }
function result_dump_file($dom_document,$filename) function result_dump_file($dom_document,$filename)
{ {
$html=$dom_document->myDOMNode->saveHTML(); $html=$dom_document->myDOMNode->saveHTML();
file_put_contents($filename,$html); file_put_contents($filename,$html);
return $html; return $html;
} }
function result_dump_mem($dom_document) {return $dom_document->myDOMNode->saveHTML();} function result_dump_mem($dom_document) {return $dom_document->myDOMNode->saveHTML();}
} }
} }
?> ?>

View File

@ -1,27 +1,27 @@
<?php <?php
/** /**
* @file languages/spanish.php * @file languages/spanish.php
* @author Iván-Benjamín García Torà <ivaniclixx AT gmail DOT com> * @author Iván-Benjamín García Torà <ivaniclixx AT gmail DOT com>
* @sa @link internalLang Internationalization @endlink * @sa @link internalLang Internationalization @endlink
* @ingroup internalLang * @ingroup internalLang
*/ */
$this->_strings = array( $this->_strings = array(
CAS_STR_USING_SERVER CAS_STR_USING_SERVER
=> 'usant servidor', => 'usant servidor',
CAS_STR_AUTHENTICATION_WANTED CAS_STR_AUTHENTICATION_WANTED
=> 'Autentificació CAS necessària!', => 'Autentificació CAS necessària!',
CAS_STR_LOGOUT CAS_STR_LOGOUT
=> 'Sortida de CAS necessària!', => 'Sortida de CAS necessària!',
CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED
=> 'Ja hauria d\ haver estat redireccionat al servidor CAS. Feu click <a href="%s">aquí</a> per a continuar.', => 'Ja hauria d\ haver estat redireccionat al servidor CAS. Feu click <a href="%s">aquí</a> per a continuar.',
CAS_STR_AUTHENTICATION_FAILED CAS_STR_AUTHENTICATION_FAILED
=> 'Autentificació CAS fallida!', => 'Autentificació CAS fallida!',
CAS_STR_YOU_WERE_NOT_AUTHENTICATED CAS_STR_YOU_WERE_NOT_AUTHENTICATED
=> '<p>No estàs autentificat.</p><p>Pots tornar a intentar-ho fent click <a href="%s">aquí</a>.</p><p>Si el problema persisteix hauría de contactar amb l\'<a href="mailto:%s">administrador d\'aquest llocc</a>.</p>', => '<p>No estàs autentificat.</p><p>Pots tornar a intentar-ho fent click <a href="%s">aquí</a>.</p><p>Si el problema persisteix hauría de contactar amb l\'<a href="mailto:%s">administrador d\'aquest llocc</a>.</p>',
CAS_STR_SERVICE_UNAVAILABLE CAS_STR_SERVICE_UNAVAILABLE
=> 'El servei `<b>%s</b>\' no està disponible (<b>%s</b>).' => 'El servei `<b>%s</b>\' no està disponible (<b>%s</b>).'
); );
?> ?>

View File

@ -1,27 +1,27 @@
<?php <?php
/** /**
* @file languages/english.php * @file languages/english.php
* @author Pascal Aubry <pascal.aubry at univ-rennes1.fr> * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr>
* @sa @link internalLang Internationalization @endlink * @sa @link internalLang Internationalization @endlink
* @ingroup internalLang * @ingroup internalLang
*/ */
$this->_strings = array( $this->_strings = array(
CAS_STR_USING_SERVER CAS_STR_USING_SERVER
=> 'using server', => 'using server',
CAS_STR_AUTHENTICATION_WANTED CAS_STR_AUTHENTICATION_WANTED
=> 'CAS Authentication wanted!', => 'CAS Authentication wanted!',
CAS_STR_LOGOUT CAS_STR_LOGOUT
=> 'CAS logout wanted!', => 'CAS logout wanted!',
CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED
=> 'You should already have been redirected to the CAS server. Click <a href="%s">here</a> to continue.', => 'You should already have been redirected to the CAS server. Click <a href="%s">here</a> to continue.',
CAS_STR_AUTHENTICATION_FAILED CAS_STR_AUTHENTICATION_FAILED
=> 'CAS Authentication failed!', => 'CAS Authentication failed!',
CAS_STR_YOU_WERE_NOT_AUTHENTICATED CAS_STR_YOU_WERE_NOT_AUTHENTICATED
=> '<p>You were not authenticated.</p><p>You may submit your request again by clicking <a href="%s">here</a>.</p><p>If the problem persists, you may contact <a href="mailto:%s">the administrator of this site</a>.</p>', => '<p>You were not authenticated.</p><p>You may submit your request again by clicking <a href="%s">here</a>.</p><p>If the problem persists, you may contact <a href="mailto:%s">the administrator of this site</a>.</p>',
CAS_STR_SERVICE_UNAVAILABLE CAS_STR_SERVICE_UNAVAILABLE
=> 'The service `<b>%s</b>\' is not available (<b>%s</b>).' => 'The service `<b>%s</b>\' is not available (<b>%s</b>).'
); );
?> ?>

View File

@ -1,28 +1,28 @@
<?php <?php
/** /**
* @file languages/english.php * @file languages/english.php
* @author Pascal Aubry <pascal.aubry at univ-rennes1.fr> * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr>
* @sa @link internalLang Internationalization @endlink * @sa @link internalLang Internationalization @endlink
* @ingroup internalLang * @ingroup internalLang
*/ */
$this->_strings = array( $this->_strings = array(
CAS_STR_USING_SERVER CAS_STR_USING_SERVER
=> 'utilisant le serveur', => 'utilisant le serveur',
CAS_STR_AUTHENTICATION_WANTED CAS_STR_AUTHENTICATION_WANTED
=> 'Authentication CAS nécessaire&nbsp;!', => 'Authentication CAS nécessaire&nbsp;!',
CAS_STR_LOGOUT CAS_STR_LOGOUT
=> 'Déconnexion demandée&nbsp;!', => 'Déconnexion demandée&nbsp;!',
CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED
=> 'Vous auriez du etre redirigé(e) vers le serveur CAS. Cliquez <a href="%s">ici</a> pour continuer.', => 'Vous auriez du etre redirigé(e) vers le serveur CAS. Cliquez <a href="%s">ici</a> pour continuer.',
CAS_STR_AUTHENTICATION_FAILED CAS_STR_AUTHENTICATION_FAILED
=> 'Authentification CAS infructueuse&nbsp;!', => 'Authentification CAS infructueuse&nbsp;!',
CAS_STR_YOU_WERE_NOT_AUTHENTICATED CAS_STR_YOU_WERE_NOT_AUTHENTICATED
=> '<p>Vous n\'avez pas été authentifié(e).</p><p>Vous pouvez soumettre votre requete à nouveau en cliquant <a href="%s">ici</a>.</p><p>Si le problème persiste, vous pouvez contacter <a href="mailto:%s">l\'administrateur de ce site</a>.</p>', => '<p>Vous n\'avez pas été authentifié(e).</p><p>Vous pouvez soumettre votre requete à nouveau en cliquant <a href="%s">ici</a>.</p><p>Si le problème persiste, vous pouvez contacter <a href="mailto:%s">l\'administrateur de ce site</a>.</p>',
CAS_STR_SERVICE_UNAVAILABLE CAS_STR_SERVICE_UNAVAILABLE
=> 'Le service `<b>%s</b>\' est indisponible (<b>%s</b>)' => 'Le service `<b>%s</b>\' est indisponible (<b>%s</b>)'
); );
?> ?>

View File

@ -1,27 +1,27 @@
<?php <?php
/** /**
* @file languages/german.php * @file languages/german.php
* @author Henrik Genssen <hg at mediafactory.de> * @author Henrik Genssen <hg at mediafactory.de>
* @sa @link internalLang Internationalization @endlink * @sa @link internalLang Internationalization @endlink
* @ingroup internalLang * @ingroup internalLang
*/ */
$this->_strings = array( $this->_strings = array(
CAS_STR_USING_SERVER CAS_STR_USING_SERVER
=> 'via Server', => 'via Server',
CAS_STR_AUTHENTICATION_WANTED CAS_STR_AUTHENTICATION_WANTED
=> 'CAS Authentifizierung erforderlich!', => 'CAS Authentifizierung erforderlich!',
CAS_STR_LOGOUT CAS_STR_LOGOUT
=> 'CAS Abmeldung!', => 'CAS Abmeldung!',
CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED
=> 'eigentlich h&auml;ten Sie zum CAS Server weitergeleitet werden sollen. Dr&uuml;cken Sie <a href="%s">hier</a> um fortzufahren.', => 'eigentlich h&auml;ten Sie zum CAS Server weitergeleitet werden sollen. Dr&uuml;cken Sie <a href="%s">hier</a> um fortzufahren.',
CAS_STR_AUTHENTICATION_FAILED CAS_STR_AUTHENTICATION_FAILED
=> 'CAS Anmeldung fehlgeschlagen!', => 'CAS Anmeldung fehlgeschlagen!',
CAS_STR_YOU_WERE_NOT_AUTHENTICATED CAS_STR_YOU_WERE_NOT_AUTHENTICATED
=> '<p>Sie wurden nicht angemeldet.</p><p>Um es erneut zu versuchen klicken Sie <a href="%s">hier</a>.</p><p>Wenn das Problem bestehen bleibt, kontkatieren Sie den <a href="mailto:%s">Administrator</a> dieser Seite.</p>', => '<p>Sie wurden nicht angemeldet.</p><p>Um es erneut zu versuchen klicken Sie <a href="%s">hier</a>.</p><p>Wenn das Problem bestehen bleibt, kontkatieren Sie den <a href="mailto:%s">Administrator</a> dieser Seite.</p>',
CAS_STR_SERVICE_UNAVAILABLE CAS_STR_SERVICE_UNAVAILABLE
=> 'Der Dienst `<b>%s</b>\' ist nicht verf&uuml;gbar (<b>%s</b>).' => 'Der Dienst `<b>%s</b>\' ist nicht verf&uuml;gbar (<b>%s</b>).'
); );
?> ?>

View File

@ -1,27 +1,27 @@
<?php <?php
/** /**
* @file languages/greek.php * @file languages/greek.php
* @author Vangelis Haniotakis <haniotak at ucnet.uoc.gr> * @author Vangelis Haniotakis <haniotak at ucnet.uoc.gr>
* @sa @link internalLang Internationalization @endlink * @sa @link internalLang Internationalization @endlink
* @ingroup internalLang * @ingroup internalLang
*/ */
$this->_strings = array( $this->_strings = array(
CAS_STR_USING_SERVER CAS_STR_USING_SERVER
=> '÷ñçóéìïðïéåßôáé ï åîõðçñåôçôÞò', => '÷ñçóéìïðïéåßôáé ï åîõðçñåôçôÞò',
CAS_STR_AUTHENTICATION_WANTED CAS_STR_AUTHENTICATION_WANTED
=> 'Áðáéôåßôáé ç ôáõôïðïßçóç CAS!', => 'Áðáéôåßôáé ç ôáõôïðïßçóç CAS!',
CAS_STR_LOGOUT CAS_STR_LOGOUT
=> 'Áðáéôåßôáé ç áðïóýíäåóç áðü CAS!', => 'Áðáéôåßôáé ç áðïóýíäåóç áðü CAS!',
CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED
=> 'Èá Ýðñåðå íá åß÷áôå áíáêáôåõèõíèåß óôïí åîõðçñåôçôÞ CAS. ÊÜíôå êëßê <a href="%s">åäþ</a> ãéá íá óõíå÷ßóåôå.', => 'Èá Ýðñåðå íá åß÷áôå áíáêáôåõèõíèåß óôïí åîõðçñåôçôÞ CAS. ÊÜíôå êëßê <a href="%s">åäþ</a> ãéá íá óõíå÷ßóåôå.',
CAS_STR_AUTHENTICATION_FAILED CAS_STR_AUTHENTICATION_FAILED
=> 'Ç ôáõôïðïßçóç CAS áðÝôõ÷å!', => 'Ç ôáõôïðïßçóç CAS áðÝôõ÷å!',
CAS_STR_YOU_WERE_NOT_AUTHENTICATED CAS_STR_YOU_WERE_NOT_AUTHENTICATED
=> '<p>Äåí ôáõôïðïéçèÞêáôå.</p><p>Ìðïñåßôå íá îáíáðñïóðáèÞóåôå, êÜíïíôáò êëßê <a href="%s">åäþ</a>.</p><p>Åáí ôï ðñüâëçìá åðéìåßíåé, åëÜôå óå åðáöÞ ìå ôïí <a href="mailto:%s">äéá÷åéñéóôÞ</a>.</p>', => '<p>Äåí ôáõôïðïéçèÞêáôå.</p><p>Ìðïñåßôå íá îáíáðñïóðáèÞóåôå, êÜíïíôáò êëßê <a href="%s">åäþ</a>.</p><p>Åáí ôï ðñüâëçìá åðéìåßíåé, åëÜôå óå åðáöÞ ìå ôïí <a href="mailto:%s">äéá÷åéñéóôÞ</a>.</p>',
CAS_STR_SERVICE_UNAVAILABLE CAS_STR_SERVICE_UNAVAILABLE
=> 'Ç õðçñåóßá `<b>%s</b>\' äåí åßíáé äéáèÝóéìç (<b>%s</b>).' => 'Ç õðçñåóßá `<b>%s</b>\' äåí åßíáé äéáèÝóéìç (<b>%s</b>).'
); );
?> ?>

View File

@ -1,24 +1,24 @@
<?php <?php
/** /**
* @file languages/languages.php * @file languages/languages.php
* Internationalization constants * Internationalization constants
* @author Pascal Aubry <pascal.aubry at univ-rennes1.fr> * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr>
* @sa @link internalLang Internationalization @endlink * @sa @link internalLang Internationalization @endlink
* @ingroup internalLang * @ingroup internalLang
*/ */
//@{ //@{
/** /**
* a phpCAS string index * a phpCAS string index
*/ */
define("CAS_STR_USING_SERVER", 1); define("CAS_STR_USING_SERVER", 1);
define("CAS_STR_AUTHENTICATION_WANTED", 2); define("CAS_STR_AUTHENTICATION_WANTED", 2);
define("CAS_STR_LOGOUT", 3); define("CAS_STR_LOGOUT", 3);
define("CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED", 4); define("CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED", 4);
define("CAS_STR_AUTHENTICATION_FAILED", 5); define("CAS_STR_AUTHENTICATION_FAILED", 5);
define("CAS_STR_YOU_WERE_NOT_AUTHENTICATED", 6); define("CAS_STR_YOU_WERE_NOT_AUTHENTICATED", 6);
define("CAS_STR_SERVICE_UNAVAILABLE", 7); define("CAS_STR_SERVICE_UNAVAILABLE", 7);
//@} //@}
?> ?>

View File

@ -1,27 +1,27 @@
<?php <?php
/** /**
* @file languages/spanish.php * @file languages/spanish.php
* @author Iván-Benjamín García Torà <ivaniclixx AT gmail DOT com> * @author Iván-Benjamín García Torà <ivaniclixx AT gmail DOT com>
* @sa @link internalLang Internationalization @endlink * @sa @link internalLang Internationalization @endlink
* @ingroup internalLang * @ingroup internalLang
*/ */
$this->_strings = array( $this->_strings = array(
CAS_STR_USING_SERVER CAS_STR_USING_SERVER
=> 'usando servidor', => 'usando servidor',
CAS_STR_AUTHENTICATION_WANTED CAS_STR_AUTHENTICATION_WANTED
=> '¡Autentificación CAS necesaria!', => '¡Autentificación CAS necesaria!',
CAS_STR_LOGOUT CAS_STR_LOGOUT
=> '¡Salida CAS necesaria!', => '¡Salida CAS necesaria!',
CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED
=> 'Ya debería haber sido redireccionado al servidor CAS. Haga click <a href="%s">aquí</a> para continuar.', => 'Ya debería haber sido redireccionado al servidor CAS. Haga click <a href="%s">aquí</a> para continuar.',
CAS_STR_AUTHENTICATION_FAILED CAS_STR_AUTHENTICATION_FAILED
=> '¡Autentificación CAS fallida!', => '¡Autentificación CAS fallida!',
CAS_STR_YOU_WERE_NOT_AUTHENTICATED CAS_STR_YOU_WERE_NOT_AUTHENTICATED
=> '<p>No estás autentificado.</p><p>Puedes volver a intentarlo haciendo click <a href="%s">aquí</a>.</p><p>Si el problema persiste debería contactar con el <a href="mailto:%s">administrador de este sitio</a>.</p>', => '<p>No estás autentificado.</p><p>Puedes volver a intentarlo haciendo click <a href="%s">aquí</a>.</p><p>Si el problema persiste debería contactar con el <a href="mailto:%s">administrador de este sitio</a>.</p>',
CAS_STR_SERVICE_UNAVAILABLE CAS_STR_SERVICE_UNAVAILABLE
=> 'El servicio `<b>%s</b>\' no está disponible (<b>%s</b>).' => 'El servicio `<b>%s</b>\' no está disponible (<b>%s</b>).'
); );
?> ?>