Re: [symfony-users] [Symfony2 - SonataUserBundle] Why did you remove the getParent method from SonataUserBundle?

2011-06-21 Thread Thomas Rabaix
Best of both world : https://github.com/sonata-project/UserBundle/commit/374b9397f28ab52de15208486a497e98b855e9c5 On Tue, Jun 21, 2011 at 6:48 PM, Thomas Rabaix tho...@rabaix.net wrote: You can still create your own bundle which extends FOSUserBundle. But yes this duplicate the EasyExtends

Re: [symfony-users] Re: Symfony and Facebook Hip Hop

2011-06-16 Thread Thomas Rabaix
to symfony-users@googlegroups.com To unsubscribe from this group, send email to symfony-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Thomas Rabaix http://rabaix.net -- If you want to report a vulnerability

[symfony-users] Re: AdminBundle

2011-06-15 Thread Thomas Rabaix
... any idea ? thanks Benoît -- Thomas Rabaix http://rabaix.net -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups symfony users group. To post to this group

[symfony-users] [symfony2] Any advice/bundle to build a REST API

2011-06-15 Thread Thomas Parisot
Hello everybody, I'm planning to use Symfony2 to create a REST API, dealing with data in MongoDB and MySQL, with user quota (depending on the URL and its method). I have several questions: - what is the best strategy - simple routing/controllers - EverzetRestfulControllersBundle

Re : Re: [symfony-users] [sf2] Html Escaping

