Updates for 1.19.2 release

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@28540 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2009-08-25 11:13:00 +00:00
parent e7db98165f
commit ae54787ec6
12 changed files with 108 additions and 14 deletions

View file

@ -662,7 +662,7 @@ static void MD5Transform (uint32_t buf[4], uint32_t const in[16])
*/
- (BOOL) uudecodeInto: (NSMutableData*)decoded
name: (NSString**)namePtr
mode: (int*)modePtr
mode: (NSInteger*)modePtr
{
const unsigned char *bytes = (const unsigned char*)[self bytes];
unsigned length = [self length];
@ -810,7 +810,7 @@ static void MD5Transform (uint32_t buf[4], uint32_t const in[16])
*/
- (BOOL) uuencodeInto: (NSMutableData*)encoded
name: (NSString*)name
mode: (int)mode
mode: (NSInteger)mode
{
const unsigned char *bytes = (const unsigned char*)[self bytes];
int length = [self length];

View file

@ -664,7 +664,7 @@ wordData(NSString *word)
* </p>
* <p>If you need to parse faulty documents (eg where a faulty mail client
* has produced an email which does not conform to the MIME standards), you
* should look at the -setBuggyQotes: and -setDefaultCharset: methods, which
* should look at the -setBuggyQuotes: and -setDefaultCharset: methods, which
* are designed to cope with the most common faults.
* </p>
*/

View file

@ -174,6 +174,7 @@ Base_AGSDOC_FLAGS = \
GS_RANGE_SCOPE=extern;GS_RANGE_ATTR="";\
GS_ZONE_SCOPE=extern;GS_ZONE_ATTR="";\
INLINE=inline;\
WINAPI="";\
}' -Up Base
BaseAdditions_AGSDOC_FLAGS = \

View file

@ -2025,7 +2025,7 @@ static NSStringEncoding defaultEncoding;
(const GSNativeChar*)[path cStringUsingEncoding: NSUnicodeStringEncoding];
}
- (NSString*) stringWithFileSystemRepresentation: (const GSNativeChar*)string
length: (unsigned int)len
length: (NSUInteger)len
{
return [NSString stringWithCharacters: string length: len];
}

View file

@ -263,15 +263,18 @@ typedef struct {
- (void) connection: (NSURLConnection *)connection
didCancelAuthenticationChallenge: (NSURLAuthenticationChallenge *)challenge
{
return;
}
- (void) connection: (NSURLConnection *)connection
didFailWithError: (NSError *)error
{
return;
}
- (void) connectionDidFinishLoading: (NSURLConnection *)connection
{
return;
}
- (void) connection: (NSURLConnection *)connection
@ -284,11 +287,13 @@ typedef struct {
- (void) connection: (NSURLConnection *)connection
didReceiveData: (NSData *)data
{
return;
}
- (void) connection: (NSURLConnection *)connection
didReceiveResponse: (NSURLResponse *)response
{
return;
}
- (NSCachedURLResponse *) connection: (NSURLConnection *)connection

View file

@ -132,44 +132,53 @@ typedef struct {
- (void) downloadDidBegin: (NSURLDownload *)download
{
return;
}
- (void) downloadDidFinish: (NSURLDownload *)download
{
return;
}
- (void) download: (NSURLDownload *)download
decideDestinationWithSuggestedFilename: (NSString *)filename
{
return;
}
- (void) download: (NSURLDownload *)download
didCancelAuthenticationChallenge: (NSURLAuthenticationChallenge *)challenge
{
return;
}
- (void) download: (NSURLDownload *)download
didCreateDestination: (NSString *)path
{
return;
}
- (void) download: (NSURLDownload *)download didFailWithError: (NSError *)error
{
return;
}
- (void) download: (NSURLDownload *)download
didReceiveAuthenticationChallenge: (NSURLAuthenticationChallenge *)challenge
{
return;
}
- (void) download: (NSURLDownload *)download
didReceiveDataOfLength: (NSUInteger)length
{
return;
}
- (void) download: (NSURLDownload *)download
didReceiveResponse: (NSURLResponse *)response
{
return;
}
- (BOOL) download: (NSURLDownload *)download
@ -182,6 +191,7 @@ typedef struct {
willResumeWithResponse: (NSURLResponse *)response
fromByte: (long long)startingByte
{
return;
}
- (NSURLRequest *) download: (NSURLDownload *)download
@ -209,7 +219,7 @@ typedef struct {
- (void) URLProtocol: (NSURLProtocol *)protocol
cachedResponseIsValid: (NSCachedURLResponse *)cachedResponse
{
return;
}
- (void) URLProtocol: (NSURLProtocol *)protocol
@ -221,6 +231,7 @@ typedef struct {
- (void) URLProtocol: (NSURLProtocol *)protocol
didLoadData: (NSData *)data
{
return;
}
- (void) URLProtocol: (NSURLProtocol *)protocol