Hi, The following configure command line leads to build failure on solaris SXDE 1/08 : ./configure --disable-apache --disable-perl --disable-ruby ...
1154
Brandon Long
blong42
Mar 13, 2008 6:40 pm
Solaris works, but you need to use gmake. Its also possible that we have some gcc specific constructs, I'd be happy to take patches to make them work on...
1158
xudong_yan
Mar 21, 2008 12:38 am
I am working on a project with 2 UI frameworks: 1) a legacy one with perl + Template Toolkit 2) a second one in PHP, where we are adpoting ClearSilver. While...
1159
Brandon Long
blong42
Mar 21, 2008 3:11 am
um, I think you'd be better off writing something to convert the templates, rather then trying to extend clearsilver with a fairly differnet syntax. Brandon ...
1163
Philippe Le Gal
philippe.legal@...
Mar 25, 2008 11:39 pm
Hi, I try to generate an array filled in a c cgi like this : char values[15][4]; int x; // populate values for (x = 0; x < 15; x++) { sprintf(values[x], "%d",...
1164
Eric Brunson
ericbrunson
Mar 25, 2008 11:42 pm
... Have you tried: <?cs for: v in Values ?><?cs var: v ?><?cs /loop ?>...
1165
Brandon Long
blong42
Mar 26, 2008 6:59 am
... [snip] ... The right syntax here is: <?cs loop:x=#0,#15 ?><?cs var:Values[x] ?><?cs /loop ?> or even: <?cs loop:x=15 ?><?cs var:Values[x] ?><?cs /loop ?> ...
1166
Philippe Le Gal
philippe.legal@...
Mar 26, 2008 7:01 am
... It's works...so simple... Thanks Philippe...
1167
Philippe Le Gal
philippe.legal@...
Mar 26, 2008 7:55 am
Hi Brandon It works fine with the 'each' syntax. I'll try the loop syntax too just to understand it. Is there a bank of examples online with program in C and...
1168
Brandon Long
blong42
Mar 26, 2008 6:03 pm
There are in-line examples in the documentation, but not much from C, its mostly from the HDF directly. Brandon ... -- "Patriotism is the virtue of the...
1169
Eric Brunson
ericbrunson
Mar 26, 2008 6:16 pm
Brandon Long wrote: On 03/25/08 Eric Brunson uttered the following other thing: Philippe Le Gal wrote: Hi, I try to generate an array filled in a c cgi like...
1170
Lars Kruse
joerg_karoll
Mar 27, 2008 8:33 am
Hi, the debian package checker lintian complained about some manpage format problems in the clearsilver package. Attached you find a patch that fixes these...
1171
Nikolai Kondrashov
nikolai.kond...
Mar 28, 2008 7:00 am
Hello All, As you all probably know there is no HDF node attribute manipulating facilities for templates. It may be so because nobody needs them, but, well, it...
1172
Nikolai Kondrashov
nikolai.kond...
Mar 28, 2008 7:02 am
... Oh, and here is how you use it: <?cs var:attr(variable, "attr_name") ?> Sincerely, Nick...
1173
Brandon Long
blong42
Mar 29, 2008 1:15 am
... So, the manpages are actually generated from the header comments using the python script at scripts/document.py I think most of these are just a matter of...
1174
Lars Kruse
joerg_karoll
Mar 29, 2008 4:44 am
Hi, ... oh - good to know ... ... yes - lintian reported these errors as "manpage-has-bad-whatis-entry". They seem to hinder mandb to create the keyword based...
1175
Sylvain Bertrand
sylvain.bertrand@...
Mar 31, 2008 1:19 pm
Hi, The idea would be to be able to: - set a name of node like setbuf (namely, the hdf manages the memory buffer). - tell the hdf node not to free its name...
1176
Brandon Long
blong42
Mar 31, 2008 5:42 pm
Hmm, I guess there could be a setbuf like call for name, that only set the name of the node... I'm not sure exactly how that would work (normally it wouldn't...
1177
Thomas Regner
clearsilver@...
Apr 30, 2008 8:42 pm
Hello, the code in cs/ does not pass it's testsuite on amd64 machines, at least not on mine and a quick search on the net confirmed that others have the...
1178
Brandon Long
blong42
Apr 30, 2008 8:50 pm
... Yeah, that seems like a fine result. I've known about the issue, but didn't have a good idea of the "right" solution... the crc result would be different,...
1179
baison_hever
May 1, 2008 7:04 pm
Hello, I'm using the Trac tool, and I'm having a problem that the solution given was to upgrade the ClearSilver from 0.9.14 to 0.10.x (to be more especific...
1180
Brandon Long
blong42
May 1, 2008 8:08 pm
Here's the README.txt file in the python directory on how to compile on Windows. I'm not in front of a Windows box at the moment, so I can't test it for you: ...
1181
Mario Gliewe
mag@...
May 8, 2008 5:31 pm
hello, while working on my own little c++ wrapper for clearsilver i came across a small inconsistence in hdf_copy(); it doesn't copy the source default value...
1182
Ogla Sungutay
oglausa
May 17, 2008 10:44 pm
Hey guys, In cgi_parse() there is a string comparison made when we have a POST request: if (type && !strcmp(type, "application/x-www-form-urlencoded")) //... ...
1183
David Jeske
jeskeca
May 18, 2008 6:24 pm
I've seen this same problem. It would be more ideal if we parsed out the paramaters and made them available. According to RFC2045 they follow the RFC822 rules...
1184
zeegco
May 19, 2008 5:18 am
hello, I want to save unicode values in my HDF files to use them in my code (python code) and templates, but I don't now how can I do this. now, maybe because...
1185
Brandon Long
blong42
May 20, 2008 9:14 pm
If you use the utf-8 encoding for unicode, you can store values in HDF just fine. From python, you'd have to do something like: hdf.setValue("Foo",...
1186
Brandon Long
blong42
May 21, 2008 4:22 am
Although I can't remember at the moment why I made that choice, it seems pretty clear that I intentionally didn't copy the source node, and changing it now...
1187
David Jeske
jeskeca
May 21, 2008 5:53 pm
... I suspect the attributes are not copied simply because hdf_copy was written before attributes existed. I don't understand Mario's use of the term "source ...
1188
Mario Gliewe
mag@...
May 21, 2008 7:39 pm
... Well, even if a node has subnodes, it still may have a value. hdf_obj_get() would be the function in question. Therefore, if the source node i'm copying...