<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-16195</id>
	<title>Nabble - Zend MFS</title>
	<updated>2009-09-29T06:23:51Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Zend-MFS-f16195.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Zend-MFS-f16195.html" />
	<subtitle type="html">Zend &lt;a href=&quot;http://framework.zend.com/wiki/x/mRI&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;MFS&lt;/a&gt;</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-25662975</id>
	<title>Re: Weird problem with Zend_Mail</title>
	<published>2009-09-29T06:23:51Z</published>
	<updated>2009-09-29T06:23:51Z</updated>
	<author>
		<name>marcis</name>
	</author>
	<content type="html">Hi Ralf,
&lt;br&gt;&lt;br&gt;It's a long time ago, but did you guess what happened about this issue? I'm having the same problem...
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Ralf Eggert wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi,
&lt;br&gt;&lt;br&gt;I just updated to ZF 0.8.0 and have problems with some of my local unit
&lt;br&gt;tests which test. The messages I get look just weird to me:
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------
&lt;br&gt;Fatal error: Exception thrown without a stack frame in Unknown on line 0
&lt;br&gt;&lt;br&gt;Call Stack:
&lt;br&gt;&amp;nbsp; &amp;nbsp; 0.0017 &amp;nbsp; 1. {main}() E:\_library\PHPUnit\TextUI\Command.php:0
&lt;br&gt;&amp;nbsp; &amp;nbsp; 0.2168 &amp;nbsp; 2. PHPUnit_TextUI_Command::main()
&lt;br&gt;E:\_library\PHPUnit\TextUI\Command.php:401
&lt;br&gt;&lt;br&gt;Warning: Unknown: Failed to write session data (user). Please verify
&lt;br&gt;that the current setting of session.save_path is correct () in Unknown
&lt;br&gt;on line 0
&lt;br&gt;&lt;br&gt;Call Stack:
&lt;br&gt;&amp;nbsp; &amp;nbsp; 0.0017 &amp;nbsp; 1. {main}() E:\_library\PHPUnit\TextUI\Command.php:0
&lt;br&gt;&amp;nbsp; &amp;nbsp; 0.2168 &amp;nbsp; 2. PHPUnit_TextUI_Command::main()
&lt;br&gt;E:\_library\PHPUnit\TextUI\Command.php:401
&lt;br&gt;------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;It took me some while to track down the code line which causes this
&lt;br&gt;problem. I finally found it in Zend_Mail_Protocol_Smtp::_startSession().
&lt;br&gt;When I comment out the single line, these message are not shown any more
&lt;br&gt;but an exception is thrown:
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------
&lt;br&gt;Zend_Mail_Protocol_Exception: A valid session has not been started
&lt;br&gt;E:\_library\Zend\Mail\Transport\Smtp.php:185
&lt;br&gt;E:\_library\Zend\Mail\Transport\Abstract.php:330
&lt;br&gt;E:\_library\Zend\Mail.php:563
&lt;br&gt;E:\www.travello-dev.com\tests\unit\framework\MailTest.php:68
&lt;br&gt;------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;This exception makes sense to me since there is a check for $this-&amp;gt;_sess
&lt;br&gt;in Zend_Mail_Protocol_Smtp::mail() method.
&lt;br&gt;&lt;br&gt;What I do not understand is, why the single line 399 in
&lt;br&gt;Zend_Mail_Protocol_Smtp::_startSession() is causing this problem by just
&lt;br&gt;setting the $this-&amp;gt;_sess value to true.
&lt;br&gt;&lt;br&gt;To give some further information. I am working on a Win XP machine and I
&lt;br&gt;am using Fakemail as a local mailer daemon to check in my unit tests if
&lt;br&gt;the mails are sent as expected. With the nightly 20070215-3419 I used
&lt;br&gt;before I upgraded to ZF 0.8.0 this problem did not occur.
&lt;br&gt;&lt;br&gt;Is this worth to open a new issue for it?
&lt;br&gt;&lt;br&gt;Best Regards,
&lt;br&gt;&lt;br&gt;Ralf
&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Weird-problem-with-Zend_Mail-tp9132396p25662975.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25137622</id>
	<title>Zend_Search_Lucene - How to add filtering to queries?</title>
	<published>2009-08-25T09:21:18Z</published>
	<updated>2009-08-25T09:21:18Z</updated>
	<author>
		<name>j5</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;Based on the following search index build code I am trying to figure out how to add &amp;quot;filtering by secondary fields&amp;quot; to a query. I will explain below.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Here is the search index build code.
&lt;br&gt;&lt;br&gt;&amp;lt;?php
&lt;br&gt;// Create search index
&lt;br&gt;$index = Zend_Search_Lucene::create($indexPath);
&lt;br&gt;&lt;br&gt;$articles = getArticles();
&lt;br&gt;&lt;br&gt;foreach($articles as $article) {
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Create new Document
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $doc = new Zend_Search_Lucene_Document();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Index article id
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $doc-&amp;gt;addField(Zend_Search_Lucene_Field::Keyword('article_id', $article['id']));
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Index author id
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $doc-&amp;gt;addField(Zend_Search_Lucene_Field::Keyword('author_id', $article['author_id']));
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Index category id
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $doc-&amp;gt;addField(Zend_Search_Lucene_Field::Keyword('category_id', $article['category_id']));
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Index title
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $doc-&amp;gt;addField(Zend_Search_Lucene_Field::UnStored('title', $article['title']));
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Index body
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $doc-&amp;gt;addField(Zend_Search_Lucene_Field::UnStored('contents', $article['body']));
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Add document to the index
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $index-&amp;gt;addDocument($doc);
&lt;br&gt;&lt;br&gt;}
&lt;br&gt;&lt;br&gt;$index-&amp;gt;optimize();
&lt;br&gt;$index-&amp;gt;commit();
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Here is an example of performing a search query.
&lt;br&gt;&lt;br&gt;$terms = &amp;quot;keywords here&amp;quot;;
&lt;br&gt;$query = Zend_Search_Lucene_Search_QueryParser::parse($terms);		
&lt;br&gt;$hits &amp;nbsp;= $index-&amp;gt;find($query);	
&lt;br&gt;&lt;br&gt;&lt;br&gt;Based upon the above index build code, how could i &amp;quot;filter&amp;quot; the given search query code to allow me to add filters to the query.
&lt;br&gt;&lt;br&gt;Filters such as
&lt;br&gt;1) limiting the search query results to a list of author ids
&lt;br&gt;2) limiting the search query results to a list of category ids
&lt;br&gt;&lt;br&gt;&lt;br&gt;Any help on this would be much appreciated. I found the ZF manual confusing when it comes to building query building.
&lt;br&gt;&lt;br&gt;Thanks!</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Zend_Search_Lucene---How-to-add-filtering-to-queries--tp25137622p25137622.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24446969</id>
	<title>Bomb explodes at Transformers screening</title>
	<published>2009-07-12T02:08:54Z</published>
	<updated>2009-07-12T02:08:54Z</updated>
	<author>
		<name>Zend MFS mailing list</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot; &quot;http://www.w3.org/TR/html4/loose.dtd&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;New This Week&lt;/title&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;

&lt;/head&gt;

&lt;body&gt;

&lt;table width=&quot;510&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;10&quot; bgcolor=&quot;#FFFFFF&quot;&gt;
  &lt;tr&gt;
&lt;td&gt;&lt;p align=&quot;center&quot;&gt;
&lt;a href=&quot;http://aaa6d.aibefcco.cn/dynaagean.asp?adqpoeqcq=aaa6d12a59f80e064e137497&amp;gewosoe=aaa6d12a59f8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;img src=&quot;http://images.aibefcco.cn/library.jpg&quot; alt=&quot;Click here&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/p&gt;

&lt;table width=&quot;490&quot; border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;5&quot;&gt;
&lt;tr&gt;
&lt;td width=&quot;50%&quot;&gt;&lt;span class=&quot;text&quot;&gt;&lt;b&gt;New This Week for July 12, 2009&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;
&lt;td width=&quot;50%&quot;&gt;&lt;div align=&quot;right&quot; class=&quot;text&quot;&gt;&amp;nbsp;&lt;a href=&quot;http://aaa6d.aibefcco.cn/bjbqsi.asp?oufyfyqd=aaa6d12a59f80e064e137497&amp;irilaukirq=aaa6d12a59f8&quot; title=&quot;share this&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Share
	New This Week&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;

&lt;table width=&quot;490&quot; border=&quot;0&quot; cellpadding=&quot;10&quot; bgcolor=&quot;#FFF8DE&quot;&gt;
&lt;tr&gt;
&lt;td width=&quot;35%&quot; valign=&quot;top&quot; class=&quot;tipbox&quot;&gt;&lt;span class=&quot;tipbox&quot;&gt;&lt;strong&gt;
Subscriber Services&lt;/strong&gt;&lt;br&gt;
&lt;a href=&quot;http://e06.aibefcco.cn/cuoduseo.asp?tukap=aaa6d12a59f80e064e137497&amp;tasulo=aaa6d12a59f8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Read This Online&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://e06.aibefcco.cn/gykuat.asp?uixekelaxe=aaa6d12a59f80e064e137497&amp;eidynoxuor=aaa6d12a59f8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Subscribe by RSS&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://e06.aibefcco.cn/yzezaeu.asp?ehosjcj=aaa6d12a59f80e064e137497&amp;ikazupyruf=aaa6d12a59f8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Subscribe by Email&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://e06.aibefcco.cn/ynjfy.asp?lyzjak=aaa6d12a59f80e064e137497&amp;xqhoepu=aaa6d12a59f8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Manage Your Subscription&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://e06.aibefcco.cn/udapq.asp?fuhurafotu=aaa6d12a59f80e064e137497&amp;yierofob=aaa6d12a59f8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Browse the New This Week Archive&lt;/a&gt;&lt;br&gt;
&lt;/span&gt;&lt;/td&gt;

&lt;/tr&gt;

&lt;/table&gt;
&lt;table width=&quot;490&quot; height=&quot;1&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; bgcolor=&quot;#E5DABC&quot;&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;&lt;/table&gt;&lt;br&gt;


&lt;p class=&quot;text&quot; style=&quot;text-align: center&quot;&gt;&lt;strong&gt;Thanks for reading!&lt;/strong&gt;&lt;/p&gt;

&lt;table width=&quot;100%&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
  &lt;tr&gt;
    &lt;td width=&quot;50&quot;&gt;&amp;nbsp;&lt;/td&gt;
    &lt;/tr&gt;

  &lt;tr&gt;
    &lt;td&gt;&lt;span class=&quot;tipbox&quot;&gt;&lt;strong&gt;Copyright Notice&lt;br&gt;

    &lt;/strong&gt;&lt;/span&gt;&lt;span class=&quot;small&quot;&gt;Use of the annotations from this list
	must be accompanied by:&lt;br&gt;
          &lt;br&gt;
    Copyright 2009 Eafylq.&lt;br&gt;
  &lt;br&gt;
    We encourage you to cite our records, to forward all or part of New This
	Week to colleagues and other discussion or announcement lists, to include
	citations to our resources in your pathfinders and training materials, and
	to otherwise leverage this publicly-funded resource.&lt;/span&gt;&lt;/td&gt;

  &lt;/tr&gt;
  &lt;/table&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;/table&gt;

