Re: Cheetah 3.4.0

2024-12-03 Thread Mohammadreza Saveji via Python-list
Thanks a lot Oleg sincerely yours On Mon, Dec 2, 2024 at 5:27 PM Oleg Broytman via Python-list < python-list@python.org> wrote: > Hello! > > I'm pleased to announce version 3.4.0, the final release > of branch 3.4 of CheetahTemplate3. > > > What's new in CheetahTemplate3 > ===

Re: Cheetah 3.3.0

2022-10-10 Thread Oleg Broytman
Hello! I'm pleased to announce version 3.3.0, the 1st release of branch 3.3 of CheetahTemplate3. What's new in CheetahTemplate3 == The contributors for this release are: N Protokowicz, Enzo Conty, Andrea Mennucci, Saiprasad Kale, odidev, Pierre Ossman. Many thanks!

Re: Cheetah and hungarian charset...

2009-02-10 Thread durumdara
Hi! Ok, I forget to set encodings. from Cheetah.Template import Template d = {'a' : 'almás'} tp = Template("# encoding: iso-8859-2\nhello world éááá ${d['a']}!", searchList = {'d': d}) print tp sys.exit() This code is working for me in Windows. dd 2009.02.05. 16:21 keltezéssel, durumdara í

Re: Cheetah and hungarian charset...

2009-02-05 Thread Diez B. Roggisch
durumdara schrieb: Hi! I wanna ask that have anyone some exp. with Cheetah and the non-ascii chars? I have a site. The html template documents are saved in ansi format, psp liked them. But the cheetah parser makes ParseError on hungarian characters, like "á", "é", "í", etc. When I remove th

Re: Cheetah

2008-12-30 Thread Tim Roberts
sopherf...@gmail.com wrote: > >1. In Cheetah 2.0.1, both from python 2.5.2 and 2.6, after I do a >#from datetime import date, most of the datetime objects seem to work >fine. For example, $date(2008, 12, 15) works. However $date.today() >does not work and I get an exception required argument year n

Re: Cheetah

2008-12-28 Thread Gabriel Genellina
En Sun, 28 Dec 2008 15:01:14 -0200, escribió: 1. In Cheetah 2.0.1, both from python 2.5.2 and 2.6, after I do a [...] 2. In reportlab 2.2, when I generate a PDF, no matter how many  s [...] Better to report those problems to each product authors. -- Gabriel Genellina -- http://mail.python

Re: cheetah.

2006-07-10 Thread Tavis . Rudd
Hi Chun, you should post this to the cheetah mailing list rather than here. https://lists.sourceforge.net/lists/listinfo/cheetahtemplate-discuss Cheers, Tavis chun ping wang wrote: > I am having trouble using cheetah and getting it to work the way i want > (mvc) > > I have the following file. >

Re: Cheetah template driven object output? Pythonically?

2006-01-30 Thread bruno at modulix
Fried Egg wrote: > This may be trivial or stupid or both, but does anyone have a recipe > for gracefully using Cheetah to generate a text representation of an > object, but embedded in the object (so that it can be pickled, > unpickled, and told to display itself)? > > Here is what I am thinking: