Index: README.md ================================================================== --- README.md +++ README.md @@ -2,11 +2,11 @@ enables you to write an application in Objective C that will run on any platform supported by ObjFW without having to worry about differences between operating systems or various frameworks that you would otherwise need if you want to be portable. -See https://heap.zone/objfw for more information. +See https://objfw.nil.im/ for more information. Table of Contents ================= @@ -135,11 +135,11 @@ Start the MinGW-w64 Win32 or Win64 Shell (depening on what version you want to build - do *not* use the MSYS2 Shell shortcut, but use the MinGW-w64 Win32 or Win64 Shell shortcut instead!) and check out ObjFW: - $ git clone https://heap.zone/git/objfw.git + $ git clone https://git.nil.im/objfw.git You can also download a release tarball if you want. Now go to the newly checked out repository and build and install it: $ ./autogen.sh && ./configure && make -j16 install Index: src/OFHTTPClient.m ================================================================== --- src/OFHTTPClient.m +++ src/OFHTTPClient.m @@ -172,11 +172,11 @@ forKey: @"Authorization"]; } if ([headers objectForKey: @"User-Agent"] == nil) [headers setObject: @"Something using ObjFW " - @"" + @"" forKey: @"User-Agent"]; if (request.protocolVersion.major == 1 && request.protocolVersion.minor == 0 && [headers objectForKey: @"Connection"] == nil) Index: src/OFHTTPServer.m ================================================================== --- src/OFHTTPServer.m +++ src/OFHTTPServer.m @@ -746,11 +746,11 @@ - (instancetype)init { self = [super init]; _name = @"OFHTTPServer (ObjFW's HTTP server class " - @")"; + @")"; #ifdef OF_HAVE_THREADS _numberOfThreads = 1; #endif return self; Index: src/OFSerialization.h ================================================================== --- src/OFSerialization.h +++ src/OFSerialization.h @@ -17,11 +17,11 @@ #import "OFObject.h" OF_ASSUME_NONNULL_BEGIN -#define OF_SERIALIZATION_NS @"https://webkeks.org/objfw/serialization" +#define OF_SERIALIZATION_NS @"https://objfw.nil.im/serialization" @class OFXMLElement; /*! * @protocol OFSerialization OFSerialization.h ObjFW/OFSerialization.h Index: tests/OFHTTPCookieManagerTests.m ================================================================== --- tests/OFHTTPCookieManagerTests.m +++ tests/OFHTTPCookieManagerTests.m @@ -27,18 +27,18 @@ void *pool = objc_autoreleasePoolPush(); OFHTTPCookieManager *manager = [OFHTTPCookieManager manager]; OFURL *URL[4]; OFHTTPCookie *cookie[5]; - URL[0] = [OFURL URLWithString: @"http://heap.zone/foo"]; - URL[1] = [OFURL URLWithString: @"https://heap.zone/foo/bar"]; - URL[2] = [OFURL URLWithString: @"https://test.heap.zone/foo/bar"]; + URL[0] = [OFURL URLWithString: @"http://nil.im/foo"]; + URL[1] = [OFURL URLWithString: @"https://nil.im/foo/bar"]; + URL[2] = [OFURL URLWithString: @"https://test.nil.im/foo/bar"]; URL[3] = [OFURL URLWithString: @"http://webkeks.org/foo/bar"]; cookie[0] = [OFHTTPCookie cookieWithName: @"test" value: @"1" - domain: @"heap.zone"]; + domain: @"nil.im"]; TEST(@"-[addCookie:forURL:] #1", R([manager addCookie: cookie[0] forURL: URL[0]])) TEST(@"-[cookiesForURL:] #1", [[manager cookiesForURL: URL[0]] isEqual: @@ -55,11 +55,11 @@ [OFArray arrayWithObject: cookie[0]]] && [[manager cookiesForURL: URL[3]] isEqual: [OFArray array]]) cookie[2] = [OFHTTPCookie cookieWithName: @"test" value: @"3" - domain: @"heap.zone"]; + domain: @"nil.im"]; cookie[2].secure = true; TEST(@"-[addCookie:forURL:] #3", R([manager addCookie: cookie[2] forURL: URL[1]])) TEST(@"-[cookiesForURL:] #3", @@ -68,12 +68,12 @@ [[manager cookiesForURL: URL[0]] isEqual: [OFArray array]]) cookie[2].expires = [OFDate dateWithTimeIntervalSinceNow: -1]; cookie[3] = [OFHTTPCookie cookieWithName: @"test" value: @"4" - domain: @"heap.zone"]; - cookie[3].domain = @".heap.zone"; + domain: @"nil.im"]; + cookie[3].domain = @".nil.im"; TEST(@"-[addCookie:forURL:] #4", R([manager addCookie: cookie[3] forURL: URL[1]])) TEST(@"-[cookiesForURL:] #4", [[manager cookiesForURL: URL[1]] isEqual: @@ -81,11 +81,11 @@ [[manager cookiesForURL: URL[2]] isEqual: [OFArray arrayWithObject: cookie[3]]]) cookie[4] = [OFHTTPCookie cookieWithName: @"bar" value: @"5" - domain: @"test.heap.zone"]; + domain: @"test.nil.im"]; TEST(@"-[addCookie:forURL:] #5", R([manager addCookie: cookie[4] forURL: URL[0]])) TEST(@"-[cookiesForURL:] #5", [[manager cookiesForURL: URL[0]] isEqual: Index: tests/OFHTTPCookieTests.m ================================================================== --- tests/OFHTTPCookieTests.m +++ tests/OFHTTPCookieTests.m @@ -23,26 +23,26 @@ @implementation TestsAppDelegate (OFHTTPCookieTests) - (void)HTTPCookieTests { void *pool = objc_autoreleasePoolPush(); - OFURL *URL = [OFURL URLWithString: @"http://heap.zone"]; + OFURL *URL = [OFURL URLWithString: @"http://nil.im"]; OFHTTPCookie *cookie[2]; OFArray OF_GENERIC(OFHTTPCookie *) *cookies; cookie[0] = [OFHTTPCookie cookieWithName: @"foo" value: @"bar" - domain: @"heap.zone"]; + domain: @"nil.im"]; TEST(@"+[cookiesWithResponseHeaderFields:forURL:] #1", [[OFHTTPCookie cookiesWithResponseHeaderFields: [OFDictionary dictionaryWithObject: @"foo=bar" forKey: @"Set-Cookie"] forURL: URL] isEqual: [OFArray arrayWithObject: cookie[0]]]) cookie[1] = [OFHTTPCookie cookieWithName: @"qux" value: @"cookie" - domain: @"heap.zone"]; + domain: @"nil.im"]; TEST(@"+[cookiesWithResponseHeaderFields:forURL:] #2", [[OFHTTPCookie cookiesWithResponseHeaderFields: [OFDictionary dictionaryWithObject: @"foo=bar,qux=cookie" forKey: @"Set-Cookie"] forURL: URL] isEqual: [OFArray arrayWithObjects: cookie[0], cookie[1], nil]]) Index: tests/OFSerializationTests.m ================================================================== --- tests/OFSerializationTests.m +++ tests/OFSerializationTests.m @@ -42,11 +42,11 @@ [d setObject: @"B\"la" forKey: @"Blub"]; [l appendObject: @"Hello"]; [l appendObject: @"Wo\rld!\nHow are you?"]; - [l appendObject: [OFURL URLWithString: @"https://webkeks.org/"]]; + [l appendObject: [OFURL URLWithString: @"https://objfw.nil.im/"]]; [l appendObject: [OFXMLElement elementWithXMLString: @""]]; [l appendObject: [OFSet setWithObjects: @"foo", @"foo", @"bar", nil]]; [l appendObject: [OFCountedSet setWithObjects: @"foo", @"foo", @"bar", nil]]; Index: tests/serialization.xml ================================================================== --- tests/serialization.xml +++ tests/serialization.xml @@ -1,7 +1,7 @@ - + Blub @@ -29,11 +29,11 @@ Hello Wo ld! How are you? - https://webkeks.org/ + https://objfw.nil.im/