CherryPy Session object creation logic

2017-06-02 Thread Israel Brewster
I have a CherryPy app, for which I am using a PostgreSQL session. To be more exact, I modified a MySQL session class I found to work with PostgreSQL instead, and then I put this line in my code: cherrypy.lib.sessions.PostgresqlSession = PostgreSQLSession And this works fine. One thing about

Proper way to run CherryPy app as a daemon?

2017-03-28 Thread Israel Brewster
I am wanting to run a CherryPy app as a daemon on CentOS 6 using an init.d script. By subscribing to the "Daemonizer" and PIDFile cherrypy plugins, I have been able to write an init.d script that starts and stops my CherryPy application. There's only one problem: it would

Testing POST in cherrypy

2016-10-04 Thread Israel Brewster
When testing CherryPy using a cherrypy.text.helper.CPWebCase subclass, I can test a page request by calling "self.getPage()", and in that call I can specify a method (GET/POST etc). When specifying a POST, how do I pass the parameters? I know for a POST the parameters are in the b

Re: CherryPy cpstats and ws4py

2015-11-04 Thread Israel Brewster
Ok, let me ask a different question: the impression I have gotten when trying to find help with CherryPy in general and ws4py specifically is that these frameworks are not widely used or well supported. Is that a fair assessment, or do I just have issues that are outside the realm of experience

CherryPy cpstats and ws4py

2015-11-03 Thread Israel Brewster
I posted this to the CherryPy and ws4py mailing lists, but in the week since I did that I've only gotten two or three views on each list, and no responses, so as a last-ditch effort I thought I'd post here. Maybe someone with more general python knowledge than me can figure out the

Re: Cherrypy - prevent browser "prefetch"?

2014-12-03 Thread Israel Brewster
Ah, I see. That makes sense. Thanks. --- Israel Brewster Systems Analyst II Ravn Alaska 5245 Airport Industrial Rd Fairbanks, AK 99709 (907) 450-7293 --- BEGIN:VCARD VERSION:3.0 N:Brewster;Israel;;; FN:Israel

Re: Cherrypy - prevent browser "prefetch"?

2014-12-03 Thread Nobody
On Tue, 02 Dec 2014 21:41:33 +, John Gordon wrote: > GET shouldn't cause any business data modifications, but I thought it was > allowed for things like logging out of your session. GET isn't supposed to have observable side-effects. "Observable" excludes things like logs and statistics, but

Re: Cherrypy - prevent browser "prefetch"?

2014-12-02 Thread Gregory Ewing
Israel Brewster wrote: Primary because they aren’t forms, they are links. And links are, by definition, GET’s. That said, as I mentioned in earlier replies, if using a form for a simple link is the Right Way to do things like this, then I can change it. I'd look at it another way and say that a

Re: Cherrypy - prevent browser "prefetch"?

2014-12-02 Thread random832
On Tue, Dec 2, 2014, at 10:59, Israel Brewster wrote: > Primary because they aren’t forms, they are links. And links are, by > definition, GET’s. That said, as I mentioned in earlier replies, if using > a form for a simple link is the Right Way to do things like this, then I > can change it. As I

Re: Cherrypy - prevent browser "prefetch"?

2014-12-02 Thread John Gordon
In Nobody writes: > On Mon, 01 Dec 2014 11:28:42 -0900, Israel Brewster wrote: > > I'm running to a problem, specifically from > > Safari on the Mac, where I start to type a URL, and Safari auto-fills the > > rest of a random URL matching what I started to type, and simultaneously > > sends a

Re: Cherrypy - prevent browser "prefetch"?

2014-12-02 Thread Nobody
On Mon, 01 Dec 2014 11:28:42 -0900, Israel Brewster wrote: > I'm running to a problem, specifically from > Safari on the Mac, where I start to type a URL, and Safari auto-fills the > rest of a random URL matching what I started to type, and simultaneously > sends a request for that URL to my serve

Re: Cherrypy - prevent browser "prefetch"?

2014-12-02 Thread Israel Brewster
> On Dec 2, 2014, at 4:33 AM, random...@fastmail.us wrote: > > On Mon, Dec 1, 2014, at 15:28, Israel Brewster wrote: >> For example, I have a URL on my Cherrypy app that updates some local >> caches. It is accessed at http:///admin/updatecaches So if I >> start ty

