Author: as
Date: Tue Mar 4 10:30:30 2008
New Revision: 7506
Log:
- Some fixes in the tutorial.
Modified:
trunk/Feed/docs/examples/feed_creator/data/news.txt
trunk/Feed/docs/examples/feed_creator/data/news.xml
trunk/Feed/docs/tutorial.txt
trunk/Feed/src/feed.php
trunk/Feed/src/nodes/element.php
trunk/Feed/src/nodes/item.php
Modified: trunk/Feed/docs/examples/feed_creator/data/news.txt
==============================================================================
--- trunk/Feed/docs/examples/feed_creator/data/news.txt [iso-8859-1] (original)
+++ trunk/Feed/docs/examples/feed_creator/data/news.txt [iso-8859-1] Tue Mar 4
10:30:30 2008
@@ -16,7 +16,7 @@
[EMAIL PROTECTED]
The new release of eZ Publish is based on PHP 5....
-eZ Find.0 released
+eZ Find 1.0 released
http://find.ez.no
Derick
[EMAIL PROTECTED]
Modified: trunk/Feed/docs/examples/feed_creator/data/news.xml
==============================================================================
--- trunk/Feed/docs/examples/feed_creator/data/news.xml [iso-8859-1] (original)
+++ trunk/Feed/docs/examples/feed_creator/data/news.xml [iso-8859-1] Tue Mar 4
10:30:30 2008
@@ -5,7 +5,7 @@
<link>http://ez.no</link>
<description>This RSS feed contains news feeds for eZ Publish and eZ
Components.</description>
<managingEditor>[EMAIL PROTECTED] (Derick)</managingEditor>
- <pubDate>Mon, 03 Mar 2008 12:39:14 +0100</pubDate>
+ <pubDate>Tue, 04 Mar 2008 10:30:14 +0100</pubDate>
<generator>eZ Components</generator>
<docs>http://www.rssboard.org/rss-specification</docs>
<item>
@@ -23,7 +23,7 @@
<guid isPermaLink="true">http://publish.ez.no</guid>
</item>
<item>
- <title>eZ Find.0 released</title>
+ <title>eZ Find 1.0 released</title>
<link>http://find.ez.no</link>
<description>A new product in the eZ family of open-source
solutions...</description>
<author>[EMAIL PROTECTED] (Derick)</author>
Modified: trunk/Feed/docs/tutorial.txt
==============================================================================
--- trunk/Feed/docs/tutorial.txt [iso-8859-1] (original)
+++ trunk/Feed/docs/tutorial.txt [iso-8859-1] Tue Mar 4 10:30:30 2008
@@ -117,9 +117,9 @@
processor is used to parse and generate that type. The following feed
processors are supported by the Feed component:
-- RSS1 (ezcFeedRss1) - `RSS1 specifications`_
-- RSS2 (ezcFeedRss2) - `RSS2 specifications`_
-- ATOM (ezcFeedAtom) - `ATOM specifications`_
+- ATOM (ezcFeedAtom) - |ATOM-specifications|_
+- RSS1 (ezcFeedRss1) - |RSS1-specifications|_
+- RSS2 (ezcFeedRss2) - |RSS2-specifications|_
A new processor can be defined by creating a class which extends the class
ezcFeedProcessor and implements the interface ezcFeedParser, and adding it to
the
@@ -131,11 +131,11 @@
The following modules are supported by the Feed component:
-- Content (ezcFeedContentModule) - `Content specifications`_
+- Content (ezcFeedContentModule) - |Content-specifications|_
- CreativeCommons (ezcFeedCreativeCommonsModule) -
- `CreativeCommons specifications`_
-- DublinCore (ezcFeedDublinCoreModule) - `DublinCore specifications`_
-- iTunes (ezcFeedITunesModule) - `iTunes specifications`_
+ |CreativeCommons-specifications|_
+- DublinCore (ezcFeedDublinCoreModule) - |DublinCore-specifications|_
+- iTunes (ezcFeedITunesModule) - |iTunes-specifications|_
A new module can be defined by creating a class which extends the class
ezcFeedModule, and adding it to the ezcFeed::$supportedModules and
@@ -599,16 +599,25 @@
.. _iTunes: http://www.apple.com/itunes/
-.. _RSS1 specifications: http://web.resource.org/rss/1.0/spec
-.. _RSS2 specifications: http://www.rssboard.org/rss-specification
-.. _ATOM specifications: http://atompub.org/rfc4287.html
-
-.. _Content specifications: http://purl.org/rss/1.0/modules/content/
-.. _CreativeCommons specifications:
http://backend.userland.com/creativeCommonsRssModule
-.. _DublinCore specifications: http://dublincore.org/documents/dces/
-.. _iTunes specifications:
http://www.apple.com/itunes/store/podcaststechspecs.html
+.. _RSS1-specifications: http://web.resource.org/rss/1.0/spec
+.. _RSS2-specifications: http://www.rssboard.org/rss-specification
+.. _ATOM-specifications: http://atompub.org/rfc4287.html
+
+.. _Content-specifications: http://purl.org/rss/1.0/modules/content/
+.. _CreativeCommons-specifications:
http://backend.userland.com/creativeCommonsRssModule
+.. _DublinCore-specifications: http://dublincore.org/documents/dces/
+.. _iTunes-specifications:
http://www.apple.com/itunes/store/podcaststechspecs.html
.. _aggregator: http://en.wikipedia.org/wiki/List_of_feed_aggregators
+
+.. |ATOM-specifications| replace:: RFC 4287
+.. |RSS1-specifications| replace:: Specifications
+.. |RSS2-specifications| replace:: Specifications
+
+.. |Content-specifications| replace:: Specifications
+.. |CreativeCommons-specifications| replace:: Specifications
+.. |DublinCore-specifications| replace:: Specifications
+.. |iTunes-specifications| replace:: Specifications
Modified: trunk/Feed/src/feed.php
==============================================================================
--- trunk/Feed/src/feed.php [iso-8859-1] (original)
+++ trunk/Feed/src/feed.php [iso-8859-1] Tue Mar 4 10:30:30 2008
@@ -16,12 +16,12 @@
* processor is used to parse and generate that type.
*
* The following feed processors are supported by the Feed component:
+ * - ATOM ([EMAIL PROTECTED] ezcFeedAtom}) -
+ * [EMAIL PROTECTED] http://atompub.org/rfc4287.html RFC4287}
* - RSS1 ([EMAIL PROTECTED] ezcFeedRss1}) -
* [EMAIL PROTECTED] http://web.resource.org/rss/1.0/spec Specifications}
* - RSS2 ([EMAIL PROTECTED] ezcFeedRss2}) -
* [EMAIL PROTECTED] http://www.rssboard.org/rss-specification
Specifications}
- * - ATOM ([EMAIL PROTECTED] ezcFeedAtom}) -
- * [EMAIL PROTECTED] http://atompub.org/rfc4287.html RFC4287}
*
* A new processor can be defined by creating a class which extends the class
* [EMAIL PROTECTED] ezcFeedProcessor} and implements the interface [EMAIL
PROTECTED] ezcFeedParser},
Modified: trunk/Feed/src/nodes/element.php
==============================================================================
--- trunk/Feed/src/nodes/element.php [iso-8859-1] (original)
+++ trunk/Feed/src/nodes/element.php [iso-8859-1] Tue Mar 4 10:30:30 2008
@@ -14,6 +14,7 @@
*
* @package Feed
* @version //autogentag//
+ * @mainclass
*/
class ezcFeedElement
{
Modified: trunk/Feed/src/nodes/item.php
==============================================================================
--- trunk/Feed/src/nodes/item.php [iso-8859-1] (original)
+++ trunk/Feed/src/nodes/item.php [iso-8859-1] Tue Mar 4 10:30:30 2008
@@ -14,6 +14,7 @@
*
* @package Feed
* @version //autogentag//
+ * @mainclass
*/
class ezcFeedItem extends ezcFeedElement
{
--
svn-components mailing list
[email protected]
http://lists.ez.no/mailman/listinfo/svn-components