Revision 2d640b8d README

b/README
15 15
    $ cp settings.py.dist settings.py
16 16
    $ ./bin/python manage.py runserver
17 17

  
18
(On ubuntu systems, apt-get install libcurl3-gnutls libcurl3-gnutls-dev was needed)
18
Notes
19
1) On ubuntu systems, apt-get install libcurl3-gnutls libcurl3-gnutls-dev was needed
20
2) jQuery.ajax POST is not working unless you edit piston/utils.py. 
21
On def content_type change
22

  
23
        ctype = self.request.META.get('CONTENT_TYPE', type_formencoded)
24

  
25
to 
26
        ctype = self.request.META.get('CONTENT_TYPE', type_formencoded).split(";")[0]

Also available in: Unified diff