Re: [symfony-users] Textarea onclick event?

2010-11-01 Thread Gareth McCumskey
Perhaps try: array('onclick'=>'alert("yo"); return false; ')) //No javascript: On Sun, Oct 31, 2010 at 8:44 PM, Parijat Kalia wrote: > Hey guys,r unning into a silly doubt that should so not happen at all! > > I have a textarea tag, > > array('onclick'=>'javascript:alert("yo") ')) ;?> > > and t

Re: [symfony-users] HTTP 404 Error on newest "A week of symfony"

2010-11-01 Thread Michał Piotrowski
Hi, 2010/11/1 J. Dreesen : > Some hours ago, Javier Eguiluz wrote the newest "A week of symfony" > which is number 200! I like this weekly overview very much, but sadly, > this time I couldn't read it, because the URL > http://www.symfony-project.org/blog/2010/10/31/a-week-of-symfony-200-25-31-oct

[symfony-users] several parallel requests from one client?

2010-11-01 Thread axel at
hello, when I start a symfony web request that needs several seconds to be finished, other requests to the same server/symfony application sent from the same client browser are "locked" until the first request is finished. (requests started during the processing time of the first long request that

Re: [symfony-users] several parallel requests from one client?

2010-11-01 Thread Gábor Fási
This is a session issue. While a request is being processed, others from the same client (same sessionid) are held back to prevent simultaneous output to the session storage. In php, you can use session_write_close() to tell when you're finished writing to the session array (and php will start pro

Re: [symfony-users] several parallel requests from one client?

2010-11-01 Thread Gareth McCumskey
I wrote a blog post about this ages back. Feel free to take a look: http://garethmccumskey.blogspot.com/2009/10/php-session-write-locking-and-how-to.html On Mon, Nov 1, 2010 at 12:26 PM, axel at wrote: > hello, > > when I start a symfony web request that needs several seconds to be > finished,

Re: [symfony-users] HTTP 404 Error on newest "A week of symfony"

2010-11-01 Thread Fabien Potencier
fixed now. -- Fabien Potencier Sensio CEO - symfony lead developer sensiolabs.com | symfony-project.org | fabien.potencier.org Tél: +33 1 40 99 80 80 On 11/1/10 11:22 AM, Michał Piotrowski wrote: Hi, 2010/11/1 J. Dreesen: Some hours ago, Javier Eguiluz wrote the newest "A week of symfony" whi

[symfony-users] Re: several parallel requests from one client?

2010-11-01 Thread axel at
thx for your help: adding: $this->getUser()->shutdown(); session_write_close(); to the actions that usually take a long time (eg. pdf generation, xls exports,...) solved our problem thx a lot! On 1 Nov., 11:59, Gareth McCumskey wrote: > I wrote a blog post about this ages back. Feel free t

Re: [symfony-users] Re: several parallel requests from one client?

2010-11-01 Thread Gareth McCumskey
$this->getUser()->shutdown() == session_write_close(); No need for both :) On Mon, Nov 1, 2010 at 1:36 PM, axel at wrote: > thx for your help: > > adding: > > $this->getUser()->shutdown(); > session_write_close(); > > to the actions that usually take a long time (eg. pdf generation, xls > expor

Re: [symfony-users] Re: several parallel requests from one client?

2010-11-01 Thread Gábor Fási
http://trac.symfony-project.org/browser/branches/1.4/lib/user/sfUser.class.php#L285 It does not call session_write_close(). On Mon, Nov 1, 2010 at 12:54, Gareth McCumskey wrote: > $this->getUser()->shutdown() == session_write_close(); > No need for both :) > > On Mon, Nov 1, 2010 at 1:36 PM, axe

[symfony-users] Re: several parallel requests from one client?

2010-11-01 Thread axel at
On 1 Nov., 12:54, Gareth McCumskey wrote: > $this->getUser()->shutdown() == session_write_close(); > > No need for both :) > hm in symfony 1.4.6 session_write_close(); is only called within the shutdown function of sfSessionStorage class. but not called from sfBasicSecurityUser->shutdown() nor

Re: [symfony-users] Re: several parallel requests from one client?

