[symfony-users] Re: symfony forms

2009-08-11 Thread asim nizam
On Tue, Aug 11, 2009 at 3:10 PM, shakir33 ezziani.cha...@gmail.com wrote:


 Hi everybody,

 i'm using symfony 1.2, and i have a problem with getting what the
 users wrote in the labels

 i try using
 $params = array(
'name'= $request-getParameter('nom'),
'email'   = $request-getParameter('mail'),
'message' = $request-getParameter('msg'),
  );

echo $request-getParameter('name');

 but i don't get the value of nom, i don't know what is the problem
 i have to get all the values of labels, and send it in mail
 it's very urgent so please somebady have a idea ??


  you should use this syntax in your lib/forms


$this-widgetSchema-setLabels(array(
   'name'= 'Name',
'email' = 'Email',
'message' = 'Message',
));

--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



[symfony-users] Re: symfony forms

2009-08-11 Thread rooster (Russ)

I think Asim has misunderstood...

You are trying to get the values posted with the form right?

In the form class you can use $this-getValues() or $this-getValue
(name) for example.

If you are (for some reason) not using the form class to process the
results, and you are trying to access the values in your action, then
you probably need to access the array of values that are posted with
the form.

$values = $this-getParameter(formName);
$name = $values[nom];

If you are not sure what the name of the array is that is sent back,
check this:

var_dump($this-getParameterHolder()-getAll());

That will show you what was posted.

On Aug 11, 11:10 am, shakir33 ezziani.cha...@gmail.com wrote:
 Hi everybody,

 i'm using symfony 1.2, and i have a problem with getting what the
 users wrote in the labels

 i try using
 $params = array(
     'name'    = $request-getParameter('nom'),
     'email'   = $request-getParameter('mail'),
     'message' = $request-getParameter('msg'),
   );

         echo $request-getParameter('name');

 but i don't get the value of nom, i don't know what is the problem
 i have to get all the values of labels, and send it in mail
 it's very urgent so please somebady have a idea ??
--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



[symfony-users] Re: Date widget without days?

2009-08-11 Thread François CONSTANT

Hi Daniel,

U can change the format of the date in the dateWidget.

http://www.symfony-project.org/api/1_2/sfWidgetFormDate

On 10 août, 19:02, Richtermeister nex...@gmail.com wrote:
 Hi all,
 is there a date widget without days somewhere? I'm looking to use this
 for the expiration date of a credit card..

 Thanks,
 Daniel
--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



[symfony-users] Re: symfony forms

2009-08-11 Thread shakir33

Thanks a lot amigo, it's work with
 $values = $this-getParameter(formName);
 $name = $values[nom];







On 11 août, 10:28, rooster (Russ) russmon...@gmail.com wrote:
 I think Asim has misunderstood...

 You are trying to get the values posted with the form right?

 In the form class you can use $this-getValues() or $this-getValue
 (name) for example.

 If you are (for some reason) not using the form class to process the
 results, and you are trying to access the values in your action, then
 you probably need to access the array of values that are posted with
 the form.

 $values = $this-getParameter(formName);
 $name = $values[nom];

 If you are not sure what the name of the array is that is sent back,
 check this:

 var_dump($this-getParameterHolder()-getAll());

 That will show you what was posted.

 On Aug 11, 11:10 am, shakir33 ezziani.cha...@gmail.com wrote:

  Hi everybody,

  i'm using symfony 1.2, and i have a problem with getting what the
  users wrote in the labels

  i try using
  $params = array(
      'name'    = $request-getParameter('nom'),
      'email'   = $request-getParameter('mail'),
      'message' = $request-getParameter('msg'),
    );

          echo $request-getParameter('name');

  but i don't get the value of nom, i don't know what is the problem
  i have to get all the values of labels, and send it in mail
  it's very urgent so please somebady have a idea ??
--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



[symfony-users] Re: Problem in downloading a file via an action...

2009-08-11 Thread juzek

//content-disposition, attachement// sets only filename under which
the file will be saved from the browser.
it doesn't send the file to the browser , in  fact.

Try using

