I have been working on a clearsilver backend replacement for this yui connection manager example: http://developer.yahoo.com/yui/examples/connection/post.html ...
I don't know enough about this to know off the top of my head. If you can tell me what the request looks like on the wire, I can probably figure it out....
The yui connection manager is stubbornly changing CONTENT_TYPE to: application/x-www-form-urlencoded; charset=UTF-8 line 643 of cgi.c has: if (type &&...
Hmm, someone pointed that out before, its definitely allowed. The quesiton is, is CGI.ContentType just the content-type, or the entire Content-Type header......
... Its not YUI, but Firefox 3.x as it says here http://developer.yahoo.com/yui/connection/ under Known Issues: In Firefox 3.0, all HTTP POST transactions...
Sovande Ulv
sovandeulv@...
Jan 13, 2009 8:37 am
1245
Brandon are you going to roll any of these patches into the official build or are you too concerned about creating other problems?...
... I'll definitely fix this, the question is whether I make CGI.ContentType just the content-type, or continue to leave it as the full header. Leaving...
Hi, We are seeing this this error in our apache error.log. You'll have to forgive me but I dont know what bit of our system uses ClearSilver. Our linux web...
Hi, I'm trying to use Clearsilver with the Boa webserver (www.boa.org). As far as I can tell, Boa does not have an "AddHandler" feature like Apache, so I'm...
This means the clearsilver binary you are using was compiled for an older version of python. This message is usually ok, though some of the problems you're...
So, the default cs_static.cgi program works by using the PATH_INFO var. Using the AddHandler directive causes Apache to just shortcut what you'd do without it,...
Hi chaps, In the ongoing quest to remove all the errors from my error.log I'm now looking at an error about API versions between Python and ClearSilver. As it...
i've just started working with clearsilver and have very little experience programming. i'm trying to make a clearsilver template that searches an HTML...
The task you've descibed is not one which I would typically do with clearsilver. While some manipulation of data is possible in clearsilver, it is not intended...
I have looked over the information about ClearSilver, and I sense that it is not tied to Linux, but I am not sure. I would like to employ ClearSilver to work...
Clearsilver is not tied to Linux, though most people use it on either Linux or Windows. The ease of porting to netburner will depend on how unix/posix-ish ...
Thanks David, How do you suggest that I start? Which download? Or should I pick up the source via subversion? Are there documents describing the architecture...
The source isn't in subversion (yet), it was originally in a cvs depo at one company, and now in a perforce depot at Google. I've been trying to convert them...
I don't know of any quick json->hdf conversion libraries. It would be a good thing to have, though I haven't looked at home complicated json is to parse. It...
Does anyone have a script that takes a cs file and a hdf file and scans the cs file for each hdf data item?, reporting on hdf items that are no longer used? I...
What do you mean by "no longer used"? Typical HDF/CS usage has tons of HDF data which is never used. When I use it, I make standardized exporters that dump...
My efforts are mostly to make translation more efficient. So, say I had a hdf file with this item: Strings.hello [Lang] = hello world! Once upon a time this...
I understand now. We have run into this problem before. One of the disadvantages of clearsilver becoming a more full language, is that it's not possible to do...
... Have you tried using GNU gettext for i18n? It really simplifies the task. We are using it both for translating datasets and templates, not to say about the...
... I have opted for another approach. I simply read the file hdf_read_file and traverse the whole HDF tree extracting values of the nodes marked with "lang"...
... How do you determine that an HDF attribute market with [lang] is still in use in a CS template somewhere? Culley's original challenge is to clean up cruft...
... I don't. It is a small issue for me. Since I don't store general translatable strings solely for use in the templates, but instead simply mark such strings...