[symfony-users] Re: Automated testing in symfony

2008-03-08 Thread Nicolas Perriault
On Sat, Mar 8, 2008 at 7:01 AM, Sumedh [EMAIL PROTECTED] wrote: Is there no one who does smoke testing by an Automation testing tool? I've set up once a cruisecontrol instance for a project, using a trick to decorate lime results output in xUnit XML format:

[symfony-users] Re: sfLucenePlugin for one-to-many relationship indexing

2008-03-08 Thread wissl
So indexing works so far (what you can tell), but your search does not return the results you want? Or are you not sure about the correct indexing process itself? What looks a little bit strange to me is that you index the field authorIDs as a keyword, but your query searches for tokenized

[symfony-users] Re: Automated testing in symfony

2008-03-08 Thread Lee Bolding
There's also an entire chapter in the Symfony manual about testing :p -Original Message- From: symfony-users@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nicolas Perriault Sent: 08 March 2008 08:51 To: symfony-users@googlegroups.com Subject: [symfony-users] Re: Automated

[symfony-users] Re: Components in plugins?

2008-03-08 Thread Michael Nolan
No different to normal - just ensure that the module is enabled as you would with actions. Mike On Mar 7, 5:13 pm, Eno [EMAIL PROTECTED] wrote: Is it possible to define a component inside the module of a plugin and then call it from a template in an app? Is there a special way to call

[symfony-users] Re: Strange credential problem

2008-03-08 Thread Mohammad Ali Safari
Yes I did. cheers, -Mohammad On Sat, Mar 8, 2008 at 12:45 AM, Hugo HAMON [EMAIL PROTECTED] wrote: Did you clear your cache ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post to

[symfony-users] Important : Interesting opportunities, worth exploring

2008-03-08 Thread law
A few days ago, I discovered a web page that, I think, I personally found very beneficial. I feel I should send it for the benefit of interested members of this GROUP. You may click on: http://www.pasgom.org/Stores.html for more insight. If you also find it beneficial, you may copy this link

[symfony-users] Important : Interesting opportunities, worth exploring

2008-03-08 Thread law
A few days ago, I discovered a web page that, I think, I personally found very beneficial. I feel I should send it for the benefit of interested members of this GROUP. You may click on: http://www.pasgom.org/Stores.html for more insight. If you also find it beneficial, you may copy this link

[symfony-users] Re: sfLucene : $result-getXXX()

2008-03-08 Thread Carl Vondrick
On Tuesday, March 04, 2008, Sébastien CAS wrote: With getter : $result-getPublishUp() = I obtain this error : Field name publish_up not found in document. Without getter : $result-publishUp : I access to the correct value. Hey, Sorry for responding so late -- I was out of town.

[symfony-users] Re: sfLucenePlugin for one-to-many relationship indexing

2008-03-08 Thread Carl Vondrick
Also, check out: http://www.nabble.com/Lucene-and-n:m-td12695579.html On Saturday, March 08, 2008, wissl wrote: So indexing works so far (what you can tell), but your search does not return the results you want? Or are you not sure about the correct indexing process itself? What looks a

[symfony-users] Re: sfLucenePlugin for one-to-many relationship indexing

2008-03-08 Thread SNake!
Actually I am using Luke to check my index, I found it seems to index the field without the number (in the case using text type). And then I try to give the field like [1],[2],[10] as keyword type. I try to query as authorIDs:\[1\] but return no result On 3月8日, 下午5時18分, wissl [EMAIL PROTECTED]

[symfony-users] Re: sfLucenePlugin for one-to-many relationship indexing

2008-03-08 Thread SNake!
Could it be done by return the field as array and declare that field as keyword , like: In search.yml: ... Books: fields: authorids: keyword ... and in the model: function getAuthorIds(){ // mock result return array(1,2,10); } ... Or I have to do a customized

[symfony-users] Re: sfLucenePlugin for one-to-many relationship indexing

2008-03-08 Thread Carl Vondrick
On Saturday, March 08, 2008, SNake! wrote: Actually I am using Luke to check my index, I found it seems to index the field without the number (in the case using text type). And then I try to give the field like [1],[2],[10] as keyword type. I try to query as  authorIDs:\[1\] but return no