[Web-SIG] more moderators for Web-SIG list?

2014-09-15 Thread bill
Anyone want to help moderate the Web-SIG list? Very low activity level. I'd just like to get some more people who can manipulate the levers. Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig Unsubscribe

Re: [Web-SIG] WSGI for Python 3

2010-07-17 Thread Bill Janssen
the String ABC and an implementation of encoded strings, i.e. strings with an internal representation that's a byte sequence in a particular encoding. Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig Unsubscribe

Re: [Web-SIG] Python 3.0 and WSGI 1.0.

2009-04-01 Thread Bill Janssen
as it was in the URI. Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig Unsubscribe: http://mail.python.org/mailman/options/web-sig/archive%40mail-archive.com

[Web-SIG] invalid http.cookiejar test?

2008-08-08 Thread Bill Janssen
this was that it would succeed. Which is the correct expectation? Bill def test_url_encoding(self): # Try some URL encodings of the PATHs. # (the behaviour here has changed from libwww-perl) c = CookieJar(DefaultCookiePolicy(rfc2965=True)) interact_2965(c, http

Re: [Web-SIG] parsing of urlencoded data and Unicode

2008-07-29 Thread Bill Janssen
to the discussion on python-dev list? See http://mail.python.org/pipermail/python-dev/2008-July/081013.html and the subsequent conversation. And http://mail.python.org/pipermail/python-dev/2008-July/081066.html and the reply to that. Bill ___ Web-SIG mailing

Re: [Web-SIG] parsing of urlencoded data and Unicode

2008-07-29 Thread Bill Janssen
of errors. It's clearly not safe to do so generally. If you do decide to do this, please tell me what framework you're building so that I can avoid it :-). Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig

Re: [Web-SIG] parsing of urlencoded data and Unicode

2008-07-29 Thread Bill Janssen
agree. Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig Unsubscribe: http://mail.python.org/mailman/options/web-sig/archive%40mail-archive.com

Re: [Web-SIG] parsing of urlencoded data and Unicode

2008-07-29 Thread Bill Janssen
in ISO-8859-x and didn't say it was doing so, then an error should be raised when non-ASCII data is seen. Yep. Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig Unsubscribe: http://mail.python.org/mailman/options

[Web-SIG] some much-deferred admin of web-sig list...

2008-07-28 Thread Bill Janssen
I've just cleared the queue of admin tasks for the Web-SIG list, so don't be surprised to see some old messages appear... Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig Unsubscribe: http://mail.python.org

Re: [Web-SIG] parsing of urlencoded data and Unicode

2008-07-28 Thread Bill Janssen
spec, multipart/form-data can contain arbitrary Unicode strings. In Python 3.x, strings are all Unicode. Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig Unsubscribe: http://mail.python.org/mailman/options

Re: [Web-SIG] parsing of urlencoded data and Unicode

2008-07-28 Thread Bill Janssen
information that the app cannot recover. Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig Unsubscribe: http://mail.python.org/mailman/options/web-sig/archive%40mail-archive.com

Re: [Web-SIG] reorg of web-related modules for Python 3K

2008-02-04 Thread Bill Janssen
in Python. Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig Unsubscribe: http://mail.python.org/mailman/options/web-sig/archive%40mail-archive.com

Re: [Web-SIG] Removal of Cookie in Python 3.0 OK?

2008-02-04 Thread Bill Janssen
see what's in the stdlib be updated to best-of-breed, instead of the-first-thing-we-thought-of-in-1995, as all too much of it is. Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig Unsubscribe: http

[Web-SIG] reorg of web-related modules for Python 3K

2008-02-03 Thread Bill Janssen
, if you care about all this. Alexandre Vassalotti further proposes the following: xmlrpclib - xmlrpc.tools SimpleXMLRPCServer - xmlrpc.server DocXMLRPCServer - xmlrpc.server Personally, I'd put those under http., or maybe http.xmlrpc.. Bill ___ Web-SIG

[Web-SIG] more work on httplib?

