|
|
|
|
|
|
| Re: sfCommandLine : new plugin [message #40659 is a reply to message #40190 ] |
Fri, 30 November 2007 11:22   |
sorac Messages: 17 Registered: September 2007 |
Junior Member |
|
|
Hi,
I perfectly understand the logic behind sfUtilitiesPlugin and it's why I want to contribut.
I would be happy to maintain my code directly in the sfUtilitiesPlugin repository, but I don't have any write access to the SVN.
For the reference, just add this :
ReCaptCha
I saw that you added the sfAdvancedLogger to the package. Many people said me that the documentation isn't clear and even didn't understand all the functionalities behind the plugin. So, if you have any questions or advises for a new documentation, you're welcome !
Thanks
[Updated on: Fri, 30 November 2007 11:23]
|
|
|
|
| Re: sfCommandLine : new plugin [message #40683 is a reply to message #40190 ] |
Fri, 30 November 2007 18:10   |
sorac Messages: 17 Registered: September 2007 |
Junior Member |
|
|
Hi,
I release a new version !
First, I backported some change from kupokomapa.
Then, I added the hability to run module/action from command line.
Check the Wiki's plugin page from more informations and exemples.
Enjoy !
[Updated on: Fri, 30 November 2007 18:11]
|
|
|
|
|
|
| Re: array as argument? [message #53432 is a reply to message #53370 ] |
Wed, 04 June 2008 12:00   |
|
Hi, I have implemented this by means of passing a string of comma-separated values. Then I do simply split it by comma.
As to you suggestion, I think it's possible to capture not the last value of a parameter, if one parameter used more than once, but add all the consequitive values of a same parameter to an array.
But, as far as I know, the latter feature is not implemented yet.
http://rbcmp.blogspot.com
http://robocomp.livejournal.com
http://robocomp.moikrug.ru
|
|
|
|
|
|
| Re: sfCommandLine : new plugin [message #55616 is a reply to message #55580 ] |
Mon, 07 July 2008 15:27   |
|
Hi!
What do you mean by the following:
| Quote: | By the way can i login via the action that my batch have to call?
|
I can guess, what you want to fix. AS far as I can see, you would like to let your batch run the action, and make this action insecure, so that anyone from the web could run it, right?
If it's so, when, I suppose, you simple need to set is_secure for the action your batch is supposed to run to off.
To do so, modify the security.yml for your module, and put their:
Your module configuration file resides in module_dir/config/security.yml
If you want to disable the ability to run this action from the web, then you need to read about is_internal in a Module Configuration section
http://www.symfony-project.org/book/1_1/06-Inside-the-Contro ller-Layer#Module%20Configuration
http://rbcmp.blogspot.com
http://robocomp.livejournal.com
http://robocomp.moikrug.ru
|
|
|
|