From 045de795a9c8f7dcd6be3af594f7112821092e67 Mon Sep 17 00:00:00 2001 From: Blake Watters Date: Sun, 27 Sep 2009 23:14:59 -0400 Subject: [PATCH] gateguru -> OTRestFramework in comments --- NSDictionary+OTRestRequestSerialization.h | 2 +- NSDictionary+OTRestRequestSerialization.m | 2 +- OTRestClient.h | 2 +- OTRestClient.m | 2 +- OTRestModelLoader.m | 8 -------- OTRestParams.h | 2 +- OTRestParams.m | 2 +- OTRestParamsAttachment.h | 2 +- OTRestParamsAttachment.m | 2 +- OTRestParamsDataAttachment.h | 2 +- OTRestParamsDataAttachment.m | 2 +- OTRestParamsFileAttachment.h | 2 +- OTRestParamsFileAttachment.m | 2 +- OTRestRequest.h | 2 +- OTRestRequest.m | 2 +- OTRestRequestSerializable.h | 2 +- OTRestResponse.h | 2 +- OTRestResponse.m | 2 +- 18 files changed, 17 insertions(+), 25 deletions(-) diff --git a/NSDictionary+OTRestRequestSerialization.h b/NSDictionary+OTRestRequestSerialization.h index 1caed68f..f6f658a4 100644 --- a/NSDictionary+OTRestRequestSerialization.h +++ b/NSDictionary+OTRestRequestSerialization.h @@ -1,6 +1,6 @@ // // NSDictionary+OTRestRequestSerialization.h -// gateguru +// OTRestFramework // // Created by Blake Watters on 7/28/09. // Copyright 2009 Objective 3. All rights reserved. diff --git a/NSDictionary+OTRestRequestSerialization.m b/NSDictionary+OTRestRequestSerialization.m index 6dec7322..f87a173f 100644 --- a/NSDictionary+OTRestRequestSerialization.m +++ b/NSDictionary+OTRestRequestSerialization.m @@ -1,6 +1,6 @@ // // NSDictionary+OTRestRequestSerialization.m -// gateguru +// OTRestFramework // // Created by Blake Watters on 7/28/09. // Copyright 2009 Objective 3. All rights reserved. diff --git a/OTRestClient.h b/OTRestClient.h index 24be7f0a..dcfaa610 100644 --- a/OTRestClient.h +++ b/OTRestClient.h @@ -1,6 +1,6 @@ // // OTRestClient.h -// gateguru +// OTRestFramework // // Created by Blake Watters on 7/28/09. // Copyright 2009 Objective 3. All rights reserved. diff --git a/OTRestClient.m b/OTRestClient.m index f256a1fa..0c600c15 100644 --- a/OTRestClient.m +++ b/OTRestClient.m @@ -1,6 +1,6 @@ // // OTRestClient.m -// gateguru +// OTRestFramework // // Created by Blake Watters on 7/28/09. // Copyright 2009 Objective 3. All rights reserved. diff --git a/OTRestModelLoader.m b/OTRestModelLoader.m index 5496b490..3a006eff 100644 --- a/OTRestModelLoader.m +++ b/OTRestModelLoader.m @@ -31,19 +31,11 @@ - (void)loadModelFromResponse:(OTRestResponse*)response { id model = [_mapper buildModelFromString:[response payloadString]]; -// id model = [_mapper buildModelFromXML:[[response payloadXMLDocument] firstChild]]; [_delegate performSelector:self.callback withObject:model]; } - (void)loadModelsFromResponse:(OTRestResponse*)response { NSArray* models = [_mapper buildModelsFromString:[response payloadString]]; - -// NSMutableArray* models = [[[NSMutableArray alloc] init] autorelease]; -// NSArray* elements = [[[response payloadXMLDocument] firstChild] childElements]; -// for (Element* element in elements) { -// id model = [_mapper buildModelFromXML:element]; -// [models addObject:model]; -// } [_delegate performSelector:self.callback withObject:models]; } diff --git a/OTRestParams.h b/OTRestParams.h index d010e22c..cd274714 100644 --- a/OTRestParams.h +++ b/OTRestParams.h @@ -1,6 +1,6 @@ // // OTRestParams.h -// gateguru +// OTRestFramework // // Created by Blake Watters on 8/3/09. // Copyright 2009 Objective 3. All rights reserved. diff --git a/OTRestParams.m b/OTRestParams.m index 3b24f085..af662824 100644 --- a/OTRestParams.m +++ b/OTRestParams.m @@ -1,6 +1,6 @@ // // OTRestParams.m -// gateguru +// OTRestFramework // // Created by Blake Watters on 8/3/09. // Copyright 2009 Objective 3. All rights reserved. diff --git a/OTRestParamsAttachment.h b/OTRestParamsAttachment.h index 6a97b824..b86fb561 100644 --- a/OTRestParamsAttachment.h +++ b/OTRestParamsAttachment.h @@ -1,6 +1,6 @@ // // OTRestParamsAttachment.h -// gateguru +// OTRestFramework // // Created by Blake Watters on 8/6/09. // Copyright 2009 Objective 3. All rights reserved. diff --git a/OTRestParamsAttachment.m b/OTRestParamsAttachment.m index 45254993..55a03a86 100644 --- a/OTRestParamsAttachment.m +++ b/OTRestParamsAttachment.m @@ -1,6 +1,6 @@ // // OTRestAttachment.m -// gateguru +// OTRestFramework // // Created by Blake Watters on 8/6/09. // Copyright 2009 Objective 3. All rights reserved. diff --git a/OTRestParamsDataAttachment.h b/OTRestParamsDataAttachment.h index 638e6240..c1689607 100644 --- a/OTRestParamsDataAttachment.h +++ b/OTRestParamsDataAttachment.h @@ -1,6 +1,6 @@ // // OTRestParamsDataAttachment.h -// gateguru +// OTRestFramework // // Created by Blake Watters on 8/6/09. // Copyright 2009 Objective 3. All rights reserved. diff --git a/OTRestParamsDataAttachment.m b/OTRestParamsDataAttachment.m index 62b739d8..839f8891 100644 --- a/OTRestParamsDataAttachment.m +++ b/OTRestParamsDataAttachment.m @@ -1,6 +1,6 @@ // // OTRestParamsDataAttachment.m -// gateguru +// OTRestFramework // // Created by Blake Watters on 8/6/09. // Copyright 2009 Objective 3. All rights reserved. diff --git a/OTRestParamsFileAttachment.h b/OTRestParamsFileAttachment.h index 36ebc104..b91ccf72 100644 --- a/OTRestParamsFileAttachment.h +++ b/OTRestParamsFileAttachment.h @@ -1,6 +1,6 @@ // // OTRestParamsFileAttachment.h -// gateguru +// OTRestFramework // // Created by Blake Watters on 8/6/09. // Copyright 2009 Objective 3. All rights reserved. diff --git a/OTRestParamsFileAttachment.m b/OTRestParamsFileAttachment.m index f8333f06..5abfa73b 100644 --- a/OTRestParamsFileAttachment.m +++ b/OTRestParamsFileAttachment.m @@ -1,6 +1,6 @@ // // OTRestParamsFileAttachment.m -// gateguru +// OTRestFramework // // Created by Blake Watters on 8/6/09. // Copyright 2009 Objective 3. All rights reserved. diff --git a/OTRestRequest.h b/OTRestRequest.h index 041b9bd3..c8b44c73 100644 --- a/OTRestRequest.h +++ b/OTRestRequest.h @@ -1,6 +1,6 @@ // // OTRestRequest.h -// gateguru +// OTRestFramework // // Created by Jeremy Ellison on 7/27/09. // Copyright 2009 Objective3. All rights reserved. diff --git a/OTRestRequest.m b/OTRestRequest.m index 2284e3cb..ef792620 100644 --- a/OTRestRequest.m +++ b/OTRestRequest.m @@ -1,6 +1,6 @@ // // OTRestRequest.m -// gateguru +// OTRestFramework // // Created by Jeremy Ellison on 7/27/09. // Copyright 2009 Objective3. All rights reserved. diff --git a/OTRestRequestSerializable.h b/OTRestRequestSerializable.h index a86e5b25..12d4a2b6 100644 --- a/OTRestRequestSerializable.h +++ b/OTRestRequestSerializable.h @@ -1,6 +1,6 @@ // // OTRestRequestSerializable.h -// gateguru +// OTRestFramework // // Created by Blake Watters on 8/3/09. // Copyright 2009 Objective 3. All rights reserved. diff --git a/OTRestResponse.h b/OTRestResponse.h index 16479f55..65fc8bce 100644 --- a/OTRestResponse.h +++ b/OTRestResponse.h @@ -1,6 +1,6 @@ // // OTRestResponse.h -// gateguru +// OTRestFramework // // Created by Blake Watters on 7/28/09. // Copyright 2009 Objective 3. All rights reserved. diff --git a/OTRestResponse.m b/OTRestResponse.m index d1b382b0..60186f1e 100644 --- a/OTRestResponse.m +++ b/OTRestResponse.m @@ -1,6 +1,6 @@ // // OTRestResponse.m -// gateguru +// OTRestFramework // // Created by Blake Watters on 7/28/09. // Copyright 2009 Objective 3. All rights reserved.