[symfony-users] Google Summer of Code

2008-03-06 Thread Dustin Whittle
All, Once again the Google Summer of Code is upon us. The symfony team has submitted an application (yet to be accepted). Now we are looking for some ideas for projects and searching for students who might be interested in participating in Google Summer of Code this year. Find out more at http:/

[symfony-users] Re: Maintaining DB scripts using Propel

2008-03-06 Thread cokker
There exists a plugin for diffs. http://trac.symfony-project.com/wiki/sfPropelSqlDiffPlugin I haven't tested it yet, but I will give it a try. greets Sven > Great...Thanks All for all the useful pointers... :) > > I thought if they could add a simple command line to propel...just > propel-bui

[symfony-users] Re: Automated testing in symfony

2008-03-06 Thread Sumedh
Anyone pleeease? :D On Mar 6, 1:26 pm, Sumedh <[EMAIL PROTECTED]> wrote: > Hi friends, > > What do you guys generally use to do automated regression/integration > testing? > > Is sfTestBrowser powerful enough? > > I found a tool called MaxQ (http://maxq.tigris.org/), and the > introduction page

[symfony-users] Re: Maintaining DB scripts using Propel

2008-03-06 Thread Sumedh
Great...Thanks All for all the useful pointers... :) I thought if they could add a simple command line to propel...just propel-build-model...to give me all the alter table commands as well...that could be pretty useful...what say? Migrations seems to be a very clean way...but might be an overkil

[symfony-users] doctrine-generate-crud output: object_input_tag and "ObjectDoctrineAdmin" helper

2008-03-06 Thread dibson hoffweiler
Helloz- I ran the pake task "doctrine-generate-crud". I've got two questions about the output: 1 - In my edit template, the parameters for function object_input_tag() were not what I expected. 'get', 1 => array ( 0 => 'display_name', ), ), array ( 'size' => 8

[symfony-users] sfDoctrinePlugin Install Shell Script

2008-03-06 Thread dibson hoffweiler
Hi everyone- I'm a new sfDoctrinePlugin user. I've written a little bash script to help out with installing/setting up sfDoctrinePlugin with a symfony project. I wrote it for a new project using symfony 1.0.9. Since this is my first project with Doctrine, I'm not sure if I hit all the right

[symfony-users] Re: plugins for Mozilla / IE : search engines for symfony

2008-03-06 Thread Adam Frame
Very, very useful. Thankyou. Adam Olivier LOYNET wrote: Hi,   I've made some plugins for Firefox / IE to integrate a search engine on symfony in your favorite browser.   - symfony website - symfony API 1.0 - symfony API 1.1 - symfony Askeet tutorial 1.0 - symf

[symfony-users] Re: Askeet Day3 : php load_data.php