2011-06-14 Thread Thomas
I've fixed my problem, In the Twig documentation (http://www.twig-project.org/doc/templates.html) i've found this : {% autoescape false %} Everything will be outputed as is in this block{% endautoescape %} So like Chirstophe said, the output escaping is enabled by default. Adding {%

[symfony-users] [sf2] Html Escaping

2011-06-13 Thread Thomas
I all, i've a problem when rendering a news in a twing template. My html isn't escaped : public function showAction($permalink){ $news = $this-get('doctrine') -getEntityManager() -getRepository('CompanySiteBundle:News') -findOneByPermalink($permalink); if (!$news) { throw

Re : Re: [symfony-users] [sf2] Html Escaping

2011-06-13 Thread Thomas
Hello Christophe, In my showNews.html.twig i have : {% block content %} h2{{ news.titre }}/h2 div id=date_news iPublished on {{ news.dateCreation.format('d F Y') }}./i /div {{ news.contenu }} {% endblock %} and in my head i've the meta : meta http-equiv=Content-Type content=text/html;

Re : Re: [symfony-users] Limit results with Doctrine

2011-06-09 Thread Thomas
Hi all and thanks for your answers ! I've used Repositories to create my SQL queries, and it's work fine :) I've done this : public function findLimitedOrderedByDateDebut($limit = 5, $offset = 0){ return $this-getEntityManager() -createQuery('SELECT e FROM MyCompanySiteBundle:Thing

[symfony-users] Limit results with Doctrine

2011-06-08 Thread Thomas
Hi all, I didn't found in the doctrine documentation how to limit my results when i'm fetching all my news. I want to limit my results with only 5 news (like in SQL LIMIT 0,5). I've done this : $news = new News(); $news = $this-get('doctrine') -getEntityManager()

Re: [symfony-users] Sonata AdminBundle - incompatable with latest FOS UserBundle?

2011-06-07 Thread Thomas Rabaix
. To post to this group, send email to symfony-users@googlegroups.com To unsubscribe from this group, send email to symfony-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Thomas Rabaix http://rabaix.net -- If you

Re: [symfony-users] Using Sonata AdminBundle for a front end management panel

2011-06-03 Thread Thomas Rabaix
@googlegroups.com To unsubscribe from this group, send email to symfony-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Thomas Rabaix http://rabaix.net -- If you want to report a vulnerability issue on symfony, please

Re: [symfony-users] symfony1 + Symfony2

2011-06-03 Thread Thomas Rabaix
://groups.google.com/group/symfony-users?hl=en -- Thomas Rabaix http://rabaix.net -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups symfony users group. To post

Re: [symfony-users] Using Sonata AdminBundle for a front end management panel

2011-06-03 Thread Thomas Rabaix
On Fri, Jun 3, 2011 at 11:31 AM, keymaster ad...@optionosophy.com wrote: You can initialize the Frontend and Backend from within a single index.php by matching url. Thanks for the response, Thomas. While in principle I understand what you are recommending, I have no clue on what changes

Re: [symfony-users] Using Sonata AdminBundle for a front end management panel

2011-06-03 Thread Thomas Rabaix
users group. To post to this group, send email to symfony-users@googlegroups.com To unsubscribe from this group, send email to symfony-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Thomas Rabaix http://rabaix.net

Re: [symfony-users] Re: Using Sonata AdminBundle for a front end management panel

2011-06-03 Thread Thomas Rabaix
The is a ACL branch which for now allows to select which actions can be done upon roles. The next step will be to select which fields users can view or edit. On Fri, Jun 3, 2011 at 2:46 PM, dbu da...@liip.ch wrote: hi thomas, something I have in mind, the only restriction for now is how

Re: [symfony-users] Using Sonata AdminBundle for a front end management panel

2011-06-02 Thread Thomas Rabaix
to symfony-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Thomas Rabaix http://rabaix.net -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You

Re: [symfony-users] Re: AdminBundle - not able to make it work in PR10

2011-04-11 Thread Thomas Rabaix
The arguments signature has changed. You must add null as first argument. The white page is not normal, if you are in dev mode you should see an error stack On 11 avr. 2011, at 11:34, seven seven wrote: On my side the problem is that I don't receive any error. I am getting an empty admin

Re: [symfony-users] Re: AdminBundle - not able to make it work in PR10

2011-04-11 Thread Thomas Rabaix
, TockTockFlatPagesBundle:GroupPageEngineAdmin] ? I am in dev mode, ah I was referring that no fields are present, the Admin template is there on the page, like there is no entity attached On Mon, Apr 11, 2011 at 12:51 PM, Thomas Rabaix thomas.rab...@gmail.comwrote: The arguments signature has changed

Re: [symfony-users] [symfony2] MediaBundle installation

2011-03-28 Thread Thomas Rabaix
On 27 mars 2011, at 11:12, seven seven wrote: Hello everyone, I must say that this might be a stupid question, but I am stuck with installing MediaBundle in Symfony2. I am using xampp on windows7 and Cygwin as command line console. According to the documentation on installation I must run

Re: [symfony-users] [Symfony2]Forms performance

2011-03-17 Thread Thomas Rabaix
It is not a good time to speak about performance. First the framework is not stable, and the Form component is being refactored. On 17 mars 2011, at 15:14, Costin wrote: Hey, Running a simple Zend Controller benchmark on a simple page vs a page with a 2 fields form, the number of requests

[symfony-users] Jobeet day 3 load data

2011-03-17 Thread christophe thomas
I'm trying to load data from fixtures jobs.yml and categories.yml with this command: $ php symfony doctrine:data-load But the tables are empty. I have got the columns and tables created, but no data loaded. Any ideas? I have no error message and my files are correctly named with .yml I have no

Re: [symfony-users] [Symfony2][FrameworkExtraBundle] Several routes to one action

2011-03-14 Thread Thomas Rabaix
If you plan to distribute your bundle, does not use the FrameworkExtraBundle and use the xml routing definition. On 14 mars 2011, at 09:40, Nikita Korotaev wrote: Hi everyone, Recently I've decided to change routes from Yaml declaration to annotations using FrameworkExtraBundle, which is

Re: [symfony-users] [Symfony2][FrameworkExtraBundle] Several routes to one action

2011-03-14 Thread Thomas Rabaix
you cannot overwrite information defined in annotation ... On 14 mars 2011, at 10:03, Nikita Korotaev wrote: My bundle with annotation routing is for personal application. Why it encourages to use xml in routings for shared bundles? -- If you want to report a vulnerability issue on

Re: [symfony-users] Change the umask in cache files

2011-03-09 Thread Thomas Rabaix
set the umask in your index.php file ... On 9 mars 2011, at 11:57, Sergi wrote: Due to some issues with my hosting, my user does not have permissions to erase cache directories/files when I update changes to server. They told me to change the mode Symfony creates the files with umask 0002.

[symfony-users] Doctrine many to many relationship Doctrine_Record delete override.

2011-02-07 Thread Thomas D.
Hello, I have some trouble with a project I'm building with symfony 1.4 doctrine 1.2. I have a Page and a Tag model. They're bound through a PageTag refClass in a m2m relationship. Since the tag class is also bound to several other models, I'm trying to keep track of a tag's associations into

Re: [symfony-users] Re: Minified JavaScript in Production

2011-01-11 Thread Thomas Rabaix
use https://github.com/rande/swCombinePlugin/ On 10 janv. 2011, at 23:11, Felix E. Klee wrote: On Sun, Jan 9, 2011 at 7:51 PM, Tom Boutell t...@punkave.com wrote: Apostrophe (a CMS plugin for Symfony, among other things) includes a minifier for JS and CSS which is integrated into Symfony so

[symfony-users] [symfony2] FileField issue

2010-12-27 Thread Thomas Rabaix
Hello, I am trying to use the FileField object, every thing works fine, however I cannot have the correct file name. I have a model with a property `binary_content`, then I create a form with a FileField named `binary_content`. When the form is bound, the object property get the temporary

Re: [symfony-users] Using multiple databases with doctrine

2010-12-09 Thread Thomas Rabaix
Loic, Can you create a small project where this issue can be reproduce ? Thomas On 9 déc. 2010, at 13:41, Loïc Vernet wrote: http://trac.symfony-project.org/ticket/9092 Use 1.4.6 instead... 2010/12/8 hectorh30 hector...@gmail.com Hi there, I have this error [1] when attempting

Re: [symfony-users] Acces denied for user www-data

2010-11-18 Thread Thomas Ohms
Does this only happen with you own module? 2010/11/18 Bor1s galina.sebast...@gmail.com Hello all, i am a beginner on symfony and i try to do the jobeet tutorial. All seem to be good as far as the final part of day 2 when i try to do a new module. When i try to access at my module's url (

Re: [symfony-users] Performances issues

2010-11-16 Thread Thomas Rabaix
=en -- Thomas Rabaix http://rabaix.net -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email to symfony

Re: [symfony-users] Re: Performances issues

2010-11-16 Thread Thomas Rabaix
, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Thomas Rabaix http://rabaix.net -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups

Re: [symfony-users] Re: Using generator.yml, is there any way to hide the fields of the i18n forms in the admin?

2010-10-26 Thread Thomas Ohms
Have a look here: http://forum.diem-project.org/viewtopic.php?f=2t=182start=0 Maybe that's what you are looking for?! Regards, Thomas 2010/10/26 Javier Garcia tirengar...@gmail.com well, maybe the question is: using generator.yml, is there any way to hide the fields of the i18n table forms

Re: [symfony-users] Re: Using generator.yml, is there any way to hide the fields of the i18n forms in the admin?

2010-10-26 Thread Thomas Ohms
Ooops, sorry wrong list. My link show an example for Diem. But should work similar to Symfony. 2010/10/26 Thomas Ohms thomas.o...@googlemail.com Have a look here: http://forum.diem-project.org/viewtopic.php?f=2t=182start=0 Maybe that's what you are looking for?! Regards, Thomas 2010/10

Re: [symfony-users] Re: Remove column through schema.yml (Doctrine)

2010-10-24 Thread Thomas Ohms
Hi Raphael, thanks for the link. Interesting presentation, but nothing new and I'm afraid no help as there isn't discussed removing columns through schema.yml. :( Bye, Thomas 2010/10/24 Raphael Schumacher m...@raphaelschumacher.ch This presentation could be of help to you: http

Re: [symfony-users] Remove column through schema.yml (Doctrine)

2010-10-22 Thread Thomas Ohms
Obviously, if you want to remove a column, you have to *remove* it from the scheam.yml file (just delete it) ;-) Am 21.10.2010 15:39, schrieb Thomas Ohms: Hi all, after searching for over an hour I just ask, what seems not to be asked before: I I like to remove a column from a schema (project

Re: [symfony-users] Factories : storage taking a really long time to load

2010-10-22 Thread Thomas Ohms
Are you using cache? Do you maybe have different caching compared to your dev an prod server? 2010/10/21 stephenrs ssgro...@gmail.com I'm preparing a site for launch - moving it out of my local dev environment to a remote VPS host, and I've discovered that sometimes pages take up to 60+

Re: [symfony-users] Remove column through schema.yml (Doctrine)

2010-10-22 Thread Thomas Ohms
* it from the scheam.yml file (just delete it) ;-) Am 21.10.2010 15:39, schrieb Thomas Ohms: Hi all, after searching for over an hour I just ask, what seems not to be asked before: I I like to remove a column from a schema (project based) so generating a migrations diff

Re: [symfony-users] Question with fowarding method

2010-10-22 Thread Thomas Ohms
Try the terms symfony 404 customizing in Google and you get many ways ;) Am Freitag 22 Oktober 2010, um 13:40:15 schrieb Tristan: In the jobeet tutorial, you can access jobs only if they are valid (30 days) thanks to : method_for_query: retrieveActiveJob The problem is that it fowards

