... gcc (GCC) 4.1.2 (Gentoo 4.1.2 p1.0.1) If nobody is able to reproduce the bug on a 64bits system with this compiler version, that would be linked to the...
Sylvain Bertrand
sylvain.bertrand@...
Nov 6, 2007 9:59 am
1083
Hi, there are several headers which are preloaded into the HDF dataset by the Clearsilver CGI kit, but the X-Requested-With header is not one of them. It could...
Trying to build and install ClearSilver 0.10.5 in support of a Trac installation. Using gcc 4.2.1, python 2.4, with default ./configure upon make I pick up 3...
Not sure, but that doesn't necessarily sound like a bad version. Its porbably fixable, but are you actually going to use trans.py? Its more an example. ...
... This may be the same problem someone else mentioned about 64bit crc earlier. Its probably ok to ignore for the moment. ... For Trac, you don't need perl...
When using clearsilver with hdf file having multiline value, if the hdf is illegal, I will get some error msg which points out where failed and gives the line...
Would it be possible for name:var to return a value so it can be used in statements such as this: <?cs if:var:key == name:header ?> Would a patch be accepted? ...
Sovande Ulv
sovandeulv@...
Nov 27, 2007 3:16 pm
1093
There's a name() function, so you can do: <?cs if:key == name(header) ?> See http://www.clearsilver.net/docs/man_filters.hdf for a list of functions. Brandon ...
... Ah hmm, the problem was not that name:header does not return a value. The problem is that I use variable names with '-' in them and that 'var:key' and...
Sovande Ulv
sovandeulv@...
Nov 27, 2007 9:10 pm
1095
... Enclosed a patch which allows for using variable names with operator tokens such as [?<>=!#-+|&]. The patch use parse->hdf as a symbol table and first try...
Sovande Ulv
sovandeulv@...
Nov 28, 2007 8:44 am
1096
... Yeah, I don't think this is going to work. For instance, this expression won't work: <?cs var:url_escape(Request.Header.Accept-Encoding) ?> Even if we did...
... Agree, the patch was too simple and handled just one case. Just to prove that it is possible to do this general, enclosed a new patch which extend a simple...
Sovande Ulv
sovandeulv@...
Nov 29, 2007 1:44 pm
1098
Hello All, Sorry to break on, but why not just implement some simpler but elegant workaround for a need to register all the needed header names? For example,...
... The whole point of using the actual name of a Request header is that it is "nicer" to use. For instance, if I want to list all headers I can do this; <?cs...
Sovande Ulv
sovandeulv@...
Nov 29, 2007 4:29 pm
1100
... We could attach the unmunged names in a standard tag, and then provide some way to get it back out....
hi everybody, I use clearsilver as my template engine for my site and my coding language is python2.4, when i set "utt-8" as default charset in my template...
I use clearsilver 0.10.5 with mini_httpd. I made a C CGI script to Get and Set parameters. I want to setup my params on my webpage and send it to my CGI...
Hello, This solution works nice. I can read my file with fp but I would like to have the filename path (/var/tmp/cgi_uploadXXXX). How can I do that ? Regards, ...
... From here: http://www.clearsilver.net/docs/special_vars.cst ... By default, the PUT handler, and the RFC2388 multipart/form-data POST file handler unlink...
... POST file ... soon as ... exits, ... files will ... existing ... mkstemp(). ... periodic ... I tried Query.<parameter>.FileName but I have nothing in that...
... I added this line in my hdf file : Config.Upload.Unlink = 0 I have this in my C source code : char *filename = NULL; if ((err = hdf_get_copy(cgi->hdf,...
... Hmm... that's strange, do you really use "\0"? And why do you always use hdf_get_copy? Do you really need to modify the value copy? ... Please try to use...
... the value copy? It's a mistake from myself ;-) ... dump all of your dataset ... I enabled debug output and I see that when Config.Upload.Unlink = 0 ...