Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

ClearSilver

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 335
  • Category: Open Source
  • Founded: Jul 2, 2001
  • Language: English
? 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.

Messages

Advanced
Messages Help
Messages 9 - 38 of 1451   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
9 John L Cwikla
cwikla Send Email
Nov 7, 2001
10:05 pm
I wrote the following that I call the LinkANator(tm). The idea is that when creating an href, generally speaking only one item tends to change (though this...
10 Brandon Long
blong42 Send Email
Nov 7, 2001
11:28 pm
... Um, couldn't you just (in the hdf file) do: LinkBuild.0.name = s LinkBuild.0.value : CGI.cat_faq.SortBy LinkBuild.0.default = p etc? ... evar is "legal" in...
11 John L Cwikla
cwikla Send Email
Nov 7, 2001
11:38 pm
Ah, the ":" syntax works just groovilishissly. ... From: "Brandon Long" <blong@...> To: <clearsilver@yahoogroups.com> Sent: Wednesday, November 07,...
12 Rob Wheeler
rob_wheeler@... Send Email
Nov 7, 2001
11:58 pm
... How about <?cs if: *value == default ?>? -R __________________________________________________ Do You Yahoo!? Find a job, post your resume. ...
13 John L Cwikla
cwikla Send Email
Nov 8, 2001
12:07 am
Yeah, after I sent it I thought * would have been better, but because of the ":" syntax I don't know if it's needed anymore. ... From: "Rob Wheeler"...
14 Brandon Long
blong42 Send Email
Jan 12, 2002
1:54 am
Ok, the list of changes: - first pass at a "loop" command in CS. Format is fairly ugly, but basically: <?cs loop:i = #1, #50 ?> <?cs /loop ?> the loop will be...
15 cryomax
cryomax@... Send Email
Jan 15, 2002
5:26 pm
Is it just me, or is it really really funny that you guys have a file called "cs_grammer.y"? ...Paul (GrammAr Award Nominee)...
16 Alan Braverman
alanb42 Send Email
Jan 30, 2002
10:30 pm
ClearSilver developers, Currently, it looks like the each command sorts entries by the order in which they were inserted into the HDF dataset. I tried sorting...
17 Alan Braverman
alanb42 Send Email
Jan 30, 2002
10:31 pm
Also, has anyone compiled ClearSilver under Windows? (It's not for me. It's for a friend. I swear!) - Alan...
18 Brandon Long
blong42 Send Email
Jan 30, 2002
10:34 pm
... Yes, sorting by insertion order is intentional behavior. HDF stores sub values for a node as a linked list, with new entries inserted on the end. CS just...
19 Rob Wheeler
rob_wheeler Send Email
Jan 30, 2002
11:38 pm
... Pretty grody, but you could do: static int sortByName(const void *a, const void *b) { HDF *ha = (HDF *) a; HDF *hb = (HDF *) b; return...
20 cryomax
cryomax@... Send Email
Feb 11, 2002
6:03 pm
With a fresh extract of the 0.4 ClearSilver library, running 'make' on my RedHat Linux 7.1 box produces errors because the dependency file generated expects to...
21 Brandon Long
blong42 Send Email
Feb 11, 2002
7:14 pm
... There's currently no configure system or anything for building clearsilver, and its pretty much set up now to build in the neotonic source tree. You'll...
22 cryomax
cryomax@... Send Email
Apr 4, 2002
10:18 pm
How do I retrieve values submitted from a multi-select box? For example, if I have: <select name=myselect size=5 multple> <option value=foo>Foo</option&gt; ...
23 Brandon Long
blong42 Send Email
Apr 4, 2002
10:32 pm
... This works the same way it did in CS/HDF, basically multiple values of the same name from the form go into the HDF like so: 1 value => Query.myselect =...
24 Rob Wheeler
rob_wheeler Send Email
Apr 4, 2002
10:56 pm
... It certainly is annoying. I usually do something like: <?cs if: Query.myselect ?> <?cs if: !Query.myselect.0?> <?cs set: Query.myselect.0 =...
25 Brandon Long
blong42 Send Email
Apr 26, 2002
2:40 am
Yeah, I know, there wasn't an announcement for v0.5, it was out last week, but some bugs found shortly after it was released made for some quick fixes... Aside...
26 snoovler
markf@... Send Email
May 13, 2002
8:31 pm
Brandon, fyi, when invoking the cgi_* functions from within a C++ program, I had to wrap cgi.h with "extern "C" {}". Otherwise, things seem to work well. Mark...
27 Brandon Long
blong42 Send Email
May 13, 2002
8:41 pm
... Oops, we hadn't quite gotten to those yet... Dave was doing a bunch of work in C++ and we'd fixed up all the headers for the util directory, but not for...
28 David Terrell
dave_terrell Send Email
Jun 18, 2002
12:51 am
Are there any tricks to using the python module? So far I've discovered that you have to import neo_cgi and then you can import the hidden neo_util and neo_cs...
29 Brandon Long
blong42 Send Email
Jun 18, 2002
1:11 am
... No, that's the main trickiness. The only other thing that might be problematic would be to do something like: cgi = neo_cgi.CGI() ...
30 David Terrell
dave_terrell Send Email
Jun 20, 2002
11:49 pm
Are there any restrictions on HDF node names? I'm able to set a node ... a { a/a = a } ... Traceback (most recent call last): File "<stdin>", line 1, in ? ...
31 David Terrell
dave_terrell Send Email
Jun 21, 2002
11:34 pm
This patch does two things. It makes __repr__ do a writeString() (a one line diff), and it implements subscript access and assignment. Subscripts return a...
32 ...Paul
CryoMax Send Email
Jun 22, 2002
5:17 pm
... But what happens if at this point you reference h["abc"]? Do you get the string "test", or do you still get an object? Using one syntax to return more than...
33 David Terrell
dave_terrell Send Email
Jun 23, 2002
4:16 am
... h["abc"] would always return an object as long as it has a child node. h["abc.def"] would only return a value as a shortcut. I am coming around to your...
34 Brandon Long
blong42 Send Email
Jul 16, 2002
10:52 pm
What's New in v0.7 ... - In CS, the not operator, '!' is now a true unary operator, which means expressions like <?cs if:!(#5 + CGI.foo) ?> should work as you ...
35 Gaku Ueda
gakuueda Send Email
Aug 13, 2002
9:40 am
Hi, I've started using ClearSilver for my personal web site. One usage of ClearSilver is generate CS files from Perl scripts and generate HTML by evaluating...
36 Brandon Long
blong42 Send Email
Aug 13, 2002
5:58 pm
... cool ... In fact, it was fixed in 0.7.0 Brandon -- "Look, all that matters in a relationship is that you like the same pizza toppings." -- Daria, "Sappy...
37 Gaku Ueda
gakuueda Send Email
Aug 16, 2002
6:53 am
Hi all, ... I've update my system with ClearSilver 0.7.0 and this problem for ')' has fixed. However, handing of ',' is not right. Here's a patch for handling...
38 gakuueda Send Email Sep 2, 2002
11:49 am
Hi all, I've updated Perl interface for ClearSilver today as I needed to use sort HDF nodes. http://www.gaku.net/cs/perl-cs-0.7.0-2.tar.gz Thanks, -Gaku...
Messages 9 - 38 of 1451   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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