Skip to content

Commit

Permalink
Initial add to repository.
Browse files Browse the repository at this point in the history
  • Loading branch information
adib committed Feb 11, 2011
1 parent d2c0aa3 commit 2fb0862
Show file tree
Hide file tree
Showing 247 changed files with 43,784 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
@@ -0,0 +1 @@
*.pbxproj -crlf -diff -merge
11 changes: 11 additions & 0 deletions .gitignore
@@ -0,0 +1,11 @@
build
*xcodeproj/*mode*
*xcodeproj/*pbxuser
*xcodeproj/*per*
*xcodeproj/project.xcworkspace
*xcodeproj/xcuserdata
*tmproj
.DS_Store
profile
*.pbxuser
*.mode1v3
2 changes: 2 additions & 0 deletions English.lproj/InfoPlist.strings
@@ -0,0 +1,2 @@
/* Localized versions of Info.plist keys */

5,147 changes: 5,147 additions & 0 deletions English.lproj/MainMenu.xib

Large diffs are not rendered by default.

@@ -0,0 +1 @@
*.pbxproj -crlf -diff -merge
11 changes: 11 additions & 0 deletions External/ASIHTTPRequest/pokeb-asi-http-request-63061ac/.gitignore
@@ -0,0 +1,11 @@
build
*xcodeproj/*mode*
*xcodeproj/*pbxuser
*xcodeproj/*per*
*xcodeproj/project.xcworkspace
*xcodeproj/xcuserdata
*tmproj
.DS_Store
profile
*.pbxuser
*.mode1v3
@@ -0,0 +1,3 @@
[submodule "External/GHUnit"]
path = External/GHUnit
url = git://github.com/gabriel/gh-unit.git
@@ -0,0 +1,35 @@
//
// ASIAuthenticationDialog.h
// Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest
//
// Created by Ben Copsey on 21/08/2009.
// Copyright 2009 All-Seeing Interactive. All rights reserved.
//

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@class ASIHTTPRequest;

typedef enum _ASIAuthenticationType {
ASIStandardAuthenticationType = 0,
ASIProxyAuthenticationType = 1
} ASIAuthenticationType;

@interface ASIAutorotatingViewController : UIViewController
@end

@interface ASIAuthenticationDialog : ASIAutorotatingViewController <UIActionSheetDelegate, UITableViewDelegate, UITableViewDataSource> {
ASIHTTPRequest *request;
ASIAuthenticationType type;
UITableView *tableView;
UIViewController *presentingController;
BOOL didEnableRotationNotifications;
}
+ (void)presentAuthenticationDialogForRequest:(ASIHTTPRequest *)request;
+ (void)dismiss;

@property (retain) ASIHTTPRequest *request;
@property (assign) ASIAuthenticationType type;
@property (assign) BOOL didEnableRotationNotifications;
@property (retain, nonatomic) UIViewController *presentingController;
@end

0 comments on commit 2fb0862

Please sign in to comment.