[symfony-users] Re: sfShoppingCartPlugin updateQuantity

2007-11-27 Thread Jorge Laranjo
Solved. I used the deleteItem and it worked fine.

On 2007/11/27, at 16:34, Jorge Laranjo wrote:

> How can I update a quantity of a item in the sfShoppingCart ?
>
> The $cart->updateQuantity($class, $id, 0) is not implemented?
>
>
> --
> Atentamente,
> Jorge Laranjo
>
> [EMAIL PROTECTED]
> http://jorge.laranjo.eu
>

--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] sfShoppingCartPlugin updateQuantity

2007-11-27 Thread Jorge Laranjo
How can I update a quantity of a item in the sfShoppingCart ?

The $cart->updateQuantity($class, $id, 0) is not implemented?


--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: observe_field to update several fields

2007-11-22 Thread Jorge Laranjo
I just solved this issue by using the observe_form() helper
http://www.symfony-project.org/forum/index.php/m/6176/


On 2007/11/22, at 19:34, Jorge Laranjo wrote:

> I've got 3 fields select_tag
> What I want is to be able to update using AJAX one fields when this  
> values change (of the 3 other fields). Basically I want to sum all  
> the 3 fields and update the 4th field.
>
> My AJAX request is like this
>
> 'update'   => 'priceM',
>   'url'  => 'produto/price',
>   'with' => "'qtd=' + value",
>   ))?>
>
> So, how to update several fields at once and how to pass several  
> values to the action, at once? Thanks.
>
> --
> Atentamente,
> Jorge Laranjo
>
> [EMAIL PROTECTED]
> http://jorge.laranjo.eu
>

--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] observe_field to update several fields

2007-11-22 Thread Jorge Laranjo
I've got 3 fields select_tag
What I want is to be able to update using AJAX one fields when this  
values change (of the 3 other fields). Basically I want to sum all  
the 3 fields and update the 4th field.

My AJAX request is like this

   'priceM',
   'url'  => 'produto/price',
   'with' => "'qtd=' + value",
   ))?>

So, how to update several fields at once and how to pass several  
values to the action, at once? Thanks.

--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: if_javascript and link_to_remote

2007-11-05 Thread Jorge Laranjo
What site?

On 2007/11/05, at 10:32, CaffeineInc wrote:

> haha regarding that unobtrusive javascript site, I don't trust any
> website that uses microsoft word for creating a header banner :-P

--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: if_javascript and link_to_remote

2007-11-04 Thread Jorge Laranjo
Sure you can have it that way, but my suggestion is:
Why not have  a  link_to_remote (or any other helper) that can be  
accessibile?
That way symfony helps the web making it easier to make AJAX more  
accessible, don't you think?

On 2007/11/04, at 08:23, Nicolas Perriault wrote:

> 2007/11/4, Jorge Laranjo <[EMAIL PROTECTED]>:
>
>> link ?
>>
>> The href="" is the part that give us the accessible way even if  
>> the browser
>> doesn't know javascript.
>
> A nice way to handle this is to make normal link and manage them with
> javascript for Ajax request thre normal way. Imagine a link and a div
> you want to fill with the result of a click on the link:
>
> Click me
> 
>
> With a library like jQuery you can easily do something like:
>
> $('a.ajax-link').click(function(){
>   $.get($(this).attr(href), function(response){
> $('#ajax-result').html(response).show();
>   });
>   return false;
> });
>
> Then you have to deal with your action which'll have to be decorated
> or not if used the standard http wey or the ajax one. You're luck,
> Symfony does this job for you automagically, so the response of your
> action won't be decorated if your in an xmlHttpRequest context :)
>
> You can also have a look at the sfUJSPlugin which does quite the same
> thing descibed as above.
>
> ++
>
> -- 
> Nicolas Perriaulthttp://www.clever-age.com
> Clever Age - conseil en architecture technique
> GSM: +33 6 60 92 08 67  Tél: +33 1 53 34 66 10
>
> >

--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: if_javascript and link_to_remote

2007-11-03 Thread Jorge Laranjo
Well, this issue can be solved by using the if_javascript() but I  
think that is not a perfect solution since that way I need to write a  
few more lines of code.
What I seek is a way to use link_to_remote and be able to provide 2  
URL - one is the AJAX one and the other one is the accessible one,  
that will go into the href insted of the '#' that is in there, now.

So, any sugestions? A new helper, maybe...

On 2007/11/03, at 23:42, Jorge Laranjo wrote:

