[symfony-users] Re: sfPropelVersionableBehaviorPlugin: creating a new resource version without modifying the resource

2008-04-02 Thread Kiril Angov
Take a look at the sfModerationPlugin http://trac.symfony-project.com/wiki/sfModerationPlugin Kiril On Mon, Mar 31, 2008 at 3:32 AM, Francois Zaninotto [EMAIL PROTECTED] wrote: Georg, I actually think that your use of the plugin is far from its original purpose. The plugin does versioning,

[symfony-users] caching

2008-04-02 Thread Uli Nitsche
Hi all, we make extensive use of symfony's file caching and this works out well. but there is one thing I don't really understand: looking at my caching directory (/cache/frontend/prod/template/) there are - beside the name of my application - several directories like us_bookmarks_yahoo_com,

[symfony-users] sfLucene - how to non re-index propel object temporally?

2008-04-02 Thread gestadieu
Hi all, I finally find a way to upgrade from sfLucene 0.1.0 to 0.1.5 (it seems there are some issues with some PHP5 versions and more important: make sure to not have Zend already installed in PEAR!). I am encountering a problem time to time with some of the index lock files only readable but I

[symfony-users] Re: installing symfony via PEAR

2008-04-02 Thread Gould, Adrian
Dean I have had the same problem here where there is a proxy that runs not on port 80 [transparent proxying]... I ended up using the offline solution successfuly. Adrian Adrian Gould Lecturer in Information Technology Business, Finance and Computing PO BOX 1336, Midland WA 6936 Ph:

[symfony-users] Re: Fwd: login logout tutorial

2008-04-02 Thread Ian P. Christian
mohammad nikna wrote: hi i need tutorial about login and logout Please see the manual (security section), and the askeet turtorial. Also, have a look at sfGuard plugin. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[symfony-users] Re: a mixing for all get*

2008-04-02 Thread Ian P. Christian
hutchic wrote: If I had access to aspect programming I'd be in the zone unfortunately. Wondering off topic a tiny bit. Have you used/seen http://phpaspect.org/ ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[symfony-users] Re: sfLucene - how to non re-index propel object temporally?

2008-04-02 Thread Nicolas Perriault
On Wed, Apr 2, 2008 at 10:08 AM, gestadieu [EMAIL PROTECTED] wrote: Of course it will be a little bit more complex, but the question is on the code for Lucene itself. By default Lucene is doing a preSave or postSave, is there anyway to not run this when we do not want it on our code?

[symfony-users] Re: sfLucene - how to non re-index propel object temporally?

2008-04-02 Thread wissl
I think there are two possible solutions for that (maybe more...): 1) sfLucene provides the possibility to configure a validator method in the search.yml, which is asked, if the object has to be (re)indexed. So you could create such a -indexMe() in your object which returns false, if only the

[symfony-users] Fwd: login logout tutorial

2008-04-02 Thread mohammad nikna
hi i need tutorial about login and logout thanks. -- --~--~-~--~~~---~--~~ 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@googlegroups.com To unsubscribe from this

[symfony-users] Schema.yml generation for Oracle RDBMS

2008-04-02 Thread Mladen Gogala
I created a little Perl script (yeah, I know!) to generate table descriptions from the database itself. The script can be downloaded at: http://mgogala.byethost5.com/symfony_yaml.zip With Oracle RDBMS, creating DB objects is seldom the task for an application generator. Usually, the tables

[symfony-users] Re: Schema.yml generation for Oracle RDBMS

2008-04-02 Thread Mark Ng
you can do this already with symfony propel-build-schema (or does this not work with Oracle ?) Mark On 02/04/2008, Mladen Gogala [EMAIL PROTECTED] wrote: I created a little Perl script (yeah, I know!) to generate table descriptions from the database itself. The script can be downloaded

[symfony-users] Modules organisation

2008-04-02 Thread Nicolas Tavantzis
Hello everybody, I'm just a beginner in using symfony and I want to know if it's possible to separate the organisation of my modules. I give you an exemple : this is my path : /trunk/apps/frontend/modules/ I want to separate my modules header, footer and leftnav of the rest of my modules

[symfony-users] difference between lib/file.php and lib/filePeer.php

2008-04-02 Thread shaiin
Hi everyone, Could someone help me on this. I'd like to know what the difference between all files.php and 'filesPeer.php' located in my 'lib' directory, please sincerely --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[symfony-users] Re: sfLucene - how to non re-index propel object temporally?

