Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

ClearSilver

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 335
  • Category: Open Source
  • Founded: Jul 2, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 1224 - 1253 of 1451   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
1224 Liran Tal
L.Tal@... Send Email
Nov 12, 2008
4:18 pm
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/...
1225 David Jeske
jeskeca Send Email
Nov 12, 2008
4:37 pm
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...
1226 Brandon Long
blong42 Send Email
Nov 12, 2008
11:19 pm
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@... Send Email
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...
1228 Nikolai Kondrashov
nikolai.kond... Send Email
Nov 13, 2008
12:47 pm
... 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@... Send Email
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...
1230 Nikolai Kondrashov
nikolai.kond... Send Email
Nov 13, 2008
2:42 pm
... 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...
1231 Brandon Long
blong42 Send Email
Nov 20, 2008
7:37 am
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...
1232 Dan
strangepics Send Email
Dec 6, 2008
4:21 pm
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...
1233 Brandon Long
blong42 Send Email
Dec 7, 2008
5:19 am
... I'm not sure what you're trying to do, exactly, but: foo.hdf: Option.1 = Foo Option.2 = Bar Option.3 = Baz foo.cs: <form action=/foo.do> <?cs each:opt =...
1234 Dan
strangepics Send Email
Dec 9, 2008
6:39 pm
... 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,...
1235 Brandon Long
blong42 Send Email
Dec 9, 2008
11:22 pm
... x = for (type, hostname, ipaddr, t) in dnsdata: ncgi.hdf.setValue("Entry.%d.type" % x, type) ncgi.hdf.setValue("Entry.%d.hostname"; % x, hostname) ...
1236 Dan
strangepics Send Email
Dec 12, 2008
3:17 pm
... Thanks, that makes sense, but I still can't seem to get values out of HDF (empty). Is there a way to dump the whole HDF for debugging? Thanks....
1237 Dan
strangepics Send Email
Dec 12, 2008
4:42 pm
... Actually I had a bug. It works now. However I have trouble understanding how it works (in the template). Thanks....
1238 David Jeske
jeskeca Send Email
Dec 12, 2008
8:14 pm
There are some debugging HDF values which we use to cause the HDF contents to be dumped into the rendered page. ...
1239 Dan
strangepics Send Email
Dec 14, 2008
5:14 pm
... Thanks!...
1240 culleyharrelson Send Email Jan 12, 2009
9:59 pm
I have been working on a clearsilver backend replacement for this yui connection manager example: http://developer.yahoo.com/yui/examples/connection/post.html ...
1241 Brandon Long
blong42 Send Email
Jan 13, 2009
3:11 am
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....
1242 culleyharrelson Send Email Jan 13, 2009
8:27 am
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 &&...
1243 Brandon Long
blong42 Send Email
Jan 13, 2009
8:31 am
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@... Send Email
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...
1245 culleyharrelson Send Email Jan 14, 2009
11:41 pm
Brandon are you going to roll any of these patches into the official build or are you too concerned about creating other problems?...
1246 Brandon Long
blong42 Send Email
Jan 14, 2009
11:45 pm
... 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...
1247 Oliver Marshall
olly_marshall Send Email
Jan 16, 2009
9:32 am
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...
1248 rtwalsh26 Send Email Jan 16, 2009
5:00 pm
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&quot; feature like Apache, so I'm...
1249 Brandon Long
blong42 Send Email
Jan 16, 2009
5:02 pm
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...
1250 Brandon Long
blong42 Send Email
Jan 16, 2009
5:12 pm
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,...
1251 rtwalsh26 Send Email Jan 17, 2009
5:56 am
... That works, thanks a lot!...
1252 Oliver Marshall
olly_marshall Send Email
Jan 19, 2009
3:35 pm
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...
1253 andrew_d_kendrick
andrew_d_ken... Send Email
Jan 20, 2009
3:46 pm
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...
Messages 1224 - 1253 of 1451   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help