[fw-general] Cloning PDF page

2007-04-26 Thread Jean-Marc Fontaine
Hello,

I am trying to generate a PDF document. I read the documentation but I
found the Zend_Pdf module very rough. It is lacking a lot of features
compared to the FPDF library. Unfortunately, this one is quite outdated
and seems to be unmaintained.

I think the Zend_Pdf philosophy is more modifying an existing document
than creating one from scratches.

I tried to clone a page of an loaded document but this feature is
unimplemented for now. Is there another way to do that ?

Thanks.

Jean-Marc


Kanopée - Développement Informatique Durable
56 rue de Saint André
59800 Lille

Tél  : 03 20 74 61 25
Portable : 06 88 56 50 79
Fax  : 03 20 06 51 26
Web  : http://www.kanopee.net/



Re: [fw-general] Cloning PDF page

2007-04-26 Thread Alexander Veremyev

Hi,

There are no possibility to clone page and its content now.
It's planned to have this functionality, but it's still under development.

You can draw on existing pages, add new pages, reorder pages, but not 
move/clone content now.


With best regards,
   Alexander Veremyev.

Jean-Marc Fontaine wrote:

Hello,

I am trying to generate a PDF document. I read the documentation but I
found the Zend_Pdf module very rough. It is lacking a lot of features
compared to the FPDF library. Unfortunately, this one is quite outdated
and seems to be unmaintained.

I think the Zend_Pdf philosophy is more modifying an existing document
than creating one from scratches.

I tried to clone a page of an loaded document but this feature is
unimplemented for now. Is there another way to do that ?

Thanks.

Jean-Marc


Kanopée - Développement Informatique Durable
56 rue de Saint André
59800 Lille

Tél  : 03 20 74 61 25
Portable : 06 88 56 50 79
Fax  : 03 20 06 51 26
Web  : http://www.kanopee.net/






[fw-general] persistent ACL data

2007-04-26 Thread Raul Gomez
hello, i am new to zend framework. I am doing an autenthication system 
with zend auth and acl, following this tutorial 
http://devzone.zend.com/node/view/id/1665
its working with databases, but how can i keep the acl data persistent 
without calling database for it again, like auth does it with some 
auth::getInstance in the bootstrap so you just fill that only once in 
the authentication so you dont have to carry again the auth info 
everytime, right now i am calling the database for acl info everytime i 
enter a page.
if someone working applying databases in an auth/acl excenario and can 
show me would be nice.


thank you.




Re: [fw-general] persistent ACL data

2007-04-26 Thread Craig Slusher

You could use Zend_Session to make the ACL information persistent.

On 4/26/07, Raul Gomez [EMAIL PROTECTED] wrote:

hello, i am new to zend framework. I am doing an autenthication system
with zend auth and acl, following this tutorial
http://devzone.zend.com/node/view/id/1665
its working with databases, but how can i keep the acl data persistent
without calling database for it again, like auth does it with some
auth::getInstance in the bootstrap so you just fill that only once in
the authentication so you dont have to carry again the auth info
everytime, right now i am calling the database for acl info everytime i
enter a page.
if someone working applying databases in an auth/acl excenario and can
show me would be nice.

thank you.






--
Craig Slusher
[EMAIL PROTECTED]


Re: [fw-general] persistent ACL data

2007-04-26 Thread José de Menezes Soares Neto

Hi Raul,

I am using SESSION for the user type (member, guest, admin...etc)
But you can user Zend_Register too!

Best Regards,

José de Menezes

2007/4/26, Raul Gomez [EMAIL PROTECTED]:


hello, i am new to zend framework. I am doing an autenthication system
with zend auth and acl, following this tutorial
http://devzone.zend.com/node/view/id/1665
its working with databases, but how can i keep the acl data persistent
without calling database for it again, like auth does it with some
auth::getInstance in the bootstrap so you just fill that only once in
the authentication so you dont have to carry again the auth info
everytime, right now i am calling the database for acl info everytime i
enter a page.
if someone working applying databases in an auth/acl excenario and can
show me would be nice.

thank you.