From 0c507ea18bf6f78f184d91ba8552ad9954cb058e Mon Sep 17 00:00:00 2001 From: Olav Morken <olav.morken@uninett.no> Date: Fri, 6 Jun 2008 06:00:04 +0000 Subject: [PATCH] Update class file names to match class names, in preparation for autoloading support. git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@607 44740490-163a-0410-bde0-09ae8108e29a --- lib/SimpleSAML/Consent/Consent.php | 2 +- lib/SimpleSAML/Consent/{ConsentStorage.php => Storage.php} | 0 ...geHandlerFlatfile.php => MetaDataStorageHandlerFlatFile.php} | 0 lib/SimpleSAML/Metadata/MetaDataStorageSource.php | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) rename lib/SimpleSAML/Consent/{ConsentStorage.php => Storage.php} (100%) rename lib/SimpleSAML/Metadata/{MetaDataStorageHandlerFlatfile.php => MetaDataStorageHandlerFlatFile.php} (100%) diff --git a/lib/SimpleSAML/Consent/Consent.php b/lib/SimpleSAML/Consent/Consent.php index 682518060..a092be252 100644 --- a/lib/SimpleSAML/Consent/Consent.php +++ b/lib/SimpleSAML/Consent/Consent.php @@ -4,7 +4,7 @@ require_once((isset($SIMPLESAML_INCPREFIX)?$SIMPLESAML_INCPREFIX:'') . 'SimpleSA require_once((isset($SIMPLESAML_INCPREFIX)?$SIMPLESAML_INCPREFIX:'') . 'SimpleSAML/Utilities.php'); require_once((isset($SIMPLESAML_INCPREFIX)?$SIMPLESAML_INCPREFIX:'') . 'SimpleSAML/SessionHandler.php'); require_once((isset($SIMPLESAML_INCPREFIX)?$SIMPLESAML_INCPREFIX:'') . 'SimpleSAML/Logger.php'); -require_once((isset($SIMPLESAML_INCPREFIX)?$SIMPLESAML_INCPREFIX:'') . 'SimpleSAML/Consent/ConsentStorage.php'); +require_once((isset($SIMPLESAML_INCPREFIX)?$SIMPLESAML_INCPREFIX:'') . 'SimpleSAML/Consent/Storage.php'); /** * The Consent class is used for Attribute Release consent. diff --git a/lib/SimpleSAML/Consent/ConsentStorage.php b/lib/SimpleSAML/Consent/Storage.php similarity index 100% rename from lib/SimpleSAML/Consent/ConsentStorage.php rename to lib/SimpleSAML/Consent/Storage.php diff --git a/lib/SimpleSAML/Metadata/MetaDataStorageHandlerFlatfile.php b/lib/SimpleSAML/Metadata/MetaDataStorageHandlerFlatFile.php similarity index 100% rename from lib/SimpleSAML/Metadata/MetaDataStorageHandlerFlatfile.php rename to lib/SimpleSAML/Metadata/MetaDataStorageHandlerFlatFile.php diff --git a/lib/SimpleSAML/Metadata/MetaDataStorageSource.php b/lib/SimpleSAML/Metadata/MetaDataStorageSource.php index 6906c80e2..db7132f88 100644 --- a/lib/SimpleSAML/Metadata/MetaDataStorageSource.php +++ b/lib/SimpleSAML/Metadata/MetaDataStorageSource.php @@ -1,6 +1,6 @@ <?php -require_once((isset($SIMPLESAML_INCPREFIX)?$SIMPLESAML_INCPREFIX:'') . 'SimpleSAML/Metadata/MetaDataStorageHandlerFlatfile.php'); +require_once((isset($SIMPLESAML_INCPREFIX)?$SIMPLESAML_INCPREFIX:'') . 'SimpleSAML/Metadata/MetaDataStorageHandlerFlatFile.php'); require_once((isset($SIMPLESAML_INCPREFIX)?$SIMPLESAML_INCPREFIX:'') . 'SimpleSAML/Metadata/MetaDataStorageHandlerXML.php'); require_once((isset($SIMPLESAML_INCPREFIX)?$SIMPLESAML_INCPREFIX:'') . 'SimpleSAML/Metadata/MetaDataStorageHandlerDynamicXML.php'); -- GitLab