[issue1817] module-cgi: handling GET and POST together

2008-06-21 Thread Nubis

Nubis [EMAIL PROTECTED] added the comment:

This was pretty much done when I got here. It broked the other cgi_test
(which tests some other corner cases).
Patch includes modifications to Lib/cgi.py and adds
Lib/test/test_cgi_post_qs.py to test the new features.

This should be closed by now, but since this is my first patch, just let
me know what else should I do to get it closed.

thanks!

--
keywords: +patch
nosy: +Nubis
versions: +Python 2.6
Added file: http://bugs.python.org/file10683/post_qs.patch

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1817
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1817] module-cgi: handling GET and POST together

2008-06-21 Thread Guido van Rossum

Guido van Rossum [EMAIL PROTECTED] added the comment:

Thanks for your contribution!

To get this commmitted, please draw the attention of someone else on
python-dev (or if you're an IRC person try #python-dev at freenote,
IIRC).  I'd recommend moving the tests into the existing test_cgi.py.

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1817
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1817] module-cgi: handling GET and POST together

2008-06-21 Thread Nubis

Nubis [EMAIL PROTECTED] added the comment:

I moved the test into the current test_cgi.py, and also added the docs
and NEWS.
This patch also includes all the previous changes and is the only one
that needs to be merged.


Now I think it def should be closed :)

Added file: http://bugs.python.org/file10689/post_qs_final.patch

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1817
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1817] module-cgi: handling GET and POST together

2008-06-21 Thread Facundo Batista

Facundo Batista [EMAIL PROTECTED] added the comment:

Commited the final Nubis' version in r64447. Fixed, :). Thank you all!

--
nosy: +facundobatista
resolution:  - fixed
status: open - closed

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1817
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1817] module-cgi: handling GET and POST together

2008-01-20 Thread Christian Heimes

Changes by Christian Heimes:


--
components: +Library (Lib)
priority:  - normal
type:  - rfe

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1817
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1817] module-cgi: handling GET and POST together

2008-01-12 Thread Alexandre Fiori

New submission from Alexandre Fiori:

It looks like module-cgi cannot handle GET and POST together when using
FieldStorage. For instance, a form action=script.py?key=value
action=post is available through cgi.FormContent but not
cgi.FieldStorage when there are other input in the html form.
Very strange.

--
messages: 59848
nosy: alef13
severity: normal
status: open
title: module-cgi: handling GET and POST together
versions: Python 2.5

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1817
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1817] module-cgi: handling GET and POST together

2008-01-12 Thread Guido van Rossum

Guido van Rossum added the comment:

Well, what are you waiting for? Submit a patch!

--
keywords: +easy
nosy: +gvanrossum

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1817
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1817] module-cgi: handling GET and POST together

2008-01-12 Thread Alexandre Fiori

Alexandre Fiori added the comment:

Here it is, babe. I've made appropriate changes to make it read
QUERY_STRING when it's available within POST method. It's currently
being parsed by parse_qsl() in read_urlencoded() as it should be in
regular GET or POST. I didn't touch CONTENT_LENGTH since it has the size
of the POST data without QUERY_STRING's size. That would affect read()
of such POST data. It's working. Thanks for the incentive, it's my first
patch for python.

Added file: http://bugs.python.org/file9148/cgi.py.patch

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1817
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com