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
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
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
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
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
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
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
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
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
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
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
> 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
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"
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
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
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
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
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
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
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-
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
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
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
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
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
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
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
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
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
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).
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
I use this code to upload using cherrypy:
#Code Start==
class NoteServer(object):
_cp_config = { 'tools.sessions.on': True }
def index(self):
return """
filename:
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
; 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
>
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
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
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
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
> 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
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
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 """
>>
>>
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 """
>
>
>
> &
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
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
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.
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.
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.
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. :)
&
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
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
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
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
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
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,
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
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
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
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
"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
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
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
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
> 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
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
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
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
>
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
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
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
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
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
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,
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:
>
> "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
"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
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
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
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
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
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
"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
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
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
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
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
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
(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
(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
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
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
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
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
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
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
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
> 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
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:
[...]
>
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
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
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 - 100 of 118 matches
Mail list logo