Re: Cherrypy - prevent browser "prefetch"?

2014-12-02 Thread random832
On Mon, Dec 1, 2014, at 15:28, Israel Brewster wrote: > For example, I have a URL on my Cherrypy app that updates some local > caches. It is accessed at http:///admin/updatecaches So if I > start typing http:///a, for example, safari may auto-fill the > "dmin/updatecaches"

Re: Cherrypy - prevent browser "prefetch"?

2014-12-01 Thread Tim Chase
On 2014-12-01 13:14, Israel Brewster wrote: > On Dec 1, 2014, at 12:50 PM, Ned Batchelder >> The way to indicate to a browser that it shouldn't pre-fetch a >> URL is to make it a POST request. > > Ok, that makes sense. The only difficulty I have with that answer > is that to the best of my knowle

Re: Cherrypy - prevent browser "prefetch"?

2014-12-01 Thread Israel Brewster
be updated. Right, and there are probably some URL's in my app where this may be the case - I still need to go back and audit the code now that I'm aware of this going on. In general, though, it does sound as though changing things to POST requests, and disallowing GET requests for

Re: Cherrypy - prevent browser "prefetch"?

2014-12-01 Thread Israel Brewster
On Dec 1, 2014, at 12:50 PM, Ned Batchelder wrote: > On 12/1/14 4:26 PM, Tim Chase wrote: >> On 2014-12-01 11:28, Israel Brewster wrote: >>> I don't know if this is a cherrypy specific question (although it >>> will be implemented in cherrypy for sure), or mor

Re: Cherrypy - prevent browser "prefetch"?

2014-12-01 Thread Tim Chase
On 2014-12-01 16:50, Ned Batchelder wrote: > On 12/1/14 4:26 PM, Tim Chase wrote: >> All this to also say that performing non-idempotent actions on a >> GET request is just begging for trouble. ;-) > > This is the key point: your web application shouldn't be doing > these kinds of actions in respo

Re: Cherrypy - prevent browser "prefetch"?

2014-12-01 Thread Tim Chase
otent actions on a > > GET request is just begging for trouble. ;-) > > ACK. However, isn't log-out an idempotent action? A minor note here...the OP talked about CherryPy and I've been in Django-land too long that I started talking Django. I'd have to pick open the

Re: Cherrypy - prevent browser "prefetch"?

2014-12-01 Thread Ned Batchelder
On 12/1/14 4:26 PM, Tim Chase wrote: On 2014-12-01 11:28, Israel Brewster wrote: I don't know if this is a cherrypy specific question (although it will be implemented in cherrypy for sure), or more of a general http protocol question, but when using cherrypy to serve a web app, is there a

Re: Cherrypy - prevent browser "prefetch"?

2014-12-01 Thread Christoph M. Becker
Tim Chase wrote: > I > haven't investigated recently, but I remember Django's ability to > trigger a log-out merely via a GET was something that irked me. > > All this to also say that performing non-idempotent actions on a GET > request is just begging for trouble. ;-) ACK. However, isn't log-

Re: Cherrypy - prevent browser "prefetch"?

2014-12-01 Thread Tim Chase
On 2014-12-01 11:28, Israel Brewster wrote: > I don't know if this is a cherrypy specific question (although it > will be implemented in cherrypy for sure), or more of a general > http protocol question, but when using cherrypy to serve a web app, > is there anyway to prevent brow

Re: Cherrypy - prevent browser "prefetch"?

2014-12-01 Thread sohcahtoa82
On Monday, December 1, 2014 12:29:04 PM UTC-8, Israel Brewster wrote: > I don't know if this is a cherrypy specific question (although it will be > implemented in cherrypy for sure), or more of a general http protocol > question, but when using cherrypy to serve a web app, is t

Cherrypy - prevent browser "prefetch"?

2014-12-01 Thread Israel Brewster
I don't know if this is a cherrypy specific question (although it will be implemented in cherrypy for sure), or more of a general http protocol question, but when using cherrypy to serve a web app, is there anyway to prevent browser prefetch? I'm running to a problem, specifically from

Sqlalchemy + Cherrypy

2011-08-18 Thread Navkirat Singh
Hi Guys, I am not sure if this is the right place to put this question. I am trying to figure out what the proper/clean way is to integrate cherrypy and sqlalchemy? I am currently trying to do this cherrypy 3 and sqlalchemy .7 in python 3.2 a) Cherrypy tools b) Integrate it directly into the app