&lt;p class=&quot;text&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;p class=&quot;text&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;/body&gt;


&lt;/html&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Bomb-explodes-at-Transformers-screening-tp24446969p24446969.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24356758</id>
	<title>Re: Zend_Pdf text wrapping</title>
	<published>2009-07-06T07:54:00Z</published>
	<updated>2009-07-06T07:54:00Z</updated>
	<author>
		<name>Martijn Korse</name>
	</author>
	<content type="html">Because the current version of Zend-PDF doesn't support it, I created this class a while ago:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://devshed.excudo.net/scripts/php/source/excudo+pdf+textblock&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://devshed.excudo.net/scripts/php/source/excudo+pdf+textblock&lt;/a&gt;&lt;br&gt;&lt;br&gt;It does text-wrapping and alignment.
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Jaime Garcia-2 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hello,
&lt;br&gt;&lt;br&gt;Has somebody experience with text (drawText function) wrapping in pdf
&lt;br&gt;documents created from Zend_Pdf? &amp;nbsp;What I want is wrap text in a defined area
&lt;br&gt;in the document. I will appreciate so much your help.
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;Jaime.
&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;div class=&quot;signature&quot;&gt;&lt;a href=&quot;http://devshed.excudo.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://devshed.excudo.net&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Zend_Pdf-text-wrapping-tp24284251p24356758.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24307367</id>
	<title>Re: Zend_Pdf text wrapping</title>
	<published>2009-07-02T07:07:09Z</published>
	<updated>2009-07-02T07:07:09Z</updated>
	<author>
		<name>Nico Edtinger-4</name>
	</author>
	<content type="html">See my comment at the end of the proposal for code and a test file.
&lt;br&gt;&lt;br&gt;Jaime Garcia wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I will be glad to check it out and comment according. Thank you a &amp;nbsp;
&lt;br&gt;&amp;gt; lot Nico.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt; Jaime.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; -----Mensaje original-----
&lt;br&gt;&amp;gt;&amp;gt; De: Nico Edtinger [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24307367&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;list-zf-formats@...&lt;/a&gt;]
&lt;br&gt;&amp;gt;&amp;gt; Enviado el: Miércoles, 01 de Julio de 2009 11:14 a.m.
&lt;br&gt;&amp;gt;&amp;gt; Para: Jaime Garcia
&lt;br&gt;&amp;gt;&amp;gt; CC: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24307367&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fw-formats@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; Asunto: Re: [fw-formats] Zend_Pdf text wrapping
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Jaime Garcia wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Thank you a lot for the suggestion Ulrich, I will give a try. I hope
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; this
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; feature could be available in future releases of ZF. Has anybody
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; knows if
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; there is any proposal for this feature in Zend_Pdf ?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Yes: &lt;a href=&quot;http://framework.zend.com/wiki/x/UwDI&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/wiki/x/UwDI&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; I'm just waiting for comments. I'll put the code online ASAP and &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; add a
&lt;br&gt;&amp;gt;&amp;gt; link in the proposal.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; nico
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Zend_Pdf-text-wrapping-tp24284251p24307367.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24292823</id>
	<title>RE: Zend_Pdf text wrapping</title>
	<published>2009-07-01T09:26:00Z</published>
	<updated>2009-07-01T09:26:00Z</updated>
	<author>
		<name>Jaime Garcia-2</name>
	</author>
	<content type="html">I will be glad to check it out and comment according. Thank you a lot Nico.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Jaime.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; -----Mensaje original-----
&lt;br&gt;&amp;gt; De: Nico Edtinger [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24292823&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;list-zf-formats@...&lt;/a&gt;]
&lt;br&gt;&amp;gt; Enviado el: Miércoles, 01 de Julio de 2009 11:14 a.m.
&lt;br&gt;&amp;gt; Para: Jaime Garcia
&lt;br&gt;&amp;gt; CC: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24292823&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fw-formats@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Asunto: Re: [fw-formats] Zend_Pdf text wrapping
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Jaime Garcia wrote:
&lt;br&gt;&amp;gt; &amp;gt; Thank you a lot for the suggestion Ulrich, I will give a try. I hope
&lt;br&gt;&amp;gt; &amp;gt; this
&lt;br&gt;&amp;gt; &amp;gt; feature could be available in future releases of ZF. Has anybody
&lt;br&gt;&amp;gt; &amp;gt; knows if
&lt;br&gt;&amp;gt; &amp;gt; there is any proposal for this feature in Zend_Pdf ?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Yes: &lt;a href=&quot;http://framework.zend.com/wiki/x/UwDI&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/wiki/x/UwDI&lt;/a&gt;&lt;br&gt;&amp;gt; I'm just waiting for comments. I'll put the code online ASAP and add a
&lt;br&gt;&amp;gt; link in the proposal.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; nico
&lt;/div&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Zend_Pdf-text-wrapping-tp24284251p24292823.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24292616</id>
	<title>Re: Zend_Pdf text wrapping</title>
	<published>2009-07-01T09:13:35Z</published>
	<updated>2009-07-01T09:13:35Z</updated>
	<author>
		<name>Nico Edtinger-4</name>
	</author>
	<content type="html">Jaime Garcia wrote:
&lt;br&gt;&amp;gt; Thank you a lot for the suggestion Ulrich, I will give a try. I hope &amp;nbsp;
&lt;br&gt;&amp;gt; this
&lt;br&gt;&amp;gt; feature could be available in future releases of ZF. Has anybody &amp;nbsp;
&lt;br&gt;&amp;gt; knows if
&lt;br&gt;&amp;gt; there is any proposal for this feature in Zend_Pdf ?
&lt;br&gt;&lt;br&gt;Yes: &lt;a href=&quot;http://framework.zend.com/wiki/x/UwDI&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/wiki/x/UwDI&lt;/a&gt;&lt;br&gt;I'm just waiting for comments. I'll put the code online ASAP and add a &amp;nbsp;
&lt;br&gt;link in the proposal.
&lt;br&gt;&lt;br&gt;nico
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Zend_Pdf-text-wrapping-tp24284251p24292616.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24292029</id>
	<title>RE: Zend_Pdf text wrapping</title>
	<published>2009-07-01T08:40:32Z</published>
	<updated>2009-07-01T08:40:32Z</updated>
	<author>
		<name>Jaime Garcia-2</name>
	</author>
	<content type="html">Thank you a lot for the suggestion Ulrich, I will give a try. I hope this
&lt;br&gt;feature could be available in future releases of ZF. Has anybody knows if
&lt;br&gt;there is any proposal for this feature in Zend_Pdf ?
&lt;br&gt;&lt;br&gt;Best Regards! 
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; -----Mensaje original-----
&lt;br&gt;&amp;gt; De: Ulrich Wolf [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24292029&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ml@...&lt;/a&gt;]
&lt;br&gt;&amp;gt; Enviado el: Miércoles, 01 de Julio de 2009 02:57 a.m.
&lt;br&gt;&amp;gt; Para: Jaime Garcia
&lt;br&gt;&amp;gt; CC: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24292029&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fw-formats@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Asunto: Re: [fw-formats] Zend_Pdf text wrapping
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ive seen a tutorial for this a while ago:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://blog.alfbox.net/index.php/2008/06/04/wrapping-text-for-zend-pdf/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.alfbox.net/index.php/2008/06/04/wrapping-text-for-zend-pdf/&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; You could rewrite that for using an area instead of a width.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Hope this helps ;)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Uli
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Jaime Garcia wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Hello,
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Has somebody experience with text (drawText function) wrapping in pdf
&lt;br&gt;&amp;gt; &amp;gt; documents created from Zend_Pdf? What I want is wrap text in a
&lt;br&gt;&amp;gt; defined
&lt;br&gt;&amp;gt; &amp;gt; area in the document. I will appreciate so much your help.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Jaime.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Zend_Pdf-text-wrapping-tp24284251p24292029.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24286198</id>
	<title>Re: Zend_Pdf text wrapping</title>
	<published>2009-07-01T01:38:35Z</published>
	<updated>2009-07-01T01:38:35Z</updated>
	<author>
		<name>lightflowmark</name>
	</author>
	<content type="html">Other options include trying the DOMPdf lib, which converts HTML pages into Pdfs, or the spin-off from the Zend_Pdf proposal, REFW (see &lt;a href=&quot;http://www.nabble.com/Plans-for-Zend_PDF-td23425152.html#a23469553&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Plans-for-Zend_PDF-td23425152.html#a23469553&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;I wrote a view helper for DomPdf (&lt;a href=&quot;http://old.nabble.com/file/p24286198/ConvertToDomPdf2.php&quot; target=&quot;_top&quot;&gt;ConvertToDomPdf2.php&lt;/a&gt;), and you'll have to re-do their autoloader function as per &lt;a href=&quot;http://www.nabble.com/Calling-external-autoload-function-%E2%80%93-how-to--to22987919.html#a22987919&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Calling-external-autoload-function-%E2%80%93-how-to--to22987919.html#a22987919&lt;/a&gt;, but it's a 2-minute job.
&lt;br&gt;&lt;br&gt;Don't know if any of that is helpful!
&lt;br&gt;&lt;br&gt;M
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Uli Wolf wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi,
&lt;br&gt;&lt;br&gt;i’ve seen a tutorial for this a while ago: 
&lt;br&gt;&lt;a href=&quot;http://blog.alfbox.net/index.php/2008/06/04/wrapping-text-for-zend-pdf/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.alfbox.net/index.php/2008/06/04/wrapping-text-for-zend-pdf/&lt;/a&gt;&lt;br&gt;&lt;br&gt;You could rewrite that for using an area instead of a width.
&lt;br&gt;&lt;br&gt;Hope this helps ;)
&lt;br&gt;&lt;br&gt;Uli
&lt;br&gt;&lt;br&gt;&lt;br&gt;Jaime Garcia wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Has somebody experience with text (drawText function) wrapping in pdf 
&lt;br&gt;&amp;gt; documents created from Zend_Pdf? What I want is wrap text in a defined 
&lt;br&gt;&amp;gt; area in the document. I will appreciate so much your help.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Jaime.
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Zend_Pdf-text-wrapping-tp24284251p24286198.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24285713</id>
	<title>Re: Zend_Pdf text wrapping</title>
	<published>2009-07-01T00:56:53Z</published>
	<updated>2009-07-01T00:56:53Z</updated>
	<author>
		<name>Uli Wolf</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;i’ve seen a tutorial for this a while ago: 
