[fw-general] Re: S3 and Queue

2009-01-27 Thread Justin Plock
nks! Ralph On 1/27/09 11:46 AM, "Justin Plock" wrote: Correct. Thanks. -Justin On 1/27/09, Ralph Schindler wrote: Just to confirm, this is your code right: http://framework.zend.com/svn/framework/laboratory/library/Zend/Service/Amaz on/S3.php -ralph On 1/25/09 9:33 PM,

[fw-general] S3 and Queue

2009-01-25 Thread Justin Plock
Would anyone like to take over development of my two proposals: Zend_Service_Amazon_S3 and Zend_Queue? I don't have the bandwidth right now to complete these two projects and I hate to leave them sit in the laboratory and incubator. Thanks. -Justin

[fw-general] Re: S3 Service / CDN using ZF

2008-12-07 Thread Justin Plock
robert mena wrote: Hi, I've searched the archives but could not find anything new about a Zend_S3 (for Amazon's S3 service). The idea was dropped? I'd like to use Amazon's S3 to store image files and direct the users to their servers when they are not local. I'd need to use some GeoIP or

[fw-general] Re: Zend_Net Package?

2008-12-04 Thread Justin Plock
A.J. Brown wrote: Hello all, I wrote a library for matching IP addresses, ranges, and networks against eachother with support for subnet masks, CIDR, and IPv6 a few months ago. It's useful for writing IP filters (firewall-esque) and such. It uses bitwise mathematical calculations to do the

[fw-general] View Helper Repository?

2008-11-26 Thread Justin Plock
Does anyone know if there is some sort of site which is collecting useful view helpers to use? Might be a good idea. In any case, here is a view helper I use to convert a UNIX timestamp stored as UTC to a user-defined timezone and locale: class My_View_Helper_FormatDate extends Zend_View_Helpe

[fw-general] Zend_Service_Amazon_S3 in laboratory

2008-06-26 Thread Justin Plock
Hi Everyone, I recently committed Zend_Service_Amazon_S3 to the laboratory and am interested in any feedback anyone might be able to provide. This class is meant to be used as a PHP stream wrapper (stream_wrapper_register()) and that's primarily how my unit tests interface with the class as w

[fw-general] Re: ZF-compatible S3 class

2008-03-10 Thread Justin Plock
Matthew Weier O'Phinney wrote: -- Justin Plock <[EMAIL PROTECTED]> wrote (on Sunday, 09 March 2008, 08:42 PM -0400): I just wanted to let everyone know that I created a ZF-compatible Amazon S3 PHP user-stream wrapper available on Google Code. http://code.google.com/p/php-

[fw-general] ZF-compatible S3 class

2008-03-09 Thread Justin Plock
Hi Everyone, I just wanted to let everyone know that I created a ZF-compatible Amazon S3 PHP user-stream wrapper available on Google Code. http://code.google.com/p/php-s3/ I'd be interested in feedback for this class. Thanks. -Justin

[fw-general] Re: Amazon SQS Class

2008-03-03 Thread Justin Plock
Justin Plock wrote: Hi Everyone, Besides my S3 class, I also wrote a queuing class which interfaces with Amazon SQS. I was thinking of submitting a proposal for a "Zend_Queue" which had various backend adapters (SQS, Database, Files, Zend_Cache). Would anyone have a use for this

[fw-general] Amazon SQS Class

2008-03-02 Thread Justin Plock
Hi Everyone, Besides my S3 class, I also wrote a queuing class which interfaces with Amazon SQS. I was thinking of submitting a proposal for a "Zend_Queue" which had various backend adapters (SQS, Database, Files, Zend_Cache). Would anyone have a use for this? Thanks. -Justin

Re: [fw-general] Re: a couple of suggestions on viewRenderer

2007-06-01 Thread Justin Plock
Hi Matt, Are there any plans for you to provide what *you* do as a sample MVC application so some of us have some examples to go by? Digging through the documentation is rather time consuming and I end up having to look into the source code to figure it out anyway. (Yes, I have RT*M) Thanks.

Re: [fw-general] ViewRenderer Problems

2007-05-30 Thread Justin Plock
I agree with Kevin. I prefer to keep all of my HTML open and close tags in one file and include self-contained sub-sections as necessary. I've begun using most of the other Zend-classes but this piece of MVC is a major stumbling block for me on adoption. Thanks. -Justin On 5/30/07, Kevin McAr

Re: [fw-general] Really complications Zend_Controller is purpose ZF?

2007-05-29 Thread Justin Plock
I'd love to see a tutorial, using ZF 1.0RC1 (or later) using Smarty. I myself have been trying to figure out how to migrate an existing code base where we used Smarty exclusively, over to the ZF MVC pattern. I've ended up having to disable both the ViewRenderer and the ErrorHandler plugin to star

Re: [fw-general] Where should error checking occur?

2007-05-16 Thread Justin Plock
]> wrote: -- Justin Plock <[EMAIL PROTECTED]> wrote (on Wednesday, 16 May 2007, 04:11 PM -0400): > Thanks for the comments. > > So if my model was going to throw an error about a duplicate row, for > example, you'd throw that as an exception then let the controller deal >

Re: [fw-general] Where should error checking occur?

2007-05-16 Thread Justin Plock
king around. -ralph Justin Plock wrote: > I'm trying to convert over an existing site over to using Zend_Db and > Zend_Controller. I've got some error checking code in my > Zend_Db_Table classes to make sure all of my required values are > populated. I'm just asking in

[fw-general] Where should error checking occur?

2007-05-16 Thread Justin Plock
I'm trying to convert over an existing site over to using Zend_Db and Zend_Controller. I've got some error checking code in my Zend_Db_Table classes to make sure all of my required values are populated. I'm just asking in terms of a best practice, should this sort of error checking be moved up t