$this-renderText('sample text from the file')

after setting the headers.

that text will be send as a file to the browser.



Sumedh napisał(a):
 One more thing to add...

 We are trying this through an AJAX action...

 could that be a problem?

 On Aug 10, 4:13 pm, Sumedh sumedh.inam...@gmail.com wrote:
  Hi Friends,
 
  We are trying to download a file in Symfony 1.0 action...
 
  But it just returns the content as text in the HTTP response and the
  file-save dialog of the browser doesn't appear at all... :(
 
  Here is the snippet from action. It tries to send a couple of words as
  a PDF file -
 
  $filename=ravi.pdf;
 
  $this-getResponse()-setHttpHeader('Pragma', 'public');
 
  $this-getResponse()-setHttpHeader(Content-Description,File
  Transfer);
 
  $this-getResponse()-setContentType('application/pdf',TRUE);
 
  $this-getResponse()-setHttpHeader('content-transfer-encoding',
  'binary', TRUE);
 
  $this-getResponse()-setHttpHeader(Content-Disposition,attachment;
  filename=\.$filename.\, TRUE);
 
  $this-getResponse()-sendHttpHeaders();
 
  $this-getResponse()-setContent(sample content);
 
  return sfView::NONE;
 
  What's the issue with the code?
 
  Thanks a lot for reading... :)

--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



[symfony-users] XLS export and Charset (symfony 1.1)

2009-08-11 Thread François CONSTANT

Hi,

I use the charset UTF8 general ci in my database to deal with French
accents. I did an export in xls by using:

action:
[...]
$this-setLayout(false);
$this-getResponse()-setHttpHeader('Content-Disposition', 'inline;
filename=xxx.xls');
$this-getResponse()-setContentType('application/msexcel\;
charset=ISO-8859-1');

template:
table
[...]
?= utf8_decode( $h-getPrenom() ) ?
/table

That works fine, but I want to use UTF-8 directly. I first tried to
set the charset to UTF-8 and to remove utf8_decode(). In that case,
accents are not correct in the xls; I don't get why.

I even tried to use utf8_encode() even though encoding utf8 into utf8
doesn't make any sense ^^).

It has nothing to do with Symfony, but why are there so many different
charsets? One with everything from latin to chinese would be great !

TIA,

François
--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



[symfony-users] project:deploy rsync on windows

2009-08-11 Thread vinnie

I'm working my way through the jobeet tutorial and so far so good. but
I am having problems with project:deploy

It say it uses SSH and rsync but I can't find any documentation (on
the web) on exactly what these are and HOW to install them on a
windows machine.
It seems that everyone uses linux and assumes we all know how to do
it. :(

Any links or step-by-step instructions on the download/install/config
of ssh and rsync would be helpful.

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 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
-~--~~~~--~~--~--~---



[symfony-users] Re: project:deploy rsync on windows

2009-08-11 Thread Eno

On Tue, 11 Aug 2009, vinnie wrote:

 It say it uses SSH and rsync but I can't find any documentation (on
 the web) on exactly what these are and HOW to install them on a
 windows machine.

This is what makes Windows a poor choice for web developers - lack of many 
great tools. ssh and rsync are command-line tools for connecting to 
servers and shncing files. You will need to find Windoze versions of these 
tools or use something else to deploy files. Maybe look at the 
http://unxutils.sourceforge.net/ or the Cygwin (cygwin.com) tools.

 It seems that everyone uses linux

Its no accident that a lot of devlopers and admins use Macs :-)

 and assumes we all know how to do
 it. :(

And Web developers should! :-)



-- 



--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



[symfony-users] Re: project:deploy rsync on windows

2009-08-11 Thread Owen Jeremiah
IIRC, the SSH and Rsync part is used to access your server that is not on your 
development machine.

If you use 1 machine for development server (i.e. you're not running your 
development server in a separate machine) you don't have to bother with SSH and 
rsync now.

OJ

Sent from my BlackBerry® smartphone from Sinyal Bagus XL, Nyambung Teruuusss...!

-Original Message-
From: vinnie mille...@hotmail.com