Re: Cherrypy

2011-05-25 Thread Miki Tebeka
I wrote http://drdobbs.com/showArticle.jhtml?articleID=199102936&queryText=query way back then. It might be of some help. If you have any specific questions, feel free to post them to the group. -- http://mail.python.org/mailman/listinfo/python-list

Cherrypy

2011-05-25 Thread Bryton
Is anyone having a step by step tutorial of cherrypy(or book title).I have used the tutorial in their site as well as the book (cherrypy essentials) and I would like to have a one that is a bit more step by step...Please help... -- Regards, Bryton. -- http://mail.python.org/mailman/listinfo

CherryPy work with 64-bit version of Python 2.6?

2009-12-10 Thread python
Anyone know if CherryPy works with the 64-bit version of Python 2.6? Thank you, Malcolm -- http://mail.python.org/mailman/listinfo/python-list

Python CherryPy TurboGears 2 project support needed [in Belgium]

2009-10-12 Thread b...@creue-consulting
hopefully accepted, I need a Python *guru*, ideally with CherryPy & TurboGears 2/AJAX experience. This Python developer is required to develop embedded device configuration interfaces to manage a real time digital content delivery device, supporting features such as multi format high throughput v

Re: Python CherryPy TurboGears 2 project support needed [in Belgium]

2009-10-09 Thread b...@creue-consulting
have been encouraged to post this to > > the list. > > > So, apology done, and hopefully accepted, I need a Python *guru*, > > ideally > > with CherryPy & TurboGears 2/AJAX experience. > > Out of curiosity: TG1 is based upon CherryPy - TG2 on Pylons. So in my > op

Re: Python CherryPy TurboGears 2 project support needed [in Belgium]

2009-10-09 Thread Diez B. Roggisch
list. So, apology done, and hopefully accepted, I need a Python *guru*, ideally with CherryPy & TurboGears 2/AJAX experience. Out of curiosity: TG1 is based upon CherryPy - TG2 on Pylons. So in my opinion, this is somewhat mutual exclusive (not the know how, but using this in one project).

Re: Uploading big files wit cherrypy

2009-02-21 Thread Aahz
In article <366595b2-226c-48e4-961d-85bd0ce4b...@h16g2000yqj.googlegroups.com>, Farsheed Ashouri wrote: > >But I couldn't upload files bigger than 100Mb. Why and what is >workaround? What happens when you upload a file larger than 100MB? -- Aahz (a...@pythoncraft.com) <*> htt

Uploading big files wit cherrypy

2009-02-10 Thread Farsheed Ashouri
I use this code to upload using cherrypy: #Code Start== class NoteServer(object): _cp_config = { 'tools.sessions.on': True } def index(self): return """ filename:

CherryPy vs Bluehost

2008-11-23 Thread Glenn Linderman
ences to cherrypy there... So I'm wondering if anyone can tell me the best (or only) way to configure cherrypy to run on bluehost. I've read the cherrypy wiki about various ways to configure cherrypy to run behind Apache, which bluehost uses, but it seemed like the methods require

Fwd: Twisted vs. CherryPy vs. ??? for light-weight web servers

2008-09-24 Thread Michael Mabin
; allows >> me to serve html or xml data for light webservices. Or is CherryPy just as >> good? >> >> > You haven't described the problem you want to solve in very much detail. I > can't tell, for example, why I shouldn't recommend that you use Apache >

Re: Twisted vs. CherryPy vs. ??? for light-weight web servers

2008-09-24 Thread Jean-Paul Calderone
On Tue, 23 Sep 2008 21:22:08 -0500, Michael Mabin <[EMAIL PROTECTED]> wrote: Is there any consensus on what the best lightweight web-server is? Or rather would Twisted be a better choice to choose as a framework that allows me to serve html or xml data for light webservices. Or is CherryP

Twisted vs. CherryPy vs. ??? for light-weight web servers

2008-09-23 Thread Michael Mabin
Is there any consensus on what the best lightweight web-server is? Or rather would Twisted be a better choice to choose as a framework that allows me to serve html or xml data for light webservices. Or is CherryPy just as good? -- | _ | * | _ | | _ | _ | * | | * | * | * | -- http

