Hi, if you use the default include path for the clearsilver headers then you will get them in /usr/include/ClearSilver. Even if you use #include...
Gerald Dachs
gda@...
Aug 3, 2004 11:55 am
312
Most people seem to have the clearsilver build as part of their build tree, so we don't see this issue. Changing everything to be of the form #include...
Hi, Has anyone done a 'calendar' using Clearsilver that they can share? I'm looking to do a calendar like what you see in a typical Movable Type blog (you can...
Yeap, you've found two bugs. One, the operator precedence wasn't quite right, so ?Exists == '' wouldn't work correctly (or !0 == 2 for that matter). Two,...
Brandon, I think may be depending on that bug when I do: <?cs if:um.somevar ?> Is this checking existence or emptiness? My intent is to be true if the variable...
... Dear Brandon, Great and thanks for your work. Cheers, Joo-Yung...
YOON. Joo-Yung
yjy-list-clearsilver@...
Aug 6, 2004 4:56 am
317
Its doing boolean evaluation. In boolean evaluation, a variable is evaluated as such: 1) If it doens't exist, its false 2) If it exists and is a number, 0 is...
Hi, I noticed that CS has ruby hooks but I wonder is the API for ruby as complete as the other scripting languages? I luv ruby and would love to use it. ...
It looks fairy complete, in terms of cs/hdf functionality. It looks like it doesn't register the CGI filters (but that's not hard to fix), and it doesn't...
It is true, neither CGI filters nor the cgi module. I wrote the ruby clearsilver hooks and have used it extensively for the past 1.5 years. No problems or...
Someone asked me today if html_escape() converts (") into ". AFAIK, the answer to this is no, which means we would need another escaping function for ...
... html_escape wouldn't be very useful if it didn't escape quote. From cgi/html.c:html_escape_alloc() if (src[x] == '&') err = string_append (&out_s,...
Apologies if this has been discussed before; I haven't been able to find any reference in the mailing list archives or FAQ. I find the use of ClearSilver...
Mark Leonard
mwl@...
Aug 24, 2004 6:54 pm
324
Hello, Always on the lookout for interesting XML-based templating systems I stumbled upon your package through Debian's apt-repository. However, I would like...
Ronald van Engelen
clearsilver.net@...
Aug 30, 2004 5:19 pm
325
Ronald - Thanks for your correction on my XML/XSLT comparison. I'll update it to include your XSLT code. I don't really understand it, and I think it proves my...
Hi there, I have a lot of macros, and I hate having to relearn what all the obscure ones do, so I'd like to document their definition. Do folks have a...
... You could do this: <?cs # # Prints a pair of radio buttons for chosing if an option is enabled. # @param name the name of the form element. # @param text...
Hi. I'm using 0.9.7 and I cannot get a simple line as <?cs var:js_escape("TEST") ?> to work. I get the following error: Traceback (innermost last): File...
Stefan Nilsen
stefan.nilsen@...
Sep 6, 2004 6:56 pm
330
Yes, in order to use the various html/cgi related functions, you need to have instantiated the cs parser from the cgi routines, or you need to add the escape...
... Especially since the filter functions is documented together with the core template functions, not together with the cgi routines... ... I copied the code...
The debug capability is quite handy - just set Config.DebugPassword to some value, and add debug=that value, and all CGI variables and HDF data is appended to...
Good point. Brandon ... -- "A fundamental law: no matter how good you are, someone somewhere believes that you're going to Hell." -- Andrew C. Bulhak ...
I just wrote a C++ wrapper that makes syntax a bit cleaner when working with HDF*. For example, you can write things like, hdf["node"] = "text"; hdf["node"] =...
Thanks, we'll take a look. We have a wrapper here also, but its probably too dependent on google code. Brandon ... -- "Put all of your high priorities on one...
GCC 3.3.2, GNU ar 2.15, GNU make 3.80, Solaris 9, Python 2.2.3, only the Python module. - Makefile.depends Error 2 - Undefined symbols building static.cgi -...
I manage a large commercial php application and am investigating the use of ClearSilver to help facilitate the slow transition to another programming language....
The first ... These are fixed in the tree, and will be in the next version (though it won't break the build) ... Not sure what this complaint is. ... Weird,...