Search the web
Sign In
New User? Sign Up
ClearSilver
? 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.

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 1284 - 1313 of 1347   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
1289
So, if you can run programs built for the board on your local box, its probably fairly straight-forward. If not, things get more complicated, but what I think...
Brandon Long
blong42
Offline Send Email
May 5, 2009
9:01 pm
1290
That didn't help; the offending compile options were still present. I guess the arguments only add "extra" options, they don't replace what's there. I can...
Rick Walsh
rtwalsh26
Offline Send Email
May 6, 2009
3:08 am
1291
No, it should work to not use setup.py, earlier versions of clearsilver built it directly before we switched to distutils. Brandon ... -- "The Creation of the...
Brandon Long
blong42
Offline Send Email
May 6, 2009
8:30 am
1292
Hey there! I recently discovered Clearsilver and it makes a good impression. I'd like to use it in C/C++ application but am having trouble to get it working. ...
Andreas Wehrmann
a.wehrmann@...
Send Email
May 18, 2009
5:20 pm
1293
I don't know of an OO structured C++ example. If this is what you're looking to do, I recommend taking a look at the Python CSPage.py example, and extrapolate ...
David Jeske
jeskeca
Offline Send Email
May 18, 2009
6:08 pm
1294
There's a basic example in cgi/cs_static.c as well. I keep meaning to get some better example code listed somewhere. For C++, there is Clearsilver++: ...
Brandon Long
blong42
Offline Send Email
May 18, 2009
8:04 pm
1295
Thanks for the responses. static.c seems to be a good start. However, when trying to link it, I get a lot of "undefined reference" errors, although I link to...
Andreas Wehrmann
a.wehrmann@...
Send Email
May 19, 2009
8:29 pm
1296
... I would need to know what the undefined reference is to to know what you're missing. A local link line looks like: gcc -o cs_static.cgi static.o...
Brandon Long
blong42
Offline Send Email
May 19, 2009
8:31 pm
1297
Hey All,     i am new to clearsilver and have few basic questions        1. can i use clearsilver on windows operationg system       2. where...
mallesh k
mallesh_cse
Offline Send Email
May 25, 2009
6:13 pm
1298
... Yes, I've been doing it for years. You can compile it with MSYS, though I know someone on this list has made it compile with visual studio (see the group...
Chris Trimble
ctrimble
Online Now Send Email
May 25, 2009
8:07 pm
1299
"Yes, I've been doing it for years. You can compile it with MSYS, " Sorry, that should be MinGW. C...
Chris Trimble
ctrimble
Online Now Send Email
May 25, 2009
8:09 pm
1300
I used mingw as well. And I think that I used the msys terminal to compile on a Win2003 machine. I remember making a changes in the code like sleep() to...
Ogla Sungutay
oglausa
Offline Send Email
May 26, 2009
7:08 pm
1301
Hi, I am new to CS, and have a quick question. I want to add a special tag in my templates for certain pieces of text. For example, I want to enclose text in...
stuffedlambmeat
Offline Send Email
May 29, 2009
4:28 am
1302
Clearsilver contains the ability to register a string handler function, such that you could do something like this in your templates: <?cs...
David Jeske
jeskeca
Offline Send Email
May 29, 2009
8:39 am
1303
Its a bit more challenging than you might think, but not too bad. In any case, I'm not sure if that's what he's asking for. If you're asking about...
Brandon Long
blong42
Offline Send Email
May 29, 2009
7:04 pm
1304
Hi, This is something confused me in neo_hash mode: 1, dose neo_hash.c line 146 should change to node = _hash_lookup_node(hash, *key, NULL); 2, and before we...
bigmaliang@...
bigmaliang...
Offline Send Email
Jun 3, 2009
6:22 am
1305
Can you provide test cases for whatever bug you think these fix? Brandon ... -- "Its much more fun to be sand than oil in the machinery of life." ...
Brandon Long
blong42
Offline Send Email
Jun 3, 2009
8:32 am
1306
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #define __USE_GNU #include <string.h> #include "ClearSilver.h" #define RETURN_V_NOK(err, v)...
bigmaliang@...
bigmaliang...
Offline Send Email
Jun 4, 2009
1:45 am
1307
Hi, I'm trying to compile ClearSilver on a System i platform. The compiler is C89 compatible (AFAIK). I am compiling the stuff manually, starting with the util...
Schmidt, Mihael
Mihael.Schmidt@...
Send Email
Jun 11, 2009
2:47 pm
1308
Hi, I'm using an HDF file to store account info and I wanted to know if there's an easy way to delete nodes and re-order. For example: Accounts{ 0{ user=joe ...
Rick Walsh
rtwalsh26
Offline Send Email
Jun 12, 2009
2:55 am
1309
I suspect the real problem is with the other macros __PRETTY_FUNCTION, __FILE__ and __LINE__. These are magic macros defined by some compilers, but they might ...
David Jeske
jeskeca
Offline Send Email
Jun 12, 2009
3:08 am
1310
... There isn't a quick way to reorder nodes.... I recommend using something unique as the HDF key and then just loading and sorting as needed. (i.e. the...
David Jeske
jeskeca
Offline Send Email
Jun 12, 2009
3:41 am
1311
... it be ... definitely got ... nerr_raise() is setup to work like the printf() family of functions. For example, you might have: nerr_raise(NERR_ASSERT,...
Schmidt, Mihael
Mihael.Schmidt@...
Send Email
Jun 12, 2009
5:18 am
1312
oh... it is util/ulocks.c (not util.ulock.c) I compiled clearsilver on a linux system and took the cs_config.h from it (and modified it a little bit). Now i...
Schmidt, Mihael
Mihael.Schmidt@...
Send Email
Jun 12, 2009
5:34 am
1313
After some searching on the web I found that HAVE_LOCKF is queried in Clearsilver.h. There is seems that ulock, rcfs, dict and skiplist are optional (are not...
Schmidt, Mihael
Mihael.Schmidt@...
Send Email
Jun 12, 2009
5:45 am
Messages 1284 - 1313 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