Re: [symfony-users] Factories : storage taking a really long time to load

2010-10-22 Thread Thomas Rabaix
Are you storing doctrine object into session ? On Thu, Oct 21, 2010 at 11:45 PM, Thomas Ohms thomas.o...@googlemail.comwrote: Are you using cache? Do you maybe have different caching compared to your dev an prod server? 2010/10/21 stephenrs ssgro...@gmail.com I'm preparing a site

[symfony-users] Remove column through schema.yml (Doctrine)

2010-10-21 Thread Thomas Ohms
in projects config dir, but it doesn't seem to work. I tried to set a null value (~), a boolean or nothing at all after column's name, but I always get an alteration of the column instead of removing it. Is that supported anyway and if yes what am I doing wrong? Cheers, Thomas -- If you want

Re: [symfony-users] Tracking down issue in factories

2010-10-13 Thread Thomas Rabaix
, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Thomas Rabaix http://rabaix.net -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups

Re: [symfony-users] Re: distinguishing between task and web request

2010-10-13 Thread Thomas Rabaix
this group at http://groups.google.com/group/symfony-users?hl=en -- Thomas Rabaix http://rabaix.net -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups symfony

[symfony-users] Post and put problems

2010-10-13 Thread Thomas GRATIER
Hello list, I'm testing sfDoctrineRestGeneratorPlugin and I got some problems to test the webservices. It works perfectly fine with GET and DELETE but I supposed I miss something with POST and PUT methods (maybe understanding of REST...) because I only retrieve a 406 error. My table structure is

