RE: [fw-general] Zend_Locale

2007-02-22 Thread Ian Warner
Thomas Thank you, I will try out the Zend Translate. My question though pointed at the fact that I have these three digit elements mixed in within the 2 char country codes, with no discernable way to sort what countries belong to what 3 digit group. Wouldn't it be better to create a separate met

Re: [fw-general] Zend Framework 0.8 / lifting code freeze

2007-02-22 Thread Nico Edtinger
[22.02.2007 02:53] Bill Karwin wrote: I'm not sure what this implies for Zend Framework in relation to Zawinski's Law of Software Development , but it's pretty cool! ;-). It says "Those programs which cannot so expand are

Re: [fw-general] Zend_Locale

2007-02-22 Thread Thomas Weidner
My question though pointed at the fact that I have these three digit elements mixed in within the 2 char country codes, with no discernable way to sort what countries belong to what 3 digit group. To be clear: The functions name is getRegionList() A region is not a country... a region can also

RE: [fw-general] Zend_Locale

2007-02-22 Thread Ian Warner
-Original Message- From: Thomas Weidner [mailto:[EMAIL PROTECTED] Sent: 22 February 2007 14:20 To: Ian Warner; fw-general@lists.zend.com Subject: Re: [fw-general] Zend_Locale > My question though pointed at the fact that I have these three digit > elements mixed in within the 2 char cou

[fw-general] File Upload

2007-02-22 Thread Romeo-Adrian Cioaba
i'm trying to figure out how to upload a file through Zend Framework. If have tryed with no luck to upload using Zend_Http_Client. Can anyone give me a practical example? Thank You!

Re: [fw-general] File Upload

2007-02-22 Thread Craig Slusher
Section 13.2.4 File Uploads http://framework.zend.com/manual/en/zend.http.client.advanced.html On 2/22/07, Romeo-Adrian Cioaba <[EMAIL PROTECTED]> wrote: i'm trying to figure out how to upload a file through Zend Framework. If have tryed with no luck to upload using Zend_Http_Client. Can anyone

Re: [fw-general] Proposal: Zend_Service_Yadis

2007-02-22 Thread Pádraic Brady
Hi Bill, I figured breaking it down made huge sense since not all the components required to consume an OpenID service are specific to OpenID. Yadis is used across a few identity services, several other components are the foundation of general use Cryptographic algorithms, etc. So I'll go one b

Re: [fw-general] File Upload

2007-02-22 Thread Romeo-Adrian Cioaba
hey, following that exact page i have tried to make a simple picture upload script but with no success. can someone point me in the right direction? thanks! On 2/22/07, Craig Slusher <[EMAIL PROTECTED]> wrote: Section 13.2.4 File Uploads http://framework.zend.com/manual/en/zend.http.client.a

[fw-general] Post-1.0 release schedule

2007-02-22 Thread Matthew Ratzloff
I guess this is primarily a question for Bill. Will the post-1.0 release schedule match the pace of the pre-1.0 release schedule? Meaning, once 1.0 is released, will we see 1.1 about a month later? And 1.2 about a month after that? Just curious, -Matt

Re: [fw-general] Post-1.0 release schedule

2007-02-22 Thread Kevin McArthur
Further, will post 1.0 releases maintain a compatible interface between major versions? Kevin - Original Message - From: "Matthew Ratzloff" <[EMAIL PROTECTED]> To: Sent: Thursday, February 22, 2007 11:38 AM Subject: [fw-general] Post-1.0 release schedule I guess this is primarily a

Re: [fw-general] making Zend::loadClass() interface aware

2007-02-22 Thread Matthew Ratzloff
Sounds good to me. -Matt > I proposed the following improvement today: > > http://framework.zend.com/issues/browse/ZF-937 > > Basically, I propose having Zend::loadClass() test first with > class_exists() and then with interface_exists(). > > The rationale I have for this is that when using Z

Re: [fw-general] File Upload

2007-02-22 Thread Michael Baerwolf
I just register the global $_FILES and then call it in the controller In the bootstrap Zend::register('files',$_FILES); Then an action in my image controller $files = Zend::registry('files'); copy($files['image_name']['tmp_name'], "/home/users/".$username."/images/".$form

Re: [fw-general] File Upload

2007-02-22 Thread Craig Slusher
Can you show us some code? On 2/22/07, Romeo-Adrian Cioaba <[EMAIL PROTECTED]> wrote: hey, following that exact page i have tried to make a simple picture upload script but with no success. can someone point me in the right direction? thanks! On 2/22/07, Craig Slusher <[EMAIL PROTECTED]> wr

[fw-general] 0.8 and isDispatched() non-object

2007-02-22 Thread Teemu Valimaki
Hi, great work with 0.8 release! I just downloaded it, tried to migrate from 0.7 and now I get the following fatal error "Call to a member function isDispatched() on a non-object in /ZendFramework/library/Zend/Controller/Action.php on line 390". I checked Action.php and there's no such fun

Re: [fw-general] 0.8 and isDispatched() non-object

2007-02-22 Thread Matthew Weier O'Phinney
-- Teemu Valimaki <[EMAIL PROTECTED]> wrote (on Thursday, 22 February 2007, 08:52 PM +0200): > great work with 0.8 release! > > I just downloaded it, tried to migrate from 0.7 and now I get the > following fatal error "Call to a member function isDispatched() on a > non-object in /ZendFramewor

RE: [fw-general] Post-1.0 release schedule

2007-02-22 Thread Bill Karwin
The objective of reaching 1.0 is so that we users of ZF can have some assurance that interfaces are more stable than they were during preview releases. Therefore all component developers will need to pay attention to backward-compatibility issues. Regarding release schedule, we haven't decided th

Re: [fw-general] File Upload

2007-02-22 Thread Romeo-Adrian Cioaba
following Michael's sugestion here is what we've come out with. 1. a simple form with a browse button in the template file: where ___URL___ is your actions URL 2. Register the global $_FILES in the bootstrap Zend::register('files',$_FILES); 3. the action in the controller: $files