Hey everyone, The website documentation doesn't cover in great detail the C programming logic to create a CGI. I have looked at the examples in the the cgi/...
You can see an example image-server CGI written in C in the "imd" directory. The API is mostly the same in each language, so the brief tutorial written for the...
The clearsilver model currently lacks a "top level" idea of how to accept and dispatch different types of requests. The closest we've come to releasing...
1227
Liran Tal
L.Tal@...
Nov 13, 2008 12:31 pm
I would love to hear about other "live" examples implemented in C for ClearSilver usage as it's what we are going for. In regards to the model, we're talking...
... Well, we're using it exactly for such purpose. Currently our web-interface has over a hundred pages and we use it almost to its full potential. Despite a...
1229
Liran Tal
L.Tal@...
Nov 13, 2008 2:33 pm
Hey Nikolai, Our permissions and authentications are controlled via the htpasswd/htaccess utility which is very common to Apache-style web servers. Could you...
... Yes, it is great unless you need session control and complex authentication and access control logic. ... No, we're using clean URL's and receiving paths...
As it turns out, this was found (and fixed) by an engineer here a couple months back, I just didn't remember it. I really need to get a new relase out. Our...
Hi. I am trying to figure out how to display multiple lines of several values. I know this is basic and done all the time in CGIs, but I am having trouble...
... Sorry, let me try to explain better. The file is really irrelevant, it could be a database instead. If it were a database, I would read a row from a table,...
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......
1244
Sovande Ulv
sovandeulv@...
Jan 13, 2009 8:37 am
... 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...
... 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...