Re: [symfony-users] CLI sf Task, allowed memory issue

2010-09-01 Thread Thomas Rabaix
, send email to symfony-users+unsubscr...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Thomas Rabaix http://rabaix.net -- If you want to report a vulnerability issue on symfony, please

Re: [symfony-users] Re: Symfony 1.4-compatible minifier for Symfony now included in Apostrophe, can be used in any Symfony project

2010-08-27 Thread Thomas Rabaix
...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Thomas Rabaix http://rabaix.net -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed

Re: [symfony-users] Loading factories.yml configuration from task

2010-08-24 Thread Thomas Rabaix
from this group, send email to symfony-users+unsubscr...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Thomas Rabaix http://rabaix.net -- If you want to report a vulnerability issue

Re: [symfony-users] What's the future of Lime2 ? (vs PHPUnit)

2010-08-23 Thread Thomas Rabaix
...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Thomas Rabaix http://rabaix.net -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you

Re: [symfony-users] Re: latest verion of sfForkedDoctrineApplyPlugin is broken

2010-07-27 Thread Thomas Rabaix
%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Thomas Rabaix http://rabaix.net -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received

Re: [symfony-users] Comment fonctionne le plugin mgI18nPlugin

2010-06-07 Thread Thomas Rabaix
-users@googlegroups.com To unsubscribe from this group, send email to symfony-users+unsubscr...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Thomas Rabaix http://rabaix.net -- If you

Re: [symfony-users] Re: Comment fonctionne le plugin mgI18nPlugin

2010-06-07 Thread Thomas Rabaix
déconnecté et j'ai remis la clause i18n en première, pas de problème. Donc au final, j'ai une erreur de ce type The module mgI18nAdmin is not enabled., le reste semble bien configuré :) On Jun 7, 11:50 am, Thomas Rabaix thomas.rab...@gmail.com wrote: mgI18nAjaxTranslation n'est plus utile dans la

