[symfony-users] Math statistics library

2007-07-05 Thread senechaux
Hi, i'm looking for a library of PHP to calculate mathematical statistics like covariance, correlation, ... anybodoy can help me?? Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To po

[symfony-users] image gallery assignment

2007-07-05 Thread Ant Cunningham
im dealing with a many to many relationship like so: gallery: id: name: media: id: file_path: gallery_media: id: gallery_id: media_id: so I need to implement something like admin_double_list on my gallery admin to let people ad media to a given gallery. thing is I want the image

[symfony-users] Re: init-plugin

2007-07-05 Thread Ant Cunningham
it should also be compatible with the package plugin plugin. maybe even roll the two together honestly. On 7/5/07 8:50 PM, "Jonathan H. Wage" <[EMAIL PROTECTED]> wrote: > > I think that is a great idea for a plugin that would add a new pake > task "symfony plugin-init sfPluginNamePlugin" > > I

[symfony-users] Re: init-plugin

2007-07-05 Thread Jonathan H. Wage
I think that is a great idea for a plugin that would add a new pake task "symfony plugin-init sfPluginNamePlugin" It should force the plugin name to be prefixed with "sf" and suffixed with "Plugin". Maybe this can be a part of the symfony core in a future release. - Jon On Jul 5, 2007, at

[symfony-users] Re: init-plugin

2007-07-05 Thread Ant Cunningham
On 7/5/07 8:41 PM, "Marco Catunda" <[EMAIL PROTECTED]> wrote: > > Why symfony doesn't have init-plugin or plugin-init option to make skeleton > file > structure, like sfSamplePlugin in symfonys book? I intend to build one, what > do > you think? Any other ideas? Is it make sense to you? > > T

[symfony-users] init-plugin

2007-07-05 Thread Marco Catunda
Why symfony doesn't have init-plugin or plugin-init option to make skeleton file structure, like sfSamplePlugin in symfonys book? I intend to build one, what do you think? Any other ideas? Is it make sense to you? Thanks -- Marco Catunda --~--~-~--~~~---~--~~ You

[symfony-users] Re: Path problems running symfony as CGI

2007-07-05 Thread Marco Catunda
I'd had the same problem. At my case, the symfony project haven't run in php5 fastcgi correctly. The SCRIPT_NAME index in php $_SERVER variable was malformed so the symfony gets crazy to for all links pages. I think this problem isn't a symfony responsability, it is a fastcgi problem. I made a w

[symfony-users] Re: Facebook Validation issues

2007-07-05 Thread Ian P. Christian
Mat wrote: > So do you not find that FB cause the validators to fire and display the > error messages? > > I'm doing a very similar setup, (almost identical!!) and have numerous > issues Notice the form is shown via a non-validated action, which posts to a different action, which then forwards in

[symfony-users] Re: Facebook Validation issues

2007-07-05 Thread Mat
So do you not find that FB cause the validators to fire and display the error messages? I'm doing a very similar setup, (almost identical!!) and have numerous issues Thanks, Mat -Original Message- From: Ian P. Christian [mailto:[EMAIL PROTECTED] Sent: 05 July 2007 23:29 To: symfony-use

[symfony-users] Re: Facebook Validation issues