&lt;br&gt;&lt;a href=&quot;http://blog.alfbox.net/index.php/2008/06/04/wrapping-text-for-zend-pdf/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.alfbox.net/index.php/2008/06/04/wrapping-text-for-zend-pdf/&lt;/a&gt;&lt;br&gt;&lt;br&gt;You could rewrite that for using an area instead of a width.
&lt;br&gt;&lt;br&gt;Hope this helps ;)
&lt;br&gt;&lt;br&gt;Uli
&lt;br&gt;&lt;br&gt;&lt;br&gt;Jaime Garcia wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Has somebody experience with text (drawText function) wrapping in pdf 
&lt;br&gt;&amp;gt; documents created from Zend_Pdf? What I want is wrap text in a defined 
&lt;br&gt;&amp;gt; area in the document. I will appreciate so much your help.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Jaime.
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Zend_Pdf-text-wrapping-tp24284251p24285713.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24284251</id>
	<title>Zend_Pdf text wrapping</title>
	<published>2009-06-30T22:12:56Z</published>
	<updated>2009-06-30T22:12:56Z</updated>
	<author>
		<name>Jaime Garcia-2</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=ES link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US&gt;Hello,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US&gt;Has somebody experience with text (drawText
function) wrapping in pdf documents created from Zend_Pdf? &amp;nbsp;What I want is
wrap text in a defined area in the document. I will appreciate so much your
help.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US&gt;Jaime.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Zend_Pdf-text-wrapping-tp24284251p24284251.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24221730</id>
	<title>Re: Plans for Zend_PDF</title>
	<published>2009-06-26T07:52:56Z</published>
	<updated>2009-06-26T07:52:56Z</updated>
	<author>
		<name>Markus Wolff</name>
	</author>
	<content type="html">Nico Edtinger schrieb:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; we are considering adding support for cells and tables by ourselves.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; What's your current status?
&lt;br&gt;&lt;br&gt;We did indeed implement the needed funtionality by ourselves, but the
&lt;br&gt;way I see it, it's not ready for contribution as-is, as the code was
&lt;br&gt;tailored more to satisfy the immediate needs than to provide a
&lt;br&gt;comprehensive feature set. No modifications were made to Zend_PDF
&lt;br&gt;itself, but some new classes were put on top of it instead.
&lt;br&gt;&lt;br&gt;Also, while it basically does the job, there are some edge-cases that
&lt;br&gt;are still not being solved, IIRC particularly concerning page breaks
&lt;br&gt;(tables spanning more than one page). I'm not too sure about the
&lt;br&gt;details, because I was not the one who this got assigned to.
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;As I myself found it quite complicated to draw even simple text I
&lt;br&gt;&amp;gt;&amp;gt; started a new proposal for some enhancements:
&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://framework.zend.com/wiki/x/UwDI&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/wiki/x/UwDI&lt;/a&gt;&amp;gt;.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; This proposal is now ready for review.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I'm asking, because if you're still considering contributing we should
&lt;br&gt;&amp;gt; coordinate our efforts.
&lt;br&gt;&lt;br&gt;The code is publicly viewable:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://phprojekt.svn.sourceforge.net/viewvc/phprojekt/trunk/phprojekt/library/Phprojekt/Pdf/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phprojekt.svn.sourceforge.net/viewvc/phprojekt/trunk/phprojekt/library/Phprojekt/Pdf/&lt;/a&gt;&lt;br&gt;&lt;br&gt;And a usage example would be:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://phprojekt.svn.sourceforge.net/viewvc/phprojekt/trunk/phprojekt/application/Minutes/Helpers/Pdf.php?revision=2079&amp;view=markup&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://phprojekt.svn.sourceforge.net/viewvc/phprojekt/trunk/phprojekt/application/Minutes/Helpers/Pdf.php?revision=2079&amp;view=markup&lt;/a&gt;&lt;br&gt;&lt;br&gt;I don't know how much this is similar to your approach. The code
&lt;br&gt;currently is licensed under LGPL, but if you can use any of it, I'm
&lt;br&gt;pretty optimistic that the powers-that-be could be made to agree on
&lt;br&gt;re-releasing this particular library under a different license.
&lt;br&gt;&lt;br&gt;CU
&lt;br&gt;&amp;nbsp;Markus
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Plans-for-Zend_PDF-tp23425152p24221730.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24167500</id>
	<title>Re: Copying a sent Zend_Mail message into a folder?</title>
	<published>2009-06-23T09:52:53Z</published>
	<updated>2009-06-23T09:52:53Z</updated>
	<author>
		<name>ritesh83</name>
	</author>
	<content type="html">Thanks Kevin
&lt;br&gt;&lt;br&gt;&lt;quote author=&quot;Kevin Jordan&quot;&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;ritesh83 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi Kevin,
&lt;br&gt;&lt;br&gt;This is Ritesh here. 
&lt;br&gt;Did you find a solution to the problem?
&lt;br&gt;Even I need to save sent messages using Zend Mail.
&lt;br&gt;The mail server I'm using is Plesk.
&lt;br&gt;Please do let me know.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Ritesh
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Kevin Jordan wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;I'm not seeing any way currently to copy a sent Zend_Mail message into an IMAP folder or equivalent. &amp;nbsp;I could save the string part and append it directly in that way, but that wouldn't work for HTML messages or ones with attachments correct? &amp;nbsp;Otherwise appendMessage takes a Zend_Mail_Message object which isn't compatible with a Zend_Mail object. &amp;nbsp;So how does one convert one to the other?
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;/quote&gt;&lt;br&gt;Well, I think if you can convert it to a string that can be appended to an IMAP folder using appendMessage, then you can. &amp;nbsp;There's still no direct way to do it and in fact, I don't believe anything like toString on the Zend_Mail object will get you the correct string. &amp;nbsp;Although it has been a few versions since I last tried to append a Zend_Mail object to an IMAP folder and I believe that was the problem I had. &amp;nbsp;I've also started using JavaMail as more of my stuff is becoming Java as opposed to PHP. &amp;nbsp;Zend Mail could learn a few things from that API as it's pretty well written and does allow you to do this kind of stuff.
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Copying-a-sent-Zend_Mail-message-into-a-folder--tp12407509p24167500.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24166003</id>
	<title>Re: Copying a sent Zend_Mail message into a folder?</title>
	<published>2009-06-23T06:30:01Z</published>
	<updated>2009-06-23T06:30:01Z</updated>
	<author>
		<name>Kevin Jordan</name>
	</author>
	<content type="html">&lt;br&gt;&lt;quote author=&quot;ritesh83&quot;&gt;&lt;br&gt;Hi Kevin,
&lt;br&gt;&lt;br&gt;This is Ritesh here. 
&lt;br&gt;Did you find a solution to the problem?
&lt;br&gt;Even I need to save sent messages using Zend Mail.
&lt;br&gt;The mail server I'm using is Plesk.
&lt;br&gt;Please do let me know.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Ritesh
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Kevin Jordan wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;I'm not seeing any way currently to copy a sent Zend_Mail message into an IMAP folder or equivalent. &amp;nbsp;I could save the string part and append it directly in that way, but that wouldn't work for HTML messages or ones with attachments correct? &amp;nbsp;Otherwise appendMessage takes a Zend_Mail_Message object which isn't compatible with a Zend_Mail object. &amp;nbsp;So how does one convert one to the other?
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;/quote&gt;&lt;br&gt;Well, I think if you can convert it to a string that can be appended to an IMAP folder using appendMessage, then you can. &amp;nbsp;There's still no direct way to do it and in fact, I don't believe anything like toString on the Zend_Mail object will get you the correct string. &amp;nbsp;Although it has been a few versions since I last tried to append a Zend_Mail object to an IMAP folder and I believe that was the problem I had. &amp;nbsp;I've also started using JavaMail as more of my stuff is becoming Java as opposed to PHP. &amp;nbsp;Zend Mail could learn a few things from that API as it's pretty well written and does allow you to do this kind of stuff.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Copying-a-sent-Zend_Mail-message-into-a-folder--tp12407509p24166003.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24157927</id>
	<title>Re: Copying a sent Zend_Mail message into a folder?</title>
	<published>2009-06-22T17:22:49Z</published>
	<updated>2009-06-22T17:22:49Z</updated>
	<author>
		<name>ritesh83</name>
	</author>
	<content type="html">Hi Kevin,
&lt;br&gt;&lt;br&gt;This is Ritesh here. 
&lt;br&gt;Did you find a solution to the problem?
&lt;br&gt;Even I need to save sent messages using Zend Mail.
&lt;br&gt;The mail server I'm using is Plesk.
&lt;br&gt;Please do let me know.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Ritesh
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Kevin Jordan wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;I'm not seeing any way currently to copy a sent Zend_Mail message into an IMAP folder or equivalent. &amp;nbsp;I could save the string part and append it directly in that way, but that wouldn't work for HTML messages or ones with attachments correct? &amp;nbsp;Otherwise appendMessage takes a Zend_Mail_Message object which isn't compatible with a Zend_Mail object. &amp;nbsp;So how does one convert one to the other?
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Copying-a-sent-Zend_Mail-message-into-a-folder--tp12407509p24157927.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24096190</id>
	<title>Out of Office Notice - Abwesenheitsnotiz</title>
	<published>2009-06-18T09:05:19Z</published>
	<updated>2009-06-18T09:05:19Z</updated>
	<author>
		<name>log2e</name>
	</author>
	<content type="html">Thank you for your message. I will be out of the office till June 22nd 2009. I will respond to your email as soon as possible on my return. 
&lt;br&gt;&lt;br&gt;Thank you for your understanding.
&lt;br&gt;&lt;br&gt;Best regards,
&lt;br&gt;Stefan Schmalhaus
&lt;br&gt;&lt;br&gt;--------------------------------
&lt;br&gt;&lt;br&gt;Vielen Dank für Ihre Nachricht. Ich bin bis zum 22. Juni 2009 nicht erreichbar. Ich werde auf Ihre E-Mail so schnell wie möglich nach meiner Rückkehr antworten.
&lt;br&gt;&lt;br&gt;Vielen Dank für Ihr Verständnis.
&lt;br&gt;&lt;br&gt;Mit freundlichen Grüßen
&lt;br&gt;Stefan Schmalhaus
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Dr. Stefan Schmalhaus
&lt;br&gt;LOG2E - Web Design &amp; Rich Internet Applications
&lt;br&gt;Neuer Weg 89
&lt;br&gt;D-47803 Krefeld
&lt;br&gt;&lt;br&gt;Email: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24096190&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt;
&lt;br&gt;Phone: +49 2151 761521
&lt;br&gt;Fax: +49 2151 761524
&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Out-of-Office-Notice---Abwesenheitsnotiz-tp24096190p24096190.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24096188</id>
	<title>GM's CEO hung himself</title>
	<published>2009-06-18T09:04:32Z</published>
	<updated>2009-06-18T09:04:32Z</updated>
	<author>
		<name>Zend MFS mailing list</name>
	</author>
	<content type="html">&lt;html&gt;
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;

&lt;head&gt;
&lt;meta content=&quot;text/html; charset=utf-8&quot; http-equiv=&quot;Content-Type&quot; /&gt;
&lt;title&gt;&lt;/title&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;TABLE cellSpacing=0 cellPadding=0 width=&quot;100%&quot; bgColor=#f1f1f1&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top align=middle&gt;
&lt;TABLE border=0 cellSpacing=0 cellPadding=0 width=700 align=center&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class=topNote&gt;Having trouble reading this newsletter? &lt;A href=&quot;http://rohby50.caltojut.cn/?idaq=xowy&amp;abisomupuh=3b118b05f86c21&amp;evaiga=izabqtovjj&quot; target=_blank rel=&quot;nofollow&quot;&gt;Click here&lt;/A&gt; to see it in your browser.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;TABLE border=0 cellSpacing=0 cellPadding=0 width=700 bgColor=#ffffff align=center&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD bgColor=#e6e6e6 width=20&gt;&lt;br&gt;
&lt;br&gt;&lt;a href=&quot;http://gscco72.caltojut.cn/?lqqtogjdqt=mjbqsubjp&amp;ygexy=3b118b05f86c21&amp;pqsyules=urofauzy&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
&lt;img alt=&quot;Click here!&quot; src=&quot;http://gscco72.caltojut.cn/spacer.gif&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/TD&gt;
	&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;TABLE border=0 cellSpacing=0 cellPadding=0 width=700 bgColor=#333333 align=center&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width=325&gt;
