8000 Fixed #20034 - Ability to retrieve variables in multipart even before parsing files by tadeck · Pull Request #1148 · django/django · GitHub
[go: up one dir, main page]

Skip to content

Fixed #20034 - Ability to retrieve variables in multipart even before parsing files #1148

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 33 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
c278e56
Corrected documentation on the constructor arguments of MultiPartParser
hydrogen18 May 17, 2013
ee11d32
Reorganize committers list chronologically.
aaugustin May 18, 2013
1d3d040
Merge pull request #1082 from hydrogen18/master
mjtamlyn May 18, 2013
9012a9e
Fixed #20422 -- Applied makemessage's --ignore patterns to full path
bmispelon May 16, 2013
051cb1f
Fixed #20411 -- Don't let invalid referers blow up CSRF same origin c…
apollo13 May 18, 2013
8fd44b2
Fixed #20356 -- Prevented crash when HTTP_REFERER contains non-ascii
claudep May 18, 2013
0b07416
Fixed #20294 -- Documented context processors in TemplateResponseMixin.
zsiciarz May 18, 2013
7b85ef9
Fixed #20408 -- Clarified that values_list() doesn't return a list.
aaugustin May 18, 2013
566e284
Added test for multipart, non form-data POST.
senko May 18, 2013
029c690
#20432: Fix for GroupAdmin test
jacobb May 18, 2013
3401152
Fixed #20432 -- Test failure in admin_views.
jacobb May 18, 2013
215647c
Fixed #20386 - Introspection problem on Oracle
May 16, 2013
5e208d5
Fixed #20433: Extract catalog compilation code from javascript_catalo…
May 18, 2013
06603d1
Merge pull request #1090 from zyegfryed/ticket_20433
aaugustin May 18, 2013
4bed64c
Made test introduced in 566e284c pass on Python 3.
aaugustin May 18, 2013
be826aa
Fixed #20402: removed as-limit from uWSGI example.
aaugustin May 18, 2013
1c921cf
Fixed #20235 -- Use self.object_list if object_list not present in ge…
dracos Apr 10, 2013
756b81d
Fixed #13546 -- Easier handling of localize field options in ModelForm
mxsasha May 18, 2013
ef73a8e
Merge pull request #1083 from Markush2010/ticket20235
mjtamlyn May 18, 2013
16683f2
Merge pull request #1084 from erikr/master
apollo13 May 18, 2013
90f1170
Fixed #20269 -- Adapted PostGIS template create script for CentOS/RHEL
claudep May 18, 2013
92ebb29
Fixes #19919: get_language_from_request() disregards "en-us" and "en"…
ambv May 18, 2013
1c16956
Fixed argument order for localized_fields to ensure backwards compati…
mxsasha May 18, 2013
8000 cac7b44
Merge pull request #1100 from ambv/issue19919
aaugustin May 18, 2013
e0df647
Merge pull request #1101 from erikr/master
apollo13 May 18, 2013
89955cc
Fixed #9595 -- Allow non-expiring cache timeouts.
jacobb May 18, 2013
a0c0cc9
Merge pull request #1088 from jacobb/upstream
dstufft May 18, 2013
dc43fbc
Fixed #18998 - Prevented session crash when auth backend removed
jorgebastida May 18, 2013
710c59b
Slightly reworked imports in contrib.auth.__init__
claudep May 18, 2013
7d050e8
Merge pull request #1113 from denibertovic/master
aaugustin May 18, 2013
63a9555
Fixed #19436 -- Don't log warnings in ensure_csrf_cookie.
oliviersels May 18, 2013
5c68d02
Modified upload handler API to be able to invoke callbacks when new f…
naftulikay Mar 13, 2013
d9866da
Refactored new feature #20034, added tests, documented.
tadeck May 18, 2013
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed #20269 -- Adapted PostGIS template create script for CentOS/RHEL
Thanks Stephane Benchimol for the report and the initial script and
mfandreas for the patch.
  • Loading branch information
claudep committed May 18, 2013
commit 90f1170bb92cfd588762039fc00477bfcdae11b3
10 changes: 8 additions & 2 deletions docs/ref/contrib/gis/install/create_template_postgis-1.5.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
#!/usr/bin/env bash
POSTGIS_SQL_PATH=`pg_config --sharedir`/contrib/postgis-1.5
if [[ `uname -r | grep el6` ]]; then
POSTGIS_SQL_PATH=`pg_config --sharedir`/contrib/postgis
POSTGIS_SQL_FILE=$POSTGIS_SQL_PATH/postgis-64.sql
else
POSTGIS_SQL_PATH=`pg_config --sharedir`/contrib/postgis-1.5
POSTGIS_SQL_FILE=$POSTGIS_SQL_PATH/postgis.sql
fi
createdb -E UTF8 template_postgis # Create the template spatial database.
createlang -d template_postgis plpgsql # Adding PLPGSQL language support.
psql -d postgres -c "UPDATE pg_database SET datistemplate='true' WHERE datname='template_postgis';"
psql -d template_postgis -f $POSTGIS_SQL_PATH/postgis.sql # Loading the PostGIS SQL routines
psql -d template_postgis -f $POSTGIS_SQL_FILE # Loading the PostGIS SQL routines
psql -d template_postgis -f $POSTGIS_SQL_PATH/spatial_ref_sys.sql
psql -d template_postgis -c "GRANT ALL ON geometry_columns TO PUBLIC;" # Enabling users to alter spatial tables.
psql -d template_postgis -c "GRANT ALL ON geography_columns TO PUBLIC;"
Expand Down
0