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); ...
I don't have access to any 64bit machines, but I played with an amd64 cross compiler, and google'd the resulting error message and got this result: ...
... PIC is, as I recall, always safe but potentially a minute performance loss. It should always be used for code that's going to end up in a shared library,...
Good day folks, If I have a dataset: Referring { 0 { id = 1 junk = blue } } The following condition is not True: <?cs if:Referring ?>. Right now I've added a...
Chris Green
cmg@...
Oct 22, 2004 6:38 pm
362
There is a subcount operator, which counts the number of child nodes (not recursively, just directly) It is relatively new (there was a len operator before...
... Foo = bar Foo { baz = 1 boo = 2 } this is valid hdf, so what does len(Foo) do? Brandon -- "Isn't it amazing how much fun two people can have just by taking...
... That Just Worked :-) ... I can't borrow you a login, but have borrowed a login myself... if there's anything I can test for you, just mail me directly. ...
ok, so I run the following, and get an error regarding the "rules.mk" file.. any ideas? i've tried configure with different options and they all do the same...
... So is the len() op going to be removed anytime soon? I actually like it (nice, short and simple) and find the name more obvious than "subcount". And since...
I'm running into the following clearsilver problem: I have a page that calls <?cs include:"some-standard-macro-defs.cs" ?> and then later calls <?cs ...
Looks like someone went ahead and made a php extension module: http://www.geodata.soton.ac.uk/software/php_clearsilver/ I know a couple of people were looking...
While trying to write some CS code to generate pretty dates (e.g. 11 -> "November") we ran into the following, seemingly bizarre CS parser crash: The following...
hmm. Yes, I left it calling strtol with a 0 base to allow for hex, but octal seems like a bad idea. Not sure what the better fix is: 1) Still allow hex by...
My vote would be #2 but I'd be happy with #1 as well. I think even with better documentation, this bug would still have really confused me (unless the cs parse...
The number is likely being interpreted as Octal since a prefix 0 is a common lead-in for octal notation. As such, 08 and 09 are not legal numbers but 010 is...
I vote for #3 with eventually improving the error message. Having hex and octal available is useful and eventually necessary for someone. Is there a way to ask...
... What about having a base function? base("ABCD", 16) or base("777", 8) return the decimal equivalent. That should solve anyone's need for the functionality...