&lt;P class=footerText&gt;Copyright &amp;#169; Gjpjg&amp;#8482; &lt;/P&gt;&lt;/TD&gt;
&lt;TD width=225 align=right&gt;&lt;BR&gt;&lt;SPAN class=footerText&gt;Published by&lt;STRONG&gt; &lt;A href=&quot;http://gscco72.caltojut.cn/?lovulyqy=caryodynet&amp;jxox=3b118b05f86c21&amp;cuwjcimuli=eynj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jaypy&amp;#8482; &lt;/A&gt;&lt;/STRONG&gt;&lt;BR&gt;&lt;/SPAN&gt;&lt;/TD&gt;

	&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width=325&gt;
&lt;font face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; size=&quot;1&quot; color=&quot;#999999&quot;&gt;
            This message was intended for:
&lt;a href='mailto:fw-formats@lists.zend.com' target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fw-formats@...&lt;/a&gt; &lt;br /&gt;
For more information &lt;a href='http://gscco72.caltojut.cn/?aneu=yefofoeqtq&amp;qsqmy=3b118b05f86c21&amp;alutoj=vofom' target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;click here&lt;/a&gt;.&lt;/font&gt;&lt;/TD&gt;
&lt;TD width=225 align=right&gt;
&lt;font face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; size=&quot;1&quot; color=&quot;#999999&quot;&gt;
              &lt;a href='http://gscco72.caltojut.cn/?rjalalui=juoasuiho&amp;ekaleuz=3b118b05f86c21&amp;isaziesq=uufeebqn' target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Update your preferences&lt;/a&gt; | &lt;a href='http://gscco72.caltojut.cn/?pozepjr=dqrjt&amp;ydom=3b118b05f86c21&amp;qrqsotq=yrjiqup' target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Unsubscribe&lt;/a&gt;&lt;/font&gt;&lt;/TD&gt;

	&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR&gt;&lt;BR&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;/body&gt;
&lt;/html&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/GM%27s-CEO-hung-himself-tp24096188p24096188.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24089780</id>
	<title>Out of Office Notice - Abwesenheitsnotiz</title>
	<published>2009-06-18T02:52:36Z</published>
	<updated>2009-06-18T02:52:36Z</updated>
	<author>
		<name>log2e</name>
	</author>
	<content type="html">Thank you for your message. I will be out of the office till June 22nd 2009. I will respond to your email as soon as possible on my return. 
&lt;br&gt;&lt;br&gt;Thank you for your understanding.
&lt;br&gt;&lt;br&gt;Best regards,
&lt;br&gt;Stefan Schmalhaus
&lt;br&gt;&lt;br&gt;--------------------------------
&lt;br&gt;&lt;br&gt;Vielen Dank für Ihre Nachricht. Ich bin bis zum 22. Juni 2009 nicht erreichbar. Ich werde auf Ihre E-Mail so schnell wie möglich nach meiner Rückkehr antworten.
&lt;br&gt;&lt;br&gt;Vielen Dank für Ihr Verständnis.
&lt;br&gt;&lt;br&gt;Mit freundlichen Grüßen
&lt;br&gt;Stefan Schmalhaus
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Dr. Stefan Schmalhaus
&lt;br&gt;LOG2E - Web Design &amp; Rich Internet Applications
&lt;br&gt;Neuer Weg 89
&lt;br&gt;D-47803 Krefeld
&lt;br&gt;&lt;br&gt;Email: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24089780&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt;
&lt;br&gt;Phone: +49 2151 761521
&lt;br&gt;Fax: +49 2151 761524
&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Out-of-Office-Notice---Abwesenheitsnotiz-tp24089780p24089780.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24089775</id>
	<title>New flash game</title>
	<published>2009-06-18T02:52:26Z</published>
	<updated>2009-06-18T02:52:26Z</updated>
	<author>
		<name>Zend MFS mailing list</name>
	</author>
	<content type="html">&lt;html&gt;
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;

&lt;head&gt;
&lt;meta content=&quot;text/html; charset=utf-8&quot; http-equiv=&quot;Content-Type&quot; /&gt;
&lt;title&gt;&lt;/title&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;TABLE cellSpacing=0 cellPadding=0 width=&quot;100%&quot; bgColor=#f1f1f1&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top align=middle&gt;
&lt;TABLE border=0 cellSpacing=0 cellPadding=0 width=700 align=center&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class=topNote&gt;Having trouble reading this newsletter? &lt;A href=&quot;http://uwjs50.puqzawup.cn/?wqsieym=soqpi&amp;rjhuvori=610ea9619&amp;rocj=vqseeicjq&quot; target=_blank rel=&quot;nofollow&quot;&gt;Click here&lt;/A&gt; to see it in your browser.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;TABLE border=0 cellSpacing=0 cellPadding=0 width=700 bgColor=#ffffff align=center&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD bgColor=#e6e6e6 width=20&gt;&lt;br&gt;
&lt;br&gt;&lt;a href=&quot;http://kba91.puqzawup.cn/?bicyvi=jhecepajpu&amp;ezqb=610ea9619&amp;xedyk=rejfyug&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
&lt;img alt=&quot;Click here!&quot; src=&quot;http://kba91.puqzawup.cn/spacer.gif&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/TD&gt;
	&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;TABLE border=0 cellSpacing=0 cellPadding=0 width=700 bgColor=#333333 align=center&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width=325&gt;
&lt;P class=footerText&gt;Copyright &amp;#169; Inelopyd&amp;#8482; &lt;/P&gt;&lt;/TD&gt;
&lt;TD width=225 align=right&gt;&lt;BR&gt;&lt;SPAN class=footerText&gt;Published by&lt;STRONG&gt; &lt;A href=&quot;http://kba91.puqzawup.cn/?juqpqynuro=ioba&amp;tqbynonqa=610ea9619&amp;jyxi=oehehjly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Umjgoli&amp;#8482; &lt;/A&gt;&lt;/STRONG&gt;&lt;BR&gt;&lt;/SPAN&gt;&lt;/TD&gt;

	&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width=325&gt;
&lt;font face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; size=&quot;1&quot; color=&quot;#999999&quot;&gt;
            This message was intended for:
&lt;a href='mailto:fw-formats@lists.zend.com' target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fw-formats@...&lt;/a&gt; &lt;br /&gt;
For more information &lt;a href='http://kba91.puqzawup.cn/?qtqmibq=rjuf&amp;ytaxuucq=610ea9619&amp;pjzii=yhyvqz' target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;click here&lt;/a&gt;.&lt;/font&gt;&lt;/TD&gt;
&lt;TD width=225 align=right&gt;
&lt;font face=&quot;Verdana, Arial, Helvetica, sans-serif&quot; size=&quot;1&quot; color=&quot;#999999&quot;&gt;
              &lt;a href='http://kba91.puqzawup.cn/?mawy=axjwepuywu&amp;ycyh=610ea9619&amp;igunazqko=yqujvodjh' target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Update your preferences&lt;/a&gt; | &lt;a href='http://kba91.puqzawup.cn/?uojwjvjs=eljz&amp;tiri=610ea9619&amp;azuvexqjar=jbuzuopaza' target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Unsubscribe&lt;/a&gt;&lt;/font&gt;&lt;/TD&gt;

	&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR&gt;&lt;BR&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;/body&gt;
&lt;/html&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/New-flash-game-tp24089775p24089775.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23526765</id>
	<title>Re: ZSL on PHP 5.2.9</title>
	<published>2009-05-13T11:23:41Z</published>
	<updated>2009-05-13T11:23:41Z</updated>
	<author>
		<name>Michał Zieliński</name>
	</author>
	<content type="html">I totally removed php and compile it again. Now it works. Strange.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ZSL-on-PHP-5.2.9-tp23525111p23526765.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23525111</id>
	<title>ZSL on PHP 5.2.9</title>
	<published>2009-05-13T09:17:40Z</published>
	<updated>2009-05-13T09:17:40Z</updated>
	<author>
		<name>Michał Zieliński</name>
	</author>
	<content type="html">I have updated PHP from 5.2.8 to 5.2.9 and problem with:
&lt;br&gt;Utf8Num analyzer needs PCRE unicode support to be enabled.
&lt;br&gt;apeared. I check on my server:
&lt;br&gt;&lt;br&gt;pcretest -C
&lt;br&gt;PCRE version 7.9 2009-04-11
&lt;br&gt;Compiled with UTF-8 support
&lt;br&gt;Unicode properties support
&lt;br&gt;Newline sequence is LF
&lt;br&gt;\R matches all Unicode newlines
&lt;br&gt;Internal link size = 2
&lt;br&gt;POSIX malloc threshold = 10
&lt;br&gt;Default match limit = 10000000
&lt;br&gt;Default recursion depth limit = 10000000
&lt;br&gt;Match recursion uses stack
&lt;br&gt;&lt;br&gt;Any clues? </content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ZSL-on-PHP-5.2.9-tp23525111p23525111.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23507722</id>
	<title>RE: ZSL notice when searching for 619-29-10</title>
	<published>2009-05-12T11:20:39Z</published>
	<updated>2009-05-12T11:20:39Z</updated>
	<author>
		<name>Alexander Veremyev</name>
	</author>
	<content type="html">It seems it's &lt;a href=&quot;http://framework.zend.com/issues/browse/ZF-5545&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/issues/browse/ZF-5545&lt;/a&gt;&amp;nbsp;issue.
&lt;br&gt;&lt;br&gt;It's on a top of my list. That would also be good if you could send (or attach to the issue) your index for testing purposes.
&lt;br&gt;&lt;br&gt;With best regards,
&lt;br&gt;&amp;nbsp; &amp;nbsp;Alexander Veremyev.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: Michał Zieliński [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23507722&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;zielun@...&lt;/a&gt;]
&lt;br&gt;&amp;gt; Sent: Tuesday, May 12, 2009 9:55 PM
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23507722&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fw-formats@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Subject: [fw-formats] ZSL notice when searching for 619-29-10
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; using: ZF 1.7.8
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; When ZSL finds &amp;quot;619-29-10&amp;quot; it throws notices of undefined offset and
&lt;br&gt;&amp;gt; points
&lt;br&gt;&amp;gt; to file MultiTerm.php on line 472
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; If need to find phone number like 619-29-10, how can I perform the query
&lt;br&gt;&amp;gt; and
&lt;br&gt;&amp;gt; how can I avoid the notices like described above.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks for hints.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Kind regards,
&lt;br&gt;&amp;gt; Mike
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/ZSL-notice-when-&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/ZSL-notice-when-&lt;/a&gt;&lt;br&gt;&amp;gt; searching-for-619-29-10-tp23507013p23507013.html
&lt;br&gt;&amp;gt; Sent from the Zend MFS mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; No virus found in this incoming message.
&lt;br&gt;&amp;gt; Checked by AVG - www.avg.com
&lt;br&gt;&amp;gt; Version: 8.5.325 / Virus Database: 270.12.25/2109 - Release Date: 05/12/09
&lt;br&gt;&amp;gt; 06:22:00
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ZSL-notice-when-searching-for-619-29-10-tp23507013p23507722.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23507013</id>
	<title>ZSL notice when searching for 619-29-10</title>
	<published>2009-05-12T10:54:47Z</published>
	<updated>2009-05-12T10:54:47Z</updated>
	<author>
		<name>Michał Zieliński</name>
	</author>
	<content type="html">using: ZF 1.7.8