Date: Tue, 11 Aug 2009 06:03:11 
To: symfony userssymfony-users@googlegroups.com
Subject: [symfony-users] project:deploy  rsync on windows



I'm working my way through the jobeet tutorial and so far so good. but
I am having problems with project:deploy

It say it uses SSH and rsync but I can't find any documentation (on
the web) on exactly what these are and HOW to install them on a
windows machine.
It seems that everyone uses linux and assumes we all know how to do
it. :(

Any links or step-by-step instructions on the download/install/config
of ssh and rsync would be helpful.

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 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
-~--~~~~--~~--~--~---



[symfony-users] Re: project:deploy rsync on windows

2009-08-11 Thread vinnie

We use windows machines exclusively, and have been PHPing for the past
10 years.
Syncing between servers is very easy which windows shares and no extra
software.

Never had to use a MVC framework before and symfony has been chosen,
would like to use the builtin :deploy but it sound like a lot of
messing around to get that part to work, so will problem stick with
out custom sync program I wrote to keep it simple.



On Aug 11, 2:15 pm, Eno symb...@gmail.com wrote:
 On Tue, 11 Aug 2009, vinnie wrote:
  It say it uses SSH and rsync but I can't find any documentation (on
  the web) on exactly what these are and HOW to install them on a
  windows machine.

 This is what makes Windows a poor choice for web developers - lack of many
 great tools. ssh and rsync are command-line tools for connecting to
 servers and shncing files. You will need to find Windoze versions of these
 tools or use something else to deploy files. Maybe look at 
 thehttp://unxutils.sourceforge.net/or the Cygwin (cygwin.com) tools.

  It seems that everyone uses linux

 Its no accident that a lot of devlopers and admins use Macs :-)

  and assumes we all know how to do
  it. :(

 And Web developers should! :-)

 --
--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



[symfony-users] Re: project:deploy rsync on windows

2009-08-11 Thread Tom Haskins-Vaughan

 messing around to get that part to work, so will problem stick with
 out custom sync program I wrote to keep it simple.

If it ain't broke, don't fix it ;)

 
 
 
 On Aug 11, 2:15 pm, Eno symb...@gmail.com wrote:
 On Tue, 11 Aug 2009, vinnie wrote:
 It say it uses SSH and rsync but I can't find any documentation (on
 the web) on exactly what these are and HOW to install them on a
 windows machine.
 This is what makes Windows a poor choice for web developers - lack of many
 great tools. ssh and rsync are command-line tools for connecting to
 servers and shncing files. You will need to find Windoze versions of these
 tools or use something else to deploy files. Maybe look at 
 thehttp://unxutils.sourceforge.net/or the Cygwin (cygwin.com) tools.

 It seems that everyone uses linux
 Its no accident that a lot of devlopers and admins use Macs :-)

 and assumes we all know how to do
 it. :(
 And Web developers should! :-)

 --
  

--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



[symfony-users] Why can't the Functioncache handle lifetime?

2009-08-11 Thread hwiens

Why can't the Functioncache handle lifetime? It would be very easy to
implement. I would suggest the lifetime as a third parameter to the
call() method of sfFunctionCache.
Since the Backendcache-System has to extend the sfCache-Class, the set
() method of the Backendcache-System must be able to handle the
lifetime as the 3rd parameter too.

Here's my suggestion for the call() method of
sfFunctionCache.class.php:

  public function call($callable, $arguments = array(), $lifetime =
null)
  {
$lifetime = is_null($lifetime) ? $this-cache-getOption
('lifetime') : $lifetime;

// Generate a cache id
$key = md5(serialize($callable).serialize($arguments));

$serialized = $this-cache-get($key);
if ($serialized !== null)
{
  $data = unserialize($serialized);
}
else
{
  $data = array();

  if (!is_callable($callable))
  {
throw new sfException('The first argument to call() must be a
valid callable.');
  }

  ob_start();
  ob_implicit_flush(false);

  try
  {
$data['result'] = call_user_func_array($callable, $arguments);
  }
  catch (Exception $e)
  {
ob_end_clean();
throw $e;
  }

  $data['output'] = ob_get_clean();

  $this-cache-set($key, serialize($data), $lifetime);
}

echo $data['output'];

return $data['result'];
  }

--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



[symfony-users] How to implement with_show option on an admin generator?

2009-08-11 Thread J_Wesker

Hi!
I'm trying to implement the with_show feature on an admin module, but
it appears that it just doesn't work 'out of the box' yet.
I noticed that when you set the with_show parameter to true, and you
render the module on the web browser, on the cache/backend/[env]/
modules/auto[module]/templates directory you can see a template named
showSuccess.php.
I'm using symfony-1.2.7 and this is what I have done:

1) I created my own show action for the module:

class expenseActions extends autoExpenseActions
{
  public function executeListShow(sfWebRequest $request)
  {
$this-tnl_expense = TnlExpensePeer::retrieveByPk($request-
getParameter('id'));
$this-forward404Unless($this-tnl_expense);
  }
}

2) Changed the generator.yml file to add my show object_action:

generator:
  class: sfPropelGenerator
  param:
model_class:TnlExpense
theme: admin
non_verbose_templates: false
with_show:true
...

config:
  ...
  list:
object_actions:
  show:  ~
[/CODE]

3) Created the ListShowSuccess.php template for rendering the action

This is the way I added the show feature, but it's not at all as
customizable as using the full power of a generator, and I know that
this will be a temp solution.

Has someone accomplished to add the with_show feature into their
generator successfully?

--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



[symfony-users] Autocompletition with Doctrine?

2009-08-11 Thread jaime

Have someone did autocompletition with Doctrine? Specially in the
choices autogenerated in the forms.

I only saw a tutorial for Propel who uses
sfWidgetFormPropelJQueryAutocompleter of JQuery.

I know that it's possible to use the sfWidgetFormJQueryAutocompleter
with Doctrine.

Have someone use it or know a tutorial

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 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
-~--~~~~--~~--~--~---



[symfony-users] Re: Date widget without days?

2009-08-11 Thread Richtermeister

Hi François,

thanks for your response. I've actually been looking at that widget,
and I found that what you suggest actually works, so thanks again. Now
I'm working on making the validator understand that it doesn't get a
day to validate.. but that should work out just fine.

Thanks again, and have a great day.
Daniel



On Aug 11, 3:09 am, François CONSTANT francois.const...@gmail.com
wrote:
 Hi Daniel,

 U can change the format of the date in the dateWidget.

 http://www.symfony-project.org/api/1_2/sfWidgetFormDate

 On 10 août, 19:02, Richtermeister nex...@gmail.com wrote:

  Hi all,
  is there a date widget without days somewhere? I'm looking to use this
  for the expiration date of a credit card..

  Thanks,
  Daniel
--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



[symfony-users] R: Doctrine Admin Generator: javascript message localization

2009-08-11 Thread silvio.cimino


any suggestion?


-Messaggio originale-
Hi,
I'm using the i18n support in some modules based on the doctrine admin
generator. I'm configuring some messages, but I can't find how to have
localized javascript messages.
When I click on the delete link in the list, a message box ask me for
confirmation. But I need to translate the message Are you sure? with the
i18n support in the current user language. How can I do this?

Besides, are available some complete catalogs with standard symfony
messages already translated? For example a messages.xml file already
configured for some languages? Has the Symfony community a common
repository with resources like this?

Thank you in advance.


--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



[symfony-users] log rotate task 1.2 - potential bug

2009-08-11 Thread jason

I found this interesting:
http://trac.symfony-project.org/browser/branches/1.2/lib/task/log/sfLogRotateTask.class.php#L67

It seems when this task is calling rotate it is overriding the time
checks by setting $override to true.

Correct me if I'm wrong but doesn't it seem like that would break the
date logic in place and forces a log rotation no matter what the date
is?

Thanks,
Jason

--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



[symfony-users] Re: project:deploy rsync on windows

2009-08-11 Thread Eno

On Tue, 11 Aug 2009, vinnie wrote:

 We use windows machines exclusively, and have been PHPing for the past
 10 years.

