Hello, I am going to start development of web application for an embedded system. I think ClearSilver is an excellent choice. I would like to know Whether...
1365
Brandon Long
blong42
Mar 6, 2010 7:39 am
That's kind of an open ended question. Yes, you can write an AJAX app in clearsilver, but clearsilver doesn't really have much to assist you in this. There's...
1366
oglausa
Mar 6, 2010 9:30 am
You can easily create Ajax applications with Clearsilver. Smart way is to use JSON for messaging format and you can use Json-C or Yajl with your project....
1367
bxxx
vincebouix
Mar 29, 2010 5:24 pm
Hello, I use clearsilver with fastcgi/lighttpd. I have problem in this file : hello.html : <h1><?cs var:_("hello world !") ?></h1> After Refresh my page, error...
1368
caox
caox@...
Apr 19, 2010 7:52 am
I am a new user of clearsilver and I am trying some features of it. when testing the build-in escape functions such as url_escape and html_escape, some error...
1369
Brandon Long
blong42
Apr 19, 2010 7:59 am
That means you haven't included the escape functions in your program. In C, calling cgi_register_strfuncs will add them all. I think the Java and Python ...
hi, I found a tiny bug when I use rand_name() in util/test/hdftest.c, This function may produce name with ' include. so, in other hdf function, the name is...
1371
caox
caox@...
Apr 19, 2010 3:50 pm
got it. thanks a lot. I guess it may be more helpful of the document if this could be included. ÔÚ 2010-4-19£¬ÏÂÎç3:59£¬ Brandon Long дµÀ£º ...
Sure, any suggestions on where it should be mentioned? Brandon 2010/4/19 caox <caox@...> ... Sure, any suggestions on where it should be mentioned?...
1374
caox
caox@...
Apr 20, 2010 1:08 am
add the description of cgi_register_strfuncs to references of c api. Besides, some code examples would be helpful for new guys like me when reading the ...
hdftest is ok, I used the rand_name() in another test: produce an 10 child random hdf, write it into a string, and then use hdf_read_string() to reproduce the...
1376
Brandon Long
blong42
Apr 20, 2010 3:42 am
If you'd like to send me a diff with the new test and fix, I'd be happy to include it. Or, just the test, and I can see about creating a fix. Brandon ... If...
1377
Brandon Long
blong42
Apr 20, 2010 5:06 am
Added documentation to the cgi.h and updated the API docs to the latest version. Brandon 2010/4/19 caox <caox@...> ... Added documentation to the...
I am trying to run the hello Example in the Python Introduction section using the Cherokee Web Server. I made a directory /cgi-bin in the root directory and...
1380
Brandon Long
blong42
Jun 6, 2010 10:25 pm
I've never used the Cherokee web server myself, but I doubt that is the correct place to put your /cgi-bin/ directory. You should look at this page here: ...
1381
tiebingzhang
Jun 24, 2010 10:06 pm
I have found a possible bug. Version: 0.10.5 Description: clearsilver does not process POST with "Content Type set to application/x-www-form-urlencoded;". Note...
1382
Brandon Long
blong42
Jun 24, 2010 10:09 pm
Thanks for the report. Yes, we know about the bug, its fixed in head of tree, you can see the change here: ...
1383
tiebingzhang
Jun 24, 2010 11:56 pm
Thank Brandon. I did not know there is a newer version than 0.10.5. Do you plan to release a new version any time soon. When I checked out the SVN version...
1384
Brandon Long
blong42
Jun 25, 2010 12:05 am
You need to grab the now separate streamhtmlparser package from http://code.google.com/p/streamhtmlparser/ Though you often have to actually compile it. I may...
1385
tiebingzhang
Jun 25, 2010 4:28 pm
Hi, I have been using HDF as my "database", and it has been working beautifully. Now, I am looking for two more things that can make my life a little easier...
1386
cakoose
Jul 1, 2010 3:14 am
Hello! I need to implement the same dynamic web page in Python and Java. Though the request-handling and data-retrieval code will need to be written twice,...
1387
Chris Trimble
ctrimble
Jul 1, 2010 4:22 am
What about using Jython and building the bulk of your logic/templating with Java? C...
1388
Brandon Long
blong42
Jul 1, 2010 5:38 pm
Currently, both the Python and Java implementations rely on the C library (native code). We do have a pure-Java version here at Google, and its our goal to...
hi I used clearsilver39;s subversion code recently. And found some issues: 1, cs_printf() should use vprintf instead of printf. 2, cgiwrap_init_std() should be...
1391
Brandon Long
blong42
Aug 26, 2010 9:09 am
Thanks Brandon...
1392
nevereatbabies
Sep 5, 2010 3:58 am
I'm trying to create a shortcut macro create form input boxes with values. I tried something like this: <?cs def:form.input(path) ?> <input type="text"...
1393
Brandon Long
blong42
Sep 8, 2010 8:07 am
Sorry, should have mentioned this when it was made available. My co-workers have put the finishing touches on the pure-Java version of ClearSilver. Its...