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 1259 - 1288 of 1347   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1259
I've got it going, but my data comes in as JSON, and its a nuisance to parse it and contruct HDF. How can I convert the JSON to HDF easily?...
mcqueenb2000
Offline Send Email
Apr 2, 2009
5:16 pm
1260
I don't know of any quick json->hdf conversion libraries. It would be a good thing to have, though I haven't looked at home complicated json is to parse. It...
Brandon Long
blong42
Offline Send Email
Apr 7, 2009
7:54 am
1261
Does anyone have a script that takes a cs file and a hdf file and scans the cs file for each hdf data item?, reporting on hdf items that are no longer used? I...
culleyharrelson
Offline Send Email
Apr 9, 2009
5:14 pm
1262
... I have wrote a hdf to json converter use libjsonc(http://oss.metaparadigm.com/json-c/) for my project. Maybe, this is useful to you,...
bigmaliang@...
bigmaliang...
Offline Send Email
Apr 13, 2009
8:30 am
1263
What do you mean by "no longer used"? Typical HDF/CS usage has tons of HDF data which is never used. When I use it, I make standardized exporters that dump...
David Jeske
jeskeca
Offline Send Email
Apr 13, 2009
8:34 am
1264
My efforts are mostly to make translation more efficient. So, say I had a hdf file with this item: Strings.hello [Lang] = hello world! Once upon a time this...
Culley Harrelson
culleyharrelson
Offline Send Email
Apr 13, 2009
5:26 pm
1265
I understand now. We have run into this problem before. One of the disadvantages of clearsilver becoming a more full language, is that it's not possible to do...
David Jeske
jeskeca
Offline Send Email
Apr 13, 2009
5:30 pm
1266
... Have you tried using GNU gettext for i18n? It really simplifies the task. We are using it both for translating datasets and templates, not to say about the...
Nikolai Kondrashov
nikolai.kond...
Offline Send Email
Apr 13, 2009
5:30 pm
1267
... I have opted for another approach. I simply read the file hdf_read_file and traverse the whole HDF tree extracting values of the nodes marked with "lang"...
Nikolai Kondrashov
nikolai.kond...
Offline Send Email
Apr 13, 2009
5:41 pm
1268
... How do you determine that an HDF attribute market with [lang] is still in use in a CS template somewhere? Culley's original challenge is to clean up cruft...
David Jeske
jeskeca
Offline Send Email
Apr 13, 2009
6:56 pm
1269
... I don't. It is a small issue for me. Since I don't store general translatable strings solely for use in the templates, but instead simply mark such strings...
Nikolai Kondrashov
nikolai.kond...
Offline Send Email
Apr 13, 2009
7:07 pm
1270
... Sounds very useful to me! I was planning to do this at the file level-- basically something like grepping through the cs file for each item. This would...
Culley Harrelson
culleyharrelson
Offline Send Email
Apr 14, 2009
12:09 am
1271
No I rely completely on the hdf datasets. Different hdf datasets are loaded for different languages. I can't remember why I didn't use the trans.py script...
Culley Harrelson
culleyharrelson
Offline Send Email
Apr 14, 2009
12:25 am
1272
... Its the every conditional part thats challenging, but perhaps... it would certainly be easy enough to walk the parse tree and find nodes which use raw hdf...
Brandon Long
blong42
Offline Send Email
Apr 14, 2009
3:45 am
1273
The trans.py script is more of an example. We wrote a much better version at work, I wanted it to be open-sourceable, but I think it ended up being much too...
Brandon Long
blong42
Offline Send Email
Apr 14, 2009
3:50 am
1274
Hi, Has anyone worked here with Clearsilver (using its python wrapper) and CherryPy? I would like to make a simple application using ClearSilver as the...
vsapre80
Offline Send Email
Apr 20, 2009
4:21 pm
1275
Although I haven't used CherryPy, there is nothing to prevent you from using ClearSilver without the CGI trappings. You definitely don't need to have all of...
Brandon Long
blong42
Offline Send Email
Apr 20, 2009
7:30 pm
1276
The last release seems to have been in late 2007 - has ClearSilver been abandoned?...
genjii931
Offline Send Email
Apr 29, 2009
10:20 pm
1277
No, I would say its stable. Its still in heavy use here at Google, and there has been quite some development on it. I'm in the middle of trying to get...
Brandon Long
blong42
Offline Send Email
Apr 29, 2009
10:28 pm
1278
Message-ID: <gtbl9o+4e45@eGroups.com> User-Agent: eGroups-EW/0.82 MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding:...
bigmaliang@...
bigmaliang...
Offline Send Email
Apr 30, 2009
7:51 am
1279
I'm using it for a fun project too. Its quite nice for C lovers, and not matter what what language you like its fast....
Brian McQueen
mcqueenb2000
Offline Send Email
Apr 30, 2009
7:52 pm
1280
Hi, ClearSilver is GREAT !!! I have a question regarding how ClearSilver finds out about a '*/cst' file when we do, cs.parseFile("somename.cst") currently we...
vsapre80
Offline Send Email
Apr 30, 2009
7:53 pm
1281
CS.parseFile corresponds to cs_parse_file: http://www.clearsilver.net/docs/c_api.hdf#cs_parse_file which uses hdf_search_path to find the path for the file....
Brandon Long
blong42
Offline Send Email
Apr 30, 2009
7:58 pm
1282
... No, its correct as is. The usage of uList and the compareFunc's isn't very obvious. In fact, its possible that the "bug" is that the above should be: ...
Brandon Long
blong42
Offline Send Email
Apr 30, 2009
9:55 pm
1283
forgot ulist_test.c, now attached. Brandon ... -- "video killed the radio star ... then the Spice Girls killed the rest." -- Alan Braverman ...
Brandon Long
blong42
Offline Send Email
Apr 30, 2009
9:57 pm
1284
... en, ulist_test.c show the correct way to use uListSearch, after modify my prog accrodding stringCompare(), it work correct, thanks! ... yes, I don't want...
bigmaliang@...
bigmaliang...
Offline Send Email
May 1, 2009
4:36 pm
1285
Hi, I'm building Clearsilver under LTIB for use on a Freescale PowerPC platform. A problem arises when the configure script wants to run Python (or Perl for...
rtwalsh26
Offline Send Email
May 4, 2009
7:36 pm
1286
... Hmm, currently the configure script probably doesn't work for cross compiling, definitely for the non-C parts. You can use --with-python to point at...
Brandon Long
blong42
Offline Send Email
May 4, 2009
7:42 pm
1287
Hello, cross compiling clearsilver is working fine, one has to remove the 'test' target in cs/makefile by hand though. this is what i'm doing on my linux-host...
Mario Gliewe
mag@...
Send Email
May 5, 2009
8:39 am
1288
I agree. The cross-compile does work for my C/CPP files but the Python stuff does not. Brandon is correct about setup.py -- it's not friendly with the...
Rick Walsh
rtwalsh26
Offline Send Email
May 5, 2009
4:43 pm
Messages 1259 - 1288 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