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 197 - 226 of 1347   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
197
Having worked a few days with ClearSilver, I'm pretty well convinced this is the way to go. I've got a largish CGI application written entirely in 'C' that...
snarmont
Offline Send Email
Mar 4, 2004
6:36 am
198
... convinced ... Great! ... If the executable size is important, you can use the clearsilver shared library instead of the static library. You should be able...
David Jeske
jeskeca
Offline Send Email
Mar 4, 2004
6:51 am
199
I was just writing some clearsilver for a design which involves conditional elements separated by commas. The tricky part is, with all the clearsilver...
David Jeske
jeskeca
Offline Send Email
Mar 5, 2004
5:03 am
200
... Back at eGroups, we reached the same point, we probably had around 60 CGI programs, but they came in at a larger size. I put in some work to make them all...
Brandon Long
blong42
Offline Send Email
Mar 7, 2004
9:14 am
201
... ClearSilver currently works by using a simple callback interface for output, which is called for each bit of data that needs to be output. In order to eat...
Brandon Long
blong42
Offline Send Email
Mar 7, 2004
9:30 am
202
In the "it would be nice category"... <?cs count:node ?> is replaced by the count of child objects for the node. Dave -- David G. Green...
David Green
dgreenbhm
Offline Send Email
Mar 8, 2004
7:33 am
203
... In the last release there is some functionality which did this but is confused. The next release makes this very straightforward: <?cs var:subcount(node)...
David Jeske
jeskeca
Offline Send Email
Mar 8, 2004
7:50 am
204
I'm trying to pass a string variable in the query string which ends with an encoded plus sign (%2B). I think clearsilver is stripping the end (I'm using...
kevinsl
Offline Send Email
Mar 8, 2004
9:11 pm
205
Using static.cgi: http://www.fiction.net/~blong/test.html?var=A%2B It works fine. It also works in CSPage.py Is cspage.py the mod_python stuff? Its possible...
Brandon Long
blong42
Offline Send Email
Mar 8, 2004
9:32 pm
206
Sorry about that, Brandon. It was my problem. I'm modifying the query string in my mod_python handler and needed to re-encode the url before calling the CSPage...
kevinsl
Offline Send Email
Mar 9, 2004
5:08 am
207
I just coded up a new template and our CGIs (in C) are core dumping on cgiDisplayPage: #0 0x0809ec37 in find_context (parse=0x811b478, offset=3647,...
Joseph Smarr
jsmarr
Offline Send Email
Mar 13, 2004
12:55 am
208
Upon further inspection, I think there were two crashes. One was I had <?cs var:item,name ?> (comma instead of period) and two was in Template.Header2 I had an...
Joseph Smarr
jsmarr
Offline Send Email
Mar 13, 2004
1:10 am
209
Hmm, I'm not able to duplicate the problem, I think because comma is now a token in my version, and it looks like the core is occurring when cs is trying to...
Brandon Long
blong42
Offline Send Email
Mar 13, 2004
3:50 am
210
I have made a patch that gives you gettext support inside of templates. It is now very easy to have i18n support in your templates. Use <?cs var:_("Text to...
Gerald Dachs
gda@...
Send Email
Mar 15, 2004
11:03 pm
211
... That's neat. It's cool that you were able to do this using the function interface. ... Btw, did you look at trans.py in the examples directory? It is an ...
David Jeske
jeskeca
Offline Send Email
Mar 16, 2004
6:27 am
212
... No, I didn't look into it because I don't use python, I use pure c only. If I have text to translate inside the c file, it gets translated too. I like it...
Gerald Dachs
gda@...
Send Email
Mar 16, 2004
9:06 am
213
... trans.py at one point generated gettext compatible files for exactly this reason. Probably not any more, its more of an internal script that should really...
Brandon Long
blong42
Offline Send Email
Mar 16, 2004
9:38 am
214
... The original CS/HDF code was written in pure C, and the original ONElist CGIs were written in pure C. Not a single bit of language was ever defined in the...
...Paul
CryoMax
Offline Send Email
Mar 16, 2004
4:27 pm
215
Gerald - Even if you prefer gettext ultimately, I'd really like to see you try trans.py. If you have trouble with getting it setup, email me and I'll...
David Jeske
jeskeca
Offline Send Email
Mar 16, 2004
9:52 pm
216
... I pointed a lot out. :) ...Paul ** Have a question that reality just can't answer? ** ** Visit Project Galactic Guide...
...Paul
CryoMax
Offline Send Email
Mar 16, 2004
10:09 pm
217
... trans.py. If you have trouble with getting it setup, email me and I'll fix/improve/document as necessary. Here are some reasons that trans.py is cool: ...
Gerald Dachs
gda@...
Send Email
Mar 17, 2004
9:47 pm
218
... Yes, it probably doesn't need to use mysql, my original thinking was I was going to have a web tool for actually doing the translation. ... Actually, what...
Brandon Long
blong42
Offline Send Email
Mar 18, 2004
12:12 am
219
Brandon answered most of your questions, but I figured I would clarify two things. ... development­ ... trans is designed to help maintain your translation...
David Jeske
jeskeca
Offline Send Email
Mar 18, 2004
4:05 am
220
Hello, there, I just wrote a tool that checks .cs and .hdf files for html_escape or js_escape problems. Feel free to use it or give me comments or suggestions....
Haiping Zhao
hz0451
Offline Send Email
Mar 26, 2004
12:49 am
221
That's pretty cool. I was actually pondering at one point having clearsilver enforce some sort of escaping mechanism, but I thought doing that at run time...
Brandon Long
blong42
Offline Send Email
Mar 26, 2004
12:55 am
222
John - You'll be happy to know that I just checked in a fix which will stop urls paramaters with empty keys from crashing clearsilver's _query_parse(). I...
David Jeske
jeskeca
Offline Send Email
Mar 26, 2004
7:19 am
223
I had already checked in a fix, it probably just ignored those parameters though. Brandon ... -- "To be happy with a woman, you must love her a lot and not try...
Brandon Long
blong42
Offline Send Email
Mar 26, 2004
5:37 pm
224
... Head of tree was still coredumping for me until I made my changes. -- David Jeske (N9LCA) + http://www.chat.net/~jeske/ + jeske@......
David Jeske
jeskeca
Offline Send Email
Mar 26, 2004
6:27 pm
225
... This is interesting. I've often wondered if there isn't a better way to handle this. In odb.py, I automatically html_escape strings when I put them into...
David Jeske
jeskeca
Offline Send Email
Mar 26, 2004
6:36 pm
226
Brandon, We were going to ask you for help, but we got similar conclusions. However, Ryan had an idea of doing fault injection to quickly check outcome of a...
Haiping Zhao
hz0451
Offline Send Email
Mar 26, 2004
9:37 pm
Messages 197 - 226 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