2008-02-03 Thread Bill Janssen
it irritating that I had to write all of this myself, instead of just pulling it from the standard library. Now that it's released, what's already in the standard library (that I just didn't know about :-)? And which items should I file bug reports on? Bill

Re: [Web-SIG] more work on httplib?

2008-02-03 Thread Bill Janssen
restricting myself to Python 2.3, so I haven't really looked at cookielib. Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig Unsubscribe: http://mail.python.org/mailman/options/web-sig/archive%40mail-archive.com

Re: [Web-SIG] daemon tools

2007-03-08 Thread Bill Janssen
For symmetry's sake in Windows a Python service manager could simply use SCManager API under the hood (through win32all) to get the job done, still keeping a consistent cross-platform modus operandi. That's what I do in UpLib. Works pretty well. Bill

[Web-SIG] cleaning up the standard library's Web support

2007-01-08 Thread Bill Janssen
be deleted altogether? Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig Unsubscribe: http://mail.python.org/mailman/options/web-sig/archive%40mail-archive.com

[Web-SIG] WSGI -- usable for other protocols?

2006-10-17 Thread Bill Janssen
-supporting environments will also support PyLucene (the limiting factor is that the GCJ runtime has to be linked in, and all threads must be GCJ threads). Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig

Re: [Web-SIG] WSGI -- usable for other protocols?

2006-10-17 Thread Bill Janssen
figured I'd adapt Medusa for this, again; set up an HTTP handler and an IMAP handler. But I thought I'd check the wisdom of the crowd, first. Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig Unsubscribe: http

Re: [Web-SIG] WSGI -- usable for other protocols?

2006-10-17 Thread Bill Janssen
to do auto-filtering on a per-user basis with either MH procmail scripts or a Python script that uses a particular API. I don't need an SMTP server, I don't need a Web interface to mail. If DivmodQuotient is anywhere close to that, I'll take a longer look. Bill

Re: [Web-SIG] WSGI -- usable for other protocols?

2006-10-17 Thread Bill Janssen
. It sounds like you've worked out most of the issues with IMAP4, so I'll take a closer look. Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig Unsubscribe: http://mail.python.org/mailman/options/web-sig/archive

Re: [Web-SIG] Adding wsgiref to stdlib

2006-04-29 Thread Bill Janssen
It still looks like an application of WSGI, not part of a reference implementation. It seems to me that canonical exemplars are part of what a reference implementation should include. Otherwise it would be a standard implementation, which is considerably different. Bill

Re: [Web-SIG] [Python-Dev] Adding wsgiref to stdlib

2006-04-29 Thread Bill Janssen
Perhaps this could go in Demo/wsgiref/? Perhaps both Ian's and Phillip's examples could go into Demo/wsgiref/? Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig Unsubscribe: http://mail.python.org/mailman

Re: [Web-SIG] [Python-Dev] Adding wsgiref to stdlib

2006-04-28 Thread Bill Janssen
to help with that, send me mail.) Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig Unsubscribe: http://mail.python.org/mailman/options/web-sig/archive%40mail-archive.com

Re: [Web-SIG] [Fwd: Summer of Code preparation]

2006-04-17 Thread Bill Janssen
to this would be to translate the Javascript into Python, and use existing introspection hooks to watch the Python execute. Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig Unsubscribe: http://mail.python.org/mailman

Re: [Web-SIG] WSGI in standard library

2006-02-17 Thread Bill Janssen
what I mean ;) I had to do some client-side cookie handling lately... There are some missing pieces, like cookie databases that automatically sync with the user's browser cookie repositories. I don't believe there's any support for server-side cookie handling either. Bill

Re: [Web-SIG] WSGI in standard library

2006-02-17 Thread Bill Janssen
What would we be PEPing? Well, when we started, I made up a list of various things that seem to be missing in the standard library, like server-side support for SSL-encrypted socket connections. http://www.parc.com/janssen/web-sig/needed.html Bill

Re: [Web-SIG] WSGI in standard library

2006-02-16 Thread Bill Janssen
of the issues before we go ahead and commit anything? Great idea! That's exactly what I thought when I organized this SIG a couple of years ago. Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig Unsubscribe

Re: [Web-SIG] WSGI in standard library

2006-02-06 Thread Bill Janssen
. Non-production code shouldn't go into the stdlib; instead, Alan's proposed module should go onto some pedagogical website somewhere with appropriate tutorial documentation. Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org

Re: [Web-SIG] Re: Just lost another one to Rails

2005-04-13 Thread Bill Janssen
the ability to do things *with Python*. And that doesn't (for me) mean switching to something else, no matter how many other people understand that something else. Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web

Re: [Web-SIG] Pure Python HTML?

2005-04-13 Thread Bill Janssen
ways of helping Python-savvy engineers provide and use Web services. Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig Unsubscribe: http://mail.python.org/mailman/options/web-sig/archive%40mail-archive.com

Re: [Web-SIG] Pure Python HTML?

2005-04-12 Thread Bill Janssen
'] = 'How to write a Web service' dynamic_content['author'] = 'Someone Good' request.reply(template % dynamic_content) Bill ___ Web-SIG mailing list Web-SIG@python.org Web SIG: http://www.python.org/sigs/web-sig Unsubscribe: http://mail.python.org