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 1128 - 1170 of 1347   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1128
Hi I have ported clearsilver (well all the CS and HDF stuff, not the CGI stuff) to Windows, and am experiencing a problem. I do think that it is due to my...
georgeandhelenwilliams
georgeandhel...
Offline Send Email
Feb 8, 2008
11:57 pm
1129
On Feb 8, 2008 3:57 PM, georgeandhelenwilliams < ... Does this mean you have it compiling on the Windows SDK, or Visual Studio? If so, please share your...
Chris Trimble
ctrimble
Online Now Send Email
Feb 9, 2008
12:51 am
1130
Hello George, ... I get the same behavior on any Linux box, but I'm not sure if it is intended or it is a bug. Sincerely, Nick...
Nikolai Kondrashov
nikolai.kond...
Offline Send Email
Feb 9, 2008
7:12 am
1131
Hi, It's awesome that ClearSilver comes with a fastcgi example, because I would have never figured out I had to wrap output functions, I thought fastcgi took...
Bjorn
btipling
Offline Send Email
Feb 10, 2008
8:34 pm
1132
... Yeah, the example was originally from some C++ code someone gave me, that one slipped through. I don't have a fastcgi setup, so I tried to edit it down,...
Brandon Long
blong42
Offline Send Email
Feb 11, 2008
7:32 am
1133
... Nope, this is a bug in the existing code. It looks like auto-escaping wasn't implemented for alt tags. I've filed a bug. ... Yeap, this is a known bug,...
Brandon Long
blong42
Offline Send Email
Feb 11, 2008
8:07 am
1134
Can't believe its taken me this long to get to this, but I've checked in your fix. Brandon ... -- "The rule is, jam to-morrow and jam yesterday, but never jam...
Brandon Long
blong42
Offline Send Email
Feb 11, 2008
8:11 am
1135
I think I'm going to add code to the next version to automatically generate vars for every HTTP_* cgi variable with CapWords, so that should cover this. Thanks...
Brandon Long
blong42
Offline Send Email
Feb 11, 2008
8:18 am
1136
I've added a bunch of these, though not some of the int casts and UNUSED macro. Brandon ... -- "I'll defend to the death your right to say that, but I never...
Brandon Long
blong42
Offline Send Email
Feb 11, 2008
8:38 am
1139
Hi, The INSTALL file says this: --disable-python Disables building of python module --with-python=path Set location of Python Includes ...
tobythain
Offline Send Email
Feb 13, 2008
12:46 am
1140
With default ./configure, clearsilver 0.10.5 won't build. Workaround is to --disable-ruby. # ./configure ... checking for ruby... found /usr/bin/ruby ... ...
tobythain
Offline Send Email
Feb 13, 2008
12:51 am
1142
Hi, I'm using the include function in the template syntax to include a common header for all of my pages. I would like the title to be dynamic, but I can't...
Bjorn
btipling
Offline Send Email
Feb 17, 2008
10:15 pm
1143
If you want to read POST variables with a fastcgi setup in clearsilver and using C you have to wrap read_cb: static int read_cb(void *ctx, char *buf, int...
Bjorn
btipling
Offline Send Email
Feb 18, 2008
6:25 am
1144
Cool, thanks. Brandon ... -- "Also, of course, I'm not allowed to play favorites among my students, so y'know, if I plonked one, I'd have to do every man and...
Brandon Long
blong42
Offline Send Email
Feb 18, 2008
7:32 am
1145
... Yes, that should work. Are you sure you don't have some typo or something? Brandon -- "pretty code isn't always the right thing to do. people spend much ...
Brandon Long
blong42
Offline Send Email
Feb 18, 2008
7:33 am
1146
Hi, Yes everything was spelled correctly and it didn't work. I'm using HDF with evar: now, which sucks because I don't get the syntax hilighting of html...
Bjorn Tipling
btipling
Offline Send Email
Feb 18, 2008
8:24 pm
1147
You could try using the command line cgi_cstest or cstest programs to see if that works. If it does, then I guess it could be something with fcgi... Brandon ...
Brandon Long
blong42
Offline Send Email
Feb 18, 2008
9:32 pm
1148
What you are attempting to do is an extremely common idiom. The fact that it does not work for you suggests that something is very wrong, and I recommend you...
David Jeske
jeskeca
Offline Send Email
Feb 19, 2008
6:50 pm
1153
Hi, The following configure command line leads to build failure on solaris SXDE 1/08 : ./configure --disable-apache --disable-perl --disable-ruby ...
brainwavestaff
Offline Send Email
Mar 13, 2008
8:39 am
1154
Solaris works, but you need to use gmake. Its also possible that we have some gcc specific constructs, I'd be happy to take patches to make them work on...
Brandon Long
blong42
Offline Send Email
Mar 13, 2008
6:40 pm
1158
I am working on a project with 2 UI frameworks: 1) a legacy one with perl + Template Toolkit 2) a second one in PHP, where we are adpoting ClearSilver. While...
xudong_yan
Offline Send Email
Mar 21, 2008
12:38 am
1159
um, I think you'd be better off writing something to convert the templates, rather then trying to extend clearsilver with a fairly differnet syntax. Brandon ...
Brandon Long
blong42
Offline Send Email
Mar 21, 2008
3:11 am
1163
Hi, I try to generate an array filled in a c cgi like this : char values[15][4]; int x; // populate values for (x = 0; x < 15; x++) { sprintf(values[x], "%d",...
Philippe Le Gal
philippe.legal@...
Send Email
Mar 25, 2008
11:39 pm
1164
... Have you tried: <?cs for: v in Values ?><?cs var: v ?><?cs /loop ?>...
Eric Brunson
ericbrunson
Offline Send Email
Mar 25, 2008
11:42 pm
1165
... [snip] ... The right syntax here is: <?cs loop:x=#0,#15 ?><?cs var:Values[x] ?><?cs /loop ?> or even: <?cs loop:x=15 ?><?cs var:Values[x] ?><?cs /loop ?> ...
Brandon Long
blong42
Offline Send Email
Mar 26, 2008
6:59 am
1166
... It's works...so simple... Thanks Philippe...
Philippe Le Gal
philippe.legal@...
Send Email
Mar 26, 2008
7:01 am
1167
Hi Brandon It works fine with the 'each' syntax. I'll try the loop syntax too just to understand it. Is there a bank of examples online with program in C and...
Philippe Le Gal
philippe.legal@...
Send Email
Mar 26, 2008
7:55 am
1168
There are in-line examples in the documentation, but not much from C, its mostly from the HDF directly. Brandon ... -- "Patriotism is the virtue of the...
Brandon Long
blong42
Offline Send Email
Mar 26, 2008
6:03 pm
1169
Brandon Long wrote: On 03/25/08 Eric Brunson uttered the following other thing: Philippe Le Gal wrote: Hi, I try to generate an array filled in a c cgi like...
Eric Brunson
ericbrunson
Offline Send Email
Mar 26, 2008
6:16 pm
1170
Hi, the debian package checker lintian complained about some manpage format problems in the clearsilver package. Attached you find a patch that fixes these...
Lars Kruse
joerg_karoll
Offline Send Email
Mar 27, 2008
8:33 am
Messages 1128 - 1170 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