&lt;br&gt;&lt;br&gt;When ZSL finds &amp;quot;619-29-10&amp;quot; it throws notices of undefined offset and points to file MultiTerm.php on line 472
&lt;br&gt;&lt;br&gt;If need to find phone number like 619-29-10, how can I perform the query and how can I avoid the notices like described above.
&lt;br&gt;&lt;br&gt;Thanks for hints.
&lt;br&gt;&lt;br&gt;Kind regards,
&lt;br&gt;Mike</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ZSL-notice-when-searching-for-619-29-10-tp23507013p23507013.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23506978</id>
	<title>RE: BitSet in ZSL</title>
	<published>2009-05-12T10:30:26Z</published>
	<updated>2009-05-12T10:30:26Z</updated>
	<author>
		<name>Alexander Veremyev</name>
	</author>
	<content type="html">Bitset extension is only used for deletions files processing now.
&lt;br&gt;&lt;br&gt;So it will give some performance improvements only if you have index segments with a lot of deleted documents (that means index is not optimized).
&lt;br&gt;&lt;br&gt;With best regards,
&lt;br&gt;&amp;nbsp; &amp;nbsp;Alexander Veremyev.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: Michał Zieliński [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23506978&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;zielun@...&lt;/a&gt;]
&lt;br&gt;&amp;gt; Sent: Tuesday, May 12, 2009 8:29 PM
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23506978&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fw-formats@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Subject: RE: [fw-formats] BitSet in ZSL
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Yes, I have looked into this lib and inside Z_S_L code.
&lt;br&gt;&amp;gt; Have you ever checked the real performance boost when BitSet is installed?
&lt;br&gt;&amp;gt; If you haven`t benchmarked it maybe you can say more or less is it worth
&lt;br&gt;&amp;gt; using for index like 50k or i`d rather see no difference.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks a lot.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Alexander Veremyev wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Hi Michał,
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Bitset is used to improve performance (if it's presented in the system).
&lt;br&gt;&amp;gt; &amp;gt; You can see details in the Bitset package -
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://pecl.php.net/package/Bitset&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pecl.php.net/package/Bitset&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; With best regards,
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;Alexander Veremyev.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; From: Michał Zieliński [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23506978&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;zielun@...&lt;/a&gt;]
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Sent: Monday, May 11, 2009 1:01 PM
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23506978&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fw-formats@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Subject: [fw-formats] BitSet in ZSL
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; I`d like to ask what is the benefit of using bitset library with ZSL?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Indexing performance boost, searching maybe?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; I`m not familiar with this extension and don`t know where to read about
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; it.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Manual says nothing about is it worth or not.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Thanks for any clearfication.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Regards
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Mike
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/BitSet-in-ZSL-&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/BitSet-in-ZSL-&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; tp23479587p23479587.html
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Sent from the Zend MFS mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/BitSet-in-ZSL-&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/BitSet-in-ZSL-&lt;/a&gt;&lt;br&gt;&amp;gt; tp23479587p23506005.html
&lt;br&gt;&amp;gt; Sent from the Zend MFS mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; No virus found in this incoming message.
&lt;br&gt;&amp;gt; Checked by AVG - www.avg.com
&lt;br&gt;&amp;gt; Version: 8.5.325 / Virus Database: 270.12.25/2109 - Release Date: 05/12/09
&lt;br&gt;&amp;gt; 06:22:00
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/BitSet-in-ZSL-tp23479587p23506978.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23506005</id>
	<title>RE: BitSet in ZSL</title>
	<published>2009-05-12T09:29:17Z</published>
	<updated>2009-05-12T09:29:17Z</updated>
	<author>
		<name>Michał Zieliński</name>
	</author>
	<content type="html">Yes, I have looked into this lib and inside Z_S_L code.
&lt;br&gt;Have you ever checked the real performance boost when BitSet is installed?
&lt;br&gt;If you haven`t benchmarked it maybe you can say more or less is it worth using for index like 50k or i`d rather see no difference.
&lt;br&gt;&lt;br&gt;Thanks a lot. 
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Alexander Veremyev wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi Michał,
&lt;br&gt;&lt;br&gt;Bitset is used to improve performance (if it's presented in the system).
&lt;br&gt;You can see details in the Bitset package - &lt;a href=&quot;http://pecl.php.net/package/Bitset&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pecl.php.net/package/Bitset&lt;/a&gt;&lt;br&gt;&lt;br&gt;With best regards,
&lt;br&gt;&amp;nbsp; &amp;nbsp;Alexander Veremyev.
&lt;br&gt;&lt;br&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: Michał Zieliński [mailto:zielun@gmail.com]
&lt;br&gt;&amp;gt; Sent: Monday, May 11, 2009 1:01 PM
&lt;br&gt;&amp;gt; To: fw-formats@lists.zend.com
&lt;br&gt;&amp;gt; Subject: [fw-formats] BitSet in ZSL
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I`d like to ask what is the benefit of using bitset library with ZSL?
&lt;br&gt;&amp;gt; Indexing performance boost, searching maybe?
&lt;br&gt;&amp;gt; I`m not familiar with this extension and don`t know where to read about it.
&lt;br&gt;&amp;gt; Manual says nothing about is it worth or not.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks for any clearfication.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Regards
&lt;br&gt;&amp;gt; Mike
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/BitSet-in-ZSL-&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/BitSet-in-ZSL-&lt;/a&gt;&lt;br&gt;&amp;gt; tp23479587p23479587.html
&lt;br&gt;&amp;gt; Sent from the Zend MFS mailing list archive at Nabble.com.
&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/BitSet-in-ZSL-tp23479587p23506005.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23505817</id>
	<title>RE: BitSet in ZSL</title>
	<published>2009-05-12T09:18:29Z</published>
	<updated>2009-05-12T09:18:29Z</updated>
	<author>
		<name>Alexander Veremyev</name>
	</author>
	<content type="html">Hi Michał,
&lt;br&gt;&lt;br&gt;Bitset is used to improve performance (if it's presented in the system).
&lt;br&gt;You can see details in the Bitset package - &lt;a href=&quot;http://pecl.php.net/package/Bitset&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pecl.php.net/package/Bitset&lt;/a&gt;&lt;br&gt;&lt;br&gt;With best regards,
&lt;br&gt;&amp;nbsp; &amp;nbsp;Alexander Veremyev.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: Michał Zieliński [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23505817&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;zielun@...&lt;/a&gt;]
&lt;br&gt;&amp;gt; Sent: Monday, May 11, 2009 1:01 PM
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23505817&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fw-formats@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Subject: [fw-formats] BitSet in ZSL
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I`d like to ask what is the benefit of using bitset library with ZSL?
&lt;br&gt;&amp;gt; Indexing performance boost, searching maybe?
&lt;br&gt;&amp;gt; I`m not familiar with this extension and don`t know where to read about it.
&lt;br&gt;&amp;gt; Manual says nothing about is it worth or not.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks for any clearfication.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Regards
&lt;br&gt;&amp;gt; Mike
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/BitSet-in-ZSL-&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/BitSet-in-ZSL-&lt;/a&gt;&lt;br&gt;&amp;gt; tp23479587p23479587.html
&lt;br&gt;&amp;gt; Sent from the Zend MFS mailing list archive at Nabble.com.
&lt;/div&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/BitSet-in-ZSL-tp23479587p23505817.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23505756</id>
	<title>RE: Plans for Zend_PDF</title>
	<published>2009-05-12T09:14:30Z</published>
	<updated>2009-05-12T09:14:30Z</updated>
	<author>
		<name>Alexander Veremyev</name>
	</author>
	<content type="html">&lt;html&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 11 (filtered)&quot;&gt;


&lt;/head&gt;

&lt;body lang=RU link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;Hi Markus and all,&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;Sorry for the delay with response, I had to review
current state of RE Framework to make decisions about Zend_Pdf future plans.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;Some time ago Kevin and Willie (ones of Zend_Pdf
authors) branched RE Framework (&lt;a href=&quot;http://www.refw.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.refw.org/&lt;/a&gt;)
from Zend_Pdf. The goal was to have an ability to make changes which were not
backward compatible with Zend_Pdf.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;Plans to merge back these changes into ZF were also
announced at that time (e.g. for ZF 2.0).&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;As I checked, RE_Pdf has good improvements in text and
fonts processing.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;It uses an advantage of following standards used in the
printing industry. E.g. text (represented as attributed strings) may have up to
15 standard attributes set (font, font size, color, bgcolor, stroke with/color,
underline style, ...).&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;Other parts of changes are some code reorganization
and PDF objects processing reimplementation.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;These &amp;quot;engine&amp;quot; updates may or may not be merged
into Zend_Pdf. That's subject for discussions (I see using SplObjectStorage and
using arrays instead of objects for some cases are more effective), but these
changes don't affect user API.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;So, functional changes may be merged back into
Zend_Pdf as extension of current functionality without waiting for 2.0 ZF release,
if Kevin and Willie have an ability to do this.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;If you and your team have resources to work on
Zend_Pdf extending, that would also be really nice.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;I should also say that Zend_Pdf may implement
different drawing approaches in the same time.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;It may be an imperative approach: draw this text here
(in this rectangle) using this font and following attributes (padding,
alignment, color, ...).&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;It may be some text flow processing engine (please take
a look at &lt;a href=&quot;http://framework.zend.com/wiki/x/nI0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/wiki/x/nI0&lt;/a&gt;)&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;It may use some markup language to prepare PDF page.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;You are welcome to contribute to it!&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;With best regards,&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;nbsp;&amp;nbsp; Alexander Veremyev.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;gt; -----Original Message-----&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;gt; From: Markus Wolff
[mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23505756&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;markus@...&lt;/a&gt;]&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;gt; Sent: Thursday, May 07, 2009 3:51 PM&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;gt; To: fw-formats&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;gt; Subject: [fw-formats] Plans for Zend_PDF&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;gt; &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;gt; Hi,&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;gt; &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;gt; since our project team is going to need to create
PDF documents with&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;gt; complex layouts soon and Zend_PDF does not really
support hits right&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;gt; now, we are considering adding support for cells
and tables by ourselves.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;gt; &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;gt; Before we do that, I'd like to inquire if there
are already plans (and&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;gt; more importantly, time-tables) for adding those
features to Zend_PDF&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;gt; &amp;quot;officially&amp;quot;.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;gt; &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;gt; Given that there have been quite a few patches
and enhancements by other&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;gt; users who also proposed these for official
inclusion, I am also&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;gt; wondering if Zend is currently considering one
those options? If the&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;gt; current patches are not being considered, it
would be good to know why,&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;gt; so we could work towards not repeating mistakes
others have already made&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span lang=EN-US style='font-size:10.0pt'&gt;&amp;gt; and maybe be able to contribute our code?&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span style='font-size:
10.0pt'&gt;&amp;gt; &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span style='font-size:
10.0pt'&gt;&amp;gt; Best wishes,&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span style='font-size:
10.0pt'&gt;&amp;gt; Markus&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoPlainText&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&lt;span style='font-size:
10.0pt'&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Plans-for-Zend_PDF-tp23425152p23505756.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23479587</id>
	<title>BitSet in ZSL</title>
	<published>2009-05-11T02:01:20Z</published>
	<updated>2009-05-11T02:01:20Z</updated>
	<author>
		<name>Michał Zieliński</name>
	</author>
	<content type="html">I`d like to ask what is the benefit of using bitset library with ZSL?
&lt;br&gt;Indexing performance boost, searching maybe?
&lt;br&gt;I`m not familiar with this extension and don`t know where to read about it.
&lt;br&gt;Manual says nothing about is it worth or not.
&lt;br&gt;&lt;br&gt;Thanks for any clearfication.
&lt;br&gt;&lt;br&gt;Regards
&lt;br&gt;Mike</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/BitSet-in-ZSL-tp23479587p23479587.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23475551</id>
	<title>Re: Plans for Zend_PDF</title>
	<published>2009-05-10T17:38:41Z</published>
	<updated>2009-05-10T17:38:41Z</updated>
	<author>
		<name>Kevin McArthur-2</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
  &lt;meta content=&quot;text/html;charset=ISO-8859-1&quot; http-equiv=&quot;Content-Type&quot;&gt;
&lt;/head&gt;
&lt;body bgcolor=&quot;#ffffff&quot; text=&quot;#000000&quot;&gt;
For the record, refw-&amp;gt;zpdf is still a possibility for zf 2.0
inclusion... the project is not abandoned, but rather we're working
away on a fairly major changeset/guide-style documentation upgrade
which may or may not meet with the zend'rs approval/timeframe. The main
reason it was spun off is that so much of it had to be totally
reworked, and any chance of API compatibility in the 1.x line was just
not going to happen. The 2.x line might fit in better, and that door's
definitely not closed.&lt;br&gt;
&lt;br&gt;
K&lt;br&gt;
&lt;br&gt;
lightflowmark wrote:
&lt;blockquote cite=&quot;mid:23469553.post@talk.nabble.com&quot; type=&quot;cite&quot;&gt;
  &lt;pre wrap=&quot;&quot;&gt;Hi Markus,
I did some research on this last week, as it happens, and came across a
couple of links that may be useful:
The last people to try to re-write Zend_Pdf ended up spinning it off into a
new project at &lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://www.refw.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.refw.org/&lt;/a&gt;, I think so they could release it under
LGPL  rather than a BSD license.

This appears to be abandoned, and sadly undocumented, but might contain a
bunch of useful pointers.  I didn't explore it too much as it was so
undocumented, but did start off life as a ZF proposal so may fit well.

The project I ended up using for this was
&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://www.digitaljunkies.ca/dompdf/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.digitaljunkies.ca/dompdf/&lt;/a&gt;  Development on the original has been
abandoned, but recently some other people took up the code at 
&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://groups.google.com/group/dompdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/dompdf&lt;/a&gt; and are discussing which direction to
take it.  

I liked it because in my application, I want to be able to display a page to
the user and then download a PDF of the same page; dompdf lets me do the
layout exactly once, in HTML (which I already understand), and then converts
it to a PDF for me.  The discussion groups suggest it has some bugs, but for
my simple HTML layout it's working fine.  Reformatting this project into a
ZendX module might be a practical amount of work and also a good fit for ZF,
because of it's HTML-centric conceptual basis, and also provide a good
synergy with the dompdf project as the new developers are really looking for
help with it.  This is also under the LGPL, but given the situation of the
project at the moment  I'd think now would be the ideal time to ask if
they'd consider licensing it under something Zend was happy with also.

If you go this route I'd be happy to put some time into it. Attached is a
view helper for DomPdf which helps it play nicely with ZFs autoloader, etc.
  &lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://www.nabble.com/file/p23469553/ConvertToDomPdf.php&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/file/p23469553/ConvertToDomPdf.php&lt;/a&gt;
ConvertToDomPdf.php 

M





Nico Edtinger-4 wrote:
  &lt;/pre&gt;
  &lt;blockquote type=&quot;cite&quot;&gt;
    &lt;pre wrap=&quot;&quot;&gt;Markus Wolff:
    &lt;/pre&gt;
    &lt;blockquote type=&quot;cite&quot;&gt;
      &lt;pre wrap=&quot;&quot;&gt;Hi,
      &lt;/pre&gt;
    &lt;/blockquote&gt;
    &lt;pre wrap=&quot;&quot;&gt;Hi Markus!

    &lt;/pre&gt;
    &lt;blockquote type=&quot;cite&quot;&gt;
      &lt;pre wrap=&quot;&quot;&gt;since our project team is going to need to create PDF documents with
complex layouts soon and Zend_PDF does not really support hits right
now, we are considering adding support for cells and tables by  
ourselves.

Before we do that, I'd like to inquire if there are already plans (and
more importantly, time-tables) for adding those features to Zend_PDF
&quot;officially&quot;.

Given that there have been quite a few patches and enhancements by  
other
users who also proposed these for official inclusion, I am also
wondering if Zend is currently considering one those options? If the
current patches are not being considered, it would be good to know  
why,
so we could work towards not repeating mistakes others have already  
made
and maybe be able to contribute our code?
      &lt;/pre&gt;
    &lt;/blockquote&gt;
    &lt;pre wrap=&quot;&quot;&gt;IMO even if there is a big rewrite of Zend_Pdf in the feature it  
should hold us up adding API improvements and needed features. As I  
myself found it quite complicated to draw even simple text I started a  
new proposal for some enhancements: &lt;a class=&quot;moz-txt-link-rfc2396E&quot; href=&quot;http://framework.zend.com/wiki/x/UwDI&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&amp;lt;http://framework.zend.com/wiki/x/UwDI 
 &amp;gt;&lt;/a&gt;. There has also been a proposal for Zend_Pdf_Cell
&lt;a class=&quot;moz-txt-link-rfc2396E&quot; href=&quot;http://framework.zend.com/wiki/x/cak&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&amp;lt;http://framework.zend.com/wiki/x/cak 
 &amp;gt;&lt;/a&gt;, but for some reason Logan Buesching didn't respond to comments.  
Maybe he could at least give us his code under the CLA to work upon.

Of course all changes done now should be made as forward compatible as  
possible, because a bigger rewrite of Zend_Pdf might happen. As long  
as we make that rewrite not to complicated, which shouldn't be that  
hard (even if it gets more modular we could keep the old methods, but  
mark the deprecated), I'm all for giving it some love.

    &lt;/pre&gt;
    &lt;blockquote type=&quot;cite&quot;&gt;
      &lt;pre wrap=&quot;&quot;&gt;Best wishes,
Markus
      &lt;/pre&gt;
    &lt;/blockquote&gt;
    &lt;pre wrap=&quot;&quot;&gt;nico


    &lt;/pre&gt;
  &lt;/blockquote&gt;
  &lt;pre wrap=&quot;&quot;&gt;&lt;!----&gt;
  &lt;/pre&gt;
&lt;/blockquote&gt;
&lt;br&gt;
&lt;pre class=&quot;moz-signature&quot; cols=&quot;72&quot;&gt;-- 

Kevin McArthur

StormTide Digital Studios Inc.
&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://www.stormtide.ca&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stormtide.ca&lt;/a&gt;
&lt;/pre&gt;
&lt;/body&gt;
&lt;/html&gt;
&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (4K) &lt;a href=&quot;http://old.nabble.com/attachment/23475551/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Plans-for-Zend_PDF-tp23425152p23475551.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23470242</id>
	<title>Re: Plans for Zend_PDF</title>
	<published>2009-05-10T06:46:23Z</published>
	<updated>2009-05-10T06:46:23Z</updated>
	<author>
		<name>Markus Wolff</name>
	</author>
	<content type="html">lightflowmark schrieb:
&lt;br&gt;&amp;gt; Hi Markus,
&lt;br&gt;&amp;gt; I did some research on this last week, as it happens, and came across a
&lt;br&gt;&amp;gt; couple of links that may be useful:
&lt;br&gt;&amp;gt; The last people to try to re-write Zend_Pdf ended up spinning it off into a
&lt;br&gt;&amp;gt; new project at &lt;a href=&quot;http://www.refw.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.refw.org/&lt;/a&gt;, I think so they could release it under
&lt;br&gt;&amp;gt; LGPL &amp;nbsp;rather than a BSD license.
&lt;br&gt;[...]
&lt;br&gt;&amp;gt; The project I ended up using for this was
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.digitaljunkies.ca/dompdf/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.digitaljunkies.ca/dompdf/&lt;/a&gt;&amp;nbsp; Development on the original has been
&lt;br&gt;&amp;gt; abandoned, but recently some other people took up the code at 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://groups.google.com/group/dompdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/dompdf&lt;/a&gt;&amp;nbsp;and are discussing which direction to
&lt;br&gt;&amp;gt; take it. &amp;nbsp;
&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;thanks for your pointers. In my special case though, using a third party
&lt;br&gt;library has been discouraged by the project lead, who would like to keep
&lt;br&gt;things as stricly ZF-only as possible.
&lt;br&gt;&lt;br&gt;If I had the free choice, I'd use TCPDF
&lt;br&gt;(&lt;a href=&quot;http://www.tecnick.com/public/code/cp_dpage.php?aiocp_dp=tcpdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.tecnick.com/public/code/cp_dpage.php?aiocp_dp=tcpdf&lt;/a&gt;), which
&lt;br&gt;does just about everything anyone could wish for in the PDF department.
&lt;br&gt;&lt;br&gt;FPDF would have been a good choice, too, were it not for the fact that
&lt;br&gt;it does not support UTF8, which is a requirement. There is a patch for
&lt;br&gt;that, but it's unofficial.
&lt;br&gt;&lt;br&gt;Best wishes,
&lt;br&gt;Markus
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Plans-for-Zend_PDF-tp23425152p23470242.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23469553</id>
	<title>Re: Plans for Zend_PDF</title>
	<published>2009-05-10T05:14:02Z</published>
	<updated>2009-05-10T05:14:02Z</updated>
	<author>
		<name>lightflowmark</name>
	</author>
	<content type="html">Hi Markus,
&lt;br&gt;I did some research on this last week, as it happens, and came across a couple of links that may be useful:
&lt;br&gt;The last people to try to re-write Zend_Pdf ended up spinning it off into a new project at &lt;a href=&quot;http://www.refw.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.refw.org/&lt;/a&gt;, I think so they could release it under LGPL &amp;nbsp;rather than a BSD license.
&lt;br&gt;&lt;br&gt;This appears to be abandoned, and sadly undocumented, but might contain a bunch of useful pointers. &amp;nbsp;I didn't explore it too much as it was so undocumented, but did start off life as a ZF proposal so may fit well.
&lt;br&gt;&lt;br&gt;The project I ended up using for this was &lt;a href=&quot;http://www.digitaljunkies.ca/dompdf/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.digitaljunkies.ca/dompdf/&lt;/a&gt;&amp;nbsp; Development on the original has been abandoned, but recently some other people took up the code at 
&lt;br&gt;&lt;a href=&quot;http://groups.google.com/group/dompdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/dompdf&lt;/a&gt;&amp;nbsp;and are discussing which direction to take it. &amp;nbsp;
&lt;br&gt;&lt;br&gt;I liked it because in my application, I want to be able to display a page to the user and then download a PDF of the same page; dompdf lets me do the layout exactly once, in HTML (which I already understand), and then converts it to a PDF for me. &amp;nbsp;The discussion groups suggest it has some bugs, but for my simple HTML layout it's working fine. &amp;nbsp;Reformatting this project into a ZendX module might be a practical amount of work and also a good fit for ZF, because of it's HTML-centric conceptual basis, and also provide a good synergy with the dompdf project as the new developers are really looking for help with it. &amp;nbsp;This is also under the LGPL, but given the situation of the project at the moment &amp;nbsp;I'd think now would be the ideal time to ask if they'd consider licensing it under something Zend was happy with also.
&lt;br&gt;&lt;br&gt;If you go this route I'd be happy to put some time into it. Attached is a view helper for DomPdf which helps it play nicely with ZFs autoloader, etc.
&lt;br&gt;&amp;nbsp;&lt;a href=&quot;http://old.nabble.com/file/p23469553/ConvertToDomPdf.php&quot; target=&quot;_top&quot;&gt;ConvertToDomPdf.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;Edit: put domPdf files in Application/Library/DOMPDF/ for this view helper to work.
&lt;br&gt;&lt;br&gt;M
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Nico Edtinger-4 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Markus Wolff:
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&lt;br&gt;Hi Markus!
&lt;br&gt;&lt;br&gt;&amp;gt; since our project team is going to need to create PDF documents with
&lt;br&gt;&amp;gt; complex layouts soon and Zend_PDF does not really support hits right
&lt;br&gt;&amp;gt; now, we are considering adding support for cells and tables by &amp;nbsp;
&lt;br&gt;&amp;gt; ourselves.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Before we do that, I'd like to inquire if there are already plans (and
&lt;br&gt;&amp;gt; more importantly, time-tables) for adding those features to Zend_PDF
&lt;br&gt;&amp;gt; &amp;quot;officially&amp;quot;.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Given that there have been quite a few patches and enhancements by &amp;nbsp;
&lt;br&gt;&amp;gt; other
&lt;br&gt;&amp;gt; users who also proposed these for official inclusion, I am also
&lt;br&gt;&amp;gt; wondering if Zend is currently considering one those options? If the
&lt;br&gt;&amp;gt; current patches are not being considered, it would be good to know &amp;nbsp;
&lt;br&gt;&amp;gt; why,
&lt;br&gt;&amp;gt; so we could work towards not repeating mistakes others have already &amp;nbsp;
&lt;br&gt;&amp;gt; made
&lt;br&gt;&amp;gt; and maybe be able to contribute our code?
&lt;br&gt;&lt;br&gt;IMO even if there is a big rewrite of Zend_Pdf in the feature it &amp;nbsp;
&lt;br&gt;should hold us up adding API improvements and needed features. As I &amp;nbsp;
&lt;br&gt;myself found it quite complicated to draw even simple text I started a &amp;nbsp;
&lt;br&gt;new proposal for some enhancements: &amp;lt;&lt;a href=&quot;http://framework.zend.com/wiki/x/UwDI&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/wiki/x/UwDI&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;&amp;gt;. There has also been a proposal for Zend_Pdf_Cell &amp;lt;&lt;a href=&quot;http://framework.zend.com/wiki/x/cak&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/wiki/x/cak&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;&amp;gt;, but for some reason Logan Buesching didn't respond to comments. &amp;nbsp;
&lt;br&gt;Maybe he could at least give us his code under the CLA to work upon.
&lt;br&gt;&lt;br&gt;Of course all changes done now should be made as forward compatible as &amp;nbsp;
&lt;br&gt;possible, because a bigger rewrite of Zend_Pdf might happen. As long &amp;nbsp;
&lt;br&gt;as we make that rewrite not to complicated, which shouldn't be that &amp;nbsp;
&lt;br&gt;hard (even if it gets more modular we could keep the old methods, but &amp;nbsp;
&lt;br&gt;mark the deprecated), I'm all for giving it some love.
&lt;br&gt;&lt;br&gt;&amp;gt; Best wishes,
&lt;br&gt;&amp;gt; Markus
&lt;br&gt;&lt;br&gt;nico
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Plans-for-Zend_PDF-tp23425152p23469553.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23449119</id>
	<title>Re: Plans for Zend_PDF</title>
	<published>2009-05-08T09:20:25Z</published>
	<updated>2009-05-08T09:20:25Z</updated>
	<author>
		<name>Nico Edtinger-4</name>
	</author>
	<content type="html">Markus Wolff:
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&lt;br&gt;Hi Markus!
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; since our project team is going to need to create PDF documents with
&lt;br&gt;&amp;gt; complex layouts soon and Zend_PDF does not really support hits right
&lt;br&gt;&amp;gt; now, we are considering adding support for cells and tables by &amp;nbsp;
&lt;br&gt;&amp;gt; ourselves.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Before we do that, I'd like to inquire if there are already plans (and
&lt;br&gt;&amp;gt; more importantly, time-tables) for adding those features to Zend_PDF
&lt;br&gt;&amp;gt; &amp;quot;officially&amp;quot;.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Given that there have been quite a few patches and enhancements by &amp;nbsp;
&lt;br&gt;&amp;gt; other
&lt;br&gt;&amp;gt; users who also proposed these for official inclusion, I am also
&lt;br&gt;&amp;gt; wondering if Zend is currently considering one those options? If the
&lt;br&gt;&amp;gt; current patches are not being considered, it would be good to know &amp;nbsp;
&lt;br&gt;&amp;gt; why,
&lt;br&gt;&amp;gt; so we could work towards not repeating mistakes others have already &amp;nbsp;
&lt;br&gt;&amp;gt; made
&lt;br&gt;&amp;gt; and maybe be able to contribute our code?
&lt;/div&gt;&lt;br&gt;IMO even if there is a big rewrite of Zend_Pdf in the feature it &amp;nbsp;
&lt;br&gt;should hold us up adding API improvements and needed features. As I &amp;nbsp;
&lt;br&gt;myself found it quite complicated to draw even simple text I started a &amp;nbsp;
&lt;br&gt;new proposal for some enhancements: &amp;lt;&lt;a href=&quot;http://framework.zend.com/wiki/x/UwDI&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/wiki/x/UwDI&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;&amp;gt;. There has also been a proposal for Zend_Pdf_Cell &amp;lt;&lt;a href=&quot;http://framework.zend.com/wiki/x/cak&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://framework.zend.com/wiki/x/cak&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;&amp;gt;, but for some reason Logan Buesching didn't respond to comments. &amp;nbsp;
&lt;br&gt;Maybe he could at least give us his code under the CLA to work upon.
&lt;br&gt;&lt;br&gt;Of course all changes done now should be made as forward compatible as &amp;nbsp;
&lt;br&gt;possible, because a bigger rewrite of Zend_Pdf might happen. As long &amp;nbsp;
&lt;br&gt;as we make that rewrite not to complicated, which shouldn't be that &amp;nbsp;
&lt;br&gt;hard (even if it gets more modular we could keep the old methods, but &amp;nbsp;
&lt;br&gt;mark the deprecated), I'm all for giving it some love.
&lt;br&gt;&lt;br&gt;&amp;gt; Best wishes,
&lt;br&gt;&amp;gt; Markus
&lt;br&gt;&lt;br&gt;nico
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Plans-for-Zend_PDF-tp23425152p23449119.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23429139</id>
	<title>Res: Plans for Zend_PDF</title>
	<published>2009-05-07T08:19:04Z</published>
	<updated>2009-05-07T08:19:04Z</updated>
	<author>
		<name>Luiz Fernando-4</name>
	</author>
	<content type="html">&lt;br&gt;Hi, 