Re: Help with displaying images in CherryPy

2008-07-19 Thread paul
David Lyon schrieb: ... All I want is a sample configuration file that will allow me to display a page with a jpeg on it. This really should only take a few minutes for somebody who has done this in CherryPy before and I would certainly appreciate the assistance because it doesn't

Help with displaying images in CherryPy

2008-07-19 Thread David Lyon
Hi all, I have a very simple question about configuration under CherryPy - it is such a simple one but I have been struggling to find an answer for a few days. All I want is a sample configuration file that will allow me to display a page with a jpeg on it. Whilst there are some examples

Re: cherrypy-webapp-code?

2008-04-20 Thread Daniel Fetchinson
> anyone have a small cherrypy-webapp and are willing to post the code. > could be a nonsense-app just wanna see some code. > -- > http://mail.python.org/mailman/listinfo/python-list > Did you try google? And the cherrypy website? -- http://mail.python.org/mailman/listinfo/python-list

cherrypy-webapp-code?

2008-04-20 Thread globalrev
anyone have a small cherrypy-webapp and are willing to post the code. could be a nonsense-app just wanna see some code. -- http://mail.python.org/mailman/listinfo/python-list

Re: Multiple Submits in HTML Forms - Cherrypy

2008-03-18 Thread Maurice LING
Carsten Haese wrote: > On Tue, 2008-03-18 at 07:14 +, Maurice LING wrote: >> Hi, >> >> Assuming that I have this code for Cherrypy 3 >> >> class Welcome: >> def index(self): >> return """ >> >>

Re: Multiple Submits in HTML Forms - Cherrypy

2008-03-18 Thread Carsten Haese
On Tue, 2008-03-18 at 07:14 +, Maurice LING wrote: > Hi, > > Assuming that I have this code for Cherrypy 3 > > class Welcome: > def index(self): > return """ > > > > &

Multiple Submits in HTML Forms - Cherrypy

2008-03-18 Thread Maurice LING
Hi, Assuming that I have this code for Cherrypy 3 class Welcome: def index(self): return """ """ index.exposed = True How should I write "btn_handler" so that it will p

CherryPy support (was: The path '/' was not found.)

2007-09-16 Thread Ben Finney
PFGCIO <[EMAIL PROTECTED]> writes: > I've checked for space/tab problems twice. Any ideas? For CherryPy support, you might want to instead try the mailing lists for that project: http://www.cherrypy.org/wiki/CherryPyInvolved#Howtocontactus> -- \ "Profes

Re: Cherrypy setup questions

2007-05-23 Thread Brian Blais
fumanchu wrote: > > No, you're not missing anything; my fault. I wasn't very awake when I > wrote that, I guess. Don't include the hostname, just write: > > sn = '/~myusername/apps' > cherrypy.quickstart(Root(), sn, config) > yay! Thanks, that works perfectly.

Re: Cherrypy setup questions

2007-05-23 Thread fumanchu
On May 23, 6:11 am, Brian Blais <[EMAIL PROTECTED]> wrote: > fumanchu wrote: > > > On May 22, 6:38 pm, Brian Blais <[EMAIL PROTECTED]> wrote: > >> I'd like to start trying out some cherrypy apps, but I've > >> been having some setup problems.

Re: Cherrypy setup questions

2007-05-23 Thread fumanchu
On May 23, 6:11 am, Brian Blais <[EMAIL PROTECTED]> wrote: > fumanchu wrote: > > > On May 22, 6:38 pm, Brian Blais <[EMAIL PROTECTED]> wrote: > >> I'd like to start trying out some cherrypy apps, but I've > >> been having some setup problems.

Re: Cherrypy setup questions

2007-05-23 Thread Brian Blais
fumanchu wrote: > On May 22, 6:38 pm, Brian Blais <[EMAIL PROTECTED]> wrote: >> I'd like to start trying out some cherrypy apps, but I've >> been having some setup problems. I think I need some >> bone-head simple example to clear my understanding. :) &

Re: Cherrypy setup questions

2007-05-22 Thread fumanchu
On May 22, 6:38 pm, Brian Blais <[EMAIL PROTECTED]> wrote: > I'd like to start trying out some cherrypy apps, but I've > been having some setup problems. I think I need some > bone-head simple example to clear my understanding. :) > > I'm on a system ru

Cherrypy setup questions

