Re: [fw-general] Zend_Locale compatibility mode

2008-10-21 Thread Bart McLeod
I stand corrected: I reverted to revision 11775 to get rid of the error. 
Used your code snippet with the latest Zend_Locale.php and it works.


Thanks a lot, you just saved me about sixty warning messages :-)

Bart

Christopher Östlund schreef:

Are  you sure you're running the right revision?

Line 130 in Locale.php:

public static $compatibilityMode = true;

/C


On Tue, Oct 21, 2008 at 1:39 PM, Bart McLeod <[EMAIL PROTECTED] 
<mailto:[EMAIL PROTECTED]>> wrote:


The result is:
*Fatal error*: Access to undeclared static property:
Zend_Locale::$compatibilityMode
in *D:\ZendFramework\library\SpaceCMS\Cms_Plugin_Init.php* on line *8
*
Not that I thought putting *
*"Zend_Locale::$compatibilityMode = false;"
in would help, but then again, if you don't try...

What I would like to know is:
-url of the chapter that describes compatibilitymode
-a way to set it to false that works. :-)

Regards,

Bart McLeod

Christopher Östlund schreef:

It's in the trunk docs. It used to contain an error, but is
corrected now.

Zend_Locale::$compatibilityMode = false;

/C


On Tue, Oct 21, 2008 at 1:12 PM, Bart McLeod <[EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>> wrote:

Hi Thomas,

I also get the error and I noticed that the reference guide
does not know about compatibilityMode.

Where is the migration chapter?

I think I use Zend_Locale implicitly, because the problems
appear in the translator, but I still get about sixty
warnings scattered around my forms.

Not happy about it, as you can imagine.

On which component should we /simply /set compatibilityMode
to false, and is this a static call, or should we be looking
for a translator object or the like to set it on?

Regards,

Bart McLeod

Thomas Weidner schreef:

With r12003 there was also a new migration chapter added
which would have answered your questions.

According to the manual you can simply set compatibilityMode
to false which supresses the warning but will activate the
new API behaviour.

When you use Zend_Locale only implicit there will be no
problems.
Otherwise you will have to migrate your scripts according to
the migration chapter in the manual.

Greetings
Thomas Weidner, I18N Team Leader, Zend Framework
http://www.thomasweidner.com

- Original Message - From: "Pieter Kokx"
<[EMAIL PROTECTED]> <mailto:[EMAIL PROTECTED]>
To: "'Zend Framework General'" 
<mailto:fw-general@lists.zend.com>
Sent: Saturday, October 18, 2008 12:21 PM
Subject: [fw-general] Zend_Locale compatibility mode



Hi,

Since r12003 there is an compatibility mode added to
Zend_Locale, which
gives a warning. But I am not using Zend_Locale directly,
only by
Zend_Date and Zend_Translate. So, I don't know how to fix
this problems
with Zend_Date and Zend_Translate. Should these classes be
updated so
Zend_Locale will work again without the warning? Or is it
something that
I should fix myself?

-- 
Regards,


Pieter Kokx
MaakSite.net
PHP Developer










Re: [fw-general] Zend_Locale compatibility mode

2008-10-21 Thread Nick Thornley
As far as I can tell this addition only exists in the trunk, and not  
in 1.7.0PR


Nick

On 21 Oct 2008, at 12:53, Christopher Östlund wrote:


Are  you sure you're running the right revision?

Line 130 in Locale.php:

public static $compatibilityMode = true;

/C


On Tue, Oct 21, 2008 at 1:39 PM, Bart McLeod <[EMAIL PROTECTED]>  
wrote:

The result is:
Fatal error: Access to undeclared static property: Zend_Locale:: 
$compatibilityMode in D:\ZendFramework\library\SpaceCMS 
\Cms_Plugin_Init.php on line 8


Not that I thought putting
"Zend_Locale::$compatibilityMode = false;"
in would help, but then again, if you don't try...

What I would like to know is:
-url of the chapter that describes compatibilitymode
-a way to set it to false that works. :-)

Regards,

Bart McLeod

Christopher Östlund schreef:
It's in the trunk docs. It used to contain an error, but is  
corrected now.


Zend_Locale::$compatibilityMode = false;

/C


On Tue, Oct 21, 2008 at 1:12 PM, Bart McLeod <[EMAIL PROTECTED]>  
wrote:

Hi Thomas,

I also get the error and I noticed that the reference guide does  
not know about compatibilityMode.


Where is the migration chapter?

I think I use Zend_Locale implicitly, because the problems appear  
in the translator, but I still get about sixty warnings scattered  
around my forms.


Not happy about it, as you can imagine.

On which component should we simply set compatibilityMode to false,  
and is this a static call, or should we be looking for a translator  
object or the like to set it on?


Regards,

Bart McLeod

Thomas Weidner schreef:
With r12003 there was also a new migration chapter added which  
would have answered your questions.


According to the manual you can simply set compatibilityMode to  
false which supresses the warning but will activate the new API  
behaviour.


When you use Zend_Locale only implicit there will be no problems.
Otherwise you will have to migrate your scripts according to the  
migration chapter in the manual.


Greetings
Thomas Weidner, I18N Team Leader, Zend Framework
http://www.thomasweidner.com

- Original Message - From: "Pieter Kokx" <[EMAIL PROTECTED]>
To: "'Zend Framework General'" 
Sent: Saturday, October 18, 2008 12:21 PM
Subject: [fw-general] Zend_Locale compatibility mode



Hi,

Since r12003 there is an compatibility mode added to Zend_Locale,  
which

gives a warning. But I am not using Zend_Locale directly, only by
Zend_Date and Zend_Translate. So, I don't know how to fix this  
problems
with Zend_Date and Zend_Translate. Should these classes be  
updated so
Zend_Locale will work again without the warning? Or is it  
something that

I should fix myself?

--
Regards,

Pieter Kokx
MaakSite.net
PHP Developer












Re: [fw-general] Zend_Locale compatibility mode

2008-10-21 Thread Christopher Östlund
Are  you sure you're running the right revision?

Line 130 in Locale.php:

public static $compatibilityMode = true;

/C


On Tue, Oct 21, 2008 at 1:39 PM, Bart McLeod <[EMAIL PROTECTED]> wrote:

>  The result is:
> *Fatal error*: Access to undeclared static property:
> Zend_Locale::$compatibilityMode in *
> D:\ZendFramework\library\SpaceCMS\Cms_Plugin_Init.php* on line *8
> *
> Not that I thought putting *
> *"Zend_Locale::$compatibilityMode = false;"
> in would help, but then again, if you don't try...
>
> What I would like to know is:
> -url of the chapter that describes compatibilitymode
> -a way to set it to false that works. :-)
>
> Regards,
>
> Bart McLeod
>
> Christopher Östlund schreef:
>
> It's in the trunk docs. It used to contain an error, but is corrected now.
>
> Zend_Locale::$compatibilityMode = false;
>
> /C
>
>
> On Tue, Oct 21, 2008 at 1:12 PM, Bart McLeod <[EMAIL PROTECTED]> wrote:
>
>>  Hi Thomas,
>>
>> I also get the error and I noticed that the reference guide does not know
>> about compatibilityMode.
>>
>> Where is the migration chapter?
>>
>> I think I use Zend_Locale implicitly, because the problems appear in the
>> translator, but I still get about sixty warnings scattered around my forms.
>>
>> Not happy about it, as you can imagine.
>>
>> On which component should we *simply *set compatibilityMode to false, and
>> is this a static call, or should we be looking for a translator object or
>> the like to set it on?
>>
>> Regards,
>>
>> Bart McLeod
>>
>> Thomas Weidner schreef:
>>
>> With r12003 there was also a new migration chapter added which would have
>> answered your questions.
>>
>> According to the manual you can simply set compatibilityMode to false
>> which supresses the warning but will activate the new API behaviour.
>>
>> When you use Zend_Locale only implicit there will be no problems.
>> Otherwise you will have to migrate your scripts according to the migration
>> chapter in the manual.
>>
>> Greetings
>> Thomas Weidner, I18N Team Leader, Zend Framework
>> http://www.thomasweidner.com
>>
>> - Original Message - From: "Pieter Kokx" <[EMAIL PROTECTED]><[EMAIL 
>> PROTECTED]>
>> To: "'Zend Framework General'" 
>> 
>> Sent: Saturday, October 18, 2008 12:21 PM
>> Subject: [fw-general] Zend_Locale compatibility mode
>>
>>
>> Hi,
>>
>> Since r12003 there is an compatibility mode added to Zend_Locale, which
>> gives a warning. But I am not using Zend_Locale directly, only by
>> Zend_Date and Zend_Translate. So, I don't know how to fix this problems
>> with Zend_Date and Zend_Translate. Should these classes be updated so
>> Zend_Locale will work again without the warning? Or is it something that
>> I should fix myself?
>>
>> --
>> Regards,
>>
>> Pieter Kokx
>> MaakSite.net
>> PHP Developer
>>
>>
>>
>>
>