2010-11-01 Thread Gareth McCumskey
I see that now. Looking at the 1.1 library (which one of our projects is still currently using) session_write_close is included after the write methods are called. Why would this be removed? Its only helpful to have it there. On Mon, Nov 1, 2010 at 2:00 PM, Gábor Fási wrote: > > http://trac.symf

Re: [symfony-users] Re: several parallel requests from one client?

2010-11-01 Thread Gareth McCumskey
If it IS called in sfSessionStorage then it is called after all as sfSessionStorage manages the writes to session. On Mon, Nov 1, 2010 at 2:03 PM, axel at wrote: > > > On 1 Nov., 12:54, Gareth McCumskey wrote: > > $this->getUser()->shutdown() == session_write_close(); > > > > No need for both :

[symfony-users] Re: All new symfony developers please read...

2010-11-01 Thread Massimiliano Arione
On 29 Ott, 16:24, "cordo...@gmail.com" wrote: > oh!!! What exactly are we missing in the English version? Everything updated in the repository in the last 2 or 3 weeks (about) > I am sure Fabien will take action if he notices. So, please let him know. I already did and I don't want to bother hi

[symfony-users] Re: Textarea onclick event?

2010-11-01 Thread Massimiliano Arione
On 31 Ott, 19:44, Parijat Kalia wrote: > Hey guys,r unning into a silly doubt that should so not happen at all! > > I have a textarea tag, > > array('onclick'=>'javascript:alert("yo") ')) ;?> > > and the onclick event is failing to render itself in the HTML tag. > > Any pointers what I am doing w

Re: [symfony-users] Re: Textarea onclick event?

2010-11-01 Thread Alex Pilon
I would say wrong is not the right word here.. perhaps not the maximum best practice. It depends on your audience.. if it doesn't make a huge deal to your audience then its not that big of a deal. however if you can afford the resources then using unobtrusive hooks is a best practice and helps keep

Re: [symfony-users] Re: Textarea onclick event?

2010-11-01 Thread Parijat Kalia
Doesn't really answer my question. I have used several javascripts in the format : array('onclick'=>'javascript:alert("yo")')...the alert is just a filler function for now, there are offcourse different javascript functions. Every other input tag that I have used a javascript fucntion, it works fi

Re: [symfony-users] Re: Textarea onclick event?

2010-11-01 Thread Alex Pilon
What version of symfony are you using? According to the source code for 1.0, 1.1 and 1.2 there seems to only be three parameters. Where as you are passing it four. 'javascript:alert("yo") ')) ;?> Should this be 70x4,'onclick'=>'alert("yo")')); ?> Let me know if that works.. and by looking at th

Re: [symfony-users] Re: Textarea onclick event?

2010-11-01 Thread Alex Pilon
Oops.. and there should be quotes around that 70x4! On Mon, Nov 1, 2010 at 14:21, Alex Pilon wrote: > What version of symfony are you using? According to the source code for > 1.0, 1.1 and 1.2 there seems to only be three parameters. Where as you are > passing it four. > > textarea_tag('hint_bo

Re: [symfony-users] Re: All new symfony developers please read...

2010-11-01 Thread Fabien Potencier
On 11/1/10 5:15 PM, Massimiliano Arione wrote: On 29 Ott, 16:24, "cordo...@gmail.com" wrote: oh!!! What exactly are we missing in the English version? Everything updated in the repository in the last 2 or 3 weeks (about) I am sure Fabien will take action if he notices. So, please let him

Re: [symfony-users] Re: Textarea onclick event?

2010-11-01 Thread Parijat Kalia
Yip Alex...looks like that should work, apparently, you can simply specify size=70x4 rather than having to get it into an array, but if it has javascript function, then that needs, to change..Thanks again! On Mon, Nov 1, 2010 at 11:21 AM, Alex Pilon wrote: > What version of symfony are you u

Re: [symfony-users] Re: Textarea onclick event?

2010-11-01 Thread Alex Pilon
Cool, glad I could help :) On Mon, Nov 1, 2010 at 15:05, Parijat Kalia wrote: > Yip Alex...looks like that should work, apparently, you can simply specify > size=70x4 rather than having to get it into an array, but if it has > javascript function, then that needs, to change..Thanks again! >

Re: [symfony-users] Re: Textarea onclick event?