2007-05-22 Thread Brian Blais
Hello, I'd like to start trying out some cherrypy apps, but I've been having some setup problems. I think I need some bone-head simple example to clear my understanding. :) I'm on a system running Apache, that I don't have root access to. I will be publishing the htm

cherrypy sub-process

2007-03-11 Thread Bart Van Loon
Hi all, I have written a small program in Python which acts as a wrapper around mpd and natd on a FreeBSD system. It gets the status, restarts the processes, etc... Then, I created a tiny cherrypy webapp which provides a webinterface to this program. All works fine, but for the following problem

Re: CherryPy + Database questions

2007-03-06 Thread Diez B. Roggisch
e threads working on a single DB if each has his own connection. Which is a common idiom anyway. And AFAIK e.g. TurboGears doesn't perform any special measures to synchronize cherrypy worker threads when using sqlite, albeit I'm not 100% sure on this. Diez -- http://mail.python.org/mailman/listinfo/python-list

Re: CherryPy + Database questions

2007-03-05 Thread [EMAIL PROTECTED]
On Mar 5, 8:44 am, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > Brian Blais wrote: > > Hello, > > > I have more of a conceptual question about the way databases work, in a > > web > > framework, but I will be implementing things with CherryPy an

Re: CherryPy + Database questions

2007-03-05 Thread Diez B. Roggisch
Brian Blais wrote: > Hello, > > I have more of a conceptual question about the way databases work, in a > web > framework, but I will be implementing things with CherryPy and SQLAlchemy. > If you make a web form that adds rows to a database, and use sqlite as > the engine,

CherryPy + Database questions

2007-03-05 Thread Brian Blais
Hello, I have more of a conceptual question about the way databases work, in a web framework, but I will be implementing things with CherryPy and SQLAlchemy. If you make a web form that adds rows to a database, and use sqlite as the engine, is there a danger of a race condition if several

Re: CherryPy/Turbogears on server not controlled by me

2007-02-22 Thread Jeff McNeil
if there is a way to run CherryPy/Turbogears on a >>> server that I don't >>> have root access to. >> >> I have never run ANY webapp as root. you should follow that >> advice. in >> fact don't run any server as root. >> > > Oh, I didn

Re: CherryPy/Turbogears on server not controlled by me

2007-02-22 Thread Brian Blais
Jorge Vargas wrote: > On 2/20/07, Brian Blais <[EMAIL PROTECTED]> wrote: >> I was wondering if there is a way to run CherryPy/Turbogears on a >> server that I don't >> have root access to. > > I have never run ANY webapp as root. you should follow that adv

Re: CherryPy/Turbogears on server not controlled by me

2007-02-21 Thread Jorge Vargas
On 2/20/07, Brian Blais <[EMAIL PROTECTED]> wrote: > Hello, > > I was wondering if there is a way to run CherryPy/Turbogears on a server that > I don't > have root access to. I have never run ANY webapp as root. you should follow that advice. in fact don't run a

Re: CherryPy/Turbogears on server not controlled by me

2007-02-20 Thread Eddie Corns
"Diez B. Roggisch" <[EMAIL PROTECTED]> writes: >Brian Blais wrote: >> Hello, >> >> I was wondering if there is a way to run CherryPy/Turbogears on a server >> that I don't >> have root access to. If I just choose a random port, I think the

Re: CherryPy/Turbogears on server not controlled by me

2007-02-20 Thread Diez B. Roggisch
Brian Blais wrote: > Hello, > > I was wondering if there is a way to run CherryPy/Turbogears on a server > that I don't > have root access to. If I just choose a random port, I think the security > guys on > the server would get annoyed at me. Why should they? O

CherryPy/Turbogears on server not controlled by me

2007-02-20 Thread Brian Blais
Hello, I was wondering if there is a way to run CherryPy/Turbogears on a server that I don't have root access to. If I just choose a random port, I think the security guys on the server would get annoyed at me. What are my options? I can talk to the admin, but they are very slow/relu

Re: Mod_python vs. application server like CherryPy?

2006-12-09 Thread Graham Dumpleton
Damjan wrote: > > For example, consider an extreme case such as WSGI. Through a goal of > > WSGI being portability it effectively ignores practically everything > > that Apache has to offer. Thus although Apache offers support for > > authentication and authorisation, a WSGI user would have to imp