Re: [symfony-users] print_r / var_dump debugging.

2010-06-07 Thread Thomas Rabaix
-users?hl=en -- Thomas Rabaix http://rabaix.net -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email

Re: [symfony-users] Re: sf/doctrine performance

2010-05-07 Thread Thomas Rabaix
-users?hl=en -- Thomas Rabaix http://rabaix.net -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email to symfony

Re: [symfony-users] Re: radiobutton and select values

2010-04-28 Thread Thomas Rabaix
at http://groups.google.com/group/symfony-users?hl=en -- Thomas Rabaix http://rabaix.net -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups symfony users

Re: [symfony-users] Explication du plugin mgI18nPlugin

2010-04-27 Thread Thomas Rabaix
to this group, send email to symfony-users@googlegroups.com To unsubscribe from this group, send email to symfony-users+unsubscr...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Thomas Rabaix

Re: [symfony-users] How to get array of field names and default values by inspecting $form

2010-04-27 Thread Thomas Rabaix
To unsubscribe from this group, send email to symfony-users+unsubscr...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Thomas Rabaix http://rabaix.net -- If you want to report

Re: [symfony-users] Symfony performance handling batch import objects

2010-04-06 Thread Thomas Rabaix
email to symfony-users@googlegroups.com To unsubscribe from this group, send email to symfony-users+unsubscr...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Thomas Rabaix http

Re: [symfony-users] best practice i18n date

2010-03-23 Thread Thomas Rabaix
email to symfony-users+ unsubscribegooglegroups.com or reply to this email with the words REMOVE ME as the subject. -- Thomas Rabaix http://rabaix.net -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because

Re: [symfony-users] Re: What about Dimensions plugin ?

2010-03-20 Thread Thomas Rabaix
possible to determine the template path dynamically without hard-coding it into any configuration files and still having the fallback of using the default template. Kind regards Johannes On Mar 18, 10:44 pm, Thomas Rabaix thomas.rab...@gmail.com wrote: The dimension must be set before

Re: [symfony-users] What about Dimensions plugin ?

2010-03-18 Thread Thomas Rabaix
this group at http://groups.google.com/group/symfony-users?hl=en -- Thomas Rabaix http://rabaix.net -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups symfony users

Re: [symfony-users] Re: What about Dimensions plugin ?

2010-03-18 Thread Thomas Rabaix
way to achieve this (particularly, I do not want to mess with the cache). On 18 mar, 17:02, Thomas Rabaix thomas.rab...@gmail.com wrote: What you mean by theme-ing ? On Wed, Mar 17, 2010 at 9:36 AM, Aurélien Fredouelle aurelien.fredoue...@gmail.com wrote: Hi, I have been

Re: [symfony-users] Form dependency injection

2010-03-10 Thread Thomas Rabaix
email to symfony-users+unsubscr...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Thomas Rabaix http://rabaix.net -- If you want to report a vulnerability issue on symfony, please send

Re: [symfony-users] How to properly override Doctrine_Record::delete()?

2010-02-08 Thread Thomas Rabaix
...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en. -- Thomas Rabaix http://rabaix.net -- You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email

Re: [symfony-users] Does the Doctrine package concept work?

2010-02-04 Thread Thomas Rabaix
-users+unsubscr...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en. -- Thomas Rabaix http://rabaix.net -- You received this message because you are subscribed to the Google Groups

Re: [symfony-users] Re: Definitive guide for 1.3 and 1.4

2010-02-02 Thread Thomas Rabaix
...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en. -- Thomas Rabaix http://rabaix.net -- You received this message because you are subscribed to the Google Groups symfony users group. To post

Re: [symfony-users] mgI18nPlugin with sf 1.3/1.4

2010-02-01 Thread Thomas Rabaix
to symfony-users+unsubscr...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en. -- Thomas Rabaix http://rabaix.net -- You received this message because you are subscribed to the Google

Re: [symfony-users] Drag'n'drop

2010-01-10 Thread Thomas Rabaix
...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en. -- Thomas Rabaix http://rabaix.net -- You received this message because you are subscribed to the Google Groups "symfony users&q

[symfony-users] Doctrine's column_aggregation and Admin Generator

