From zeta-commits-return-117-apmail-incubator-zeta-commits-archive=incubator.apache.org@incubator.apache.org Tue Aug 03 08:27:39 2010 Return-Path: Delivered-To: apmail-incubator-zeta-commits-archive@minotaur.apache.org Received: (qmail 89032 invoked from network); 3 Aug 2010 08:27:39 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 3 Aug 2010 08:27:39 -0000 Received: (qmail 91646 invoked by uid 500); 3 Aug 2010 08:27:39 -0000 Delivered-To: apmail-incubator-zeta-commits-archive@incubator.apache.org Received: (qmail 91625 invoked by uid 500); 3 Aug 2010 08:27:38 -0000 Mailing-List: contact zeta-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: zeta-dev@incubator.apache.org Delivered-To: mailing list zeta-commits@incubator.apache.org Received: (qmail 91618 invoked by uid 99); 3 Aug 2010 08:27:38 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Aug 2010 08:27:38 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Aug 2010 08:27:30 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A20712388C4E; Tue, 3 Aug 2010 08:25:25 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Date: Tue, 03 Aug 2010 08:25:19 -0000 To: zeta-commits@incubator.apache.org From: kore@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100803082525.A20712388C4E@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Subject: [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 @@ +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 @@ +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} + + + {$mailbox} + {literal} + + {/literal} + + + +{$debug} +
+ +Mailboxes: +{foreach $mailboxes as $m} + {delimiter} | {/delimiter} + {if $mailbox == $m} + {$mailbox} + {else} + {$m} + {/if} +{/foreach} +
+ +{paging_links selected=$selected numberOfPages=$numberOfPages pagesize=$pageSize delimiter="|" mailbox=$mailbox} +

+ + + + + + + + + + +{foreach $mails as $mail} +{if $mail["subject"] == null} + {$mail["subject"] = "[no subject]"} +{/if} +{if $mail["from"] == null} + {$mail["from"] = "[none]"} +{/if} + + + + + + + +{/foreach} + +
SenderSubjectSizeReceived
{$mail["from"]}{$mail["subject"]}{str_number( $mail["size"] / 1024, 1, ".", "," )} KB{date_format_timestamp( "D M-d, Y", $mail["received"] )}
+ 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