Re: [fw-general] Zend_Locale compatibility mode

2008-10-21 Thread Bart McLeod

The result is:
*Fatal error*: Access to undeclared static property: 
Zend_Locale::$compatibilityMode 
in *D:\ZendFramework\library\SpaceCMS\Cms_Plugin_Init.php* on line *8

*
Not that I thought putting *
*"Zend_Locale::$compatibilityMode = false;"
in would help, but then again, if you don't try...

What I would like to know is:
-url of the chapter that describes compatibilitymode
-a way to set it to false that works. :-)

Regards,

Bart McLeod

Christopher Östlund schreef:

It's in the trunk docs. It used to contain an error, but is corrected now.

Zend_Locale::$compatibilityMode = false;

/C


On Tue, Oct 21, 2008 at 1:12 PM, Bart McLeod <[EMAIL PROTECTED] 
<mailto:[EMAIL PROTECTED]>> wrote:


Hi Thomas,

I also get the error and I noticed that the reference guide does
not know about compatibilityMode.

Where is the migration chapter?

I think I use Zend_Locale implicitly, because the problems appear
in the translator, but I still get about sixty warnings scattered
around my forms.

Not happy about it, as you can imagine.

On which component should we /simply /set compatibilityMode to
false, and is this a static call, or should we be looking for a
translator object or the like to set it on?

Regards,

Bart McLeod

Thomas Weidner schreef:

With r12003 there was also a new migration chapter added which
would have answered your questions.

According to the manual you can simply set compatibilityMode to
false which supresses the warning but will activate the new API
behaviour.

When you use Zend_Locale only implicit there will be no problems.
Otherwise you will have to migrate your scripts according to the
migration chapter in the manual.

Greetings
Thomas Weidner, I18N Team Leader, Zend Framework
http://www.thomasweidner.com

- Original Message - From: "Pieter Kokx" <[EMAIL PROTECTED]>
<mailto:[EMAIL PROTECTED]>
To: "'Zend Framework General'" 
<mailto:fw-general@lists.zend.com>
    Sent: Saturday, October 18, 2008 12:21 PM
Subject: [fw-general] Zend_Locale compatibility mode



Hi,

Since r12003 there is an compatibility mode added to
Zend_Locale, which
gives a warning. But I am not using Zend_Locale directly, only by
Zend_Date and Zend_Translate. So, I don't know how to fix this
problems
with Zend_Date and Zend_Translate. Should these classes be
updated so
Zend_Locale will work again without the warning? Or is it
something that
I should fix myself?

-- 
Regards,


Pieter Kokx
MaakSite.net
PHP Developer








Re: [fw-general] Zend_Locale compatibility mode

2008-10-21 Thread Christopher Östlund
It's in the trunk docs. It used to contain an error, but is corrected now.

Zend_Locale::$compatibilityMode = false;

/C


On Tue, Oct 21, 2008 at 1:12 PM, Bart McLeod <[EMAIL PROTECTED]> wrote:

>  Hi Thomas,
>
> I also get the error and I noticed that the reference guide does not know
> about compatibilityMode.
>
> Where is the migration chapter?
>
> I think I use Zend_Locale implicitly, because the problems appear in the
> translator, but I still get about sixty warnings scattered around my forms.
>
> Not happy about it, as you can imagine.
>
> On which component should we *simply *set compatibilityMode to false, and
> is this a static call, or should we be looking for a translator object or
> the like to set it on?
>
> Regards,
>
> Bart McLeod
>
> Thomas Weidner schreef:
>
> With r12003 there was also a new migration chapter added which would have
> answered your questions.
>
> According to the manual you can simply set compatibilityMode to false which
> supresses the warning but will activate the new API behaviour.
>
> When you use Zend_Locale only implicit there will be no problems.
> Otherwise you will have to migrate your scripts according to the migration
> chapter in the manual.
>
> Greetings
> Thomas Weidner, I18N Team Leader, Zend Framework
> http://www.thomasweidner.com
>
> - Original Message - From: "Pieter Kokx" <[EMAIL PROTECTED]><[EMAIL 
> PROTECTED]>
> To: "'Zend Framework General'" 
> 
> Sent: Saturday, October 18, 2008 12:21 PM
> Subject: [fw-general] Zend_Locale compatibility mode
>
>
> Hi,
>
> Since r12003 there is an compatibility mode added to Zend_Locale, which
> gives a warning. But I am not using Zend_Locale directly, only by
> Zend_Date and Zend_Translate. So, I don't know how to fix this problems
> with Zend_Date and Zend_Translate. Should these classes be updated so
> Zend_Locale will work again without the warning? Or is it something that
> I should fix myself?
>
> --
> Regards,
>
> Pieter Kokx
> MaakSite.net
> PHP Developer
>
>
>
>


