conflicting date format with attribution

2009-08-19 Thread steve
Hi list,

I have

set date_format=%a %d %b %y
set index_format%4C %c %D %s

which is ok for the index. Now when I reply to a message, I would like
to have the attribution specially set, something like (in French) this:

Le mardi 18 août 2009, John Dow (j...@example.com) a écrit :

So full day name and full month name.

So I tried:

set attribution=Le %d, %n (%a) a écrit :\n

But I then get short names for day and month. I tried other
combinations. Now my question is simple, how can I have one $date_format
for the index view and another *different* one for the attribution?

Thanks in advance,
steve


Re: conflicting date format with attribution

2009-08-19 Thread Kyle Wheeler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

On Wednesday, August 19 at 01:06 PM, quoth steve:
set date_format=%a %d %b %y
set index_format%4C %c %D %s

which is ok for the index. Now when I reply to a message, I would like
to have the attribution specially set, something like (in French) this:

Le mardi 18 août 2009, John Dow (j...@example.com) a écrit :

So full day name and full month name.

So I tried:

set attribution=Le %d, %n (%a) a écrit :\n

But I then get short names for day and month.

So set it explicitly, like this:

 set attribution=Le %{%A %d %B %Y}, %n (%a) a écrit :\n

Note the %{} construction.

~Kyle
- -- 
Only the fool hopes to repeat an experience; the wise man knows that 
every experience is to be viewed as a blessing.
-- Henry Miller
-BEGIN PGP SIGNATURE-
Comment: Thank you for using encryption!

iQIcBAEBCAAGBQJKi/VBAAoJECuveozR/AWeNZ0P/RWkWbfx4g7N7VaI1SwwE9iO
6iDoRjeKKV+McRuFNMUKIqUcrEQTfl4/9jeCYqzQcnvqB2WO22S++6vELOd5pEAx
2VXBmQPudPw8O5RTCRbMQjAJN8IQme8rWAA6fW+kIyHFpScH8oTVoKiT3Lhg8px8
Ib2OL/fIfDkNEW9fBRMYfHxHULb2ynqLn1clBprVlpj76rDmgsyMRnBQquw+kWiE
PgLzVvuG9j1toVk8xSV8BDyp46Kvk7yrX2/QOIdVi4/BpVZ6AsttLhL2ItKzH/8j
NB+vRam/wneCmI9lw1XUX1lHdbatmEN5ze7KHWtvQJJMi3iwLHymx2Ln6FFKhtUx
dZRoiEo+FWgR9PUvMOehEBwdKAgy3AYxfb8KfTTaVZK7ySi0wKCaXtyxTuepsvRw
rzKc06T9jAAFxktv/eYU+J3GFLlLOxEP1b/Voc/bL0OExmw/1oMg7ivt9060ZuJB
/sGY2ovcQRyiEPbsHZYdzpAOftYreojkzZVkZmWM+RuKdd4PncIIlBo0YqCzOcYg
gb2ZVBtYzHkR8KuO8TUrkBdwgsxGwSp6eU9UgRp+z3o0kFngruc4kREZ5dqNzToD
ASe2sKybICf2BWJkH7WGsw2dP7PAsQnc3+Sf+/UAQ9H3aE4RAV53ycGF8+YNDP61
99Q+orp0jgmPnX3ZG7J5
=LiMW
-END PGP SIGNATURE-


[SOLVED] Re: conflicting date format with attribution

2009-08-19 Thread steve
Le mercredi 19 août 2009, Kyle Wheeler (kyle-m...@memoryhole.net) a écrit :

 On Wednesday, August 19 at 01:06 PM, quoth steve:
 set date_format=%a %d %b %y
 set index_format%4C %c %D %s
 
 which is ok for the index. Now when I reply to a message, I would like
 to have the attribution specially set, something like (in French) this:
 
 Le mardi 18 août 2009, John Dow (j...@example.com) a écrit :
 
 So full day name and full month name.
 
 So I tried:
 
 set attribution=Le %d, %n (%a) a écrit :\n
 
 But I then get short names for day and month.
 
 So set it explicitly, like this:
 
  set attribution=Le %{%A %d %B %Y}, %n (%a) a écrit :\n
 
 Note the %{} construction.

That's what I was missing.

Thanks it works perfectly.

steve