Changes between Version 9 and Version 10 of XML-RPC


Ignore:
Timestamp:
Feb 2, 2007, 2:14:32 PM (17 years ago)
Author:
James Wheare <django@…>
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • XML-RPC

    v9 v10  
    1414
    1515{{{
     16#!python
    1617urlpatterns = patterns('',
    1718    # XML-RPC
     
    2526
    2627{{{
     28#!python
    2729# Patchless XMLRPC Service for Django
    2830# Kind of hacky, and stolen from Crast on irc.freenode.net:#django
     
    7274
    7375                response.write("</ul>")
    74                 response.write('<a href="http://www.djangoproject.com/"><img src="http://media.djangoproject.com/img/badges/djangomade124x25_grey.gif" border="0" alt="Made with Django." title="Made with Django."></a>')
     76                response.write('<a href="http://www.djangoproject.com/"> <img src="http://media.djangoproject.com/img/badges/djangomade124x25_grey.gif" border="0" alt="Made with Django." title="Made with Django."></a>')
    7577
    7678        response['Content-length'] = str(len(response.content))
     
    98100
    99101{{{
     102#!python
    100103import sys
    101104import xmlrpclib
Back to Top