2010-11-01 Thread Alex Pilon
And that would be any other option, not only a javascript.. or in this case an onclick. On Mon, Nov 1, 2010 at 15:09, Alex Pilon wrote: > Cool, glad I could help :) > > > On Mon, Nov 1, 2010 at 15:05, Parijat Kalia wrote: > >> Yip Alex...looks like that should work, apparently, you can simply sp

[symfony-users] Symfony newbie MVC best practices question

2010-11-01 Thread Stan McFarland
Hi all, hoping someone can offer some advice to a Symfony newbie. I have a issues table, with an attribute 'status_id' which links to a status table (an issue can have a status of new, open, closed, etc.)My customer wants to see a list of issues (easy - handled via the issue/executeIndex acti

Re: [symfony-users] Symfony newbie MVC best practices question

2010-11-01 Thread Alex Pilon
I think it depends what you plan on doing with the statuses module. It you'll end up having other entities attached to them then I would put an action on either statuses or issues (indexByStatus) or whatever, OR add a parameter to the index action, but then your action would have two functions whic

Re: [symfony-users] Symfony newbie MVC best practices question

2010-11-01 Thread Gareth McCumskey
Personally I don't necessarily follow the idea of keeping all your actions "RESTful". If you were building a rest API then sure, but sometimes you need to get things done. That being said, this can still be done with a executeIndex action. Just check within it for "group by" parameters: public fu

Re: [symfony-users] Symfony newbie MVC best practices question

2010-11-01 Thread Alex Pilon
Doing it how Gareth suggested would work too.. the way he has presented it indicates that whatever parameters for sorting the statuses essentially dictate a "data source" for what you are showing... however depending on requirements you might want to display the data differently, using grouping hea

Re: [symfony-users] Symfony newbie MVC best practices question

2010-11-01 Thread Gareth McCumskey
I can tell you now, your end users don't give two hoots HOW you do it, as long as it works. The HOW is really for yourself and other developers. Best practices are not only techniques to make end users lives easier (and to be honest most best practices have little impact on the end user) but are th

Re: [symfony-users] Symfony newbie MVC best practices question

2010-11-01 Thread Stan McFarland
All, this was great help. Since this was my first Symfony project, I really wanted to try and learn some good habits. Thanks very much. -stan On Mon, Nov 1, 2010 at 5:07 PM, Gareth McCumskey wrote: > I can tell you now, your end users don't give two hoots HOW you do it, as > long as it wor

[symfony-users] Package template/layout as a plugin to re-use across sites?

2010-11-01 Thread John Kary
Our University is using symfony 1.x for many different internal applications, and we want to easily brand them with our University's web template. I figured creating this inside a plugin would be best, so we could easily update the plugin when we tweak the template design instead of copying around

Re: [symfony-users] Re: Textarea onclick event?

2010-11-01 Thread Eno
On Mon, 1 Nov 2010, Parijat Kalia wrote: > Doesn't really answer my question. I have used several javascripts in the > format : > > array('onclick'=>'javascript:alert("yo")')...the alert is just a filler > function for now, there are offcourse different javascript functions. Every > other input t

Re: [symfony-users] Re: Textarea onclick event?

2010-11-01 Thread Parijat Kalia
Yes smart ass, I am 2 lazy about it On Mon, Nov 1, 2010 at 7:43 PM, Eno wrote: > On Mon, 1 Nov 2010, Parijat Kalia wrote: > > > Doesn't really answer my question. I have used several javascripts in the > > format : > > > > array('onclick'=>'javascript:alert("yo")')...the alert is just a fil

Re: [symfony-users] Re: Textarea onclick event?

2010-11-01 Thread Eno
On Mon, 1 Nov 2010, Parijat Kalia wrote: > Yes smart ass, > > I am 2 lazy about it Its considered poor netiquette to post questions on a mailing list without doing some BASIC research. Do your homework before posting needlessly. -- -- If you want to report a vulnerability issue on sym

Re: [symfony-users] Re: Textarea onclick event?

2010-11-01 Thread Gareth McCumskey
And not exactly a great way to endear people to you calling them smart ass. On Tue, Nov 2, 2010 at 4:50 AM, Parijat Kalia wrote: > Yes smart ass, > > I am 2 lazy about it > > > On Mon, Nov 1, 2010 at 7:43 PM, Eno wrote: > >> On Mon, 1 Nov 2010, Parijat Kalia wrote: >> >> > Doesn't really ans