I switched away years ago... the grass is definately greener in open 
source land.

 Syncing between servers is very easy which windows shares and no extra
 software.

Sure, if you're copying just files its easy. But rsync is a 
smarter protocol and is very efficient - certainly more efficient that 
simply copying files to a shared drive.

http://en.wikipedia.org/wiki/Rsync

 Never had to use a MVC framework before

Welcome to the 21st century :-



-- 



--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



[symfony-users] pkMedia apikey

2009-08-11 Thread Sid Bachtiar

Hi,

I'm having difficulty understanding how to set the apikey

I can upload image and I can browse the images, and I can select an
image, but after I selected the image, it won't appear on the
pkContextCMS page. My suspicion is that the apikey prevents the image
from being used.

This is what my app.yml look like:

all:

  pkimageconverter:
path: /usr/share/netbpm

  pkContextCMS:
slot_types:
  pkContextCMSImage: Image
  pkContextCMSSlideshow: Slideshow
  pkContextCMSVideo: Video

# Required
media_apikey: abc

# You can do it this way...
title_prefix: 'My Project - '

routes_register: false

  pkMedia:
apikeys:
  * abc

I log in as admin and both pkContextCMS and pkMedia in one project and
one website.

Regards,

Sid

--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



[symfony-users] Symfony render admin list form

2009-08-11 Thread giugio ferrari

Hy.
I have two table with a foreign key , table1 :Articles
table2 :Comments.
For each article i can have many comments.
I have created a form with the admin generator and a custom link in
the articles form for display the related comments.
Now if the user click on the related link in the articles form row i
do a query for get all the related comments and put it in a var
:
public function executeShow($idParent)
{
   $this-comments = BlogCommentPeer::doSelectJoinComment($idParent);
   //$this-redirect('/comment/show/'.$request-getParameter('id'));*/
}

where $idParent is the article id value.
after i created the action success file .php(showSuccess.php) in
templates folder.
Now i would render the admin list form populated only with the
comments that i have find.
in the showSuccess.php
The problem is that i don't know how find the admin list form and how
populate it with all the related comments in $this-comments.

--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



[symfony-users] Best way to learn Symfony

2009-08-11 Thread Kevin

Hello Symfonians,

I am new to symfony and a little intimidated by the breath and scope
of symfony.  I like what I see, but I feel learning to use symfony
will be a long process.

To quicken the learning process and decrease the number of dead-ends I
pursue, could you please suggest the best way to learn Symfony?

I'm currently reading The Definitive Guide to Symfony and going
through the Jobeet tutorial.  What do you recommend next?

Thanks, Kevin

--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



[symfony-users] Re: Best way to learn Symfony

2009-08-11 Thread Eno

On Tue, 11 Aug 2009, Kevin wrote:

 I'm currently reading The Definitive Guide to Symfony and going
 through the Jobeet tutorial.  What do you recommend next?

Those are probably the best resources. And dont worry if you go back to 
re-read something!

The forums and the mailing list are great. You may also want to check out 
the symfony Cookbook and the wiki too. I also find reading the API docs 
and looking at the symfony core code can give you valuable insights and 
pointers.


-- 



--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



[symfony-users] Re: Autocompletition with Doctrine?

2009-08-11 Thread Eno

On Tue, 11 Aug 2009, jaime wrote:

 Have someone did autocompletition with Doctrine? Specially in the
 choices autogenerated in the forms.
 
 I only saw a tutorial for Propel who uses
 sfWidgetFormPropelJQueryAutocompleter of JQuery.
 
 I know that it's possible to use the sfWidgetFormJQueryAutocompleter
 with Doctrine.

Isn't it just a case of having the widget call your code to get the 
choices? I didn't see anything in the widget that suggest it cannot be 
used with Doctrine.



-- 



--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---



[symfony-users] sfWidgetFormDateTime help needed

2009-08-11 Thread sunny

i am using sfWidgetFormDateTime can any one tell me how to insert it
automatically current date time in database without showing the widget
on front
--~--~-~--~~~---~--~~
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 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
-~--~~~~--~~--~--~---