2010-01-06 Thread Thomas
who has some clues. Thomas -- You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email to symfony-us...@googlegroups.com. To unsubscribe from this group, send email to symfony-users+unsubscr...@googlegroups.com. For more

Re: [symfony-users] How to use doctrine tasks only for a given connection?

2009-12-11 Thread Thomas Rabaix
. -- Thomas Rabaix http://rabaix.net -- You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email to symfony-us...@googlegroups.com. To unsubscribe from this group, send email to symfony-users+unsubscr

Re: [symfony-users] How to use doctrine tasks only for a given connection?

2009-12-11 Thread Thomas Rabaix
connections Does it make sense ? On Fri, Dec 11, 2009 at 12:49 PM, Nicolas Perriault nperria...@gmail.comwrote: On Fri, Dec 11, 2009 at 10:52 AM, Thomas Rabaix thomas.rab...@gmail.com wrote: Connections are bound to an environment, so I guess just use the --env option. I don't think so, just

[symfony-users] Action sf_guard_user/index does not exist (sfDoctrineGuardPlugin)

2009-12-10 Thread Thomas l'ours dev brun
not exist. /backend_dev.php/sf_guard_group works and /backend_dev.php/sfGuardUser works too (but of course, the links are not good) I checked a lot of things and I have currently no more idea! Thanks by advance, Thomas -- You received this message because you are subscribed to the Google Groups

Re: [symfony-users] Error 255 in Lime Unit Tests

2009-12-07 Thread Thomas Rabaix
The lime2 version will tell you why an error occurs, for now every time you see dubious just run your test directly with php yourTest.php On Mon, Dec 7, 2009 at 8:47 AM, Christopher Schnell ty...@mda.ch wrote: Thanks for your hint, Thomas. There was an fatal error in my test because I wrote

Re: [symfony-users] Error 255 in Lime Unit Tests

2009-12-04 Thread Thomas Rabaix
run the test from php directly : php path_to_/yourTest.php On 4 déc. 2009, at 12:21, Christopher Schnell wrote: Hi all, I have an error, when running lime unit tests with ./symfony test:unit One of my testfiles returns status 255 and thus failes. However, if I run the test only for the

Re: [symfony-users] doctrine - Jonathan.Wage - what is wrong in my ticket ?

2009-12-01 Thread Thomas Rabaix
. -- Thomas Rabaix http://rabaix.net -- You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email to symfony-us...@googlegroups.com. To unsubscribe from this group, send email to symfony-users+unsubscr...@googlegroups.com

Re: [symfony-users] Re: is sfLucenePlugin dead? what are people using for search?

2009-11-26 Thread Thomas Rabaix
work fine (used in production). I am currently working on unit test, removing sfContext dependency and much more. However, if you find critical bugs in the Zend_Search version, please send me a patch. Thomas On Thu, Nov 26, 2009 at 5:35 AM, Richtermeister nex...@gmail.com wrote: Yes, the plugin

Re: [symfony-users] Re: is sfLucenePlugin dead? what are people using for search?

2009-11-26 Thread Thomas Rabaix
sfLucenePlugin -r 24031 http://svn.symfony-project.com/plugins/sfLucenePlugin/branches/1.2-Solr On Thu, Nov 26, 2009 at 10:18 AM, Lawrence Krubner lawrence.krub...@gmail.com wrote: Thanks, Thomas, I look forward to using it. But what is the correct URL for the newest (reasonably stable

Re: [symfony-users] Re: is sfLucenePlugin dead? what are people using for search?

2009-11-26 Thread Thomas Rabaix
I am looking forward for any comments/issues you might have, and don't hesitate to write a small installation procedure On Thu, Nov 26, 2009 at 10:32 AM, Thomas Rabaix thomas.rab...@gmail.com wrote: sfLucenePlugin -r 24031 http://svn.symfony-project.com/plugins/sfLucenePlugin/branches/1.2-Solr

[symfony-users] Re: Multiple Doctrine Databases / Sf1.4 Issues

2009-11-25 Thread Thomas Parisot // Oncle Tom
I'm not encountering this problem anymore with Doctrine 1.2-RC1. :) On 24 nov, 19:49, Thomas Parisot // Oncle Tom tho...@oncle-tom.net wrote: Isn't it similar to this?http://trac.symfony-project.org/ticket/7659 On 24 nov, 17:48, PhiKapJames phikapja...@gmail.com wrote: I created a ticket

