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

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 346 - 375 of 1347   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
346
I tried to build clearsilver(0.9.12) on cygwin(1.5.11), but got some problems. I had modified *rules.mk* to locate correct *PYTHON_LIB* and *PYTHON_SITE*, but...
jinghongcoxchen
Offline Send Email
Oct 1, 2004
7:07 pm
347
Hi, I may have found a problem with the htmlStrip function. ... 'C ' Is that normal? thanks, Kevin...
Kevin Lewandowski
kevinsl
Offline Send Email
Oct 5, 2004
3:34 pm
348
Hmm. It attempts to convert ampersand html attributes, and apparently it doesn't handle the broken html case of an un-escaped ampersand. Brandon ... -- "i...
Brandon Long
blong42
Offline Send Email
Oct 5, 2004
3:55 pm
349
I don't see a way to modify the headers sent by neo_cgi. Is the best way to do this to just output the desired headers before calling display? would this...
culleyharrelson
Offline Send Email
Oct 6, 2004
3:48 pm
350
... You can set the output encoding, and other headers, via HDF variables. You can see which variables to set here: ...
Brandon Long
blong42
Offline Send Email
Oct 6, 2004
4:08 pm
351
I have created vim syntax files for *.cs and *.hdf: http://vim.sourceforge.net/scripts/script.php?script_id=1100 culley...
culleyharrelson
Offline Send Email
Oct 9, 2004
6:06 am
352
I solved these problems by using Scons to do the builds for the neo libraries and static.cgi. Scons is a python based make replacement which is smart enough to...
sskubikpeplaski
Offline Send Email
Oct 9, 2004
6:07 am
353
Viewing the debug output doesn't work for me after setting the charset with: self.ncgi.hdf.setValue('cgiout.ContentType', "text/html; charset=%s" % ...
culleyharrelson
Offline Send Email
Oct 20, 2004
1:29 am
354
Yes, because it doesn't think the content type is text/html anymore (its dumb). You can get the same affect by setting cgiout.charset to iso-5589-1 instead of...
Brandon Long
blong42
Offline Send Email
Oct 20, 2004
1:31 am
355
Hi List, why do I get this: <!-- 0.000:0 --> at end of the html output of cgi_display and how can I prevent it? Gerald...
Gerald Dachs
gda@...
Send Email
Oct 21, 2004
8:54 am
356
... It's the amount of time the CGI engine took to process the page. cgi/cgi.c: do_timefooter = hdf_get_int_value (cgi->hdf, "Config.TimeFooter", 1); ...
David Terrell
dave_terrell
Offline Send Email
Oct 21, 2004
2:46 pm
357
On Thu, 21 Oct 2004 09:45:54 -0500 ... Thanks Gerald...
Gerald Dachs
gda@...
Send Email
Oct 21, 2004
5:48 pm
358
Hi folks, We're trying to build ClearSilver on an AMD64 box without much success. There have been other posts to the list on this topic: ...
Christopher Lenz
christopher_...
Offline Send Email
Oct 22, 2004
3:43 am
359
I don't have access to any 64bit machines, but I played with an amd64 cross compiler, and google'd the resulting error message and got this result: ...
Brandon Long
blong42
Offline Send Email
Oct 22, 2004
4:20 am
360
... PIC is, as I recall, always safe but potentially a minute performance loss. It should always be used for code that's going to end up in a shared library,...
David Terrell
dave_terrell
Offline Send Email
Oct 22, 2004
5:21 pm
361
Good day folks, If I have a dataset: Referring { 0 { id = 1 junk = blue } } The following condition is not True: <?cs if:Referring ?>. Right now I've added a...
Chris Green
cmg@...
Send Email
Oct 22, 2004
6:38 pm
362
There is a subcount operator, which counts the number of child nodes (not recursively, just directly) It is relatively new (there was a len operator before...
Brandon Long
blong42
Offline Send Email
Oct 22, 2004
6:40 pm
363
... Foo = bar Foo { baz = 1 boo = 2 } this is valid hdf, so what does len(Foo) do? Brandon -- "Isn't it amazing how much fun two people can have just by taking...
Brandon Long
blong42
Offline Send Email
Oct 22, 2004
10:25 pm
364
... That Just Worked :-) ... I can't borrow you a login, but have borrowed a login myself... if there's anything I can test for you, just mail me directly. ...
Christopher Lenz
christopher_...
Offline Send Email
Oct 22, 2004
10:25 pm
365
ok, so I run the following, and get an error regarding the "rules.mk" file.. any ideas? i've tried configure with different options and they all do the same...
allknwing
Offline Send Email
Oct 22, 2004
10:38 pm
366
... So is the len() op going to be removed anytime soon? I actually like it (nice, short and simple) and find the name more obvious than "subcount". And since...
Christopher Lenz
christopher_...
Offline Send Email
Oct 22, 2004
10:38 pm
367
... Install and use GNU make. You might need to invoke it as gmake. -- David Terrell dbt@... ((meatspace)) http://meat.net/...
David Terrell
dave_terrell
Offline Send Email
Oct 22, 2004
11:37 pm
368
I'm running into the following clearsilver problem: I have a page that calls <?cs include:"some-standard-macro-defs.cs" ?> and then later calls <?cs ...
Joseph Smarr
jsmarr
Offline Send Email
Oct 22, 2004
11:57 pm
369
Looks like someone went ahead and made a php extension module: http://www.geodata.soton.ac.uk/software/php_clearsilver/ I know a couple of people were looking...
Brandon Long
blong42
Offline Send Email
Oct 28, 2004
6:36 pm
370
While trying to write some CS code to generate pretty dates (e.g. 11 -> "November") we ran into the following, seemingly bizarre CS parser crash: The following...
Joseph Smarr
jsmarr
Offline Send Email
Nov 4, 2004
1:43 am
371
hmm. Yes, I left it calling strtol with a 0 base to allow for hex, but octal seems like a bad idea. Not sure what the better fix is: 1) Still allow hex by...
Brandon Long
blong42
Offline Send Email
Nov 4, 2004
2:51 am
372
My vote would be #2 but I'd be happy with #1 as well. I think even with better documentation, this bug would still have really confused me (unless the cs parse...
Joseph Smarr
jsmarr
Offline Send Email
Nov 4, 2004
3:26 am
373
The number is likely being interpreted as Octal since a prefix 0 is a common lead-in for octal notation. As such, 08 and 09 are not legal numbers but 010 is...
Dan Janowski
djjanowski
Offline Send Email
Nov 4, 2004
3:33 am
374
I vote for #3 with eventually improving the error message. Having hex and octal available is useful and eventually necessary for someone. Is there a way to ask...
Dan Janowski
djjanowski
Offline Send Email
Nov 4, 2004
6:39 am
375
... What about having a base function? base("ABCD", 16) or base("777", 8) return the decimal equivalent. That should solve anyone's need for the functionality...
Chris Green
cmg@...
Send Email
Nov 5, 2004
2:36 am
Messages 346 - 375 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