2008-04-02 Thread gestadieu
thanks, yes you're right validators are here for this! I'll go for this probably. I have set already validators and I forgot that I could use them for this too! On Apr 2, 5:23 pm, wissl [EMAIL PROTECTED] wrote: I think there are two possible solutions for that (maybe more...): 1) sfLucene

[symfony-users] Re: sfLucene - how to non re-index propel object temporally?

2008-04-02 Thread gestadieu
good to know indeed. On Apr 2, 5:28 pm, Nicolas Perriault [EMAIL PROTECTED] wrote: On Wed, Apr 2, 2008 at 10:08 AM, gestadieu [EMAIL PROTECTED] wrote:  Of course it will be a little bit more complex, but the question is on  the code for Lucene itself. By default Lucene is doing a preSave or

[symfony-users] Re: how to create a routing rule to match a filter param

2008-04-02 Thread Jill Elaine
Well, this is harder than I thought it might be! It took a while for me to just get a link that took me to a filtered page. It is not as simple as one might think. This doesn't work: -php echo link_to('Coordinator - Mathews', 'coordinator/list? lastname=Mathews') - It just goes to the coordinator

[symfony-users] Re: difference between lib/file.php and lib/filePeer.php

2008-04-02 Thread Nicolas Perriault
On Wed, Apr 2, 2008 at 3:19 PM, shaiin [EMAIL PROTECTED] wrote: I'd like to know what the difference between all files.php and 'filesPeer.php' located in my 'lib' directory, please lib/model/Xxx.php: - represents a *record* (one table row) - methods affect the record and its related

[symfony-users] accessing template output from within an action

2008-04-02 Thread Richtermeister
Hi all, I'm trying to tie a shipping live-lookup API into my application via XML, and I was wondering how I'd best go about generating that XML to be sent out via curl.. Ideally I'd like to use the template system for this, so that I can have a different XML template for each service provider

[symfony-users] Re: accessing template output from within an action

2008-04-02 Thread Ian P. Christian
Richtermeister wrote: Hi all, I'm trying to tie a shipping live-lookup API into my application via XML, and I was wondering how I'd best go about generating that XML to be sent out via curl.. You should be using XSLT templates, with XML data, NOT sfView for generating XML. But, if

[symfony-users] Re: Left-Join using propel and accessing both tables

2008-04-02 Thread Ernie G
Hi Mohammad, I found this symfony code snippet that helped me do what you are asking: http://trac.symfony-project.com/wiki/ApplyingCustomJoinsInDoSelect As a bit of a side, my Many2Many relation involved data that I wanted to essentially group into one column. That is, say a table of books, a

[symfony-users] Re: accessing template output from within an action

2008-04-02 Thread Richtermeister
Hi Ian, thanks for the prompt response.. I don't insist on my approach, I just don't know any better :) I haven't come accross XSLT templates, but now I'm intrigued.. where can I find more about that? Thanks, Daniel On Apr 2, 9:59 am, Ian P. Christian [EMAIL PROTECTED] wrote: Richtermeister

[symfony-users] Re: accessing template output from within an action

2008-04-02 Thread Ian P. Christian
Richtermeister wrote: Hi Ian, thanks for the prompt response.. I don't insist on my approach, I just don't know any better :) I haven't come accross XSLT templates, but now I'm intrigued.. where can I find more about that? Well, to generate XML, you should never use echo/print etc

[symfony-users] Re: difference between lib/file.php and lib/filePeer.php

2008-04-02 Thread Tom Haskins-Vaughan
OK, that's better than my answer! :D Nicolas Perriault wrote: On Wed, Apr 2, 2008 at 3:19 PM, shaiin [EMAIL PROTECTED] wrote: I'd like to know what the difference between all files.php and 'filesPeer.php' located in my 'lib' directory, please lib/model/Xxx.php: - represents a

[symfony-users] Re: accessing template output from within an action

2008-04-02 Thread Richtermeister
Hi Ian, I see. Good point. I took a little peek, and h :) That looks exciting! I'll get on it, thanks for the xml-eye-opener. Have a great day, Daniel On Apr 2, 12:21 pm, Ian P. Christian [EMAIL PROTECTED] wrote: Richtermeister wrote: Hi Ian, thanks for the prompt response.. I