Re: Mod_python vs. application server like CherryPy?

2006-12-08 Thread Damjan
> For example, consider an extreme case such as WSGI. Through a goal of > WSGI being portability it effectively ignores practically everything > that Apache has to offer. Thus although Apache offers support for > authentication and authorisation, a WSGI user would have to implement > this functiona

Re: Mod_python vs. application server like CherryPy?

2006-12-06 Thread fumanchu
nality. Similarly with other Apache > features such as URL rewriting, proxying, caching etc etc. Well, almost. I use Auth* directives for authentication (and the Require directive for authorization) with my CherryPy apps. Many other CP users use mod_rewrite and mod_proxy. So the WSGI user doesn&#x

Re: Mod_python vs. application server like CherryPy?

2006-12-06 Thread Vincent Delporte
On 6 Dec 2006 16:32:14 -0800, "Graham Dumpleton" <[EMAIL PROTECTED]> wrote: >Getting perhaps back to the answer you were seeking right back at the >start, that is if you are new to web application and development and >Python, then you may well be better of just using a higher level >framework as th

Re: Mod_python vs. application server like CherryPy?

2006-12-06 Thread Graham Dumpleton
Vincent Delporte wrote: > On 6 Dec 2006 14:55:58 -0800, "Graham Dumpleton" > <[EMAIL PROTECTED]> wrote: > >Although WSGI is an extreme case because of the level it pitches at, > >other systems such as CherryPy and Django aren't much different as they >

Re: Mod_python vs. application server like CherryPy?

2006-12-06 Thread Vincent Delporte
On 6 Dec 2006 14:55:58 -0800, "Graham Dumpleton" <[EMAIL PROTECTED]> wrote: >Although WSGI is an extreme case because of the level it pitches at, >other systems such as CherryPy and Django aren't much different as they >effectively duplicate a lot of stuff that could

Re: Mod_python vs. application server like CherryPy?

2006-12-06 Thread Graham Dumpleton
Vincent Delporte wrote: > On 5 Dec 2006 17:05:06 -0800, "fumanchu" <[EMAIL PROTECTED]> wrote: > >In a nutshell, mod_python gives you > >access from Python to the Apache API, whereas CherryPy and friends give > >you their own API. > > I didn't know A

Re: Mod_python vs. application server like CherryPy?

2006-12-06 Thread Paul Boddie
Vincent Delporte wrote: > On 5 Dec 2006 17:05:06 -0800, "fumanchu" <[EMAIL PROTECTED]> wrote: > >In a nutshell, mod_python gives you > >access from Python to the Apache API, whereas CherryPy and friends give > >you their own API. > > I didn't know A

Re: Mod_python vs. application server like CherryPy?

2006-12-06 Thread Vincent Delporte
On 5 Dec 2006 17:05:06 -0800, "fumanchu" <[EMAIL PROTECTED]> wrote: >In a nutshell, mod_python gives you >access from Python to the Apache API, whereas CherryPy and friends give >you their own API. I didn't know Apache had an API of its own, or that it was

Re: Mod_python vs. application server like CherryPy?

2006-12-05 Thread fumanchu
ython-based tools like CherryPy, Quixote, > Draco, etc.? Well, let me start by saying that anything you can build with CherryPy, you can build with mod_python. In a nutshell, mod_python gives you access from Python to the Apache API, whereas CherryPy and friends give you their own API. I joined the

Mod_python vs. application server like CherryPy?

2006-12-05 Thread Vincent Delporte
Hi I'm still a newbie when it comes to web applications, so would like some help in choosing a solution to write apps with Python: What's the difference between using running it through mod_python vs. building an application server using Python-based tools like CherryPy, Quixote,

Re: ANN: CherryPy 3.0 RC1

2006-11-29 Thread James Cunningham
On 2006-11-29 08:37:46 -0500, "Christian" <[EMAIL PROTECTED]> said: >> "Christian Wyglendowski" <[EMAIL PROTECTED]> writes: >> >>> I'm happy to announce the first release candidate for CherryPy 3.0. > > Ben Finney wrote: >

Re: ANN: CherryPy 3.0 RC1

2006-11-29 Thread Christian
> "Christian Wyglendowski" <[EMAIL PROTECTED]> writes: > > > I'm happy to announce the first release candidate for CherryPy 3.0. Ben Finney wrote: > > Congratulations, I'm glad to see an announcement for CherryPy. > > Please, in future, don&#x

