Re: [fw-general] Zend_Pdf requirements

2007-11-02 Thread Freddie Witherden
Hi. Personally, I'd like to see support for vector EPS images. Even minimal support for older formats would be nice. I believe it is possible to include PDF files using Zend_Pdf and so using a utility such as epstopdf you can convert your EPS images to PDF files which you can then include

Re: [fw-general] improving Zend_Mail_*_Imap

2007-11-02 Thread Nico Edtinger
Lars Kneschke wrote: How can i get in contact with current maintainer of this classes, to solve these problems? That would be me. I have some plans to add all or most of the features you'll need, but as always time is the limiting factor. So help is appreciated.

Re: [fw-general] Zend_Pdf requirements

2007-11-02 Thread Jack Sleight
I'll second that. Charlie Dover wrote: Personally, I'd like to see support for vector EPS images. Even minimal support for older formats would be nice. -CD -- Jack

Re: [fw-general] Zend_Pdf requirements

2007-11-02 Thread Charlie Dover
Personally, I'd like to see support for vector EPS images. Even minimal support for older formats would be nice. -CD

Re: [fw-general] Zend_Pdf requirements

2007-11-02 Thread Bryce Lohr
Hi Alexander, I'd like to second Karol's request for text block formatting. IMHO, I think text blocks (with automatic line/page breaks and alignment) should be moved up the priority list. This is the missing feature preventing me from using Zend_Pdf right now. Respectfully, Bryce Lohr Karol

[fw-general] developers: merge changes to release-1.0 branch

2007-11-02 Thread Darby Felton
Hi all framework developers, I have noticed that most changes committed to the trunk since 1.0.2 (excluding documentation) have not been merged to the release-1.0 branch. The Zend team has decided to relieve committers of the requirement to have another community member or Zend team member review

Re: [fw-general] Zend_Bittorrent proposal - ready for review

2007-11-02 Thread Christer Edvartsen
I think I can start looking at the tracker code to make it more generic sometime next week, but I would like to hear what the users think of a Bittorrent component first. I guess it's not something the majority of zf users would use, but I think it's a nice component to have access to. :) > I'm i

[fw-general] improving Zend_Mail_*_Imap

2007-11-02 Thread Lars Kneschke
Hello! I'm about to convert FeLaMiMail (the email client from the eGroupWare project) to the ZF based imap classes. The classes currently lack some important features. The classes are unable to work directly with the UID (UID FETCH for example). The classes don't support the imap SORT and SEARCH

Re: [fw-general] xmlrpc beginners bad luck

2007-11-02 Thread Matthew Weier O'Phinney
-- Waigani <[EMAIL PROTECTED]> wrote (on Friday, 02 November 2007, 02:37 AM -0700): > I'm trying a simple 'hello world' test of xmlrpc but keep getting: > > "Uncaught exception 'Zend_XmlRpc_Client_FaultException' with message 'Failed > to parse response'" These are almost always a result of havin

Re: [fw-general] An idea i want to share with the rest of the zf developers - again about an cli =)

2007-11-02 Thread Matthew Weier O'Phinney
-- Truppe Steven <[EMAIL PROTECTED]> wrote (on Friday, 02 November 2007, 03:01 AM +0100): > i have writen an email about some kind of command line interface for the > framework some time ago and now have made a few tests i want to share to > get some feedback. > > I realy love the Reflection-API,

Re: [fw-general] Zend_Pdf requirements

2007-11-02 Thread Karol Grecki
Hi Alexander, I used Zend_Pdf extensively in one of my projects and these are features I missed the most: -tables -text blocks -links (pdf reader will recognize full urls, but I couldn't find a way to output link with arbitrary name) Cheers Alexander Veremyev wrote: > > Hi all, > > I've tri

Re: [fw-general] Zend_Bittorrent proposal - ready for review

2007-11-02 Thread etng
I'm interesting with the tracker And the Bittorrent in Pear is categorized as File. > On 10/31/07, Christer Edvartsen <[EMAIL PROTECTED]> wrote: > > A proposal for a Zend_Bittorrent component is ready for review. The > proposal can be found at > > http://framework.zend.com/wiki/display/ZFPROP/Ze

[fw-general] Zend_Cache with objects with references

2007-11-02 Thread Taylor Andrew
Hi, I have a series of 100 objects, each object holds a reference to another single object of a different class. I'd like to cache each of the 100 objects as they are expensive to make. Is it still possible to cache them when they hold a reference to another object? I've tried, and, each of the

[fw-general] xmlrpc beginners bad luck

2007-11-02 Thread Waigani
Hi All, I'm trying a simple 'hello world' test of xmlrpc but keep getting: "Uncaught exception 'Zend_XmlRpc_Client_FaultException' with message 'Failed to parse response'" So I've got: 1. a function in a class /** * Say Hello * * @return string */ function hello(){ return 'Hello World'; } 2.