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

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 1020 - 1058 of 1347   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1020
Hi, I have an hdf tree and I want to traverse it and only show every two first childs of every node (and not more childs). how can I do this? (in a template) ...
zeegco
Offline Send Email
Jul 1, 2007
8:12 am
1021
There's no way to "break" out of an each/loop in ClearSilver. You can loop through everything and only choose to show the first two (maintaining a counter),...
Brandon Long
blong42
Offline Send Email
Jul 1, 2007
4:43 pm
1023
... If the children are numbered, i.e. menu.recentmsgs.0.subject = "What's up" menu.recentmsgs.0.body = "Hey man, what's going on" menu.recentmsgs.1.subject =...
David Terrell
dave_terrell
Offline Send Email
Jul 2, 2007
2:09 pm
1026
Hello, all Today I have finished several hours long hunting of a very unpleasant bug which appeared only on the target platform, which had practically no ...
Nikolai Kondrashov
nikolai.kond...
Offline Send Email
Jul 3, 2007
1:54 pm
1027
... Stupid me, I forgot to exclude function declaration modifications, sorry. Sincerely, Nick...
Nikolai Kondrashov
nikolai.kond...
Offline Send Email
Jul 3, 2007
1:57 pm
1030
Sorry for the late response, I was hoping to get to this much sooner. This looks fine with me, it'll be in 0.10.5 which I hope to get out this week... Brandon ...
Brandon Long
blong42
Offline Send Email
Jul 12, 2007
1:57 am
1031
Cool, yeah. I've made the change, and added it to the various other printf style functions, and caught a couple other minor things. It'll be in the next...
Brandon Long
blong42
Offline Send Email
Jul 12, 2007
2:39 am
1032
I'll try to get bugfix releases out more often. Thanks to everyone both inside of Google and out who contributed to this release. As always, available from...
Brandon Long
blong42
Offline Send Email
Jul 13, 2007
12:26 am
1033
Hi people, Just tried to compile the 0.10.5 package on an Athlon-XP under Fedora 7 (glibc 2.6.3, kernel 2.6.21-1.3228); all went fine until the C# tests: ...
Paul Wayper
paul_wayper
Offline Send Email
Jul 18, 2007
4:43 am
1034
... I'd say so: [paulway@baptest mixes]$ perl ~/coding/perl/mixulator.pl test.txt perl: symbol lookup error: ...
Paul Wayper
paulway.geo
Offline Send Email
Jul 18, 2007
4:55 am
1035
... /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/auto/ClearSilver/ClearSilver.so ... I thought about this a bit more and realised that this wasn't...
Paul Wayper
paulway.geo
Offline Send Email
Jul 18, 2007
5:11 am
1036
... Yes, actually. I've worked it out - quite simple really. For some reason an old and/or outdated version of the ClearSilver.so library was being put in...
Paul Wayper
paulway.geo
Offline Send Email
Jul 19, 2007
1:23 pm
1039
With this #define: #define nerr_raise(e,f,a...) \ nerr_raisef(__PRETTY_FUNCTION__,__FILE__,__LINE__,e,f,a) this will generate a warning: nerr_raise...
raphael.huck
Offline Send Email
Jul 27, 2007
12:18 pm
1040
Line 164 of 'cgi/html.c', there is: parts = (struct _parts *) realloc (parts, sizeof(struct _parts) * part_count); Couldn't this be a potential memory leak in...
raphael.huck
Offline Send Email
Jul 30, 2007
3:03 pm
1041
Yes, that would be a memory leak if the realloc fails. Its also not the only case of this in the code. If people think its worth fixing, ok. Brandon ... -- ...
Brandon Long
blong42
Offline Send Email
Jul 30, 2007
10:36 pm
1042
Hi, Here's what I've found with DMALLOC: $ dmalloc_summarize.pl fastcgi < fastcgi.10983 size count gross function 1494 401044 total 284...
raphael.huck
Offline Send Email
Jul 31, 2007
2:17 pm
1043
Anything that returns a NEOERR is allocating memory on error. You must check the return value and call one of the methods to free the data, usually one of: ...
Brandon Long
blong42
Offline Send Email
Jul 31, 2007
9:05 pm
1044
Makes sense. Brandon ... -- "Being intelligent is not a felony. But most societies evaluate it as being at least a misdemeanor." -- Robert A. Heinlein ...
Brandon Long
blong42
Offline Send Email
Jul 31, 2007
9:15 pm
1045
Hello, I'm having trouble compiling clearsilver on i386 FreeBSD. What can I do to fix the pthread errors I'm seeing? Also, is this line of the ./configure...
kazez_ultralingua
kazez_ultral...
Offline Send Email
Aug 1, 2007
4:19 pm
1046
I've made a simple example to try and understand where these leaks come from: void fcgi_begin(void) { NEOERR *err; err = cgi_init(&cgi, NULL); ...
Raphaël HUCK
raphael.huck
Offline Send Email
Aug 2, 2007
1:48 pm
1047
Is this the latest version? Much older versions used to use a FreeList for NEOERR's instead of always allocating new ones... but that still seems odd. Hmm,...
Brandon Long
blong42
Offline Send Email
Aug 2, 2007
11:14 pm
1048
... Yes, I'm using the latest version (0.10.5). At the beginning of neo_err.c, there is this line: static int UseFreeList = 0; So I guess the FreeList is not...
Raphaël HUCK
raphael.huck
Offline Send Email
Aug 3, 2007
8:23 am
1049
... I've found more information. I'm using the following wrappers for FastCGI: /* FCGI_fread wrapper for ClearSilver CGI */ int read_cb(void *ptr, char *data,...
Raphaël HUCK
raphael.huck
Offline Send Email
Aug 3, 2007
9:48 am
1050
Hello, All. It looks like I've stumbled upon one more links-related _set_value bug. When using hdf_set_symlink(hdf, NULL, target) to make node itself a link,...
Nikolai Kondrashov
nikolai.kond...
Offline Send Email
Aug 3, 2007
11:11 am
1053
Hello, all! I'm not sure whether it is a bug or just design inconsistency, but hdf_dump_cb (used, for example, by hdf_write_file) ignores nodes without both...
Nikolai Kondrashov
nikolai.kond...
Offline Send Email
Aug 22, 2007
11:33 am
1054
... On the second thought that extra space, may contribute to extra readability, sorry if it was intentional. Sincerely, Nick...
Nikolai Kondrashov
nikolai.kond...
Offline Send Email
Aug 22, 2007
2:59 pm
1055
Hello, I have a project website using Trac that I am working on, which uses Python and Clearsilver. In my Python code I have a string that contains the HTML...
Jeremy Carey
lsd_puppy
Offline Send Email
Aug 23, 2007
10:12 am
1056
... ClearSilver was made almost specifically for avoiding this exact technique. This technique greatly reduces maintainability of your code. However you ...
Nikolai Kondrashov
nikolai.kond...
Offline Send Email
Aug 23, 2007
10:43 am
1057
... So, something is escaping the variable. It could be that you're set up to use the default escaping mechanism in more recent clearsilver releases, in which...
Brandon Long
blong42
Offline Send Email
Aug 23, 2007
11:54 pm
1058
Thanks. Probably just didn't think about nodes without values or sub-nodes as that important, but seems no reason not to include them. I'll put this in the...
Brandon Long
blong42
Offline Send Email
Aug 24, 2007
12:25 am
Messages 1020 - 1058 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