Hello,
i'm not able to build Clearsilver on amd64, it fails with an relocation error.
--------------------------------------------
Sebastian Blum |...
Sebastian Blum
basti@...
Jul 5, 2004 4:52 pm
282
Hi, all. I'm new to clearsilver, and learning how to script python with it. When A.py sets a cookie, then can B.py read the cookie? As far as I tested, B.py...
I'm a bit confused, but let me try and understand what you mean. Cookies are client side information. Setting a cookie with A.py will send a message as part...
... Don't forget RFC 2965, which introduces the new and vastly superior Set-Cookie2: header. -- David Terrell dbt@... ((meatspace)) http://meat.net/...
... Yes. Additional reads of hdf files should just add-to/overwrite keys from the earlier reads. I don't understand why you had problems with nested data. It...
On Wed, 14 Jul 2004 03:24:23 -0700 (PDT), pinetree@... ... Yes, reading two files is the same as reading one that contained all the data, it will just...
Hi, all. Thanks for your advices. I was wrong and clearsilver proved itself great. What I did wrong was that I wrote "temperature = { }". The "=" must not be...
Nope, it hasn't. I'm not sure what the best way to expand the syntax to do that. Brandon ... -- "I know only that what is moral is what you feel good after and...
... Out of curiosity, what is the usage model for attributes if they're not exposed in templates? -- David Terrell dbt@... ((meatspace)) http://meat.net/...
... Before attributes existed, we generally wanted to avoid the XML-ish problem of having two different entity types 'attributes and tags'. When designing an...
... They are exposed programmatically. We currently use them to tag certain HDF elements as lang text, so we know which ones to translate. Brandon -- "Yield...
Hi, I have a difficulty of using html_strip and html_escape. Here are my snippets. 1. my.hdf word = ping <ping> 2. my.html var:html_escape(html_strip(word)) 3....
... Maybe you have them backwards? html_strip isn't very smart, so it thinks that <ping> is an html tag, and strips it. Ie: html_strip("ping <ping>") -> "ping...
Hi, Brandon, Thank you for your reply. I tried rule of a thumb, and guessed that html_escape should come before html_strip. Can I nest filters as in "<?cs...
Yes, you can nest filters, I just split them up to show you what each would do. I'm not entirely sure which case where you would actually use both at the same...
Hi, Here is an example to be processed. (It is an explanation of a word "comport" taken at webster.com. And it is written/displayed in between <textarea> and...
Hi all, I have been trying to install Clearsilver 0.9.10 on OS X Server 10.3.4 using the system Python. I have tried the following options as they are, as root...
Yeah, it should be more clear. --with-python should point at the python binary. Brandon ... -- "To be happy with a woman, you must love her a lot and not try...
Dear all, I'd like to know what CS returns to html when its hdf has name, but no value. Here is my snippet. <?cs set: counter = #0 ?> <tr> <?cs loop: x = #1,...
I'm not sure why you are calling html_strip, is my point. You should only need to call html_escape. html_strip is close to (but not quite) the opposite of...
Hi Clearsilver enthusiasts. I friend pointed me to Clearsilver as a web templating alternative and I have been fishing around for examples or even api info...
The answer to your question is "Yes", so you'll have to use libraries of the native language. Ultimately, it makes clearsilver much more flexible. I used...
yes, you have to use the native ui. The clearsilver kit has an example object relational rdbms connector for python that makes it easy to export the data to...
... More importantly, when building your templates it's often easier a data set that's not strictly tabular in your code than to special case that stuff in...
Dear Brandon, Thank you for your reply. I am late to reply because I was busy with other CS scriptings and that I needed more spare time to test escape and...
Dear Brandon, Thank your for your reply, It was nice of you to let me know about ?. When I applied it to my cs-html script, it worked otherwise than my...