I've been having a similar problem. I'm trying to get clearsilver compiled on os x 10.4 to use it's ruby libraries. I got it compiled no problem on debian. I'm...
884
Raphaël HUCK
raphael.huck
Dec 1, 2006 4:31 pm
Hi, thanks for adding string.find in 0.10.4 (Change 2006/10/12 by griff - http://www.clearsilver.net/downloads/ChangeLog.CLEARSILVER-0_10_4). It works great! ...
885
Brandon Long
blong42
Dec 1, 2006 6:29 pm
I've added it to the docs. Its also easier now, at least from C, to add your own functions. See the cs_arg_parse and cs_register_function calls in cs.h I'm...
886
lars
joerg_karoll
Dec 2, 2006 2:07 am
sorry for double posting - please ignore it Lars...
887
culleyharrelson
Dec 5, 2006 11:14 am
I am using Clearsilver + Python + Apache 2.X + mod_python + postgresql 8.0 on a system running FreeBSD 4.10 and as my application gets busier I am running into...
888
Brandon Long
blong42
Dec 5, 2006 10:50 pm
... hmm. I can't think of anything in particular that is ClearSilver specific. Yes, by default clearsilver will open each cs/hdf file, but it should...
889
Raphaël HUCK
raphael.huck
Dec 8, 2006 2:42 pm
Hi, I have separated the menu, and then include it in every page: page.c page.cst page.hdf and menu.cst menu.hdf In "page.cst" I just included "menu.cst". But...
890
Brandon Long
blong42
Dec 8, 2006 8:09 pm
In page.hdf you can do: #include "menu.hdf" Brandon ... -- program, n.: A magic spell cast over a computer allowing it to turn one's input into error messages....
891
Raphaël HUCK
raphael.huck
Dec 11, 2006 2:46 pm
Is it possible to do something like this? <?cs set:iv1 = string.slice(CGI.ScriptName, 1, 2) ?> <?cs each:item = Menu ?> <?cs if:iv1 == name:item ?>selected<?cs...
892
Raphaël HUCK
raphael.huck
Dec 11, 2006 5:04 pm
Thanks! Maybe you can add it to the doc? On http://www.clearsilver.net/docs/man_hdf.hdf perhaps. --Raphael...
Hi Folks, I've got a problem where the template structure I've got can lead to templates including themselves further down the include tree. This leads to an...
895
Brandon Long
blong42
Dec 21, 2006 11:55 pm
... I can fix the segfault, but not the infinite recursion. How is the recursion supposed to stop? ... So, you're saying that X includes Y which can include...
896
Chris Trimble
ctrimble
Dec 22, 2006 12:07 am
I'm curious as to the drive behind using Clearsilver for this application. Why not use XSLT to transform your XML data, or write your XML data with a DOM...
897
IT Jobs
itnonit
Dec 26, 2006 7:33 am
Dear All, We are looking For Perl & MySQL candidates for a CMMi Software company in Chennai Skill: Perl & MySQL Work Location: Chennai Exp: 2+Years If you are...
898
zeegco
Dec 30, 2006 8:48 am
hi all, ... ncg=neo_cgi.CGI() ncg.parse() ncg.hdf.readFile(csDocsPath + "login.hdf") res = val.validator(ncg.hdf.top()) ... what is "top()" and what is its...
899
zeegco
Dec 30, 2006 11:34 am
hi all, suppose we have read a hdf file and then we read another. what would occur? and, do we have access to first hdf file? in example: (Python) ncg =...
900
Brandon Long
blong42
Dec 30, 2006 7:33 pm
It returns the top node in the hdf tree, in this case it will return itself since it is the top node in the tree. Brandon ... -- "I need to either get a new...
901
Brandon Long
blong42
Dec 30, 2006 7:35 pm
... It loads both files into the hdf tree. Items with the same name in the second file will override the previous ones, items at the same level will appear...
903
zeegco
Jan 6, 2007 6:37 am
hi all, how we can handle file uploads? I know that when we fill a form and send it. we can handle values by statements like: (in Python) ncg=neo_cgi.CGI() ...
904
Brandon Long
blong42
Jan 8, 2007 5:35 am
There have been a couple messages on the group about using clearsilver for file uploads, see: http://tech.groups.yahoo.com/group/ClearSilver/message/429 ...
906
a_oki
Jan 16, 2007 9:32 am
I am a newbie to CLearSilver and I am using CS on my TRAC template. I want to search a string to see if it ends in a file or a directory. The character I am...
Hello, You're looking for the string.find function (pass "." as the substr). For more information: http://www.clearsilver.net/docs/man_filters.hdf Regards....
908
Jérémie Lumbroso
jl_harpsichord
Jan 16, 2007 3:16 pm
Hello, I've looked over the documentation but I can't find any mention of being able to include a template from a template. Is it possible? Best Regards, ...
909
Gerald Dachs
gdachs
Jan 16, 2007 4:22 pm
On Tue, 16 Jan 2007 16:06:25 +0100 ... really? ... http://www.clearsilver.net/docs/man_templates.hdf#include Gerald...
910
lars
joerg_karoll
Jan 17, 2007 12:27 am
Hi, ... hehe - the documention of clearsilver is short, concise and really worth reading: http://www.clearsilver.net/docs/ maybe you will be especially...
911
Damon Haidary
haidary@...
Jan 18, 2007 2:09 pm
I'm having trouble compiling on win using MinGW. Seems like the cgi lib is failing but I'm pretty new to compiling. It also fails all regression tests but when...
915
azurebell
Jan 26, 2007 12:23 am
Hi, I have read every page of your doco - and can not find out how to script using PHP in ClearSilver. Also, I am not even sure how to get ClearSilver working...
918
Brandon Long
blong42
Jan 28, 2007 1:17 am
... There isn't a direct way to use ClearSilver with PHP. It would certainly be possible to wrap the ClearSilver libraries for use with PHP, but there's...
919
Jay Loden
nitwhite
Jan 29, 2007 8:41 am
In case this helps anyone else, I figured I'd post some sample code I used to get a progress bar working with Clearsilver (Python back end) Caveats: * This...