[symfony-users] Re: Multiple Doctrine Databases / Sf1.4 Issues

2009-11-24 Thread Thomas Parisot // Oncle Tom
Isn't it similar to this? http://trac.symfony-project.org/ticket/7659 On 24 nov, 17:48, PhiKapJames phikapja...@gmail.com wrote: I created a ticket, but appears that one was already created 2 days ago. On Nov 24, 11:06 am, PhiKapJames phikapja...@gmail.com wrote: Found an issue with using

Re: AW: [symfony-users] Unsubscribe from the group

2009-11-20 Thread Thomas Rabaix
-us...@googlegroups.com. To unsubscribe from this group, send email to symfony-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/symfony-users?hl=. -- Thomas Rabaix http://rabaix.net -- You received this message because you

Re: AW: [symfony-users] Unsubscribe from the group

2009-11-20 Thread Thomas Rabaix
Alright then ... filter = move to trash ... On Fri, Nov 20, 2009 at 12:17 PM, Patrick Landolt patrick.land...@artack.ch wrote: I guess you can't imagine that we already tried that... -Ursprüngliche Nachricht- Von: Thomas Rabaix [mailto:thomas.rab...@gmail.com] Gesendet: Freitag, 20

[symfony-users] Re: got strange issue in symfony sessions (urgent)

2009-11-17 Thread Thomas Rabaix
Do you have other php applications ? If so check the session ttl on each, the shorter wins ... On 17 nov. 2009, at 05:27, Dheeraj Kumar Aggarwal wrote: i have got a strange issue in my symfony project when the user navigate through the site, sometimes symfony forwards the user to login

[symfony-users] Re: catching errors during upload file

2009-11-04 Thread Thomas Rabaix
) { if (file_exists(sfConfig::get('sf_upload_dir').'/'.$name_photo)) unlink(sfConfig::get('sf_upload_dir').'/'.$name_photo); } -- Thomas Rabaix http://rabaix.net --~--~-~--~~~---~--~~ You received this message

[symfony-users] Re: Configuration file for whole project

2009-10-30 Thread Thomas Rabaix
are available in all applications and the model? -- Thomas Rabaix http://rabaix.net --~--~-~--~~~---~--~~ 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

[symfony-users] Re: Unit testing with fake model classes

2009-10-22 Thread Thomas Rabaix
of http://components.symfony-project.org/dependency-injection/. It is not part of sf 1.2.x. Has anyone used this in sf 1.2.x? Does anyone have other suggestions on how to implement something like this? Thanks Henning -- Thomas Rabaix http://rabaix.net

[symfony-users] Re: File system access

2009-10-19 Thread Thomas Rabaix
system (move, rename, delete...). Is there something as an abstraction layer fot this provided by symfony? Or I need to use exec calls or a plugin like cleverFilesystemPlugin? Thanks Daniel -- Thomas Rabaix http://rabaix.net --~--~-~--~~~---~--~~ You received

[symfony-users] Re: testing routes

2009-10-15 Thread Thomas Rabaix
the routes from my routing.yml ... $t-isDeeply($routing-parse('test.html'), array('module' = 'test', 'action' = 'test'), 'test.html passes'); etc... can anyone tell me how to load the routing.yml into my sfPatternRouting object?? Thanks Jonathan -- Thomas Rabaix http://rabaix.net

[symfony-users] Re: sfForm decorator is not used when form is rendered

2009-10-14 Thread Thomas Rabaix
%' = $this-getFormFieldSchema()- render($attributes))); } /** Is this by design or a bug in symfony or do I forgot something? -- Thomas Rabaix http://rabaix.net --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users

[symfony-users] Re: sfForm decorator is not used when form is rendered

2009-10-14 Thread Thomas Rabaix
no idea ... On Wed, Oct 14, 2009 at 3:27 PM, Iwan van Staveren istave...@gmail.comwrote: Thomas, Thanks, do you also know what the design idea behind this is or where I can find it? Kind regards, Iwan On 14 okt, 14:06, Thomas Rabaix thomas.rab...@gmail.com wrote: It is by design