Re: ANN: CherryPy 3.0 RC1

2006-11-28 Thread Ben Finney
"Christian Wyglendowski" <[EMAIL PROTECTED]> writes: > I'm happy to announce the first release candidate for CherryPy 3.0. Congratulations, I'm glad to see an announcement for CherryPy. Please, in future, don't send HTML message bodies to public forums; plain

Re: ANN: CherryPy 3.0.0 beta 2

2006-09-28 Thread Ben Finney
Ben Finney <[EMAIL PROTECTED]> writes: > Please don't post HTML message bodies to a public mailing list. My apologies; this was sent as a reply direct to the sender of the release announcement. I've no idea how it ended up here. -- \ "The WWW is exciting because Microsoft doesn't own

Re: ANN: CherryPy 3.0.0 beta 2

2006-09-28 Thread Ben Finney
Please don't post HTML message bodies to a public mailing list. This release announcement contained nothing that requires anything but plain text, and HTML simply makes the document needlessly more complex to render. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python complaining about CherryPY?

2006-08-19 Thread dimitri pater
if you can please ignore my ignorance.I setup a cherryPY server so that I could use sabnzbd but once, I have installed/configured what I was told by the tutorials and everything else.I run ubuntu x86 dapper FYI.The error messages I get from the logs are as follows (which don't reallymean to mu

Python complaining about CherryPY?

2006-08-19 Thread Thomas McLean
Hi all, First post to the list, so first off, I'm new to Python and everything surrounding it so if you can please ignore my ignorance. I setup a cherryPY server so that I could use sabnzbd but once, I have installed/configured what I was told by the tutorials and everything else. I run u

Re: "running" code on client side with cherrypy?

2006-08-11 Thread Bruno Desthuilliers
Mr BigSmoke wrote: > Tnx Jay... as i supposed there's no easy solution... I just thought > that, maybe, being on an intranet there was a possible solution... > About pysvn a tortoise... i do use tortoiseSVN and t works really > really fine.. we (developers) use it, but i'm writting server for > "no

Re: "running" code on client side with cherrypy?

2006-08-10 Thread Paul Rubin
"Mr BigSmoke" <[EMAIL PROTECTED]> writes: > Tnx Jay... as i supposed there's no easy solution... I just thought > that, maybe, being on an intranet there was a possible solution... There are ways to ask the user for permission to install stuff on the client (that's how self-installers work) but th

Re: "running" code on client side with cherrypy?

2006-08-10 Thread Mr BigSmoke
quot; users that can checkout our applications releases... I'll try some other solution... thanks very much! cheers Fabio jay graves wrote: > Mr BigSmoke wrote: > > Hi All, > > I'm developing a website to handle some code/application version > > control on a intranet. I&#x

Re: "running" code on client side with cherrypy?

