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

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

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 48 - 77 of 1347   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
48
folks, the clearsilver docs have a minor flaw: the possessive form of "it" is misused. a standard error, thanks to the inane structure of the english language....
major dennis bloodnok...
bloodnok
Offline Send Email
Feb 5, 2003
12:21 am
49
Thanks for pointing this out. I think I fixed them all now, and you're right, there were quite a few mistakes. ... -- David Jeske (N9LCA) +...
David Jeske
jeskeca
Offline Send Email
Feb 5, 2003
1:33 am
50
What is the difference between an attribute (attr) and a value for a node? What would an attr look like in a text hdf representation? How (and why) would it be...
djjanowski
Offline Send Email
Mar 11, 2003
1:43 am
51
I do not understand what attr is and how it is different from values. Can someone explain? Dan...
Dan Janowski
djjanowski
Offline Send Email
Mar 11, 2003
1:47 am
52
I have completed an initial port of Hdf to Ruby. It is missing the attr get/set. This is both because of my not understanding what they are and because of some...
Dan Janowski
djjanowski
Offline Send Email
Mar 11, 2003
1:48 am
53
This makes perfect sense and is what I would have expected. At first reading of your [Lang] example I was unsure how they helped, but I was thinking more along...
Dan Janowski
djjanowski
Offline Send Email
Mar 11, 2003
2:41 am
54
... An attribute is like a "flag" for a node. Philosophically, when you define an attribute, that attribute should be valid for ANY node. For example, whenever...
David Jeske
jeskeca
Offline Send Email
Mar 11, 2003
3:02 am
55
... Yes, you are correct. ... I don't think a CST should be capable of using of Attrs. First, because CSTs never scan over all the attributes. Second, because...
David Jeske
jeskeca
Offline Send Email
Mar 11, 2003
3:16 am
56
This is a pretty important typo correction: ... ^^^^^^^^^^ elements -- David Jeske (N9LCA) + http://www.chat.net/~jeske/ + jeske@......
David Jeske
jeskeca
Offline Send Email
Mar 11, 2003
3:18 am
57
This is why I like HDF instead of XML for this. You (plural) made a very good choice in putting singular values at the nodes. I think it is great and largely...
Dan Janowski
djjanowski
Offline Send Email
Mar 11, 2003
4:15 am
58
This looks correct to me but I am interested in an authoritative opinion. I realize this is in Ruby, but it should be intelligible. Having said that, please...
Dan Janowski
djjanowski
Offline Send Email
Mar 11, 2003
4:21 am
59
... Thanks! That's our experience as well. There are some tradeoffs in not having HDF understand "lists" of things, but overall it seems to work well. I've...
David Jeske
jeskeca
Offline Send Email
Mar 11, 2003
7:15 am
60
... Looks great to me! Is it common to omit the function ()s in Ruby? I wrote a bit of Ruby code a while back and it definetly has ()s. -- David Jeske (N9LCA)...
David Jeske
jeskeca
Offline Send Email
Mar 11, 2003
7:20 am
61
... I have just taken a quick look at the CGI stuff. It seems fine, especially since you have already provided for IO wrapping. I am using this in a FastCGI...
Dan Janowski
djjanowski
Offline Send Email
Mar 11, 2003
1:24 pm
62
I was using an expression of the form: <?cs if:?Query.Sync[field] ?> As near as I can tell, this always evaluated to 'false'. When I removed the '?', I got...
Chuck Simmons
cesium62
Offline Send Email
Mar 31, 2003
11:46 pm
63
Yeap, this is a bug. This is a bit tough to fix at the moment, I'll have to ponder parse_expr2 a bit. Its getting the order of evaluation out of order, so...
Brandon Long
blong42
Offline Send Email
Apr 1, 2003
3:22 am
64
Release Notes for Clearsilver 0.8.1 4/4/2003 ... There are a couple major changes to Clearsilver with this release, though for the most...
Brandon Long
blong42
Offline Send Email
Apr 5, 2003
1:18 am
65
Hi guys, I would like to find out if there's a way I can get access to the name of the item we're currently iterating on for use in another structure's key: ...
ctrimble
Online Now Send Email
Apr 15, 2003
1:28 am
66
... I've long wanted us to have "name(foo)" as a function, and then you could do: <?cs each: st1 = some_structure ?> <?cs var:st1.blahblah ?> <?cs...
David Jeske
jeskeca
Offline Send Email
Apr 15, 2003
1:36 am
67
I usually include the ID or counter number as a data item whenever exporting some data to ClearSilver/HDF, and rely on nested each statements when I cannot use...
Alan Braverman
alanb42
Online Now Send Email
Apr 15, 2003
1:51 am
68
Fine, fine, the next version will have the name() function in it. Brandon ... -- "A front-line tech support specialist who has 'had enough' will buy a bow and...
Brandon Long
blong42
Offline Send Email
Apr 15, 2003
11:49 pm
69
Hi, I'm trying to use clearsilver to build a cgi program in straight C in the following basic pattern: 1. cgi_init( &cgi, 0 ) - to read and parse the input...
rbarooah
Offline Send Email
May 9, 2003
6:52 pm
70
... You want to use: hdf_get_value( cgi->hdf, NAME, defaultVal ); hdf_set_value( cgi->hdf, NAME, VAL ); To walk the tree, use: HDF *node; node = hdf_get_child(...
Mark Fletcher
snoovler
Offline Send Email
May 9, 2003
7:25 pm
71
Hi, I am using clearsilver at run-time as a way of processing cgi requests and generating template based output as part of a web based user-interface. I'd like...
rbarooah
Offline Send Email
Jun 11, 2003
10:48 pm
72
... That's pretty interesting. Why do you need the macros replaced at compile-time? Is performance a problem? Structural? Why not just put this "compiled"...
David Jeske
jeskeca
Offline Send Email
Jun 11, 2003
11:55 pm
73
... Interesting. I've thought about this a bit myself, recently, since the parser currently works by doing a strchr for < and then just checking if the next...
Brandon Long
blong42
Offline Send Email
Jun 12, 2003
1:04 am
74
... template, ... HDF, ... Yes - I have considered doing this and it is of course possible. The constraints that have led me to decide to do it at compile...
rbarooah
Offline Send Email
Jun 12, 2003
7:02 pm
75
Interseting.. ... This is a great reason for this feature. I just talked to Brandon, and this is what we will do: Add an HDF configuration variable...
David Jeske
jeskeca
Offline Send Email
Jun 13, 2003
1:54 am
76
The ruby work was sent to David and Brandon. It will hopefully be rolled in. Dan ... -- Dan Janowski danj@......
Dan Janowski
djjanowski
Offline Send Email
Jun 17, 2003
2:11 am
77
I am trying to build ClearSilver on Windows, against Python2.1 and using the Microsoft compiler. The compiler is complaining about the macros with variable...
acmorse
Offline Send Email
Jul 7, 2003
4:35 pm
Messages 48 - 77 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