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,...
... I have been meaning to write a PHP wrapper/module/glue/whatever you want to call it for ClearSilver, but have not gotten around to it. As far as I know, no...
Martin Baker
martinb@...
Sep 22, 2004 7:19 pm
342
I just took a production system off PHP with Clearsilver. While "large" is a difficult comparison, I had all the cs/hdf processing done as an output filter,...
This is what I was using for php. It had its shortcomings, but performance was not one of them. The Ruby bindings are very effective. I decided on Ruby because...
I tried to build clearsilver(0.9.12) on cygwin(1.5.11), but got some problems. I had modified *rules.mk* to locate correct *PYTHON_LIB* and *PYTHON_SITE*, but...
Hmm. It attempts to convert ampersand html attributes, and apparently it doesn't handle the broken html case of an un-escaped ampersand. Brandon ... -- "i...
I don't see a way to modify the headers sent by neo_cgi. Is the best way to do this to just output the desired headers before calling display? would this...
I solved these problems by using Scons to do the builds for the neo libraries and static.cgi. Scons is a python based make replacement which is smart enough to...
Viewing the debug output doesn't work for me after setting the charset with: self.ncgi.hdf.setValue('cgiout.ContentType', "text/html; charset=%s" % ...
Yes, because it doesn't think the content type is text/html anymore (its dumb). You can get the same affect by setting cgiout.charset to iso-5589-1 instead of...
Hi List, why do I get this: <!-- 0.000:0 --> at end of the html output of cgi_display and how can I prevent it? Gerald...
Gerald Dachs
gda@...
Oct 21, 2004 8:54 am
356
... It's the amount of time the CGI engine took to process the page. cgi/cgi.c: do_timefooter = hdf_get_int_value (cgi->hdf, "Config.TimeFooter", 1); ...