diff -r 2251fb41dbc7 -r 1e110b03ae96 web/lib/Zend/Feed/Writer.php --- a/web/lib/Zend/Feed/Writer.php Sun Apr 21 10:07:03 2013 +0200 +++ b/web/lib/Zend/Feed/Writer.php Sun Apr 21 21:54:24 2013 +0200 @@ -14,33 +14,33 @@ * * @category Zend * @package Zend_Feed_Writer - * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Writer.php 20096 2010-01-06 02:05:09Z bkarwin $ + * @version $Id: Writer.php 24593 2012-01-05 20:35:02Z matthew $ */ /** * @category Zend * @package Zend_Feed_Writer - * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Zend_Feed_Writer { - /** - * Namespace constants - */ - const NAMESPACE_ATOM_03 = 'http://purl.org/atom/ns#'; + /** + * Namespace constants + */ + const NAMESPACE_ATOM_03 = 'http://purl.org/atom/ns#'; const NAMESPACE_ATOM_10 = 'http://www.w3.org/2005/Atom'; const NAMESPACE_RDF = 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'; const NAMESPACE_RSS_090 = 'http://my.netscape.com/rdf/simple/0.9/'; const NAMESPACE_RSS_10 = 'http://purl.org/rss/1.0/'; /** - * Feed type constants - */ - const TYPE_ANY = 'any'; - const TYPE_ATOM_03 = 'atom-03'; + * Feed type constants + */ + const TYPE_ANY = 'any'; + const TYPE_ATOM_03 = 'atom-03'; const TYPE_ATOM_10 = 'atom-10'; const TYPE_ATOM_ANY = 'atom'; const TYPE_RSS_090 = 'rss-090'; @@ -53,7 +53,7 @@ const TYPE_RSS_10 = 'rss-10'; const TYPE_RSS_20 = 'rss-20'; const TYPE_RSS_ANY = 'rss'; - + /** * PluginLoader instance used by component * @@ -81,7 +81,7 @@ 'entryRenderer' => array(), 'feedRenderer' => array(), ); - + /** * Set plugin loader for use with Extensions * @@ -257,7 +257,7 @@ self::registerExtension('Threading'); self::registerExtension('ITunes'); } - + public static function lcfirst($str) { $str[0] = strtolower($str[0]);