Re: [fw-general] Zend_Locale compatibility mode

2008-10-21 Thread Bart McLeod

Hi Thomas,

I also get the error and I noticed that the reference guide does not 
know about compatibilityMode.


Where is the migration chapter?

I think I use Zend_Locale implicitly, because the problems appear in the 
translator, but I still get about sixty warnings scattered around my forms.


Not happy about it, as you can imagine.

On which component should we /simply /set compatibilityMode to false, 
and is this a static call, or should we be looking for a translator 
object or the like to set it on?


Regards,

Bart McLeod

Thomas Weidner schreef:
With r12003 there was also a new migration chapter added which would 
have answered your questions.


According to the manual you can simply set compatibilityMode to false 
which supresses the warning but will activate the new API behaviour.


When you use Zend_Locale only implicit there will be no problems.
Otherwise you will have to migrate your scripts according to the 
migration chapter in the manual.


Greetings
Thomas Weidner, I18N Team Leader, Zend Framework
http://www.thomasweidner.com

- Original Message - From: "Pieter Kokx" <[EMAIL PROTECTED]>
To: "'Zend Framework General'" 
Sent: Saturday, October 18, 2008 12:21 PM
Subject: [fw-general] Zend_Locale compatibility mode



Hi,

Since r12003 there is an compatibility mode added to Zend_Locale, which
gives a warning. But I am not using Zend_Locale directly, only by
Zend_Date and Zend_Translate. So, I don't know how to fix this problems
with Zend_Date and Zend_Translate. Should these classes be updated so
Zend_Locale will work again without the warning? Or is it something that
I should fix myself?

--
Regards,

Pieter Kokx
MaakSite.net
PHP Developer






Re: [fw-general] Zend_Locale compatibility mode

2008-10-18 Thread Thomas Weidner
With r12003 there was also a new migration chapter added which would have 
answered your questions.


According to the manual you can simply set compatibilityMode to false which 
supresses the warning but will activate the new API behaviour.


When you use Zend_Locale only implicit there will be no problems.
Otherwise you will have to migrate your scripts according to the migration 
chapter in the manual.


Greetings
Thomas Weidner, I18N Team Leader, Zend Framework
http://www.thomasweidner.com

- Original Message - 
From: "Pieter Kokx" <[EMAIL PROTECTED]>

To: "'Zend Framework General'" 
Sent: Saturday, October 18, 2008 12:21 PM
Subject: [fw-general] Zend_Locale compatibility mode



Hi,

Since r12003 there is an compatibility mode added to Zend_Locale, which
gives a warning. But I am not using Zend_Locale directly, only by
Zend_Date and Zend_Translate. So, I don't know how to fix this problems
with Zend_Date and Zend_Translate. Should these classes be updated so
Zend_Locale will work again without the warning? Or is it something that
I should fix myself?

--
Regards,

Pieter Kokx
MaakSite.net
PHP Developer





[fw-general] Zend_Locale compatibility mode

2008-10-18 Thread Pieter Kokx
Hi,

Since r12003 there is an compatibility mode added to Zend_Locale, which
gives a warning. But I am not using Zend_Locale directly, only by
Zend_Date and Zend_Translate. So, I don't know how to fix this problems
with Zend_Date and Zend_Translate. Should these classes be updated so
Zend_Locale will work again without the warning? Or is it something that
I should fix myself?

-- 
Regards,

Pieter Kokx
MaakSite.net
PHP Developer