Django
The web framework for perfectionists with deadlines.
Overview
Download
Documentation
News
Community
Code
Issues
About
♥ Donate
Issues
GitHub Login
DjangoProject Login
Preferences
API
View Tickets
Reports
Timeline
Wiki
Search
Context Navigation
←
Previous Change
Wiki History
Next Change →
Changes between
Version 50
and
Version 51
of
XML-RPC
View differences
inline
side by side
Show
lines around each change
Show the changes in full context
Ignore:
Blank lines
Case changes
White space changes
Timestamp:
06/14/11 09:32:19 (
12 years
ago)
Author:
anonymous
Comment:
--
Legend:
Unmodified
Added
Removed
Modified
XML-RPC
v50
v51
133
133
If you see error 403, just add decorator:
134
134
135
from django.views.decorators.csrf import csrf_exempt
136
...
137
@csrf_exempt
138
def rpc_handler ...
135
-
from django.views.decorators.csrf import csrf_exempt
136
-
...
137
-
@csrf_exempt
138
-
def rpc_handler ...
Back to Top