> Now I've got another issue
>
> Since blind people can be using a Javascript capable browser but  
> since AJAX is not accessible, how can I use the link_to_remote  
> function to generate a URL like this
>
> link ?
>
> The href="" is the part that give us the accessible way even if the  
> browser doesn't know javascript.
>
> On 2007/07/11, at 15:47, Francois Zaninotto wrote:
>
>> Jorge,
>>
>> If you want to deal with people not using Javascript, there's only  
>> one good solution: Unobtrusive Javascript (UJS).
>>
>> http://onlinetools.org/articles/unobtrusivejavascript/index.html
>>
>> There's a symfony plugin facilitating UJS with jQuery.
>>
>> http://trac.symfony-project.com/trac/wiki/sfUJSPlugin
>>
>> Hope that helps,
>>
>> François
>>
>> De : symfony-users@googlegroups.com [mailto:symfony- 
>> [EMAIL PROTECTED] De la part de Jorge Laranjo
>> Envoyé : mercredi 11 juillet 2007 16:43
>> À : symfony-users@googlegroups.com
>> Objet : [symfony-users] if_javascript and link_to_remote
>>
>> I can use the if_javascript() with no problems in my projects my  
>> not if_javascript() + link_to_remote at the same time like this:
>>
>> 
>> 
>> 
>>
>> 
>> 
>> 
>>
>> That's a real problem since link_to_remote won't work for people  
>> without javascript. Any solutions?
>>
>>
>> --
>> Atentamente,
>> Jorge Laranjo
>>
>> [EMAIL PROTECTED]
>> http://jorge.laranjo.eu
>> -
>> Esta mensagem foi assinada digitalmente
>> -
>>
>>
>> >>
>
> --
> Atentamente,
> Jorge Laranjo
>
> [EMAIL PROTECTED]
> http://jorge.laranjo.eu
>

--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: if_javascript and link_to_remote

2007-11-03 Thread Jorge Laranjo
Now I've got another issue

Since blind people can be using a Javascript capable browser but  
since AJAX is not accessible, how can I use the link_to_remote  
function to generate a URL like this

link ?

The href="" is the part that give us the accessible way even if the  
browser doesn't know javascript.

On 2007/07/11, at 15:47, Francois Zaninotto wrote:

> Jorge,
>
> If you want to deal with people not using Javascript, there's only  
> one good solution: Unobtrusive Javascript (UJS).
>
> http://onlinetools.org/articles/unobtrusivejavascript/index.html
>
> There's a symfony plugin facilitating UJS with jQuery.
>
> http://trac.symfony-project.com/trac/wiki/sfUJSPlugin
>
> Hope that helps,
>
> François
>
> De : symfony-users@googlegroups.com [mailto:symfony- 
> [EMAIL PROTECTED] De la part de Jorge Laranjo
> Envoyé : mercredi 11 juillet 2007 16:43
> À : symfony-users@googlegroups.com
> Objet : [symfony-users] if_javascript and link_to_remote
>
> I can use the if_javascript() with no problems in my projects my  
> not if_javascript() + link_to_remote at the same time like this:
>
> 
> 
> 
>
> 
> 
> 
>
> That's a real problem since link_to_remote won't work for people  
> without javascript. Any solutions?
>
>
> --
> Atentamente,
> Jorge Laranjo
>
> [EMAIL PROTECTED]
> http://jorge.laranjo.eu
> -----
> Esta mensagem foi assinada digitalmente
> -
>
>
> >

--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: URL rewriting problem

2007-09-01 Thread Jorge Laranjo
Why not "grab" the aires.aspx?carte=1 in the routing.yml, and process  
that in a new action? That action will process that "string" and do a  
redirect to http://localhost/fr/common/aires/carte/1
Sound simple, doesn't it?

On 2007/08/31, at 11:04, Olivier Revollat wrote:

> Hi !
>
> I have a site powered by symfony (1.0.6) (wich was previously  
> develop with .NET technology)
> I have a flash file (swf) in my site, and their is an http link in  
> the flash file .. but the problem is that I can't recompile the  
> flash with the symfony URL inside (I forgot the source of the  
> flash) ... so in my flash file I have the old (.NET) url :
>
> http://localhost/fr/common/aires/carte/aires.aspx?carte=1
>
> and I want this URL :
>
> http://localhost/fr/common/aires/carte/1
>
> I try to use apache mod_rewrite with the following rule in  
> the .htaccess :
>
>   RewriteCond %{QUERY_STRING} carte=1
>   RewriteRule ^(.*)$ /fr/common/aires/carte/1 [R]
>
> But symfony append the query string (QSA flag see below)  (?carte=1)
> RewriteRule ^(.*)$ index.php [QSA,L]

--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu
-
Accessibility and Usability Consultant
-


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Two versions?

2007-07-18 Thread Jorge Laranjo

Solved!

symfony -V
symfony version 1.0.5

With was a path issue.

On 2007/07/18, at 17:11, Jorge Laranjo wrote:

Ok installed Symfony 1.0.5 but my system still gives me the 1.0.2  
version? This is a mess, isn't it? :)



install ok: channel://pear.symfony-project.com/symfony-1.0.5
$ symfony --version
symfony version 1.0.2


--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu
-
Esta mensagem foi assinada digitalmente
-



--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu
-
Esta mensagem foi assinada digitalmente
-



smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: Problem with pear with symfony plugin-install

2007-07-18 Thread Jorge Laranjo

Here it is my PEAR configuration

Configuration:
==
   __channels
   download_dir/usr/local/temp/download
   temp_dir/usr/local/temp
PEAR executables directory bin_dir /usr/local/bin
PEAR documentation directory   doc_dir /usr/local/lib/php/docs
PHP extension directoryext_dir /usr/lib/php/ 
extensions/no-debug-no

   n-zts-20020429
PEAR directory php_dir /usr/local/lib/php
PEAR Installer cache directory cache_dir   /tmp/pear/cache
PEAR data directorydata_dir/usr/local/lib/php/data
PHP CLI/CGI binary php_bin /usr/bin/php
PEAR test directorytest_dir/usr/local/lib/php/tests
Cache TimeToLive   cache_ttl   3600
Preferred Package Statepreferred_state stable
Unix file mask umask   22
Debug Log Levelverbose 1
HTTP Proxy Server Address  http_proxy  
PEAR servermaster_server   pear.php.net
PEAR password (for password
maintainers)
Signature Handling Program sig_bin /usr/local/bin/gpg
Signature Key Directorysig_keydir  /private/etc/pearkeys
Signature Key Id   sig_keyid   
Package Signature Type sig_typegpg
PEAR username (for username
maintainers)

On 2007/07/18, at 16:41, Jorge Laranjo wrote:


What's wrong with my PEAR?
I've tryed to use this command
pear channel-discover pear.symfony-project.com

and I got this error

Command 'pear.symfony-project.com' is not valid, try 'pear help'

Pear version 1.6.1
PHP 5.2.3
MAC OS X 10.4.10

On 2007/06/04, at 23:53, Davinder Mahal wrote:


Hi,

You have to set the path to your PEAR.php within your php.ini file  
of your php install.


Hope that helps.


On Jun 4, 2007, at 3:43 PM, Arnaud wrote:



Hello,

I've got an error when i want to install a plug-in :
this problem with pear is only when i make this command.

$ symfony plugin-install http://plugins.symfony-project.com/ 
sfPrototypeWindowPlugin


Warning: require_once(PEAR.php): failed to open stream: No such file
or directory in /Applications/xampp/xamppfiles/lib/php/pear/data/
symfony/tasks/sfPakePlugins.php on line 147

Fatal error: require_once(): Failed opening required
'PEAR.php' (include_path='/Users/arnaudtanguy/Sites/sfprojects/ 
allyno/

lib:/Users/arnaudtanguy/Sites/sfprojects/allyno/apps//lib::/
Applications/xampp/xamppfiles/lib/php/pear/symfony/vendor:.:/
Applications/xampp/xamppfiles/lib/php') in /Applications/xampp/
xamppfiles/lib/php/pear/data/symfony/tasks/sfPakePlugins.php on line
147

How can i solve that ?

Thx.

My symfony version : symfony version 1.0.3
I'm on a Mac OSX 10.4.9





Davinder S. Mahal
Principal / Lead Developer
DSM Cyber Media
http://www.dsmcybermedia.com
{---}
internet & media development
Union City, CA
+011 510-489-4827
[EMAIL PROTECTED]



--~--~-~--~~~---~--~~
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- 
[EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/ 
group/symfony-users?hl=en

-~------~~~~--~~--~--~---



--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu
-
Esta mensagem foi assinada digitalmente
---------



--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu
-
Esta mensagem foi assinada digitalmente
-



smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: Problem with pear with symfony plugin-install

2007-07-18 Thread Jorge Laranjo

Found the problem. Solved. It was on PHP 5.2.3

On 2007/07/18, at 16:41, Jorge Laranjo wrote:


What's wrong with my PEAR?
I've tryed to use this command
pear channel-discover pear.symfony-project.com

and I got this error

Command 'pear.symfony-project.com' is not valid, try 'pear help'

Pear version 1.6.1
PHP 5.2.3
MAC OS X 10.4.10

On 2007/06/04, at 23:53, Davinder Mahal wrote:


Hi,

You have to set the path to your PEAR.php within your php.ini file  
of your php install.


Hope that helps.


On Jun 4, 2007, at 3:43 PM, Arnaud wrote:



Hello,

I've got an error when i want to install a plug-in :
this problem with pear is only when i make this command.

$ symfony plugin-install http://plugins.symfony-project.com/ 
sfPrototypeWindowPlugin


Warning: require_once(PEAR.php): failed to open stream: No such file
or directory in /Applications/xampp/xamppfiles/lib/php/pear/data/
symfony/tasks/sfPakePlugins.php on line 147

Fatal error: require_once(): Failed opening required
'PEAR.php' (include_path='/Users/arnaudtanguy/Sites/sfprojects/ 
allyno/

lib:/Users/arnaudtanguy/Sites/sfprojects/allyno/apps//lib::/
Applications/xampp/xamppfiles/lib/php/pear/symfony/vendor:.:/
Applications/xampp/xamppfiles/lib/php') in /Applications/xampp/
xamppfiles/lib/php/pear/data/symfony/tasks/sfPakePlugins.php on line
147

How can i solve that ?

Thx.

My symfony version : symfony version 1.0.3
I'm on a Mac OSX 10.4.9





Davinder S. Mahal
Principal / Lead Developer
DSM Cyber Media
http://www.dsmcybermedia.com
{---}
internet & media development
Union City, CA
+011 510-489-4827
[EMAIL PROTECTED]



--~--~-~--~~~---~--~~
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- 
[EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/ 
group/symfony-users?hl=en

-~------~~~~--~~--~--~---



--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu
-
Esta mensagem foi assinada digitalmente
---------



--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu
-
Esta mensagem foi assinada digitalmente
-



smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: Problem with pear with symfony plugin-install

2007-07-18 Thread Jorge Laranjo

What's wrong with my PEAR?
I've tryed to use this command
pear channel-discover pear.symfony-project.com

and I got this error

Command 'pear.symfony-project.com' is not valid, try 'pear help'

Pear version 1.6.1
PHP 5.2.3
MAC OS X 10.4.10

On 2007/06/04, at 23:53, Davinder Mahal wrote:


Hi,

You have to set the path to your PEAR.php within your php.ini file  
of your php install.


Hope that helps.


On Jun 4, 2007, at 3:43 PM, Arnaud wrote:



Hello,

I've got an error when i want to install a plug-in :
this problem with pear is only when i make this command.

$ symfony plugin-install http://plugins.symfony-project.com/ 
sfPrototypeWindowPlugin


Warning: require_once(PEAR.php): failed to open stream: No such file
or directory in /Applications/xampp/xamppfiles/lib/php/pear/data/
symfony/tasks/sfPakePlugins.php on line 147

Fatal error: require_once(): Failed opening required
'PEAR.php' (include_path='/Users/arnaudtanguy/Sites/sfprojects/ 
allyno/

lib:/Users/arnaudtanguy/Sites/sfprojects/allyno/apps//lib::/
Applications/xampp/xamppfiles/lib/php/pear/symfony/vendor:.:/
Applications/xampp/xamppfiles/lib/php') in /Applications/xampp/
xamppfiles/lib/php/pear/data/symfony/tasks/sfPakePlugins.php on line
147

How can i solve that ?

Thx.

My symfony version : symfony version 1.0.3
I'm on a Mac OSX 10.4.9





Davinder S. Mahal
Principal / Lead Developer
DSM Cyber Media
http://www.dsmcybermedia.com
{---}
internet & media development
Union City, CA
+011 510-489-4827
[EMAIL PROTECTED]



--~--~-~--~~~---~--~~
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- 
[EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/ 
group/symfony-users?hl=en

-~------~~~~--~~--~--~---



--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu
-
Esta mensagem foi assinada digitalmente
-



smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: if_javascript and link_to_remote

2007-07-11 Thread Jorge Laranjo
Well, I and my team have gone for a radical solution: We'll remove  
all the AJAX and then only use AJAX is needed and JQUERY :-)

Thanks.

On 2007/07/11, at 15:47, Francois Zaninotto wrote:


Jorge,

If you want to deal with people not using Javascript, there's only  
one good solution: Unobtrusive Javascript (UJS).


http://onlinetools.org/articles/unobtrusivejavascript/index.html

There's a symfony plugin facilitating UJS with jQuery.

http://trac.symfony-project.com/trac/wiki/sfUJSPlugin

Hope that helps,

François

De : symfony-users@googlegroups.com [mailto:symfony- 
[EMAIL PROTECTED] De la part de Jorge Laranjo

Envoyé : mercredi 11 juillet 2007 16:43
À : symfony-users@googlegroups.com
Objet : [symfony-users] if_javascript and link_to_remote

I can use the if_javascript() with no problems in my projects my  
not if_javascript() + link_to_remote at the same time like this:










That's a real problem since link_to_remote won't work for people  
without javascript. Any solutions?



--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu
-
Esta mensagem foi assinada digitalmente
-


--~--~-~--~~~---~--~~
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- 
[EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/ 
group/symfony-users?hl=en

-~--~~~~--~----~------~--~---



--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu
-
Esta mensagem foi assinada digitalmente
-



smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Meta Title

2007-07-11 Thread Jorge Laranjo
Hi! I've got one title to the “application” and then in some modules  
I want to add something to that title


actionSuccess:
  metas:
title: I want to add this string

What I want is a manner so if I change the “global” title then the  
other ones will fit to this new string, ie:


title on the view.yml of the app
“title of the app”

title on the module A action
“title of the app” + “module A action”

If I change the “app” title to “app title” then the module A action  
should change to “app title” + “module A action”


Can I do this on the YML file? And if I want i18n ? Thanks.

--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu
-
Esta mensagem foi assinada digitalmente
-



smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] if_javascript and link_to_remote

2007-07-11 Thread Jorge Laranjo
I can use the if_javascript() with no problems in my projects my not  
if_javascript() + link_to_remote at the same time like this:










That's a real problem since link_to_remote won't work for people  
without javascript. Any solutions?



--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu
-
Esta mensagem foi assinada digitalmente
-



smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] How to i18n the code done by generator?

2007-07-11 Thread Jorge Laranjo

How to have i18n on the code that was made using the generator?
I want translate this expression, among others: “Your modifications  
have been saved

Your modifications have been saved
”

--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu
-
Esta mensagem foi assinada digitalmente
-



smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: iPhone Stylesheets

2007-07-04 Thread Jorge Laranjo

you're right. Much simpler. Done!
my iPhone is loving this “tricks” :-)

On 2007/07/04, at 20:41, Martin Kreidenweis wrote:



Hi,


my final code is this

  stylesheets:
iphone:
  iphone:
media: "only screen and (max-device-width: 480px)"
main:
  main:
media: all


Why do I need to have this
iphone:
  iphone:

and
main:
  main:

don't know but it works :)


I just did some trial and error myself and now I guess the "right"
solution would be:

  stylesheets:
- main
- iphone: { media: "only screen and (max-device-width: 480px)" }



 Martin

--~--~-~--~~~---~--~~
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- 
[EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/ 
group/symfony-users?hl=en

-~--~~~~--~----~--~--~---



--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu
-
Esta mensagem foi assinada digitalmente
-



smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: iPhone Stylesheets

2007-07-04 Thread Jorge Laranjo

my final code is this

  stylesheets:
iphone:
  iphone:
media: "only screen and (max-device-width: 480px)"
main:
  main:
media: all


Why do I need to have this
iphone:
  iphone:

and
main:
  main:

don't know but it works :)

On 2007/07/04, at 19:39, Martin Kreidenweis wrote:



Hi,


stylesheets:[main, iphone: { media: "only screen and
(max-device-width: 480px)" }]

Nop. It says: YMLString


I suppose Spyc doesn't understand the short syntax when it gets more
complicated, so try:

stylesheets:
  main:
media: all
  iphone:
media: "only screen and (max-device-width: 480px)"

HTH,
 Martin

--~--~-~--~~~---~--~~
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- 
[EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/ 
group/symfony-users?hl=en

-~--~~~~--~----~--~--~---



--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu
-
Esta mensagem foi assinada digitalmente
-



smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: iPhone Stylesheets

2007-07-04 Thread Jorge Laranjo

The solution was this

  stylesheets:
iphone:
  iphone:
media: "only screen and (max-device-width: 480px)"

Works great :)
On 2007/07/04, at 19:39, Martin Kreidenweis wrote:



Hi,


stylesheets:[main, iphone: { media: "only screen and
(max-device-width: 480px)" }]

Nop. It says: YMLString


I suppose Spyc doesn't understand the short syntax when it gets more
complicated, so try:

stylesheets:
  main:
media: all
  iphone:
media: "only screen and (max-device-width: 480px)"

HTH,
 Martin

--~--~-~--~~~---~--~~
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- 
[EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/ 
group/symfony-users?hl=en

-~--~~~~--~~--~--~---



--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu
-
Esta mensagem foi assinada digitalmente
-



smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: iPhone Stylesheets

2007-07-04 Thread Jorge Laranjo

Using that I'm getting



On 2007/07/04, at 19:39, Martin Kreidenweis wrote:



Hi,


stylesheets:[main, iphone: { media: "only screen and
(max-device-width: 480px)" }]

Nop. It says: YMLString


I suppose Spyc doesn't understand the short syntax when it gets more
complicated, so try:

stylesheets:
  main:
media: all
  iphone:
media: "only screen and (max-device-width: 480px)"

HTH,
 Martin

--~--~-~--~~~---~--~~
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- 
[EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/ 
group/symfony-users?hl=en

-~--~~~~--~----~--~--~---



--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu
-
Esta mensagem foi assinada digitalmente
-



smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: iPhone Stylesheets

2007-07-04 Thread Jorge Laranjo

Nop, doesn't work either.

On 2007/07/04, at 19:39, Martin Kreidenweis wrote:



Hi,


stylesheets:[main, iphone: { media: "only screen and
(max-device-width: 480px)" }]

Nop. It says: YMLString


I suppose Spyc doesn't understand the short syntax when it gets more
complicated, so try:

stylesheets:
  main:
media: all
  iphone:
media: "only screen and (max-device-width: 480px)"

HTH,
 Martin

--~--~-~--~~~---~--~~
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- 
[EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/ 
group/symfony-users?hl=en

-~--~~~~--~----~--~--~---



--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu
-
Esta mensagem foi assinada digitalmente
-



smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: iPhone Stylesheets

2007-07-04 Thread Jorge Laranjo

Nop. It says: YMLString
I manage to put it directly on the “template” but I really wanted to  
put it on the “view.yml”

On 2007/07/04, at 14:24, Nicolas Perriault wrote:



Jorge Laranjo wrote:


stylesheets:[main, iphone: { media: only screen and
(max-device-width: 480px) }]


Maybe :

stylesheets:[main, iphone: { media: "only screen and
(max-device-width: 480px)" }]

Hope it helps.

++

--
Nicolas Perriaulthttp://www.clever-age.com
Clever Age - conseil en architecture technique
GSM: +33 6 60 92 08 67  Tél: +33 1 53 34 66 10

--~--~-~--~~~---~--~~
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- 
[EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/ 
group/symfony-users?hl=en

-~--~~~~--~~--~--~---



--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu
-
Esta mensagem foi assinada digitalmente
-



smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: iPhone Stylesheets

2007-07-04 Thread Jorge Laranjo

Well, a solution (until I can manage to get it on view.yml) is this

 "only screen and  
(max-device-width: 480px)")); ?>


On 2007/07/04, at 12:06, Jorge Laranjo wrote:

I'm developing some webapps for the iPhone so I need to put the  
stylesheets on it.


Well, not a problem. But the “media” must be 'only screen and (max- 
device-width: 480px)'


So, how to put this on the view.yml since I've got a ':' inside the  
string “media” ?


stylesheets:[main, iphone: { media: only screen and (max- 
device-width: 480px) }]


--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu
-
Esta mensagem foi assinada digitalmente
---------



--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu
-
Esta mensagem foi assinada digitalmente
-



smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] iPhone Stylesheets

2007-07-04 Thread Jorge Laranjo
I'm developing some webapps for the iPhone so I need to put the  
stylesheets on it.


Well, not a problem. But the “media” must be 'only screen and (max- 
device-width: 480px)'


So, how to put this on the view.yml since I've got a ':' inside the  
string “media” ?


stylesheets:[main, iphone: { media: only screen and (max-device- 
width: 480px) }]


--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu
-
Esta mensagem foi assinada digitalmente
-



smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: Process incoming emails using Symfony

2007-06-05 Thread Jorge Laranjo

Can't you use a pop3 or imap account for that? That way you can check
those inbox and parse all the email you want to. I use the Zend
framework for that. Just use the bridge from Symfony to the Zend
framework.

Jorge Laranjo
http://jorge.laranjo.eu

On 6/5/07, RobRoyAus <[EMAIL PROTECTED]> wrote:
>
> Does anyone here have experience processing incoming emails using
> Symfony?
>
> I want to parse all incoming emails and for validated emails load the
> attachments into a new database record - in a similar fashion to the
> Flickr "Upload by Email" service (http://www.flickr.com/account/
> uploadbyemail/ - you may have to be a member to read this)
>
> I have found some articles with instructions for various SMTP servers
> to add a redirect file to a php script, but need a pointer to info
> about how I redirect to a Symfony module. Or am I missing something
> and is this not possible?
>
> Secondly, assuming I can point the email at a Symfony module and
> action, can anyone recommend a good PHP module for working with the
> email and extracting the attachment(s)?
>
> Sorry if this is a bit general - I'm happy to do further research but
> if someone's already joined the dots it would be good to have a head
> start.
>
> Thanks
> Rob
>
>
> >
>


-- 
--
Atentamente,
Jorge Laranjo
[EMAIL PROTECTED]

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: graceful session timeout messages

2007-05-31 Thread Jorge Laranjo
How about putting a 'countdown' that restarts every time the user has  
some activity?
That way your user will know that he needs to do something or else it  
will be logged out of the system :)


On 2007/05/31, at 12:53, Brian Hoke wrote:

Users whose session times out are appropriately redirected (via  
application-wide login_module/login_action settings) back to the  
login page. How can I add a message "you're session has been timed  
out due to X seconds of inactivity", to distinguish this from users  
who visit the login page for the first time? Thanks,


~Brian

--
Brian P. Hoke
Bentley & Hoke LLC
315-446-2300
www.bentleyhoke.com
--~--~-~--~~~---~--~~
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- 
[EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/ 
group/symfony-users?hl=en

-~--~~~~--~~--~--~---



--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu




smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: I18N

2007-05-21 Thread Jorge Laranjo

Solved, I think...
Just use $response->setHttpHeader('Content-Language', 'en');

Em 2007/05/21, às 18:48, Jorge Laranjo escreveu:

Since I've got a project that has 6 diferente languages how to tell  
view.yml to put diferent   content in this tag (better said, how to alter this tag every  
time the user switchs the language (since the application is the  
same).


Just to help search engines :-)

--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu




--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu




smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] I18N

2007-05-21 Thread Jorge Laranjo
Since I've got a project that has 6 diferente languages how to tell  
view.yml to put diferent
content in this tag (better said, how to alter this tag every time  
the user switchs the language (since the application is the same).


Just to help search engines :-)

--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu




smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: sfSwfChartPlugin problem

2007-05-19 Thread Jorge Laranjo

I just can't find the correct path...

Em 2007/05/20, às 01:51, Dustin Whittle escreveu:


Jorge,

Yes, the problem is the path is incorrect.

- Dustin


On 5/18/07 5:37 PM, "Jorge Laranjo" <[EMAIL PROTECTED]> wrote:

I was trying sfSwfChartPlugin for a application but I keep getting  
“Loading timed out (-1)”
I believe that is a matter or $paths but where is the problem  
after all?



--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu







--~--~-~--~~~---~--~~
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- 
[EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/ 
group/symfony-users?hl=en

-~--~~~~--~~--~--~---



--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu




smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] sfSwfChartPlugin problem

2007-05-18 Thread Jorge Laranjo
I was trying sfSwfChartPlugin for a application but I keep getting  
“Loading timed out (-1)”

I believe that is a matter or $paths but where is the problem after all?

--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu




smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: Pop3 and SMTP

2007-05-18 Thread Jorge Laranjo

Solved. I'm using Zend for this. Works fine. Thanks.

Em 2007/05/18, às 13:35, Tristan Rivoallan escreveu:



On 5/18/07, Jorge Laranjo <[EMAIL PROTECTED]> wrote:
I'm using sfSwiftPlugin for sending e-mails on Symfony but... how  
about to

retrive them using POP3? Is it possible?
If not with this plugin, how to implement EzComponents or other  
solution?



swift is only for sending mail. The best way to implement this is
indeed to use the ezcomponents mail lib :
http://ez.no/doc/components/view/latest/(file)/ 
introduction_Mail.html#retrieving-mail-using-pop3


(along with symfony's ez bridge).

++
tristan

--~--~-~--~~~---~--~~
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- 
[EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/ 
group/symfony-users?hl=en

-~--~~~~--~~--~--~---



--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu




smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Zend Framework problem

2007-05-18 Thread Jorge Laranjo
I just download the Zend FrameWork (Beta 0.9.3) but where in hell is  
Zend.php that sfZendFrameworkBridge.class.php requires? I can't find  
it on the library/ folder.


--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu




smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: Pop3 and SMTP

2007-05-18 Thread Jorge Laranjo

Yep, that could do it, sure...
What I want is to retrieve the emails (using POP3), parse them (alter  
the subject) and keep a copy on our database.
For that point the e-mail is accessible using our system or, after  
the user configures it, can be send using SMTP to is address.

Is like eTicketing...

Em 2007/05/18, às 13:29, Steve Daniels escreveu:



Jorge Laranjo wrote:
I'm using sfSwiftPlugin for sending e-mails on Symfony but... how  
about

to retrive them using POP3? Is it possible?
If not with this plugin, how to implement EzComponents or other  
solution?


--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
http://jorge.laranjo.eu




You could just retrieve the emails with standard php and a frequently
run cron job.

HTH

Steve Daniels

--~--~-~--~~~---~--~~
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- 
[EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/ 
group/symfony-users?hl=en

-~--~~~~--~~--~--~---



--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu




smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Pop3 and SMTP

2007-05-18 Thread Jorge Laranjo
I'm using sfSwiftPlugin for sending e-mails on Symfony but... how  
about to retrive them using POP3? Is it possible?
If not with this plugin, how to implement EzComponents or other  
solution?


--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu




smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: sqLite

2007-05-17 Thread Jorge Laranjo
Well, the sqlite database works fine with Symfony. What I want is to  
open it with other editors (database browsers) so I can manage to do  
querys for testing proposes.



Em 2007/05/18, às 00:33, notjosh escreveu:



I had problems using SQLite with Propel 1.2 on Windows. If that's the
same as your scenario, then I don't know how to help.. I found Propel
1.3 beta seems to work, as does Doctrine.

Not sure about under 'teh lunix' though, it might be fine.

Can you give any more details about your circumstances?

Thanks,
Josh

On May 15, 11:48 pm, fueg0 <[EMAIL PROTECTED]> wrote:

What version of sqLite files does symfony (propel) generate?
Where is a good sqLite browser (or how to convert the files to  
sqlite3

and use this version of sqlite))?



--~--~-~--~~~---~--~~
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- 
[EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/ 
group/symfony-users?hl=en

-~--~~~~--~----~------~--~---



--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu




smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Symfony SYNC and Plugins

2007-05-17 Thread Jorge Laranjo

I've got a project that I've synced with the production server using

symfony sync production go
All went OK but the plugins... The symbolic links are all wrong and  
they don't work at all.
I tryed to delete them on the production server and make the install  
directly but that didn't worked great.

So, what's the solution to sync projects that use plugins?

--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu




smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: Search Engine — How to?

2007-05-16 Thread Jorge Laranjo

Sure, but that's not a good solution since:
1. Has Ads (and some site can't have ads)
2. Depends on Google Good Will (yeh, sure).

Em 2007/05/16, às 15:08, David Hodgson escreveu:


You could add a google search for your site:

http://www.google.com/coop/cse/


--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu




smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Search Engine — How to?

2007-05-16 Thread Jorge Laranjo
Anyone has a good solution for a built in search engine for a Symfony  
powered site?


--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu




smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: API not working?

2007-05-14 Thread Jorge Laranjo

My solution was to use the Google Cache
Em 2007/05/14, às 16:55, Jorge Laranjo escreveu:

What's up with http://www.symfony-project.com/api/symfony/helper/ 
FormHelper.html ?
I can't manage to access it but I can access other links on the API  
site.


--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu




--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu




smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] API not working?

2007-05-14 Thread Jorge Laranjo
What's up with http://www.symfony-project.com/api/symfony/helper/ 
FormHelper.html ?
I can't manage to access it but I can access other links on the API  
site.


--
Atentamente,
Jorge Laranjo

[EMAIL PROTECTED]
http://jorge.laranjo.eu




smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: Re : [symfony-users] Re: Re : [symfony-users] Re: sfFPDF - Encoding problems

2007-05-06 Thread jorge . laranjo

I did that. I'll trim using a function that counts the chars that fit
on that space. Thanks anyway for your reply.


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Re : [symfony-users] Re: sfFPDF — Encoding problems

2007-05-06 Thread Jorge Laranjo
I want to put ONLY 3 lines of text on the PDF on a certain place. How  
can I control this? And if the text (that is selected from a  
database) is larger than 3 lines? How to —select the right one (trim  
the rest on the right place)?

Thanks.


Em 2007/05/06, às 21:46, Loïc Vernet escreveu:

Thanks !! i was starting to hit my head on the wall while reading  
this thread


"sfTCPDFPlugin class provides abstraction for the TCPDF library.  
The main interest of this FPDF extension resides in the fact that  
it handles any UTF8 strings."


But your right, the fact that TCPDF does support UTF8 is not  
written the short description of the plugin, i will correct it ...


COil

- Message d'origine 
De : Bertrand Zuchuat <[EMAIL PROTECTED]>
À : symfony-users@googlegroups.com
Envoyé le : Dimanche, 6 Mai 2007, 18h49mn 34s
Objet : [symfony-users] Re: sfFPDF — Encoding problems

Hi,

For generate the pdf with strings UTF-8, use:
http://trac.symfony-project.com/trac/wiki/sfTCPDFPlugin

@+

Bertrand


Le 6 mai 07 à 18:14, Jorge Laranjo a écrit :


I just used the decoding from UTF-8 for the strings I needed.
Problem solved. But you're right, it should be easy to get UTF-8  
support to the sfPDF plugin. Maybe I'll do it soon (or anyone else  
in this comunity) :)








Découvrez une nouvelle façon d'obtenir des réponses à toutes vos  
questions ! Profitez des connaissances, des opinions et des  
expériences des internautes sur Yahoo! Questions/Réponses.

--~--~-~--~~~---~--~~
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- 
[EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/ 
group/symfony-users?hl=en

-~--~~~~--~~--~--~---



--
Atentamente,
Jorge Laranjo

email> [EMAIL PROTECTED]
gTalk > [EMAIL PROTECTED]
msn > [EMAIL PROTECTED]
aim > [EMAIL PROTECTED]
skype> jorge.laranjo
http://www.olhares.com/fueg0/
http://www.flickr.com/photos/fueg0/
http://concursosdefotografia.blogspot.com/






smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: sfFPDF — Encoding problems

2007-05-06 Thread Jorge Laranjo

I just used the decoding from UTF-8 for the strings I needed.
Problem solved. But you're right, it should be easy to get UTF-8  
support to the sfPDF plugin. Maybe I'll do it soon (or anyone else in  
this comunity) :)


Em 2007/05/06, às 16:21, Steve Daniels escreveu:


Hi Jorge,
You could look towards converting to a different charset for PDF  
generation.


http://uk.php.net/iconv


--
Atentamente,
Jorge Laranjo

email> [EMAIL PROTECTED]
gTalk > [EMAIL PROTECTED]
msn > [EMAIL PROTECTED]
aim > [EMAIL PROTECTED]
skype> jorge.laranjo
http://www.olhares.com/fueg0/
http://www.flickr.com/photos/fueg0/
http://concursosdefotografia.blogspot.com/






smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: sfFPDF — Encoding problems

2007-05-06 Thread Jorge Laranjo

Solved!
Just used the utf8_decode function.

Em 2007/05/06, às 15:46, Jorge Laranjo escreveu:

I'm using sfFPDF to generate some PDFs but I've got one little  
problem: encoding.
This doesn't support UTF-8? How to achieve UTF-8 encoding for Arial  
font type?



--
Atentamente,
Jorge Laranjo

email> [EMAIL PROTECTED]
gTalk > [EMAIL PROTECTED]
msn > [EMAIL PROTECTED]
aim > [EMAIL PROTECTED]
skype> jorge.laranjo
http://www.olhares.com/fueg0/
http://www.flickr.com/photos/fueg0/
http://concursosdefotografia.blogspot.com/






--
Atentamente,
Jorge Laranjo

email> [EMAIL PROTECTED]
gTalk > [EMAIL PROTECTED]
msn > [EMAIL PROTECTED]
aim > [EMAIL PROTECTED]
skype> jorge.laranjo
http://www.olhares.com/fueg0/
http://www.flickr.com/photos/fueg0/
http://concursosdefotografia.blogspot.com/






smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] sfFPDF — Encoding problems

2007-05-06 Thread Jorge Laranjo
I'm using sfFPDF to generate some PDFs but I've got one little  
problem: encoding.
This doesn't support UTF-8? How to achieve UTF-8 encoding for Arial  
font type?



--
Atentamente,
Jorge Laranjo

email> [EMAIL PROTECTED]
gTalk > [EMAIL PROTECTED]
msn > [EMAIL PROTECTED]
aim > [EMAIL PROTECTED]
skype> jorge.laranjo
http://www.olhares.com/fueg0/
http://www.flickr.com/photos/fueg0/
http://concursosdefotografia.blogspot.com/






smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Pear problems — Not installing plu gins

2007-05-02 Thread Jorge Laranjo

I'm using MAC OS X 10.4.9 and got this problem

symfony plugin-install http://plugins.symfony-project.com/ 
sfGuardPlugin


Warning: require_once(PEAR.php): failed to open stream: No such  
file or directory in /opt/local/share/pear/data/symfony/tasks/ 
sfPakePlugins.php on line 147


Fatal error: require_once(): Failed opening required  
'PEAR.php' (include_path='/Users/jorgelaranjo/Sites/desenvolvimento/ 
lib:/Users/jorgelaranjo/Sites/desenvolvimento/apps//lib::/opt/local/ 
share/pear/symfony/vendor:.:/opt/local/lib/php') in /opt/local/ 
share/pear/data/symfony/tasks/sfPakePlugins.php on line 147


Any one knows where the problem with the PEAR is? What to make to  
have the path correct?



--
Atentamente,
Jorge Laranjo

email> [EMAIL PROTECTED]
gTalk > [EMAIL PROTECTED]
msn > [EMAIL PROTECTED]
aim > [EMAIL PROTECTED]
skype> jorge.laranjo
http://www.olhares.com/fueg0/
http://www.flickr.com/photos/fueg0/
http://concursosdefotografia.blogspot.com/






smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Max Size

2007-05-02 Thread Jorge Laranjo

Hi!
I've got this on my generator.yml
zipcod:   { name: Zip Code, params: size=7 }
How do I manage to make the maxsize 7 chars?

--
Atentamente,
Jorge Laranjo

email> [EMAIL PROTECTED]
gTalk > [EMAIL PROTECTED]
msn > [EMAIL PROTECTED]
aim > [EMAIL PROTECTED]
skype> jorge.laranjo
http://www.olhares.com/fueg0/
http://www.flickr.com/photos/fueg0/
http://concursosdefotografia.blogspot.com/






smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Generator and modifications

2007-05-02 Thread Jorge Laranjo

I've got 3 tables:

— Referrer
— Clients
— Lead Information

So, Lead Information is connect to Refferer and to Clients
The problem is, when using propel-generator for the Lead Informations  
it generates ok. But the problem is that I want to insert this info  
on the form generated but also insert some info on the Clients table  
without need to go in to the module Clients.


Where should I add this info and where sould I copy it from? And if  
the generator is run again after that changes?


--
Atentamente,
Jorge Laranjo

email> [EMAIL PROTECTED]
gTalk > [EMAIL PROTECTED]
msn > [EMAIL PROTECTED]
aim > [EMAIL PROTECTED]
skype> jorge.laranjo
http://www.olhares.com/fueg0/
http://www.flickr.com/photos/fueg0/
http://concursosdefotografia.blogspot.com/






smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: sfThumbnailPlugin Error

2007-04-29 Thread Jorge Laranjo

And have a look at this thread http://tinyurl.com/2cvcpq
Em 2007/04/29, às 23:11, Craig Boxall escreveu:


Fatal error: Allowed memory size of 20971520 bytes exhausted (tried
to allocate 2048 bytes) in /plugins/sfThumbnailPlugin/lib/
sfThumbnail.class.php on line 190


--
Atentamente,
Jorge Laranjo

email> [EMAIL PROTECTED]
gTalk > [EMAIL PROTECTED]
msn > [EMAIL PROTECTED]
aim > [EMAIL PROTECTED]
skype> jorge.laranjo
http://www.olhares.com/fueg0/
http://www.flickr.com/photos/fueg0/
http://concursosdefotografia.blogspot.com/






smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: sfThumbnailPlugin Error

2007-04-29 Thread Jorge Laranjo

Try adding this to your .htaccess file:

php_value memory_limit 3200

BTW, what is your PHP version?


Em 2007/04/29, às 23:11, Craig Boxall escreveu:


Fatal error: Allowed memory size of 20971520 bytes exhausted (tried
to allocate 2048 bytes) in /plugins/sfThumbnailPlugin/lib/
sfThumbnail.class.php on line 190


--
Atentamente,
Jorge Laranjo

email> [EMAIL PROTECTED]
gTalk > [EMAIL PROTECTED]
msn > [EMAIL PROTECTED]
aim > [EMAIL PROTECTED]
skype> jorge.laranjo
http://www.olhares.com/fueg0/
http://www.flickr.com/photos/fueg0/
http://concursosdefotografia.blogspot.com/






smime.p7s
Description: S/MIME cryptographic signature


[symfony-users] Re: Re : [symfony-users] Symfony Official web down?

2007-03-17 Thread Jorge Laranjo
Same here in Portugal.


On 3/18/07, Loïc Vernet <[EMAIL PROTECTED]> wrote:
>
>
> Same here in France ...  :/
>
> - Message d'origine 
> De : Cipher Chien <[EMAIL PROTECTED]>
> À : symfony users 
> Envoyé le : Dimanche, 18 Mars 2007, 3h13mn 01s
> Objet : [symfony-users] Symfony Official web down?
>
>
> Dear all,
>
> Symfony official web server seems down.  It can not be browsed. Does
> any one can notice the web server manager to fix it?
>
> Hope it will be alright.
>
>
> Cipher Chien
>
>
>
>
>
>
>
>
>
>
>
>
>
> ___
> Découvrez une nouvelle façon d'obtenir des réponses à toutes vos questions
> !
> Profitez des connaissances, des opinions et des expériences des
> internautes sur Yahoo! Questions/Réponses
> http://fr.answers.yahoo.com
>
> >
>


-- 
Atentamente,
Jorge Laranjo

email> [EMAIL PROTECTED]
gTalk > [EMAIL PROTECTED]
msn > [EMAIL PROTECTED]
aim > [EMAIL PROTECTED]
skype> jorge.laranjo
http://www.olhares.com/fueg0/
http://www.flickr.com/photos/fueg0/
http://concursosdefotografia.blogspot.com/

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] lighttpd configuration

2007-03-13 Thread Jorge Laranjo
Does anyone uses lighttpd for running Symfony?
What is your lighttpd.conf file like?

--
Atentamente,
Jorge Laranjo

email> [EMAIL PROTECTED]
gTalk > [EMAIL PROTECTED]
msn > [EMAIL PROTECTED]
aim > [EMAIL PROTECTED]
skype> jorge.laranjo
http://www.olhares.com/fueg0/
http://www.flickr.com/photos/fueg0/
http://concursosdefotografia.blogspot.com/





--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---