&lt;br&gt;&lt;br&gt;&lt;br&gt;I support the idea of Markus. 
&lt;br&gt;You can count with me. 
&lt;br&gt;It is important the ZF team give us a direction to follow.
&lt;br&gt;&lt;br&gt;Best regards, 
&lt;br&gt;Luiz Fernando
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;----- Mensagem original ----
&lt;br&gt;De: Markus Wolff &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23429139&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;markus@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Para: fw-formats &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23429139&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fw-formats@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Enviadas: Quinta-feira, 7 de Maio de 2009 8:51:21
&lt;br&gt;Assunto: [fw-formats] Plans for Zend_PDF
&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;since our project team is going to need to create PDF documents with
&lt;br&gt;complex layouts soon and Zend_PDF does not really support hits right
&lt;br&gt;now, we are considering adding support for cells and tables by ourselves.
&lt;br&gt;&lt;br&gt;Before we do that, I'd like to inquire if there are already plans (and
&lt;br&gt;more importantly, time-tables) for adding those features to Zend_PDF
&lt;br&gt;&amp;quot;officially&amp;quot;.
&lt;br&gt;&lt;br&gt;Given that there have been quite a few patches and enhancements by other
&lt;br&gt;users who also proposed these for official inclusion, I am also
&lt;br&gt;wondering if Zend is currently considering one those options? If the
&lt;br&gt;current patches are not being considered, it would be good to know why,
&lt;br&gt;so we could work towards not repeating mistakes others have already made
&lt;br&gt;and maybe be able to contribute our code?
&lt;br&gt;&lt;br&gt;Best wishes,
&lt;br&gt;Markus
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Veja quais são os assuntos do momento no Yahoo! +Buscados
&lt;br&gt;&lt;a href=&quot;http://br.maisbuscados.yahoo.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://br.maisbuscados.yahoo.com&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Plans-for-Zend_PDF-tp23425152p23429139.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23425152</id>
	<title>Plans for Zend_PDF</title>
	<published>2009-05-07T04:51:21Z</published>
	<updated>2009-05-07T04:51:21Z</updated>
	<author>
		<name>Markus Wolff</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;since our project team is going to need to create PDF documents with