2008-03-06 Thread Olivier LOYNET
Hi, You can also use the command : symfony propel-load-data frontend Olivier > -Original Message- > From: symfony-users@googlegroups.com [mailto:symfony- > [EMAIL PROTECTED] On Behalf Of David BOUCHÉ > Sent: Thursday, March 06, 2008 10:52 PM > To: symfony users > Subject: [symfony-u

[symfony-users] plugins for Mozilla / IE : search engines for symfony

2008-03-06 Thread Olivier LOYNET
Hi, I've made some plugins for Firefox / IE to integrate a search engine on symfony in your favorite browser. - symfony website - symfony API 1.0 - symfony API 1.1 - symfony Askeet tutorial 1.0 - symfony Book 1.0 - symfony Forum - symfony Wiki - symfony Snippets http://mycroft.m

[symfony-users] Re: Askeet Day3 : php load_data.php

2008-03-06 Thread David BOUCHÉ
Special thanks to Frank that help me since yesterday. My code succefully import data on his computer. So i've return at the begining and it works. thanks for all. Tommorow : Askeet day 4 !! See you all, David BOUCHÉ. On 6 mar, 11:49, David BOUCHÉ <[EMAIL PROTECTED]> wrote: > Hi Frank, > > I

[symfony-users] Date fields in sf1.1 forms

2008-03-06 Thread Michael Smith
Is it possible to use a js date picker like input_date_tag() with the sfWidgetFormDate class in the form framework? Thanks, Michael --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to th

[symfony-users] Re: sfSimpleCMS installation problem

2008-03-06 Thread Patrick
Hey, it was a problem with the auto installer. But I discovered another problem: in plugins/sfSimpleCMSPlugin/lib/helper/sfSimpleCMSHelper.php you include the helper I18n. When running linux this helper cannot be loaded because the helper is called I18N. I think this should be fixed for the next

[symfony-users] Re: sfSimpleCMS installation problem

2008-03-06 Thread Patrick
Hi Mark, thats it. Thanks for the help. Patrick On Mar 6, 6:58 pm, Mark D <[EMAIL PROTECTED]> wrote: > Hi Patrick > > I had this same problem when I installed sfSimpleCMS following the > instructions. It's not a problem with sfSimpleCMS, but it's a problem > with sfPropelActAsNestedSetBehaviour

[symfony-users] Re: sfSimpleCMS installation problem

2008-03-06 Thread Mark D
Hi Patrick I had this same problem when I installed sfSimpleCMS following the instructions. It's not a problem with sfSimpleCMS, but it's a problem with sfPropelActAsNestedSetBehaviour. When I followed the instructions and ran the following line to install the plugin: symfony plugin-install ht

[symfony-users] Re: Item-level security

2008-03-06 Thread Lee Bolding
Hmm... yeah - I'd like an answer to this too... At the moment, I extend my model, adding a hasPermission($user) method, like this... public function hasPermission($user) { if ($user->hasPermission(Permissions::EDITOR)) return TRUE; return FALSE; } Permission/Credential could be interch

[symfony-users] Re: MVC separation in Symfony

2008-03-06 Thread Lee Bolding
Fabian, Nice reply - as was your previous one on the same subject :) Have you (or anybody else) considered inverting the View/API paradigm? By that I mean you DON'T create a view - other than REST (or SOAP). You then implement your view as a REST or SOAP client - effectively making your view l

[symfony-users] Re: Maintaining DB scripts using Propel

2008-03-06 Thread Georg Sorst
For a quicker and of course dirtier way I've been using mysqldiff ( http://www.mysqldiff.org/ ), a little PHP app that is able to generate diffs between two SQL schemas or DBs. You can for example create a diff between your development and your production database and then apply this diff to your

[symfony-users] Re: sfSimpleCMS installation problem

2008-03-06 Thread Patrick
As described in the wiki. I need this plugin only for the CMS, so I didn't create follow the steps for creating schema entries and so on. But the Behaviors are enabled as described. Does sfSimpleCMS need a special version of sfPropelActAsNestedSetBehavior? Patrick On Mar 6, 4:15 pm, "Francois Z

[symfony-users] Re: Maintaining DB scripts using Propel

2008-03-06 Thread Piers Warmers
Yep, migrations is the way to go. There is a propel plugin for this also: http://trac.symfony-project.com/wiki/sfPropelMigrationsLightPlugin - Piers On 06/03/2008, at 4:43 PM, Jonathan Wage wrote: > > This is a common problem with databases, unfortunately symfony + > Propel does not offer an

[symfony-users] Re: Maintaining DB scripts using Propel

2008-03-06 Thread Jonathan Wage
This is a common problem with databases, unfortunately symfony + Propel does not offer anything in this regard. This is solved with something called "database migrations." With any database abstraction layer, it provides an API for communicating with a database, regardless of the type. Doctrine ha

[symfony-users] Item-level security

2008-03-06 Thread gurdiga
Hello, If there is a module: article, to which have access sfGuardGroup "Editors", is there a "reccomended" way to secure items of the article module in such a way that each member of the "Editors" group can edit/ delete only articles created by him/her? --~--~-~--~~~-

[symfony-users] Re: sfSimpleCMS installation problem

2008-03-06 Thread Francois Zaninotto
Can you check that you properly installed the sfPropelActAsNestedSetBehaviorPlugin ? François 2008/3/5, Patrick Seeger <[EMAIL PROTECTED]>: > > Hello, > > I am trying to install sfSimpleCMS on a Symfony 1.0 installation. > I followed exactly the installation instructions as written in the wiki. >

[symfony-users] Re: MVC separation in Symfony

2008-03-06 Thread Fabian Lange
Hi Peter, - please turn your buzzword-detector off - thats indeed an interesting topic. I have to admit that I am a Java Guy not a PHP one, but technology is not the problem here. I hope am right were you are heading at, and I guess you do not want to expose API via what transport ever, but you w

[symfony-users] propel + numerical fields + empty string

2008-03-06 Thread pihentagy
Hi all! I have found a strange behaviour in propel. If you set the value of a numerical field to an empty string, you will get 0. I do not know what to do with it (I think nothing), I just think it is inconsistent. Setting it to null will make more sense... Just a note... Gergo --~--~-

[symfony-users] Re: Routing parameter problem

2008-03-06 Thread Marek
On 5. Mar., 16:52 h., Marek <[EMAIL PROTECTED]> wrote: > given this routing rule: > > sf_cms_show: > url: /:sf_culture/:slug > param: { module: sfSimpleCMS, action: show } > requirements: { slug: '.*', sf_culture: "(en)" } > > and this URL: /fe_dev.php/en/test > > I get this in the log: > >

[symfony-users] Re: Askeet Day3 : php load_data.php

2008-03-06 Thread David BOUCHÉ
Hi Frank, I follow your advice, I've cleared the cache and I've lauch this import again : [EMAIL PROTECTED] askeet]$ symfony cc >> file+ /home/david/public_html/askeet/frontend_dev.lck >> chmod 777 /home/david/public_html/askeet/frontend_dev.lck >> file- /home/david/public_html/askeet/..

[symfony-users] Maintaining DB scripts using Propel

2008-03-06 Thread Sumedh
Hi friends, I saw that whenever I want to change my DB, say add a column, and I fire propel-build-model command, Propel changes the create table commands in the script to add or remove those columns. This makes it hard to version the changes and replicate them in different environments. When I

[symfony-users] Automated testing in symfony

2008-03-06 Thread Sumedh
Hi friends, What do you guys generally use to do automated regression/integration testing? Is sfTestBrowser powerful enough? I found a tool called MaxQ (http://maxq.tigris.org/), and the introduction page looked impressive... Main points that I liked - 1. It can check whether HTML is valid us