Hi there, I know that it may be a dumb question, but ClearSilver installing doesn't work for me. :( It will be great if somebody here can help me out. Assuming...
Hi, Is there any way to add #ifdef (something similar) within hdf file to load dataset conditionally. Any documentation / suggestions will be helpful for me....
I have the following Ajax function used to dynamically create a select box. I'd like to make this a multi-select, and added two lines which I thought would...
Continuing something I started years ago with the original skelleton of a half-working C# module for clearsilver, I now have a more-real clearsilver module for...
Hi Brandon, I will use the Clearsilver C API in several worker threads in my web application and wanted to get some tips (or dos and donts) from you. My setup...
Hello! I need to implement the same dynamic web page in Python and Java. Though the request-handling and data-retrieval code will need to be written twice,...
I'm trying to create a shortcut macro create form input boxes with values. I tried something like this: <?cs def:form.input(path) ?> <input type="text"...
Sorry, should have mentioned this when it was made available. My co-workers have put the finishing touches on the pure-Java version of ClearSilver. Its...
Hi, I have been using HDF as my "database", and it has been working beautifully. Now, I am looking for two more things that can make my life a little easier...
I have found a possible bug. Version: 0.10.5 Description: clearsilver does not process POST with "Content Type set to application/x-www-form-urlencoded;". Note...
I am trying to run the hello Example in the Python Introduction section using the Cherokee Web Server. I made a directory /cgi-bin in the root directory and...
I am a new user of clearsilver and I am trying some features of it. when testing the build-in escape functions such as url_escape and html_escape, some error...
hi, I found a tiny bug when I use rand_name() in util/test/hdftest.c, This function may produce name with ' include. so, in other hdf function, the name is...
Hello, I use clearsilver with fastcgi/lighttpd. I have problem in this file : hello.html : <h1><?cs var:_("hello world !") ?></h1> After Refresh my page, error...
Hello, I am going to start development of web application for an embedded system. I think ClearSilver is an excellent choice. I would like to know Whether...
If localtime_r doesn't exist, my_tm is left uninitialized, and thus tbuf is useless. Index: util/neo_misc.c ... +++ util/neo_misc.c (working copy) @@ -32,14...
Do clearsilver39;s templates understand 64-bit numbers? I want to do the following: <?cs set:duration=17179869184 ?> <?cs var:duration/1048576?> This outputs...
Having built this system on OSX, x86 Linux and ARM Linux (cross compiled), there are a couple minor issues. First, rules.mk.in has gcc hard coded for creating...
I cross compiled this for ARM and the cs program appeared to hang on startup. After debugging, it was determined to be this line#50 in cs.c because EOF is -1...
Are spaces allowed in HDF key names? Scott -- import neo_cgi, neo_util h = neo_util.HDF() h.setValue("a b", "1") s = h.writeString() h2 = neo_util.HDF() ...
Hi Brandon, I updated my system to Ubuntu 9.10 64bit and tried to compile clearsilver from svn. I think after ./configure a "libs" file is created under the...
I finally finished piecing together the multiple repositories, removing some internal only things, and importing the whole shebang into a public svn...
Not sure when this started happening, but at least with Dojo these days, forms are POSTed with a Content-Type that include a charset declaration, ie: ...
Hello, ClearSilver doesn't seem to be compatible with HTTP 1.1 persistent connections because it don't add Content-Length in the HTTP header of the response....
I've been modifying a trac module, and it uses the ClearSilver template language. I need to get a list of strings to the template to load into a select...
Hello everybody, Brandon Once again, I have noticed a somewhat incorrect processing of multi-value query parameters. Only this time I decided to fix and report...
Hi everybody, Brandon, I was dissatisfied with the value existence check operator ('?'), since most of the time I need *node* existence check, instead. So I...