- Timestamp:
- 06/28/08 15:45:08 (2 years ago)
- Files:
-
- database/fDatabase.php (modified) (1 diff)
- database/fISchema.php (modified) (2 diffs)
- database/fResult.php (modified) (1 diff)
- database/fSQLParsing.php (modified) (1 diff)
- database/fSQLTranslation.php (modified) (1 diff)
- database/fSchema.php (modified) (1 diff)
- database/fUnbufferedResult.php (modified) (1 diff)
- database/object_relational_mapping/fActiveRecord.php (modified) (1 diff)
- database/object_relational_mapping/fORM.php (modified) (1 diff)
- database/object_relational_mapping/fORMColumn.php (modified) (1 diff)
- database/object_relational_mapping/fORMDatabase.php (modified) (1 diff)
- database/object_relational_mapping/fORMFile.php (modified) (1 diff)
- database/object_relational_mapping/fORMRelated.php (modified) (1 diff)
- database/object_relational_mapping/fORMSchema.php (modified) (1 diff)
- database/object_relational_mapping/fORMValidation.php (modified) (1 diff)
- database/object_relational_mapping/fRecordSet.php (modified) (1 diff)
- datetime/fDate.php (modified) (1 diff)
- datetime/fTime.php (modified) (1 diff)
- datetime/fTimestamp.php (modified) (1 diff)
- ecommerce/fFinancialTransaction.php (modified) (1 diff)
- ecommerce/fShippingRates.php (modified) (1 diff)
- email/fEmail.php (modified) (1 diff)
- exceptions/fConnectivityException.php (modified) (1 diff)
- exceptions/fEmptySetException.php (modified) (1 diff)
- exceptions/fEnvironmentException.php (modified) (1 diff)
- exceptions/fExpectedException.php (modified) (1 diff)
- exceptions/fNoRemainingException.php (modified) (1 diff)
- exceptions/fNoResultsException.php (modified) (1 diff)
- exceptions/fNotFoundException.php (modified) (1 diff)
- exceptions/fPrintableException.php (modified) (1 diff)
- exceptions/fProgrammerException.php (modified) (1 diff)
- exceptions/fSQLException.php (modified) (1 diff)
- exceptions/fUnexpectedException.php (modified) (1 diff)
- exceptions/fValidationException.php (modified) (1 diff)
- filesystem/fDirectory.php (modified) (1 diff)
- filesystem/fFile.php (modified) (1 diff)
- filesystem/fFilesystem.php (modified) (1 diff)
- filesystem/fImage.php (modified) (1 diff)
- filesystem/fUpload.php (modified) (1 diff)
- request/fRequest.php (modified) (1 diff)
- request/fURL.php (modified) (2 diffs)
- request/fValidation.php (modified) (1 diff)
- response/fBuffer.php (modified) (1 diff)
- response/fCRUD.php (modified) (1 diff)
- response/fHTML.php (modified) (1 diff)
- response/fTemplating.php (modified) (1 diff)
- response/fXML.php (modified) (1 diff)
- security/fCryptography.php (modified) (1 diff)
- session/fAuthorization.php (modified) (1 diff)
- session/fMessaging.php (modified) (1 diff)
- session/fSession.php (modified) (1 diff)
- utility/fCore.php (modified) (1 diff)
- utility/fInflection.php (modified) (1 diff)
- utility/fUTF8.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
database/fDatabase.php
r58 r69 Hide Line Numbers 35 35 * @license http://flourishlib.com/license 36 36 * 37 * @link http://flourishlib.com/fDatabase 37 * @package Flourish 38 * @link http://flourishlib.com/fDatabase 38 39 * 39 * @version 1.0.040 * @changes 1.0.0The initial implementation [wb, 2007-09-25]40 * @version 1.0.0b 41 * @changes 1.0.0b The initial implementation [wb, 2007-09-25] 41 42 */ 42 43 class fDatabase database/fISchema.php
r48 r69 Hide Line Numbers 1 1 <?php 2 2 /** 3 * Gets database schema information3 * Provides database schema information 4 4 * 5 5 * @copyright Copyright (c) 2007-2008 William Bond … … 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fISchema 9 * @package Flourish 10 * @link http://flourishlib.com/fISchema 10 11 * 11 12 * @internal 12 13 * 13 * @version 1.0.014 * @changes 1.0.0The initial definition [wb, 2008-01-15]14 * @version 1.0.0b 15 * @changes 1.0.0b The initial definition [wb, 2008-01-15] 15 16 */ 16 17 interface fISchema database/fResult.php
r66 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fResult 9 * @package Flourish 10 * @link http://flourishlib.com/fResult 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-09-25]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-09-25] 13 14 */ 14 15 class fResult implements Iterator database/fSQLParsing.php
r48 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fSQLParsing 9 * @package Flourish 10 * @link http://flourishlib.com/fSQLParsing 10 11 * 11 12 * @internal 12 13 * 13 * @version 1.0.014 * @changes 1.0.0The initial implementation [wb, 2008-02-18]14 * @version 1.0.0b 15 * @changes 1.0.0b The initial implementation [wb, 2008-02-18] 15 16 */ 16 17 class fSQLParsing database/fSQLTranslation.php
r48 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fSQLTranslation 9 * @package Flourish 10 * @link http://flourishlib.com/fSQLTranslation 10 11 * 11 12 * @internal 12 13 * 13 * @version 1.0.014 * @changes 1.0.0The initial implementation [wb, 2007-09-25]14 * @version 1.0.0b 15 * @changes 1.0.0b The initial implementation [wb, 2007-09-25] 15 16 */ 16 17 class fSQLTranslation database/fSchema.php
r54 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fSchema 9 * @package Flourish 10 * @link http://flourishlib.com/fSchema 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-09-25]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-09-25] 13 14 */ 14 15 class fSchema implements fISchema database/fUnbufferedResult.php
r66 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fUnbufferedResult 10 * 11 * @version 1.0.0 12 * @changes 1.0.0 The initial implementation [wb, 2008-05-07] 9 * @package Flourish 10 * @link http://flourishlib.com/fUnbufferedResult 11 * 12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2008-05-07] 13 14 */ 14 15 class fUnbufferedResult implements Iterator database/object_relational_mapping/fActiveRecord.php
r60 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fActiveRecord 9 * @package Flourish 10 * @link http://flourishlib.com/fActiveRecord 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-08-04]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-08-04] 13 14 */ 14 15 abstract class fActiveRecord database/object_relational_mapping/fORM.php
r68 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fORM 9 * @package Flourish 10 * @link http://flourishlib.com/fORM 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-08-04]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-08-04] 13 14 */ 14 15 class fORM database/object_relational_mapping/fORMColumn.php
r59 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fORMColumn 10 * 11 * @version 1.0.0 12 * @changes 1.0.0 The initial implementation [wb, 2008-05-27] 9 * @package Flourish 10 * @link http://flourishlib.com/fORMColumn 11 * 12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2008-05-27] 13 14 */ 14 15 class fORMColumn database/object_relational_mapping/fORMDatabase.php
r60 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fORMDatabase 9 * @package Flourish 10 * @link http://flourishlib.com/fORMDatabase 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-08-04]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-08-04] 13 14 */ 14 15 class fORMDatabase database/object_relational_mapping/fORMFile.php
r66 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fORMFile 9 * @package Flourish 10 * @link http://flourishlib.com/fORMFile 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2008-05-28]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2008-05-28] 13 14 */ 14 15 class fORMFile database/object_relational_mapping/fORMRelated.php
r49 r69 Hide Line Numbers 9 9 * @license http://flourishlib.com/license 10 10 * 11 * @link http://flourishlib.com/fORMRelated 12 * 13 * @version 1.0.0 14 * @changes 1.0.0 The initial implementation [wb, 2007-12-30] 11 * @package Flourish 12 * @link http://flourishlib.com/fORMRelated 13 * 14 * @version 1.0.0b 15 * @changes 1.0.0b The initial implementation [wb, 2007-12-30] 15 16 */ 16 17 class fORMRelated database/object_relational_mapping/fORMSchema.php
r48 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fORMSchema 10 * 11 * @version 1.0.0 12 * @changes 1.0.0 The initial implementation [wb, 2007-06-14] 9 * @package Flourish 10 * @link http://flourishlib.com/fORMSchema 11 * 12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-06-14] 13 14 */ 14 15 class fORMSchema database/object_relational_mapping/fORMValidation.php
r60 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fORMValidation 9 * @package Flourish 10 * @link http://flourishlib.com/fORMValidation 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-08-04]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-08-04] 13 14 */ 14 15 class fORMValidation database/object_relational_mapping/fRecordSet.php
r66 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fRecordSet 9 * @package Flourish 10 * @link http://flourishlib.com/fRecordSet 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-08-04]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-08-04] 13 14 */ 14 15 class fRecordSet implements Iterator datetime/fDate.php
r22 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fDate 10 * 11 * @version 1.0.0 12 * @changes 1.0.0 The initial implementation [wb, 2008-02-10] 9 * @package Flourish 10 * @link http://flourishlib.com/fDate 11 * 12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2008-02-10] 13 14 */ 14 15 class fDate datetime/fTime.php
r22 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fTime 10 * 11 * @version 1.0.0 12 * @changes 1.0.0 The initial implementation [wb, 2008-02-12] 9 * @package Flourish 10 * @link http://flourishlib.com/fTime 11 * 12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2008-02-12] 13 14 */ 14 15 class fTime datetime/fTimestamp.php
r66 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fTimestamp 9 * @package Flourish 10 * @link http://flourishlib.com/fTimestamp 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2008-02-12]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2008-02-12] 13 14 */ 14 15 class fTimestamp ecommerce/fFinancialTransaction.php
r30 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fFinancialTransaction 9 * @package Flourish 10 * @link http://flourishlib.com/fFinancialTransaction 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-08-20]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-08-20] 13 14 */ 14 15 class fFinancialTransaction ecommerce/fShippingRates.php
r30 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fShippingRates 9 * @package Flourish 10 * @link http://flourishlib.com/fShippingRates 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-08-20]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-08-20] 13 14 */ 14 15 class fShippingRates email/fEmail.php
r66 r69 Hide Line Numbers 13 13 * @license http://flourishlib.com/license 14 14 * 15 * @link http://flourishlib.com/fEmail 15 * @package Flourish 16 * @link http://flourishlib.com/fEmail 16 17 * 17 * @version 1.0.018 * @changes 1.0.0The initial implementation [wb, 2008-06-23]18 * @version 1.0.0b 19 * @changes 1.0.0b The initial implementation [wb, 2008-06-23] 19 20 */ 20 21 class fEmail exceptions/fConnectivityException.php
r10 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fConnectivityException 9 * @package Flourish 10 * @link http://flourishlib.com/fConnectivityException 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-06-14]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-06-14] 13 14 */ 14 15 class fConnectivityException extends fUnexpectedException exceptions/fEmptySetException.php
r20 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fEmptySetException 9 * @package Flourish 10 * @link http://flourishlib.com/fEmptySetException 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-06-14]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-06-14] 13 14 */ 14 15 class fEmptySetException extends fExpectedException exceptions/fEnvironmentException.php
r10 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fEnvironmentException 9 * @package Flourish 10 * @link http://flourishlib.com/fEnvironmentException 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-06-14]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-06-14] 13 14 */ 14 15 class fEnvironmentException extends fUnexpectedException exceptions/fExpectedException.php
r10 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fExpectedException 9 * @package Flourish 10 * @link http://flourishlib.com/fExpectedException 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-06-14]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-06-14] 13 14 */ 14 15 abstract class fExpectedException extends fPrintableException exceptions/fNoRemainingException.php
r27 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fProgrammerException 9 * @package Flourish 10 * @link http://flourishlib.com/fNoRemainingException 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-06-14]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-06-14] 13 14 */ 14 15 class fNoRemainingException extends fExpectedException exceptions/fNoResultsException.php
r10 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fNoResultsException 9 * @package Flourish 10 * @link http://flourishlib.com/fNoResultsException 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-06-14]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-06-14] 13 14 */ 14 15 class fNoResultsException extends fExpectedException exceptions/fNotFoundException.php
r10 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fNotFoundException 9 * @package Flourish 10 * @link http://flourishlib.com/fNotFoundException 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-06-14]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-06-14] 13 14 */ 14 15 class fNotFoundException extends fExpectedException exceptions/fPrintableException.php
r49 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fPrintableException 9 * @package Flourish 10 * @link http://flourishlib.com/fPrintableException 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-06-14]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-06-14] 13 14 */ 14 15 abstract class fPrintableException extends Exception exceptions/fProgrammerException.php
r10 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fProgrammerException 9 * @package Flourish 10 * @link http://flourishlib.com/fProgrammerException 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-06-14]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-06-14] 13 14 */ 14 15 class fProgrammerException extends fUnexpectedException exceptions/fSQLException.php
r20 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fSQLException 9 * @package Flourish 10 * @link http://flourishlib.com/fSQLException 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-06-14]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-06-14] 13 14 */ 14 15 class fSQLException extends fUnexpectedException exceptions/fUnexpectedException.php
r49 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fUnexpectedException 9 * @package Flourish 10 * @link http://flourishlib.com/fUnexpectedException 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-06-14]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-06-14] 13 14 */ 14 15 abstract class fUnexpectedException extends fPrintableException exceptions/fValidationException.php
r10 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fValidationException 9 * @package Flourish 10 * @link http://flourishlib.com/fValidationException 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-06-14]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-06-14] 13 14 */ 14 15 class fValidationException extends fExpectedException filesystem/fDirectory.php
r49 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fDirectory 10 * 11 * @version 1.0.0 12 * @changes 1.0.0 The initial implementation [wb, 2007-12-21] 9 * @package Flourish 10 * @link http://flourishlib.com/fDirectory 11 * 12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-12-21] 13 14 */ 14 15 class fDirectory filesystem/fFile.php
r49 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fFile 10 * 11 * @version 1.0.0 12 * @changes 1.0.0 The initial implementation [wb, 2007-06-14] 9 * @package Flourish 10 * @link http://flourishlib.com/fFile 11 * 12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-06-14] 13 14 */ 14 15 class fFile filesystem/fFilesystem.php
r53 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fFilesystem 9 * @package Flourish 10 * @link http://flourishlib.com/fFilesystem 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2008-03-24]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2008-03-24] 13 14 */ 14 15 class fFilesystem filesystem/fImage.php
r53 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fImage 9 * @package Flourish 10 * @link http://flourishlib.com/fImage 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-12-19]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-12-19] 13 14 */ 14 15 class fImage extends fFile filesystem/fUpload.php
r49 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fUpload 10 * 11 * @version 1.0.0 12 * @changes 1.0.0 The initial implementation [wb, 2007-06-14] 9 * @package Flourish 10 * @link http://flourishlib.com/fUpload 11 * 12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-06-14] 13 14 */ 14 15 class fUpload request/fRequest.php
r57 r69 Hide Line Numbers 10 10 * @license http://flourishlib.com/license 11 11 * 12 * @link http://flourishlib.com/fRequest 13 * 14 * @version 1.0.0 15 * @changes 1.0.0 The initial implementation [wb, 2007-06-14] 12 * @package Flourish 13 * @link http://flourishlib.com/fRequest 14 * 15 * @version 1.0.0b 16 * @changes 1.0.0b The initial implementation [wb, 2007-06-14] 16 17 */ 17 18 class fRequest request/fURL.php
r61 r69 Hide Line Numbers 1 1 <?php 2 2 /** 3 * Provides url-related methods3 * Provides URL related functionality 4 4 * 5 5 * @copyright Copyright (c) 2007-2008 William Bond … … 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fURL 9 * @package Flourish 10 * @link http://flourishlib.com/fURL 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-06-14]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-06-14] 13 14 */ 14 15 class fURL request/fValidation.php
r63 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fValidation 10 * 11 * @version 1.0.0 12 * @changes 1.0.0 The initial implementation [wb, 2007-06-14] 9 * @package Flourish 10 * @link http://flourishlib.com/fValidation 11 * 12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-06-14] 13 14 */ 14 15 class fValidation response/fBuffer.php
r49 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fBuffer 9 * @package Flourish 10 * @link http://flourishlib.com/fBuffer 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2008-03-16]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2008-03-16] 13 14 */ 14 15 class fBuffer response/fCRUD.php
r49 r69 Hide Line Numbers 10 10 * @license http://flourishlib.com/license 11 11 * 12 * @link http://flourishlib.com/fCRUD 13 * 14 * @version 1.0.0 15 * @changes 1.0.0 The initial implementation [wb, 2007-06-14] 12 * @package Flourish 13 * @link http://flourishlib.com/fCRUD 14 * 15 * @version 1.0.0b 16 * @changes 1.0.0b The initial implementation [wb, 2007-06-14] 16 17 */ 17 18 class fCRUD response/fHTML.php
r57 r69 Hide Line Numbers 10 10 * @license http://flourishlib.com/license 11 11 * 12 * @link http://flourishlib.com/fHTML 13 * 14 * @version 1.0.0 15 * @changes 1.0.0 The initial implementation [wb, 2007-09-25] 12 * @package Flourish 13 * @link http://flourishlib.com/fHTML 14 * 15 * @version 1.0.0b 16 * @changes 1.0.0b The initial implementation [wb, 2007-09-25] 16 17 */ 17 18 class fHTML response/fTemplating.php
r49 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fTemplating 10 * 11 * @version 1.0.0 12 * @changes 1.0.0 The initial implementation [wb, 2007-06-14] 9 * @package Flourish 10 * @link http://flourishlib.com/fTemplating 11 * 12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-06-14] 13 14 */ 14 15 class fTemplating response/fXML.php
r57 r69 Hide Line Numbers 10 10 * @license http://flourishlib.com/license 11 11 * 12 * @link http://flourishlib.com/fXML 12 * @package Flourish 13 * @link http://flourishlib.com/fXML 13 14 * 14 * @version 1.0.015 * @changes 1.0.0The initial implementation [wb, 2008-01-13]15 * @version 1.0.0b 16 * @changes 1.0.0b The initial implementation [wb, 2008-01-13] 16 17 */ 17 18 class fXML security/fCryptography.php
r49 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fCryptography 10 * 11 * @version 1.0.0 12 * @changes 1.0.0 The initial implementation [wb, 2007-11-27] 9 * @package Flourish 10 * @link http://flourishlib.com/fCryptography 11 * 12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-11-27] 13 14 */ 14 15 class fCryptography session/fAuthorization.php
r66 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fAuthorization 10 * 11 * @version 1.0.0 12 * @changes 1.0.0 The initial implementation [wb, 2007-06-14] 9 * @package Flourish 10 * @link http://flourishlib.com/fAuthorization 11 * 12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-06-14] 13 14 */ 14 15 class fAuthorization session/fMessaging.php
r59 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fMessaging 9 * @package Flourish 10 * @link http://flourishlib.com/fMessaging 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2008-03-05]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2008-03-05] 13 14 */ 14 15 class fMessaging session/fSession.php
r23 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fSession 9 * @package Flourish 10 * @link http://flourishlib.com/fSession 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-06-14]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-06-14] 13 14 */ 14 15 class fSession utility/fCore.php
r59 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fCore 9 * @package Flourish 10 * @link http://flourishlib.com/fCore 10 11 * 11 * @version 1.0.012 * @changes 1.0.0The initial implementation [wb, 2007-09-25]12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-09-25] 13 14 */ 14 15 class fCore utility/fInflection.php
r53 r69 Hide Line Numbers 7 7 * @license http://flourishlib.com/license 8 8 * 9 * @link http://flourishlib.com/fInflection 10 * 11 * @version 1.0.0 12 * @changes 1.0.0 The initial implementation [wb, 2007-09-25] 9 * @package Flourish 10 * @link http://flourishlib.com/fInflection 11 * 12 * @version 1.0.0b 13 * @changes 1.0.0b The initial implementation [wb, 2007-09-25] 13 14 */ 14 15 class fInflection utility/fUTF8.php
r57 r69 Hide Line Numbers 11 11 * @license http://flourishlib.com/license 12 12 * 13 * @link http://flourishlib.com/fUTF8 13 * @package Flourish 14 * @link http://flourishlib.com/fUTF8 14 15 * 15 * @version 1.0.016 * @changes 1.0.0The initial implementation [wb, 2008-06-01]16 * @version 1.0.0b 17 * @changes 1.0.0b The initial implementation [wb, 2008-06-01] 17 18 */ 18 19 class fUTF8
