SVN Revision: 8187
- Fixed issue #12992: LDAP registerFetchData() now correctly uses normal case
attributes (eg. 'displayName').
- Added the ezcBasePersistable interface that can be used to ensure that the
object implementing this interface can be used with PersistentObject and
Search.
- Fixed issue #12993: Hierarchical caching does not prune items in the correct
situation. Note that the internal structure of the stack meta data changed
drastically with this fix. You need to reset() the whole storage after this
update.
- Fixed issue #12150: Connect to MSSQL database fails due to wrong driver
specification.
- Changed the class name ezcDbSchemaNonUniqueIndexNameValidator to
ezcDbSchemaUniqueIndexNameValidator.
- Changed ezcDbSchemaDbReader back to an interface, and created a common SQL
reader class that implements the common methods.
- Moved ezcDbSchema*Reader/getReaderType() to the new common SQL reader class
ezcDbSchemaCommonSqlReader.
- Created a common method ezcDbSchemaCommonSqlReader::processSchema() that
iterates over all the tables and gathers information about them and their
indexes.
- Removed ezcFeedCanNotParseException class, using ezcFeedParseErrorException
instead.
- Changed protected methods and variables from processor classes to private.
- Changed get() and set() functions from ezcFeedProcessor into __get() and
__set(), and added __isset().
- Added the registerFeed() and registerModule() functions to ezcFeed.
- Removed plural properties from ezcFeed (authors, categories, contributors,
items, links).
- Added feed element types (person, category, link, image, etc) to specify
different feed and module elements.
- Removed the method set() from ezcFeed and ezcFeedItem.
- Removed the class ezcFeedTools.
- Renamed ezcFeedItem to ezcFeedEntryElement.
- Added a feed type to the ezcFeed method generate() to specify the output
feed type, and made the ezcFeed constructor feed type argument optional.
- The properties are stored in ezcFeed and are assigned in the same way
without being dependent on the feed type.
- Fixed issue #13010: The transport connection handles correcly cases where
CRLF is split in 2 different blocks read from server.
- Changed the date_format() template function to only accept DateTime objects.
- Renamed the private ezcTranslation->callback_compile() and
ezcTranslation->parameter_callback_compile() to
ezcTranslation->callbackCompile() and
ezcTranslation->parameterCallbackCompile().
- Implemented issue #12694: replace reflection test for class type with spl
function.
- Implemented issue #12694: Replace reflection test for class type with SPL
function.
- Consistently use ezcDbHandler::quoteIdentifier() to quote SQL identifiers.