You are viewing a plain text version of this content. The canonical link for it is here.
Posted to zeta-commits@incubator.apache.org by ko...@apache.org on 2010/08/03 08:25:19 UTC

[zeta-commits] svn commit: r981774 [17/38] - in /incubator/zetacomponents/website: ./ build/ config/ config/content/ config/display/ content/ content/community/ content/community/ressources/ content/documentation/ content/documentation/trunk/ content/documentation/tr...

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/examples/feed_creator/feed_creator.php
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/examples/feed_creator/feed_creator.php?rev=981774&view=auto
==============================================================================
--- incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/examples/feed_creator/feed_creator.php (added)
+++ incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/examples/feed_creator/feed_creator.php Tue Aug  3 08:23:50 2010
@@ -0,0 +1,194 @@
+<?php
+// Required for the eZ Components autoload mechanism.
+// The components must be from SVN and the trunk directory must be in the path.
+// For PEAR installations, use: require_once 'ezc/Base/base.php';
+require_once "Base/src/base.php";
+
+/**
+ * Required for the eZ Components autoload mechanism.
+ *
+ * @param string $className A class to autoload
+ */
+function __autoload( $className )
+{
+    ezcBase::autoload( $className );
+}
+
+// *************************************************************************
+
+echo "eZ Components feed creator\n";
+if ( count( $argv ) < 3 )
+{
+    echo "\tFirst parameter: feed type (rss1, rss2 or atom)\n";
+    echo "\tSecond parameter: text file name\n";
+    die();
+}
+
+$feedType = $argv[1];
+$sourceFile = $argv[2];
+
+$data = readDataFile( $sourceFile );
+$xml = createFeed( $feedType, $data );
+
+$destFile = substr( $sourceFile, 0, strrpos( $sourceFile, '.' ) ) . '.xml';
+echo "Creating xml file {$destFile} with contents:\n\n";
+file_put_contents( $destFile, $xml );
+echo $xml . "\n\n";
+
+// *************************************************************************
+
+/**
+ * Reads data from a file and returns an array to be used with the function
+ * createFeed().
+ *
+ * The format of the returned array is:
+ * <code>
+ * array( 'title' => 'Feed title',
+ *        'link' => 'Feed link',
+ *        'published' => 'Feed published date',
+ *        'authorName' => 'Feed author name',
+ *        'authorEmail' => 'Feed author email',
+ *        'description' => 'Feed description',
+ *        'items' => array(
+ *                          0 => array( 'title' => 'Item 0 title',
+ *                                      'link' => 'Item 0 link',
+ *                                      'published' => 'Item 0 published date',
+ *                                      'authorName' => 'Item 0 author name',
+ *                                      'authorEmail' => 'Item 0 author email',
+ *                                      'description' => 'Item 0 description',
+ *                                    ),
+ *                          1 => array( 'title' => 'Item 1 title',
+ *                                      'link' => 'Item 1 link',
+ *                                      'published' => 'Item 1 published date',
+ *                                      'authorName' => 'Item 1 author name',
+ *                                      'authorEmail' => 'Item 1 author email',
+ *                                      'description' => 'Item 1 description',
+ *                                    ),
+ *                         )
+ *      );
+ * </code>
+ *
+ * @throws ezcBaseFileNotFoundException
+ *         If $fileName is not found
+ * @throws ezcBaseFilePermissionException
+ *         If $fileName cannot be opened
+ *
+ * @param string $fileName A file name containing a full or relative path
+ * @return array(mixed)
+ */
+function readDataFile( $fileName )
+{
+    if ( !file_exists( $fileName ) )
+    {
+        throw new ezcBaseFileNotFoundException( $fileName );
+    }
+
+    if ( ( $fh = @fopen( $fileName, 'r' ) ) === false )
+    {
+        throw new ezcBaseFilePermissionException( $fileName, ezcBaseFileException::READ );
+    }
+
+    $data = array();
+    $data['title'] = trim( fgets( $fh ) );
+    $data['link'] = trim( fgets( $fh ) );
+    $data['published'] = trim( fgets( $fh ) );
+    $data['authorName'] = trim( fgets( $fh ) );
+    $data['authorEmail'] = trim( fgets( $fh ) );
+    $data['description'] = trim( fgets( $fh ) );
+    $empty = fgets( $fh );
+
+    $data['item'] = array();
+    $i = 0;
+    while ( !feof( $fh ) )
+    {
+        $data['item'][$i] = array();
+        $data['item'][$i]['title'] = trim( fgets( $fh ) );
+        $data['item'][$i]['link'] = trim( fgets( $fh ) );
+        $data['item'][$i]['published'] = trim( fgets( $fh ) );
+        $data['item'][$i]['authorName'] = trim( fgets( $fh ) );
+        $data['item'][$i]['authorEmail'] = trim( fgets( $fh ) );
+        $data['item'][$i]['description'] = trim( fgets( $fh ) );
+        $empty = fgets( $fh );
+        $i++;
+    }
+    fclose( $fh );
+    return $data;
+}
+
+/**
+ * Uses the array $data to create a feed of type $feedType ('rss1', 'rss2' or
+ * 'atom') and returns it as a string.
+ *
+ * The format of the $data array is:
+ * <code>
+ * array( 'title' => 'Feed title',
+ *        'link' => 'Feed link',
+ *        'published' => 'Feed published date',
+ *        'authorName' => 'Feed author name',
+ *        'authorEmail' => 'Feed author email',
+ *        'description' => 'Feed description',
+ *        'items' => array(
+ *                          0 => array( 'title' => 'Item 0 title',
+ *                                      'link' => 'Item 0 link',
+ *                                      'published' => 'Item 0 published date',
+ *                                      'authorName' => 'Item 0 author name',
+ *                                      'authorEmail' => 'Item 0 author email',
+ *                                      'description' => 'Item 0 description',
+ *                                    ),
+ *                          1 => array( 'title' => 'Item 1 title',
+ *                                      'link' => 'Item 1 link',
+ *                                      'published' => 'Item 1 published date',
+ *                                      'authorName' => 'Item 1 author name',
+ *                                      'authorEmail' => 'Item 1 author email',
+ *                                      'description' => 'Item 1 description',
+ *                                    ),
+ *                         )
+ *      );
+ * </code>
+ *
+ * @param string $feedType The type of the feed to create ('rss1', 'rss2' or 'atom')
+ * @param array(mixed) $data Data for the elements of the feed
+ * @return string
+ */
+function createFeed( $feedType, $data )
+{
+    $feed = new ezcFeed();
+    $feed->title = $data['title'];
+    $feed->description = $data['description'];
+
+    $feed->id = $data['link'];
+
+    $link = $feed->add( 'link' );
+    $link->href = $data['link'];
+
+    $feed->updated = time();
+    $feed->published = $data['published'];
+
+    $author = $feed->add( 'author' );
+    $author->name = $data['authorName'];
+    $author->email = $data['authorEmail'];
+
+    foreach ( $data['item'] as $dataItem )
+    {
+        $item = $feed->add( 'item' );
+        $item->title = $dataItem['title'];
+        $item->description = $dataItem['description'];
+
+        $item->id = $dataItem['link'];
+        $item->id->isPermaLink = true; // RSS2 only
+
+        $link = $item->add( 'link' );
+        $link->href = $dataItem['link'];
+        $link->rel = 'alternate';
+
+        $item->updated = time();
+        $item->published = $dataItem['published'];
+
+        $author = $item->add( 'author' );
+        $author->name = $dataItem['authorName'];
+        $author->email = $dataItem['authorEmail'];
+    }
+
+    return $feed->generate( $feedType );
+}
+?>

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/img/feed-icon-14x14.png
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/img/feed-icon-14x14.png?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/img/feed-icon-14x14.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---exception.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---exception.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---exception.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---meta_data_missing.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---meta_data_missing.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---meta_data_missing.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---one_item_data_required.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---one_item_data_required.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---one_item_data_required.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---only_one_value_allowed.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---only_one_value_allowed.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---only_one_value_allowed.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---parse_error.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---parse_error.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---parse_error.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---undefined_module.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---undefined_module.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---undefined_module.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---unsupported_element.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---unsupported_element.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---unsupported_element.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---unsupported_module.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---unsupported_module.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---unsupported_module.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---unsupported_type.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---unsupported_type.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---exceptions---unsupported_type.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---feed.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---feed.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---feed.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---interfaces---element.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---interfaces---element.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---interfaces---element.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---interfaces---module.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---interfaces---module.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---interfaces---module.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---interfaces---parser.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---interfaces---parser.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---interfaces---parser.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---interfaces---processor.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---interfaces---processor.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---interfaces---processor.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---modules---content_module.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---modules---content_module.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---modules---content_module.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---modules---creativecommons_module.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---modules---creativecommons_module.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---modules---creativecommons_module.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---modules---dublincore_module.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---modules---dublincore_module.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---modules---dublincore_module.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---modules---geo_module.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---modules---geo_module.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---modules---geo_module.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---modules---itunes_module.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---modules---itunes_module.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---modules---itunes_module.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---processors---atom.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---processors---atom.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---processors---atom.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---processors---rss1.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---processors---rss1.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---processors---rss1.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---processors---rss2.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---processors---rss2.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---processors---rss2.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---category.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---category.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---category.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---cloud.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---cloud.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---cloud.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---content.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---content.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---content.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---date.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---date.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---date.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---enclosure.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---enclosure.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---enclosure.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---entry.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---entry.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---entry.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---generator.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---generator.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---generator.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---id.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---id.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---id.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---image.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---image.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---image.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---link.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---link.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---link.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---person.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---person.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---person.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---skip_days.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---skip_days.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---skip_days.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---skip_hours.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---skip_hours.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---skip_hours.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---source.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---source.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---source.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---text.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---text.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---text.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---text_input.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---text_input.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/_Feed---src---structs---text_input.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/classtrees.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/classtrees.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/classtrees.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/elementindex.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/elementindex.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/elementindex.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeed.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeed.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeed.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedAtLeastOneItemDataRequiredException.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedAtLeastOneItemDataRequiredException.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedAtLeastOneItemDataRequiredException.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedAtom.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedAtom.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedAtom.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedCategoryElement.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedCategoryElement.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedCategoryElement.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedCloudElement.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedCloudElement.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedCloudElement.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedContentElement.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedContentElement.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedContentElement.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedContentModule.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedContentModule.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedContentModule.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedCreativeCommonsModule.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedCreativeCommonsModule.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedCreativeCommonsModule.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedDateElement.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedDateElement.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedDateElement.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedDublinCoreModule.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedDublinCoreModule.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedDublinCoreModule.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedElement.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedElement.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedElement.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedEnclosureElement.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedEnclosureElement.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedEnclosureElement.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedEntryElement.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedEntryElement.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedEntryElement.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedException.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedException.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedException.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedGeneratorElement.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedGeneratorElement.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedGeneratorElement.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedGeoModule.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedGeoModule.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedGeoModule.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedITunesModule.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedITunesModule.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedITunesModule.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedIdElement.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedIdElement.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedIdElement.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedImageElement.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedImageElement.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedImageElement.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedLinkElement.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedLinkElement.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedLinkElement.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedModule.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedModule.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedModule.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedOnlyOneValueAllowedException.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedOnlyOneValueAllowedException.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedOnlyOneValueAllowedException.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedParseErrorException.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedParseErrorException.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedParseErrorException.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedParser.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedParser.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedParser.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedPersonElement.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedPersonElement.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedPersonElement.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedProcessor.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedProcessor.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedProcessor.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedRequiredMetaDataMissingException.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedRequiredMetaDataMissingException.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedRequiredMetaDataMissingException.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedRss1.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedRss1.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedRss1.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedRss2.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedRss2.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedRss2.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedSkipDaysElement.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedSkipDaysElement.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedSkipDaysElement.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedSkipHoursElement.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedSkipHoursElement.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedSkipHoursElement.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedSourceElement.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedSourceElement.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedSourceElement.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedTextElement.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedTextElement.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedTextElement.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedTextInputElement.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedTextInputElement.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedTextInputElement.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedUndefinedModuleException.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedUndefinedModuleException.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedUndefinedModuleException.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedUnsupportedElementException.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedUnsupportedElementException.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedUnsupportedElementException.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedUnsupportedModuleException.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedUnsupportedModuleException.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedUnsupportedModuleException.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedUnsupportedTypeException.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedUnsupportedTypeException.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/phpdoc/ezcFeedUnsupportedTypeException.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/specifications.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/specifications.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/specifications.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/specifications.txt
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/specifications.txt?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/specifications.txt
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/tutorial.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/tutorial.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/tutorial.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/tutorial.txt
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/tutorial.txt?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Feed/tutorial.txt
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/File.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/File.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/File.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/File/phpdoc.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/File/phpdoc.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/File/phpdoc.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/File/phpdoc/_File---src---file.php.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/File/phpdoc/_File---src---file.php.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/File/phpdoc/_File---src---file.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/File/phpdoc/classtrees.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/File/phpdoc/classtrees.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/File/phpdoc/classtrees.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/File/phpdoc/elementindex.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/File/phpdoc/elementindex.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/File/phpdoc/elementindex.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/File/phpdoc/ezcFile.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/File/phpdoc/ezcFile.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/File/phpdoc/ezcFile.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/File/tutorial.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/File/tutorial.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/File/tutorial.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/File/tutorial.txt
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/File/tutorial.txt?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/File/tutorial.txt
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/ez_green.php
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/ez_green.php?rev=981774&view=auto
==============================================================================
--- incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/ez_green.php (added)
+++ incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/ez_green.php Tue Aug  3 08:23:50 2010
@@ -0,0 +1,99 @@
+<?php
+/**
+ * File containing the ezcGraphPaletteEzGreen class
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ *
+ * @package Graph
+ * @version //autogentag//
+ * @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved.
+ * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
+ */
+/**
+ * Light green color pallet for ezcGraph based on green eZ colors
+ *
+ * @package Graph
+ */
+class ezcGraphPaletteEzGreen extends ezcGraphPalette
+{
+    /**
+     * Axiscolor 
+     * 
+     * @var ezcGraphColor
+     */
+    protected $axisColor = '#2E3436';
+
+    /**
+     * Array with colors for datasets
+     * 
+     * @var array
+     */
+    protected $dataSetColor = array(
+        '#9CAE86',
+        '#87B06B',
+        '#5C9A75',
+        '#467A6E',
+        '#4F6C57',
+    );
+
+    /**
+     * Array with symbols for datasets 
+     * 
+     * @var array
+     */
+    protected $dataSetSymbol = array(
+        ezcGraph::BULLET,
+    );
+
+    /**
+     * Name of font to use
+     * 
+     * @var string
+     */
+    protected $fontName = 'sans-serif';
+
+    /**
+     * Fontcolor 
+     * 
+     * @var ezcGraphColor
+     */
+    protected $fontColor = '#2E3436';
+
+    /**
+     * Backgroundcolor for chart
+     * 
+     * @var ezcGraphColor
+     */
+    protected $chartBackground = '#FFFFFF';
+
+    /**
+     * Padding in elements
+     * 
+     * @var integer
+     */
+    protected $padding = 1;
+
+    /**
+     * Margin of elements
+     * 
+     * @var integer
+     */
+    protected $margin = 0;
+}
+
+?>

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/ez_red.php
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/ez_red.php?rev=981774&view=auto
==============================================================================
--- incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/ez_red.php (added)
+++ incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/ez_red.php Tue Aug  3 08:23:50 2010
@@ -0,0 +1,99 @@
+<?php
+/**
+ * File containing the ezcGraphPaletteEzRed class
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ *
+ * @package Graph
+ * @version //autogentag//
+ * @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved.
+ * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
+ */
+/**
+ * Light red color pallet for ezcGraph based on red eZ colors
+ *
+ * @package Graph
+ */
+class ezcGraphPaletteEzRed extends ezcGraphPalette
+{
+    /**
+     * Axiscolor 
+     * 
+     * @var ezcGraphColor
+     */
+    protected $axisColor = '#2E3436';
+
+    /**
+     * Array with colors for datasets
+     * 
+     * @var array
+     */
+    protected $dataSetColor = array(
+        '#B50D2C',
+        '#C42926',
+        '#C34009',
+        '#CA3C04',
+        '#D86300',
+    );
+
+    /**
+     * Array with symbols for datasets 
+     * 
+     * @var array
+     */
+    protected $dataSetSymbol = array(
+        ezcGraph::BULLET,
+    );
+
+    /**
+     * Name of font to use
+     * 
+     * @var string
+     */
+    protected $fontName = 'sans-serif';
+
+    /**
+     * Fontcolor 
+     * 
+     * @var ezcGraphColor
+     */
+    protected $fontColor = '#2E3436';
+
+    /**
+     * Backgroundcolor for chart
+     * 
+     * @var ezcGraphColor
+     */
+    protected $chartBackground = '#FFFFFF';
+
+    /**
+     * Padding in elements
+     * 
+     * @var integer
+     */
+    protected $padding = 1;
+
+    /**
+     * Margin of elements
+     * 
+     * @var integer
+     */
+    protected $margin = 0;
+}
+
+?>

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/forum_evolution.php
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/forum_evolution.php?rev=981774&view=auto
==============================================================================
--- incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/forum_evolution.php (added)
+++ incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/forum_evolution.php Tue Aug  3 08:23:50 2010
@@ -0,0 +1,48 @@
+<?php
+
+require 'Base/src/base.php';
+function __autoload( $className )
+{
+        ezcBase::autoload( $className );
+}
+
+// Create the graph
+$graph = new ezcGraphBarChart();
+$graph->palette = new ezcGraphPaletteEzBlue();
+$graph->xAxis->majorGrid = '#888888';
+$graph->yAxis->majorGrid = '#888888';
+
+// Add the data and hilight norwegian data set
+$graph->data['Posts'] = new ezcGraphArrayDataSet( array(
+    'May 2006' => 1164,
+    'Jun 2006' => 965,
+    'Jul 2006' => 1014,
+    'Aug 2006' => 1269,
+    'Sep 2006' => 1269,
+    'Oct 2006' => 771,
+) );
+
+$graph->data['per day'] = new ezcGraphArrayDataSet( array(
+    'May 2006' => 38,
+    'Jun 2006' => 32,
+    'Jul 2006' => 33,
+    'Aug 2006' => 41,
+    'Sep 2006' => 34,
+    'Oct 2006' => 25,
+) );
+
+// Set graph title
+$graph->title = 'Forum posts in last months';
+
+// Use 3d renderer, and beautify it
+$graph->renderer = new ezcGraphRenderer3d();
+
+$graph->renderer->options->barChartGleam = .5;
+$graph->renderer->options->legendSymbolGleam = .5;
+
+$graph->driver = new ezcGraphSvgDriver();
+
+// Output the graph with std SVG driver
+$graph->render( 500, 200, 'forum_evolution.svg' );
+
+?>

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/forum_month.php
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/forum_month.php?rev=981774&view=auto
==============================================================================
--- incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/forum_month.php (added)
+++ incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/forum_month.php Tue Aug  3 08:23:50 2010
@@ -0,0 +1,47 @@
+<?php
+
+require 'Base/src/base.php';
+function __autoload( $className )
+{
+        ezcBase::autoload( $className );
+}
+
+// Require custom palette
+require dirname( __FILE__ ) . '/ez_red.php';
+
+// Create the graph
+$graph = new ezcGraphPieChart();
+$graph->palette = new ezcGraphPaletteEzRed();
+$graph->legend = false;
+
+// Add the data and hilight norwegian data set
+$graph->data['week'] = new ezcGraphArrayDataSet( array(
+    'Claudia Kosny' => 128,
+    'Kristof Coomans' => 70,
+    'Xavier Dutoit' => 64,
+    'David Jones' => 58,
+    'Lukasz Serwatka' => 45,
+    'Norman Leutner' => 22,
+    'Marko Zmak' => 20,
+    'sangib das' => 20,
+    'Nabil Alimi' => 19,
+) );
+
+// Set graph title
+$graph->title = '10 most active users on forum in last month';
+
+// Use 3d renderer, and beautify it
+$graph->renderer = new ezcGraphRenderer3d();
+$graph->renderer->options->pieChartShadowSize = 12;
+$graph->renderer->options->pieChartGleam = .5;
+$graph->renderer->options->dataBorder = false;
+$graph->renderer->options->pieChartHeight = 16;
+$graph->renderer->options->legendSymbolGleam = .5;
+$graph->renderer->options->pieChartOffset = 100;
+
+$graph->driver = new ezcGraphSvgDriver();
+
+// Output the graph with std SVG driver
+$graph->render( 500, 200, 'forum_month.svg' );
+
+?>

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/forum_weekly.php
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/forum_weekly.php?rev=981774&view=auto
==============================================================================
--- incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/forum_weekly.php (added)
+++ incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/forum_weekly.php Tue Aug  3 08:23:50 2010
@@ -0,0 +1,45 @@
+<?php
+
+require 'Base/src/base.php';
+function __autoload( $className )
+{
+        ezcBase::autoload( $className );
+}
+
+// Create the graph
+$graph = new ezcGraphPieChart();
+$graph->palette = new ezcGraphPaletteEzBlue();
+$graph->legend = false;
+
+// Add the data and hilight norwegian data set
+$graph->data['week'] = new ezcGraphArrayDataSet( array(
+    'Claudia Kosny' => 45,
+    'Lukasz Serwatka' => 35,
+    'Kristof Coomans' => 25,
+    'David Jones' => 23,
+    'Xavier Dutoit' => 20,
+    'sangib das' => 14,
+    'Mark Marsiglio' => 10,
+    'mark hayhurst' => 10,
+    'Paul Borgermans' => 10,
+    'Nabil Alimi' => 9,
+) );
+
+// Set graph title
+$graph->title = '10 most active users on forum in last week';
+
+// Use 3d renderer, and beautify it
+$graph->renderer = new ezcGraphRenderer3d();
+$graph->renderer->options->pieChartShadowSize = 12;
+$graph->renderer->options->pieChartGleam = .5;
+$graph->renderer->options->dataBorder = false;
+$graph->renderer->options->pieChartHeight = 16;
+$graph->renderer->options->legendSymbolGleam = .5;
+$graph->renderer->options->pieChartOffset = 100;
+
+$graph->driver = new ezcGraphSvgDriver();
+
+// Output the graph with std SVG driver
+$graph->render( 500, 200, 'forum_weekly.svg' );
+
+?>

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/forum_year.php
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/forum_year.php?rev=981774&view=auto
==============================================================================
--- incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/forum_year.php (added)
+++ incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/forum_year.php Tue Aug  3 08:23:50 2010
@@ -0,0 +1,45 @@
+<?php
+
+require 'Base/src/base.php';
+function __autoload( $className )
+{
+        ezcBase::autoload( $className );
+}
+
+// Require custom palette
+require dirname( __FILE__ ) . '/ez_green.php';
+
+// Create the graph
+$graph = new ezcGraphPieChart();
+$graph->palette = new ezcGraphPaletteEzGreen();
+$graph->legend = false;
+
+// Add the data and hilight norwegian data set
+$graph->data['week'] = new ezcGraphArrayDataSet( array(
+    'Lukasz Serwatka' => 1805,
+    'Paul Forsyth' => 1491,
+    'Paul Borgermans' => 1316,
+    'Kristof Coomans' => 956,
+    'Alex Jones' => 942 ,
+    'Bard Farstad' => 941,
+    'Tony Wood' => 900,
+) );
+
+// Set graph title
+$graph->title = 'Alltime 10 most active users on forum';
+
+// Use 3d renderer, and beautify it
+$graph->renderer = new ezcGraphRenderer3d();
+$graph->renderer->options->pieChartShadowSize = 12;
+$graph->renderer->options->pieChartGleam = .5;
+$graph->renderer->options->dataBorder = false;
+$graph->renderer->options->pieChartHeight = 16;
+$graph->renderer->options->legendSymbolGleam = .5;
+$graph->renderer->options->pieChartOffset = 100;
+
+$graph->driver = new ezcGraphSvgDriver();
+
+// Output the graph with std SVG driver
+$graph->render( 500, 200, 'forum_year.svg' );
+
+?>

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/php_magazine.php
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/php_magazine.php?rev=981774&view=auto
==============================================================================
--- incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/php_magazine.php (added)
+++ incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/php_magazine.php Tue Aug  3 08:23:50 2010
@@ -0,0 +1,45 @@
+<?php
+
+require 'Base/src/base.php';
+function __autoload( $className )
+{
+    ezcBase::autoload( $className );
+}
+
+// Create the graph
+$graph = new ezcGraphPieChart();
+
+$graph->palette = new ezcGraphPaletteEzRed();
+
+// Add the data and hilight norwegian data set
+$graph->data['articles'] = new ezcGraphArrayDataSet( array(
+    'English' => 1300000,
+    'Germany' => 452000,
+    'Netherlands' => 217000,
+    'Norway' => 70000,
+) );
+$graph->data['articles']->highlight['Germany'] = true;
+
+// Set graph title
+$graph->title = 'Wikipedia articles by country';
+
+// Modify pie chart label to only show amount and percent
+$graph->options->label = '%2$d (%3$.1f%%)';
+
+// Use 3d renderer, and beautify it
+$graph->renderer = new ezcGraphRenderer3d();
+
+$graph->renderer->options->pieChartShadowSize = 12;
+$graph->renderer->options->pieChartGleam = .5;
+$graph->renderer->options->dataBorder = false;
+
+$graph->renderer->options->pieChartHeight = 8;
+$graph->renderer->options->pieChartRotation = .8;
+$graph->renderer->options->pieChartOffset = 190;
+
+$graph->renderer->options->legendSymbolGleam = .5;
+
+// Output the graph with std SVG driver
+$graph->render( 400, 200, 'wikipedia.svg' );
+
+?>

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/wikipedia.php
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/wikipedia.php?rev=981774&view=auto
==============================================================================
--- incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/wikipedia.php (added)
+++ incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/examples/wikipedia.php Tue Aug  3 08:23:50 2010
@@ -0,0 +1,39 @@
+<?php
+
+require 'Base/src/base.php';
+function __autoload( $className )
+{
+        ezcBase::autoload( $className );
+}
+
+// Create the graph
+$graph = new ezcGraphPieChart();
+
+// Add the data and hilight norwegian data set
+$graph->data['articles'] = new ezcGraphArrayDataSet( array(
+    'English' => 1300000,
+    'Germany' => 452000,
+    'Netherlands' => 217000,
+    'Norway' => 70000,
+) );
+$graph->data['articles']->highlight['Norway'] = true;
+
+// Set graph title
+$graph->title = 'Articles by country';
+
+// Modify pie chart label to only show amount and percent
+$graph->options->label = '%2$d (%3$.1f%%)';
+
+// Use 3d renderer, and beautify it
+$graph->renderer = new ezcGraphRenderer3d();
+$graph->renderer->options->pieChartShadowSize = 12;
+$graph->renderer->options->pieChartGleam = .5;
+$graph->renderer->options->dataBorder = false;
+$graph->renderer->options->pieChartHeight = 16;
+$graph->renderer->options->legendSymbolGleam = .5;
+$graph->renderer->options->pieChartOffset = 100;
+
+// Output the graph with std SVG driver
+$graph->render( 500, 200, 'wiki_graph.svg' );
+
+?>

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/gallery.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/gallery.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/gallery.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/gallery.txt
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/gallery.txt?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/gallery.txt
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img.html
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img.html?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/bar_chart_3d.png
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/bar_chart_3d.png?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/bar_chart_3d.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/bar_chart_stacked.png
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/bar_chart_stacked.png?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/bar_chart_stacked.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/bar_chart_stacked_3d.png
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/bar_chart_stacked_3d.png?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/bar_chart_stacked_3d.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_annotations.png
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_annotations.png?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_annotations.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_average.png
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_average.png?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_average.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_average_3d.png
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_average_3d.png?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_average_3d.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_black.png
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_black.png?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_black.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_date_axis.png
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_date_axis.png?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_date_axis.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_mathematical.png
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_mathematical.png?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_mathematical.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_phpuc.png
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_phpuc.png?rev=981774&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_phpuc.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_rotated_labels.png
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Graph/img/line_chart_rotated_labels.png?rev=981774&view=auto
==============================================================================
Binary file - no diff available.