[symfony-users] Re: Performance tricks for Symfony

2009-10-14 Thread Thomas Rabaix
!!! Can you explain why ? A php bug ? Thanks for that thought-provoking post ;-) -- Thomas Rabaix http://rabaix.net --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send

[symfony-users] Re: Event to help me reset my own singletons on restart() in a functional test?

2009-09-24 Thread Thomas Rabaix
request. Is there a Symfony event I can respond to for this purpose? If there is not, I think it should be added in 1.3. -- Tom Boutell P'unk Avenue 215 755 1330 punkave.com window.punkave.com -- Thomas Rabaix http://rabaix.net

[symfony-users] Re: Symfony has definitely become too complicated framework

2009-09-24 Thread Thomas Rabaix
: On Thu, 24 Sep 2009, david wrote: It would however need over-sight and management by the core SF team. I suspect lack of resources would be a problem here. -- Using Opera's revolutionary e-mail client: http://www.opera.com/mail/ -- Thomas Rabaix http://rabaix.net

[symfony-users] Re: What is the right way to load fixtures in a functional test?

2009-09-22 Thread Thomas Rabaix
the dispatcher and formatter objects ready to pass, whatever those might be. Is my workaround the best that can be done or is there a straightforward way to call the task? -- Tom Boutell P'unk Avenue 215 755 1330 punkave.com window.punkave.com -- Thomas Rabaix http://rabaix.net

[symfony-users] Re: get $sf_content in a filter.

2009-09-11 Thread Thomas Parisot // Oncle Tom
Thanks, you headed us on the good way. We indeed connected on the `template.filter_parameters` and checked if the parameter 'sf_content' was there and filled. :-) On Sep 11, 4:35 pm, aalexand alexander.s.alexand...@gmail.com wrote: For the sake of clarity I should perhaps also note this -

[symfony-users] Re: an intermitent bug, involving an error about favicon.ico

2009-09-09 Thread Thomas Rabaix
Architect Engineer Blog:http://webmozarts.com -- Thomas Rabaix http://rabaix.net --~--~-~--~~~---~--~~ 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

[symfony-users] Re: my first plugin

2009-09-03 Thread Thomas Rabaix
://my_host.com/googleAnalytics i have Action googleAnalytics/index does not exist. What's going on? -- Thomas Rabaix http://rabaix.net --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post

[symfony-users] Re: how to get the module name bu giving a route name

2009-09-03 Thread Thomas Rabaix
$routes = sfContext::getInstance()-getRouting()-getRoutes(); $route = $routes['Zip']; You can then have access to the sfRoute object On Thu, Sep 3, 2009 at 12:51 PM, Ahsanul ahsanu...@gmail.com wrote: Would be glad if anyone could help! -- Thomas Rabaix http://rabaix.net

[symfony-users] Re: How to automatically add stars on required fields using sfForm in Symfony 1.2

2009-08-31 Thread Thomas Rabaix
Developmenthttp://bluehorn.co.nz -- Blue Horn Ltd - System Development http://bluehorn.co.nz -- Thomas Rabaix http://rabaix.net --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group

[symfony-users] Re: How to automatically add stars on required fields using sfForm in Symfony 1.2

2009-08-31 Thread Thomas Rabaix
at 7:44 PM, Thomas Rabaixthomas.rab...@gmail.com wrote: ho ho !! a third solution ;) The solution is mainly : call a static method it goes through the widgetSchema recursively update the label to be an *object* and not a sting. echo $label will invoke the __toString method

[symfony-users] Re: Tweaking generated routes with the admin generator

2009-08-26 Thread Thomas Rabaix
exposed to an approaching situation or have an idea to solve it ;) Cheers, -- Nicolas Perriault http://prendreuncafe.com - http://symfonians.net Mobile: +33 660 92 08 67 -- Thomas Rabaix http://rabaix.net --~--~-~--~~~---~--~~ You received this message

[symfony-users] Re: ysfDimensions with sfSQLiteCache

2009-08-25 Thread Thomas Rabaix
')) { // handle exception early on and exit if something bad happens $e-asResponse()-send(); exit; } else { echo $e-getMessage(); exit; } } } } -- Thomas Rabaix http://rabaix.net

  1   2   3   4   >