[symfony-users] Re: Re : [symfony-users] Re: I18N and sfI18nExtractPlugin

2007-07-06 Thread Lukas Kahwe Smith
Loïc Vernet wrote: > Humm, i was wondering too if my shortcuts functions would be detected, > like : > > myI18n::translate('Message dfdfds'); > myAction->setNotice('') > myAction->setWarning('') > and so on... seems like at least in may they were not: http://symfony.sopca.com/2007/05/11/easier-

[symfony-users] Re: Math statistics library

2007-07-06 Thread Kiril Angov
You should be able to achieve what you want with BCMath for PHP. Take a look at this: http://www.numbertheory.org/php/php.html http://www.php.net/manual/en/ref.bc.php regards, Kupo senechaux wrote: > Hi, i'm looking for a library of PHP to calculate mathematical > statistics like covariance, c

[symfony-users] Re: Re : [symfony-users] Re: I18N and sfI18nExtractPlugin

2007-07-06 Thread Lukas Kahwe Smith
Lukas Kahwe Smith wrote: > Loïc Vernet wrote: >> Humm, i was wondering too if my shortcuts functions would be detected, >> like : >> >> myI18n::translate('Message dfdfds'); >> myAction->setNotice('') >> myAction->setWarning('') >> and so on... > > seems like at least in may they were not: > http

[symfony-users] using components from a batch script

2007-07-06 Thread Ian P. Christian
I want to have a queue runner in my application, that goes though users one by one, and does something on their behalf, this task involves rendering some content, and posting it off somewhere. At first I thought I could render a different action for each user, but the only way to pass vars into an

[symfony-users] Re: Math statistics library

2007-07-06 Thread senechaux
Thanks, but i can't find the variance or correlation function... regards! On 6 jul, 12:00, Kiril Angov <[EMAIL PROTECTED]> wrote: > You should be able to achieve what you want with BCMath for PHP. Take a > look at this: > > http://www.numbertheory.org/php/php.htmlhttp://www.php.net/manual/en/ref

[symfony-users] Re: cursing exception abuse

2007-07-06 Thread Lukas Kahwe Smith
Lukas Kahwe Smith wrote: > Hi, > > I always felt it was a nasty hack to use exceptions in order to > implement forward(). Exceptions are not control flow! > > Well today I learned again why its bad to do this. If you want to > redirect/forward inside a try/catch block you are in for some surpr

[symfony-users] Re: sfZendPlugin for 1.0?

2007-07-06 Thread [EMAIL PROTECTED]
Hi Dustin, Thanks for updating this. It also appears that there's an update needed to the symfony addon file http://trac.symfony-project.com/trac/browser/trunk/lib/addon/bridge/sfZendFrameworkBridge.class.php In ZF 1.0 there is no longer a Zend.php in the lib directory, so lines 14 and 18 are n

[symfony-users] cursing exception abuse

2007-07-06 Thread Lukas Kahwe Smith
Hi, I always felt it was a nasty hack to use exceptions in order to implement forward(). Exceptions are not control flow! Well today I learned again why its bad to do this. If you want to redirect/forward inside a try/catch block you are in for some surprises. Not sure if I just overlooked th

[symfony-users] Re: Math statistics library

2007-07-06 Thread Kiril Angov
http://php.mirror.camelnetwork.com/manual/en/ref.stats.php How's that? senechaux wrote: > Thanks, but i can't find the variance or correlation function... > > regards! > > On 6 jul, 12:00, Kiril Angov <[EMAIL PROTECTED]> wrote: > >> You should be able to achieve what you want with BCMath for

[symfony-users] Re: using components from a batch script

2007-07-06 Thread Kiril Angov
Ian, i know we talked on the IRC channel and kind of did not like that you did not want to explain what exactly you need there, but here what I tried and seems to achieve what you are looking for. I think symfony need some improvement on the batch scripts because if I set the SF_ENVIRONMENT t

[symfony-users] Re: Math statistics library

2007-07-06 Thread Dustin Whittle
Stats PHP Module: http://pecl.php.net/package/stats On 7/6/07 4:36 AM, "senechaux" <[EMAIL PROTECTED]> wrote: > > Thanks, but i can't find the variance or correlation function... > > regards! > > On 6 jul, 12:00, Kiril Angov <[EMAIL PROTECTED]> wrote: >> You should be able to achieve what y

[symfony-users] Sf and NewsML format

2007-07-06 Thread Nicolas CHARLOT
Hi, Does someone worked with NewsML format and Symfony ? Thanks -- Nicolas --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to symfony-users@googlegroup

[symfony-users] Re: sfZendPlugin for 1.0?

2007-07-06 Thread Dustin Whittle
I will update, can you file a bug? - Dustin On 7/6/07 4:40 AM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi Dustin, > > Thanks for updating this. It also appears that there's an update > needed to the symfony addon file > http://trac.symfony-project.com/trac/browser/trunk/lib/addon/br

[symfony-users] Re: cursing exception abuse

2007-07-06 Thread Pierre Minnieur
Hi Lukas, same here, I've encountered problems while trying to save data into the database and catch Propel/Doctrine exceptions, but with forwarding on success (in the try-block). As I can remember Zend Framework managed forwarding with a flag "isDispatched" which will be set to false so that the

[symfony-users] Re: cursing exception abuse

2007-07-06 Thread Steve Lianoglou
> same here, I've encountered problems while trying to save data into > the database and catch Propel/Doctrine exceptions, but with forwarding > on success (in the try-block). Shouldn't this not really be an issue as long as you don't catch "generic" exceptions (ie, steer clear from "catch (Excep

[symfony-users] Re: I18N and sfI18nExtractPlugin

2007-07-06 Thread Fabien POTENCIER
Lukas Kahwe Smith wrote: > Hi, > > I think it would be a good idea to store a bit of information when > automatically adding (and deleting) translations. It would be great to > add the location(s) of where the translation key was found (inside the > comments, but maybe in a dedicated column)

[symfony-users] [Out Of Office] Re: [symfony-users] Re: I18N and sfI18nExtractPlugin

2007-07-06 Thread gert . vrebos
Beste, Ik ben met vakantie t/m 17 juli. Voor dringende vragen neemt u best rechtstreeks contact op met de firma op [EMAIL PROTECTED] Met vriendelijke groeten, Gert Vrebos I'm out of the office

[symfony-users] Re: I18N and sfI18nExtractPlugin

2007-07-06 Thread Fabien POTENCIER
The extraction process is done by extractors. We have 2 extractors right now: a PHP one and a YAML one. The plugin extracts strings from an application (with extract classes) and looks for string in: - global - templates (/apps/app/templates) - librairies (/apps/app/lib) - modules: -