&lt;br&gt;complex layouts soon and Zend_PDF does not really support hits right
&lt;br&gt;now, we are considering adding support for cells and tables by ourselves.
&lt;br&gt;&lt;br&gt;Before we do that, I'd like to inquire if there are already plans (and
&lt;br&gt;more importantly, time-tables) for adding those features to Zend_PDF
&lt;br&gt;&amp;quot;officially&amp;quot;.
&lt;br&gt;&lt;br&gt;Given that there have been quite a few patches and enhancements by other
&lt;br&gt;users who also proposed these for official inclusion, I am also
&lt;br&gt;wondering if Zend is currently considering one those options? If the
&lt;br&gt;current patches are not being considered, it would be good to know why,
&lt;br&gt;so we could work towards not repeating mistakes others have already made
&lt;br&gt;and maybe be able to contribute our code?
&lt;br&gt;&lt;br&gt;Best wishes,
&lt;br&gt;Markus
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Plans-for-Zend_PDF-tp23425152p23425152.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22929144</id>
	<title>Re: Res: Upcoming Zend_Pdf Enhancements</title>
	<published>2009-04-07T06:28:38Z</published>
	<updated>2009-04-07T06:28:38Z</updated>
	<author>
		<name>Joseph Chereshnovsky</name>
	</author>
	<content type="html">Yeah, thanks!!
