- Timestamp:
- 04/04/11 08:32:33 (2 years ago)
- Location:
- apps/iphone
- Files:
-
- 2 added
- 23 modified
- 1 copied
-
my.tel/trunk/Classes/AccountEditController.m (modified) (1 diff)
-
my.tel/trunk/Classes/AccountViewController.m (modified) (1 diff)
-
my.tel/trunk/Classes/GroupFriendsController.m (modified) (1 diff)
-
my.tel/trunk/Classes/JSON/SBJSON.m (modified) (1 diff)
-
my.tel/trunk/Classes/KeywordCell.h (modified) (1 diff)
-
my.tel/trunk/Classes/KeywordCell.m (modified) (3 diffs)
-
my.tel/trunk/Classes/KeywordEditController.h (modified) (1 diff)
-
my.tel/trunk/Classes/KeywordViewController.m (modified) (1 diff)
-
my.tel/trunk/Classes/MytelAppDelegate.m (modified) (1 diff)
-
my.tel/trunk/Classes/ProfileRecordCell.m (modified) (1 diff)
-
my.tel/trunk/Classes/RecordCell.m (modified) (1 diff)
-
my.tel/trunk/Classes/RootViewController.m (modified) (2 diffs)
-
my.tel/trunk/English.lproj/Localizable.strings (modified) (2 diffs)
-
my.tel/trunk/fr.lproj (added)
-
my.tel/trunk/fr.lproj/Localizable.strings (copied) (copied from apps/iphone/my.tel/trunk/English.lproj/Localizable.strings) (1 diff)
-
my.tel/trunk/Icon@2x.png (modified) (previous)
-
my.tel/trunk/Icon-72.png (modified) (previous)
-
my.tel/trunk/Icon.png (modified) (previous)
-
my.tel/trunk/Icon-Small@2x.png (modified) (previous)
-
my.tel/trunk/Icon-Small-50.png (added)
-
my.tel/trunk/Icon-Small.png (modified) (previous)
-
my.tel/trunk/Info.plist (modified) (1 diff)
-
my.tel/trunk/iTunesArtwork (modified) (previous)
-
my.tel/trunk/Russian.lproj/Localizable.strings (modified) (2 diffs)
-
my.tel/trunk/VIP.tel.xcodeproj/project.pbxproj (modified) (25 diffs)
-
superbook/trunk/DotTel_SDK/Classes/Reachability.m (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
apps/iphone/my.tel/trunk/Classes/AccountEditController.m
r811 r843 27 27 28 28 - (id)initWithStyle:(UITableViewStyle)style { 29 if ( self = [super initWithStyle:UITableViewStyleGrouped]) {29 if ((self = [super initWithStyle:UITableViewStyleGrouped])) { 30 30 [[NSBundle mainBundle] loadNibNamed:@"AccountEditCells" owner:self options:nil]; 31 31 self.delegate = nil; -
apps/iphone/my.tel/trunk/Classes/AccountViewController.m
r811 r843 31 31 32 32 - (id)initWithStyle:(UITableViewStyle)style { 33 if ( self = [super initWithStyle:style]) {33 if ((self = [super initWithStyle:style])) { 34 34 self.domainsArray = [NSMutableArray arrayWithCapacity:10]; 35 35 self.shouldRedirectToSingleDomain = YES; // default to redirect if there's only one domain -
apps/iphone/my.tel/trunk/Classes/GroupFriendsController.m
r811 r843 253 253 fInGroupIds = [[NSMutableArray arrayWithCapacity:50] retain]; 254 254 fNotInGroupIds = [[NSMutableArray arrayWithCapacity:50] retain]; 255 while ( aFriend = [fEnum nextObject]) {255 while ((aFriend = [fEnum nextObject])) { 256 256 if ([fFlagEnum nextObject] == nTrue) { 257 257 [fInGroupIds addObject:(NSString *)[aFriend objectForKey:@"id"]]; -
apps/iphone/my.tel/trunk/Classes/JSON/SBJSON.m
r673 r843 100 100 101 101 - (id)init { 102 if ( self = [super init]) {102 if ((self = [super init])) { 103 103 [self setMaxDepth:512]; 104 104 } -
apps/iphone/my.tel/trunk/Classes/KeywordCell.h
r622 r843 9 9 #import <UIKit/UIKit.h> 10 10 11 #define kKFontSize 14 11 12 12 13 @interface KeywordCell : UITableViewCell { -
apps/iphone/my.tel/trunk/Classes/KeywordCell.m
r786 r843 9 9 #import "KeywordCell.h" 10 10 11 #define kKFontSize 1412 11 #define kKCellMargin 5 13 12 … … 23 22 24 23 - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier { 25 if ( self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {24 if ((self = [super initWithStyle:style reuseIdentifier:reuseIdentifier])) { 26 25 // Initialization code 27 26 … … 83 82 labelRect.origin.x = labelRect.origin.x - 7; 84 83 labelRect.origin.y = labelRect.origin.y+labelRect.size.height+4 - 10; 85 labelRect.size.height = 5 * (labelSecondaryText.font.pointSize+2); // 5 == number of lines 86 labelRect.size.width = labelRect.size.width + 10; 84 CGSize constrainedSize = CGSizeMake(self.contentView.bounds.size.width - 60, 400); 85 // The height is the height of the text string + a few pixels so the last line isn't cut off 86 labelRect.size.height = [labelSecondaryText.text sizeWithFont:[UIFont systemFontOfSize:(kKFontSize - 2)] 87 constrainedToSize:constrainedSize 88 lineBreakMode:UILineBreakModeWordWrap].height + (kKFontSize - 2); 89 labelRect.size.width = self.contentView.bounds.size.width; 87 90 labelSecondaryText.frame = labelRect; 88 91 } -
apps/iphone/my.tel/trunk/Classes/KeywordEditController.h
r794 r843 26 26 27 27 #define kKPrimaryValueMaxLength 255 // max length of value when keyword has secondaries 28 #define kKValueMaxLength 255// max length of value when keyword doesn't have secondaries28 #define kKValueMaxLength 4000 // max length of value when keyword doesn't have secondaries 29 29 30 30 -
apps/iphone/my.tel/trunk/Classes/KeywordViewController.m
r817 r843 186 186 NSDictionary *uiItem = [[uiArray objectAtIndex:indexPath.row] retain]; 187 187 NSString *primaryValue = [uiItem objectForKey:@"value"]; 188 rowSize += [primaryValue sizeWithFont:[UIFont systemFontOfSize: 12]188 rowSize += [primaryValue sizeWithFont:[UIFont systemFontOfSize:(kKFontSize -2)] 189 189 constrainedToSize:constrainedSize 190 190 lineBreakMode:UILineBreakModeWordWrap].height; 191 191 NSString *secondaryString = [uiItem objectForKey:@"secondaryString"]; 192 rowSize += [secondaryString sizeWithFont:[UIFont systemFontOfSize: 12]192 rowSize += [secondaryString sizeWithFont:[UIFont systemFontOfSize:(kKFontSize - 2)] 193 193 constrainedToSize:constrainedSize 194 194 lineBreakMode:UILineBreakModeWordWrap].height; -
apps/iphone/my.tel/trunk/Classes/MytelAppDelegate.m
r811 r843 23 23 offlineMode = FALSE; 24 24 self.dateEnteredBackground = nil; 25 while ( theArg = [e nextObject]) {25 while ((theArg = [e nextObject])) { 26 26 if ([theArg isEqualToString:@"OFFLINE"]) { 27 27 offlineMode = TRUE; -
apps/iphone/my.tel/trunk/Classes/ProfileRecordCell.m
r801 r843 12 12 13 13 - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier { 14 if ( self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {14 if ((self = [super initWithStyle:style reuseIdentifier:reuseIdentifier])) { 15 15 self.accessoryType = UITableViewCellAccessoryNone; 16 16 self.editingAccessoryType = UITableViewCellAccessoryNone; -
apps/iphone/my.tel/trunk/Classes/RecordCell.m
r798 r843 26 26 27 27 - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier { 28 if ( self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {28 if ((self = [super initWithStyle:style reuseIdentifier:reuseIdentifier])) { 29 29 // Initialization code 30 30 -
apps/iphone/my.tel/trunk/Classes/RootViewController.m
r811 r843 22 22 23 23 - (id)initWithStyle:(UITableViewStyle)style { 24 if ( self = [super initWithStyle:style]) {24 if ((self = [super initWithStyle:style])) { 25 25 self.currentAccountIndex = NSUIntegerMax; 26 26 [self loadData]; … … 150 150 if (accountIndex == NSUIntegerMax) 151 151 return; 152 if ( (accountIndex < 0) || (accountIndex >= [self.accountsArray count])) {152 if (accountIndex >= [self.accountsArray count]) { 153 153 // bad index 154 154 self.currentAccountIndex = NSUIntegerMax; -
apps/iphone/my.tel/trunk/English.lproj/Localizable.strings
r827 r843 51 51 "Enable record:" = "Enable record:"; 52 52 "Enter the TelHosting URL" = "Enter the TelHosting URL"; 53 "Friends in Group" = "Friends in Group"; 53 54 "Header Status" = "Header Status"; 54 55 "Inactive" = "Inactive"; … … 86 87 "Rename Profile" = "Rename Profile"; 87 88 "Required" = "Required"; 89 "Saved .tel location" = "Saved .tel location"; 88 90 "Set location" = "Set location"; 89 /* "Saved .tel location" = "Saved .tel location"; */90 91 "Set .tel Marker" = "Set .tel Marker"; 91 "Subfolders" = "Subfolders";92 92 "These are your \"account credentials\" given to you by your .tel provider. If you have multiple domains in this account, just choose one." = "These are your \"account credentials\" given to you by your .tel provider. If you have multiple domains in this account, just choose one."; 93 93 "Type" = "Type"; -
apps/iphone/my.tel/trunk/fr.lproj/Localizable.strings
r827 r843 10 10 */ 11 11 12 " Public item" = " Public item";13 " This item is public" = " This item ispublic";14 "<unsupported>" = "< unsupported>";15 "A descriptive label for this account." = " A descriptive label for this account.";16 "Account Label" = " Account Label";17 "Account Settings" = " Account Settings";18 "Accounts" = " Accounts";19 "Activate Profile" = "Activ ate Profile";20 "Active Profile" = " Active Profile";21 "Active: %d contact items enabled" = "Acti ve: %d contact items enabled";22 "Add a .tel account" = "A dd a .tel account";23 "Add new folder" = "A dd new folder";24 "Advanced" = "A dvanced";25 "All Profiles" = " All Profiles";26 "All information contained in this folder will be permanently deleted!" = " All information contained in this folder will be permanently deleted!";27 "All records" = " All records";28 "All Contact Items" = " All Contact Items";29 "Are you sure you want to remove this account?" = " Are you sure you want to remove this account?";30 "Buy a .tel" = " Buy a.tel";31 "Cancel" = " Cancel";32 "Confirm Deletion" = "Confirm Deletion";33 "Contact Items" = " Contact Items";34 "Content" = "Conten t";35 "Current location (GPS)" = " Current location(GPS)";36 "Currently Active Profile" = " Currently Active Profile";37 "Delete Group" = " Delete Group";38 "Delete Privacy Group?" = " Delete Privacy Group?";39 "Delete Profile" = " Delete Profile";40 "Delete" = " Delete";12 " Public item" = " Objet public"; 13 " This item is public" = " Cet objet est public"; 14 "<unsupported>" = "<inconnu>"; 15 "A descriptive label for this account." = "Un label descriptif pour ce compte."; 16 "Account Label" = "Label du compte"; 17 "Account Settings" = "Paramètres du compte"; 18 "Accounts" = "Comptes"; 19 "Activate Profile" = "Activer profil"; 20 "Active Profile" = "Profil actif"; 21 "Active: %d contact items enabled" = "Actif: %d infos de contact activées"; 22 "Add a .tel account" = "Ajouter un compte .tel"; 23 "Add new folder" = "Ajouter une page"; 24 "Advanced" = "Avancé"; 25 "All Profiles" = "Tous les profils"; 26 "All information contained in this folder will be permanently deleted!" = "Toutes les infos contenues dans cette page seront totalement effacées!"; 27 "All records" = "Tous les objets"; 28 "All Contact Items" = "Toutes les infos de contact"; 29 "Are you sure you want to remove this account?" = "Etes vous certain(e) de vouloir supprimer ce compte?"; 30 "Buy a .tel" = "Acheter un .tel"; 31 "Cancel" = "Annuler"; 32 "Confirm Deletion" = "Confirmer la suppression"; 33 "Contact Items" = "Infos de contact"; 34 "Content" = "Contenu"; 35 "Current location (GPS)" = "Emplacement actuel (GPS)"; 36 "Currently Active Profile" = "Profil actuellement actif"; 37 "Delete Group" = "Supprimer le groupe"; 38 "Delete Privacy Group?" = "Supprimer le groupe de confidentialité?"; 39 "Delete Profile" = "Supprimer le profil"; 40 "Delete" = "Supprimer"; 41 41 "Description" = "Description"; 42 "Descriptive Label" = "Descriptive Label"; 43 "Disable record:" = "Disable record:"; 44 "Domain Name" = "Domain Name"; 45 "Domains in Account" = "Domains in Account"; 46 "Don't own a .tel domain?" = "Don't own a .tel domain?"; 47 "Download DomainApp:\na free third party app to buy domains" = "Download DomainApp:\na free third party app to buy domains"; 48 "Edit Account Settings" = "Edit Account Settings"; 49 "Edit Item" = "Edit Item"; 50 "Edit Profile Name" = "Edit Profile Name"; 51 "Enable record:" = "Enable record:"; 52 "Enter the TelHosting URL" = "Enter the TelHosting URL"; 53 "Header Status" = "Header Status"; 54 "Inactive" = "Inactive"; 42 "Descriptive Label" = "Label descriptif"; 43 "Disable record:" = "Désactiver objet:"; 44 "Domain Name" = "Nom de domaine"; 45 "Domains in Account" = "Domaines dans le compte"; 46 "Don't own a .tel domain?" = "Pas de domaine .tel?"; 47 "Download DomainApp:\na free third party app to buy domains" = "Downloader DomainApp:\nune appli tierce gratuite pour acheter des domaines"; 48 "Edit Account Settings" = "Editer paramètres de compte"; 49 "Edit Item" = "Editer objet"; 50 "Edit Profile Name" = "Editer nom de profil"; 51 "Enable record:" = "Activer objet:"; 52 "Enter the TelHosting URL" = "Entrez la URL du TelHosting"; 53 "Friends in Group" = "Amis dans le groupe"; 54 "Header Status" = "Statut d'en-tête"; 55 "Inactive" = "Désactivé"; 55 56 "Information" = "Information"; 56 "Keywords" = " Keywords";57 "Loading Profile Header..." = " Loading Profile Header...";58 "Location" = " Location";59 "Logging in..." = " Logging in...";60 "Login Password" = " Login Password";61 "Login Username" = " Login Username";62 "Map" = " Map";63 "Missing API URL" = " Missing API URL";64 "Modify items in this section only if necessary." = " Modify items in this section only if necessary.";65 "Move Map To:" = " Move Map To:";66 "Network Error: No Internet Connection" = " Network Error: No Internet Connection";67 "New Folder Name" = "N ew Folder Name";68 "New Group Name" = "N ew Group Name";69 "New Item" = "N ew Item";70 "New Profile Name" = "N ew Profile Name";57 "Keywords" = "Mots clés"; 58 "Loading Profile Header..." = "Chargement de l'en-tête..."; 59 "Location" = "Emplacement"; 60 "Logging in..." = "Connection..."; 61 "Login Password" = "Mot de passe"; 62 "Login Username" = "Nom d'utilisateur"; 63 "Map" = "Carte"; 64 "Missing API URL" = "URL d'API manquante"; 65 "Modify items in this section only if necessary." = "Ne modifier cette section que si nécessaire."; 66 "Move Map To:" = "Déplacer vers:"; 67 "Network Error: No Internet Connection" = "Erreur de réseau: pas de connection Internet"; 68 "New Folder Name" = "Nom de la nouvelle page"; 69 "New Group Name" = "Nom du nouveau groupe"; 70 "New Item" = "Nouvel objet"; 71 "New Profile Name" = "Nom du nouveau profil"; 71 72 "OK" = "OK"; 72 "Optional" = " Optional";73 "Page Title for the domain" = " Page Title for the domain";74 "Page Title" = " Page Title";73 "Optional" = "Facultatif"; 74 "Page Title for the domain" = "Titre de la page pour le domaine"; 75 "Page Title" = "Titre de la page"; 75 76 "Pages" = "Pages"; 76 "Please verify that your domain name is correct" = "Please verify that your domain name is correct"; 77 "Please verify your account settings" = "Please verify your account settings"; 78 "Privacy Groups" = "Privacy Groups"; 79 "Privacy Status" = "Privacy Status"; 80 "Privacy" = "Privacy"; 81 "Profiles" = "Profiles"; 82 "Public: Visible by anyone" = "Public: Visible by anyone"; 83 "Remove Account" = "Remove Account"; 84 "Remove" = "Remove"; 85 "Rename Group" = "Rename Group"; 86 "Rename Profile" = "Rename Profile"; 87 "Required" = "Required"; 88 "Set location" = "Set location"; 89 /* "Saved .tel location" = "Saved .tel location"; */ 90 "Set .tel Marker" = "Set .tel Marker"; 91 "Subfolders" = "Subfolders"; 92 "These are your \"account credentials\" given to you by your .tel provider. If you have multiple domains in this account, just choose one." = "These are your \"account credentials\" given to you by your .tel provider. If you have multiple domains in this account, just choose one."; 77 "Please verify that your domain name is correct" = "Vérifiez que le nom du domaine est correct"; 78 "Please verify your account settings" = "Vérifiez les paramètres du compte"; 79 "Privacy Groups" = "Groupes de confidentialité"; 80 "Privacy Status" = "Etat de confidentialité"; 81 "Privacy" = "Confidentialité"; 82 "Profiles" = "Profils"; 83 "Public: Visible by anyone" = "Public: Visible pour tous"; 84 "Remove Account" = "Supprimer compte"; 85 "Remove" = "Supprimer"; 86 "Rename Group" = "Renommer group"; 87 "Rename Profile" = "Renommer profil"; 88 "Required" = "Requis"; 89 "Saved .tel location" = "Emplacement .tel"; 90 "Set location" = "Fixer l'emplacement"; 91 "Set .tel Marker" = "Fixer .tel"; 92 "These are your \"account credentials\" given to you by your .tel provider. If you have multiple domains in this account, just choose one." = "Ceux-ci sont vos identifiants de compte donnés par votre vendeur de .tel. Si vous avez plusieurs domaines dans ce compte, choisissez en un."; 93 93 "Type" = "Type"; 94 "Unknown TelHosting URL for %@" = "U nknown TelHosting URL for %@";95 "Value" = "Val ue";96 "defaults to username" = " defaults to username";97 "in this profile" = "i n this profile";98 "password" = " password";99 "username" = " username";94 "Unknown TelHosting URL for %@" = "URL de Telhosting inconnue pour %@"; 95 "Value" = "Valeur"; 96 "defaults to username" = "nom d'utilisateur"; 97 "in this profile" = "idans ce profil"; 98 "password" = "mot de passe"; 99 "username" = "nom d'utilisateur"; -
apps/iphone/my.tel/trunk/Info.plist
r837 r843 26 26 <string>MainWindow</string> 27 27 <key>UIPrerenderedIcon</key> 28 < true/>28 <false/> 29 29 </dict> 30 30 </plist> -
apps/iphone/my.tel/trunk/Russian.lproj/Localizable.strings
r832 r843 51 51 "Enable record:" = "Добавить запись в:"; 52 52 "Enter the TelHosting URL" = "Введите веб-адрес панели управления"; 53 "Friends in Group" = "Друзья в группе"; 53 54 "Header Status" = "Описание"; 54 55 "Inactive" = "Неактивен"; … … 86 87 "Rename Profile" = "Переименовать профиль"; 87 88 "Required" = "Обязательное поле"; 89 "Saved .tel location" = "сохраненное .tel местоположение"; 88 90 "Set location" = "Сохранить местоположение"; 89 /* "Saved .tel location" = "Сохраненное местоположение"; */90 91 "Set .tel Marker" = "Сохранить"; 91 "Subfolders" = "Папки";92 92 "These are your \"account credentials\" given to you by your .tel provider. If you have multiple domains in this account, just choose one." = "Введите \"логин и пароль\", предоставленные вашим .tel провайдером. Если данный аккаунт содержит несколько доменов, выберете один из них."; 93 93 "Type" = "Тип"; -
apps/iphone/my.tel/trunk/VIP.tel.xcodeproj/project.pbxproj
r836 r843 12 12 1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; }; 13 13 288765080DF74369002DB57D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 288765070DF74369002DB57D /* CoreGraphics.framework */; }; 14 38053F7C1348C8B50023CFC8 /* ldns.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38053F7B1348C8B50023CFC8 /* ldns.framework */; }; 14 15 380A614F1083243E00205110 /* DomainViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 380A614E1083243E00205110 /* DomainViewController.m */; }; 15 16 380A663310877F0F00205110 /* HATextViewEditController.m in Sources */ = {isa = PBXBuildFile; fileRef = 380A663110877F0F00205110 /* HATextViewEditController.m */; }; … … 129 130 38DA3CFC107DDB4C00C4DF56 /* DotTel.strings in Resources */ = {isa = PBXBuildFile; fileRef = 38DA3CFA107DDB4C00C4DF56 /* DotTel.strings */; }; 130 131 38E4DA070F49844700E4DC12 /* offlineSampleData.plist in Resources */ = {isa = PBXBuildFile; fileRef = 38E4DA060F49844700E4DC12 /* offlineSampleData.plist */; }; 131 38E6F1D312B78960007AD500 /* ldns.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38E6F1D212B78960007AD500 /* ldns.framework */; };132 132 38E9DC800ED3222B000CD956 /* RecordViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 38E9DC7F0ED3222B000CD956 /* RecordViewController.m */; }; 133 133 38EFBE1A1100C54C0094FC93 /* Icon-Small.png in Resources */ = {isa = PBXBuildFile; fileRef = 38EFBE191100C54C0094FC93 /* Icon-Small.png */; }; … … 147 147 28A0AB4B0D9B1048005BE974 /* My_tel_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = My_tel_Prefix.pch; sourceTree = "<group>"; }; 148 148 29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; }; 149 38053F7B1348C8B50023CFC8 /* ldns.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = ldns.framework; sourceTree = "<group>"; }; 149 150 380A614D1083243E00205110 /* DomainViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DomainViewController.h; sourceTree = "<group>"; }; 150 151 380A614E1083243E00205110 /* DomainViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DomainViewController.m; sourceTree = "<group>"; }; … … 192 193 380D47C310CD077800A35176 /* AccountEditController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccountEditController.h; sourceTree = "<group>"; }; 193 194 380D47C410CD077800A35176 /* AccountEditController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccountEditController.m; sourceTree = "<group>"; }; 195 3810BD4D133B429F007E4C44 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; }; 194 196 3814C4EF0F6FD54F00053AB3 /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = "<group>"; }; 195 197 382732300ED34A8C0084A6CB /* RecordCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecordCell.h; sourceTree = "<group>"; }; … … 319 321 38DA3CFF107DDB6F00C4DF56 /* Russian */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Russian; path = Russian.lproj/DotTel.strings; sourceTree = "<group>"; }; 320 322 38E4DA060F49844700E4DC12 /* offlineSampleData.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = offlineSampleData.plist; sourceTree = "<group>"; }; 321 38E6F1D212B78960007AD500 /* ldns.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = ldns.framework; sourceTree = "<group>"; };322 323 38E9DC7E0ED3222B000CD956 /* RecordViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecordViewController.h; sourceTree = "<group>"; }; 323 324 38E9DC7F0ED3222B000CD956 /* RecordViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RecordViewController.m; sourceTree = "<group>"; }; … … 349 350 38DA3A4C107A30C600C4DF56 /* MapKit.framework in Frameworks */, 350 351 380D466110C7D3A000A35176 /* libidn.a in Frameworks */, 351 38 E6F1D312B78960007AD500/* ldns.framework in Frameworks */,352 38053F7C1348C8B50023CFC8 /* ldns.framework in Frameworks */, 352 353 ); 353 354 runOnlyForDeploymentPostprocessing = 0; … … 435 436 isa = PBXGroup; 436 437 children = ( 438 38053F7B1348C8B50023CFC8 /* ldns.framework */, 437 439 38596F850EC969B8003B6329 /* libobjc.dylib */, 438 440 3843574C0F27262900F9D50C /* libsqlite3.0.dylib */, … … 447 449 288765070DF74369002DB57D /* CoreGraphics.framework */, 448 450 38F0F72A0ED8AD4B00CF5196 /* QuartzCore.framework */, 449 38E6F1D212B78960007AD500 /* ldns.framework */,450 451 ); 451 452 name = Frameworks; … … 751 752 German, 752 753 Russian, 754 fr, 753 755 ); 754 756 mainGroup = 29B97314FDCFA39411CA2CEA /* VIP.tel */; … … 901 903 3883C88212FA9E160028F53A /* English */, 902 904 380B7EDB130055830005B5ED /* Russian */, 905 3810BD4D133B429F007E4C44 /* fr */, 903 906 ); 904 907 name = Localizable.strings; … … 922 925 isa = XCBuildConfiguration; 923 926 buildSettings = { 924 ALWAYS_SEARCH_USER_PATHS = NO;925 927 COPY_PHASE_STRIP = NO; 926 928 FRAMEWORK_SEARCH_PATHS = ( … … 932 934 GCC_PRECOMPILE_PREFIX_HEADER = YES; 933 935 GCC_PREFIX_HEADER = My_tel_Prefix.pch; 936 HEADER_SEARCH_PATHS = ""; 934 937 INFOPLIST_FILE = Info.plist; 935 938 LIBRARY_SEARCH_PATHS = ( … … 939 942 OTHER_LDFLAGS = "-liconv"; 940 943 PRODUCT_NAME = My.tel; 944 USER_HEADER_SEARCH_PATHS = "${SRCROOT}/ldns.framework/Headers/**"; 941 945 }; 942 946 name = Debug; … … 945 949 isa = XCBuildConfiguration; 946 950 buildSettings = { 947 ALWAYS_SEARCH_USER_PATHS = NO;948 951 COPY_PHASE_STRIP = YES; 949 952 FRAMEWORK_SEARCH_PATHS = ( … … 953 956 GCC_PRECOMPILE_PREFIX_HEADER = YES; 954 957 GCC_PREFIX_HEADER = My_tel_Prefix.pch; 958 HEADER_SEARCH_PATHS = ""; 955 959 INFOPLIST_FILE = Info.plist; 956 960 LIBRARY_SEARCH_PATHS = ( … … 960 964 OTHER_LDFLAGS = "-liconv"; 961 965 PRODUCT_NAME = My.tel; 966 USER_HEADER_SEARCH_PATHS = "${SRCROOT}/ldns.framework/Headers/**"; 962 967 }; 963 968 name = Release; … … 1002 1007 isa = XCBuildConfiguration; 1003 1008 buildSettings = { 1004 ALWAYS_SEARCH_USER_PATHS = NO;1005 1009 CODE_SIGN_ENTITLEMENTS = Entitlements.plist; 1006 1010 COPY_PHASE_STRIP = YES; … … 1011 1015 GCC_PRECOMPILE_PREFIX_HEADER = YES; 1012 1016 GCC_PREFIX_HEADER = My_tel_Prefix.pch; 1017 HEADER_SEARCH_PATHS = ""; 1013 1018 INFOPLIST_FILE = Info.plist; 1014 1019 LIBRARY_SEARCH_PATHS = ( … … 1018 1023 OTHER_LDFLAGS = "-liconv"; 1019 1024 PRODUCT_NAME = My.tel; 1025 USER_HEADER_SEARCH_PATHS = "${SRCROOT}/ldns.framework/Headers/**"; 1020 1026 }; 1021 1027 name = "Debug - Apple ad-hoc"; … … 1040 1046 isa = XCBuildConfiguration; 1041 1047 buildSettings = { 1042 ALWAYS_SEARCH_USER_PATHS = NO;1043 1048 COPY_PHASE_STRIP = YES; 1044 1049 FRAMEWORK_SEARCH_PATHS = ( … … 1048 1053 GCC_PRECOMPILE_PREFIX_HEADER = YES; 1049 1054 GCC_PREFIX_HEADER = My_tel_Prefix.pch; 1055 HEADER_SEARCH_PATHS = ""; 1050 1056 INFOPLIST_FILE = Info.plist; 1051 1057 LIBRARY_SEARCH_PATHS = ( … … 1055 1061 OTHER_LDFLAGS = "-liconv"; 1056 1062 PRODUCT_NAME = My.tel; 1063 USER_HEADER_SEARCH_PATHS = "${SRCROOT}/ldns.framework/Headers/**"; 1057 1064 }; 1058 1065 name = Distribution; … … 1077 1084 isa = XCBuildConfiguration; 1078 1085 buildSettings = { 1079 ALWAYS_SEARCH_USER_PATHS = NO;1080 1086 CODE_SIGN_ENTITLEMENTS = Entitlements.plist; 1081 1087 COPY_PHASE_STRIP = YES; … … 1086 1092 GCC_PRECOMPILE_PREFIX_HEADER = YES; 1087 1093 GCC_PREFIX_HEADER = My_tel_Prefix.pch; 1094 HEADER_SEARCH_PATHS = ""; 1088 1095 INFOPLIST_FILE = Info.plist; 1089 1096 LIBRARY_SEARCH_PATHS = ( … … 1093 1100 OTHER_LDFLAGS = "-liconv"; 1094 1101 PRODUCT_NAME = My.tel; 1102 USER_HEADER_SEARCH_PATHS = "${SRCROOT}/ldns.framework/Headers/**"; 1095 1103 }; 1096 1104 name = "Release - Apple ad-hoc"; -
apps/iphone/superbook/trunk/DotTel_SDK/Classes/Reachability.m
r673 r843 270 270 ReachabilityQuery *reachabilityQuery; 271 271 272 while ( reachabilityQuery = [enumerator nextObject]) {272 while ((reachabilityQuery = [enumerator nextObject])) { 273 273 274 274 CFArrayRef runLoops = reachabilityQuery.runLoops;








