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

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 534 - 563 of 1347   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
534
Hello all, I've just stared using clearsilver (this looks really snazzy!) with mod_python 3.1.4/Apache 2 and I'm attempting to get a publisher handler to work....
Tony Burger
tony@...
Send Email
Aug 5, 2005
10:11 pm
535
... Looks right to me. You can also look at the CSPage.py example in the kit, however, it basically does the same thing. ... "tmpl" will be treated as relative...
David Jeske
jeskeca
Offline Send Email
Aug 6, 2005
12:14 am
536
... If you don't like hardcoding this in the script, you can always use ModPython's PythonOption ...
David Terrell
dave_terrell
Offline Send Email
Aug 6, 2005
12:56 am
537
Thanks for the input. I have been able to get mod_python working smoothly for the most part. One quirk I'm seeing though. I found an old post to this group...
Tony Burger
tony@...
Send Email
Aug 6, 2005
9:29 am
538
After further testing, if I don't use the CGI kit and do a "req.write(cs.render())" followed by a "return" in the code it doesn't appear to print the...
Tony Burger
tony@...
Send Email
Aug 7, 2005
4:13 am
539
I read in the INSTALL file with the distribution how .hdf files are being used with the CGI.StaticContent definition. Can someone give an example of how this...
Tony Burger
tony@...
Send Email
Aug 8, 2005
9:46 pm
540
I am trying to build the clearsilver-0.10.1 libraries using Cygwin with Python 2.4.1 and GCC 3.4.4 1) The following line from the ./configure script ...
bruce1444
Offline Send Email
Aug 9, 2005
12:24 am
541
... Works fine for me with Python 2.4.1 and mod_python 3.1.4, although I'm not using Cygwin....
Tony Burger
tony@...
Send Email
Aug 9, 2005
12:58 am
542
I recommend using mingw32 over cygwin. Cygwin is "unix emulation on windows", while mingw32 is a porting library for unix software to run in win32. mingw32 ...
David Jeske
jeskeca
Offline Send Email
Aug 9, 2005
1:14 am
543
... static.cgi is launched by Apache and pointed at a file. That file is assumed to be a ClearSilver template, so it often ends in .cs or .cst. Before running...
Brandon Long
blong42
Offline Send Email
Aug 9, 2005
8:59 am
544
I'm having issues with the static.cgi module and parsing .cs/.hdf files down the document root path. For instance, with a document root set at /home/www/root...
Tony Burger
tony@...
Send Email
Aug 16, 2005
6:44 pm
545
Hello, i very new to clearsilver. I want to add something like a SSO(Single Sign On) to trac(http://www.edgewall.com/trac/) but to do this, i need access to a...
menoabels
Offline Send Email
Aug 21, 2005
9:28 pm
546
The list in cgi.c is the list of variables that are copied automatically into hdf from the environment. You should be able to access any one you want by using...
Brandon Long
blong42
Offline Send Email
Aug 21, 2005
9:35 pm
547
... An interesting article on how the Atom 1.0 developers got around the problem using a simple extension to HTTP: ...
hrz@...
Send Email
Aug 22, 2005
3:09 pm
548
... If browsers don't support WSSE authentication, it won't help you. In the Atom world, the clients are specific to the Atom spec and will support WSSE. It is...
David Terrell
dave_terrell
Offline Send Email
Aug 22, 2005
4:10 pm
549
... You can also use some mod_rewrite magic to force apache to pass the appropriate headers along to the cgi: RewriteCond %{HTTP:Authorization} ^(.*) ...
Garrett Rooney
garrett_rooney
Online Now Send Email
Aug 22, 2005
4:29 pm
550
Hi, there has been a similar report by Jiann-Ming Su. http://groups.yahoo.com/group/ClearSilver/message/272 He was having trouble with a 64 bit Debian Alpha...
Axel Thimm
Axel.Thimm@...
Send Email
Aug 24, 2005
12:30 am
551
Which gcc are you using? Brandon ... -- "my objection to the notion of God is that the idea lacks elegance." -- Giles Bowkett http://www.fiction.net/blong/...
Brandon Long
blong42
Offline Send Email
Aug 24, 2005
12:32 am
552
... gcc (GCC) 4.0.1 20050727 (Red Hat 4.0.1-5) It's the current default in Fedora Core. ... -- Axel.Thimm at ATrpms.net...
Axel Thimm
Axel.Thimm@...
Send Email
Aug 24, 2005
3:27 am
553
Hi, I'd like to implement an upload progress bar and it seems that ClearSilver is the only convenient way to do it. Currently I got an upload cgi which shows...
Ralph_Busch
Offline Send Email
Aug 25, 2005
8:13 pm
554
setUploadCB takes two arguments, a python object and a function. The function will be called with three arguments periodically, the first object will be the...
Brandon Long
blong42
Offline Send Email
Aug 25, 2005
8:33 pm
555
I've been working on making a clearsilver module for pike. So far I have mostly been looking at how the perl module works, and making a pike equivilent....
Adam Montague
amontague@...
Send Email
Aug 28, 2005
11:37 pm
556
Yes, you need to call cgi_register_strfuncs (and pass it the CSPARSE struct) Brandon ... -- "i mean theres always the golden rule but what if i LIKE things...
Brandon Long
blong42
Offline Send Email
Aug 28, 2005
11:41 pm
557
I defined a macro like the following: <?cs def:getURL(suffix, exclude) ?> ... then I call this macro with different numbers of arguments, e.g.: 1) <?cs...
joerg_karoll
Offline Send Email
Aug 30, 2005
12:42 am
558
Actually, only #3 should work. I'm getting an error on #1 when I test it, though its telling me expected 2 got 6, there's a bug in the error message. Brandon ...
Brandon Long
blong42
Offline Send Email
Aug 30, 2005
1:22 am
559
you are right, of course: a call without arguments does not work either my fault ... Lars...
lars
joerg_karoll
Offline Send Email
Aug 30, 2005
9:06 pm
560
you are right, of course: a call without arguments does not work either my fault ... Lars...
lars
joerg_karoll
Offline Send Email
Sep 11, 2005
11:04 am
561
Hi, Does someone here use CherryPy with ClearSilver? If yes, with which experiences? Gerald...
Gerald Dachs
gda@...
Send Email
Sep 11, 2005
1:04 pm
562
Hi Brandon, thanks for your reply with the example code last week! I managed to write a cgi that handles the upload and another one to show the download status...
Ralph_Busch
Offline Send Email
Sep 15, 2005
5:43 am
563
Every day I get a couple of broken pipe errors when a call is made to display from neo_cgi (I am using the Python bindings) and I am trying to figure out what...
culleyharrelson
Offline Send Email
Sep 15, 2005
5:53 pm
Messages 534 - 563 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