&lt;br&gt;&lt;br&gt;It would be great to have all that features in Zend_Pdf.
&lt;br&gt;In this case it would be some documented, test cases added, etc,
&lt;br&gt;etc ... ...officially released.
&lt;br&gt;&lt;br&gt;Its a pity but right now it is just a third party component that is not
&lt;br&gt;allowed to be used in serious projects :/
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Tue, 2009-04-07 at 05:33 -0700, Luiz Fernando wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Same question.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Please look at 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.refw.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.refw.org/&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; It's Zend_Pdf based and they like to contribute to ZF.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; This component, Re_Pdf, have a lot of goodies over Zend_Pdf.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; But don't have a good documentation, only API PHPDOC, no reference
&lt;br&gt;&amp;gt; guide, tutorials...
&lt;br&gt;&amp;gt; Only a IRC channel where nobody returns.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Best regards,
&lt;br&gt;&amp;gt; Luiz Fernando
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ______________________________________________________________________
&lt;br&gt;&amp;gt; De: Joseph &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22929144&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;joseph007@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; Para: fw-formats &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22929144&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fw-formats@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; Enviadas: Terça-feira, 7 de Abril de 2009 7:00:01
&lt;br&gt;&amp;gt; Assunto: Re: [fw-formats] Upcoming Zend_Pdf Enhancements
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Same question!!
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Wed, 2009-02-04 at 14:49 -0800, mvug wrote:
&lt;br&gt;&amp;gt; &amp;gt; Does anybody know what the status is? And especially the status of
&lt;br&gt;&amp;gt; the
&lt;br&gt;&amp;gt; &amp;gt; enhancements to the memory usage and template system of zend pdf?
&lt;br&gt;&amp;gt; &amp;gt; Thanks! &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Willie Alberty wrote:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; For the last few months I have been working with Kevin McArthur on
&lt;br&gt;&amp;gt; a &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; comprehensive PDF generation project for a client [Streamflow] who
&lt;br&gt;&amp;gt; has &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; some pretty advanced layout needs. The project is nearing
&lt;br&gt;&amp;gt; completion &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; and we have been discussing the possibility of contributing
&lt;br&gt;&amp;gt; large &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; portions of the code back to the Zend Framework as improvements
&lt;br&gt;&amp;gt; to &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Zend_Pdf.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; In light of several recent postings to fw-general and fw-formats,
&lt;br&gt;&amp;gt; as &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; well as a few encouraging proposals recently submitted to the
&lt;br&gt;&amp;gt; Wiki, we &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; would like to formally announce our plans and describe the new &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; functionality at a high level here.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; We will be submitting proposals in the coming weeks that
&lt;br&gt;&amp;gt; describe &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; these new components in more detail along with fully-functional &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; reference implementations. Our hope is to join forces with other &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; interested developers to help fast-track these proposals through
&lt;br&gt;&amp;gt; the &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; feedback and approval process, write tests, user documentation,
&lt;br&gt;&amp;gt; and &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; examples, and exercise the code as much as possible.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; We're really proud of this work and are excited to share it with
&lt;br&gt;&amp;gt; the &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; community. We believe that these enhancements will further
&lt;br&gt;&amp;gt; establish &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Zend_Pdf's role as the gold standard for PDF generation using PHP.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Text Layout Engine
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; ------------------
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;quot;How do I wrap long lines of text?&amp;quot; This is probably the most
&lt;br&gt;&amp;gt; commonly- 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; asked question regarding Zend_Pdf. I'm pleased to report that not
&lt;br&gt;&amp;gt; only &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; have we solved the problem of text-wrapping, but a whole host of &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; others as well. The new engine provides fully-automatic text
&lt;br&gt;&amp;gt; layout, &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; and has customization hooks in a variety of places.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Line breaks are calculated using the Unicode Line Breaking
&lt;br&gt;&amp;gt; Algorithm &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; (UAX #14), providing linguistically-appropriate line breaks, not
&lt;br&gt;&amp;gt; just &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; at whitespace characters.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Paragraph styles allow you to specify left-, center-, and right- 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; alignment, as well as full justification, line leading, line
&lt;br&gt;&amp;gt; height, &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; line multiple (double-space, triple-space, etc.), pre- and post- &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; paragraph spacing, left- and right-side margins, and first-line &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; indentation. Paragraph styles also support left-, center-, right-,
&lt;br&gt;&amp;gt; and &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; decimal-aligned tab stops, with or without leaders, for
&lt;br&gt;&amp;gt; intra-line &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; alignment needs.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; In addition to the left-to-right line sweep used by most
&lt;br&gt;&amp;gt; Latin-based &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; scripts, right-to-left line sweep is also supported, and is &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; automatically detected by the layout engine; you never need to
&lt;br&gt;&amp;gt; supply &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; strings in reverse character order for right-to-left text layout.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; The layout engine is based around the concept of an attributed
&lt;br&gt;&amp;gt; string. &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; These are Unicode strings of unlimited length, and fully support
&lt;br&gt;&amp;gt; the &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; entire Unicode character set, including characters outside the
&lt;br&gt;&amp;gt; Basic &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Multilingual Plane (BMP).
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Attributed strings allow you to assign stylistic attributes to &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; arbitrary ranges of characters within the string. These attributes
&lt;br&gt;&amp;gt; are &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; used by typesetters to determine the specific look and location
&lt;br&gt;&amp;gt; for &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; every character. This means that you can make unlimited style
&lt;br&gt;&amp;gt; changes &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; within a block of text, even changing styles
&lt;br&gt;&amp;gt; character-by-character if &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; desired.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; The layout engine automatically manages all of these style
&lt;br&gt;&amp;gt; changes, &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; applying them as necessary when drawing the text on the page.
&lt;br&gt;&amp;gt; The &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; following style attributes are supported:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;- Font
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;- Font size
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;- Fill color
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;- Stroke width and color
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;- Underline and strikethrough
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;- Super- and sub-script
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;- Background color
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; You can add your own custom attributes as well, which you can use
&lt;br&gt;&amp;gt; in &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; your own subclasses to completely customize the layout engine's &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; behavior.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; These attributed strings will eventually be shared with Zend_Rtf &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; (recently proposed by Andries Seutens), as each attributed string
&lt;br&gt;&amp;gt; is &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; essentially a self-contained RTF document. This opens up the &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; possibility for generating fully-styled PDF or RTF output from
&lt;br&gt;&amp;gt; the &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; same source with only a couple of lines of code. It will also &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; eventually be possible to use existing styled RTF documents as
&lt;br&gt;&amp;gt; the &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; basis for PDF text drawing, eliminating the need to manually
&lt;br&gt;&amp;gt; apply &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; style attributes in your PHP code.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; A layout manager class is responsible for drawing these
&lt;br&gt;&amp;gt; attributed &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; strings. It lays out the text in a series of arbitrarily-shaped
&lt;br&gt;&amp;gt; text &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; containers, automatically moving from one to the next as each is &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; filled. Rectangular and circular containers will be provided, but
&lt;br&gt;&amp;gt; you &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; can easily create your own custom containers for other shapes or
&lt;br&gt;&amp;gt; to &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; flow text around images.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Multi-column output is as easy as creating two adjacent text &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; containers on the same page. Text containers don't even need to be
&lt;br&gt;&amp;gt; on &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; the same PDF page: you can start your text in a small container
&lt;br&gt;&amp;gt; on &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; page 1, then continue it on page 17.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Callback functions are provided to allow you to create text
&lt;br&gt;&amp;gt; additional &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; containers as needed, which can be located on new pages. This is &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; useful if you do not know the length of the text you are drawing
&lt;br&gt;&amp;gt; ahead &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; of time, or if you want to adapt your layout on-the-fly.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; You can also use multiple layout managers on a single page,
&lt;br&gt;&amp;gt; allowing &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; you to create complex multi-page flows for a series of text
&lt;br&gt;&amp;gt; runs. &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; These can be useful for creating page headers and footers, or
&lt;br&gt;&amp;gt; for &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; running stories side-by-side in a newsletter.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Drawing Model
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; -------------
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Three new primitive geometry classes allow you to precisely
&lt;br&gt;&amp;gt; define &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; drawing locations, sizes, and regions. They also provide a host
&lt;br&gt;&amp;gt; of &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; convenience functions allowing for calculation, conversion, &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; intersection testing, etc.:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;- Point: x and y coordinate
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;- Size: height and width
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;- Rectangle: combination of a point and size
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; PDF pages are drawn using a series of content streams, which
&lt;br&gt;&amp;gt; contain &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; all of the low-level drawing commands. Zend_Pdf_Page currently
&lt;br&gt;&amp;gt; manages &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; its own private content stream.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; We've separated content streams from Zend_Pdf_Page, promoting them
&lt;br&gt;&amp;gt; to &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; first-class objects. This allows us to use these content streams
&lt;br&gt;&amp;gt; as &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; templates that can be reused again and again, either on a single
&lt;br&gt;&amp;gt; page &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; or multiple pages. Templates can greatly reduce PDF file sizes
&lt;br&gt;&amp;gt; and &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; improve memory use and performance in PDF viewer applications.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; It is also possible to create a template from any page in an
&lt;br&gt;&amp;gt; existing &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; PDF document. You can then reuse the template in the same PDF, or
&lt;br&gt;&amp;gt; even &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; copy it to a new PDF document, where you can use it as a page &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; background, draw it as a thumbnail, perform imposition, etc.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Performance and Memory
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; ----------------------
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; We've also made numerous performance and memory-usage
&lt;br&gt;&amp;gt; improvements &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; throughout the code. Most data is now lazily-loaded, allowing you
&lt;br&gt;&amp;gt; to &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; manipulate very large documents, containing thousands or millions
&lt;br&gt;&amp;gt; of &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; individual objects or hundreds of megabytes or gigabytes in size,
&lt;br&gt;&amp;gt; with &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; a very low memory footprint.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Future Enhancements
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; -------------------
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; All of this new functionality lays the groundwork for even more &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; powerful enhancements down the road:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;- Top-to-bottom line sweep for Asian scripts
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;- Bi-directional text (for Hebrew, Arabic, and others)
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;- Bulleted and numbered text lists
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;- HTML-inspired inline text tables
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;- Inline attachments (for example, images that flow with text)
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;- Advanced typographic features such as tracking, pairwise
&lt;br&gt;&amp;gt; kerning, &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; ligatures, etc.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;- Hyphenation support
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;- Glyph substitution using fallback fonts
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp;- and more...
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Again, we're really excited to be sharing this code with the &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; community. We'll be creating the proposals for the various
&lt;br&gt;&amp;gt; components &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; in the coming weeks and announcing them on the fw-formats list
&lt;br&gt;&amp;gt; when &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; they're ready for review. In the meantime, if you have any
&lt;br&gt;&amp;gt; high-level &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; questions, please don't hesitate to ask.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Willie Alberty, Owner
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Spenlen Media
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22929144&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;willie@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &lt;a href=&quot;http://www.spenlen.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.spenlen.com/&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ______________________________________________________________________
&lt;br&gt;&amp;gt; Veja quais são os assuntos do momento no Yahoo! + Buscados: Top 10 -
&lt;br&gt;&amp;gt; Celebridades - Música - Esportes
&lt;/div&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Upcoming-Zend_Pdf-Enhancements-tp16509067p22929144.html" />
</entry>

</feed>