2007-07-05 Thread Ian P. Christian
Example of one of my forms. class settingsActions extends sfActions { public function executeSave() { $profile = $this->getUser()->getProfile(); $profile->username = $this->getRequestParameter('username'); $profile->configured = true; $this->setFlash('settings_saved', 'Your s

[symfony-users] Re: .php5 extension

2007-07-05 Thread Mat
:$ thankyou so much, its late and i'm having one of those days, btw hows the facebook app going? Mat -Original Message- From: Ian P. Christian [mailto:[EMAIL PROTECTED] Sent: 05 July 2007 23:10 To: symfony-users@googlegroups.com Subject: [symfony-users] Re: .php5 extension Mat wrote: >

[symfony-users] Re: .php5 extension

2007-07-05 Thread Ian P. Christian
Mat wrote: > Not yet, i'm not too hot on htaccess stuff, any suggestions? > > Thanks, > Mat open the file, look at it, and change the obvious line ;) there's a rewrite rule in there for index.php, change it to index.php5 -- Ian P. Christian ~ http://pookey.co.uk signature.asc Description:

[symfony-users] Re: .php5 extension

2007-07-05 Thread Mat
Not yet, i'm not too hot on htaccess stuff, any suggestions? Thanks, Mat -Original Message- From: Ian P. Christian [mailto:[EMAIL PROTECTED] Sent: 05 July 2007 23:05 To: symfony-users@googlegroups.com Subject: [symfony-users] Re: .php5 extension Mat wrote: > Hi is there any easy way of

[symfony-users] Re: .php5 extension

2007-07-05 Thread Ian P. Christian
Mat wrote: > Hi is there any easy way of running symfony under .php5 extension? As I have > php4 installed on .php? > > I sure I must be missing the obvious here, > tried modifying your .htaccess file? -- Ian P. Christian ~ http://pookey.co.uk signature.asc Description: OpenPGP digital sign

[symfony-users] [Out Of Office] Re: [symfony-users] .php5 extension

2007-07-05 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] .php5 extension

2007-07-05 Thread Mat
Hi is there any easy way of running symfony under .php5 extension? As I have php4 installed on .php? I sure I must be missing the obvious here, Thanks, Mat --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony

[symfony-users] Re: bug? symfony propel-build-sql won't work WAS Admin generator foriegn keys stopped working for one table

2007-07-05 Thread Nathanael D. Noblet
Bealers wrote: > Attempting to solve my issue I've been trying to change my model, so > have dumped out all data and then edited my schema so the FK's are > named correctrly (like the 'not broken' ones in my previous post) > > I kept running into problems doing build-sql but assuming the problem

[symfony-users] Path problems running symfony as CGI

2007-07-05 Thread TecLliure - Marc Montañés
I'm trying to run a symfony project in a shared host that has php4 and php5 support (php5 as cgi). It runs perfectly in my house using apache php5-module. The symfony aplication is this local directory: /users/pangea/marc/alt-ong and the web /users/pangea/marc/alt-ong/web And URL's are like

[symfony-users] Re: mod_rewrite, routing, and matching every file extension...

2007-07-05 Thread Ian P. Christian
Dustin Whittle wrote: > Ian, > > Does this work? > > news_asset: > url: /news/asset/:news_id/:filename > param: { module: news, action: viewasset } > requirements: { news_id: \d, filename: .* } > > > What version of symfony? This is possible with the routing system in the > routing branch

[symfony-users] bug? symfony propel-build-sql won't work WAS Admin generator foriegn keys stopped working for one table

2007-07-05 Thread Bealers
Attempting to solve my issue I've been trying to change my model, so have dumped out all data and then edited my schema so the FK's are named correctrly (like the 'not broken' ones in my previous post) I kept running into problems doing build-sql but assuming the problem was still with me I figur

[symfony-users] Re: mod_rewrite, routing, and matching every file extension...

2007-07-05 Thread Dustin Whittle
Ian, Does this work? news_asset: url: /news/asset/:news_id/:filename param: { module: news, action: viewasset } requirements: { news_id: \d, filename: .* } What version of symfony? This is possible with the routing system in the routing branch. As long as apache is sending the request, i

[symfony-users] Re: I18N and sfI18nExtractPlugin

2007-07-05 Thread Dustin Whittle
Lukas, I have found it is hard to provide context to translators using just the xliff files as they are now... The i18n stings are based on exact string of the source. It is much better to use and identifier, even better an identifier tied to context. I would like to extend the current implement

[symfony-users] Re: sfZendPlugin for 1.0?

2007-07-05 Thread Dustin Whittle
All, I have updated sfZendPlugin for 1.0. svn export http://svn.symfony-project.com/plugins/sfZendPlugin - Dustin On 7/5/07 7:05 AM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > > Hi everyone, > > I read the post (http://www.symfony-project.com/weblog/post/135.html) > acknowledging Zen

[symfony-users] sfZendPlugin for 1.0?

2007-07-05 Thread [EMAIL PROTECTED]
Hi everyone, I read the post (http://www.symfony-project.com/weblog/post/135.html) acknowledging Zend Framework 1.0 and tried to use the sfZendPlugin from svn (only way to install it) but it hasn't been updated for months. It's currently on the 0.9.2 release of ZF. Just wondering if anyone know

[symfony-users] mod_rewrite, routing, and matching every file extension...

2007-07-05 Thread Ian P. Christian
I'm trying to allow files of any extention to be re-written though symfony, for example: /news/asset/3122/filename.gif and /news/asset/3122/filename.png should match this route: news_asset: url: /news/asset/:news_id/:filename param: { module: news, action: viewasset } However, I use .html a

[symfony-users] [Out Of Office] Re: [symfony-users] Re: Admin generator foriegn keys stopped working for one table

2007-07-05 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: Admin generator foriegn keys stopped working for one table

2007-07-05 Thread Bealers
On Jul 5, 1:45 pm, Bealers <[EMAIL PROTECTED]> wrote: > In the admin screen for University where I list in my display town_id, > I get a text field and the ID, no drop-down like I get on other > screens. Replying to myself now... It seems that on the screens where the FK relationship is not bei

[symfony-users] Admin generator foriegn keys stopped working for one table

2007-07-05 Thread Bealers
Hi I'm trying to figure out what I've broken to make one admin generator generated screens stop picking up foreign keys properly. By this I mean I am utilising the __toString(); method in the model for the foreign table so that a list of all the possible foreign keys is displayed in a drop-down

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

2007-07-05 Thread Loïc Vernet
Humm, i was wondering too if my shortcuts functions would be detected, like : myI18n::translate('Message dfdfds'); myAction->setNotice('') myAction->setWarning('') and so on... or if the plugin could be hacked to take in account several others functions ? May we could have plugin parameters for

[symfony-users] Ajax drag&drop conflict link_to_remote ajax call

2007-07-05 Thread Péter Veres
Hi all, I have an ajaxian website (shop.szexkazan.hu) i maked for the items pictures the drag&drop effect. It's works. When i put an item with the form_remote_tag It's works. But before that when i want to put an item again to the cart with drag&drop the cart doesn't refresh, but the item in itt i

[symfony-users] Re: I18N and sfI18nExtractPlugin

2007-07-05 Thread Lukas Kahwe Smith
Hey, I have another question regarding this plugin. From what files does it extract translation keys? Only templates, or also validation.yml files and action code? Generally I presume its important to make sure that translation keys are directly embedded inside all calls to __() to make sure

[symfony-users] I18N and sfI18nExtractPlugin

2007-07-05 Thread Lukas Kahwe Smith
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). Now for deletes, it might be a good