mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-19 10:01:05 +00:00
downcase Header keys contants
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@38401 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a20748c795
commit
75bce63bf1
2 changed files with 12 additions and 9 deletions
|
@ -1,3 +1,6 @@
|
|||
2015-03-11 Manuel Guesdon <mguesdon@orange-concept.com>
|
||||
* GSWeb/GSWConstants.m
|
||||
downcase Header keys
|
||||
2015-03-11 Manuel Guesdon <mguesdon@orange-concept.com>
|
||||
* GSWeb/GSWHTTPIO.m
|
||||
force header keys to lowercase
|
||||
|
|
|
@ -147,19 +147,19 @@ NSString* GSWHTTPHeader_AdaptorStats[2] = { @"x-gsweb-adaptorstats", @"x-webobje
|
|||
|
||||
NSString* GSWHTTPHeader_MethodPost=@"POST";
|
||||
NSString* GSWHTTPHeader_MethodGet=@"GET";
|
||||
NSString* GSWHTTPHeader_AcceptLanguage=@"Accept-Language";
|
||||
NSString* GSWHTTPHeader_AcceptEncoding=@"Accept-Encoding";
|
||||
NSString* GSWHTTPHeader_ContentDisposition=@"Content-Disposition";
|
||||
NSString* GSWHTTPHeader_ContentEncoding=@"Content-Encoding";
|
||||
NSString* GSWHTTPHeader_ContentType=@"Content-Type";
|
||||
NSString* GSWHTTPHeader_AcceptLanguage=@"accept-language";
|
||||
NSString* GSWHTTPHeader_AcceptEncoding=@"accept-encoding";
|
||||
NSString* GSWHTTPHeader_ContentDisposition=@"content-disposition";
|
||||
NSString* GSWHTTPHeader_ContentEncoding=@"content-encoding";
|
||||
NSString* GSWHTTPHeader_ContentType=@"content-type";
|
||||
NSString* GSWHTTPHeader_FormURLEncoded=@"application/x-www-form-urlencoded";
|
||||
NSString* GSWHTTPHeader_Location=@"Location";
|
||||
NSString* GSWHTTPHeader_Location=@"location";
|
||||
NSString* GSWHTTPHeader_MultipartFormData=@"multipart/form-data";
|
||||
NSString* GSWHTTPHeader_MimeType_TextPlain=@"text/plain";
|
||||
NSString* GSWHTTPHeader_UserAgent=@"User-Agent";
|
||||
NSString* GSWHTTPHeader_Referer=@"Referer";
|
||||
NSString* GSWHTTPHeader_UserAgent=@"user-agent";
|
||||
NSString* GSWHTTPHeader_Referer=@"referer";
|
||||
|
||||
NSString* GSWHTTPHeader_ContentLength=@"Content-Length";
|
||||
NSString* GSWHTTPHeader_ContentLength=@"content-length";
|
||||
|
||||
NSString* GSWHTTPHeader_Response_OK=@"OK";
|
||||
|
||||
|
|
Loading…
Reference in a new issue