├── .DS_Store ├── JSON.png ├── JSONRPC Tester.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── mladjan.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── mladjan.xcuserdatad │ └── xcschemes │ ├── JSONRPC Tester.xcscheme │ └── xcschememanagement.plist ├── JSONRPC Tester ├── .DS_Store ├── AppDelegate.h ├── AppDelegate.m ├── JSONKit.h ├── JSONKit.m ├── JSONRPC Tester-Info.plist ├── JSONRPC Tester-Prefix.pch ├── JSONRPCService.h ├── JSONRPCService.m ├── en.lproj │ ├── Credits.rtf │ ├── InfoPlist.strings │ └── MainMenu.xib └── main.m └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mladjan/JSONRPC-Tester/81b405aa65e89ff365c0b87c0434a1837b605b50/.DS_Store -------------------------------------------------------------------------------- /JSON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mladjan/JSONRPC-Tester/81b405aa65e89ff365c0b87c0434a1837b605b50/JSON.png -------------------------------------------------------------------------------- /JSONRPC Tester.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 3F72A6661471BC9700F087F8 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F72A6651471BC9600F087F8 /* Cocoa.framework */; }; 11 | 3F72A6701471BC9700F087F8 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 3F72A66E1471BC9700F087F8 /* InfoPlist.strings */; }; 12 | 3F72A6721471BC9700F087F8 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F72A6711471BC9700F087F8 /* main.m */; }; 13 | 3F72A6761471BC9700F087F8 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 3F72A6741471BC9700F087F8 /* Credits.rtf */; }; 14 | 3F72A6791471BC9700F087F8 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F72A6781471BC9700F087F8 /* AppDelegate.m */; }; 15 | 3F72A67C1471BC9700F087F8 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3F72A67A1471BC9700F087F8 /* MainMenu.xib */; }; 16 | 3F72A6841471BE6000F087F8 /* JSONRPCService.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F72A6831471BE6000F087F8 /* JSONRPCService.m */; }; 17 | 3F72A69C1471C8A600F087F8 /* JSONKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F72A69B1471C8A600F087F8 /* JSONKit.m */; }; 18 | 3F72A6A31471CD0E00F087F8 /* JSON.png in Resources */ = {isa = PBXBuildFile; fileRef = 3F72A6A21471CD0E00F087F8 /* JSON.png */; }; 19 | /* End PBXBuildFile section */ 20 | 21 | /* Begin PBXFileReference section */ 22 | 3F72A6611471BC9600F087F8 /* JSONRPC Tester.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "JSONRPC Tester.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 23 | 3F72A6651471BC9600F087F8 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; }; 24 | 3F72A6681471BC9700F087F8 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; }; 25 | 3F72A6691471BC9700F087F8 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; }; 26 | 3F72A66A1471BC9700F087F8 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 27 | 3F72A66D1471BC9700F087F8 /* JSONRPC Tester-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "JSONRPC Tester-Info.plist"; sourceTree = ""; }; 28 | 3F72A66F1471BC9700F087F8 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 29 | 3F72A6711471BC9700F087F8 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 30 | 3F72A6731471BC9700F087F8 /* JSONRPC Tester-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "JSONRPC Tester-Prefix.pch"; sourceTree = ""; }; 31 | 3F72A6751471BC9700F087F8 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = en; path = en.lproj/Credits.rtf; sourceTree = ""; }; 32 | 3F72A6771471BC9700F087F8 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 33 | 3F72A6781471BC9700F087F8 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 34 | 3F72A67B1471BC9700F087F8 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/MainMenu.xib; sourceTree = ""; }; 35 | 3F72A6821471BE6000F087F8 /* JSONRPCService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSONRPCService.h; sourceTree = ""; }; 36 | 3F72A6831471BE6000F087F8 /* JSONRPCService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JSONRPCService.m; sourceTree = ""; }; 37 | 3F72A69A1471C8A600F087F8 /* JSONKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSONKit.h; sourceTree = ""; }; 38 | 3F72A69B1471C8A600F087F8 /* JSONKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JSONKit.m; sourceTree = ""; }; 39 | 3F72A6A21471CD0E00F087F8 /* JSON.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = JSON.png; sourceTree = ""; }; 40 | /* End PBXFileReference section */ 41 | 42 | /* Begin PBXFrameworksBuildPhase section */ 43 | 3F72A65E1471BC9600F087F8 /* Frameworks */ = { 44 | isa = PBXFrameworksBuildPhase; 45 | buildActionMask = 2147483647; 46 | files = ( 47 | 3F72A6661471BC9700F087F8 /* Cocoa.framework in Frameworks */, 48 | ); 49 | runOnlyForDeploymentPostprocessing = 0; 50 | }; 51 | /* End PBXFrameworksBuildPhase section */ 52 | 53 | /* Begin PBXGroup section */ 54 | 3F72A6561471BC9600F087F8 = { 55 | isa = PBXGroup; 56 | children = ( 57 | 3F72A6A21471CD0E00F087F8 /* JSON.png */, 58 | 3F72A66B1471BC9700F087F8 /* JSONRPC Tester */, 59 | 3F72A6641471BC9600F087F8 /* Frameworks */, 60 | 3F72A6621471BC9600F087F8 /* Products */, 61 | ); 62 | sourceTree = ""; 63 | }; 64 | 3F72A6621471BC9600F087F8 /* Products */ = { 65 | isa = PBXGroup; 66 | children = ( 67 | 3F72A6611471BC9600F087F8 /* JSONRPC Tester.app */, 68 | ); 69 | name = Products; 70 | sourceTree = ""; 71 | }; 72 | 3F72A6641471BC9600F087F8 /* Frameworks */ = { 73 | isa = PBXGroup; 74 | children = ( 75 | 3F72A6651471BC9600F087F8 /* Cocoa.framework */, 76 | 3F72A6671471BC9700F087F8 /* Other Frameworks */, 77 | ); 78 | name = Frameworks; 79 | sourceTree = ""; 80 | }; 81 | 3F72A6671471BC9700F087F8 /* Other Frameworks */ = { 82 | isa = PBXGroup; 83 | children = ( 84 | 3F72A6681471BC9700F087F8 /* AppKit.framework */, 85 | 3F72A6691471BC9700F087F8 /* CoreData.framework */, 86 | 3F72A66A1471BC9700F087F8 /* Foundation.framework */, 87 | ); 88 | name = "Other Frameworks"; 89 | sourceTree = ""; 90 | }; 91 | 3F72A66B1471BC9700F087F8 /* JSONRPC Tester */ = { 92 | isa = PBXGroup; 93 | children = ( 94 | 3F72A69D1471C8AB00F087F8 /* JSONKit */, 95 | 3F72A6851471BE6300F087F8 /* JSONRPC */, 96 | 3F72A6771471BC9700F087F8 /* AppDelegate.h */, 97 | 3F72A6781471BC9700F087F8 /* AppDelegate.m */, 98 | 3F72A67A1471BC9700F087F8 /* MainMenu.xib */, 99 | 3F72A66C1471BC9700F087F8 /* Supporting Files */, 100 | ); 101 | path = "JSONRPC Tester"; 102 | sourceTree = ""; 103 | }; 104 | 3F72A66C1471BC9700F087F8 /* Supporting Files */ = { 105 | isa = PBXGroup; 106 | children = ( 107 | 3F72A66D1471BC9700F087F8 /* JSONRPC Tester-Info.plist */, 108 | 3F72A66E1471BC9700F087F8 /* InfoPlist.strings */, 109 | 3F72A6711471BC9700F087F8 /* main.m */, 110 | 3F72A6731471BC9700F087F8 /* JSONRPC Tester-Prefix.pch */, 111 | 3F72A6741471BC9700F087F8 /* Credits.rtf */, 112 | ); 113 | name = "Supporting Files"; 114 | sourceTree = ""; 115 | }; 116 | 3F72A6851471BE6300F087F8 /* JSONRPC */ = { 117 | isa = PBXGroup; 118 | children = ( 119 | 3F72A6821471BE6000F087F8 /* JSONRPCService.h */, 120 | 3F72A6831471BE6000F087F8 /* JSONRPCService.m */, 121 | ); 122 | name = JSONRPC; 123 | sourceTree = ""; 124 | }; 125 | 3F72A69D1471C8AB00F087F8 /* JSONKit */ = { 126 | isa = PBXGroup; 127 | children = ( 128 | 3F72A69A1471C8A600F087F8 /* JSONKit.h */, 129 | 3F72A69B1471C8A600F087F8 /* JSONKit.m */, 130 | ); 131 | name = JSONKit; 132 | sourceTree = ""; 133 | }; 134 | /* End PBXGroup section */ 135 | 136 | /* Begin PBXNativeTarget section */ 137 | 3F72A6601471BC9600F087F8 /* JSONRPC Tester */ = { 138 | isa = PBXNativeTarget; 139 | buildConfigurationList = 3F72A67F1471BC9700F087F8 /* Build configuration list for PBXNativeTarget "JSONRPC Tester" */; 140 | buildPhases = ( 141 | 3F72A65D1471BC9600F087F8 /* Sources */, 142 | 3F72A65E1471BC9600F087F8 /* Frameworks */, 143 | 3F72A65F1471BC9600F087F8 /* Resources */, 144 | ); 145 | buildRules = ( 146 | ); 147 | dependencies = ( 148 | ); 149 | name = "JSONRPC Tester"; 150 | productName = "JSONRPC Tester"; 151 | productReference = 3F72A6611471BC9600F087F8 /* JSONRPC Tester.app */; 152 | productType = "com.apple.product-type.application"; 153 | }; 154 | /* End PBXNativeTarget section */ 155 | 156 | /* Begin PBXProject section */ 157 | 3F72A6581471BC9600F087F8 /* Project object */ = { 158 | isa = PBXProject; 159 | attributes = { 160 | LastUpgradeCheck = 0420; 161 | }; 162 | buildConfigurationList = 3F72A65B1471BC9600F087F8 /* Build configuration list for PBXProject "JSONRPC Tester" */; 163 | compatibilityVersion = "Xcode 3.2"; 164 | developmentRegion = English; 165 | hasScannedForEncodings = 0; 166 | knownRegions = ( 167 | en, 168 | ); 169 | mainGroup = 3F72A6561471BC9600F087F8; 170 | productRefGroup = 3F72A6621471BC9600F087F8 /* Products */; 171 | projectDirPath = ""; 172 | projectRoot = ""; 173 | targets = ( 174 | 3F72A6601471BC9600F087F8 /* JSONRPC Tester */, 175 | ); 176 | }; 177 | /* End PBXProject section */ 178 | 179 | /* Begin PBXResourcesBuildPhase section */ 180 | 3F72A65F1471BC9600F087F8 /* Resources */ = { 181 | isa = PBXResourcesBuildPhase; 182 | buildActionMask = 2147483647; 183 | files = ( 184 | 3F72A6701471BC9700F087F8 /* InfoPlist.strings in Resources */, 185 | 3F72A6761471BC9700F087F8 /* Credits.rtf in Resources */, 186 | 3F72A67C1471BC9700F087F8 /* MainMenu.xib in Resources */, 187 | 3F72A6A31471CD0E00F087F8 /* JSON.png in Resources */, 188 | ); 189 | runOnlyForDeploymentPostprocessing = 0; 190 | }; 191 | /* End PBXResourcesBuildPhase section */ 192 | 193 | /* Begin PBXSourcesBuildPhase section */ 194 | 3F72A65D1471BC9600F087F8 /* Sources */ = { 195 | isa = PBXSourcesBuildPhase; 196 | buildActionMask = 2147483647; 197 | files = ( 198 | 3F72A6721471BC9700F087F8 /* main.m in Sources */, 199 | 3F72A6791471BC9700F087F8 /* AppDelegate.m in Sources */, 200 | 3F72A6841471BE6000F087F8 /* JSONRPCService.m in Sources */, 201 | 3F72A69C1471C8A600F087F8 /* JSONKit.m in Sources */, 202 | ); 203 | runOnlyForDeploymentPostprocessing = 0; 204 | }; 205 | /* End PBXSourcesBuildPhase section */ 206 | 207 | /* Begin PBXVariantGroup section */ 208 | 3F72A66E1471BC9700F087F8 /* InfoPlist.strings */ = { 209 | isa = PBXVariantGroup; 210 | children = ( 211 | 3F72A66F1471BC9700F087F8 /* en */, 212 | ); 213 | name = InfoPlist.strings; 214 | sourceTree = ""; 215 | }; 216 | 3F72A6741471BC9700F087F8 /* Credits.rtf */ = { 217 | isa = PBXVariantGroup; 218 | children = ( 219 | 3F72A6751471BC9700F087F8 /* en */, 220 | ); 221 | name = Credits.rtf; 222 | sourceTree = ""; 223 | }; 224 | 3F72A67A1471BC9700F087F8 /* MainMenu.xib */ = { 225 | isa = PBXVariantGroup; 226 | children = ( 227 | 3F72A67B1471BC9700F087F8 /* en */, 228 | ); 229 | name = MainMenu.xib; 230 | sourceTree = ""; 231 | }; 232 | /* End PBXVariantGroup section */ 233 | 234 | /* Begin XCBuildConfiguration section */ 235 | 3F72A67D1471BC9700F087F8 /* Debug */ = { 236 | isa = XCBuildConfiguration; 237 | buildSettings = { 238 | ALWAYS_SEARCH_USER_PATHS = NO; 239 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 240 | COPY_PHASE_STRIP = NO; 241 | GCC_C_LANGUAGE_STANDARD = gnu99; 242 | GCC_DYNAMIC_NO_PIC = NO; 243 | GCC_ENABLE_OBJC_EXCEPTIONS = YES; 244 | GCC_OPTIMIZATION_LEVEL = 0; 245 | GCC_PREPROCESSOR_DEFINITIONS = ( 246 | "DEBUG=1", 247 | "$(inherited)", 248 | ); 249 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 250 | GCC_VERSION = com.apple.compilers.llvm.clang.1_0; 251 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 252 | GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; 253 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 254 | GCC_WARN_UNUSED_VARIABLE = YES; 255 | MACOSX_DEPLOYMENT_TARGET = 10.7; 256 | ONLY_ACTIVE_ARCH = YES; 257 | SDKROOT = macosx; 258 | }; 259 | name = Debug; 260 | }; 261 | 3F72A67E1471BC9700F087F8 /* Release */ = { 262 | isa = XCBuildConfiguration; 263 | buildSettings = { 264 | ALWAYS_SEARCH_USER_PATHS = NO; 265 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 266 | COPY_PHASE_STRIP = YES; 267 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 268 | GCC_C_LANGUAGE_STANDARD = gnu99; 269 | GCC_ENABLE_OBJC_EXCEPTIONS = YES; 270 | GCC_VERSION = com.apple.compilers.llvm.clang.1_0; 271 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 272 | GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; 273 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 274 | GCC_WARN_UNUSED_VARIABLE = YES; 275 | MACOSX_DEPLOYMENT_TARGET = 10.7; 276 | SDKROOT = macosx; 277 | }; 278 | name = Release; 279 | }; 280 | 3F72A6801471BC9700F087F8 /* Debug */ = { 281 | isa = XCBuildConfiguration; 282 | buildSettings = { 283 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 284 | GCC_PREFIX_HEADER = "JSONRPC Tester/JSONRPC Tester-Prefix.pch"; 285 | INFOPLIST_FILE = "JSONRPC Tester/JSONRPC Tester-Info.plist"; 286 | MACOSX_DEPLOYMENT_TARGET = 10.5; 287 | PRODUCT_NAME = "$(TARGET_NAME)"; 288 | WRAPPER_EXTENSION = app; 289 | }; 290 | name = Debug; 291 | }; 292 | 3F72A6811471BC9700F087F8 /* Release */ = { 293 | isa = XCBuildConfiguration; 294 | buildSettings = { 295 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 296 | GCC_PREFIX_HEADER = "JSONRPC Tester/JSONRPC Tester-Prefix.pch"; 297 | INFOPLIST_FILE = "JSONRPC Tester/JSONRPC Tester-Info.plist"; 298 | MACOSX_DEPLOYMENT_TARGET = 10.5; 299 | PRODUCT_NAME = "$(TARGET_NAME)"; 300 | WRAPPER_EXTENSION = app; 301 | }; 302 | name = Release; 303 | }; 304 | /* End XCBuildConfiguration section */ 305 | 306 | /* Begin XCConfigurationList section */ 307 | 3F72A65B1471BC9600F087F8 /* Build configuration list for PBXProject "JSONRPC Tester" */ = { 308 | isa = XCConfigurationList; 309 | buildConfigurations = ( 310 | 3F72A67D1471BC9700F087F8 /* Debug */, 311 | 3F72A67E1471BC9700F087F8 /* Release */, 312 | ); 313 | defaultConfigurationIsVisible = 0; 314 | defaultConfigurationName = Release; 315 | }; 316 | 3F72A67F1471BC9700F087F8 /* Build configuration list for PBXNativeTarget "JSONRPC Tester" */ = { 317 | isa = XCConfigurationList; 318 | buildConfigurations = ( 319 | 3F72A6801471BC9700F087F8 /* Debug */, 320 | 3F72A6811471BC9700F087F8 /* Release */, 321 | ); 322 | defaultConfigurationIsVisible = 0; 323 | defaultConfigurationName = Release; 324 | }; 325 | /* End XCConfigurationList section */ 326 | }; 327 | rootObject = 3F72A6581471BC9600F087F8 /* Project object */; 328 | } 329 | -------------------------------------------------------------------------------- /JSONRPC Tester.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /JSONRPC Tester.xcodeproj/project.xcworkspace/xcuserdata/mladjan.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mladjan/JSONRPC-Tester/81b405aa65e89ff365c0b87c0434a1837b605b50/JSONRPC Tester.xcodeproj/project.xcworkspace/xcuserdata/mladjan.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /JSONRPC Tester.xcodeproj/xcuserdata/mladjan.xcuserdatad/xcschemes/JSONRPC Tester.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 14 | 20 | 21 | 22 | 23 | 24 | 29 | 30 | 31 | 32 | 38 | 39 | 40 | 41 | 49 | 50 | 56 | 57 | 58 | 59 | 60 | 61 | 67 | 68 | 74 | 75 | 76 | 77 | 79 | 80 | 83 | 84 | 85 | -------------------------------------------------------------------------------- /JSONRPC Tester.xcodeproj/xcuserdata/mladjan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | JSONRPC Tester.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | 3F72A6601471BC9600F087F8 16 | 17 | primary 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /JSONRPC Tester/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mladjan/JSONRPC-Tester/81b405aa65e89ff365c0b87c0434a1837b605b50/JSONRPC Tester/.DS_Store -------------------------------------------------------------------------------- /JSONRPC Tester/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // JSONRPC Tester 4 | // 5 | // Created by Mladjan Antic on 11/14/11. 6 | // Copyright (c) 2011 mladjanantic.com All rights reserved. 7 | // 8 | 9 | #import 10 | #import "JSONRPCService.h" 11 | 12 | @interface AppDelegate : NSObject 13 | 14 | @property (assign) IBOutlet NSWindow *window; 15 | @property (assign) IBOutlet NSTextField *urlField; 16 | @property (assign) IBOutlet NSTextField *method; 17 | @property (assign) IBOutlet NSButton *submitButton; 18 | @property (assign) JSONRPCService* svc; 19 | @property (assign) IBOutlet NSTextField *response; 20 | @property (assign) IBOutlet NSTextField *params; 21 | 22 | - (IBAction)sendAction:(id)sender; 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /JSONRPC Tester/AppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.m 3 | // JSONRPC Tester 4 | // 5 | // Created by Mladjan Antic on 11/14/11. 6 | // Copyright (c) 2011 mladjanantic.com All rights reserved. 7 | // 8 | 9 | #import "AppDelegate.h" 10 | #import "JSONRPCService.h" 11 | #import "JSONKit.h" 12 | 13 | @implementation AppDelegate 14 | 15 | @synthesize window = _window; 16 | @synthesize urlField = _urlField; 17 | @synthesize method = _method; 18 | @synthesize submitButton = _submitButton; 19 | @synthesize svc; 20 | @synthesize response = _response; 21 | @synthesize params = _params; 22 | 23 | - (void)dealloc 24 | { 25 | [super dealloc]; 26 | } 27 | 28 | - (void)applicationDidFinishLaunching:(NSNotification *)aNotification 29 | { 30 | // Insert code here to initialize your application 31 | } 32 | 33 | 34 | - (IBAction)sendAction:(id)sender { 35 | [_urlField resignFirstResponder]; 36 | 37 | if([_urlField.stringValue isEqualToString:@""] || [_method.stringValue isEqualToString:@""] || [_params.stringValue isEqualToString:@""]){ 38 | // Alert 39 | NSAlert *alert = [[NSAlert alloc] init]; 40 | [alert setMessageText:@"Fileds: URL, method and params are required!"]; 41 | [alert addButtonWithTitle:@"Ok"]; 42 | [alert runModal]; 43 | [alert release]; 44 | alert = nil; 45 | }else{ 46 | [svc release]; 47 | svc = [[JSONRPCService alloc] initWithURL:[NSURL URLWithString:_urlField.stringValue]]; 48 | svc.delegate = self; 49 | 50 | 51 | NSArray *response = [_params.stringValue objectFromJSONString]; 52 | 53 | 54 | NSLog(@"params: %@, Object type: %@, content: %@",_params.stringValue, [response class], response); 55 | 56 | NSString *withID = [NSString stringWithFormat:@"%i", [response count]]; 57 | 58 | [svc execMethod:_method.stringValue 59 | andParams:response 60 | withID:withID]; 61 | 62 | } 63 | } 64 | 65 | 66 | #pragma mark - 67 | #pragma mark JSONRPCServiceDelegate 68 | 69 | 70 | -(void) dataLoaded:(NSData*)data { 71 | _response.stringValue = [[[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding] autorelease]; 72 | } 73 | 74 | -(void) loadingFailed:(NSString*) errMsg { 75 | _response.stringValue = errMsg; 76 | } 77 | 78 | 79 | @end 80 | -------------------------------------------------------------------------------- /JSONRPC Tester/JSONKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // JSONKit.h 3 | // http://github.com/johnezang/JSONKit 4 | // Dual licensed under either the terms of the BSD License, or alternatively 5 | // under the terms of the Apache License, Version 2.0, as specified below. 6 | // 7 | 8 | /* 9 | Copyright (c) 2011, John Engelhart 10 | 11 | All rights reserved. 12 | 13 | Redistribution and use in source and binary forms, with or without 14 | modification, are permitted provided that the following conditions are met: 15 | 16 | * Redistributions of source code must retain the above copyright 17 | notice, this list of conditions and the following disclaimer. 18 | 19 | * Redistributions in binary form must reproduce the above copyright 20 | notice, this list of conditions and the following disclaimer in the 21 | documentation and/or other materials provided with the distribution. 22 | 23 | * Neither the name of the Zang Industries nor the names of its 24 | contributors may be used to endorse or promote products derived from 25 | this software without specific prior written permission. 26 | 27 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 28 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 29 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 30 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 31 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 32 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED 33 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 34 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 35 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 36 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 37 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 38 | */ 39 | 40 | /* 41 | Copyright 2011 John Engelhart 42 | 43 | Licensed under the Apache License, Version 2.0 (the "License"); 44 | you may not use this file except in compliance with the License. 45 | You may obtain a copy of the License at 46 | 47 | http://www.apache.org/licenses/LICENSE-2.0 48 | 49 | Unless required by applicable law or agreed to in writing, software 50 | distributed under the License is distributed on an "AS IS" BASIS, 51 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 52 | See the License for the specific language governing permissions and 53 | limitations under the License. 54 | */ 55 | 56 | #include 57 | #include 58 | #include 59 | #include 60 | #include 61 | 62 | #ifdef __OBJC__ 63 | #import 64 | #import 65 | #import 66 | #import 67 | #import 68 | #import 69 | #endif // __OBJC__ 70 | 71 | #ifdef __cplusplus 72 | extern "C" { 73 | #endif 74 | 75 | 76 | // For Mac OS X < 10.5. 77 | #ifndef NSINTEGER_DEFINED 78 | #define NSINTEGER_DEFINED 79 | #if defined(__LP64__) || defined(NS_BUILD_32_LIKE_64) 80 | typedef long NSInteger; 81 | typedef unsigned long NSUInteger; 82 | #define NSIntegerMin LONG_MIN 83 | #define NSIntegerMax LONG_MAX 84 | #define NSUIntegerMax ULONG_MAX 85 | #else // defined(__LP64__) || defined(NS_BUILD_32_LIKE_64) 86 | typedef int NSInteger; 87 | typedef unsigned int NSUInteger; 88 | #define NSIntegerMin INT_MIN 89 | #define NSIntegerMax INT_MAX 90 | #define NSUIntegerMax UINT_MAX 91 | #endif // defined(__LP64__) || defined(NS_BUILD_32_LIKE_64) 92 | #endif // NSINTEGER_DEFINED 93 | 94 | 95 | #ifndef _JSONKIT_H_ 96 | #define _JSONKIT_H_ 97 | 98 | #if defined(__GNUC__) && (__GNUC__ >= 4) && defined(__APPLE_CC__) && (__APPLE_CC__ >= 5465) 99 | #define JK_DEPRECATED_ATTRIBUTE __attribute__((deprecated)) 100 | #else 101 | #define JK_DEPRECATED_ATTRIBUTE 102 | #endif 103 | 104 | #define JSONKIT_VERSION_MAJOR 1 105 | #define JSONKIT_VERSION_MINOR 4 106 | 107 | typedef NSUInteger JKFlags; 108 | 109 | /* 110 | JKParseOptionComments : Allow C style // and /_* ... *_/ (without a _, obviously) comments in JSON. 111 | JKParseOptionUnicodeNewlines : Allow Unicode recommended (?:\r\n|[\n\v\f\r\x85\p{Zl}\p{Zp}]) newlines. 112 | JKParseOptionLooseUnicode : Normally the decoder will stop with an error at any malformed Unicode. 113 | This option allows JSON with malformed Unicode to be parsed without reporting an error. 114 | Any malformed Unicode is replaced with \uFFFD, or "REPLACEMENT CHARACTER". 115 | */ 116 | 117 | enum { 118 | JKParseOptionNone = 0, 119 | JKParseOptionStrict = 0, 120 | JKParseOptionComments = (1 << 0), 121 | JKParseOptionUnicodeNewlines = (1 << 1), 122 | JKParseOptionLooseUnicode = (1 << 2), 123 | JKParseOptionPermitTextAfterValidJSON = (1 << 3), 124 | JKParseOptionValidFlags = (JKParseOptionComments | JKParseOptionUnicodeNewlines | JKParseOptionLooseUnicode | JKParseOptionPermitTextAfterValidJSON), 125 | }; 126 | typedef JKFlags JKParseOptionFlags; 127 | 128 | enum { 129 | JKSerializeOptionNone = 0, 130 | JKSerializeOptionPretty = (1 << 0), 131 | JKSerializeOptionEscapeUnicode = (1 << 1), 132 | JKSerializeOptionEscapeForwardSlashes = (1 << 4), 133 | JKSerializeOptionValidFlags = (JKSerializeOptionPretty | JKSerializeOptionEscapeUnicode | JKSerializeOptionEscapeForwardSlashes), 134 | }; 135 | typedef JKFlags JKSerializeOptionFlags; 136 | 137 | #ifdef __OBJC__ 138 | 139 | typedef struct JKParseState JKParseState; // Opaque internal, private type. 140 | 141 | // As a general rule of thumb, if you use a method that doesn't accept a JKParseOptionFlags argument, it defaults to JKParseOptionStrict 142 | 143 | @interface JSONDecoder : NSObject { 144 | JKParseState *parseState; 145 | } 146 | + (id)decoder; 147 | + (id)decoderWithParseOptions:(JKParseOptionFlags)parseOptionFlags; 148 | - (id)initWithParseOptions:(JKParseOptionFlags)parseOptionFlags; 149 | - (void)clearCache; 150 | 151 | // The parse... methods were deprecated in v1.4 in favor of the v1.4 objectWith... methods. 152 | - (id)parseUTF8String:(const unsigned char *)string length:(size_t)length JK_DEPRECATED_ATTRIBUTE; // Deprecated in JSONKit v1.4. Use objectWithUTF8String:length: instead. 153 | - (id)parseUTF8String:(const unsigned char *)string length:(size_t)length error:(NSError **)error JK_DEPRECATED_ATTRIBUTE; // Deprecated in JSONKit v1.4. Use objectWithUTF8String:length:error: instead. 154 | // The NSData MUST be UTF8 encoded JSON. 155 | - (id)parseJSONData:(NSData *)jsonData JK_DEPRECATED_ATTRIBUTE; // Deprecated in JSONKit v1.4. Use objectWithData: instead. 156 | - (id)parseJSONData:(NSData *)jsonData error:(NSError **)error JK_DEPRECATED_ATTRIBUTE; // Deprecated in JSONKit v1.4. Use objectWithData:error: instead. 157 | 158 | // Methods that return immutable collection objects. 159 | - (id)objectWithUTF8String:(const unsigned char *)string length:(NSUInteger)length; 160 | - (id)objectWithUTF8String:(const unsigned char *)string length:(NSUInteger)length error:(NSError **)error; 161 | // The NSData MUST be UTF8 encoded JSON. 162 | - (id)objectWithData:(NSData *)jsonData; 163 | - (id)objectWithData:(NSData *)jsonData error:(NSError **)error; 164 | 165 | // Methods that return mutable collection objects. 166 | - (id)mutableObjectWithUTF8String:(const unsigned char *)string length:(NSUInteger)length; 167 | - (id)mutableObjectWithUTF8String:(const unsigned char *)string length:(NSUInteger)length error:(NSError **)error; 168 | // The NSData MUST be UTF8 encoded JSON. 169 | - (id)mutableObjectWithData:(NSData *)jsonData; 170 | - (id)mutableObjectWithData:(NSData *)jsonData error:(NSError **)error; 171 | 172 | @end 173 | 174 | //////////// 175 | #pragma mark Deserializing methods 176 | //////////// 177 | 178 | @interface NSString (JSONKitDeserializing) 179 | - (id)objectFromJSONString; 180 | - (id)objectFromJSONStringWithParseOptions:(JKParseOptionFlags)parseOptionFlags; 181 | - (id)objectFromJSONStringWithParseOptions:(JKParseOptionFlags)parseOptionFlags error:(NSError **)error; 182 | - (id)mutableObjectFromJSONString; 183 | - (id)mutableObjectFromJSONStringWithParseOptions:(JKParseOptionFlags)parseOptionFlags; 184 | - (id)mutableObjectFromJSONStringWithParseOptions:(JKParseOptionFlags)parseOptionFlags error:(NSError **)error; 185 | @end 186 | 187 | @interface NSData (JSONKitDeserializing) 188 | // The NSData MUST be UTF8 encoded JSON. 189 | - (id)objectFromJSONData; 190 | - (id)objectFromJSONDataWithParseOptions:(JKParseOptionFlags)parseOptionFlags; 191 | - (id)objectFromJSONDataWithParseOptions:(JKParseOptionFlags)parseOptionFlags error:(NSError **)error; 192 | - (id)mutableObjectFromJSONData; 193 | - (id)mutableObjectFromJSONDataWithParseOptions:(JKParseOptionFlags)parseOptionFlags; 194 | - (id)mutableObjectFromJSONDataWithParseOptions:(JKParseOptionFlags)parseOptionFlags error:(NSError **)error; 195 | @end 196 | 197 | //////////// 198 | #pragma mark Serializing methods 199 | //////////// 200 | 201 | @interface NSString (JSONKitSerializing) 202 | // Convenience methods for those that need to serialize the receiving NSString (i.e., instead of having to serialize a NSArray with a single NSString, you can "serialize to JSON" just the NSString). 203 | // Normally, a string that is serialized to JSON has quotation marks surrounding it, which you may or may not want when serializing a single string, and can be controlled with includeQuotes: 204 | // includeQuotes:YES `a "test"...` -> `"a \"test\"..."` 205 | // includeQuotes:NO `a "test"...` -> `a \"test\"...` 206 | - (NSData *)JSONData; // Invokes JSONDataWithOptions:JKSerializeOptionNone includeQuotes:YES 207 | - (NSData *)JSONDataWithOptions:(JKSerializeOptionFlags)serializeOptions includeQuotes:(BOOL)includeQuotes error:(NSError **)error; 208 | - (NSString *)JSONString; // Invokes JSONStringWithOptions:JKSerializeOptionNone includeQuotes:YES 209 | - (NSString *)JSONStringWithOptions:(JKSerializeOptionFlags)serializeOptions includeQuotes:(BOOL)includeQuotes error:(NSError **)error; 210 | @end 211 | 212 | @interface NSArray (JSONKitSerializing) 213 | - (NSData *)JSONData; 214 | - (NSData *)JSONDataWithOptions:(JKSerializeOptionFlags)serializeOptions error:(NSError **)error; 215 | - (NSData *)JSONDataWithOptions:(JKSerializeOptionFlags)serializeOptions serializeUnsupportedClassesUsingDelegate:(id)delegate selector:(SEL)selector error:(NSError **)error; 216 | - (NSString *)JSONString; 217 | - (NSString *)JSONStringWithOptions:(JKSerializeOptionFlags)serializeOptions error:(NSError **)error; 218 | - (NSString *)JSONStringWithOptions:(JKSerializeOptionFlags)serializeOptions serializeUnsupportedClassesUsingDelegate:(id)delegate selector:(SEL)selector error:(NSError **)error; 219 | @end 220 | 221 | @interface NSDictionary (JSONKitSerializing) 222 | - (NSData *)JSONData; 223 | - (NSData *)JSONDataWithOptions:(JKSerializeOptionFlags)serializeOptions error:(NSError **)error; 224 | - (NSData *)JSONDataWithOptions:(JKSerializeOptionFlags)serializeOptions serializeUnsupportedClassesUsingDelegate:(id)delegate selector:(SEL)selector error:(NSError **)error; 225 | - (NSString *)JSONString; 226 | - (NSString *)JSONStringWithOptions:(JKSerializeOptionFlags)serializeOptions error:(NSError **)error; 227 | - (NSString *)JSONStringWithOptions:(JKSerializeOptionFlags)serializeOptions serializeUnsupportedClassesUsingDelegate:(id)delegate selector:(SEL)selector error:(NSError **)error; 228 | @end 229 | 230 | #ifdef __BLOCKS__ 231 | 232 | @interface NSArray (JSONKitSerializingBlockAdditions) 233 | - (NSData *)JSONDataWithOptions:(JKSerializeOptionFlags)serializeOptions serializeUnsupportedClassesUsingBlock:(id(^)(id object))block error:(NSError **)error; 234 | - (NSString *)JSONStringWithOptions:(JKSerializeOptionFlags)serializeOptions serializeUnsupportedClassesUsingBlock:(id(^)(id object))block error:(NSError **)error; 235 | @end 236 | 237 | @interface NSDictionary (JSONKitSerializingBlockAdditions) 238 | - (NSData *)JSONDataWithOptions:(JKSerializeOptionFlags)serializeOptions serializeUnsupportedClassesUsingBlock:(id(^)(id object))block error:(NSError **)error; 239 | - (NSString *)JSONStringWithOptions:(JKSerializeOptionFlags)serializeOptions serializeUnsupportedClassesUsingBlock:(id(^)(id object))block error:(NSError **)error; 240 | @end 241 | 242 | #endif 243 | 244 | 245 | #endif // __OBJC__ 246 | 247 | #endif // _JSONKIT_H_ 248 | 249 | #ifdef __cplusplus 250 | } // extern "C" 251 | #endif 252 | -------------------------------------------------------------------------------- /JSONRPC Tester/JSONRPC Tester-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIconFile 10 | JSON.png 11 | CFBundleIdentifier 12 | com.mladjanantic.${PRODUCT_NAME:rfc1034identifier} 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSApplicationCategoryType 26 | public.app-category.developer-tools 27 | LSMinimumSystemVersion 28 | ${MACOSX_DEPLOYMENT_TARGET} 29 | NSHumanReadableCopyright 30 | Copyright © 2011 __MyCompanyName__. All rights reserved. 31 | NSMainNibFile 32 | MainMenu 33 | NSPrincipalClass 34 | NSApplication 35 | 36 | 37 | -------------------------------------------------------------------------------- /JSONRPC Tester/JSONRPC Tester-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'JSONRPC Tester' target in the 'JSONRPC Tester' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /JSONRPC Tester/JSONRPCService.h: -------------------------------------------------------------------------------- 1 | // 2 | // JSONRPCService.h 3 | // WorldCupResource 4 | // 5 | // Created by ivan on 24.4.10.. 6 | // Copyright 2010 Dizzey.com. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @protocol JSONRPCServiceDelegate 12 | -(void) dataLoaded:(NSData*)data; 13 | -(void) loadingFailed:(NSString*) errMsg; 14 | @end 15 | 16 | 17 | @interface JSONRPCService : NSObject { 18 | NSURL* url; 19 | NSURLConnection *urlConnection; 20 | 21 | id delegate; 22 | 23 | NSString* username; 24 | NSString* password; 25 | 26 | NSMutableData* webData; 27 | } 28 | 29 | @property (assign) id delegate; 30 | 31 | -(id) initWithURL:(NSURL*)serviceURL; 32 | -(id) initWithURL:(NSURL*)serviceURL user:(NSString*)user pass:(NSString*)pass; 33 | -(void) execMethod:(NSString*)methodName andParams:(NSArray*)parameters withID:(NSString*)identificator; 34 | 35 | -(void) cancelRequest; 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /JSONRPC Tester/JSONRPCService.m: -------------------------------------------------------------------------------- 1 | // 2 | // JSONRPCService.m 3 | // WorldCupResource 4 | // 5 | // Created by ivan on 24.4.10.. 6 | // Copyright 2010 Dizzey.com. All rights reserved. 7 | // 8 | 9 | #import "JSONRPCService.h" 10 | #import "JSONKit.h" 11 | 12 | @implementation JSONRPCService 13 | @synthesize delegate; 14 | 15 | -(id) initWithURL:(NSURL*)serviceURL { 16 | return [self initWithURL:serviceURL user:nil pass:nil]; 17 | } 18 | 19 | -(id) initWithURL:(NSURL*)serviceURL user:(NSString*)user pass:(NSString*)pass { 20 | if (self = [super init]) { 21 | url = [serviceURL retain]; 22 | username = [user retain]; 23 | password = [pass retain]; 24 | } 25 | 26 | return self; 27 | } 28 | 29 | 30 | -(void) execMethod:(NSString*)methodName andParams:(NSArray*)parameters withID:(NSString*)identificator { 31 | 32 | //RPC 33 | NSMutableDictionary* reqDict = [NSMutableDictionary dictionary]; 34 | [reqDict setObject:methodName forKey:@"method"]; 35 | [reqDict setObject:parameters forKey:@"params"]; 36 | [reqDict setObject:identificator forKey:@"id"]; 37 | 38 | //RPC JSON 39 | NSString* reqString = [NSString stringWithString:[reqDict JSONString]]; 40 | 41 | //Request 42 | NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:url]; 43 | NSData* requestData = [NSData dataWithBytes:[reqString UTF8String] length:[reqString length]]; 44 | 45 | //prepare http body 46 | [request setHTTPMethod: @"POST"]; 47 | [request setValue:[NSString stringWithFormat:@"%d", [requestData length]] forHTTPHeaderField:@"Content-Length"]; 48 | [request setValue:@"application/json" forHTTPHeaderField:@"Accept"]; 49 | [request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"]; 50 | [request setHTTPBody: requestData]; 51 | 52 | if (urlConnection != nil) { 53 | [urlConnection release]; 54 | urlConnection = nil; 55 | } 56 | 57 | urlConnection = [[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:YES]; 58 | [request release]; 59 | 60 | } 61 | 62 | 63 | -(void) cancelRequest { 64 | 65 | if (urlConnection) { 66 | [urlConnection cancel]; 67 | [urlConnection release]; 68 | urlConnection = nil; 69 | [webData release]; 70 | webData = nil; 71 | } 72 | 73 | 74 | } 75 | 76 | #pragma mark - 77 | #pragma mark NSURLConnection delegate 78 | 79 | - (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response { 80 | NSLog(@"Did receive response: %@", response); 81 | 82 | [webData release]; 83 | webData = [[NSMutableData alloc] init]; 84 | } 85 | 86 | 87 | -(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data { 88 | assert(webData != nil); 89 | [webData appendData:data]; 90 | } 91 | 92 | - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error { 93 | [webData release]; 94 | webData = nil; 95 | [urlConnection release]; 96 | urlConnection = nil; 97 | 98 | 99 | //notify 100 | [delegate loadingFailed:[error localizedDescription]]; 101 | } 102 | 103 | 104 | -(void)connectionDidFinishLoading:(NSURLConnection *)connection { 105 | [urlConnection release]; 106 | urlConnection = nil; 107 | 108 | 109 | //DO something with webData 110 | [delegate dataLoaded:webData]; 111 | 112 | [webData release]; 113 | webData = nil; 114 | } 115 | 116 | -(void) dealloc { 117 | [webData release]; 118 | [username release]; 119 | [password release]; 120 | [urlConnection release]; 121 | [url release]; 122 | [super dealloc]; 123 | } 124 | @end 125 | -------------------------------------------------------------------------------- /JSONRPC Tester/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- 1 | {\rtf0\ansi{\fonttbl\f0\fswiss Helvetica;} 2 | {\colortbl;\red255\green255\blue255;} 3 | \paperw9840\paperh8400 4 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural 5 | 6 | \f0\b\fs24 \cf0 Engineering: 7 | \b0 \ 8 | Some people\ 9 | \ 10 | 11 | \b Human Interface Design: 12 | \b0 \ 13 | Some other people\ 14 | \ 15 | 16 | \b Testing: 17 | \b0 \ 18 | Hopefully not nobody\ 19 | \ 20 | 21 | \b Documentation: 22 | \b0 \ 23 | Whoever\ 24 | \ 25 | 26 | \b With special thanks to: 27 | \b0 \ 28 | Mom\ 29 | } 30 | -------------------------------------------------------------------------------- /JSONRPC Tester/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /JSONRPC Tester/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1070 5 | 11C73 6 | 1938 7 | 1138.23 8 | 567.00 9 | 10 | com.apple.InterfaceBuilder.CocoaPlugin 11 | 1938 12 | 13 | 14 | NSView 15 | NSMenu 16 | NSWindowTemplate 17 | NSMenuItem 18 | NSTextField 19 | NSTextFieldCell 20 | NSButtonCell 21 | NSButton 22 | NSCustomObject 23 | 24 | 25 | com.apple.InterfaceBuilder.CocoaPlugin 26 | 27 | 28 | PluginDependencyRecalculationVersion 29 | 30 | 31 | 32 | 33 | NSApplication 34 | 35 | 36 | FirstResponder 37 | 38 | 39 | NSApplication 40 | 41 | 42 | AMainMenu 43 | 44 | 45 | 46 | JSONRPC Tester 47 | 48 | 1048576 49 | 2147483647 50 | 51 | NSImage 52 | NSMenuCheckmark 53 | 54 | 55 | NSImage 56 | NSMenuMixedState 57 | 58 | submenuAction: 59 | 60 | JSONRPC Tester 61 | 62 | 63 | 64 | About JSONRPC Tester 65 | 66 | 2147483647 67 | 68 | 69 | 70 | 71 | 72 | YES 73 | YES 74 | 75 | 76 | 1048576 77 | 2147483647 78 | 79 | 80 | 81 | 82 | 83 | Preferences… 84 | , 85 | 1048576 86 | 2147483647 87 | 88 | 89 | 90 | 91 | 92 | YES 93 | YES 94 | 95 | 96 | 1048576 97 | 2147483647 98 | 99 | 100 | 101 | 102 | 103 | Services 104 | 105 | 1048576 106 | 2147483647 107 | 108 | 109 | submenuAction: 110 | 111 | Services 112 | 113 | _NSServicesMenu 114 | 115 | 116 | 117 | 118 | YES 119 | YES 120 | 121 | 122 | 1048576 123 | 2147483647 124 | 125 | 126 | 127 | 128 | 129 | Hide JSONRPC Tester 130 | h 131 | 1048576 132 | 2147483647 133 | 134 | 135 | 136 | 137 | 138 | Hide Others 139 | h 140 | 1572864 141 | 2147483647 142 | 143 | 144 | 145 | 146 | 147 | Show All 148 | 149 | 1048576 150 | 2147483647 151 | 152 | 153 | 154 | 155 | 156 | YES 157 | YES 158 | 159 | 160 | 1048576 161 | 2147483647 162 | 163 | 164 | 165 | 166 | 167 | Quit JSONRPC Tester 168 | q 169 | 1048576 170 | 2147483647 171 | 172 | 173 | 174 | 175 | _NSAppleMenu 176 | 177 | 178 | 179 | 180 | File 181 | 182 | 1048576 183 | 2147483647 184 | 185 | 186 | submenuAction: 187 | 188 | File 189 | 190 | 191 | 192 | New 193 | n 194 | 1048576 195 | 2147483647 196 | 197 | 198 | 199 | 200 | 201 | Open… 202 | o 203 | 1048576 204 | 2147483647 205 | 206 | 207 | 208 | 209 | 210 | Open Recent 211 | 212 | 1048576 213 | 2147483647 214 | 215 | 216 | submenuAction: 217 | 218 | Open Recent 219 | 220 | 221 | 222 | Clear Menu 223 | 224 | 1048576 225 | 2147483647 226 | 227 | 228 | 229 | 230 | _NSRecentDocumentsMenu 231 | 232 | 233 | 234 | 235 | YES 236 | YES 237 | 238 | 239 | 1048576 240 | 2147483647 241 | 242 | 243 | 244 | 245 | 246 | Close 247 | w 248 | 1048576 249 | 2147483647 250 | 251 | 252 | 253 | 254 | 255 | Save… 256 | s 257 | 1048576 258 | 2147483647 259 | 260 | 261 | 262 | 263 | 264 | Revert to Saved 265 | 266 | 2147483647 267 | 268 | 269 | 270 | 271 | 272 | YES 273 | YES 274 | 275 | 276 | 1048576 277 | 2147483647 278 | 279 | 280 | 281 | 282 | 283 | Page Setup... 284 | P 285 | 1179648 286 | 2147483647 287 | 288 | 289 | 290 | 291 | 292 | 293 | Print… 294 | p 295 | 1048576 296 | 2147483647 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | Edit 306 | 307 | 1048576 308 | 2147483647 309 | 310 | 311 | submenuAction: 312 | 313 | Edit 314 | 315 | 316 | 317 | Undo 318 | z 319 | 1048576 320 | 2147483647 321 | 322 | 323 | 324 | 325 | 326 | Redo 327 | Z 328 | 1179648 329 | 2147483647 330 | 331 | 332 | 333 | 334 | 335 | YES 336 | YES 337 | 338 | 339 | 1048576 340 | 2147483647 341 | 342 | 343 | 344 | 345 | 346 | Cut 347 | x 348 | 1048576 349 | 2147483647 350 | 351 | 352 | 353 | 354 | 355 | Copy 356 | c 357 | 1048576 358 | 2147483647 359 | 360 | 361 | 362 | 363 | 364 | Paste 365 | v 366 | 1048576 367 | 2147483647 368 | 369 | 370 | 371 | 372 | 373 | Paste and Match Style 374 | V 375 | 1572864 376 | 2147483647 377 | 378 | 379 | 380 | 381 | 382 | Delete 383 | 384 | 1048576 385 | 2147483647 386 | 387 | 388 | 389 | 390 | 391 | Select All 392 | a 393 | 1048576 394 | 2147483647 395 | 396 | 397 | 398 | 399 | 400 | YES 401 | YES 402 | 403 | 404 | 1048576 405 | 2147483647 406 | 407 | 408 | 409 | 410 | 411 | Find 412 | 413 | 1048576 414 | 2147483647 415 | 416 | 417 | submenuAction: 418 | 419 | Find 420 | 421 | 422 | 423 | Find… 424 | f 425 | 1048576 426 | 2147483647 427 | 428 | 429 | 1 430 | 431 | 432 | 433 | Find and Replace… 434 | f 435 | 1572864 436 | 2147483647 437 | 438 | 439 | 12 440 | 441 | 442 | 443 | Find Next 444 | g 445 | 1048576 446 | 2147483647 447 | 448 | 449 | 2 450 | 451 | 452 | 453 | Find Previous 454 | G 455 | 1179648 456 | 2147483647 457 | 458 | 459 | 3 460 | 461 | 462 | 463 | Use Selection for Find 464 | e 465 | 1048576 466 | 2147483647 467 | 468 | 469 | 7 470 | 471 | 472 | 473 | Jump to Selection 474 | j 475 | 1048576 476 | 2147483647 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | Spelling and Grammar 486 | 487 | 1048576 488 | 2147483647 489 | 490 | 491 | submenuAction: 492 | 493 | Spelling and Grammar 494 | 495 | 496 | 497 | Show Spelling and Grammar 498 | : 499 | 1048576 500 | 2147483647 501 | 502 | 503 | 504 | 505 | 506 | Check Document Now 507 | ; 508 | 1048576 509 | 2147483647 510 | 511 | 512 | 513 | 514 | 515 | YES 516 | YES 517 | 518 | 519 | 2147483647 520 | 521 | 522 | 523 | 524 | 525 | Check Spelling While Typing 526 | 527 | 1048576 528 | 2147483647 529 | 530 | 531 | 532 | 533 | 534 | Check Grammar With Spelling 535 | 536 | 1048576 537 | 2147483647 538 | 539 | 540 | 541 | 542 | 543 | Correct Spelling Automatically 544 | 545 | 2147483647 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | Substitutions 555 | 556 | 1048576 557 | 2147483647 558 | 559 | 560 | submenuAction: 561 | 562 | Substitutions 563 | 564 | 565 | 566 | Show Substitutions 567 | 568 | 2147483647 569 | 570 | 571 | 572 | 573 | 574 | YES 575 | YES 576 | 577 | 578 | 2147483647 579 | 580 | 581 | 582 | 583 | 584 | Smart Copy/Paste 585 | f 586 | 1048576 587 | 2147483647 588 | 589 | 590 | 1 591 | 592 | 593 | 594 | Smart Quotes 595 | g 596 | 1048576 597 | 2147483647 598 | 599 | 600 | 2 601 | 602 | 603 | 604 | Smart Dashes 605 | 606 | 2147483647 607 | 608 | 609 | 610 | 611 | 612 | Smart Links 613 | G 614 | 1179648 615 | 2147483647 616 | 617 | 618 | 3 619 | 620 | 621 | 622 | Text Replacement 623 | 624 | 2147483647 625 | 626 | 627 | 628 | 629 | 630 | 631 | 632 | 633 | Transformations 634 | 635 | 2147483647 636 | 637 | 638 | submenuAction: 639 | 640 | Transformations 641 | 642 | 643 | 644 | Make Upper Case 645 | 646 | 2147483647 647 | 648 | 649 | 650 | 651 | 652 | Make Lower Case 653 | 654 | 2147483647 655 | 656 | 657 | 658 | 659 | 660 | Capitalize 661 | 662 | 2147483647 663 | 664 | 665 | 666 | 667 | 668 | 669 | 670 | 671 | Speech 672 | 673 | 1048576 674 | 2147483647 675 | 676 | 677 | submenuAction: 678 | 679 | Speech 680 | 681 | 682 | 683 | Start Speaking 684 | 685 | 1048576 686 | 2147483647 687 | 688 | 689 | 690 | 691 | 692 | Stop Speaking 693 | 694 | 1048576 695 | 2147483647 696 | 697 | 698 | 699 | 700 | 701 | 702 | 703 | 704 | 705 | 706 | 707 | Format 708 | 709 | 2147483647 710 | 711 | 712 | submenuAction: 713 | 714 | Format 715 | 716 | 717 | 718 | Font 719 | 720 | 2147483647 721 | 722 | 723 | submenuAction: 724 | 725 | Font 726 | 727 | 728 | 729 | Show Fonts 730 | t 731 | 1048576 732 | 2147483647 733 | 734 | 735 | 736 | 737 | 738 | Bold 739 | b 740 | 1048576 741 | 2147483647 742 | 743 | 744 | 2 745 | 746 | 747 | 748 | Italic 749 | i 750 | 1048576 751 | 2147483647 752 | 753 | 754 | 1 755 | 756 | 757 | 758 | Underline 759 | u 760 | 1048576 761 | 2147483647 762 | 763 | 764 | 765 | 766 | 767 | YES 768 | YES 769 | 770 | 771 | 2147483647 772 | 773 | 774 | 775 | 776 | 777 | Bigger 778 | + 779 | 1048576 780 | 2147483647 781 | 782 | 783 | 3 784 | 785 | 786 | 787 | Smaller 788 | - 789 | 1048576 790 | 2147483647 791 | 792 | 793 | 4 794 | 795 | 796 | 797 | YES 798 | YES 799 | 800 | 801 | 2147483647 802 | 803 | 804 | 805 | 806 | 807 | Kern 808 | 809 | 2147483647 810 | 811 | 812 | submenuAction: 813 | 814 | Kern 815 | 816 | 817 | 818 | Use Default 819 | 820 | 2147483647 821 | 822 | 823 | 824 | 825 | 826 | Use None 827 | 828 | 2147483647 829 | 830 | 831 | 832 | 833 | 834 | Tighten 835 | 836 | 2147483647 837 | 838 | 839 | 840 | 841 | 842 | Loosen 843 | 844 | 2147483647 845 | 846 | 847 | 848 | 849 | 850 | 851 | 852 | 853 | Ligature 854 | 855 | 2147483647 856 | 857 | 858 | submenuAction: 859 | 860 | Ligature 861 | 862 | 863 | 864 | Use Default 865 | 866 | 2147483647 867 | 868 | 869 | 870 | 871 | 872 | Use None 873 | 874 | 2147483647 875 | 876 | 877 | 878 | 879 | 880 | Use All 881 | 882 | 2147483647 883 | 884 | 885 | 886 | 887 | 888 | 889 | 890 | 891 | Baseline 892 | 893 | 2147483647 894 | 895 | 896 | submenuAction: 897 | 898 | Baseline 899 | 900 | 901 | 902 | Use Default 903 | 904 | 2147483647 905 | 906 | 907 | 908 | 909 | 910 | Superscript 911 | 912 | 2147483647 913 | 914 | 915 | 916 | 917 | 918 | Subscript 919 | 920 | 2147483647 921 | 922 | 923 | 924 | 925 | 926 | Raise 927 | 928 | 2147483647 929 | 930 | 931 | 932 | 933 | 934 | Lower 935 | 936 | 2147483647 937 | 938 | 939 | 940 | 941 | 942 | 943 | 944 | 945 | YES 946 | YES 947 | 948 | 949 | 2147483647 950 | 951 | 952 | 953 | 954 | 955 | Show Colors 956 | C 957 | 1048576 958 | 2147483647 959 | 960 | 961 | 962 | 963 | 964 | YES 965 | YES 966 | 967 | 968 | 2147483647 969 | 970 | 971 | 972 | 973 | 974 | Copy Style 975 | c 976 | 1572864 977 | 2147483647 978 | 979 | 980 | 981 | 982 | 983 | Paste Style 984 | v 985 | 1572864 986 | 2147483647 987 | 988 | 989 | 990 | 991 | _NSFontMenu 992 | 993 | 994 | 995 | 996 | Text 997 | 998 | 2147483647 999 | 1000 | 1001 | submenuAction: 1002 | 1003 | Text 1004 | 1005 | 1006 | 1007 | Align Left 1008 | { 1009 | 1048576 1010 | 2147483647 1011 | 1012 | 1013 | 1014 | 1015 | 1016 | Center 1017 | | 1018 | 1048576 1019 | 2147483647 1020 | 1021 | 1022 | 1023 | 1024 | 1025 | Justify 1026 | 1027 | 2147483647 1028 | 1029 | 1030 | 1031 | 1032 | 1033 | Align Right 1034 | } 1035 | 1048576 1036 | 2147483647 1037 | 1038 | 1039 | 1040 | 1041 | 1042 | YES 1043 | YES 1044 | 1045 | 1046 | 2147483647 1047 | 1048 | 1049 | 1050 | 1051 | 1052 | Writing Direction 1053 | 1054 | 2147483647 1055 | 1056 | 1057 | submenuAction: 1058 | 1059 | Writing Direction 1060 | 1061 | 1062 | 1063 | YES 1064 | Paragraph 1065 | 1066 | 2147483647 1067 | 1068 | 1069 | 1070 | 1071 | 1072 | CURlZmF1bHQ 1073 | 1074 | 2147483647 1075 | 1076 | 1077 | 1078 | 1079 | 1080 | CUxlZnQgdG8gUmlnaHQ 1081 | 1082 | 2147483647 1083 | 1084 | 1085 | 1086 | 1087 | 1088 | CVJpZ2h0IHRvIExlZnQ 1089 | 1090 | 2147483647 1091 | 1092 | 1093 | 1094 | 1095 | 1096 | YES 1097 | YES 1098 | 1099 | 1100 | 2147483647 1101 | 1102 | 1103 | 1104 | 1105 | 1106 | YES 1107 | Selection 1108 | 1109 | 2147483647 1110 | 1111 | 1112 | 1113 | 1114 | 1115 | CURlZmF1bHQ 1116 | 1117 | 2147483647 1118 | 1119 | 1120 | 1121 | 1122 | 1123 | CUxlZnQgdG8gUmlnaHQ 1124 | 1125 | 2147483647 1126 | 1127 | 1128 | 1129 | 1130 | 1131 | CVJpZ2h0IHRvIExlZnQ 1132 | 1133 | 2147483647 1134 | 1135 | 1136 | 1137 | 1138 | 1139 | 1140 | 1141 | 1142 | YES 1143 | YES 1144 | 1145 | 1146 | 2147483647 1147 | 1148 | 1149 | 1150 | 1151 | 1152 | Show Ruler 1153 | 1154 | 2147483647 1155 | 1156 | 1157 | 1158 | 1159 | 1160 | Copy Ruler 1161 | c 1162 | 1310720 1163 | 2147483647 1164 | 1165 | 1166 | 1167 | 1168 | 1169 | Paste Ruler 1170 | v 1171 | 1310720 1172 | 2147483647 1173 | 1174 | 1175 | 1176 | 1177 | 1178 | 1179 | 1180 | 1181 | 1182 | 1183 | 1184 | View 1185 | 1186 | 1048576 1187 | 2147483647 1188 | 1189 | 1190 | submenuAction: 1191 | 1192 | View 1193 | 1194 | 1195 | 1196 | Show Toolbar 1197 | t 1198 | 1572864 1199 | 2147483647 1200 | 1201 | 1202 | 1203 | 1204 | 1205 | Customize Toolbar… 1206 | 1207 | 1048576 1208 | 2147483647 1209 | 1210 | 1211 | 1212 | 1213 | 1214 | 1215 | 1216 | 1217 | Window 1218 | 1219 | 1048576 1220 | 2147483647 1221 | 1222 | 1223 | submenuAction: 1224 | 1225 | Window 1226 | 1227 | 1228 | 1229 | Minimize 1230 | m 1231 | 1048576 1232 | 2147483647 1233 | 1234 | 1235 | 1236 | 1237 | 1238 | Zoom 1239 | 1240 | 1048576 1241 | 2147483647 1242 | 1243 | 1244 | 1245 | 1246 | 1247 | YES 1248 | YES 1249 | 1250 | 1251 | 1048576 1252 | 2147483647 1253 | 1254 | 1255 | 1256 | 1257 | 1258 | Bring All to Front 1259 | 1260 | 1048576 1261 | 2147483647 1262 | 1263 | 1264 | 1265 | 1266 | _NSWindowsMenu 1267 | 1268 | 1269 | 1270 | 1271 | Help 1272 | 1273 | 2147483647 1274 | 1275 | 1276 | submenuAction: 1277 | 1278 | Help 1279 | 1280 | 1281 | 1282 | JSONRPC Tester Help 1283 | ? 1284 | 1048576 1285 | 2147483647 1286 | 1287 | 1288 | 1289 | 1290 | _NSHelpMenu 1291 | 1292 | 1293 | 1294 | _NSMainMenu 1295 | 1296 | 1297 | 15 1298 | 2 1299 | {{335, 390}, {702, 628}} 1300 | 1954021376 1301 | JSONRPC Tester 1302 | NSWindow 1303 | 1304 | 1305 | 1306 | 1307 | 256 1308 | 1309 | 1310 | 1311 | 268 1312 | {{547, 19}, {121, 32}} 1313 | 1314 | 1315 | 1316 | _NS:687 1317 | YES 1318 | 1319 | 67239424 1320 | 134217728 1321 | Let's do this! 1322 | 1323 | LucidaGrande 1324 | 13 1325 | 1044 1326 | 1327 | _NS:687 1328 | 1329 | -2038284033 1330 | 129 1331 | 1332 | 1333 | 200 1334 | 25 1335 | 1336 | 1337 | 1338 | 1339 | 268 1340 | {{81, 552}, {581, 22}} 1341 | 1342 | 1343 | 1344 | _NS:903 1345 | YES 1346 | 1347 | -1804468671 1348 | 272630784 1349 | 1350 | 1351 | http://someurl 1352 | _NS:903 1353 | 1354 | YES 1355 | 1356 | 6 1357 | System 1358 | textBackgroundColor 1359 | 1360 | 3 1361 | MQA 1362 | 1363 | 1364 | 1365 | 6 1366 | System 1367 | textColor 1368 | 1369 | 3 1370 | MAA 1371 | 1372 | 1373 | 1374 | 1375 | 1376 | 1377 | 268 1378 | {{11, 555}, {33, 17}} 1379 | 1380 | 1381 | 1382 | _NS:3944 1383 | YES 1384 | 1385 | 68288064 1386 | 272630784 1387 | URL: 1388 | 1389 | _NS:3944 1390 | 1391 | 1392 | 6 1393 | System 1394 | controlColor 1395 | 1396 | 3 1397 | MC42NjY2NjY2NjY3AA 1398 | 1399 | 1400 | 1401 | 6 1402 | System 1403 | controlTextColor 1404 | 1405 | 1406 | 1407 | 1408 | 1409 | 1410 | 268 1411 | {{81, 512}, {581, 22}} 1412 | 1413 | 1414 | 1415 | _NS:903 1416 | YES 1417 | 1418 | -1804468671 1419 | 272630784 1420 | 1421 | 1422 | example: login 1423 | _NS:903 1424 | 1425 | YES 1426 | 1427 | 1428 | 1429 | 1430 | 1431 | 1432 | 268 1433 | {{11, 515}, {56, 17}} 1434 | 1435 | 1436 | 1437 | _NS:3944 1438 | YES 1439 | 1440 | 68288064 1441 | 272630784 1442 | Method: 1443 | 1444 | _NS:3944 1445 | 1446 | 1447 | 1448 | 1449 | 1450 | 1451 | 1452 | 268 1453 | {{11, 469}, {50, 17}} 1454 | 1455 | 1456 | 1457 | _NS:3944 1458 | YES 1459 | 1460 | 68288064 1461 | 272630784 1462 | Params 1463 | 1464 | _NS:3944 1465 | 1466 | 1467 | 1468 | 1469 | 1470 | 1471 | 1472 | 268 1473 | {{11, 294}, {69, 17}} 1474 | 1475 | 1476 | 1477 | _NS:3944 1478 | YES 1479 | 1480 | 68288064 1481 | 272630784 1482 | Response: 1483 | 1484 | _NS:3944 1485 | 1486 | 1487 | 1488 | 1489 | 1490 | 1491 | 1492 | 268 1493 | {{81, 60}, {581, 254}} 1494 | 1495 | 1496 | 1497 | _NS:354 1498 | {250, 750} 1499 | YES 1500 | 1501 | -1805517311 1502 | 272629760 1503 | 1504 | 1505 | _NS:354 1506 | 1507 | YES 1508 | 1509 | 1510 | 1511 | 1512 | 1513 | 1514 | 268 1515 | {{81, 319}, {581, 167}} 1516 | 1517 | 1518 | 1519 | _NS:354 1520 | {250, 750} 1521 | YES 1522 | 1523 | -1805517311 1524 | 272629760 1525 | 1526 | 1527 | example: ["first", "second"] 1528 | _NS:354 1529 | 1530 | YES 1531 | 1532 | 1533 | 1534 | 1535 | 1536 | {702, 628} 1537 | 1538 | 1539 | 1540 | 1541 | {{0, 0}, {1920, 1178}} 1542 | {10000000000000, 10000000000000} 1543 | YES 1544 | 1545 | 1546 | AppDelegate 1547 | 1548 | 1549 | NSFontManager 1550 | 1551 | 1552 | 1553 | 1554 | 1555 | 1556 | terminate: 1557 | 1558 | 1559 | 1560 | 449 1561 | 1562 | 1563 | 1564 | orderFrontStandardAboutPanel: 1565 | 1566 | 1567 | 1568 | 142 1569 | 1570 | 1571 | 1572 | delegate 1573 | 1574 | 1575 | 1576 | 495 1577 | 1578 | 1579 | 1580 | performMiniaturize: 1581 | 1582 | 1583 | 1584 | 37 1585 | 1586 | 1587 | 1588 | arrangeInFront: 1589 | 1590 | 1591 | 1592 | 39 1593 | 1594 | 1595 | 1596 | print: 1597 | 1598 | 1599 | 1600 | 86 1601 | 1602 | 1603 | 1604 | runPageLayout: 1605 | 1606 | 1607 | 1608 | 87 1609 | 1610 | 1611 | 1612 | clearRecentDocuments: 1613 | 1614 | 1615 | 1616 | 127 1617 | 1618 | 1619 | 1620 | performClose: 1621 | 1622 | 1623 | 1624 | 193 1625 | 1626 | 1627 | 1628 | toggleContinuousSpellChecking: 1629 | 1630 | 1631 | 1632 | 222 1633 | 1634 | 1635 | 1636 | undo: 1637 | 1638 | 1639 | 1640 | 223 1641 | 1642 | 1643 | 1644 | copy: 1645 | 1646 | 1647 | 1648 | 224 1649 | 1650 | 1651 | 1652 | checkSpelling: 1653 | 1654 | 1655 | 1656 | 225 1657 | 1658 | 1659 | 1660 | paste: 1661 | 1662 | 1663 | 1664 | 226 1665 | 1666 | 1667 | 1668 | stopSpeaking: 1669 | 1670 | 1671 | 1672 | 227 1673 | 1674 | 1675 | 1676 | cut: 1677 | 1678 | 1679 | 1680 | 228 1681 | 1682 | 1683 | 1684 | showGuessPanel: 1685 | 1686 | 1687 | 1688 | 230 1689 | 1690 | 1691 | 1692 | redo: 1693 | 1694 | 1695 | 1696 | 231 1697 | 1698 | 1699 | 1700 | selectAll: 1701 | 1702 | 1703 | 1704 | 232 1705 | 1706 | 1707 | 1708 | startSpeaking: 1709 | 1710 | 1711 | 1712 | 233 1713 | 1714 | 1715 | 1716 | delete: 1717 | 1718 | 1719 | 1720 | 235 1721 | 1722 | 1723 | 1724 | performZoom: 1725 | 1726 | 1727 | 1728 | 240 1729 | 1730 | 1731 | 1732 | performFindPanelAction: 1733 | 1734 | 1735 | 1736 | 241 1737 | 1738 | 1739 | 1740 | centerSelectionInVisibleArea: 1741 | 1742 | 1743 | 1744 | 245 1745 | 1746 | 1747 | 1748 | toggleGrammarChecking: 1749 | 1750 | 1751 | 1752 | 347 1753 | 1754 | 1755 | 1756 | toggleSmartInsertDelete: 1757 | 1758 | 1759 | 1760 | 355 1761 | 1762 | 1763 | 1764 | toggleAutomaticQuoteSubstitution: 1765 | 1766 | 1767 | 1768 | 356 1769 | 1770 | 1771 | 1772 | toggleAutomaticLinkDetection: 1773 | 1774 | 1775 | 1776 | 357 1777 | 1778 | 1779 | 1780 | saveDocument: 1781 | 1782 | 1783 | 1784 | 362 1785 | 1786 | 1787 | 1788 | revertDocumentToSaved: 1789 | 1790 | 1791 | 1792 | 364 1793 | 1794 | 1795 | 1796 | runToolbarCustomizationPalette: 1797 | 1798 | 1799 | 1800 | 365 1801 | 1802 | 1803 | 1804 | toggleToolbarShown: 1805 | 1806 | 1807 | 1808 | 366 1809 | 1810 | 1811 | 1812 | hide: 1813 | 1814 | 1815 | 1816 | 367 1817 | 1818 | 1819 | 1820 | hideOtherApplications: 1821 | 1822 | 1823 | 1824 | 368 1825 | 1826 | 1827 | 1828 | unhideAllApplications: 1829 | 1830 | 1831 | 1832 | 370 1833 | 1834 | 1835 | 1836 | newDocument: 1837 | 1838 | 1839 | 1840 | 373 1841 | 1842 | 1843 | 1844 | openDocument: 1845 | 1846 | 1847 | 1848 | 374 1849 | 1850 | 1851 | 1852 | raiseBaseline: 1853 | 1854 | 1855 | 1856 | 426 1857 | 1858 | 1859 | 1860 | lowerBaseline: 1861 | 1862 | 1863 | 1864 | 427 1865 | 1866 | 1867 | 1868 | copyFont: 1869 | 1870 | 1871 | 1872 | 428 1873 | 1874 | 1875 | 1876 | subscript: 1877 | 1878 | 1879 | 1880 | 429 1881 | 1882 | 1883 | 1884 | superscript: 1885 | 1886 | 1887 | 1888 | 430 1889 | 1890 | 1891 | 1892 | tightenKerning: 1893 | 1894 | 1895 | 1896 | 431 1897 | 1898 | 1899 | 1900 | underline: 1901 | 1902 | 1903 | 1904 | 432 1905 | 1906 | 1907 | 1908 | orderFrontColorPanel: 1909 | 1910 | 1911 | 1912 | 433 1913 | 1914 | 1915 | 1916 | useAllLigatures: 1917 | 1918 | 1919 | 1920 | 434 1921 | 1922 | 1923 | 1924 | loosenKerning: 1925 | 1926 | 1927 | 1928 | 435 1929 | 1930 | 1931 | 1932 | pasteFont: 1933 | 1934 | 1935 | 1936 | 436 1937 | 1938 | 1939 | 1940 | unscript: 1941 | 1942 | 1943 | 1944 | 437 1945 | 1946 | 1947 | 1948 | useStandardKerning: 1949 | 1950 | 1951 | 1952 | 438 1953 | 1954 | 1955 | 1956 | useStandardLigatures: 1957 | 1958 | 1959 | 1960 | 439 1961 | 1962 | 1963 | 1964 | turnOffLigatures: 1965 | 1966 | 1967 | 1968 | 440 1969 | 1970 | 1971 | 1972 | turnOffKerning: 1973 | 1974 | 1975 | 1976 | 441 1977 | 1978 | 1979 | 1980 | toggleAutomaticSpellingCorrection: 1981 | 1982 | 1983 | 1984 | 456 1985 | 1986 | 1987 | 1988 | orderFrontSubstitutionsPanel: 1989 | 1990 | 1991 | 1992 | 458 1993 | 1994 | 1995 | 1996 | toggleAutomaticDashSubstitution: 1997 | 1998 | 1999 | 2000 | 461 2001 | 2002 | 2003 | 2004 | toggleAutomaticTextReplacement: 2005 | 2006 | 2007 | 2008 | 463 2009 | 2010 | 2011 | 2012 | uppercaseWord: 2013 | 2014 | 2015 | 2016 | 464 2017 | 2018 | 2019 | 2020 | capitalizeWord: 2021 | 2022 | 2023 | 2024 | 467 2025 | 2026 | 2027 | 2028 | lowercaseWord: 2029 | 2030 | 2031 | 2032 | 468 2033 | 2034 | 2035 | 2036 | pasteAsPlainText: 2037 | 2038 | 2039 | 2040 | 486 2041 | 2042 | 2043 | 2044 | performFindPanelAction: 2045 | 2046 | 2047 | 2048 | 487 2049 | 2050 | 2051 | 2052 | performFindPanelAction: 2053 | 2054 | 2055 | 2056 | 488 2057 | 2058 | 2059 | 2060 | performFindPanelAction: 2061 | 2062 | 2063 | 2064 | 489 2065 | 2066 | 2067 | 2068 | showHelp: 2069 | 2070 | 2071 | 2072 | 493 2073 | 2074 | 2075 | 2076 | alignCenter: 2077 | 2078 | 2079 | 2080 | 518 2081 | 2082 | 2083 | 2084 | pasteRuler: 2085 | 2086 | 2087 | 2088 | 519 2089 | 2090 | 2091 | 2092 | toggleRuler: 2093 | 2094 | 2095 | 2096 | 520 2097 | 2098 | 2099 | 2100 | alignRight: 2101 | 2102 | 2103 | 2104 | 521 2105 | 2106 | 2107 | 2108 | copyRuler: 2109 | 2110 | 2111 | 2112 | 522 2113 | 2114 | 2115 | 2116 | alignJustified: 2117 | 2118 | 2119 | 2120 | 523 2121 | 2122 | 2123 | 2124 | alignLeft: 2125 | 2126 | 2127 | 2128 | 524 2129 | 2130 | 2131 | 2132 | makeBaseWritingDirectionNatural: 2133 | 2134 | 2135 | 2136 | 525 2137 | 2138 | 2139 | 2140 | makeBaseWritingDirectionLeftToRight: 2141 | 2142 | 2143 | 2144 | 526 2145 | 2146 | 2147 | 2148 | makeBaseWritingDirectionRightToLeft: 2149 | 2150 | 2151 | 2152 | 527 2153 | 2154 | 2155 | 2156 | makeTextWritingDirectionNatural: 2157 | 2158 | 2159 | 2160 | 528 2161 | 2162 | 2163 | 2164 | makeTextWritingDirectionLeftToRight: 2165 | 2166 | 2167 | 2168 | 529 2169 | 2170 | 2171 | 2172 | makeTextWritingDirectionRightToLeft: 2173 | 2174 | 2175 | 2176 | 530 2177 | 2178 | 2179 | 2180 | performFindPanelAction: 2181 | 2182 | 2183 | 2184 | 535 2185 | 2186 | 2187 | 2188 | addFontTrait: 2189 | 2190 | 2191 | 2192 | 421 2193 | 2194 | 2195 | 2196 | addFontTrait: 2197 | 2198 | 2199 | 2200 | 422 2201 | 2202 | 2203 | 2204 | modifyFont: 2205 | 2206 | 2207 | 2208 | 423 2209 | 2210 | 2211 | 2212 | orderFrontFontPanel: 2213 | 2214 | 2215 | 2216 | 424 2217 | 2218 | 2219 | 2220 | modifyFont: 2221 | 2222 | 2223 | 2224 | 425 2225 | 2226 | 2227 | 2228 | window 2229 | 2230 | 2231 | 2232 | 532 2233 | 2234 | 2235 | 2236 | urlField 2237 | 2238 | 2239 | 2240 | 556 2241 | 2242 | 2243 | 2244 | method 2245 | 2246 | 2247 | 2248 | 557 2249 | 2250 | 2251 | 2252 | submitButton 2253 | 2254 | 2255 | 2256 | 560 2257 | 2258 | 2259 | 2260 | sendAction: 2261 | 2262 | 2263 | 2264 | 561 2265 | 2266 | 2267 | 2268 | response 2269 | 2270 | 2271 | 2272 | 564 2273 | 2274 | 2275 | 2276 | params 2277 | 2278 | 2279 | 2280 | 567 2281 | 2282 | 2283 | 2284 | 2285 | 2286 | 0 2287 | 2288 | 2289 | 2290 | 2291 | 2292 | -2 2293 | 2294 | 2295 | File's Owner 2296 | 2297 | 2298 | -1 2299 | 2300 | 2301 | First Responder 2302 | 2303 | 2304 | -3 2305 | 2306 | 2307 | Application 2308 | 2309 | 2310 | 29 2311 | 2312 | 2313 | 2314 | 2315 | 2316 | 2317 | 2318 | 2319 | 2320 | 2321 | 2322 | 2323 | 2324 | 19 2325 | 2326 | 2327 | 2328 | 2329 | 2330 | 2331 | 2332 | 56 2333 | 2334 | 2335 | 2336 | 2337 | 2338 | 2339 | 2340 | 217 2341 | 2342 | 2343 | 2344 | 2345 | 2346 | 2347 | 2348 | 83 2349 | 2350 | 2351 | 2352 | 2353 | 2354 | 2355 | 2356 | 81 2357 | 2358 | 2359 | 2360 | 2361 | 2362 | 2363 | 2364 | 2365 | 2366 | 2367 | 2368 | 2369 | 2370 | 2371 | 2372 | 2373 | 75 2374 | 2375 | 2376 | 2377 | 2378 | 78 2379 | 2380 | 2381 | 2382 | 2383 | 72 2384 | 2385 | 2386 | 2387 | 2388 | 82 2389 | 2390 | 2391 | 2392 | 2393 | 124 2394 | 2395 | 2396 | 2397 | 2398 | 2399 | 2400 | 2401 | 77 2402 | 2403 | 2404 | 2405 | 2406 | 73 2407 | 2408 | 2409 | 2410 | 2411 | 79 2412 | 2413 | 2414 | 2415 | 2416 | 112 2417 | 2418 | 2419 | 2420 | 2421 | 74 2422 | 2423 | 2424 | 2425 | 2426 | 125 2427 | 2428 | 2429 | 2430 | 2431 | 2432 | 2433 | 2434 | 126 2435 | 2436 | 2437 | 2438 | 2439 | 205 2440 | 2441 | 2442 | 2443 | 2444 | 2445 | 2446 | 2447 | 2448 | 2449 | 2450 | 2451 | 2452 | 2453 | 2454 | 2455 | 2456 | 2457 | 2458 | 2459 | 2460 | 2461 | 202 2462 | 2463 | 2464 | 2465 | 2466 | 198 2467 | 2468 | 2469 | 2470 | 2471 | 207 2472 | 2473 | 2474 | 2475 | 2476 | 214 2477 | 2478 | 2479 | 2480 | 2481 | 199 2482 | 2483 | 2484 | 2485 | 2486 | 203 2487 | 2488 | 2489 | 2490 | 2491 | 197 2492 | 2493 | 2494 | 2495 | 2496 | 206 2497 | 2498 | 2499 | 2500 | 2501 | 215 2502 | 2503 | 2504 | 2505 | 2506 | 218 2507 | 2508 | 2509 | 2510 | 2511 | 2512 | 2513 | 2514 | 216 2515 | 2516 | 2517 | 2518 | 2519 | 2520 | 2521 | 2522 | 200 2523 | 2524 | 2525 | 2526 | 2527 | 2528 | 2529 | 2530 | 2531 | 2532 | 2533 | 2534 | 2535 | 219 2536 | 2537 | 2538 | 2539 | 2540 | 201 2541 | 2542 | 2543 | 2544 | 2545 | 204 2546 | 2547 | 2548 | 2549 | 2550 | 220 2551 | 2552 | 2553 | 2554 | 2555 | 2556 | 2557 | 2558 | 2559 | 2560 | 2561 | 2562 | 2563 | 213 2564 | 2565 | 2566 | 2567 | 2568 | 210 2569 | 2570 | 2571 | 2572 | 2573 | 221 2574 | 2575 | 2576 | 2577 | 2578 | 208 2579 | 2580 | 2581 | 2582 | 2583 | 209 2584 | 2585 | 2586 | 2587 | 2588 | 57 2589 | 2590 | 2591 | 2592 | 2593 | 2594 | 2595 | 2596 | 2597 | 2598 | 2599 | 2600 | 2601 | 2602 | 2603 | 2604 | 2605 | 2606 | 58 2607 | 2608 | 2609 | 2610 | 2611 | 134 2612 | 2613 | 2614 | 2615 | 2616 | 150 2617 | 2618 | 2619 | 2620 | 2621 | 136 2622 | 2623 | 2624 | 2625 | 2626 | 144 2627 | 2628 | 2629 | 2630 | 2631 | 129 2632 | 2633 | 2634 | 2635 | 2636 | 143 2637 | 2638 | 2639 | 2640 | 2641 | 236 2642 | 2643 | 2644 | 2645 | 2646 | 131 2647 | 2648 | 2649 | 2650 | 2651 | 2652 | 2653 | 2654 | 149 2655 | 2656 | 2657 | 2658 | 2659 | 145 2660 | 2661 | 2662 | 2663 | 2664 | 130 2665 | 2666 | 2667 | 2668 | 2669 | 24 2670 | 2671 | 2672 | 2673 | 2674 | 2675 | 2676 | 2677 | 2678 | 2679 | 2680 | 92 2681 | 2682 | 2683 | 2684 | 2685 | 5 2686 | 2687 | 2688 | 2689 | 2690 | 239 2691 | 2692 | 2693 | 2694 | 2695 | 23 2696 | 2697 | 2698 | 2699 | 2700 | 295 2701 | 2702 | 2703 | 2704 | 2705 | 2706 | 2707 | 2708 | 296 2709 | 2710 | 2711 | 2712 | 2713 | 2714 | 2715 | 2716 | 2717 | 297 2718 | 2719 | 2720 | 2721 | 2722 | 298 2723 | 2724 | 2725 | 2726 | 2727 | 211 2728 | 2729 | 2730 | 2731 | 2732 | 2733 | 2734 | 2735 | 212 2736 | 2737 | 2738 | 2739 | 2740 | 2741 | 2742 | 2743 | 2744 | 195 2745 | 2746 | 2747 | 2748 | 2749 | 196 2750 | 2751 | 2752 | 2753 | 2754 | 346 2755 | 2756 | 2757 | 2758 | 2759 | 348 2760 | 2761 | 2762 | 2763 | 2764 | 2765 | 2766 | 2767 | 349 2768 | 2769 | 2770 | 2771 | 2772 | 2773 | 2774 | 2775 | 2776 | 2777 | 2778 | 2779 | 2780 | 2781 | 350 2782 | 2783 | 2784 | 2785 | 2786 | 351 2787 | 2788 | 2789 | 2790 | 2791 | 354 2792 | 2793 | 2794 | 2795 | 2796 | 371 2797 | 2798 | 2799 | 2800 | 2801 | 2802 | 2803 | 2804 | 372 2805 | 2806 | 2807 | 2808 | 2809 | 2810 | 2811 | 2812 | 2813 | 2814 | 2815 | 2816 | 2817 | 2818 | 2819 | 2820 | 375 2821 | 2822 | 2823 | 2824 | 2825 | 2826 | 2827 | 2828 | 376 2829 | 2830 | 2831 | 2832 | 2833 | 2834 | 2835 | 2836 | 2837 | 377 2838 | 2839 | 2840 | 2841 | 2842 | 2843 | 2844 | 2845 | 388 2846 | 2847 | 2848 | 2849 | 2850 | 2851 | 2852 | 2853 | 2854 | 2855 | 2856 | 2857 | 2858 | 2859 | 2860 | 2861 | 2862 | 2863 | 2864 | 2865 | 2866 | 2867 | 2868 | 389 2869 | 2870 | 2871 | 2872 | 2873 | 390 2874 | 2875 | 2876 | 2877 | 2878 | 391 2879 | 2880 | 2881 | 2882 | 2883 | 392 2884 | 2885 | 2886 | 2887 | 2888 | 393 2889 | 2890 | 2891 | 2892 | 2893 | 394 2894 | 2895 | 2896 | 2897 | 2898 | 395 2899 | 2900 | 2901 | 2902 | 2903 | 396 2904 | 2905 | 2906 | 2907 | 2908 | 397 2909 | 2910 | 2911 | 2912 | 2913 | 2914 | 2915 | 2916 | 398 2917 | 2918 | 2919 | 2920 | 2921 | 2922 | 2923 | 2924 | 399 2925 | 2926 | 2927 | 2928 | 2929 | 2930 | 2931 | 2932 | 400 2933 | 2934 | 2935 | 2936 | 2937 | 401 2938 | 2939 | 2940 | 2941 | 2942 | 402 2943 | 2944 | 2945 | 2946 | 2947 | 403 2948 | 2949 | 2950 | 2951 | 2952 | 404 2953 | 2954 | 2955 | 2956 | 2957 | 405 2958 | 2959 | 2960 | 2961 | 2962 | 2963 | 2964 | 2965 | 2966 | 2967 | 2968 | 2969 | 406 2970 | 2971 | 2972 | 2973 | 2974 | 407 2975 | 2976 | 2977 | 2978 | 2979 | 408 2980 | 2981 | 2982 | 2983 | 2984 | 409 2985 | 2986 | 2987 | 2988 | 2989 | 410 2990 | 2991 | 2992 | 2993 | 2994 | 411 2995 | 2996 | 2997 | 2998 | 2999 | 3000 | 3001 | 3002 | 3003 | 3004 | 412 3005 | 3006 | 3007 | 3008 | 3009 | 413 3010 | 3011 | 3012 | 3013 | 3014 | 414 3015 | 3016 | 3017 | 3018 | 3019 | 415 3020 | 3021 | 3022 | 3023 | 3024 | 3025 | 3026 | 3027 | 3028 | 3029 | 3030 | 416 3031 | 3032 | 3033 | 3034 | 3035 | 417 3036 | 3037 | 3038 | 3039 | 3040 | 418 3041 | 3042 | 3043 | 3044 | 3045 | 419 3046 | 3047 | 3048 | 3049 | 3050 | 420 3051 | 3052 | 3053 | 3054 | 3055 | 450 3056 | 3057 | 3058 | 3059 | 3060 | 3061 | 3062 | 3063 | 451 3064 | 3065 | 3066 | 3067 | 3068 | 3069 | 3070 | 3071 | 3072 | 3073 | 452 3074 | 3075 | 3076 | 3077 | 3078 | 453 3079 | 3080 | 3081 | 3082 | 3083 | 454 3084 | 3085 | 3086 | 3087 | 3088 | 457 3089 | 3090 | 3091 | 3092 | 3093 | 459 3094 | 3095 | 3096 | 3097 | 3098 | 460 3099 | 3100 | 3101 | 3102 | 3103 | 462 3104 | 3105 | 3106 | 3107 | 3108 | 465 3109 | 3110 | 3111 | 3112 | 3113 | 466 3114 | 3115 | 3116 | 3117 | 3118 | 485 3119 | 3120 | 3121 | 3122 | 3123 | 490 3124 | 3125 | 3126 | 3127 | 3128 | 3129 | 3130 | 3131 | 491 3132 | 3133 | 3134 | 3135 | 3136 | 3137 | 3138 | 3139 | 492 3140 | 3141 | 3142 | 3143 | 3144 | 494 3145 | 3146 | 3147 | 3148 | 3149 | 496 3150 | 3151 | 3152 | 3153 | 3154 | 3155 | 3156 | 3157 | 497 3158 | 3159 | 3160 | 3161 | 3162 | 3163 | 3164 | 3165 | 3166 | 3167 | 3168 | 3169 | 3170 | 3171 | 3172 | 3173 | 3174 | 498 3175 | 3176 | 3177 | 3178 | 3179 | 499 3180 | 3181 | 3182 | 3183 | 3184 | 500 3185 | 3186 | 3187 | 3188 | 3189 | 501 3190 | 3191 | 3192 | 3193 | 3194 | 502 3195 | 3196 | 3197 | 3198 | 3199 | 503 3200 | 3201 | 3202 | 3203 | 3204 | 3205 | 3206 | 3207 | 504 3208 | 3209 | 3210 | 3211 | 3212 | 505 3213 | 3214 | 3215 | 3216 | 3217 | 506 3218 | 3219 | 3220 | 3221 | 3222 | 507 3223 | 3224 | 3225 | 3226 | 3227 | 508 3228 | 3229 | 3230 | 3231 | 3232 | 3233 | 3234 | 3235 | 3236 | 3237 | 3238 | 3239 | 3240 | 3241 | 3242 | 3243 | 509 3244 | 3245 | 3246 | 3247 | 3248 | 510 3249 | 3250 | 3251 | 3252 | 3253 | 511 3254 | 3255 | 3256 | 3257 | 3258 | 512 3259 | 3260 | 3261 | 3262 | 3263 | 513 3264 | 3265 | 3266 | 3267 | 3268 | 514 3269 | 3270 | 3271 | 3272 | 3273 | 515 3274 | 3275 | 3276 | 3277 | 3278 | 516 3279 | 3280 | 3281 | 3282 | 3283 | 517 3284 | 3285 | 3286 | 3287 | 3288 | 534 3289 | 3290 | 3291 | 3292 | 3293 | 536 3294 | 3295 | 3296 | 3297 | 3298 | 3299 | 3300 | 3301 | 537 3302 | 3303 | 3304 | 3305 | 3306 | 538 3307 | 3308 | 3309 | 3310 | 3311 | 3312 | 3313 | 3314 | 539 3315 | 3316 | 3317 | 3318 | 3319 | 540 3320 | 3321 | 3322 | 3323 | 3324 | 3325 | 3326 | 3327 | 541 3328 | 3329 | 3330 | 3331 | 3332 | 542 3333 | 3334 | 3335 | 3336 | 3337 | 3338 | 3339 | 3340 | 543 3341 | 3342 | 3343 | 3344 | 3345 | 544 3346 | 3347 | 3348 | 3349 | 3350 | 3351 | 3352 | 3353 | 545 3354 | 3355 | 3356 | 3357 | 3358 | 546 3359 | 3360 | 3361 | 3362 | 3363 | 3364 | 3365 | 3366 | 547 3367 | 3368 | 3369 | 3370 | 3371 | 554 3372 | 3373 | 3374 | 3375 | 3376 | 3377 | 3378 | 3379 | 555 3380 | 3381 | 3382 | 3383 | 3384 | 562 3385 | 3386 | 3387 | 3388 | 3389 | 3390 | 3391 | 3392 | 563 3393 | 3394 | 3395 | 3396 | 3397 | 565 3398 | 3399 | 3400 | 3401 | 3402 | 3403 | 3404 | 3405 | 566 3406 | 3407 | 3408 | 3409 | 3410 | 3411 | 3412 | com.apple.InterfaceBuilder.CocoaPlugin 3413 | com.apple.InterfaceBuilder.CocoaPlugin 3414 | com.apple.InterfaceBuilder.CocoaPlugin 3415 | com.apple.InterfaceBuilder.CocoaPlugin 3416 | com.apple.InterfaceBuilder.CocoaPlugin 3417 | com.apple.InterfaceBuilder.CocoaPlugin 3418 | com.apple.InterfaceBuilder.CocoaPlugin 3419 | com.apple.InterfaceBuilder.CocoaPlugin 3420 | com.apple.InterfaceBuilder.CocoaPlugin 3421 | com.apple.InterfaceBuilder.CocoaPlugin 3422 | com.apple.InterfaceBuilder.CocoaPlugin 3423 | com.apple.InterfaceBuilder.CocoaPlugin 3424 | com.apple.InterfaceBuilder.CocoaPlugin 3425 | com.apple.InterfaceBuilder.CocoaPlugin 3426 | com.apple.InterfaceBuilder.CocoaPlugin 3427 | com.apple.InterfaceBuilder.CocoaPlugin 3428 | com.apple.InterfaceBuilder.CocoaPlugin 3429 | com.apple.InterfaceBuilder.CocoaPlugin 3430 | com.apple.InterfaceBuilder.CocoaPlugin 3431 | com.apple.InterfaceBuilder.CocoaPlugin 3432 | com.apple.InterfaceBuilder.CocoaPlugin 3433 | com.apple.InterfaceBuilder.CocoaPlugin 3434 | com.apple.InterfaceBuilder.CocoaPlugin 3435 | com.apple.InterfaceBuilder.CocoaPlugin 3436 | com.apple.InterfaceBuilder.CocoaPlugin 3437 | com.apple.InterfaceBuilder.CocoaPlugin 3438 | com.apple.InterfaceBuilder.CocoaPlugin 3439 | com.apple.InterfaceBuilder.CocoaPlugin 3440 | com.apple.InterfaceBuilder.CocoaPlugin 3441 | com.apple.InterfaceBuilder.CocoaPlugin 3442 | com.apple.InterfaceBuilder.CocoaPlugin 3443 | com.apple.InterfaceBuilder.CocoaPlugin 3444 | com.apple.InterfaceBuilder.CocoaPlugin 3445 | com.apple.InterfaceBuilder.CocoaPlugin 3446 | com.apple.InterfaceBuilder.CocoaPlugin 3447 | com.apple.InterfaceBuilder.CocoaPlugin 3448 | com.apple.InterfaceBuilder.CocoaPlugin 3449 | com.apple.InterfaceBuilder.CocoaPlugin 3450 | com.apple.InterfaceBuilder.CocoaPlugin 3451 | com.apple.InterfaceBuilder.CocoaPlugin 3452 | com.apple.InterfaceBuilder.CocoaPlugin 3453 | com.apple.InterfaceBuilder.CocoaPlugin 3454 | com.apple.InterfaceBuilder.CocoaPlugin 3455 | com.apple.InterfaceBuilder.CocoaPlugin 3456 | com.apple.InterfaceBuilder.CocoaPlugin 3457 | com.apple.InterfaceBuilder.CocoaPlugin 3458 | com.apple.InterfaceBuilder.CocoaPlugin 3459 | com.apple.InterfaceBuilder.CocoaPlugin 3460 | com.apple.InterfaceBuilder.CocoaPlugin 3461 | com.apple.InterfaceBuilder.CocoaPlugin 3462 | com.apple.InterfaceBuilder.CocoaPlugin 3463 | com.apple.InterfaceBuilder.CocoaPlugin 3464 | com.apple.InterfaceBuilder.CocoaPlugin 3465 | com.apple.InterfaceBuilder.CocoaPlugin 3466 | com.apple.InterfaceBuilder.CocoaPlugin 3467 | com.apple.InterfaceBuilder.CocoaPlugin 3468 | com.apple.InterfaceBuilder.CocoaPlugin 3469 | com.apple.InterfaceBuilder.CocoaPlugin 3470 | com.apple.InterfaceBuilder.CocoaPlugin 3471 | com.apple.InterfaceBuilder.CocoaPlugin 3472 | com.apple.InterfaceBuilder.CocoaPlugin 3473 | {{380, 496}, {480, 360}} 3474 | 3475 | com.apple.InterfaceBuilder.CocoaPlugin 3476 | com.apple.InterfaceBuilder.CocoaPlugin 3477 | com.apple.InterfaceBuilder.CocoaPlugin 3478 | com.apple.InterfaceBuilder.CocoaPlugin 3479 | com.apple.InterfaceBuilder.CocoaPlugin 3480 | com.apple.InterfaceBuilder.CocoaPlugin 3481 | com.apple.InterfaceBuilder.CocoaPlugin 3482 | com.apple.InterfaceBuilder.CocoaPlugin 3483 | com.apple.InterfaceBuilder.CocoaPlugin 3484 | com.apple.InterfaceBuilder.CocoaPlugin 3485 | com.apple.InterfaceBuilder.CocoaPlugin 3486 | com.apple.InterfaceBuilder.CocoaPlugin 3487 | com.apple.InterfaceBuilder.CocoaPlugin 3488 | com.apple.InterfaceBuilder.CocoaPlugin 3489 | com.apple.InterfaceBuilder.CocoaPlugin 3490 | com.apple.InterfaceBuilder.CocoaPlugin 3491 | com.apple.InterfaceBuilder.CocoaPlugin 3492 | com.apple.InterfaceBuilder.CocoaPlugin 3493 | com.apple.InterfaceBuilder.CocoaPlugin 3494 | com.apple.InterfaceBuilder.CocoaPlugin 3495 | com.apple.InterfaceBuilder.CocoaPlugin 3496 | com.apple.InterfaceBuilder.CocoaPlugin 3497 | com.apple.InterfaceBuilder.CocoaPlugin 3498 | com.apple.InterfaceBuilder.CocoaPlugin 3499 | com.apple.InterfaceBuilder.CocoaPlugin 3500 | com.apple.InterfaceBuilder.CocoaPlugin 3501 | com.apple.InterfaceBuilder.CocoaPlugin 3502 | com.apple.InterfaceBuilder.CocoaPlugin 3503 | com.apple.InterfaceBuilder.CocoaPlugin 3504 | com.apple.InterfaceBuilder.CocoaPlugin 3505 | com.apple.InterfaceBuilder.CocoaPlugin 3506 | com.apple.InterfaceBuilder.CocoaPlugin 3507 | com.apple.InterfaceBuilder.CocoaPlugin 3508 | com.apple.InterfaceBuilder.CocoaPlugin 3509 | com.apple.InterfaceBuilder.CocoaPlugin 3510 | com.apple.InterfaceBuilder.CocoaPlugin 3511 | com.apple.InterfaceBuilder.CocoaPlugin 3512 | com.apple.InterfaceBuilder.CocoaPlugin 3513 | com.apple.InterfaceBuilder.CocoaPlugin 3514 | com.apple.InterfaceBuilder.CocoaPlugin 3515 | com.apple.InterfaceBuilder.CocoaPlugin 3516 | com.apple.InterfaceBuilder.CocoaPlugin 3517 | com.apple.InterfaceBuilder.CocoaPlugin 3518 | com.apple.InterfaceBuilder.CocoaPlugin 3519 | com.apple.InterfaceBuilder.CocoaPlugin 3520 | com.apple.InterfaceBuilder.CocoaPlugin 3521 | com.apple.InterfaceBuilder.CocoaPlugin 3522 | com.apple.InterfaceBuilder.CocoaPlugin 3523 | com.apple.InterfaceBuilder.CocoaPlugin 3524 | com.apple.InterfaceBuilder.CocoaPlugin 3525 | com.apple.InterfaceBuilder.CocoaPlugin 3526 | com.apple.InterfaceBuilder.CocoaPlugin 3527 | com.apple.InterfaceBuilder.CocoaPlugin 3528 | com.apple.InterfaceBuilder.CocoaPlugin 3529 | com.apple.InterfaceBuilder.CocoaPlugin 3530 | com.apple.InterfaceBuilder.CocoaPlugin 3531 | com.apple.InterfaceBuilder.CocoaPlugin 3532 | com.apple.InterfaceBuilder.CocoaPlugin 3533 | com.apple.InterfaceBuilder.CocoaPlugin 3534 | com.apple.InterfaceBuilder.CocoaPlugin 3535 | com.apple.InterfaceBuilder.CocoaPlugin 3536 | com.apple.InterfaceBuilder.CocoaPlugin 3537 | com.apple.InterfaceBuilder.CocoaPlugin 3538 | com.apple.InterfaceBuilder.CocoaPlugin 3539 | com.apple.InterfaceBuilder.CocoaPlugin 3540 | com.apple.InterfaceBuilder.CocoaPlugin 3541 | com.apple.InterfaceBuilder.CocoaPlugin 3542 | com.apple.InterfaceBuilder.CocoaPlugin 3543 | com.apple.InterfaceBuilder.CocoaPlugin 3544 | com.apple.InterfaceBuilder.CocoaPlugin 3545 | com.apple.InterfaceBuilder.CocoaPlugin 3546 | com.apple.InterfaceBuilder.CocoaPlugin 3547 | com.apple.InterfaceBuilder.CocoaPlugin 3548 | com.apple.InterfaceBuilder.CocoaPlugin 3549 | com.apple.InterfaceBuilder.CocoaPlugin 3550 | com.apple.InterfaceBuilder.CocoaPlugin 3551 | com.apple.InterfaceBuilder.CocoaPlugin 3552 | com.apple.InterfaceBuilder.CocoaPlugin 3553 | com.apple.InterfaceBuilder.CocoaPlugin 3554 | com.apple.InterfaceBuilder.CocoaPlugin 3555 | com.apple.InterfaceBuilder.CocoaPlugin 3556 | com.apple.InterfaceBuilder.CocoaPlugin 3557 | com.apple.InterfaceBuilder.CocoaPlugin 3558 | com.apple.InterfaceBuilder.CocoaPlugin 3559 | com.apple.InterfaceBuilder.CocoaPlugin 3560 | com.apple.InterfaceBuilder.CocoaPlugin 3561 | com.apple.InterfaceBuilder.CocoaPlugin 3562 | com.apple.InterfaceBuilder.CocoaPlugin 3563 | com.apple.InterfaceBuilder.CocoaPlugin 3564 | com.apple.InterfaceBuilder.CocoaPlugin 3565 | com.apple.InterfaceBuilder.CocoaPlugin 3566 | com.apple.InterfaceBuilder.CocoaPlugin 3567 | com.apple.InterfaceBuilder.CocoaPlugin 3568 | com.apple.InterfaceBuilder.CocoaPlugin 3569 | com.apple.InterfaceBuilder.CocoaPlugin 3570 | com.apple.InterfaceBuilder.CocoaPlugin 3571 | com.apple.InterfaceBuilder.CocoaPlugin 3572 | com.apple.InterfaceBuilder.CocoaPlugin 3573 | com.apple.InterfaceBuilder.CocoaPlugin 3574 | com.apple.InterfaceBuilder.CocoaPlugin 3575 | com.apple.InterfaceBuilder.CocoaPlugin 3576 | com.apple.InterfaceBuilder.CocoaPlugin 3577 | com.apple.InterfaceBuilder.CocoaPlugin 3578 | com.apple.InterfaceBuilder.CocoaPlugin 3579 | com.apple.InterfaceBuilder.CocoaPlugin 3580 | com.apple.InterfaceBuilder.CocoaPlugin 3581 | com.apple.InterfaceBuilder.CocoaPlugin 3582 | com.apple.InterfaceBuilder.CocoaPlugin 3583 | com.apple.InterfaceBuilder.CocoaPlugin 3584 | 3585 | 3586 | 3587 | 3588 | 3589 | 567 3590 | 3591 | 3592 | 3593 | 3594 | AppDelegate 3595 | NSObject 3596 | 3597 | sendAction: 3598 | id 3599 | 3600 | 3601 | sendAction: 3602 | 3603 | sendAction: 3604 | id 3605 | 3606 | 3607 | 3608 | NSTextField 3609 | NSTextField 3610 | NSTextField 3611 | NSButton 3612 | NSTextField 3613 | NSWindow 3614 | 3615 | 3616 | 3617 | method 3618 | NSTextField 3619 | 3620 | 3621 | params 3622 | NSTextField 3623 | 3624 | 3625 | response 3626 | NSTextField 3627 | 3628 | 3629 | submitButton 3630 | NSButton 3631 | 3632 | 3633 | urlField 3634 | NSTextField 3635 | 3636 | 3637 | window 3638 | NSWindow 3639 | 3640 | 3641 | 3642 | IBProjectSource 3643 | ./Classes/AppDelegate.h 3644 | 3645 | 3646 | 3647 | NSDocument 3648 | 3649 | id 3650 | id 3651 | id 3652 | id 3653 | id 3654 | id 3655 | 3656 | 3657 | 3658 | printDocument: 3659 | id 3660 | 3661 | 3662 | revertDocumentToSaved: 3663 | id 3664 | 3665 | 3666 | runPageLayout: 3667 | id 3668 | 3669 | 3670 | saveDocument: 3671 | id 3672 | 3673 | 3674 | saveDocumentAs: 3675 | id 3676 | 3677 | 3678 | saveDocumentTo: 3679 | id 3680 | 3681 | 3682 | 3683 | IBProjectSource 3684 | ./Classes/NSDocument.h 3685 | 3686 | 3687 | 3688 | 3689 | 0 3690 | IBCocoaFramework 3691 | YES 3692 | 3 3693 | 3694 | {9, 8} 3695 | {7, 2} 3696 | 3697 | 3698 | 3699 | -------------------------------------------------------------------------------- /JSONRPC Tester/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // JSONRPC Tester 4 | // 5 | // Created by Mladjan Antic on 11/14/11. 6 | // Copyright (c) 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | JSONRPC Tester is a simple osx app for testing JSONRPC Web services. 2 | ![Add Submodule](http://f.cl.ly/items/3y2M0x2B0F2w3u2d391s/Screen%20Shot%202011-12-11%20at%205.47.35%20PM.png) 3 | 4 | It's free for commercial and non-comercial use. 5 | 6 | Author: 7 | Mladjan Antic 8 | @mladjan_antic 9 | mladjanantic.com --------------------------------------------------------------------------------