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 [21/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/Mail/display-example/display-example.php
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/display-example/display-example.php?rev=981774&view=auto
==============================================================================
--- incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/display-example/display-example.php (added)
+++ incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/display-example/display-example.php Tue Aug  3 08:23:50 2010
@@ -0,0 +1,186 @@
+<?php
+/**
+ * You can run this file for example with:
+ * php display-example.php ../../tests/parser/data/gmail/mail_with_attachment.mail
+ *
+ * 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.
+ *
+ */
+
+require_once "../tutorial/tutorial_autoload.php";
+
+$set = new ezcMailFileSet( array( $argv[1] ) );
+$parser = new ezcMailParser();
+$mail = $parser->parseMail( $set );
+echo formatMail( $mail[0] );
+
+function formatMail( $mail )
+{
+    $t = '';
+    $t .= "From:      ". formatAddress( $mail->from ). "\n";
+    $t .= "To:        ". formatAddresses( $mail->to ). "\n";
+    $t .= "Cc:        ". formatAddresses( $mail->cc ). "\n";
+    $t .= "Bcc:       ". formatAddresses( $mail->bcc ). "\n";
+    $t .= 'Date:      '. date( DATE_RFC822, $mail->timestamp ). "\n";
+    $t .= 'Subject:   '. $mail->subject . "\n";
+    $t .= "MessageId: ". $mail->messageId . "\n";
+    $t .= "\n";
+    $t .= formatMailPart( $mail->body );
+    return $t;
+}
+
+function formatMailPart( $part )
+{
+    if ( $part instanceof ezcMail )
+        return formatMail( $part );
+
+    if ( $part instanceof ezcMailText )
+        return formatMailText( $part );
+
+    if ( $part instanceof ezcMailFile )
+        return formatMailFile( $part );
+
+    if ( $part instanceof ezcMailRfc822Digest )
+        return formatMailRfc822Digest( $part );
+
+    if ( $part instanceof ezcMailMultiPart )
+        return formatMailMultipart( $part );
+
+    die( "No clue about the ". get_class( $part ) . "\n" );
+}
+
+function formatMailMultipart( $part )
+{
+    if ( $part instanceof ezcMailMultiPartAlternative )
+        return formatMailMultipartAlternative( $part );
+
+    if ( $part instanceof ezcMailMultiPartDigest )
+        return formatMailMultipartDigest( $part );
+
+    if ( $part instanceof ezcMailMultiPartRelated )
+        return formatMailMultipartRelated( $part );
+
+    if ( $part instanceof ezcMailMultiPartMixed )
+        return formatMailMultipartMixed( $part );
+
+    die( "No clue about the ". get_class( $part ) . "\n" );
+}
+
+function formatMailMultipartMixed( $part )
+{
+    $t = '';
+    foreach ( $part->getParts() as $key => $alternativePart )
+    {
+        $t .= "-MIXED-$key------------------------------------------------------------------\n";
+        $t .= formatMailPart( $alternativePart );
+    }
+    $t .= "-MIXED END----------------------------------------------------------\n";
+    return $t;
+}
+
+function formatMailMultipartRelated( $part )
+{
+    $t = '';
+    $t .= "-RELATED MAIN PART-----------------------------------------------------------\n";
+    $t .= formatMailPart( $part->getMainPart() );
+    foreach ( $part->getRelatedParts() as $key => $alternativePart )
+    {
+        $t .= "-RELATED PART $key-----------------------------------------------------\n";
+        $t .= formatMailPart( $alternativePart );
+    }
+    $t .= "-RELATED END--------------------------------------------------------\n";
+    return $t;
+}
+
+function formatMailMultipartDigest( $part )
+{
+    $t = '';
+    foreach ( $part->getParts() as $key => $alternativePart )
+    {
+        $t .= "-DIGEST-$key-----------------------------------------------------------------\n";
+        $t .= formatMailPart( $alternativePart );
+    }
+    $t .= "-DIGEST END---------------------------------------------------------\n";
+    return $t;
+}
+
+function formatMailRfc822Digest( $part )
+{
+    $t = '';
+    $t .= "-DIGEST-ITEM-$key------------------------------------------------------------\n";
+    $t .= "Item:\n\n";
+    $t .= formatMailpart( $part->mail );
+    $t .= "-DIGEST ITEM END----------------------------------------------------\n";
+    return $t;
+}
+
+function formatMailMultipartAlternative( $part )
+{
+    $t = '';
+    foreach ( $part->getParts() as $key => $alternativePart )
+    {
+        $t .= "-ALTERNATIVE ITEM $key-------------------------------------------------------\n";
+        $t .= formatMailPart( $alternativePart );
+    }
+    $t .= "-ALTERNATIVE END----------------------------------------------------\n";
+    return $t;
+}
+
+function formatMailText( $part )
+{
+    $t = '';
+    $t .= "Original Charset: {$part->originalCharset}\n";
+    $t .= "Charset:          {$part->charset}\n";
+    $t .= "Encoding:         {$part->encoding}\n";
+    $t .= "Type:             {$part->subType}\n";
+    $t .= "\n{$part->text}\n";
+    return $t;
+}
+
+function formatMailFile( $part )
+{
+    $t = '';
+    $t .= "Disposition Type: {$part->dispositionType}\n";
+    $t .= "Content Type:     {$part->contentType}\n";
+    $t .= "Mime Type:        {$part->mimeType}\n";
+    $t .= "Content ID:       {$part->contentId}\n";
+    $t .= "Filename:         {$part->fileName}\n";
+    $t .= "\n";
+    return $t;
+}
+
+function formatAddresses( $addresses )
+{
+    $fa = array();
+    foreach ( $addresses as $address )
+    {
+        $fa[] = formatAddress( $address );
+    }
+    return implode( ', ', $fa );
+}
+
+function formatAddress( $address )
+{
+    $name = '';
+    if ( !empty( $address->name ) )
+    {
+        $name = "{$address->name} ";
+    }
+    return $name . "<{$address->email}>";    
+}
+?>

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/mail-listing-example/app.ini
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/mail-listing-example/app.ini?rev=981774&view=auto
==============================================================================
--- incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/mail-listing-example/app.ini (added)
+++ incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/mail-listing-example/app.ini Tue Aug  3 08:23:50 2010
@@ -0,0 +1,14 @@
+[TemplateOptions]
+# Directories used by the template engine
+TemplatePath = /templates
+CompilePath = /compiled_templates
+
+[MailOptions]
+# How many emails to display per page
+PageSize = 10
+
+# Server options
+Server = Please specify a server name
+User = Please specify an user name
+Password = Please specify a password
+Mailbox = Inbox

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/mail-listing-example/mail.php
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/mail-listing-example/mail.php?rev=981774&view=auto
==============================================================================
--- incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/mail-listing-example/mail.php (added)
+++ incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/mail-listing-example/mail.php Tue Aug  3 08:23:50 2010
@@ -0,0 +1,133 @@
+<?php
+// Change this to where you keep the eZ Components
+ini_set( 'include_path', '/home/as/dev/ezcomponents/trunk:.' );
+require 'Base/src/base.php';
+
+// Include the PagingLinks custom block
+require 'app/paging_links.php';
+
+// Required method to be able to use the eZ Components
+function __autoload( $className )
+{
+        ezcBase::autoload( $className );
+}
+
+// Start counting how much the execution time will be
+$start = microtime( true );
+
+// Read configuration file app.ini with the Configuration component
+$iniFile = 'app';
+$config = ezcConfigurationManager::getInstance();
+$config->init( 'ezcConfigurationIniReader', dirname( __FILE__ ) );
+$options = array( 'templatePath' => dirname( __FILE__ ) . $config->getSetting( $iniFile, 'TemplateOptions', 'TemplatePath' ),
+                  'compilePath' => dirname( __FILE__ ) . $config->getSetting( $iniFile, 'TemplateOptions', 'CompilePath' ),
+                  'server' => $config->getSetting( $iniFile, 'MailOptions', 'Server' ),
+                  'user' => $config->getSetting( $iniFile, 'MailOptions', 'User' ),
+                  'password' => $config->getSetting( $iniFile, 'MailOptions', 'Password' ),
+                  'mailbox' => isset( $_GET['mailbox'] ) ? $_GET['mailbox'] : $config->getSetting( $iniFile, 'MailOptions', 'Mailbox' ),
+                  'pageSize' => $config->getSetting( $iniFile, 'MailOptions', 'PageSize' ),
+                  'currentPage' => isset( $_GET['page'] ) ? $_GET['page'] : null
+                  );
+
+// Create a mail IMAP transport object
+$transport = new ezcMailImapTransport( $options["server"] );
+$transport->authenticate( $options["user"], $options["password"] );
+$transport->selectMailbox( $options["mailbox"] );
+
+// Get the mailboxes names from the server
+$mailboxes = $transport->listMailboxes();
+sort( $mailboxes );
+
+// Get the UIDs of the messages in the selected mailbox
+// and the sizes of the messages
+$mailIDs = $transport->listUniqueIdentifiers();
+$messages = $transport->listMessages();
+
+// Calculate how many pages of mails there will be based on pageSize
+$numberOfPages = (int) floor( count( $messages ) / $options["pageSize"] + 1 );
+
+// See if currentPage fits in the range 1..numberOfPages
+if ( $options["currentPage"] <= 0 || $options["currentPage"] > $numberOfPages ||
+     ( count( $messages ) % $options["pageSize"] === 0 && $options["currentPage"] >= $numberOfPages ) )
+{
+    $options["currentPage"] = 1;
+}
+
+// Slice the array to the range defined by currentPage
+$sizes = array_slice( array_values( $messages ), ( $options["currentPage"] - 1 ) * $options["pageSize"], $options["pageSize"] );
+$mailIDs = array_slice( $mailIDs, ( $options["currentPage"] - 1 ) * $options["pageSize"], $options["pageSize"] );
+$messages = array_keys( $messages );
+
+// Read and parse the headers of the mails in the currentPage from the IMAP server
+$mails = array();
+$parser = new ezcMailParser();
+for ( $i = ( $options["currentPage"] - 1 ) * $options["pageSize"]; $i < min( $options["currentPage"] * $options["pageSize"], count( $messages ) ); $i++ )
+{
+    $msg = $transport->top( $messages[$i] );
+    $lines = preg_split( "/\r\n|\n/", $msg );
+    $msg = null;
+    foreach ( $lines as $line )
+    {
+        // eliminate the line that contains "Content-Type" at it would throw
+        // a notice for "multipart/related" (because the multipart object cannot
+        // be created due to missing the body)
+        if ( stripos( $line, "Content-Type:" ) === false )
+        {
+            $msg .= $line . PHP_EOL;
+        }
+        else
+        {
+            // insert code to analyse the Content-Type of the mail
+            // and add an "attachment" icon in case it is "multipart"
+        }
+    }
+    $set = new ezcMailVariableSet( $msg );
+    $mail = $parser->parseMail( $set );
+    $mails[] = $mail[0];
+}
+
+// Create some debug information (how many miliseconds the parsing took)
+$end = microtime( true );
+$debug = sprintf( "Execution time (without template): %.0f ms", ( $end - $start ) * 1000 ) . "\n";
+
+// Create a template configuration object based on $options
+$templateConfig = ezcTemplateConfiguration::getInstance();
+$templateConfig->templatePath = $options["templatePath"];
+$templateConfig->compilePath = $options["compilePath"];
+$templateConfig->context = new ezcTemplateXhtmlContext();
+$templateConfig->addExtension( "PagingLinks" );
+
+// Create a template object based on $templateConfig
+$template = new ezcTemplate();
+$template->configuration = $templateConfig;
+
+// Assign the template variables with the script variables
+$template->send->debug = $debug;
+$template->send->mailbox = $options["mailbox"];
+$template->send->mailboxes = $mailboxes;
+$template->send->selected = $options["currentPage"];
+$template->send->pageSize = $options["pageSize"];
+$template->send->mailCount = count( $messages );
+$template->send->numberOfPages = $numberOfPages;
+
+// Create an array to be passed to the template, which holds the headers the mails
+// in currentPage and other useful information like mail IDs
+$mailListing = array();
+for ( $i = 0; $i < count( $mails ); $i++ )
+{
+    $mailListing[$i] = array( 'number' => $messages[$i],
+                              'id' => $mailIDs[$i],
+                              'from' => $mails[$i]->from,
+                              'subject' => $mails[$i]->subject,
+                              'size' => $sizes[$i],
+                              'received' => $mails[$i]->timestamp
+                            );
+}
+$template->send->mails = $mailListing;
+
+// Process the template
+$template->process( "mail_listing.ezt" );
+
+// Display the output of the template
+echo $template->output;
+?>

Added: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/mail-listing-example/templates/mail_listing.ezt
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/mail-listing-example/templates/mail_listing.ezt?rev=981774&view=auto
==============================================================================
--- incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/mail-listing-example/templates/mail_listing.ezt (added)
+++ incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/mail-listing-example/templates/mail_listing.ezt Tue Aug  3 08:23:50 2010
@@ -0,0 +1,62 @@
+{use $mails, $mailCount, $selected, $pageSize, $numberOfPages, $mailbox, $mailboxes, $debug}
+<html>
+<head>
+	<title>{$mailbox}</title>
+	{literal}
+	<style>
+	th {
+		background: #CCCCCC;
+		border-bottom: 1px solid #999999;
+	}
+	td {
+		border-bottom: 1px solid #CCCCCC;
+	}
+	</style>
+	{/literal}
+</head>
+<body>
+
+{$debug}
+<hr />
+
+Mailboxes: 
+{foreach $mailboxes as $m}
+	{delimiter} | {/delimiter}
+	{if $mailbox == $m}
+		{$mailbox}
+	{else}
+		<a href="?mailbox={$m}">{$m}</a>
+	{/if}
+{/foreach}
+<hr />
+
+{paging_links selected=$selected numberOfPages=$numberOfPages pagesize=$pageSize delimiter="|" mailbox=$mailbox}
+<br /><br >
+
+<table border="0" cellpadding="2" cellspacing="0">
+<tr>
+    <th width="10" align="center"><input type="checkbox" name="mail" value="ALL" /></th>
+    <th width="60" align="left">Sender</th>
+    <th width="150" align="left">Subject</th>
+    <th width="80" align="right">Size</th>
+    <th width="120" align="right">Received</th>
+</tr>
+
+{foreach $mails as $mail}
+{if $mail["subject"] == null}
+	{$mail["subject"] = "[no subject]"}
+{/if}
+{if $mail["from"] == null}
+	{$mail["from"] = "[none]"}
+{/if}
+<tr>
+	<td align="center"><input type="checkbox" name="mail" value"{$mail["id"]}" /></td>
+	<td align="left">{$mail["from"]}</td>
+	<td align="left"><a href="/message.php?mailbox={$mailbox}&id={$mail["id"]}" target="_blank">{$mail["subject"]}</a></td>
+	<td align="right">{str_number( $mail["size"] / 1024, 1, ".", "," )} KB</td>
+	<td align="right">{date_format_timestamp( "D M-d, Y", $mail["received"] )}</td>
+</tr>
+{/foreach}
+
+</table>
+</body>

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

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

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---composer.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---exceptions---invalid_limit.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---exceptions---mail_exception.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---exceptions---no_such_message.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---exceptions---offset_out_of_range.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---exceptions---transport_exception.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---interfaces---part.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---interfaces---transport.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---internal---charset_convert.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---mail.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---options---composer_options.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---options---imap_options.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---options---imap_set_options.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---options---mail_options.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---options---parser_options.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---options---pop3_options.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---options---smtp_options.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---options---transport_options.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parser---headers_holder.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

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

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

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

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

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

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parser---parts---delivery_status_parser.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parser---parts---file_parser.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parser---parts---multipart_alternative_parser.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parser---parts---multipart_digest_parser.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parser---parts---multipart_mixed_parser.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parser---parts---multipart_parser.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parser---parts---multipart_related_parser.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parser---parts---multipart_report_parser.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parser---parts---rfc822_digest_parser.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parser---parts---rfc822_parser.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parser---parts---text_parser.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parser---shutdown_handler.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parts---delivery_status.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

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

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parts---fileparts---disk_file.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parts---fileparts---stream_file.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parts---fileparts---virtual_file.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parts---multipart.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parts---multiparts---multipart_alternative.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parts---multiparts---multipart_digest.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parts---multiparts---multipart_mixed.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parts---multiparts---multipart_related.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parts---multiparts---multipart_report.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parts---rfc822_digest.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---parts---text.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---structs---content_disposition_header.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---structs---mail_address.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---structs---walk_context.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---tools.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---transports---file---file_set.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---transports---imap---imap_set.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---transports---imap---imap_transport.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---transports---mbox---mbox_set.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---transports---mbox---mbox_transport.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---transports---mta---mta_transport.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---transports---mta---transport_mta.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---transports---pop3---pop3_set.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---transports---pop3---pop3_transport.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---transports---smtp---smtp_transport.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---transports---smtp---transport_smtp.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---transports---storage---storage_set.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

Propchange: incubator/zetacomponents/website/htdocs/documentation/trunk/Mail/phpdoc/_Mail---src---transports---variable---var_set.php.html
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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