2006-08-10 Thread jay graves
Mr BigSmoke wrote: > Hi All, > I'm developing a website to handle some code/application version > control on a intranet. I'm using cherrypy and pysvn. Everything runs > quite good but i want the user to be able to checkout some projects > from the server. The user(on t

"running" code on client side with cherrypy?

2006-08-10 Thread Mr BigSmoke
Hi All, I'm developing a website to handle some code/application version control on a intranet. I'm using cherrypy and pysvn. Everything runs quite good but i want the user to be able to checkout some projects from the server. The user(on the client side) selects a folder in his machin

Re: cherrypy tracing back all the time

2006-07-23 Thread Hari Sekhon
On 23/07/06, Hari Sekhon <[EMAIL PROTECTED]> wrote: I've got a very simple script with cherrypy but for some reason the cherrypy server is constantly tracing back but it stays up, kind of, the performance etc though shows that something is wrong.import cherrypy import threading d

cherrypy tracing back all the time

2006-07-23 Thread Hari Sekhon
I've got a very simple script with cherrypy but for some reason the cherrypy server is constantly tracing back but it stays up, kind of, the performance etc though shows that something is wrong.import cherrypyimport threading def someFunc():    while 1:    print "working

ANN: CherryPy-2.2.0 released

2006-04-04 Thread remi
(sorry for the double-post, the title of the previous one was wrong) Hello everyone, After six months of hard work and 300 changesets since the last stable release I'm happy to announce that CherryPy-2.2.0-final is out. The biggest changes are: - switch to a lowercase api (although th

ANN: CherryPy-2.2.0 released

2006-04-04 Thread remi
(sorry for the double-post, the title of the previous one was wrong) Hello everyone, After six months of hard work and 300 changesets since the last stable release I'm happy to announce that CherryPy-2.2.0-final is out. The biggest changes are: - switch to a lowercase api (although th

Re: ANN: CherryPy-2.2.0 released

2006-04-04 Thread remi
Oops ... The title should have been "CherryPy-2.2.0 released", not "CherryPy-2.2.0-rc1" ... [EMAIL PROTECTED] wrote: > Hello everyone, > > After six months of hard work and 300 changesets since the last stable > release I'm happy to announce that CherryP

ANN: CherryPy-2.2.0-rc1 released

2006-04-04 Thread remi
Hello everyone, After six months of hard work and 300 changesets since the last stable release I'm happy to announce that CherryPy-2.2.0-final is out. The biggest changes are: - switch to a lowercase api (although the old camelCase API is still supported for backward compatibility) - su

ANN: CherryPy-2.2.0-rc1 released

2006-03-09 Thread remi
Hello everyone, I'm happy to announce that the first release candidate for CherryPy-2.2.0 is now available. This release includes various bugfixes, a new benchmarking tool and improved WSGI support. Check out this great post from Christian Wyglendowski to see how you can run multiple

ANN: CherryPy-2.2.0beta released

2006-01-30 Thread remi
Hi everyone, I am please to announce the first beta release of CP-2.2.0 We've started to collect changes on this page: http://www.cherrypy.org/wiki/WhatsNewIn22 (there's many more items to come). Included in this release are: - Support for multiple applications within one Cherry

Re: CherryPy wiki not working

2005-12-16 Thread bill
Yes, it looks like some type of virus has affected my computer. CherryPy was fine from home using my IMac. But at work from both Firefox and IE I get this problem and now it has affected another site. The URLs at CherryPy look like this : http://www.cherrypy.org/store/0_1_540744_1_1_index.html

Re: CherryPy wiki not working

2005-12-15 Thread Lawrence Oluyede
Il 2005-12-15, [EMAIL PROTECTED] <[EMAIL PROTECTED]> ha scritto: > Has the CherryPy wiki been hacked ?. All pages seem to be re-directed > to some form of Amazon page. It works for me. -- Lawrence - http://www.oluyede.org/blog "Anyone can freely use whatever he wants but the

CherryPy wiki not working

2005-12-15 Thread bill
Has the CherryPy wiki been hacked ?. All pages seem to be re-directed to some form of Amazon page. Bill -- http://mail.python.org/mailman/listinfo/python-list

Re: CherryPy not playing nicely with win32com?

2005-11-14 Thread infidel
> Just an idea: because in CherryPy it is running in multithreading mode? > If you are using threads together with COM stuff, you will have to > add pythoncom.CoInitialize() and pythoncom.CoUninitialize() calls > in your code -- for each thread. That worked perfectly. Thanks a mill

Re: CherryPy not playing nicely with win32com?

2005-11-10 Thread Irmen de Jong
infidel wrote: > I've been trying to get my CherryPy server to authenticate users > against our network. I've managed to cobble together a simple function > that uses our LDAP server to validate the username and password entered > by the user: [...] >

CherryPy not playing nicely with win32com?

2005-11-10 Thread infidel
I've been trying to get my CherryPy server to authenticate users against our network. I've managed to cobble together a simple function that uses our LDAP server to validate the username and password entered by the user: # ldap.py from win32com.client import GetObject ADS_SECURE_AUTH

ANN: CherryPy-2.1.0-final released

2005-10-23 Thread remi
Hello everyone, I am happy to announce the release of CherryPy-2.1.0 If is the result of 6 months of intense development since the last stable release and the work of a growing number of contributors. CherryPy has become increasingly popular these past few months (the mailing lists now have

Re: infinite cherrypy autoreloader loop

2005-10-19 Thread infidel
Ok, the problem seems to be with my cherrypy importing Kid. If I import the kid module or any of my compiled kid template modules, then I get the autoreloader infinite loop. Is anyone else experiencing this effect? -- http://mail.python.org/mailman/listinfo/python-list

  1   2   >