Search the web
Sign In
New User? Sign Up
ClearSilver
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

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

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 442 - 471 of 1347   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
442
... I believe that clearsilver doesn't know that you switched the locale. Sorry, I use this functionality only from C, there a call to setlocale is enough to...
Gerald Dachs
gda@...
Send Email
Mar 1, 2005
9:17 am
443
I was wondering how can I generate a quote from within an expression that concatenates strings? For instance in the following: <?ct def:my_macro(param) ?> <?ct...
neurondata
Offline Send Email
Mar 7, 2005
12:52 am
444
How about doing something like this? <?cs def:my_macro(param) ?> <?cs var:"<" + "?cs var:my_func(" ?>"foo<?cs var:param + "bar" ?>"<?cs var:") ?" + ">" ?> <?cs...
Erik Rose
grincheroo
Offline Send Email
Mar 7, 2005
8:49 pm
445
Hi, I am having problems building ClearSilver. Although the build of the C program works fine (I can use static.cgi without problems), I find no way to pass...
angel_faus_tomas
angel_faus_t...
Offline Send Email
Mar 8, 2005
5:28 pm
446
Ok, I just uploaded 0.9.14 which fixes this problem. http://www.clearsilver.net/downloads Brandon ... -- program, n.: A magic spell cast over a computer...
Brandon Long
blong42
Offline Send Email
Mar 8, 2005
6:26 pm
447
I believe there's a memory (double free) problem that occurs in lvar_eval where the function think it has ownership of a string stored in the hdf dataset....
Joe Shear
shearj
Offline Send Email
Mar 9, 2005
4:19 am
448
Hi there! I've compiled ClearSilver on a dual Opteron machine (having found the tip of adding -fPIC to CFLAGS in the rules.mk file) and installed it. I can now...
Paul Wayper
paulway.geo
Offline Send Email
Mar 9, 2005
6:46 am
449
In the course of wrapping an additional façade around CS's existing Python interface, I ran into a question about the design of CS itself: namely, why expose...
Erik Rose
grincheroo
Offline Send Email
Mar 9, 2005
6:20 pm
450
... In C, you can replace the HDF object that is attached to the CS Parser (its just a struct) though that functionality isn't exposed to python or the other...
Brandon Long
blong42
Offline Send Email
Mar 10, 2005
2:47 am
451
This should be fixed by 0.9.14, which I released earlier this week. Brandon ... -- ¨Unlike the U.K. House of Commons, which runs on ritual, and thus rarely...
Brandon Long
blong42
Offline Send Email
Mar 10, 2005
2:50 am
452
Hasn't been increased in some time. Thank you. Patch following to help: diff -ur clearsilver-0.9.14.orig/python/setup.py clearsilver-0.9.14/python/setup.py ...
Administrator
sbcltdcom
Offline Send Email
Mar 15, 2005
12:13 am
453
Just for the record, the following is a batch file I use to compile clearsilver and python under Windows and MingW32. This does assume that you have created...
Administrator
sbcltdcom
Offline Send Email
Mar 15, 2005
12:13 am
454
Hi, i have to use ClearSilver with perl(mod_perl). please I need help from scratch how to use clearsilver with perl with some examples?? thanks sandhya. ...
sandhya pawar
sandhya_spia
Offline Send Email
Mar 21, 2005
11:02 am
455
Hi there! A bit of simple code that loads and displays a ClearSilver template in Perl would be: ######################################## sub...
Paul Wayper
paulway.geo
Offline Send Email
Mar 22, 2005
12:04 am
456
Hi there, Just wondering if any feature exists in ClearSilver that allows you to format a number when it's being output. I'm looking to format a real number...
Paul Wayper
paulway.geo
Offline Send Email
Mar 22, 2005
11:00 pm
457
Thanks for the pointer. I've been thinking of adding these types of formatters, but haven't gotten around to it yet. Especially for floats, you're stuck with...
Brandon Long
blong42
Offline Send Email
Mar 22, 2005
11:44 pm
458
Hello all, I'm trying to add clearsilver to my Arch Linux box. I'm trying to do it "the right way", by packaging it up. I've come across a snag that is fixable...
Kevin Williams
kevwil@...
Send Email
Mar 25, 2005
6:38 pm
459
The problem you are having is related to the internals of Ruby itself. When I built the extension I did not give it much consideration. The install.rb gets...
Dan Janowski
djjanowski
Offline Send Email
Mar 25, 2005
8:03 pm
460
Is there a way to save CGI request (and its environment) so code can be tested outside of the web server?...
sergeiga
Offline Send Email
Mar 30, 2005
6:26 am
461
... So... sorta. Using the C CGI Kit, you can have a file of KEY=VALUE pairs per line. You can then specify that file on the command line, and calling ...
Brandon Long
blong42
Offline Send Email
Mar 30, 2005
9:55 am
462
Compilation under windows has always been painfull for me, because I've always played under linux or other unixes. I just compiled the python binding for ...
PCSML
public_csml
Offline Send Email
Apr 2, 2005
8:21 pm
463
... I've made a few changes to this routine that people might be interested in. It can now also write out an HDF file in either unstructured (everything as...
Paul Wayper
paulway.geo
Offline Send Email
Apr 3, 2005
11:03 am
464
So I'm trying to build ClearSilver on Solaris 9(sparc). I am using the GNU binutils, gmake, and gcc 3.4.2. None of the /usr/ccs/bin stuff is in my path. I get...
Ed
borzwazie
Offline Send Email
Apr 5, 2005
10:01 pm
465
I'm registering a function of my own, but my function is not called when a node is not present. <?cs var:my_func(NoneExistentNode) ?> I was expecting a NULL....
Haiping Zhao
hz0451
Offline Send Email
Apr 7, 2005
5:16 pm
466
Hmm, yes, the code in csparse.c:_str_func_wrapper does indeed not call the function if the var doesn't exist. It also doesn't call the function if its passed...
Brandon Long
blong42
Offline Send Email
Apr 8, 2005
2:23 am
467
Thanks. I worked around the problem by doing this, <?cs var:my_func(""+NoneExistentNode) ?> -Haiping ... From: Brandon Long [mailto:blong@...] Sent:...
Haiping Zhao
hz0451
Offline Send Email
Apr 8, 2005
2:57 am
468
Hi all, i have a problem with the static.cgi. i installed clearsilver on my suse machine. and after finishing and copying the "static.cgi" to my apache cgi-bin...
Komaii - thrixxx
komaii@...
Send Email
Apr 28, 2005
9:44 pm
469
So, static.cgi is not meant to be run directly, its meant to be run with a CS template. Typically, this is done by setting up apache to invoke static.cgi when ...
Brandon Long
blong42
Offline Send Email
Apr 28, 2005
9:49 pm
470
Hi, i got 2 simple questions: 1.) How to use the CGI Kit from Perl? (Couldnt find any example) 2.) Is it possibly to wrap the CGI Kit in FastCGI calls? ...
ircmatratze
Offline Send Email
Apr 29, 2005
4:01 pm
471
Thats what i excatly added to the Apache configuration. Must be a problem with "trac" from edegwall. If i browse the code via trac i cant see that the...
Komaii - thrixxx
komaii@...
Send Email
May 9, 2005
3:39 am
Messages 442 - 471 of 1347   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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