rhoconnect-client 5.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +9 -0
- data/CREDITS +0 -0
- data/LICENSE +9 -0
- data/README.md +47 -0
- data/ext/rhoconnect-client/RhoConnectClient.rb +190 -0
- data/ext/rhoconnect-client/ext/RhoConnectClient.xml +726 -0
- data/ext/rhoconnect-client/ext/build +26 -0
- data/ext/rhoconnect-client/ext/build.bat +30 -0
- data/ext/rhoconnect-client/ext/platform/android/ext_java.files +1 -0
- data/ext/rhoconnect-client/ext/platform/android/ext_native.files +14 -0
- data/ext/rhoconnect-client/ext/platform/android/src/com/rhoconnectclient/RhoconnectClient.java +1 -0
- data/ext/rhoconnect-client/ext/platform/iphone/.gitignore +1 -0
- data/ext/rhoconnect-client/ext/platform/iphone/Rakefile +74 -0
- data/ext/rhoconnect-client/ext/platform/iphone/RhoconnectClient.xcodeproj/project.pbxproj +390 -0
- data/ext/rhoconnect-client/ext/platform/iphone/RhoconnectClient_Prefix.pch +7 -0
- data/ext/rhoconnect-client/ext/platform/iphone/impl/readme.txt +7 -0
- data/ext/rhoconnect-client/ext/platform/qt/Rakefile +35 -0
- data/ext/rhoconnect-client/ext/platform/qt/rhoconnect-client.pro +88 -0
- data/ext/rhoconnect-client/ext/platform/wm/Rhoconnect-client.sln +36 -0
- data/ext/rhoconnect-client/ext/platform/wm/Rhoconnect-client.vcproj +774 -0
- data/ext/rhoconnect-client/ext/platform/wm/Rhoconnect-client.vsprops +15 -0
- data/ext/rhoconnect-client/ext/platform/wm/src/rhoconnectclient_wm.cpp +40 -0
- data/ext/rhoconnect-client/ext/platform/wm/src/rhoconnectclient_wm.h +2 -0
- data/ext/rhoconnect-client/ext/platform/wp8/Rhoconnect-client.props +22 -0
- data/ext/rhoconnect-client/ext/platform/wp8/Rhoconnect-client.sln +32 -0
- data/ext/rhoconnect-client/ext/platform/wp8/Rhoconnect-client.vcxproj +220 -0
- data/ext/rhoconnect-client/ext/platform/wp8/Rhoconnect-client.vcxproj.filters +103 -0
- data/ext/rhoconnect-client/ext/shared/RhoConnectClientImpl.cpp +273 -0
- data/ext/rhoconnect-client/ext/shared/RhoConnectClientImpl.h +60 -0
- data/ext/rhoconnect-client/ext/shared/RhoConnectClientSingletonImpl.h +53 -0
- data/ext/rhoconnect-client/ext/shared/initRhoconnectClient.cpp +207 -0
- data/ext/rhoconnect-client/ext/shared/rhoconnectclient.c +18 -0
- data/ext/rhoconnect-client/ext/shared/sync/ClientRegister.cpp +398 -0
- data/ext/rhoconnect-client/ext/shared/sync/ClientRegister.h +147 -0
- data/ext/rhoconnect-client/ext/shared/sync/ISyncProtocol.h +91 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncEngine.cpp +1245 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncEngine.h +213 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncNotify.cpp +737 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncNotify.h +209 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncProtocol_3.h +220 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncProtocol_4.h +259 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncSource.cpp +1694 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncSource.h +212 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncThread.cpp +583 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncThread.h +250 -0
- data/ext/rhoconnect-client/ext.yml +12 -0
- data/lib/build/run_rhoconnect_spec.rb +135 -0
- data/lib/rhoconnect-client.rb +3 -0
- data/platform/shared/RhoConnectClient/RhoConnectClient.cpp +1673 -0
- data/platform/shared/RhoConnectClient/RhoConnectClient.h +181 -0
- data/platform/shared/RhoConnectClient/RhoError.h +77 -0
- data/rhoconnect-client/C++/Tests/RhoConnectClientTest.cpp +830 -0
- data/rhoconnect-client/C++/Tests/win32/.gitignore +3 -0
- data/rhoconnect-client/C++/Tests/win32/RhoConnectClient.sln +65 -0
- data/rhoconnect-client/C++/Tests/win32/RhoConnectClient.vcproj +634 -0
- data/rhoconnect-client/C++/Tests/win32/RhoConnectClientTest/RhoConnectClientTest.vcproj +222 -0
- data/rhoconnect-client/C++/Tests/win32/RhoConnectClientTest/stdafx.h +65 -0
- data/rhoconnect-client/C++/Tests/win32/stdafx.h +65 -0
- data/rhoconnect-client/CHANGELOG +18 -0
- data/rhoconnect-client/Java/Android/build/android.rake +387 -0
- data/rhoconnect-client/Java/Android/build/android_sdk.rb +582 -0
- data/rhoconnect-client/Java/Android/build/libcurl_build.files +73 -0
- data/rhoconnect-client/Java/Android/build/libjson_build.files +9 -0
- data/rhoconnect-client/Java/Android/build/librhocommon_build.files +14 -0
- data/rhoconnect-client/Java/Android/build/librhodb_build.files +5 -0
- data/rhoconnect-client/Java/Android/build/librhoimpl_build.files +13 -0
- data/rhoconnect-client/Java/Android/build/librholog_build.files +4 -0
- data/rhoconnect-client/Java/Android/build/libsqlite_build.files +1 -0
- data/rhoconnect-client/Java/Android/build/libsync_build.files +7 -0
- data/rhoconnect-client/Java/Android/build/libunzip_build.files +1 -0
- data/rhoconnect-client/Java/Android/build/rhoconnectclient_build.files +3 -0
- data/rhoconnect-client/Java/Android/build/rhoimpljava_build.files +21 -0
- data/rhoconnect-client/Java/Android/src/com/rhomobile/rhodes/Capabilities.java +63 -0
- data/rhoconnect-client/Java/Android/src/com/rhomobile/rhodes/MemoryInfoCollector.java +79 -0
- data/rhoconnect-client/Java/Android/src/com/rhomobile/rhodes/util/ContextFactory.java +63 -0
- data/rhoconnect-client/Java/Android/test/.classpath +9 -0
- data/rhoconnect-client/Java/Android/test/.project +33 -0
- data/rhoconnect-client/Java/Android/test/AndroidManifest.xml +14 -0
- data/rhoconnect-client/Java/Android/test/assets/apps/androidtest.png +0 -0
- data/rhoconnect-client/Java/Android/test/assets/apps/rhoconfig.txt +19 -0
- data/rhoconnect-client/Java/Android/test/assets/apps/rhoconfig.txt.timestamp +1 -0
- data/rhoconnect-client/Java/Android/test/assets/db/syncdb.schema +44 -0
- data/rhoconnect-client/Java/Android/test/assets/db/syncdb.triggers +10 -0
- data/rhoconnect-client/Java/Android/test/assets/db/syncdb_java.triggers +21 -0
- data/rhoconnect-client/Java/Android/test/assets/rho.dat +9 -0
- data/rhoconnect-client/Java/Android/test/proguard.cfg +36 -0
- data/rhoconnect-client/Java/Android/test/project.properties +11 -0
- data/rhoconnect-client/Java/Android/test/res/drawable-hdpi/icon.png +0 -0
- data/rhoconnect-client/Java/Android/test/res/drawable-ldpi/icon.png +0 -0
- data/rhoconnect-client/Java/Android/test/res/drawable-mdpi/icon.png +0 -0
- data/rhoconnect-client/Java/Android/test/res/layout/main.xml +12 -0
- data/rhoconnect-client/Java/Android/test/res/values/strings.xml +5 -0
- data/rhoconnect-client/Java/Android/test/rhoimpl.jar +0 -0
- data/rhoconnect-client/Java/Android/test/src/com/rhomobile/rhoconnect_client_test/TestRhoConnectClient.java +343 -0
- data/rhoconnect-client/Java/Android/test/src/com/rhomobile/rhoconnect_client_test/TestRhoConnectClientBlobs.java +219 -0
- data/rhoconnect-client/Java/RhoConnect/.classpath +6 -0
- data/rhoconnect-client/Java/RhoConnect/.project +93 -0
- data/rhoconnect-client/Java/RhoConnect/assets/apps/rhoconfig.txt +19 -0
- data/rhoconnect-client/Java/RhoConnect/assets/apps/rhoconfig.txt.timestamp +1 -0
- data/rhoconnect-client/Java/RhoConnect/assets/db/syncdb.schema +44 -0
- data/rhoconnect-client/Java/RhoConnect/assets/db/syncdb.triggers +10 -0
- data/rhoconnect-client/Java/RhoConnect/assets/db/syncdb_java.triggers +21 -0
- data/rhoconnect-client/Java/RhoConnect/assets/rho.dat +8 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/RhoConnectJniNotify.h +61 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/com_rhomobile_rhoconnect_RhoConnectClient.h +181 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/com_rhomobile_rhoconnect_RhoConnectNotify.h +13 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/com_rhomobile_rhoconnect_RhoConnectNotify_IDelegate.h +13 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/com_rhomobile_rhoconnect_RhoConnectObjectNotify.h +13 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/com_rhomobile_rhoconnect_RhoConnectObjectNotify_IDelegate.h +13 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/com_rhomobile_rhoconnect_RhomModel.h +103 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/rhojava.inc +76 -0
- data/rhoconnect-client/Java/RhoConnect/jni/src/RhoConnectJniClient.cpp +401 -0
- data/rhoconnect-client/Java/RhoConnect/jni/src/RhoConnectJniModel.cpp +332 -0
- data/rhoconnect-client/Java/RhoConnect/jni/src/RhoConnectJniNotify.cpp +223 -0
- data/rhoconnect-client/Java/RhoConnect/jni/src/RhoConnectUtil.cpp +82 -0
- data/rhoconnect-client/Java/RhoConnect/jni/src/RhodesApp.cpp +114 -0
- data/rhoconnect-client/Java/RhoConnect/src/com/rhomobile/rhoconnect/RhoConnectClient.java +108 -0
- data/rhoconnect-client/Java/RhoConnect/src/com/rhomobile/rhoconnect/RhoConnectNotify.java +78 -0
- data/rhoconnect-client/Java/RhoConnect/src/com/rhomobile/rhoconnect/RhoConnectObjectNotify.java +71 -0
- data/rhoconnect-client/Java/RhoConnect/src/com/rhomobile/rhoconnect/RhomModel.java +195 -0
- data/rhoconnect-client/JavaScript/.classpath +10 -0
- data/rhoconnect-client/JavaScript/.gitignore +4 -0
- data/rhoconnect-client/JavaScript/.project +17 -0
- data/rhoconnect-client/JavaScript/README.textile +1 -0
- data/rhoconnect-client/JavaScript/build.xml +185 -0
- data/rhoconnect-client/JavaScript/doc/fsm-sample.js +44 -0
- data/rhoconnect-client/JavaScript/doc/fsm-sample.png +0 -0
- data/rhoconnect-client/JavaScript/src/RhoSyncJS.gwt.xml +21 -0
- data/rhoconnect-client/JavaScript/stubs/RhoSyncStubsJS.gwt.xml +21 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/Capabilities.java +7 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/IRhoRubyHelper.java +7 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/Mutex.java +5 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhoAppAdapter.java +39 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhoClassFactory.java +29 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhoConf.java +100 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhoEmptyLogger.java +7 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhoEmptyProfiler.java +5 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhoLogger.java +32 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhoProfiler.java +27 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhodesApp.java +25 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/TimeInterval.java +22 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/Tokenizer.java +23 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/db/DBAdapter.java +174 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/db/DBAttrManager.java +15 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/db/DBException.java +5 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/db/IDBResult.java +27 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/file/IFileAccess.java +7 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/file/SimpleFile.java +15 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/net/IHttpConnection.java +22 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/net/NetRequest.java +324 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/net/NetResponse.java +51 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/net/URI.java +64 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/sync/ClientRegister.java +15 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/sync/JSONArrayIterator.java +37 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/sync/JSONEntry.java +48 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/sync/JSONStructIterator.java +41 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/sync/SyncNotify.java +98 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/sync/SyncThread.java +92 -0
- data/rhoconnect-client/JavaScript/war/WEB-INF/lib/gwt-servlet-deps.jar +0 -0
- data/rhoconnect-client/JavaScript/war/WEB-INF/lib/gwt-servlet.jar +0 -0
- data/rhoconnect-client/JavaScript/war/js/fsm-sample.js +54 -0
- data/rhoconnect-client/JavaScript/war/js/rhosync-api.js +237 -0
- data/rhoconnect-client/JavaScript/war/js/rhosync-fsm.js +307 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/4C71D69C9BBC9E6F05C6BA49B01BCBC1.cache.html +3122 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/5146F4FFF34511C8BB2661E920B49E3A.cache.html +3254 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/5248C67481D9D27AD0703D15CDBD2A1C.cache.html +3147 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/EE1DC2692C9C32367B53A39E2358AF23.cache.html +3195 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/clear.cache.gif +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/corner.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/corner_ie6.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/hborder.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/hborder_ie6.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/ie6/corner_dialog_topleft.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/ie6/corner_dialog_topright.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/ie6/hborder_blue_shadow.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/ie6/hborder_gray_shadow.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/ie6/vborder_blue_shadow.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/ie6/vborder_gray_shadow.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/splitPanelThumb.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/vborder.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/vborder_ie6.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/standard.css +1144 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/standard_rtl.css +1145 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/hosted.html +350 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/rhosyncjs.nocache.js +314 -0
- data/rhoconnect-client/JavaScript/war/test/SpecRunner.html +35 -0
- data/rhoconnect-client/JavaScript/war/test/dbtest.html +38 -0
- data/rhoconnect-client/JavaScript/war/test/lib/jasmine-1.0.1/MIT.LICENSE +20 -0
- data/rhoconnect-client/JavaScript/war/test/lib/jasmine-1.0.1/jasmine-html.js +188 -0
- data/rhoconnect-client/JavaScript/war/test/lib/jasmine-1.0.1/jasmine.css +166 -0
- data/rhoconnect-client/JavaScript/war/test/lib/jasmine-1.0.1/jasmine.js +2421 -0
- data/rhoconnect-client/JavaScript/war/test/spec/SpecHelper.js +7 -0
- data/rhoconnect-client/JavaScript/war/test/spec/SyncApiSpec.js +573 -0
- data/rhoconnect-client/JavaScript/war/test/spec/samples/PlayerSpec.js +58 -0
- data/rhoconnect-client/JavaScript/war/test/worker-test.js +17 -0
- data/rhoconnect-client/LICENSE +41 -0
- data/rhoconnect-client/ObjectiveC/RhoConnectClient.h +118 -0
- data/rhoconnect-client/ObjectiveC/RhoConnectClient.m +641 -0
- data/rhoconnect-client/ObjectiveC/RhoConnectClient.xcodeproj/project.pbxproj +1434 -0
- data/rhoconnect-client/ObjectiveC/RhoConnectNotify.h +83 -0
- data/rhoconnect-client/ObjectiveC/RhoConnectNotify.m +181 -0
- data/rhoconnect-client/ObjectiveC/RhoConnectObjectNotify.h +65 -0
- data/rhoconnect-client/ObjectiveC/RhoConnectObjectNotify.m +73 -0
- data/rhoconnect-client/ObjectiveC/RhomModel.h +101 -0
- data/rhoconnect-client/ObjectiveC/RhomModel.m +320 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/MainWindow.xib +198 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/RhoConnectClientTest-Info.plist +30 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/RhoConnectClientTest.xcodeproj/project.pbxproj +373 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/RhoConnectClientTestAppDelegate.h +58 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/RhoConnectClientTestAppDelegate.m +84 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/RhoConnectClientTest_Prefix.pch +8 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/invalid_import_db.zip +0 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/main.m +1096 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/test.png +0 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/test2.png +0 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/valid_import_db.zip +0 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/Classes/ptestsAppDelegate.h +62 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/Classes/ptestsAppDelegate.m +35 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/Classes/ptestsViewController.h +78 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/Classes/ptestsViewController.m +549 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/MainWindow.xib +227 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/main.m +17 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/ptests-Info.plist +30 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/ptests.xcodeproj/project.pbxproj +363 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/ptestsViewController.xib +641 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/ptests_Prefix.pch +8 -0
- data/rhoconnect-client/README.textile +23 -0
- data/rhoconnect-client/Rakefile +20 -0
- data/rhoconnect-client/Samples/Java/android_store/.classpath +8 -0
- data/rhoconnect-client/Samples/Java/android_store/.project +33 -0
- data/rhoconnect-client/Samples/Java/android_store/AndroidManifest.xml +24 -0
- data/rhoconnect-client/Samples/Java/android_store/assets/apps/rhoconfig.txt +19 -0
- data/rhoconnect-client/Samples/Java/android_store/assets/apps/rhoconfig.txt.timestamp +1 -0
- data/rhoconnect-client/Samples/Java/android_store/assets/db/syncdb.schema +44 -0
- data/rhoconnect-client/Samples/Java/android_store/assets/db/syncdb.triggers +10 -0
- data/rhoconnect-client/Samples/Java/android_store/assets/db/syncdb_java.triggers +21 -0
- data/rhoconnect-client/Samples/Java/android_store/assets/rho.dat +8 -0
- data/rhoconnect-client/Samples/Java/android_store/default.properties +11 -0
- data/rhoconnect-client/Samples/Java/android_store/project.properties +14 -0
- data/rhoconnect-client/Samples/Java/android_store/res/drawable-hdpi/icon.png +0 -0
- data/rhoconnect-client/Samples/Java/android_store/res/drawable-ldpi/icon.png +0 -0
- data/rhoconnect-client/Samples/Java/android_store/res/drawable-mdpi/icon.png +0 -0
- data/rhoconnect-client/Samples/Java/android_store/res/layout/main.xml +12 -0
- data/rhoconnect-client/Samples/Java/android_store/res/values/strings.xml +5 -0
- data/rhoconnect-client/Samples/Java/android_store/rhoimpl.jar +0 -0
- data/rhoconnect-client/Samples/Java/android_store/src/com/rhomobile/android_store/StoreActivity.java +68 -0
- data/rhoconnect-client/Samples/Java/android_store/src/com/rhomobile/android_store/StoreApplication.java +15 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/LoginViewController.h +70 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/LoginViewController.m +94 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/RhoConnectEngine.h +82 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/RhoConnectEngine.m +119 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/RootViewController.h +63 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/RootViewController.m +314 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/WaitLoginController.h +65 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/WaitLoginController.m +110 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/storeAppDelegate.h +61 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/storeAppDelegate.m +171 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/LoginViewController.xib +779 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/MainWindow.xib +580 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/RootViewController.xib +384 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/WaitLoginController.xib +557 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/icon.png +0 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/main.m +22 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/store-Info.plist +30 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/store.xcodeproj/project.pbxproj +367 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/store_Prefix.pch +14 -0
- data/rhoconnect-client/build.yml +3 -0
- data/rhoconnect-client/version +1 -0
- metadata +314 -0
@@ -0,0 +1,1434 @@
|
|
1
|
+
// !$*UTF8*$!
|
2
|
+
{
|
3
|
+
archiveVersion = 1;
|
4
|
+
classes = {
|
5
|
+
};
|
6
|
+
objectVersion = 45;
|
7
|
+
objects = {
|
8
|
+
|
9
|
+
/* Begin PBXBuildFile section */
|
10
|
+
5C40D1F012282E4D007298DA /* RhomModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C40D1EA12282E4D007298DA /* RhomModel.h */; };
|
11
|
+
5C40D1F112282E4D007298DA /* RhomModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C40D1EB12282E4D007298DA /* RhomModel.m */; };
|
12
|
+
5C40D1F212282E4D007298DA /* RhoConnectClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C40D1EC12282E4D007298DA /* RhoConnectClient.h */; };
|
13
|
+
5C40D1F312282E4D007298DA /* RhoConnectClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C40D1ED12282E4D007298DA /* RhoConnectClient.m */; };
|
14
|
+
5C40D1F412282E4D007298DA /* RhoConnectNotify.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C40D1EE12282E4D007298DA /* RhoConnectNotify.h */; };
|
15
|
+
5C40D1F512282E4D007298DA /* RhoConnectNotify.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C40D1EF12282E4D007298DA /* RhoConnectNotify.m */; };
|
16
|
+
5C5CD3C013620579006DD4C5 /* RhoConnectObjectNotify.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C5CD3BE13620579006DD4C5 /* RhoConnectObjectNotify.h */; };
|
17
|
+
5C5CD3C113620579006DD4C5 /* RhoConnectObjectNotify.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C5CD3BF13620579006DD4C5 /* RhoConnectObjectNotify.m */; };
|
18
|
+
5CCB15A013DB5549001337D6 /* RhoError.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CCB159D13DB5549001337D6 /* RhoError.h */; };
|
19
|
+
5CCB15A113DB5549001337D6 /* RhoConnectClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CCB159E13DB5549001337D6 /* RhoConnectClient.h */; };
|
20
|
+
5CCB15A213DB5549001337D6 /* RhoConnectClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CCB159F13DB5549001337D6 /* RhoConnectClient.cpp */; };
|
21
|
+
65CC3732185E0FF1003C83EA /* ISyncProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CC3727185E0FF1003C83EA /* ISyncProtocol.h */; };
|
22
|
+
65CC3733185E0FF1003C83EA /* SyncEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65CC3728185E0FF1003C83EA /* SyncEngine.cpp */; };
|
23
|
+
65CC3734185E0FF1003C83EA /* SyncEngine.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CC3729185E0FF1003C83EA /* SyncEngine.h */; };
|
24
|
+
65CC3735185E0FF1003C83EA /* SyncNotify.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65CC372A185E0FF1003C83EA /* SyncNotify.cpp */; };
|
25
|
+
65CC3736185E0FF1003C83EA /* SyncNotify.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CC372B185E0FF1003C83EA /* SyncNotify.h */; };
|
26
|
+
65CC3737185E0FF1003C83EA /* SyncProtocol_3.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CC372C185E0FF1003C83EA /* SyncProtocol_3.h */; };
|
27
|
+
65CC3738185E0FF1003C83EA /* SyncProtocol_4.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CC372D185E0FF1003C83EA /* SyncProtocol_4.h */; };
|
28
|
+
65CC3739185E0FF1003C83EA /* SyncSource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65CC372E185E0FF1003C83EA /* SyncSource.cpp */; };
|
29
|
+
65CC373A185E0FF1003C83EA /* SyncSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CC372F185E0FF1003C83EA /* SyncSource.h */; };
|
30
|
+
65CC373B185E0FF1003C83EA /* SyncThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65CC3730185E0FF1003C83EA /* SyncThread.cpp */; };
|
31
|
+
65CC373C185E0FF1003C83EA /* SyncThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CC3731185E0FF1003C83EA /* SyncThread.h */; };
|
32
|
+
65CC374A185E274E003C83EA /* MethodResult.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65CC3740185E274E003C83EA /* MethodResult.cpp */; };
|
33
|
+
65CC374B185E274E003C83EA /* MethodResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CC3741185E274E003C83EA /* MethodResult.h */; };
|
34
|
+
65CC374C185E274E003C83EA /* js_helpers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65CC3742185E274E003C83EA /* js_helpers.cpp */; };
|
35
|
+
65CC374D185E274E003C83EA /* JSONResultConvertor.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CC3743185E274E003C83EA /* JSONResultConvertor.h */; };
|
36
|
+
65CC374E185E274E003C83EA /* BaseClasses.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CC3744185E274E003C83EA /* BaseClasses.h */; };
|
37
|
+
65CC374F185E274E003C83EA /* GeneratorQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CC3745185E274E003C83EA /* GeneratorQueue.h */; };
|
38
|
+
65CC3750185E274E003C83EA /* js_helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CC3746185E274E003C83EA /* js_helpers.h */; };
|
39
|
+
65CC3751185E274E003C83EA /* MethodResultConvertor.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CC3747185E274E003C83EA /* MethodResultConvertor.h */; };
|
40
|
+
65CC3752185E274E003C83EA /* StringifyHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65CC3748185E274E003C83EA /* StringifyHelper.cpp */; };
|
41
|
+
65CC3753185E274E003C83EA /* StringifyHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CC3749185E274E003C83EA /* StringifyHelper.h */; };
|
42
|
+
C518600A168B4EDE004D12AB /* RhoconnectClientManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5186009168B4EDE004D12AB /* RhoconnectClientManager.cpp */; };
|
43
|
+
C5186011168B58A3004D12AB /* RhoPushManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5186010168B58A3004D12AB /* RhoPushManager.cpp */; };
|
44
|
+
C5A8B0F1168B428A0020B206 /* ZipFiles.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B0F0168B428A0020B206 /* ZipFiles.cpp */; };
|
45
|
+
C5A8B0F5168B42BF0020B206 /* sqlite3.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B0F3168B42BF0020B206 /* sqlite3.c */; };
|
46
|
+
C5A8B0F6168B42BF0020B206 /* sqlite3.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B0F4168B42BF0020B206 /* sqlite3.h */; };
|
47
|
+
C5A8B188168B42F50020B206 /* amigaos.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B0F7168B42F50020B206 /* amigaos.c */; };
|
48
|
+
C5A8B189168B42F50020B206 /* arpa_telnet.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B0F8168B42F50020B206 /* arpa_telnet.h */; };
|
49
|
+
C5A8B18A168B42F50020B206 /* base64.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B0F9168B42F50020B206 /* base64.c */; };
|
50
|
+
C5A8B18B168B42F50020B206 /* config-mac.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B0FA168B42F50020B206 /* config-mac.h */; };
|
51
|
+
C5A8B18C168B42F50020B206 /* config-symbian.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B0FB168B42F50020B206 /* config-symbian.h */; };
|
52
|
+
C5A8B18D168B42F50020B206 /* config-win32.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B0FC168B42F50020B206 /* config-win32.h */; };
|
53
|
+
C5A8B18E168B42F50020B206 /* config-win32ce.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B0FD168B42F50020B206 /* config-win32ce.h */; };
|
54
|
+
C5A8B18F168B42F50020B206 /* connect.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B0FE168B42F50020B206 /* connect.c */; };
|
55
|
+
C5A8B190168B42F50020B206 /* connect.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B0FF168B42F50020B206 /* connect.h */; };
|
56
|
+
C5A8B191168B42F50020B206 /* content_encoding.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B100168B42F50020B206 /* content_encoding.c */; };
|
57
|
+
C5A8B192168B42F50020B206 /* content_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B101168B42F50020B206 /* content_encoding.h */; };
|
58
|
+
C5A8B193168B42F50020B206 /* cookie.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B102168B42F50020B206 /* cookie.c */; };
|
59
|
+
C5A8B194168B42F50020B206 /* cookie.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B103168B42F50020B206 /* cookie.h */; };
|
60
|
+
C5A8B195168B42F50020B206 /* curl_addrinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B104168B42F50020B206 /* curl_addrinfo.c */; };
|
61
|
+
C5A8B196168B42F50020B206 /* curl_addrinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B105168B42F50020B206 /* curl_addrinfo.h */; };
|
62
|
+
C5A8B197168B42F50020B206 /* curl_base64.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B106168B42F50020B206 /* curl_base64.h */; };
|
63
|
+
C5A8B198168B42F50020B206 /* curl_config.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B107168B42F50020B206 /* curl_config.h */; };
|
64
|
+
C5A8B199168B42F50020B206 /* curl_ldap.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B108168B42F50020B206 /* curl_ldap.h */; };
|
65
|
+
C5A8B19A168B42F50020B206 /* curl_md5.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B109168B42F50020B206 /* curl_md5.h */; };
|
66
|
+
C5A8B19B168B42F50020B206 /* curl_memory.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B10A168B42F50020B206 /* curl_memory.h */; };
|
67
|
+
C5A8B19C168B42F50020B206 /* curl_memrchr.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B10B168B42F50020B206 /* curl_memrchr.c */; };
|
68
|
+
C5A8B19D168B42F50020B206 /* curl_memrchr.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B10C168B42F50020B206 /* curl_memrchr.h */; };
|
69
|
+
C5A8B19E168B42F50020B206 /* curl_rand.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B10D168B42F50020B206 /* curl_rand.c */; };
|
70
|
+
C5A8B19F168B42F50020B206 /* curl_rand.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B10E168B42F50020B206 /* curl_rand.h */; };
|
71
|
+
C5A8B1A0168B42F50020B206 /* curl_sspi.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B10F168B42F50020B206 /* curl_sspi.c */; };
|
72
|
+
C5A8B1A1168B42F50020B206 /* dict.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B110168B42F50020B206 /* dict.c */; };
|
73
|
+
C5A8B1A2168B42F50020B206 /* dict.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B111168B42F50020B206 /* dict.h */; };
|
74
|
+
C5A8B1A3168B42F50020B206 /* easy.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B112168B42F50020B206 /* easy.c */; };
|
75
|
+
C5A8B1A4168B42F50020B206 /* easyif.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B113168B42F50020B206 /* easyif.h */; };
|
76
|
+
C5A8B1A5168B42F50020B206 /* escape.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B114168B42F50020B206 /* escape.c */; };
|
77
|
+
C5A8B1A6168B42F50020B206 /* escape.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B115168B42F50020B206 /* escape.h */; };
|
78
|
+
C5A8B1A7168B42F50020B206 /* file.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B116168B42F50020B206 /* file.c */; };
|
79
|
+
C5A8B1A8168B42F50020B206 /* file.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B117168B42F50020B206 /* file.h */; };
|
80
|
+
C5A8B1A9168B42F50020B206 /* formdata.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B118168B42F50020B206 /* formdata.c */; };
|
81
|
+
C5A8B1AA168B42F50020B206 /* formdata.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B119168B42F50020B206 /* formdata.h */; };
|
82
|
+
C5A8B1AB168B42F50020B206 /* ftp.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B11A168B42F50020B206 /* ftp.c */; };
|
83
|
+
C5A8B1AC168B42F50020B206 /* ftp.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B11B168B42F50020B206 /* ftp.h */; };
|
84
|
+
C5A8B1AD168B42F50020B206 /* getenv.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B11C168B42F50020B206 /* getenv.c */; };
|
85
|
+
C5A8B1AE168B42F50020B206 /* getinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B11D168B42F50020B206 /* getinfo.c */; };
|
86
|
+
C5A8B1AF168B42F50020B206 /* getinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B11E168B42F50020B206 /* getinfo.h */; };
|
87
|
+
C5A8B1B0168B42F50020B206 /* gtls.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B11F168B42F50020B206 /* gtls.c */; };
|
88
|
+
C5A8B1B1168B42F50020B206 /* gtls.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B120168B42F50020B206 /* gtls.h */; };
|
89
|
+
C5A8B1B2168B42F50020B206 /* hash.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B121168B42F50020B206 /* hash.c */; };
|
90
|
+
C5A8B1B3168B42F50020B206 /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B122168B42F50020B206 /* hash.h */; };
|
91
|
+
C5A8B1B4168B42F50020B206 /* hostares.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B123168B42F50020B206 /* hostares.c */; };
|
92
|
+
C5A8B1B5168B42F50020B206 /* hostasyn.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B124168B42F50020B206 /* hostasyn.c */; };
|
93
|
+
C5A8B1B6168B42F50020B206 /* hostip.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B125168B42F50020B206 /* hostip.c */; };
|
94
|
+
C5A8B1B7168B42F50020B206 /* hostip.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B126168B42F50020B206 /* hostip.h */; };
|
95
|
+
C5A8B1B8168B42F50020B206 /* hostip4.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B127168B42F50020B206 /* hostip4.c */; };
|
96
|
+
C5A8B1B9168B42F50020B206 /* hostip6.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B128168B42F50020B206 /* hostip6.c */; };
|
97
|
+
C5A8B1BA168B42F50020B206 /* hostsyn.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B129168B42F50020B206 /* hostsyn.c */; };
|
98
|
+
C5A8B1BB168B42F50020B206 /* hostthre.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B12A168B42F50020B206 /* hostthre.c */; };
|
99
|
+
C5A8B1BC168B42F50020B206 /* http.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B12B168B42F50020B206 /* http.c */; };
|
100
|
+
C5A8B1BD168B42F50020B206 /* http.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B12C168B42F50020B206 /* http.h */; };
|
101
|
+
C5A8B1BE168B42F50020B206 /* http_chunks.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B12D168B42F50020B206 /* http_chunks.c */; };
|
102
|
+
C5A8B1BF168B42F50020B206 /* http_chunks.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B12E168B42F50020B206 /* http_chunks.h */; };
|
103
|
+
C5A8B1C0168B42F50020B206 /* http_digest.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B12F168B42F50020B206 /* http_digest.c */; };
|
104
|
+
C5A8B1C1168B42F50020B206 /* http_digest.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B130168B42F50020B206 /* http_digest.h */; };
|
105
|
+
C5A8B1C2168B42F50020B206 /* http_negotiate.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B131168B42F50020B206 /* http_negotiate.c */; };
|
106
|
+
C5A8B1C3168B42F50020B206 /* http_negotiate.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B132168B42F50020B206 /* http_negotiate.h */; };
|
107
|
+
C5A8B1C4168B42F50020B206 /* http_ntlm.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B133168B42F50020B206 /* http_ntlm.c */; };
|
108
|
+
C5A8B1C5168B42F50020B206 /* http_ntlm.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B134168B42F50020B206 /* http_ntlm.h */; };
|
109
|
+
C5A8B1C6168B42F50020B206 /* if2ip.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B135168B42F50020B206 /* if2ip.c */; };
|
110
|
+
C5A8B1C7168B42F50020B206 /* if2ip.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B136168B42F50020B206 /* if2ip.h */; };
|
111
|
+
C5A8B1C8168B42F50020B206 /* inet_ntop.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B137168B42F50020B206 /* inet_ntop.c */; };
|
112
|
+
C5A8B1C9168B42F50020B206 /* inet_ntop.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B138168B42F50020B206 /* inet_ntop.h */; };
|
113
|
+
C5A8B1CA168B42F50020B206 /* inet_pton.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B139168B42F50020B206 /* inet_pton.c */; };
|
114
|
+
C5A8B1CB168B42F50020B206 /* inet_pton.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B13A168B42F50020B206 /* inet_pton.h */; };
|
115
|
+
C5A8B1CC168B42F50020B206 /* krb4.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B13B168B42F50020B206 /* krb4.c */; };
|
116
|
+
C5A8B1CD168B42F50020B206 /* krb5.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B13C168B42F50020B206 /* krb5.c */; };
|
117
|
+
C5A8B1CE168B42F50020B206 /* ldap.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B13D168B42F50020B206 /* ldap.c */; };
|
118
|
+
C5A8B1CF168B42F50020B206 /* llist.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B13E168B42F50020B206 /* llist.c */; };
|
119
|
+
C5A8B1D0168B42F50020B206 /* llist.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B13F168B42F50020B206 /* llist.h */; };
|
120
|
+
C5A8B1D1168B42F50020B206 /* md5.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B140168B42F50020B206 /* md5.c */; };
|
121
|
+
C5A8B1D2168B42F50020B206 /* memdebug.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B141168B42F50020B206 /* memdebug.c */; };
|
122
|
+
C5A8B1D3168B42F50020B206 /* memdebug.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B142168B42F50020B206 /* memdebug.h */; };
|
123
|
+
C5A8B1D4168B42F50020B206 /* mprintf.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B143168B42F50020B206 /* mprintf.c */; };
|
124
|
+
C5A8B1D5168B42F50020B206 /* multi.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B144168B42F50020B206 /* multi.c */; };
|
125
|
+
C5A8B1D6168B42F50020B206 /* multiif.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B145168B42F50020B206 /* multiif.h */; };
|
126
|
+
C5A8B1D7168B42F50020B206 /* netrc.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B146168B42F50020B206 /* netrc.c */; };
|
127
|
+
C5A8B1D8168B42F50020B206 /* netrc.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B147168B42F50020B206 /* netrc.h */; };
|
128
|
+
C5A8B1D9168B42F50020B206 /* nonblock.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B148168B42F50020B206 /* nonblock.c */; };
|
129
|
+
C5A8B1DA168B42F50020B206 /* nonblock.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B149168B42F50020B206 /* nonblock.h */; };
|
130
|
+
C5A8B1DB168B42F50020B206 /* nss.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B14A168B42F50020B206 /* nss.c */; };
|
131
|
+
C5A8B1DC168B42F50020B206 /* nssg.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B14B168B42F50020B206 /* nssg.h */; };
|
132
|
+
C5A8B1DD168B42F50020B206 /* nwlib.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B14C168B42F50020B206 /* nwlib.c */; };
|
133
|
+
C5A8B1DE168B42F50020B206 /* nwos.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B14D168B42F50020B206 /* nwos.c */; };
|
134
|
+
C5A8B1DF168B42F50020B206 /* parsedate.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B14E168B42F50020B206 /* parsedate.c */; };
|
135
|
+
C5A8B1E0168B42F50020B206 /* parsedate.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B14F168B42F50020B206 /* parsedate.h */; };
|
136
|
+
C5A8B1E1168B42F50020B206 /* progress.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B150168B42F50020B206 /* progress.c */; };
|
137
|
+
C5A8B1E2168B42F50020B206 /* progress.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B151168B42F50020B206 /* progress.h */; };
|
138
|
+
C5A8B1E3168B42F50020B206 /* qssl.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B152168B42F50020B206 /* qssl.c */; };
|
139
|
+
C5A8B1E4168B42F50020B206 /* qssl.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B153168B42F50020B206 /* qssl.h */; };
|
140
|
+
C5A8B1E5168B42F50020B206 /* rawstr.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B154168B42F50020B206 /* rawstr.c */; };
|
141
|
+
C5A8B1E6168B42F50020B206 /* rawstr.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B155168B42F50020B206 /* rawstr.h */; };
|
142
|
+
C5A8B1E7168B42F50020B206 /* rhossl.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B156168B42F50020B206 /* rhossl.c */; };
|
143
|
+
C5A8B1E8168B42F50020B206 /* rhossl.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B157168B42F50020B206 /* rhossl.h */; };
|
144
|
+
C5A8B1E9168B42F50020B206 /* security.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B158168B42F50020B206 /* security.c */; };
|
145
|
+
C5A8B1EA168B42F50020B206 /* select.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B159168B42F50020B206 /* select.c */; };
|
146
|
+
C5A8B1EB168B42F50020B206 /* select.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B15A168B42F50020B206 /* select.h */; };
|
147
|
+
C5A8B1EC168B42F50020B206 /* sendf.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B15B168B42F50020B206 /* sendf.c */; };
|
148
|
+
C5A8B1ED168B42F50020B206 /* sendf.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B15C168B42F50020B206 /* sendf.h */; };
|
149
|
+
C5A8B1EE168B42F50020B206 /* setup.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B15D168B42F50020B206 /* setup.h */; };
|
150
|
+
C5A8B1EF168B42F50020B206 /* setup_once.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B15E168B42F50020B206 /* setup_once.h */; };
|
151
|
+
C5A8B1F0168B42F50020B206 /* share.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B15F168B42F50020B206 /* share.c */; };
|
152
|
+
C5A8B1F1168B42F50020B206 /* share.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B160168B42F50020B206 /* share.h */; };
|
153
|
+
C5A8B1F2168B42F50020B206 /* slist.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B161168B42F50020B206 /* slist.c */; };
|
154
|
+
C5A8B1F3168B42F50020B206 /* slist.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B162168B42F50020B206 /* slist.h */; };
|
155
|
+
C5A8B1F4168B42F50020B206 /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B163168B42F50020B206 /* sockaddr.h */; };
|
156
|
+
C5A8B1F5168B42F50020B206 /* socks.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B164168B42F50020B206 /* socks.c */; };
|
157
|
+
C5A8B1F6168B42F50020B206 /* socks.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B165168B42F50020B206 /* socks.h */; };
|
158
|
+
C5A8B1F7168B42F50020B206 /* socks_gssapi.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B166168B42F50020B206 /* socks_gssapi.c */; };
|
159
|
+
C5A8B1F8168B42F50020B206 /* socks_sspi.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B167168B42F50020B206 /* socks_sspi.c */; };
|
160
|
+
C5A8B1F9168B42F50020B206 /* speedcheck.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B168168B42F50020B206 /* speedcheck.c */; };
|
161
|
+
C5A8B1FA168B42F50020B206 /* speedcheck.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B169168B42F50020B206 /* speedcheck.h */; };
|
162
|
+
C5A8B1FB168B42F50020B206 /* splay.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B16A168B42F50020B206 /* splay.c */; };
|
163
|
+
C5A8B1FC168B42F50020B206 /* splay.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B16B168B42F50020B206 /* splay.h */; };
|
164
|
+
C5A8B1FD168B42F50020B206 /* ssh.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B16C168B42F50020B206 /* ssh.c */; };
|
165
|
+
C5A8B1FE168B42F50020B206 /* ssh.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B16D168B42F50020B206 /* ssh.h */; };
|
166
|
+
C5A8B1FF168B42F50020B206 /* sslgen.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B16E168B42F50020B206 /* sslgen.c */; };
|
167
|
+
C5A8B200168B42F50020B206 /* sslgen.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B16F168B42F50020B206 /* sslgen.h */; };
|
168
|
+
C5A8B201168B42F50020B206 /* ssluse.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B170168B42F50020B206 /* ssluse.c */; };
|
169
|
+
C5A8B202168B42F50020B206 /* ssluse.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B171168B42F50020B206 /* ssluse.h */; };
|
170
|
+
C5A8B203168B42F50020B206 /* strdup.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B172168B42F50020B206 /* strdup.c */; };
|
171
|
+
C5A8B204168B42F50020B206 /* strdup.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B173168B42F50020B206 /* strdup.h */; };
|
172
|
+
C5A8B205168B42F50020B206 /* strequal.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B174168B42F50020B206 /* strequal.c */; };
|
173
|
+
C5A8B206168B42F50020B206 /* strequal.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B175168B42F50020B206 /* strequal.h */; };
|
174
|
+
C5A8B207168B42F50020B206 /* strerror.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B176168B42F50020B206 /* strerror.c */; };
|
175
|
+
C5A8B208168B42F50020B206 /* strerror.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B177168B42F50020B206 /* strerror.h */; };
|
176
|
+
C5A8B209168B42F50020B206 /* strtok.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B178168B42F50020B206 /* strtok.c */; };
|
177
|
+
C5A8B20A168B42F50020B206 /* strtok.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B179168B42F50020B206 /* strtok.h */; };
|
178
|
+
C5A8B20B168B42F50020B206 /* strtoofft.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B17A168B42F50020B206 /* strtoofft.c */; };
|
179
|
+
C5A8B20C168B42F50020B206 /* strtoofft.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B17B168B42F50020B206 /* strtoofft.h */; };
|
180
|
+
C5A8B20D168B42F50020B206 /* telnet.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B17C168B42F50020B206 /* telnet.c */; };
|
181
|
+
C5A8B20E168B42F50020B206 /* telnet.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B17D168B42F50020B206 /* telnet.h */; };
|
182
|
+
C5A8B20F168B42F50020B206 /* tftp.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B17E168B42F50020B206 /* tftp.c */; };
|
183
|
+
C5A8B210168B42F50020B206 /* tftp.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B17F168B42F50020B206 /* tftp.h */; };
|
184
|
+
C5A8B211168B42F50020B206 /* timeval.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B180168B42F50020B206 /* timeval.c */; };
|
185
|
+
C5A8B212168B42F50020B206 /* timeval.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B181168B42F50020B206 /* timeval.h */; };
|
186
|
+
C5A8B213168B42F50020B206 /* transfer.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B182168B42F50020B206 /* transfer.c */; };
|
187
|
+
C5A8B214168B42F50020B206 /* transfer.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B183168B42F50020B206 /* transfer.h */; };
|
188
|
+
C5A8B215168B42F50020B206 /* url.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B184168B42F50020B206 /* url.c */; };
|
189
|
+
C5A8B216168B42F50020B206 /* url.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B185168B42F50020B206 /* url.h */; };
|
190
|
+
C5A8B217168B42F50020B206 /* urldata.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B186168B42F50020B206 /* urldata.h */; };
|
191
|
+
C5A8B218168B42F50020B206 /* version.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B187168B42F50020B206 /* version.c */; };
|
192
|
+
C5A8B221168B434D0020B206 /* RhoClassFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B21B168B434D0020B206 /* RhoClassFactory.cpp */; };
|
193
|
+
C5A8B222168B434D0020B206 /* RhoClassfactory.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B21C168B434D0020B206 /* RhoClassfactory.h */; };
|
194
|
+
C5A8B223168B434D0020B206 /* RhoCryptImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B21D168B434D0020B206 /* RhoCryptImpl.h */; };
|
195
|
+
C5A8B224168B434D0020B206 /* RhoCryptImpl.mm in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B21E168B434D0020B206 /* RhoCryptImpl.mm */; };
|
196
|
+
C5A8B225168B434D0020B206 /* RhoFileImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B21F168B434D0020B206 /* RhoFileImpl.m */; };
|
197
|
+
C5A8B226168B434D0020B206 /* RhoThreadImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B220168B434D0020B206 /* RhoThreadImpl.m */; };
|
198
|
+
C5A8B243168B439D0020B206 /* AutoPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B227168B439D0020B206 /* AutoPointer.h */; };
|
199
|
+
C5A8B244168B439D0020B206 /* InputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B228168B439D0020B206 /* InputStream.h */; };
|
200
|
+
C5A8B245168B439D0020B206 /* IRhoClassFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B229168B439D0020B206 /* IRhoClassFactory.h */; };
|
201
|
+
C5A8B246168B439D0020B206 /* IRhoThreadImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B22A168B439D0020B206 /* IRhoThreadImpl.h */; };
|
202
|
+
C5A8B247168B439D0020B206 /* PosixThreadImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B22B168B439D0020B206 /* PosixThreadImpl.cpp */; };
|
203
|
+
C5A8B248168B439D0020B206 /* PosixThreadImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B22C168B439D0020B206 /* PosixThreadImpl.h */; };
|
204
|
+
C5A8B249168B439D0020B206 /* RhoAppAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B22D168B439D0020B206 /* RhoAppAdapter.h */; };
|
205
|
+
C5A8B24A168B439D0020B206 /* RhoConf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B22E168B439D0020B206 /* RhoConf.cpp */; };
|
206
|
+
C5A8B24B168B439D0020B206 /* RhoConf.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B22F168B439D0020B206 /* RhoConf.h */; };
|
207
|
+
C5A8B24C168B439D0020B206 /* RhoDefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B230168B439D0020B206 /* RhoDefs.h */; };
|
208
|
+
C5A8B24D168B439D0020B206 /* RhodesAppBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B231168B439D0020B206 /* RhodesAppBase.cpp */; };
|
209
|
+
C5A8B24E168B439D0020B206 /* RhodesAppBase.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B232168B439D0020B206 /* RhodesAppBase.h */; };
|
210
|
+
C5A8B24F168B439D0020B206 /* RhoFatalError.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B233168B439D0020B206 /* RhoFatalError.h */; };
|
211
|
+
C5A8B250168B439D0020B206 /* RhoFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B234168B439D0020B206 /* RhoFile.cpp */; };
|
212
|
+
C5A8B251168B439D0020B206 /* RhoFile.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B235168B439D0020B206 /* RhoFile.h */; };
|
213
|
+
C5A8B252168B439D0020B206 /* RhoFilePath.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B236168B439D0020B206 /* RhoFilePath.h */; };
|
214
|
+
C5A8B253168B439D0020B206 /* RhoMutexLock.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B237168B439D0020B206 /* RhoMutexLock.h */; };
|
215
|
+
C5A8B254168B439D0020B206 /* RhoPort.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B238168B439D0020B206 /* RhoPort.h */; };
|
216
|
+
C5A8B255168B439D0020B206 /* RhoStd.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B239168B439D0020B206 /* RhoStd.h */; };
|
217
|
+
C5A8B256168B439D0020B206 /* RhoSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B23A168B439D0020B206 /* RhoSystem.h */; };
|
218
|
+
C5A8B257168B439D0020B206 /* RhoThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B23B168B439D0020B206 /* RhoThread.cpp */; };
|
219
|
+
C5A8B258168B439D0020B206 /* RhoThread.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B23C168B439D0020B206 /* RhoThread.h */; };
|
220
|
+
C5A8B259168B439D0020B206 /* RhoTime.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B23D168B439D0020B206 /* RhoTime.h */; };
|
221
|
+
C5A8B25A168B439D0020B206 /* StringConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B23E168B439D0020B206 /* StringConverter.h */; };
|
222
|
+
C5A8B25B168B439D0020B206 /* ThreadQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B23F168B439D0020B206 /* ThreadQueue.cpp */; };
|
223
|
+
C5A8B25C168B439D0020B206 /* ThreadQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B240168B439D0020B206 /* ThreadQueue.h */; };
|
224
|
+
C5A8B25D168B439D0020B206 /* Tokenizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B241168B439D0020B206 /* Tokenizer.cpp */; };
|
225
|
+
C5A8B25E168B439D0020B206 /* Tokenizer.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B242168B439D0020B206 /* Tokenizer.h */; };
|
226
|
+
C5A8B269168B43B90020B206 /* DBAdapter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B25F168B43B90020B206 /* DBAdapter.cpp */; };
|
227
|
+
C5A8B26A168B43B90020B206 /* DBAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B260168B43B90020B206 /* DBAdapter.h */; };
|
228
|
+
C5A8B26B168B43B90020B206 /* DBAttrManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B261168B43B90020B206 /* DBAttrManager.cpp */; };
|
229
|
+
C5A8B26C168B43B90020B206 /* DBAttrManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B262168B43B90020B206 /* DBAttrManager.h */; };
|
230
|
+
C5A8B26D168B43B90020B206 /* DBImportTransaction.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B263168B43B90020B206 /* DBImportTransaction.cpp */; };
|
231
|
+
C5A8B26E168B43B90020B206 /* DBImportTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B264168B43B90020B206 /* DBImportTransaction.h */; };
|
232
|
+
C5A8B26F168B43B90020B206 /* DBRequestHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B265168B43B90020B206 /* DBRequestHelper.cpp */; };
|
233
|
+
C5A8B270168B43B90020B206 /* DBRequestHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B266168B43B90020B206 /* DBRequestHelper.h */; };
|
234
|
+
C5A8B271168B43B90020B206 /* DBResult.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B267168B43B90020B206 /* DBResult.cpp */; };
|
235
|
+
C5A8B272168B43B90020B206 /* DBResult.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B268168B43B90020B206 /* DBResult.h */; };
|
236
|
+
C5A8B277168B43E00020B206 /* unzip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B273168B43E00020B206 /* unzip.cpp */; };
|
237
|
+
C5A8B278168B43E00020B206 /* unzip.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B274168B43E00020B206 /* unzip.h */; };
|
238
|
+
C5A8B279168B43E00020B206 /* zip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B275168B43E00020B206 /* zip.cpp */; };
|
239
|
+
C5A8B27A168B43E00020B206 /* zip.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B276168B43E00020B206 /* zip.h */; };
|
240
|
+
C5A8B28D168B44860020B206 /* arraylist.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B27B168B44860020B206 /* arraylist.c */; };
|
241
|
+
C5A8B28E168B44860020B206 /* arraylist.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B27C168B44860020B206 /* arraylist.h */; };
|
242
|
+
C5A8B28F168B44860020B206 /* bits.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B27D168B44860020B206 /* bits.h */; };
|
243
|
+
C5A8B290168B44860020B206 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B27E168B44860020B206 /* config.h */; };
|
244
|
+
C5A8B291168B44860020B206 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B27F168B44860020B206 /* json.h */; };
|
245
|
+
C5A8B292168B44860020B206 /* json_object.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B280168B44860020B206 /* json_object.c */; };
|
246
|
+
C5A8B293168B44860020B206 /* json_object.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B281168B44860020B206 /* json_object.h */; };
|
247
|
+
C5A8B294168B44860020B206 /* json_object_private.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B282168B44860020B206 /* json_object_private.h */; };
|
248
|
+
C5A8B295168B44860020B206 /* json_tokener.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B283168B44860020B206 /* json_tokener.c */; };
|
249
|
+
C5A8B296168B44860020B206 /* json_tokener.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B284168B44860020B206 /* json_tokener.h */; };
|
250
|
+
C5A8B297168B44860020B206 /* json_util.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B285168B44860020B206 /* json_util.c */; };
|
251
|
+
C5A8B298168B44860020B206 /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B286168B44860020B206 /* json_util.h */; };
|
252
|
+
C5A8B299168B44860020B206 /* JSONIterator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B287168B44860020B206 /* JSONIterator.cpp */; };
|
253
|
+
C5A8B29A168B44860020B206 /* JSONIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B288168B44860020B206 /* JSONIterator.h */; };
|
254
|
+
C5A8B29B168B44860020B206 /* linkhash.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B289168B44860020B206 /* linkhash.c */; };
|
255
|
+
C5A8B29C168B44860020B206 /* linkhash.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B28A168B44860020B206 /* linkhash.h */; };
|
256
|
+
C5A8B29D168B44860020B206 /* printbuf.c in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B28B168B44860020B206 /* printbuf.c */; };
|
257
|
+
C5A8B29E168B44860020B206 /* printbuf.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B28C168B44860020B206 /* printbuf.h */; };
|
258
|
+
C5A8B2A7168B44B40020B206 /* RhoLog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B29F168B44B40020B206 /* RhoLog.cpp */; };
|
259
|
+
C5A8B2A8168B44B40020B206 /* RhoLog.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B2A0168B44B40020B206 /* RhoLog.h */; };
|
260
|
+
C5A8B2A9168B44B40020B206 /* RhoLogCat.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B2A1168B44B40020B206 /* RhoLogCat.h */; };
|
261
|
+
C5A8B2AA168B44B40020B206 /* RhoLogConf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B2A2168B44B40020B206 /* RhoLogConf.cpp */; };
|
262
|
+
C5A8B2AB168B44B40020B206 /* RhoLogConf.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B2A3168B44B40020B206 /* RhoLogConf.h */; };
|
263
|
+
C5A8B2AC168B44B40020B206 /* RhoLogSink.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B2A4168B44B40020B206 /* RhoLogSink.cpp */; };
|
264
|
+
C5A8B2AD168B44B40020B206 /* RhoLogSink.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B2A5168B44B40020B206 /* RhoLogSink.h */; };
|
265
|
+
C5A8B2AE168B44B40020B206 /* RhoPlainLog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B2A6168B44B40020B206 /* RhoPlainLog.cpp */; };
|
266
|
+
C5A8B2B7168B44DC0020B206 /* CURLNetRequest.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B2AF168B44DC0020B206 /* CURLNetRequest.cpp */; };
|
267
|
+
C5A8B2B8168B44DC0020B206 /* CURLNetRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B2B0168B44DC0020B206 /* CURLNetRequest.h */; };
|
268
|
+
C5A8B2B9168B44DC0020B206 /* INetRequest.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B2B1168B44DC0020B206 /* INetRequest.cpp */; };
|
269
|
+
C5A8B2BA168B44DC0020B206 /* INetRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B2B2168B44DC0020B206 /* INetRequest.h */; };
|
270
|
+
C5A8B2BB168B44DC0020B206 /* ssl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B2B3168B44DC0020B206 /* ssl.cpp */; };
|
271
|
+
C5A8B2BC168B44DC0020B206 /* ssl.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B2B4168B44DC0020B206 /* ssl.h */; };
|
272
|
+
C5A8B2BD168B44DC0020B206 /* URI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B2B5168B44DC0020B206 /* URI.cpp */; };
|
273
|
+
C5A8B2BE168B44DC0020B206 /* URI.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B2B6168B44DC0020B206 /* URI.h */; };
|
274
|
+
C5A8B2C1168B44F10020B206 /* sslimpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5A8B2BF168B44F10020B206 /* sslimpl.cpp */; };
|
275
|
+
C5A8B2C2168B44F10020B206 /* sslimpl.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A8B2C0168B44F10020B206 /* sslimpl.h */; };
|
276
|
+
/* End PBXBuildFile section */
|
277
|
+
|
278
|
+
/* Begin PBXFileReference section */
|
279
|
+
5C40D1EA12282E4D007298DA /* RhomModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RhomModel.h; sourceTree = "<group>"; };
|
280
|
+
5C40D1EB12282E4D007298DA /* RhomModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RhomModel.m; sourceTree = "<group>"; };
|
281
|
+
5C40D1EC12282E4D007298DA /* RhoConnectClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RhoConnectClient.h; sourceTree = "<group>"; };
|
282
|
+
5C40D1ED12282E4D007298DA /* RhoConnectClient.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RhoConnectClient.m; sourceTree = "<group>"; };
|
283
|
+
5C40D1EE12282E4D007298DA /* RhoConnectNotify.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RhoConnectNotify.h; sourceTree = "<group>"; };
|
284
|
+
5C40D1EF12282E4D007298DA /* RhoConnectNotify.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RhoConnectNotify.m; sourceTree = "<group>"; };
|
285
|
+
5C5CD3BE13620579006DD4C5 /* RhoConnectObjectNotify.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RhoConnectObjectNotify.h; sourceTree = "<group>"; };
|
286
|
+
5C5CD3BF13620579006DD4C5 /* RhoConnectObjectNotify.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RhoConnectObjectNotify.m; sourceTree = "<group>"; };
|
287
|
+
5CCB159D13DB5549001337D6 /* RhoError.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoError.h; path = ../../platform/shared/RhoConnectClient/RhoError.h; sourceTree = "<group>"; };
|
288
|
+
5CCB159E13DB5549001337D6 /* RhoConnectClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoConnectClient.h; path = ../../platform/shared/RhoConnectClient/RhoConnectClient.h; sourceTree = "<group>"; };
|
289
|
+
5CCB159F13DB5549001337D6 /* RhoConnectClient.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RhoConnectClient.cpp; path = ../../platform/shared/RhoConnectClient/RhoConnectClient.cpp; sourceTree = "<group>"; };
|
290
|
+
65CC3727185E0FF1003C83EA /* ISyncProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ISyncProtocol.h; path = "../../ext/rhoconnect-client/ext/shared/sync/ISyncProtocol.h"; sourceTree = "<group>"; };
|
291
|
+
65CC3728185E0FF1003C83EA /* SyncEngine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SyncEngine.cpp; path = "../../ext/rhoconnect-client/ext/shared/sync/SyncEngine.cpp"; sourceTree = "<group>"; };
|
292
|
+
65CC3729185E0FF1003C83EA /* SyncEngine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SyncEngine.h; path = "../../ext/rhoconnect-client/ext/shared/sync/SyncEngine.h"; sourceTree = "<group>"; };
|
293
|
+
65CC372A185E0FF1003C83EA /* SyncNotify.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SyncNotify.cpp; path = "../../ext/rhoconnect-client/ext/shared/sync/SyncNotify.cpp"; sourceTree = "<group>"; };
|
294
|
+
65CC372B185E0FF1003C83EA /* SyncNotify.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SyncNotify.h; path = "../../ext/rhoconnect-client/ext/shared/sync/SyncNotify.h"; sourceTree = "<group>"; };
|
295
|
+
65CC372C185E0FF1003C83EA /* SyncProtocol_3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SyncProtocol_3.h; path = "../../ext/rhoconnect-client/ext/shared/sync/SyncProtocol_3.h"; sourceTree = "<group>"; };
|
296
|
+
65CC372D185E0FF1003C83EA /* SyncProtocol_4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SyncProtocol_4.h; path = "../../ext/rhoconnect-client/ext/shared/sync/SyncProtocol_4.h"; sourceTree = "<group>"; };
|
297
|
+
65CC372E185E0FF1003C83EA /* SyncSource.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SyncSource.cpp; path = "../../ext/rhoconnect-client/ext/shared/sync/SyncSource.cpp"; sourceTree = "<group>"; };
|
298
|
+
65CC372F185E0FF1003C83EA /* SyncSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SyncSource.h; path = "../../ext/rhoconnect-client/ext/shared/sync/SyncSource.h"; sourceTree = "<group>"; };
|
299
|
+
65CC3730185E0FF1003C83EA /* SyncThread.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SyncThread.cpp; path = "../../ext/rhoconnect-client/ext/shared/sync/SyncThread.cpp"; sourceTree = "<group>"; };
|
300
|
+
65CC3731185E0FF1003C83EA /* SyncThread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SyncThread.h; path = "../../ext/rhoconnect-client/ext/shared/sync/SyncThread.h"; sourceTree = "<group>"; };
|
301
|
+
65CC3740185E274E003C83EA /* MethodResult.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = MethodResult.cpp; path = ../../../rhodes/platform/shared/api_generator/MethodResult.cpp; sourceTree = "<group>"; };
|
302
|
+
65CC3741185E274E003C83EA /* MethodResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MethodResult.h; path = ../../../rhodes/platform/shared/api_generator/MethodResult.h; sourceTree = "<group>"; };
|
303
|
+
65CC3742185E274E003C83EA /* js_helpers.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = js_helpers.cpp; path = ../../../rhodes/platform/shared/api_generator/js_helpers.cpp; sourceTree = "<group>"; };
|
304
|
+
65CC3743185E274E003C83EA /* JSONResultConvertor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JSONResultConvertor.h; path = ../../../rhodes/platform/shared/api_generator/JSONResultConvertor.h; sourceTree = "<group>"; };
|
305
|
+
65CC3744185E274E003C83EA /* BaseClasses.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BaseClasses.h; path = ../../../rhodes/platform/shared/api_generator/BaseClasses.h; sourceTree = "<group>"; };
|
306
|
+
65CC3745185E274E003C83EA /* GeneratorQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GeneratorQueue.h; path = ../../../rhodes/platform/shared/api_generator/GeneratorQueue.h; sourceTree = "<group>"; };
|
307
|
+
65CC3746185E274E003C83EA /* js_helpers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = js_helpers.h; path = ../../../rhodes/platform/shared/api_generator/js_helpers.h; sourceTree = "<group>"; };
|
308
|
+
65CC3747185E274E003C83EA /* MethodResultConvertor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MethodResultConvertor.h; path = ../../../rhodes/platform/shared/api_generator/MethodResultConvertor.h; sourceTree = "<group>"; };
|
309
|
+
65CC3748185E274E003C83EA /* StringifyHelper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = StringifyHelper.cpp; path = ../../../rhodes/platform/shared/api_generator/StringifyHelper.cpp; sourceTree = "<group>"; };
|
310
|
+
65CC3749185E274E003C83EA /* StringifyHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = StringifyHelper.h; path = ../../../rhodes/platform/shared/api_generator/StringifyHelper.h; sourceTree = "<group>"; };
|
311
|
+
C5186009168B4EDE004D12AB /* RhoconnectClientManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RhoconnectClientManager.cpp; path = ../../../rhodes/platform/shared/sync/RhoconnectClientManager.cpp; sourceTree = "<group>"; };
|
312
|
+
C5186010168B58A3004D12AB /* RhoPushManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RhoPushManager.cpp; path = ../../../rhodes/platform/shared/common/push/RhoPushManager.cpp; sourceTree = "<group>"; };
|
313
|
+
C5A8B0F0168B428A0020B206 /* ZipFiles.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ZipFiles.cpp; path = ../../../rhodes/platform/shared/rubyext/ZipFiles.cpp; sourceTree = "<group>"; };
|
314
|
+
C5A8B0F3168B42BF0020B206 /* sqlite3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sqlite3.c; path = ../../../rhodes/platform/shared/sqlite/sqlite3.c; sourceTree = "<group>"; };
|
315
|
+
C5A8B0F4168B42BF0020B206 /* sqlite3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sqlite3.h; path = ../../../rhodes/platform/shared/sqlite/sqlite3.h; sourceTree = "<group>"; };
|
316
|
+
C5A8B0F7168B42F50020B206 /* amigaos.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = amigaos.c; path = ../../../rhodes/platform/shared/curl/lib/amigaos.c; sourceTree = "<group>"; };
|
317
|
+
C5A8B0F8168B42F50020B206 /* arpa_telnet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = arpa_telnet.h; path = ../../../rhodes/platform/shared/curl/lib/arpa_telnet.h; sourceTree = "<group>"; };
|
318
|
+
C5A8B0F9168B42F50020B206 /* base64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = base64.c; path = ../../../rhodes/platform/shared/curl/lib/base64.c; sourceTree = "<group>"; };
|
319
|
+
C5A8B0FA168B42F50020B206 /* config-mac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "config-mac.h"; path = "../../../rhodes/platform/shared/curl/lib/config-mac.h"; sourceTree = "<group>"; };
|
320
|
+
C5A8B0FB168B42F50020B206 /* config-symbian.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "config-symbian.h"; path = "../../../rhodes/platform/shared/curl/lib/config-symbian.h"; sourceTree = "<group>"; };
|
321
|
+
C5A8B0FC168B42F50020B206 /* config-win32.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "config-win32.h"; path = "../../../rhodes/platform/shared/curl/lib/config-win32.h"; sourceTree = "<group>"; };
|
322
|
+
C5A8B0FD168B42F50020B206 /* config-win32ce.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "config-win32ce.h"; path = "../../../rhodes/platform/shared/curl/lib/config-win32ce.h"; sourceTree = "<group>"; };
|
323
|
+
C5A8B0FE168B42F50020B206 /* connect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = connect.c; path = ../../../rhodes/platform/shared/curl/lib/connect.c; sourceTree = "<group>"; };
|
324
|
+
C5A8B0FF168B42F50020B206 /* connect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = connect.h; path = ../../../rhodes/platform/shared/curl/lib/connect.h; sourceTree = "<group>"; };
|
325
|
+
C5A8B100168B42F50020B206 /* content_encoding.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = content_encoding.c; path = ../../../rhodes/platform/shared/curl/lib/content_encoding.c; sourceTree = "<group>"; };
|
326
|
+
C5A8B101168B42F50020B206 /* content_encoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = content_encoding.h; path = ../../../rhodes/platform/shared/curl/lib/content_encoding.h; sourceTree = "<group>"; };
|
327
|
+
C5A8B102168B42F50020B206 /* cookie.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = cookie.c; path = ../../../rhodes/platform/shared/curl/lib/cookie.c; sourceTree = "<group>"; };
|
328
|
+
C5A8B103168B42F50020B206 /* cookie.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cookie.h; path = ../../../rhodes/platform/shared/curl/lib/cookie.h; sourceTree = "<group>"; };
|
329
|
+
C5A8B104168B42F50020B206 /* curl_addrinfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = curl_addrinfo.c; path = ../../../rhodes/platform/shared/curl/lib/curl_addrinfo.c; sourceTree = "<group>"; };
|
330
|
+
C5A8B105168B42F50020B206 /* curl_addrinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = curl_addrinfo.h; path = ../../../rhodes/platform/shared/curl/lib/curl_addrinfo.h; sourceTree = "<group>"; };
|
331
|
+
C5A8B106168B42F50020B206 /* curl_base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = curl_base64.h; path = ../../../rhodes/platform/shared/curl/lib/curl_base64.h; sourceTree = "<group>"; };
|
332
|
+
C5A8B107168B42F50020B206 /* curl_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = curl_config.h; path = ../../../rhodes/platform/shared/curl/lib/curl_config.h; sourceTree = "<group>"; };
|
333
|
+
C5A8B108168B42F50020B206 /* curl_ldap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = curl_ldap.h; path = ../../../rhodes/platform/shared/curl/lib/curl_ldap.h; sourceTree = "<group>"; };
|
334
|
+
C5A8B109168B42F50020B206 /* curl_md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = curl_md5.h; path = ../../../rhodes/platform/shared/curl/lib/curl_md5.h; sourceTree = "<group>"; };
|
335
|
+
C5A8B10A168B42F50020B206 /* curl_memory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = curl_memory.h; path = ../../../rhodes/platform/shared/curl/lib/curl_memory.h; sourceTree = "<group>"; };
|
336
|
+
C5A8B10B168B42F50020B206 /* curl_memrchr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = curl_memrchr.c; path = ../../../rhodes/platform/shared/curl/lib/curl_memrchr.c; sourceTree = "<group>"; };
|
337
|
+
C5A8B10C168B42F50020B206 /* curl_memrchr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = curl_memrchr.h; path = ../../../rhodes/platform/shared/curl/lib/curl_memrchr.h; sourceTree = "<group>"; };
|
338
|
+
C5A8B10D168B42F50020B206 /* curl_rand.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = curl_rand.c; path = ../../../rhodes/platform/shared/curl/lib/curl_rand.c; sourceTree = "<group>"; };
|
339
|
+
C5A8B10E168B42F50020B206 /* curl_rand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = curl_rand.h; path = ../../../rhodes/platform/shared/curl/lib/curl_rand.h; sourceTree = "<group>"; };
|
340
|
+
C5A8B10F168B42F50020B206 /* curl_sspi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = curl_sspi.c; path = ../../../rhodes/platform/shared/curl/lib/curl_sspi.c; sourceTree = "<group>"; };
|
341
|
+
C5A8B110168B42F50020B206 /* dict.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = dict.c; path = ../../../rhodes/platform/shared/curl/lib/dict.c; sourceTree = "<group>"; };
|
342
|
+
C5A8B111168B42F50020B206 /* dict.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dict.h; path = ../../../rhodes/platform/shared/curl/lib/dict.h; sourceTree = "<group>"; };
|
343
|
+
C5A8B112168B42F50020B206 /* easy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = easy.c; path = ../../../rhodes/platform/shared/curl/lib/easy.c; sourceTree = "<group>"; };
|
344
|
+
C5A8B113168B42F50020B206 /* easyif.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = easyif.h; path = ../../../rhodes/platform/shared/curl/lib/easyif.h; sourceTree = "<group>"; };
|
345
|
+
C5A8B114168B42F50020B206 /* escape.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = escape.c; path = ../../../rhodes/platform/shared/curl/lib/escape.c; sourceTree = "<group>"; };
|
346
|
+
C5A8B115168B42F50020B206 /* escape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = escape.h; path = ../../../rhodes/platform/shared/curl/lib/escape.h; sourceTree = "<group>"; };
|
347
|
+
C5A8B116168B42F50020B206 /* file.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = file.c; path = ../../../rhodes/platform/shared/curl/lib/file.c; sourceTree = "<group>"; };
|
348
|
+
C5A8B117168B42F50020B206 /* file.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = file.h; path = ../../../rhodes/platform/shared/curl/lib/file.h; sourceTree = "<group>"; };
|
349
|
+
C5A8B118168B42F50020B206 /* formdata.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = formdata.c; path = ../../../rhodes/platform/shared/curl/lib/formdata.c; sourceTree = "<group>"; };
|
350
|
+
C5A8B119168B42F50020B206 /* formdata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = formdata.h; path = ../../../rhodes/platform/shared/curl/lib/formdata.h; sourceTree = "<group>"; };
|
351
|
+
C5A8B11A168B42F50020B206 /* ftp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ftp.c; path = ../../../rhodes/platform/shared/curl/lib/ftp.c; sourceTree = "<group>"; };
|
352
|
+
C5A8B11B168B42F50020B206 /* ftp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ftp.h; path = ../../../rhodes/platform/shared/curl/lib/ftp.h; sourceTree = "<group>"; };
|
353
|
+
C5A8B11C168B42F50020B206 /* getenv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = getenv.c; path = ../../../rhodes/platform/shared/curl/lib/getenv.c; sourceTree = "<group>"; };
|
354
|
+
C5A8B11D168B42F50020B206 /* getinfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = getinfo.c; path = ../../../rhodes/platform/shared/curl/lib/getinfo.c; sourceTree = "<group>"; };
|
355
|
+
C5A8B11E168B42F50020B206 /* getinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = getinfo.h; path = ../../../rhodes/platform/shared/curl/lib/getinfo.h; sourceTree = "<group>"; };
|
356
|
+
C5A8B11F168B42F50020B206 /* gtls.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = gtls.c; path = ../../../rhodes/platform/shared/curl/lib/gtls.c; sourceTree = "<group>"; };
|
357
|
+
C5A8B120168B42F50020B206 /* gtls.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = gtls.h; path = ../../../rhodes/platform/shared/curl/lib/gtls.h; sourceTree = "<group>"; };
|
358
|
+
C5A8B121168B42F50020B206 /* hash.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = hash.c; path = ../../../rhodes/platform/shared/curl/lib/hash.c; sourceTree = "<group>"; };
|
359
|
+
C5A8B122168B42F50020B206 /* hash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = hash.h; path = ../../../rhodes/platform/shared/curl/lib/hash.h; sourceTree = "<group>"; };
|
360
|
+
C5A8B123168B42F50020B206 /* hostares.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = hostares.c; path = ../../../rhodes/platform/shared/curl/lib/hostares.c; sourceTree = "<group>"; };
|
361
|
+
C5A8B124168B42F50020B206 /* hostasyn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = hostasyn.c; path = ../../../rhodes/platform/shared/curl/lib/hostasyn.c; sourceTree = "<group>"; };
|
362
|
+
C5A8B125168B42F50020B206 /* hostip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = hostip.c; path = ../../../rhodes/platform/shared/curl/lib/hostip.c; sourceTree = "<group>"; };
|
363
|
+
C5A8B126168B42F50020B206 /* hostip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = hostip.h; path = ../../../rhodes/platform/shared/curl/lib/hostip.h; sourceTree = "<group>"; };
|
364
|
+
C5A8B127168B42F50020B206 /* hostip4.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = hostip4.c; path = ../../../rhodes/platform/shared/curl/lib/hostip4.c; sourceTree = "<group>"; };
|
365
|
+
C5A8B128168B42F50020B206 /* hostip6.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = hostip6.c; path = ../../../rhodes/platform/shared/curl/lib/hostip6.c; sourceTree = "<group>"; };
|
366
|
+
C5A8B129168B42F50020B206 /* hostsyn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = hostsyn.c; path = ../../../rhodes/platform/shared/curl/lib/hostsyn.c; sourceTree = "<group>"; };
|
367
|
+
C5A8B12A168B42F50020B206 /* hostthre.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = hostthre.c; path = ../../../rhodes/platform/shared/curl/lib/hostthre.c; sourceTree = "<group>"; };
|
368
|
+
C5A8B12B168B42F50020B206 /* http.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = http.c; path = ../../../rhodes/platform/shared/curl/lib/http.c; sourceTree = "<group>"; };
|
369
|
+
C5A8B12C168B42F50020B206 /* http.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = http.h; path = ../../../rhodes/platform/shared/curl/lib/http.h; sourceTree = "<group>"; };
|
370
|
+
C5A8B12D168B42F50020B206 /* http_chunks.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = http_chunks.c; path = ../../../rhodes/platform/shared/curl/lib/http_chunks.c; sourceTree = "<group>"; };
|
371
|
+
C5A8B12E168B42F50020B206 /* http_chunks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = http_chunks.h; path = ../../../rhodes/platform/shared/curl/lib/http_chunks.h; sourceTree = "<group>"; };
|
372
|
+
C5A8B12F168B42F50020B206 /* http_digest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = http_digest.c; path = ../../../rhodes/platform/shared/curl/lib/http_digest.c; sourceTree = "<group>"; };
|
373
|
+
C5A8B130168B42F50020B206 /* http_digest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = http_digest.h; path = ../../../rhodes/platform/shared/curl/lib/http_digest.h; sourceTree = "<group>"; };
|
374
|
+
C5A8B131168B42F50020B206 /* http_negotiate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = http_negotiate.c; path = ../../../rhodes/platform/shared/curl/lib/http_negotiate.c; sourceTree = "<group>"; };
|
375
|
+
C5A8B132168B42F50020B206 /* http_negotiate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = http_negotiate.h; path = ../../../rhodes/platform/shared/curl/lib/http_negotiate.h; sourceTree = "<group>"; };
|
376
|
+
C5A8B133168B42F50020B206 /* http_ntlm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = http_ntlm.c; path = ../../../rhodes/platform/shared/curl/lib/http_ntlm.c; sourceTree = "<group>"; };
|
377
|
+
C5A8B134168B42F50020B206 /* http_ntlm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = http_ntlm.h; path = ../../../rhodes/platform/shared/curl/lib/http_ntlm.h; sourceTree = "<group>"; };
|
378
|
+
C5A8B135168B42F50020B206 /* if2ip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = if2ip.c; path = ../../../rhodes/platform/shared/curl/lib/if2ip.c; sourceTree = "<group>"; };
|
379
|
+
C5A8B136168B42F50020B206 /* if2ip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = if2ip.h; path = ../../../rhodes/platform/shared/curl/lib/if2ip.h; sourceTree = "<group>"; };
|
380
|
+
C5A8B137168B42F50020B206 /* inet_ntop.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = inet_ntop.c; path = ../../../rhodes/platform/shared/curl/lib/inet_ntop.c; sourceTree = "<group>"; };
|
381
|
+
C5A8B138168B42F50020B206 /* inet_ntop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = inet_ntop.h; path = ../../../rhodes/platform/shared/curl/lib/inet_ntop.h; sourceTree = "<group>"; };
|
382
|
+
C5A8B139168B42F50020B206 /* inet_pton.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = inet_pton.c; path = ../../../rhodes/platform/shared/curl/lib/inet_pton.c; sourceTree = "<group>"; };
|
383
|
+
C5A8B13A168B42F50020B206 /* inet_pton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = inet_pton.h; path = ../../../rhodes/platform/shared/curl/lib/inet_pton.h; sourceTree = "<group>"; };
|
384
|
+
C5A8B13B168B42F50020B206 /* krb4.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = krb4.c; path = ../../../rhodes/platform/shared/curl/lib/krb4.c; sourceTree = "<group>"; };
|
385
|
+
C5A8B13C168B42F50020B206 /* krb5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = krb5.c; path = ../../../rhodes/platform/shared/curl/lib/krb5.c; sourceTree = "<group>"; };
|
386
|
+
C5A8B13D168B42F50020B206 /* ldap.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ldap.c; path = ../../../rhodes/platform/shared/curl/lib/ldap.c; sourceTree = "<group>"; };
|
387
|
+
C5A8B13E168B42F50020B206 /* llist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = llist.c; path = ../../../rhodes/platform/shared/curl/lib/llist.c; sourceTree = "<group>"; };
|
388
|
+
C5A8B13F168B42F50020B206 /* llist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = llist.h; path = ../../../rhodes/platform/shared/curl/lib/llist.h; sourceTree = "<group>"; };
|
389
|
+
C5A8B140168B42F50020B206 /* md5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = md5.c; path = ../../../rhodes/platform/shared/curl/lib/md5.c; sourceTree = "<group>"; };
|
390
|
+
C5A8B141168B42F50020B206 /* memdebug.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = memdebug.c; path = ../../../rhodes/platform/shared/curl/lib/memdebug.c; sourceTree = "<group>"; };
|
391
|
+
C5A8B142168B42F50020B206 /* memdebug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = memdebug.h; path = ../../../rhodes/platform/shared/curl/lib/memdebug.h; sourceTree = "<group>"; };
|
392
|
+
C5A8B143168B42F50020B206 /* mprintf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mprintf.c; path = ../../../rhodes/platform/shared/curl/lib/mprintf.c; sourceTree = "<group>"; };
|
393
|
+
C5A8B144168B42F50020B206 /* multi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = multi.c; path = ../../../rhodes/platform/shared/curl/lib/multi.c; sourceTree = "<group>"; };
|
394
|
+
C5A8B145168B42F50020B206 /* multiif.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = multiif.h; path = ../../../rhodes/platform/shared/curl/lib/multiif.h; sourceTree = "<group>"; };
|
395
|
+
C5A8B146168B42F50020B206 /* netrc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = netrc.c; path = ../../../rhodes/platform/shared/curl/lib/netrc.c; sourceTree = "<group>"; };
|
396
|
+
C5A8B147168B42F50020B206 /* netrc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = netrc.h; path = ../../../rhodes/platform/shared/curl/lib/netrc.h; sourceTree = "<group>"; };
|
397
|
+
C5A8B148168B42F50020B206 /* nonblock.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = nonblock.c; path = ../../../rhodes/platform/shared/curl/lib/nonblock.c; sourceTree = "<group>"; };
|
398
|
+
C5A8B149168B42F50020B206 /* nonblock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = nonblock.h; path = ../../../rhodes/platform/shared/curl/lib/nonblock.h; sourceTree = "<group>"; };
|
399
|
+
C5A8B14A168B42F50020B206 /* nss.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = nss.c; path = ../../../rhodes/platform/shared/curl/lib/nss.c; sourceTree = "<group>"; };
|
400
|
+
C5A8B14B168B42F50020B206 /* nssg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = nssg.h; path = ../../../rhodes/platform/shared/curl/lib/nssg.h; sourceTree = "<group>"; };
|
401
|
+
C5A8B14C168B42F50020B206 /* nwlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = nwlib.c; path = ../../../rhodes/platform/shared/curl/lib/nwlib.c; sourceTree = "<group>"; };
|
402
|
+
C5A8B14D168B42F50020B206 /* nwos.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = nwos.c; path = ../../../rhodes/platform/shared/curl/lib/nwos.c; sourceTree = "<group>"; };
|
403
|
+
C5A8B14E168B42F50020B206 /* parsedate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = parsedate.c; path = ../../../rhodes/platform/shared/curl/lib/parsedate.c; sourceTree = "<group>"; };
|
404
|
+
C5A8B14F168B42F50020B206 /* parsedate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = parsedate.h; path = ../../../rhodes/platform/shared/curl/lib/parsedate.h; sourceTree = "<group>"; };
|
405
|
+
C5A8B150168B42F50020B206 /* progress.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = progress.c; path = ../../../rhodes/platform/shared/curl/lib/progress.c; sourceTree = "<group>"; };
|
406
|
+
C5A8B151168B42F50020B206 /* progress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = progress.h; path = ../../../rhodes/platform/shared/curl/lib/progress.h; sourceTree = "<group>"; };
|
407
|
+
C5A8B152168B42F50020B206 /* qssl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = qssl.c; path = ../../../rhodes/platform/shared/curl/lib/qssl.c; sourceTree = "<group>"; };
|
408
|
+
C5A8B153168B42F50020B206 /* qssl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qssl.h; path = ../../../rhodes/platform/shared/curl/lib/qssl.h; sourceTree = "<group>"; };
|
409
|
+
C5A8B154168B42F50020B206 /* rawstr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = rawstr.c; path = ../../../rhodes/platform/shared/curl/lib/rawstr.c; sourceTree = "<group>"; };
|
410
|
+
C5A8B155168B42F50020B206 /* rawstr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rawstr.h; path = ../../../rhodes/platform/shared/curl/lib/rawstr.h; sourceTree = "<group>"; };
|
411
|
+
C5A8B156168B42F50020B206 /* rhossl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = rhossl.c; path = ../../../rhodes/platform/shared/curl/lib/rhossl.c; sourceTree = "<group>"; };
|
412
|
+
C5A8B157168B42F50020B206 /* rhossl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rhossl.h; path = ../../../rhodes/platform/shared/curl/lib/rhossl.h; sourceTree = "<group>"; };
|
413
|
+
C5A8B158168B42F50020B206 /* security.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = security.c; path = ../../../rhodes/platform/shared/curl/lib/security.c; sourceTree = "<group>"; };
|
414
|
+
C5A8B159168B42F50020B206 /* select.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = select.c; path = ../../../rhodes/platform/shared/curl/lib/select.c; sourceTree = "<group>"; };
|
415
|
+
C5A8B15A168B42F50020B206 /* select.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = select.h; path = ../../../rhodes/platform/shared/curl/lib/select.h; sourceTree = "<group>"; };
|
416
|
+
C5A8B15B168B42F50020B206 /* sendf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sendf.c; path = ../../../rhodes/platform/shared/curl/lib/sendf.c; sourceTree = "<group>"; };
|
417
|
+
C5A8B15C168B42F50020B206 /* sendf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sendf.h; path = ../../../rhodes/platform/shared/curl/lib/sendf.h; sourceTree = "<group>"; };
|
418
|
+
C5A8B15D168B42F50020B206 /* setup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = setup.h; path = ../../../rhodes/platform/shared/curl/lib/setup.h; sourceTree = "<group>"; };
|
419
|
+
C5A8B15E168B42F50020B206 /* setup_once.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = setup_once.h; path = ../../../rhodes/platform/shared/curl/lib/setup_once.h; sourceTree = "<group>"; };
|
420
|
+
C5A8B15F168B42F50020B206 /* share.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = share.c; path = ../../../rhodes/platform/shared/curl/lib/share.c; sourceTree = "<group>"; };
|
421
|
+
C5A8B160168B42F50020B206 /* share.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = share.h; path = ../../../rhodes/platform/shared/curl/lib/share.h; sourceTree = "<group>"; };
|
422
|
+
C5A8B161168B42F50020B206 /* slist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = slist.c; path = ../../../rhodes/platform/shared/curl/lib/slist.c; sourceTree = "<group>"; };
|
423
|
+
C5A8B162168B42F50020B206 /* slist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = slist.h; path = ../../../rhodes/platform/shared/curl/lib/slist.h; sourceTree = "<group>"; };
|
424
|
+
C5A8B163168B42F50020B206 /* sockaddr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = ../../../rhodes/platform/shared/curl/lib/sockaddr.h; sourceTree = "<group>"; };
|
425
|
+
C5A8B164168B42F50020B206 /* socks.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = socks.c; path = ../../../rhodes/platform/shared/curl/lib/socks.c; sourceTree = "<group>"; };
|
426
|
+
C5A8B165168B42F50020B206 /* socks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = socks.h; path = ../../../rhodes/platform/shared/curl/lib/socks.h; sourceTree = "<group>"; };
|
427
|
+
C5A8B166168B42F50020B206 /* socks_gssapi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = socks_gssapi.c; path = ../../../rhodes/platform/shared/curl/lib/socks_gssapi.c; sourceTree = "<group>"; };
|
428
|
+
C5A8B167168B42F50020B206 /* socks_sspi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = socks_sspi.c; path = ../../../rhodes/platform/shared/curl/lib/socks_sspi.c; sourceTree = "<group>"; };
|
429
|
+
C5A8B168168B42F50020B206 /* speedcheck.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = speedcheck.c; path = ../../../rhodes/platform/shared/curl/lib/speedcheck.c; sourceTree = "<group>"; };
|
430
|
+
C5A8B169168B42F50020B206 /* speedcheck.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = speedcheck.h; path = ../../../rhodes/platform/shared/curl/lib/speedcheck.h; sourceTree = "<group>"; };
|
431
|
+
C5A8B16A168B42F50020B206 /* splay.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = splay.c; path = ../../../rhodes/platform/shared/curl/lib/splay.c; sourceTree = "<group>"; };
|
432
|
+
C5A8B16B168B42F50020B206 /* splay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = splay.h; path = ../../../rhodes/platform/shared/curl/lib/splay.h; sourceTree = "<group>"; };
|
433
|
+
C5A8B16C168B42F50020B206 /* ssh.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ssh.c; path = ../../../rhodes/platform/shared/curl/lib/ssh.c; sourceTree = "<group>"; };
|
434
|
+
C5A8B16D168B42F50020B206 /* ssh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ssh.h; path = ../../../rhodes/platform/shared/curl/lib/ssh.h; sourceTree = "<group>"; };
|
435
|
+
C5A8B16E168B42F50020B206 /* sslgen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sslgen.c; path = ../../../rhodes/platform/shared/curl/lib/sslgen.c; sourceTree = "<group>"; };
|
436
|
+
C5A8B16F168B42F50020B206 /* sslgen.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sslgen.h; path = ../../../rhodes/platform/shared/curl/lib/sslgen.h; sourceTree = "<group>"; };
|
437
|
+
C5A8B170168B42F50020B206 /* ssluse.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ssluse.c; path = ../../../rhodes/platform/shared/curl/lib/ssluse.c; sourceTree = "<group>"; };
|
438
|
+
C5A8B171168B42F50020B206 /* ssluse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ssluse.h; path = ../../../rhodes/platform/shared/curl/lib/ssluse.h; sourceTree = "<group>"; };
|
439
|
+
C5A8B172168B42F50020B206 /* strdup.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = strdup.c; path = ../../../rhodes/platform/shared/curl/lib/strdup.c; sourceTree = "<group>"; };
|
440
|
+
C5A8B173168B42F50020B206 /* strdup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = strdup.h; path = ../../../rhodes/platform/shared/curl/lib/strdup.h; sourceTree = "<group>"; };
|
441
|
+
C5A8B174168B42F50020B206 /* strequal.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = strequal.c; path = ../../../rhodes/platform/shared/curl/lib/strequal.c; sourceTree = "<group>"; };
|
442
|
+
C5A8B175168B42F50020B206 /* strequal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = strequal.h; path = ../../../rhodes/platform/shared/curl/lib/strequal.h; sourceTree = "<group>"; };
|
443
|
+
C5A8B176168B42F50020B206 /* strerror.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = strerror.c; path = ../../../rhodes/platform/shared/curl/lib/strerror.c; sourceTree = "<group>"; };
|
444
|
+
C5A8B177168B42F50020B206 /* strerror.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = strerror.h; path = ../../../rhodes/platform/shared/curl/lib/strerror.h; sourceTree = "<group>"; };
|
445
|
+
C5A8B178168B42F50020B206 /* strtok.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = strtok.c; path = ../../../rhodes/platform/shared/curl/lib/strtok.c; sourceTree = "<group>"; };
|
446
|
+
C5A8B179168B42F50020B206 /* strtok.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = strtok.h; path = ../../../rhodes/platform/shared/curl/lib/strtok.h; sourceTree = "<group>"; };
|
447
|
+
C5A8B17A168B42F50020B206 /* strtoofft.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = strtoofft.c; path = ../../../rhodes/platform/shared/curl/lib/strtoofft.c; sourceTree = "<group>"; };
|
448
|
+
C5A8B17B168B42F50020B206 /* strtoofft.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = strtoofft.h; path = ../../../rhodes/platform/shared/curl/lib/strtoofft.h; sourceTree = "<group>"; };
|
449
|
+
C5A8B17C168B42F50020B206 /* telnet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = telnet.c; path = ../../../rhodes/platform/shared/curl/lib/telnet.c; sourceTree = "<group>"; };
|
450
|
+
C5A8B17D168B42F50020B206 /* telnet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = telnet.h; path = ../../../rhodes/platform/shared/curl/lib/telnet.h; sourceTree = "<group>"; };
|
451
|
+
C5A8B17E168B42F50020B206 /* tftp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tftp.c; path = ../../../rhodes/platform/shared/curl/lib/tftp.c; sourceTree = "<group>"; };
|
452
|
+
C5A8B17F168B42F50020B206 /* tftp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tftp.h; path = ../../../rhodes/platform/shared/curl/lib/tftp.h; sourceTree = "<group>"; };
|
453
|
+
C5A8B180168B42F50020B206 /* timeval.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = timeval.c; path = ../../../rhodes/platform/shared/curl/lib/timeval.c; sourceTree = "<group>"; };
|
454
|
+
C5A8B181168B42F50020B206 /* timeval.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = timeval.h; path = ../../../rhodes/platform/shared/curl/lib/timeval.h; sourceTree = "<group>"; };
|
455
|
+
C5A8B182168B42F50020B206 /* transfer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = transfer.c; path = ../../../rhodes/platform/shared/curl/lib/transfer.c; sourceTree = "<group>"; };
|
456
|
+
C5A8B183168B42F50020B206 /* transfer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = transfer.h; path = ../../../rhodes/platform/shared/curl/lib/transfer.h; sourceTree = "<group>"; };
|
457
|
+
C5A8B184168B42F50020B206 /* url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = url.c; path = ../../../rhodes/platform/shared/curl/lib/url.c; sourceTree = "<group>"; };
|
458
|
+
C5A8B185168B42F50020B206 /* url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = url.h; path = ../../../rhodes/platform/shared/curl/lib/url.h; sourceTree = "<group>"; };
|
459
|
+
C5A8B186168B42F50020B206 /* urldata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = urldata.h; path = ../../../rhodes/platform/shared/curl/lib/urldata.h; sourceTree = "<group>"; };
|
460
|
+
C5A8B187168B42F50020B206 /* version.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = version.c; path = ../../../rhodes/platform/shared/curl/lib/version.c; sourceTree = "<group>"; };
|
461
|
+
C5A8B21B168B434D0020B206 /* RhoClassFactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RhoClassFactory.cpp; path = ../../../rhodes/platform/shared/common/iphone/RhoClassFactory.cpp; sourceTree = "<group>"; };
|
462
|
+
C5A8B21C168B434D0020B206 /* RhoClassfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoClassfactory.h; path = ../../../rhodes/platform/shared/common/iphone/RhoClassfactory.h; sourceTree = "<group>"; };
|
463
|
+
C5A8B21D168B434D0020B206 /* RhoCryptImpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoCryptImpl.h; path = ../../../rhodes/platform/shared/common/iphone/RhoCryptImpl.h; sourceTree = "<group>"; };
|
464
|
+
C5A8B21E168B434D0020B206 /* RhoCryptImpl.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = RhoCryptImpl.mm; path = ../../../rhodes/platform/shared/common/iphone/RhoCryptImpl.mm; sourceTree = "<group>"; };
|
465
|
+
C5A8B21F168B434D0020B206 /* RhoFileImpl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RhoFileImpl.m; path = ../../../rhodes/platform/shared/common/iphone/RhoFileImpl.m; sourceTree = "<group>"; };
|
466
|
+
C5A8B220168B434D0020B206 /* RhoThreadImpl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RhoThreadImpl.m; path = ../../../rhodes/platform/shared/common/iphone/RhoThreadImpl.m; sourceTree = "<group>"; };
|
467
|
+
C5A8B227168B439D0020B206 /* AutoPointer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AutoPointer.h; path = ../../../rhodes/platform/shared/common/AutoPointer.h; sourceTree = "<group>"; };
|
468
|
+
C5A8B228168B439D0020B206 /* InputStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = InputStream.h; path = ../../../rhodes/platform/shared/common/InputStream.h; sourceTree = "<group>"; };
|
469
|
+
C5A8B229168B439D0020B206 /* IRhoClassFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IRhoClassFactory.h; path = ../../../rhodes/platform/shared/common/IRhoClassFactory.h; sourceTree = "<group>"; };
|
470
|
+
C5A8B22A168B439D0020B206 /* IRhoThreadImpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IRhoThreadImpl.h; path = ../../../rhodes/platform/shared/common/IRhoThreadImpl.h; sourceTree = "<group>"; };
|
471
|
+
C5A8B22B168B439D0020B206 /* PosixThreadImpl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PosixThreadImpl.cpp; path = ../../../rhodes/platform/shared/common/PosixThreadImpl.cpp; sourceTree = "<group>"; };
|
472
|
+
C5A8B22C168B439D0020B206 /* PosixThreadImpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PosixThreadImpl.h; path = ../../../rhodes/platform/shared/common/PosixThreadImpl.h; sourceTree = "<group>"; };
|
473
|
+
C5A8B22D168B439D0020B206 /* RhoAppAdapter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoAppAdapter.h; path = ../../../rhodes/platform/shared/common/RhoAppAdapter.h; sourceTree = "<group>"; };
|
474
|
+
C5A8B22E168B439D0020B206 /* RhoConf.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RhoConf.cpp; path = ../../../rhodes/platform/shared/common/RhoConf.cpp; sourceTree = "<group>"; };
|
475
|
+
C5A8B22F168B439D0020B206 /* RhoConf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoConf.h; path = ../../../rhodes/platform/shared/common/RhoConf.h; sourceTree = "<group>"; };
|
476
|
+
C5A8B230168B439D0020B206 /* RhoDefs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoDefs.h; path = ../../../rhodes/platform/shared/common/RhoDefs.h; sourceTree = "<group>"; };
|
477
|
+
C5A8B231168B439D0020B206 /* RhodesAppBase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RhodesAppBase.cpp; path = ../../../rhodes/platform/shared/common/RhodesAppBase.cpp; sourceTree = "<group>"; };
|
478
|
+
C5A8B232168B439D0020B206 /* RhodesAppBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhodesAppBase.h; path = ../../../rhodes/platform/shared/common/RhodesAppBase.h; sourceTree = "<group>"; };
|
479
|
+
C5A8B233168B439D0020B206 /* RhoFatalError.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoFatalError.h; path = ../../../rhodes/platform/shared/common/RhoFatalError.h; sourceTree = "<group>"; };
|
480
|
+
C5A8B234168B439D0020B206 /* RhoFile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RhoFile.cpp; path = ../../../rhodes/platform/shared/common/RhoFile.cpp; sourceTree = "<group>"; };
|
481
|
+
C5A8B235168B439D0020B206 /* RhoFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoFile.h; path = ../../../rhodes/platform/shared/common/RhoFile.h; sourceTree = "<group>"; };
|
482
|
+
C5A8B236168B439D0020B206 /* RhoFilePath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoFilePath.h; path = ../../../rhodes/platform/shared/common/RhoFilePath.h; sourceTree = "<group>"; };
|
483
|
+
C5A8B237168B439D0020B206 /* RhoMutexLock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoMutexLock.h; path = ../../../rhodes/platform/shared/common/RhoMutexLock.h; sourceTree = "<group>"; };
|
484
|
+
C5A8B238168B439D0020B206 /* RhoPort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoPort.h; path = ../../../rhodes/platform/shared/common/RhoPort.h; sourceTree = "<group>"; };
|
485
|
+
C5A8B239168B439D0020B206 /* RhoStd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoStd.h; path = ../../../rhodes/platform/shared/common/RhoStd.h; sourceTree = "<group>"; };
|
486
|
+
C5A8B23A168B439D0020B206 /* RhoSystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoSystem.h; path = ../../../rhodes/platform/shared/common/RhoSystem.h; sourceTree = "<group>"; };
|
487
|
+
C5A8B23B168B439D0020B206 /* RhoThread.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RhoThread.cpp; path = ../../../rhodes/platform/shared/common/RhoThread.cpp; sourceTree = "<group>"; };
|
488
|
+
C5A8B23C168B439D0020B206 /* RhoThread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoThread.h; path = ../../../rhodes/platform/shared/common/RhoThread.h; sourceTree = "<group>"; };
|
489
|
+
C5A8B23D168B439D0020B206 /* RhoTime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoTime.h; path = ../../../rhodes/platform/shared/common/RhoTime.h; sourceTree = "<group>"; };
|
490
|
+
C5A8B23E168B439D0020B206 /* StringConverter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = StringConverter.h; path = ../../../rhodes/platform/shared/common/StringConverter.h; sourceTree = "<group>"; };
|
491
|
+
C5A8B23F168B439D0020B206 /* ThreadQueue.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadQueue.cpp; path = ../../../rhodes/platform/shared/common/ThreadQueue.cpp; sourceTree = "<group>"; };
|
492
|
+
C5A8B240168B439D0020B206 /* ThreadQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ThreadQueue.h; path = ../../../rhodes/platform/shared/common/ThreadQueue.h; sourceTree = "<group>"; };
|
493
|
+
C5A8B241168B439D0020B206 /* Tokenizer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Tokenizer.cpp; path = ../../../rhodes/platform/shared/common/Tokenizer.cpp; sourceTree = "<group>"; };
|
494
|
+
C5A8B242168B439D0020B206 /* Tokenizer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Tokenizer.h; path = ../../../rhodes/platform/shared/common/Tokenizer.h; sourceTree = "<group>"; };
|
495
|
+
C5A8B25F168B43B90020B206 /* DBAdapter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DBAdapter.cpp; path = ../../../rhodes/platform/shared/db/DBAdapter.cpp; sourceTree = "<group>"; };
|
496
|
+
C5A8B260168B43B90020B206 /* DBAdapter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DBAdapter.h; path = ../../../rhodes/platform/shared/db/DBAdapter.h; sourceTree = "<group>"; };
|
497
|
+
C5A8B261168B43B90020B206 /* DBAttrManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DBAttrManager.cpp; path = ../../../rhodes/platform/shared/db/DBAttrManager.cpp; sourceTree = "<group>"; };
|
498
|
+
C5A8B262168B43B90020B206 /* DBAttrManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DBAttrManager.h; path = ../../../rhodes/platform/shared/db/DBAttrManager.h; sourceTree = "<group>"; };
|
499
|
+
C5A8B263168B43B90020B206 /* DBImportTransaction.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DBImportTransaction.cpp; path = ../../../rhodes/platform/shared/db/DBImportTransaction.cpp; sourceTree = "<group>"; };
|
500
|
+
C5A8B264168B43B90020B206 /* DBImportTransaction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DBImportTransaction.h; path = ../../../rhodes/platform/shared/db/DBImportTransaction.h; sourceTree = "<group>"; };
|
501
|
+
C5A8B265168B43B90020B206 /* DBRequestHelper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DBRequestHelper.cpp; path = ../../../rhodes/platform/shared/db/DBRequestHelper.cpp; sourceTree = "<group>"; };
|
502
|
+
C5A8B266168B43B90020B206 /* DBRequestHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DBRequestHelper.h; path = ../../../rhodes/platform/shared/db/DBRequestHelper.h; sourceTree = "<group>"; };
|
503
|
+
C5A8B267168B43B90020B206 /* DBResult.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DBResult.cpp; path = ../../../rhodes/platform/shared/db/DBResult.cpp; sourceTree = "<group>"; };
|
504
|
+
C5A8B268168B43B90020B206 /* DBResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DBResult.h; path = ../../../rhodes/platform/shared/db/DBResult.h; sourceTree = "<group>"; };
|
505
|
+
C5A8B273168B43E00020B206 /* unzip.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = unzip.cpp; path = ../../../rhodes/platform/shared/unzip/unzip.cpp; sourceTree = "<group>"; };
|
506
|
+
C5A8B274168B43E00020B206 /* unzip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = unzip.h; path = ../../../rhodes/platform/shared/unzip/unzip.h; sourceTree = "<group>"; };
|
507
|
+
C5A8B275168B43E00020B206 /* zip.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = zip.cpp; path = ../../../rhodes/platform/shared/unzip/zip.cpp; sourceTree = "<group>"; };
|
508
|
+
C5A8B276168B43E00020B206 /* zip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = zip.h; path = ../../../rhodes/platform/shared/unzip/zip.h; sourceTree = "<group>"; };
|
509
|
+
C5A8B27B168B44860020B206 /* arraylist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = arraylist.c; path = ../../../rhodes/platform/shared/json/arraylist.c; sourceTree = "<group>"; };
|
510
|
+
C5A8B27C168B44860020B206 /* arraylist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = arraylist.h; path = ../../../rhodes/platform/shared/json/arraylist.h; sourceTree = "<group>"; };
|
511
|
+
C5A8B27D168B44860020B206 /* bits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = bits.h; path = ../../../rhodes/platform/shared/json/bits.h; sourceTree = "<group>"; };
|
512
|
+
C5A8B27E168B44860020B206 /* config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = config.h; path = ../../../rhodes/platform/shared/json/config.h; sourceTree = "<group>"; };
|
513
|
+
C5A8B27F168B44860020B206 /* json.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = json.h; path = ../../../rhodes/platform/shared/json/json.h; sourceTree = "<group>"; };
|
514
|
+
C5A8B280168B44860020B206 /* json_object.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = json_object.c; path = ../../../rhodes/platform/shared/json/json_object.c; sourceTree = "<group>"; };
|
515
|
+
C5A8B281168B44860020B206 /* json_object.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = json_object.h; path = ../../../rhodes/platform/shared/json/json_object.h; sourceTree = "<group>"; };
|
516
|
+
C5A8B282168B44860020B206 /* json_object_private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = json_object_private.h; path = ../../../rhodes/platform/shared/json/json_object_private.h; sourceTree = "<group>"; };
|
517
|
+
C5A8B283168B44860020B206 /* json_tokener.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = json_tokener.c; path = ../../../rhodes/platform/shared/json/json_tokener.c; sourceTree = "<group>"; };
|
518
|
+
C5A8B284168B44860020B206 /* json_tokener.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = json_tokener.h; path = ../../../rhodes/platform/shared/json/json_tokener.h; sourceTree = "<group>"; };
|
519
|
+
C5A8B285168B44860020B206 /* json_util.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = json_util.c; path = ../../../rhodes/platform/shared/json/json_util.c; sourceTree = "<group>"; };
|
520
|
+
C5A8B286168B44860020B206 /* json_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = ../../../rhodes/platform/shared/json/json_util.h; sourceTree = "<group>"; };
|
521
|
+
C5A8B287168B44860020B206 /* JSONIterator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = JSONIterator.cpp; path = ../../../rhodes/platform/shared/json/JSONIterator.cpp; sourceTree = "<group>"; };
|
522
|
+
C5A8B288168B44860020B206 /* JSONIterator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JSONIterator.h; path = ../../../rhodes/platform/shared/json/JSONIterator.h; sourceTree = "<group>"; };
|
523
|
+
C5A8B289168B44860020B206 /* linkhash.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = linkhash.c; path = ../../../rhodes/platform/shared/json/linkhash.c; sourceTree = "<group>"; };
|
524
|
+
C5A8B28A168B44860020B206 /* linkhash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = linkhash.h; path = ../../../rhodes/platform/shared/json/linkhash.h; sourceTree = "<group>"; };
|
525
|
+
C5A8B28B168B44860020B206 /* printbuf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = printbuf.c; path = ../../../rhodes/platform/shared/json/printbuf.c; sourceTree = "<group>"; };
|
526
|
+
C5A8B28C168B44860020B206 /* printbuf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = printbuf.h; path = ../../../rhodes/platform/shared/json/printbuf.h; sourceTree = "<group>"; };
|
527
|
+
C5A8B29F168B44B40020B206 /* RhoLog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RhoLog.cpp; path = ../../../rhodes/platform/shared/logging/RhoLog.cpp; sourceTree = "<group>"; };
|
528
|
+
C5A8B2A0168B44B40020B206 /* RhoLog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoLog.h; path = ../../../rhodes/platform/shared/logging/RhoLog.h; sourceTree = "<group>"; };
|
529
|
+
C5A8B2A1168B44B40020B206 /* RhoLogCat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoLogCat.h; path = ../../../rhodes/platform/shared/logging/RhoLogCat.h; sourceTree = "<group>"; };
|
530
|
+
C5A8B2A2168B44B40020B206 /* RhoLogConf.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RhoLogConf.cpp; path = ../../../rhodes/platform/shared/logging/RhoLogConf.cpp; sourceTree = "<group>"; };
|
531
|
+
C5A8B2A3168B44B40020B206 /* RhoLogConf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoLogConf.h; path = ../../../rhodes/platform/shared/logging/RhoLogConf.h; sourceTree = "<group>"; };
|
532
|
+
C5A8B2A4168B44B40020B206 /* RhoLogSink.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RhoLogSink.cpp; path = ../../../rhodes/platform/shared/logging/RhoLogSink.cpp; sourceTree = "<group>"; };
|
533
|
+
C5A8B2A5168B44B40020B206 /* RhoLogSink.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RhoLogSink.h; path = ../../../rhodes/platform/shared/logging/RhoLogSink.h; sourceTree = "<group>"; };
|
534
|
+
C5A8B2A6168B44B40020B206 /* RhoPlainLog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RhoPlainLog.cpp; path = ../../../rhodes/platform/shared/logging/RhoPlainLog.cpp; sourceTree = "<group>"; };
|
535
|
+
C5A8B2AF168B44DC0020B206 /* CURLNetRequest.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CURLNetRequest.cpp; path = ../../../rhodes/platform/shared/net/CURLNetRequest.cpp; sourceTree = "<group>"; };
|
536
|
+
C5A8B2B0168B44DC0020B206 /* CURLNetRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CURLNetRequest.h; path = ../../../rhodes/platform/shared/net/CURLNetRequest.h; sourceTree = "<group>"; };
|
537
|
+
C5A8B2B1168B44DC0020B206 /* INetRequest.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = INetRequest.cpp; path = ../../../rhodes/platform/shared/net/INetRequest.cpp; sourceTree = "<group>"; };
|
538
|
+
C5A8B2B2168B44DC0020B206 /* INetRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = INetRequest.h; path = ../../../rhodes/platform/shared/net/INetRequest.h; sourceTree = "<group>"; };
|
539
|
+
C5A8B2B3168B44DC0020B206 /* ssl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ssl.cpp; path = ../../../rhodes/platform/shared/net/ssl.cpp; sourceTree = "<group>"; };
|
540
|
+
C5A8B2B4168B44DC0020B206 /* ssl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ssl.h; path = ../../../rhodes/platform/shared/net/ssl.h; sourceTree = "<group>"; };
|
541
|
+
C5A8B2B5168B44DC0020B206 /* URI.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = URI.cpp; path = ../../../rhodes/platform/shared/net/URI.cpp; sourceTree = "<group>"; };
|
542
|
+
C5A8B2B6168B44DC0020B206 /* URI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = URI.h; path = ../../../rhodes/platform/shared/net/URI.h; sourceTree = "<group>"; };
|
543
|
+
C5A8B2BF168B44F10020B206 /* sslimpl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = sslimpl.cpp; path = ../../../rhodes/platform/shared/net/iphone/sslimpl.cpp; sourceTree = "<group>"; };
|
544
|
+
C5A8B2C0168B44F10020B206 /* sslimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sslimpl.h; path = ../../../rhodes/platform/shared/net/iphone/sslimpl.h; sourceTree = "<group>"; };
|
545
|
+
D2AAC07E0554694100DB518D /* libRhoConnectClient.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libRhoConnectClient.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
546
|
+
/* End PBXFileReference section */
|
547
|
+
|
548
|
+
/* Begin PBXFrameworksBuildPhase section */
|
549
|
+
D2AAC07C0554694100DB518D /* Frameworks */ = {
|
550
|
+
isa = PBXFrameworksBuildPhase;
|
551
|
+
buildActionMask = 2147483647;
|
552
|
+
files = (
|
553
|
+
);
|
554
|
+
runOnlyForDeploymentPostprocessing = 0;
|
555
|
+
};
|
556
|
+
/* End PBXFrameworksBuildPhase section */
|
557
|
+
|
558
|
+
/* Begin PBXGroup section */
|
559
|
+
034768DFFF38A50411DB9C8B /* Products */ = {
|
560
|
+
isa = PBXGroup;
|
561
|
+
children = (
|
562
|
+
D2AAC07E0554694100DB518D /* libRhoConnectClient.a */,
|
563
|
+
);
|
564
|
+
name = Products;
|
565
|
+
sourceTree = "<group>";
|
566
|
+
};
|
567
|
+
0867D691FE84028FC02AAC07 /* SyncClient */ = {
|
568
|
+
isa = PBXGroup;
|
569
|
+
children = (
|
570
|
+
5C0D080F121CFBC90022E83C /* Shared */,
|
571
|
+
08FB77AEFE84172EC02AAC07 /* Classes */,
|
572
|
+
034768DFFF38A50411DB9C8B /* Products */,
|
573
|
+
);
|
574
|
+
name = SyncClient;
|
575
|
+
sourceTree = "<group>";
|
576
|
+
};
|
577
|
+
08FB77AEFE84172EC02AAC07 /* Classes */ = {
|
578
|
+
isa = PBXGroup;
|
579
|
+
children = (
|
580
|
+
5C40D1EA12282E4D007298DA /* RhomModel.h */,
|
581
|
+
5C40D1EB12282E4D007298DA /* RhomModel.m */,
|
582
|
+
5C40D1EC12282E4D007298DA /* RhoConnectClient.h */,
|
583
|
+
5C40D1ED12282E4D007298DA /* RhoConnectClient.m */,
|
584
|
+
5C40D1EE12282E4D007298DA /* RhoConnectNotify.h */,
|
585
|
+
5C40D1EF12282E4D007298DA /* RhoConnectNotify.m */,
|
586
|
+
5C5CD3BE13620579006DD4C5 /* RhoConnectObjectNotify.h */,
|
587
|
+
5C5CD3BF13620579006DD4C5 /* RhoConnectObjectNotify.m */,
|
588
|
+
);
|
589
|
+
name = Classes;
|
590
|
+
sourceTree = "<group>";
|
591
|
+
};
|
592
|
+
5C0D080F121CFBC90022E83C /* Shared */ = {
|
593
|
+
isa = PBXGroup;
|
594
|
+
children = (
|
595
|
+
65CC373F185E2704003C83EA /* api_generator */,
|
596
|
+
C5D2782315A1BDF200A7EFC7 /* rubyext */,
|
597
|
+
5C59ACEB12E82C3100ED4A1E /* sqlite */,
|
598
|
+
5C0D0A89121D2B380022E83C /* curl */,
|
599
|
+
5C0D088D121D00B40022E83C /* common */,
|
600
|
+
5C0D0880121CFF5A0022E83C /* db */,
|
601
|
+
5C0D087B121CFE940022E83C /* unzip */,
|
602
|
+
5C0D0850121CFE350022E83C /* json */,
|
603
|
+
5C0D083F121CFE060022E83C /* logging */,
|
604
|
+
5C0D0833121CFD860022E83C /* net */,
|
605
|
+
5C0D0815121CFC730022E83C /* sync */,
|
606
|
+
5C0D0810121CFC3F0022E83C /* RhoConnectClient */,
|
607
|
+
);
|
608
|
+
name = Shared;
|
609
|
+
sourceTree = "<group>";
|
610
|
+
};
|
611
|
+
5C0D0810121CFC3F0022E83C /* RhoConnectClient */ = {
|
612
|
+
isa = PBXGroup;
|
613
|
+
children = (
|
614
|
+
5CCB159D13DB5549001337D6 /* RhoError.h */,
|
615
|
+
5CCB159E13DB5549001337D6 /* RhoConnectClient.h */,
|
616
|
+
5CCB159F13DB5549001337D6 /* RhoConnectClient.cpp */,
|
617
|
+
);
|
618
|
+
name = RhoConnectClient;
|
619
|
+
sourceTree = "<group>";
|
620
|
+
};
|
621
|
+
5C0D0815121CFC730022E83C /* sync */ = {
|
622
|
+
isa = PBXGroup;
|
623
|
+
children = (
|
624
|
+
65CC3727185E0FF1003C83EA /* ISyncProtocol.h */,
|
625
|
+
65CC3728185E0FF1003C83EA /* SyncEngine.cpp */,
|
626
|
+
65CC3729185E0FF1003C83EA /* SyncEngine.h */,
|
627
|
+
65CC372A185E0FF1003C83EA /* SyncNotify.cpp */,
|
628
|
+
65CC372B185E0FF1003C83EA /* SyncNotify.h */,
|
629
|
+
65CC372C185E0FF1003C83EA /* SyncProtocol_3.h */,
|
630
|
+
65CC372D185E0FF1003C83EA /* SyncProtocol_4.h */,
|
631
|
+
65CC372E185E0FF1003C83EA /* SyncSource.cpp */,
|
632
|
+
65CC372F185E0FF1003C83EA /* SyncSource.h */,
|
633
|
+
65CC3730185E0FF1003C83EA /* SyncThread.cpp */,
|
634
|
+
65CC3731185E0FF1003C83EA /* SyncThread.h */,
|
635
|
+
C5186009168B4EDE004D12AB /* RhoconnectClientManager.cpp */,
|
636
|
+
);
|
637
|
+
name = sync;
|
638
|
+
sourceTree = "<group>";
|
639
|
+
};
|
640
|
+
5C0D0833121CFD860022E83C /* net */ = {
|
641
|
+
isa = PBXGroup;
|
642
|
+
children = (
|
643
|
+
C5A8B2AF168B44DC0020B206 /* CURLNetRequest.cpp */,
|
644
|
+
C5A8B2B0168B44DC0020B206 /* CURLNetRequest.h */,
|
645
|
+
C5A8B2B1168B44DC0020B206 /* INetRequest.cpp */,
|
646
|
+
C5A8B2B2168B44DC0020B206 /* INetRequest.h */,
|
647
|
+
C5A8B2B3168B44DC0020B206 /* ssl.cpp */,
|
648
|
+
C5A8B2B4168B44DC0020B206 /* ssl.h */,
|
649
|
+
C5A8B2B5168B44DC0020B206 /* URI.cpp */,
|
650
|
+
C5A8B2B6168B44DC0020B206 /* URI.h */,
|
651
|
+
5C0D0BBB121D2E740022E83C /* iphone */,
|
652
|
+
);
|
653
|
+
name = net;
|
654
|
+
sourceTree = "<group>";
|
655
|
+
};
|
656
|
+
5C0D083F121CFE060022E83C /* logging */ = {
|
657
|
+
isa = PBXGroup;
|
658
|
+
children = (
|
659
|
+
C5A8B29F168B44B40020B206 /* RhoLog.cpp */,
|
660
|
+
C5A8B2A0168B44B40020B206 /* RhoLog.h */,
|
661
|
+
C5A8B2A1168B44B40020B206 /* RhoLogCat.h */,
|
662
|
+
C5A8B2A2168B44B40020B206 /* RhoLogConf.cpp */,
|
663
|
+
C5A8B2A3168B44B40020B206 /* RhoLogConf.h */,
|
664
|
+
C5A8B2A4168B44B40020B206 /* RhoLogSink.cpp */,
|
665
|
+
C5A8B2A5168B44B40020B206 /* RhoLogSink.h */,
|
666
|
+
C5A8B2A6168B44B40020B206 /* RhoPlainLog.cpp */,
|
667
|
+
);
|
668
|
+
name = logging;
|
669
|
+
sourceTree = "<group>";
|
670
|
+
};
|
671
|
+
5C0D0850121CFE350022E83C /* json */ = {
|
672
|
+
isa = PBXGroup;
|
673
|
+
children = (
|
674
|
+
C5A8B27B168B44860020B206 /* arraylist.c */,
|
675
|
+
C5A8B27C168B44860020B206 /* arraylist.h */,
|
676
|
+
C5A8B27D168B44860020B206 /* bits.h */,
|
677
|
+
C5A8B27E168B44860020B206 /* config.h */,
|
678
|
+
C5A8B27F168B44860020B206 /* json.h */,
|
679
|
+
C5A8B280168B44860020B206 /* json_object.c */,
|
680
|
+
C5A8B281168B44860020B206 /* json_object.h */,
|
681
|
+
C5A8B282168B44860020B206 /* json_object_private.h */,
|
682
|
+
C5A8B283168B44860020B206 /* json_tokener.c */,
|
683
|
+
C5A8B284168B44860020B206 /* json_tokener.h */,
|
684
|
+
C5A8B285168B44860020B206 /* json_util.c */,
|
685
|
+
C5A8B286168B44860020B206 /* json_util.h */,
|
686
|
+
C5A8B287168B44860020B206 /* JSONIterator.cpp */,
|
687
|
+
C5A8B288168B44860020B206 /* JSONIterator.h */,
|
688
|
+
C5A8B289168B44860020B206 /* linkhash.c */,
|
689
|
+
C5A8B28A168B44860020B206 /* linkhash.h */,
|
690
|
+
C5A8B28B168B44860020B206 /* printbuf.c */,
|
691
|
+
C5A8B28C168B44860020B206 /* printbuf.h */,
|
692
|
+
);
|
693
|
+
name = json;
|
694
|
+
sourceTree = "<group>";
|
695
|
+
};
|
696
|
+
5C0D087B121CFE940022E83C /* unzip */ = {
|
697
|
+
isa = PBXGroup;
|
698
|
+
children = (
|
699
|
+
C5A8B273168B43E00020B206 /* unzip.cpp */,
|
700
|
+
C5A8B274168B43E00020B206 /* unzip.h */,
|
701
|
+
C5A8B275168B43E00020B206 /* zip.cpp */,
|
702
|
+
C5A8B276168B43E00020B206 /* zip.h */,
|
703
|
+
);
|
704
|
+
name = unzip;
|
705
|
+
sourceTree = "<group>";
|
706
|
+
};
|
707
|
+
5C0D0880121CFF5A0022E83C /* db */ = {
|
708
|
+
isa = PBXGroup;
|
709
|
+
children = (
|
710
|
+
C5A8B25F168B43B90020B206 /* DBAdapter.cpp */,
|
711
|
+
C5A8B260168B43B90020B206 /* DBAdapter.h */,
|
712
|
+
C5A8B261168B43B90020B206 /* DBAttrManager.cpp */,
|
713
|
+
C5A8B262168B43B90020B206 /* DBAttrManager.h */,
|
714
|
+
C5A8B263168B43B90020B206 /* DBImportTransaction.cpp */,
|
715
|
+
C5A8B264168B43B90020B206 /* DBImportTransaction.h */,
|
716
|
+
C5A8B265168B43B90020B206 /* DBRequestHelper.cpp */,
|
717
|
+
C5A8B266168B43B90020B206 /* DBRequestHelper.h */,
|
718
|
+
C5A8B267168B43B90020B206 /* DBResult.cpp */,
|
719
|
+
C5A8B268168B43B90020B206 /* DBResult.h */,
|
720
|
+
);
|
721
|
+
name = db;
|
722
|
+
sourceTree = "<group>";
|
723
|
+
};
|
724
|
+
5C0D088D121D00B40022E83C /* common */ = {
|
725
|
+
isa = PBXGroup;
|
726
|
+
children = (
|
727
|
+
C5186010168B58A3004D12AB /* RhoPushManager.cpp */,
|
728
|
+
5C0D0A24121D26600022E83C /* iphone */,
|
729
|
+
C5A8B227168B439D0020B206 /* AutoPointer.h */,
|
730
|
+
C5A8B228168B439D0020B206 /* InputStream.h */,
|
731
|
+
C5A8B229168B439D0020B206 /* IRhoClassFactory.h */,
|
732
|
+
C5A8B22A168B439D0020B206 /* IRhoThreadImpl.h */,
|
733
|
+
C5A8B22B168B439D0020B206 /* PosixThreadImpl.cpp */,
|
734
|
+
C5A8B22C168B439D0020B206 /* PosixThreadImpl.h */,
|
735
|
+
C5A8B22D168B439D0020B206 /* RhoAppAdapter.h */,
|
736
|
+
C5A8B22E168B439D0020B206 /* RhoConf.cpp */,
|
737
|
+
C5A8B22F168B439D0020B206 /* RhoConf.h */,
|
738
|
+
C5A8B230168B439D0020B206 /* RhoDefs.h */,
|
739
|
+
C5A8B231168B439D0020B206 /* RhodesAppBase.cpp */,
|
740
|
+
C5A8B232168B439D0020B206 /* RhodesAppBase.h */,
|
741
|
+
C5A8B233168B439D0020B206 /* RhoFatalError.h */,
|
742
|
+
C5A8B234168B439D0020B206 /* RhoFile.cpp */,
|
743
|
+
C5A8B235168B439D0020B206 /* RhoFile.h */,
|
744
|
+
C5A8B236168B439D0020B206 /* RhoFilePath.h */,
|
745
|
+
C5A8B237168B439D0020B206 /* RhoMutexLock.h */,
|
746
|
+
C5A8B238168B439D0020B206 /* RhoPort.h */,
|
747
|
+
C5A8B239168B439D0020B206 /* RhoStd.h */,
|
748
|
+
C5A8B23A168B439D0020B206 /* RhoSystem.h */,
|
749
|
+
C5A8B23B168B439D0020B206 /* RhoThread.cpp */,
|
750
|
+
C5A8B23C168B439D0020B206 /* RhoThread.h */,
|
751
|
+
C5A8B23D168B439D0020B206 /* RhoTime.h */,
|
752
|
+
C5A8B23E168B439D0020B206 /* StringConverter.h */,
|
753
|
+
C5A8B23F168B439D0020B206 /* ThreadQueue.cpp */,
|
754
|
+
C5A8B240168B439D0020B206 /* ThreadQueue.h */,
|
755
|
+
C5A8B241168B439D0020B206 /* Tokenizer.cpp */,
|
756
|
+
C5A8B242168B439D0020B206 /* Tokenizer.h */,
|
757
|
+
);
|
758
|
+
name = common;
|
759
|
+
sourceTree = "<group>";
|
760
|
+
};
|
761
|
+
5C0D0A24121D26600022E83C /* iphone */ = {
|
762
|
+
isa = PBXGroup;
|
763
|
+
children = (
|
764
|
+
C5A8B21B168B434D0020B206 /* RhoClassFactory.cpp */,
|
765
|
+
C5A8B21C168B434D0020B206 /* RhoClassfactory.h */,
|
766
|
+
C5A8B21D168B434D0020B206 /* RhoCryptImpl.h */,
|
767
|
+
C5A8B21E168B434D0020B206 /* RhoCryptImpl.mm */,
|
768
|
+
C5A8B21F168B434D0020B206 /* RhoFileImpl.m */,
|
769
|
+
C5A8B220168B434D0020B206 /* RhoThreadImpl.m */,
|
770
|
+
);
|
771
|
+
name = iphone;
|
772
|
+
sourceTree = "<group>";
|
773
|
+
};
|
774
|
+
5C0D0A89121D2B380022E83C /* curl */ = {
|
775
|
+
isa = PBXGroup;
|
776
|
+
children = (
|
777
|
+
C5A8B0F7168B42F50020B206 /* amigaos.c */,
|
778
|
+
C5A8B0F8168B42F50020B206 /* arpa_telnet.h */,
|
779
|
+
C5A8B0F9168B42F50020B206 /* base64.c */,
|
780
|
+
C5A8B0FA168B42F50020B206 /* config-mac.h */,
|
781
|
+
C5A8B0FB168B42F50020B206 /* config-symbian.h */,
|
782
|
+
C5A8B0FC168B42F50020B206 /* config-win32.h */,
|
783
|
+
C5A8B0FD168B42F50020B206 /* config-win32ce.h */,
|
784
|
+
C5A8B0FE168B42F50020B206 /* connect.c */,
|
785
|
+
C5A8B0FF168B42F50020B206 /* connect.h */,
|
786
|
+
C5A8B100168B42F50020B206 /* content_encoding.c */,
|
787
|
+
C5A8B101168B42F50020B206 /* content_encoding.h */,
|
788
|
+
C5A8B102168B42F50020B206 /* cookie.c */,
|
789
|
+
C5A8B103168B42F50020B206 /* cookie.h */,
|
790
|
+
C5A8B104168B42F50020B206 /* curl_addrinfo.c */,
|
791
|
+
C5A8B105168B42F50020B206 /* curl_addrinfo.h */,
|
792
|
+
C5A8B106168B42F50020B206 /* curl_base64.h */,
|
793
|
+
C5A8B107168B42F50020B206 /* curl_config.h */,
|
794
|
+
C5A8B108168B42F50020B206 /* curl_ldap.h */,
|
795
|
+
C5A8B109168B42F50020B206 /* curl_md5.h */,
|
796
|
+
C5A8B10A168B42F50020B206 /* curl_memory.h */,
|
797
|
+
C5A8B10B168B42F50020B206 /* curl_memrchr.c */,
|
798
|
+
C5A8B10C168B42F50020B206 /* curl_memrchr.h */,
|
799
|
+
C5A8B10D168B42F50020B206 /* curl_rand.c */,
|
800
|
+
C5A8B10E168B42F50020B206 /* curl_rand.h */,
|
801
|
+
C5A8B10F168B42F50020B206 /* curl_sspi.c */,
|
802
|
+
C5A8B110168B42F50020B206 /* dict.c */,
|
803
|
+
C5A8B111168B42F50020B206 /* dict.h */,
|
804
|
+
C5A8B112168B42F50020B206 /* easy.c */,
|
805
|
+
C5A8B113168B42F50020B206 /* easyif.h */,
|
806
|
+
C5A8B114168B42F50020B206 /* escape.c */,
|
807
|
+
C5A8B115168B42F50020B206 /* escape.h */,
|
808
|
+
C5A8B116168B42F50020B206 /* file.c */,
|
809
|
+
C5A8B117168B42F50020B206 /* file.h */,
|
810
|
+
C5A8B118168B42F50020B206 /* formdata.c */,
|
811
|
+
C5A8B119168B42F50020B206 /* formdata.h */,
|
812
|
+
C5A8B11A168B42F50020B206 /* ftp.c */,
|
813
|
+
C5A8B11B168B42F50020B206 /* ftp.h */,
|
814
|
+
C5A8B11C168B42F50020B206 /* getenv.c */,
|
815
|
+
C5A8B11D168B42F50020B206 /* getinfo.c */,
|
816
|
+
C5A8B11E168B42F50020B206 /* getinfo.h */,
|
817
|
+
C5A8B11F168B42F50020B206 /* gtls.c */,
|
818
|
+
C5A8B120168B42F50020B206 /* gtls.h */,
|
819
|
+
C5A8B121168B42F50020B206 /* hash.c */,
|
820
|
+
C5A8B122168B42F50020B206 /* hash.h */,
|
821
|
+
C5A8B123168B42F50020B206 /* hostares.c */,
|
822
|
+
C5A8B124168B42F50020B206 /* hostasyn.c */,
|
823
|
+
C5A8B125168B42F50020B206 /* hostip.c */,
|
824
|
+
C5A8B126168B42F50020B206 /* hostip.h */,
|
825
|
+
C5A8B127168B42F50020B206 /* hostip4.c */,
|
826
|
+
C5A8B128168B42F50020B206 /* hostip6.c */,
|
827
|
+
C5A8B129168B42F50020B206 /* hostsyn.c */,
|
828
|
+
C5A8B12A168B42F50020B206 /* hostthre.c */,
|
829
|
+
C5A8B12B168B42F50020B206 /* http.c */,
|
830
|
+
C5A8B12C168B42F50020B206 /* http.h */,
|
831
|
+
C5A8B12D168B42F50020B206 /* http_chunks.c */,
|
832
|
+
C5A8B12E168B42F50020B206 /* http_chunks.h */,
|
833
|
+
C5A8B12F168B42F50020B206 /* http_digest.c */,
|
834
|
+
C5A8B130168B42F50020B206 /* http_digest.h */,
|
835
|
+
C5A8B131168B42F50020B206 /* http_negotiate.c */,
|
836
|
+
C5A8B132168B42F50020B206 /* http_negotiate.h */,
|
837
|
+
C5A8B133168B42F50020B206 /* http_ntlm.c */,
|
838
|
+
C5A8B134168B42F50020B206 /* http_ntlm.h */,
|
839
|
+
C5A8B135168B42F50020B206 /* if2ip.c */,
|
840
|
+
C5A8B136168B42F50020B206 /* if2ip.h */,
|
841
|
+
C5A8B137168B42F50020B206 /* inet_ntop.c */,
|
842
|
+
C5A8B138168B42F50020B206 /* inet_ntop.h */,
|
843
|
+
C5A8B139168B42F50020B206 /* inet_pton.c */,
|
844
|
+
C5A8B13A168B42F50020B206 /* inet_pton.h */,
|
845
|
+
C5A8B13B168B42F50020B206 /* krb4.c */,
|
846
|
+
C5A8B13C168B42F50020B206 /* krb5.c */,
|
847
|
+
C5A8B13D168B42F50020B206 /* ldap.c */,
|
848
|
+
C5A8B13E168B42F50020B206 /* llist.c */,
|
849
|
+
C5A8B13F168B42F50020B206 /* llist.h */,
|
850
|
+
C5A8B140168B42F50020B206 /* md5.c */,
|
851
|
+
C5A8B141168B42F50020B206 /* memdebug.c */,
|
852
|
+
C5A8B142168B42F50020B206 /* memdebug.h */,
|
853
|
+
C5A8B143168B42F50020B206 /* mprintf.c */,
|
854
|
+
C5A8B144168B42F50020B206 /* multi.c */,
|
855
|
+
C5A8B145168B42F50020B206 /* multiif.h */,
|
856
|
+
C5A8B146168B42F50020B206 /* netrc.c */,
|
857
|
+
C5A8B147168B42F50020B206 /* netrc.h */,
|
858
|
+
C5A8B148168B42F50020B206 /* nonblock.c */,
|
859
|
+
C5A8B149168B42F50020B206 /* nonblock.h */,
|
860
|
+
C5A8B14A168B42F50020B206 /* nss.c */,
|
861
|
+
C5A8B14B168B42F50020B206 /* nssg.h */,
|
862
|
+
C5A8B14C168B42F50020B206 /* nwlib.c */,
|
863
|
+
C5A8B14D168B42F50020B206 /* nwos.c */,
|
864
|
+
C5A8B14E168B42F50020B206 /* parsedate.c */,
|
865
|
+
C5A8B14F168B42F50020B206 /* parsedate.h */,
|
866
|
+
C5A8B150168B42F50020B206 /* progress.c */,
|
867
|
+
C5A8B151168B42F50020B206 /* progress.h */,
|
868
|
+
C5A8B152168B42F50020B206 /* qssl.c */,
|
869
|
+
C5A8B153168B42F50020B206 /* qssl.h */,
|
870
|
+
C5A8B154168B42F50020B206 /* rawstr.c */,
|
871
|
+
C5A8B155168B42F50020B206 /* rawstr.h */,
|
872
|
+
C5A8B156168B42F50020B206 /* rhossl.c */,
|
873
|
+
C5A8B157168B42F50020B206 /* rhossl.h */,
|
874
|
+
C5A8B158168B42F50020B206 /* security.c */,
|
875
|
+
C5A8B159168B42F50020B206 /* select.c */,
|
876
|
+
C5A8B15A168B42F50020B206 /* select.h */,
|
877
|
+
C5A8B15B168B42F50020B206 /* sendf.c */,
|
878
|
+
C5A8B15C168B42F50020B206 /* sendf.h */,
|
879
|
+
C5A8B15D168B42F50020B206 /* setup.h */,
|
880
|
+
C5A8B15E168B42F50020B206 /* setup_once.h */,
|
881
|
+
C5A8B15F168B42F50020B206 /* share.c */,
|
882
|
+
C5A8B160168B42F50020B206 /* share.h */,
|
883
|
+
C5A8B161168B42F50020B206 /* slist.c */,
|
884
|
+
C5A8B162168B42F50020B206 /* slist.h */,
|
885
|
+
C5A8B163168B42F50020B206 /* sockaddr.h */,
|
886
|
+
C5A8B164168B42F50020B206 /* socks.c */,
|
887
|
+
C5A8B165168B42F50020B206 /* socks.h */,
|
888
|
+
C5A8B166168B42F50020B206 /* socks_gssapi.c */,
|
889
|
+
C5A8B167168B42F50020B206 /* socks_sspi.c */,
|
890
|
+
C5A8B168168B42F50020B206 /* speedcheck.c */,
|
891
|
+
C5A8B169168B42F50020B206 /* speedcheck.h */,
|
892
|
+
C5A8B16A168B42F50020B206 /* splay.c */,
|
893
|
+
C5A8B16B168B42F50020B206 /* splay.h */,
|
894
|
+
C5A8B16C168B42F50020B206 /* ssh.c */,
|
895
|
+
C5A8B16D168B42F50020B206 /* ssh.h */,
|
896
|
+
C5A8B16E168B42F50020B206 /* sslgen.c */,
|
897
|
+
C5A8B16F168B42F50020B206 /* sslgen.h */,
|
898
|
+
C5A8B170168B42F50020B206 /* ssluse.c */,
|
899
|
+
C5A8B171168B42F50020B206 /* ssluse.h */,
|
900
|
+
C5A8B172168B42F50020B206 /* strdup.c */,
|
901
|
+
C5A8B173168B42F50020B206 /* strdup.h */,
|
902
|
+
C5A8B174168B42F50020B206 /* strequal.c */,
|
903
|
+
C5A8B175168B42F50020B206 /* strequal.h */,
|
904
|
+
C5A8B176168B42F50020B206 /* strerror.c */,
|
905
|
+
C5A8B177168B42F50020B206 /* strerror.h */,
|
906
|
+
C5A8B178168B42F50020B206 /* strtok.c */,
|
907
|
+
C5A8B179168B42F50020B206 /* strtok.h */,
|
908
|
+
C5A8B17A168B42F50020B206 /* strtoofft.c */,
|
909
|
+
C5A8B17B168B42F50020B206 /* strtoofft.h */,
|
910
|
+
C5A8B17C168B42F50020B206 /* telnet.c */,
|
911
|
+
C5A8B17D168B42F50020B206 /* telnet.h */,
|
912
|
+
C5A8B17E168B42F50020B206 /* tftp.c */,
|
913
|
+
C5A8B17F168B42F50020B206 /* tftp.h */,
|
914
|
+
C5A8B180168B42F50020B206 /* timeval.c */,
|
915
|
+
C5A8B181168B42F50020B206 /* timeval.h */,
|
916
|
+
C5A8B182168B42F50020B206 /* transfer.c */,
|
917
|
+
C5A8B183168B42F50020B206 /* transfer.h */,
|
918
|
+
C5A8B184168B42F50020B206 /* url.c */,
|
919
|
+
C5A8B185168B42F50020B206 /* url.h */,
|
920
|
+
C5A8B186168B42F50020B206 /* urldata.h */,
|
921
|
+
C5A8B187168B42F50020B206 /* version.c */,
|
922
|
+
);
|
923
|
+
name = curl;
|
924
|
+
sourceTree = "<group>";
|
925
|
+
};
|
926
|
+
5C0D0BBB121D2E740022E83C /* iphone */ = {
|
927
|
+
isa = PBXGroup;
|
928
|
+
children = (
|
929
|
+
C5A8B2BF168B44F10020B206 /* sslimpl.cpp */,
|
930
|
+
C5A8B2C0168B44F10020B206 /* sslimpl.h */,
|
931
|
+
);
|
932
|
+
name = iphone;
|
933
|
+
sourceTree = "<group>";
|
934
|
+
};
|
935
|
+
5C59ACEB12E82C3100ED4A1E /* sqlite */ = {
|
936
|
+
isa = PBXGroup;
|
937
|
+
children = (
|
938
|
+
C5A8B0F3168B42BF0020B206 /* sqlite3.c */,
|
939
|
+
C5A8B0F4168B42BF0020B206 /* sqlite3.h */,
|
940
|
+
);
|
941
|
+
name = sqlite;
|
942
|
+
sourceTree = "<group>";
|
943
|
+
};
|
944
|
+
65CC373F185E2704003C83EA /* api_generator */ = {
|
945
|
+
isa = PBXGroup;
|
946
|
+
children = (
|
947
|
+
65CC3740185E274E003C83EA /* MethodResult.cpp */,
|
948
|
+
65CC3741185E274E003C83EA /* MethodResult.h */,
|
949
|
+
65CC3742185E274E003C83EA /* js_helpers.cpp */,
|
950
|
+
65CC3743185E274E003C83EA /* JSONResultConvertor.h */,
|
951
|
+
65CC3744185E274E003C83EA /* BaseClasses.h */,
|
952
|
+
65CC3745185E274E003C83EA /* GeneratorQueue.h */,
|
953
|
+
65CC3746185E274E003C83EA /* js_helpers.h */,
|
954
|
+
65CC3747185E274E003C83EA /* MethodResultConvertor.h */,
|
955
|
+
65CC3748185E274E003C83EA /* StringifyHelper.cpp */,
|
956
|
+
65CC3749185E274E003C83EA /* StringifyHelper.h */,
|
957
|
+
);
|
958
|
+
name = api_generator;
|
959
|
+
sourceTree = "<group>";
|
960
|
+
};
|
961
|
+
C5D2782315A1BDF200A7EFC7 /* rubyext */ = {
|
962
|
+
isa = PBXGroup;
|
963
|
+
children = (
|
964
|
+
C5A8B0F0168B428A0020B206 /* ZipFiles.cpp */,
|
965
|
+
);
|
966
|
+
name = rubyext;
|
967
|
+
sourceTree = "<group>";
|
968
|
+
};
|
969
|
+
/* End PBXGroup section */
|
970
|
+
|
971
|
+
/* Begin PBXHeadersBuildPhase section */
|
972
|
+
D2AAC07A0554694100DB518D /* Headers */ = {
|
973
|
+
isa = PBXHeadersBuildPhase;
|
974
|
+
buildActionMask = 2147483647;
|
975
|
+
files = (
|
976
|
+
5C40D1F012282E4D007298DA /* RhomModel.h in Headers */,
|
977
|
+
5C40D1F212282E4D007298DA /* RhoConnectClient.h in Headers */,
|
978
|
+
5C40D1F412282E4D007298DA /* RhoConnectNotify.h in Headers */,
|
979
|
+
5C5CD3C013620579006DD4C5 /* RhoConnectObjectNotify.h in Headers */,
|
980
|
+
5CCB15A013DB5549001337D6 /* RhoError.h in Headers */,
|
981
|
+
5CCB15A113DB5549001337D6 /* RhoConnectClient.h in Headers */,
|
982
|
+
C5A8B0F6168B42BF0020B206 /* sqlite3.h in Headers */,
|
983
|
+
C5A8B189168B42F50020B206 /* arpa_telnet.h in Headers */,
|
984
|
+
C5A8B18B168B42F50020B206 /* config-mac.h in Headers */,
|
985
|
+
C5A8B18C168B42F50020B206 /* config-symbian.h in Headers */,
|
986
|
+
65CC3753185E274E003C83EA /* StringifyHelper.h in Headers */,
|
987
|
+
C5A8B18D168B42F50020B206 /* config-win32.h in Headers */,
|
988
|
+
C5A8B18E168B42F50020B206 /* config-win32ce.h in Headers */,
|
989
|
+
65CC3732185E0FF1003C83EA /* ISyncProtocol.h in Headers */,
|
990
|
+
C5A8B190168B42F50020B206 /* connect.h in Headers */,
|
991
|
+
65CC3738185E0FF1003C83EA /* SyncProtocol_4.h in Headers */,
|
992
|
+
C5A8B192168B42F50020B206 /* content_encoding.h in Headers */,
|
993
|
+
C5A8B194168B42F50020B206 /* cookie.h in Headers */,
|
994
|
+
C5A8B196168B42F50020B206 /* curl_addrinfo.h in Headers */,
|
995
|
+
C5A8B197168B42F50020B206 /* curl_base64.h in Headers */,
|
996
|
+
C5A8B198168B42F50020B206 /* curl_config.h in Headers */,
|
997
|
+
C5A8B199168B42F50020B206 /* curl_ldap.h in Headers */,
|
998
|
+
C5A8B19A168B42F50020B206 /* curl_md5.h in Headers */,
|
999
|
+
65CC3734185E0FF1003C83EA /* SyncEngine.h in Headers */,
|
1000
|
+
C5A8B19B168B42F50020B206 /* curl_memory.h in Headers */,
|
1001
|
+
C5A8B19D168B42F50020B206 /* curl_memrchr.h in Headers */,
|
1002
|
+
C5A8B19F168B42F50020B206 /* curl_rand.h in Headers */,
|
1003
|
+
C5A8B1A2168B42F50020B206 /* dict.h in Headers */,
|
1004
|
+
C5A8B1A4168B42F50020B206 /* easyif.h in Headers */,
|
1005
|
+
65CC374E185E274E003C83EA /* BaseClasses.h in Headers */,
|
1006
|
+
C5A8B1A6168B42F50020B206 /* escape.h in Headers */,
|
1007
|
+
C5A8B1A8168B42F50020B206 /* file.h in Headers */,
|
1008
|
+
C5A8B1AA168B42F50020B206 /* formdata.h in Headers */,
|
1009
|
+
C5A8B1AC168B42F50020B206 /* ftp.h in Headers */,
|
1010
|
+
C5A8B1AF168B42F50020B206 /* getinfo.h in Headers */,
|
1011
|
+
C5A8B1B1168B42F50020B206 /* gtls.h in Headers */,
|
1012
|
+
C5A8B1B3168B42F50020B206 /* hash.h in Headers */,
|
1013
|
+
C5A8B1B7168B42F50020B206 /* hostip.h in Headers */,
|
1014
|
+
65CC373A185E0FF1003C83EA /* SyncSource.h in Headers */,
|
1015
|
+
C5A8B1BD168B42F50020B206 /* http.h in Headers */,
|
1016
|
+
C5A8B1BF168B42F50020B206 /* http_chunks.h in Headers */,
|
1017
|
+
C5A8B1C1168B42F50020B206 /* http_digest.h in Headers */,
|
1018
|
+
C5A8B1C3168B42F50020B206 /* http_negotiate.h in Headers */,
|
1019
|
+
C5A8B1C5168B42F50020B206 /* http_ntlm.h in Headers */,
|
1020
|
+
65CC3750185E274E003C83EA /* js_helpers.h in Headers */,
|
1021
|
+
C5A8B1C7168B42F50020B206 /* if2ip.h in Headers */,
|
1022
|
+
C5A8B1C9168B42F50020B206 /* inet_ntop.h in Headers */,
|
1023
|
+
C5A8B1CB168B42F50020B206 /* inet_pton.h in Headers */,
|
1024
|
+
C5A8B1D0168B42F50020B206 /* llist.h in Headers */,
|
1025
|
+
C5A8B1D3168B42F50020B206 /* memdebug.h in Headers */,
|
1026
|
+
C5A8B1D6168B42F50020B206 /* multiif.h in Headers */,
|
1027
|
+
C5A8B1D8168B42F50020B206 /* netrc.h in Headers */,
|
1028
|
+
C5A8B1DA168B42F50020B206 /* nonblock.h in Headers */,
|
1029
|
+
C5A8B1DC168B42F50020B206 /* nssg.h in Headers */,
|
1030
|
+
C5A8B1E0168B42F50020B206 /* parsedate.h in Headers */,
|
1031
|
+
C5A8B1E2168B42F50020B206 /* progress.h in Headers */,
|
1032
|
+
C5A8B1E4168B42F50020B206 /* qssl.h in Headers */,
|
1033
|
+
C5A8B1E6168B42F50020B206 /* rawstr.h in Headers */,
|
1034
|
+
C5A8B1E8168B42F50020B206 /* rhossl.h in Headers */,
|
1035
|
+
C5A8B1EB168B42F50020B206 /* select.h in Headers */,
|
1036
|
+
C5A8B1ED168B42F50020B206 /* sendf.h in Headers */,
|
1037
|
+
C5A8B1EE168B42F50020B206 /* setup.h in Headers */,
|
1038
|
+
C5A8B1EF168B42F50020B206 /* setup_once.h in Headers */,
|
1039
|
+
C5A8B1F1168B42F50020B206 /* share.h in Headers */,
|
1040
|
+
C5A8B1F3168B42F50020B206 /* slist.h in Headers */,
|
1041
|
+
C5A8B1F4168B42F50020B206 /* sockaddr.h in Headers */,
|
1042
|
+
C5A8B1F6168B42F50020B206 /* socks.h in Headers */,
|
1043
|
+
65CC374B185E274E003C83EA /* MethodResult.h in Headers */,
|
1044
|
+
C5A8B1FA168B42F50020B206 /* speedcheck.h in Headers */,
|
1045
|
+
C5A8B1FC168B42F50020B206 /* splay.h in Headers */,
|
1046
|
+
C5A8B1FE168B42F50020B206 /* ssh.h in Headers */,
|
1047
|
+
C5A8B200168B42F50020B206 /* sslgen.h in Headers */,
|
1048
|
+
C5A8B202168B42F50020B206 /* ssluse.h in Headers */,
|
1049
|
+
C5A8B204168B42F50020B206 /* strdup.h in Headers */,
|
1050
|
+
C5A8B206168B42F50020B206 /* strequal.h in Headers */,
|
1051
|
+
C5A8B208168B42F50020B206 /* strerror.h in Headers */,
|
1052
|
+
C5A8B20A168B42F50020B206 /* strtok.h in Headers */,
|
1053
|
+
C5A8B20C168B42F50020B206 /* strtoofft.h in Headers */,
|
1054
|
+
C5A8B20E168B42F50020B206 /* telnet.h in Headers */,
|
1055
|
+
C5A8B210168B42F50020B206 /* tftp.h in Headers */,
|
1056
|
+
65CC3751185E274E003C83EA /* MethodResultConvertor.h in Headers */,
|
1057
|
+
C5A8B212168B42F50020B206 /* timeval.h in Headers */,
|
1058
|
+
C5A8B214168B42F50020B206 /* transfer.h in Headers */,
|
1059
|
+
C5A8B216168B42F50020B206 /* url.h in Headers */,
|
1060
|
+
C5A8B217168B42F50020B206 /* urldata.h in Headers */,
|
1061
|
+
65CC373C185E0FF1003C83EA /* SyncThread.h in Headers */,
|
1062
|
+
C5A8B222168B434D0020B206 /* RhoClassfactory.h in Headers */,
|
1063
|
+
65CC3737185E0FF1003C83EA /* SyncProtocol_3.h in Headers */,
|
1064
|
+
C5A8B223168B434D0020B206 /* RhoCryptImpl.h in Headers */,
|
1065
|
+
C5A8B243168B439D0020B206 /* AutoPointer.h in Headers */,
|
1066
|
+
C5A8B244168B439D0020B206 /* InputStream.h in Headers */,
|
1067
|
+
C5A8B245168B439D0020B206 /* IRhoClassFactory.h in Headers */,
|
1068
|
+
C5A8B246168B439D0020B206 /* IRhoThreadImpl.h in Headers */,
|
1069
|
+
C5A8B248168B439D0020B206 /* PosixThreadImpl.h in Headers */,
|
1070
|
+
C5A8B249168B439D0020B206 /* RhoAppAdapter.h in Headers */,
|
1071
|
+
C5A8B24B168B439D0020B206 /* RhoConf.h in Headers */,
|
1072
|
+
C5A8B24C168B439D0020B206 /* RhoDefs.h in Headers */,
|
1073
|
+
C5A8B24E168B439D0020B206 /* RhodesAppBase.h in Headers */,
|
1074
|
+
C5A8B24F168B439D0020B206 /* RhoFatalError.h in Headers */,
|
1075
|
+
C5A8B251168B439D0020B206 /* RhoFile.h in Headers */,
|
1076
|
+
C5A8B252168B439D0020B206 /* RhoFilePath.h in Headers */,
|
1077
|
+
C5A8B253168B439D0020B206 /* RhoMutexLock.h in Headers */,
|
1078
|
+
C5A8B254168B439D0020B206 /* RhoPort.h in Headers */,
|
1079
|
+
C5A8B255168B439D0020B206 /* RhoStd.h in Headers */,
|
1080
|
+
C5A8B256168B439D0020B206 /* RhoSystem.h in Headers */,
|
1081
|
+
C5A8B258168B439D0020B206 /* RhoThread.h in Headers */,
|
1082
|
+
C5A8B259168B439D0020B206 /* RhoTime.h in Headers */,
|
1083
|
+
C5A8B25A168B439D0020B206 /* StringConverter.h in Headers */,
|
1084
|
+
C5A8B25C168B439D0020B206 /* ThreadQueue.h in Headers */,
|
1085
|
+
C5A8B25E168B439D0020B206 /* Tokenizer.h in Headers */,
|
1086
|
+
65CC3736185E0FF1003C83EA /* SyncNotify.h in Headers */,
|
1087
|
+
C5A8B26A168B43B90020B206 /* DBAdapter.h in Headers */,
|
1088
|
+
C5A8B26C168B43B90020B206 /* DBAttrManager.h in Headers */,
|
1089
|
+
C5A8B26E168B43B90020B206 /* DBImportTransaction.h in Headers */,
|
1090
|
+
C5A8B270168B43B90020B206 /* DBRequestHelper.h in Headers */,
|
1091
|
+
C5A8B272168B43B90020B206 /* DBResult.h in Headers */,
|
1092
|
+
C5A8B278168B43E00020B206 /* unzip.h in Headers */,
|
1093
|
+
65CC374D185E274E003C83EA /* JSONResultConvertor.h in Headers */,
|
1094
|
+
C5A8B27A168B43E00020B206 /* zip.h in Headers */,
|
1095
|
+
C5A8B28E168B44860020B206 /* arraylist.h in Headers */,
|
1096
|
+
C5A8B28F168B44860020B206 /* bits.h in Headers */,
|
1097
|
+
C5A8B290168B44860020B206 /* config.h in Headers */,
|
1098
|
+
C5A8B291168B44860020B206 /* json.h in Headers */,
|
1099
|
+
C5A8B293168B44860020B206 /* json_object.h in Headers */,
|
1100
|
+
C5A8B294168B44860020B206 /* json_object_private.h in Headers */,
|
1101
|
+
C5A8B296168B44860020B206 /* json_tokener.h in Headers */,
|
1102
|
+
C5A8B298168B44860020B206 /* json_util.h in Headers */,
|
1103
|
+
C5A8B29A168B44860020B206 /* JSONIterator.h in Headers */,
|
1104
|
+
C5A8B29C168B44860020B206 /* linkhash.h in Headers */,
|
1105
|
+
C5A8B29E168B44860020B206 /* printbuf.h in Headers */,
|
1106
|
+
C5A8B2A8168B44B40020B206 /* RhoLog.h in Headers */,
|
1107
|
+
C5A8B2A9168B44B40020B206 /* RhoLogCat.h in Headers */,
|
1108
|
+
C5A8B2AB168B44B40020B206 /* RhoLogConf.h in Headers */,
|
1109
|
+
C5A8B2AD168B44B40020B206 /* RhoLogSink.h in Headers */,
|
1110
|
+
C5A8B2B8168B44DC0020B206 /* CURLNetRequest.h in Headers */,
|
1111
|
+
C5A8B2BA168B44DC0020B206 /* INetRequest.h in Headers */,
|
1112
|
+
C5A8B2BC168B44DC0020B206 /* ssl.h in Headers */,
|
1113
|
+
C5A8B2BE168B44DC0020B206 /* URI.h in Headers */,
|
1114
|
+
C5A8B2C2168B44F10020B206 /* sslimpl.h in Headers */,
|
1115
|
+
65CC374F185E274E003C83EA /* GeneratorQueue.h in Headers */,
|
1116
|
+
);
|
1117
|
+
runOnlyForDeploymentPostprocessing = 0;
|
1118
|
+
};
|
1119
|
+
/* End PBXHeadersBuildPhase section */
|
1120
|
+
|
1121
|
+
/* Begin PBXNativeTarget section */
|
1122
|
+
D2AAC07D0554694100DB518D /* SyncClient */ = {
|
1123
|
+
isa = PBXNativeTarget;
|
1124
|
+
buildConfigurationList = 1DEB921E08733DC00010E9CD /* Build configuration list for PBXNativeTarget "SyncClient" */;
|
1125
|
+
buildPhases = (
|
1126
|
+
D2AAC07A0554694100DB518D /* Headers */,
|
1127
|
+
D2AAC07B0554694100DB518D /* Sources */,
|
1128
|
+
D2AAC07C0554694100DB518D /* Frameworks */,
|
1129
|
+
5CEED3EC122586F7005483EE /* Resources */,
|
1130
|
+
);
|
1131
|
+
buildRules = (
|
1132
|
+
);
|
1133
|
+
dependencies = (
|
1134
|
+
);
|
1135
|
+
name = SyncClient;
|
1136
|
+
productName = SyncClient;
|
1137
|
+
productReference = D2AAC07E0554694100DB518D /* libRhoConnectClient.a */;
|
1138
|
+
productType = "com.apple.product-type.library.static";
|
1139
|
+
};
|
1140
|
+
/* End PBXNativeTarget section */
|
1141
|
+
|
1142
|
+
/* Begin PBXProject section */
|
1143
|
+
0867D690FE84028FC02AAC07 /* Project object */ = {
|
1144
|
+
isa = PBXProject;
|
1145
|
+
attributes = {
|
1146
|
+
LastUpgradeCheck = 0420;
|
1147
|
+
};
|
1148
|
+
buildConfigurationList = 1DEB922208733DC00010E9CD /* Build configuration list for PBXProject "RhoConnectClient" */;
|
1149
|
+
compatibilityVersion = "Xcode 3.1";
|
1150
|
+
developmentRegion = English;
|
1151
|
+
hasScannedForEncodings = 1;
|
1152
|
+
knownRegions = (
|
1153
|
+
English,
|
1154
|
+
Japanese,
|
1155
|
+
French,
|
1156
|
+
German,
|
1157
|
+
);
|
1158
|
+
mainGroup = 0867D691FE84028FC02AAC07 /* SyncClient */;
|
1159
|
+
productRefGroup = 034768DFFF38A50411DB9C8B /* Products */;
|
1160
|
+
projectDirPath = "";
|
1161
|
+
projectRoot = "";
|
1162
|
+
targets = (
|
1163
|
+
D2AAC07D0554694100DB518D /* SyncClient */,
|
1164
|
+
);
|
1165
|
+
};
|
1166
|
+
/* End PBXProject section */
|
1167
|
+
|
1168
|
+
/* Begin PBXResourcesBuildPhase section */
|
1169
|
+
5CEED3EC122586F7005483EE /* Resources */ = {
|
1170
|
+
isa = PBXResourcesBuildPhase;
|
1171
|
+
buildActionMask = 2147483647;
|
1172
|
+
files = (
|
1173
|
+
);
|
1174
|
+
runOnlyForDeploymentPostprocessing = 0;
|
1175
|
+
};
|
1176
|
+
/* End PBXResourcesBuildPhase section */
|
1177
|
+
|
1178
|
+
/* Begin PBXSourcesBuildPhase section */
|
1179
|
+
D2AAC07B0554694100DB518D /* Sources */ = {
|
1180
|
+
isa = PBXSourcesBuildPhase;
|
1181
|
+
buildActionMask = 2147483647;
|
1182
|
+
files = (
|
1183
|
+
5C40D1F112282E4D007298DA /* RhomModel.m in Sources */,
|
1184
|
+
5C40D1F312282E4D007298DA /* RhoConnectClient.m in Sources */,
|
1185
|
+
5C40D1F512282E4D007298DA /* RhoConnectNotify.m in Sources */,
|
1186
|
+
5C5CD3C113620579006DD4C5 /* RhoConnectObjectNotify.m in Sources */,
|
1187
|
+
5CCB15A213DB5549001337D6 /* RhoConnectClient.cpp in Sources */,
|
1188
|
+
C5A8B0F1168B428A0020B206 /* ZipFiles.cpp in Sources */,
|
1189
|
+
C5A8B0F5168B42BF0020B206 /* sqlite3.c in Sources */,
|
1190
|
+
C5A8B188168B42F50020B206 /* amigaos.c in Sources */,
|
1191
|
+
C5A8B18A168B42F50020B206 /* base64.c in Sources */,
|
1192
|
+
C5A8B18F168B42F50020B206 /* connect.c in Sources */,
|
1193
|
+
C5A8B191168B42F50020B206 /* content_encoding.c in Sources */,
|
1194
|
+
C5A8B193168B42F50020B206 /* cookie.c in Sources */,
|
1195
|
+
C5A8B195168B42F50020B206 /* curl_addrinfo.c in Sources */,
|
1196
|
+
C5A8B19C168B42F50020B206 /* curl_memrchr.c in Sources */,
|
1197
|
+
C5A8B19E168B42F50020B206 /* curl_rand.c in Sources */,
|
1198
|
+
C5A8B1A0168B42F50020B206 /* curl_sspi.c in Sources */,
|
1199
|
+
65CC373B185E0FF1003C83EA /* SyncThread.cpp in Sources */,
|
1200
|
+
C5A8B1A1168B42F50020B206 /* dict.c in Sources */,
|
1201
|
+
C5A8B1A3168B42F50020B206 /* easy.c in Sources */,
|
1202
|
+
C5A8B1A5168B42F50020B206 /* escape.c in Sources */,
|
1203
|
+
C5A8B1A7168B42F50020B206 /* file.c in Sources */,
|
1204
|
+
C5A8B1A9168B42F50020B206 /* formdata.c in Sources */,
|
1205
|
+
C5A8B1AB168B42F50020B206 /* ftp.c in Sources */,
|
1206
|
+
65CC374C185E274E003C83EA /* js_helpers.cpp in Sources */,
|
1207
|
+
C5A8B1AD168B42F50020B206 /* getenv.c in Sources */,
|
1208
|
+
C5A8B1AE168B42F50020B206 /* getinfo.c in Sources */,
|
1209
|
+
C5A8B1B0168B42F50020B206 /* gtls.c in Sources */,
|
1210
|
+
C5A8B1B2168B42F50020B206 /* hash.c in Sources */,
|
1211
|
+
C5A8B1B4168B42F50020B206 /* hostares.c in Sources */,
|
1212
|
+
C5A8B1B5168B42F50020B206 /* hostasyn.c in Sources */,
|
1213
|
+
C5A8B1B6168B42F50020B206 /* hostip.c in Sources */,
|
1214
|
+
C5A8B1B8168B42F50020B206 /* hostip4.c in Sources */,
|
1215
|
+
C5A8B1B9168B42F50020B206 /* hostip6.c in Sources */,
|
1216
|
+
C5A8B1BA168B42F50020B206 /* hostsyn.c in Sources */,
|
1217
|
+
C5A8B1BB168B42F50020B206 /* hostthre.c in Sources */,
|
1218
|
+
C5A8B1BC168B42F50020B206 /* http.c in Sources */,
|
1219
|
+
C5A8B1BE168B42F50020B206 /* http_chunks.c in Sources */,
|
1220
|
+
C5A8B1C0168B42F50020B206 /* http_digest.c in Sources */,
|
1221
|
+
C5A8B1C2168B42F50020B206 /* http_negotiate.c in Sources */,
|
1222
|
+
C5A8B1C4168B42F50020B206 /* http_ntlm.c in Sources */,
|
1223
|
+
C5A8B1C6168B42F50020B206 /* if2ip.c in Sources */,
|
1224
|
+
C5A8B1C8168B42F50020B206 /* inet_ntop.c in Sources */,
|
1225
|
+
C5A8B1CA168B42F50020B206 /* inet_pton.c in Sources */,
|
1226
|
+
C5A8B1CC168B42F50020B206 /* krb4.c in Sources */,
|
1227
|
+
C5A8B1CD168B42F50020B206 /* krb5.c in Sources */,
|
1228
|
+
C5A8B1CE168B42F50020B206 /* ldap.c in Sources */,
|
1229
|
+
C5A8B1CF168B42F50020B206 /* llist.c in Sources */,
|
1230
|
+
C5A8B1D1168B42F50020B206 /* md5.c in Sources */,
|
1231
|
+
C5A8B1D2168B42F50020B206 /* memdebug.c in Sources */,
|
1232
|
+
65CC3739185E0FF1003C83EA /* SyncSource.cpp in Sources */,
|
1233
|
+
C5A8B1D4168B42F50020B206 /* mprintf.c in Sources */,
|
1234
|
+
C5A8B1D5168B42F50020B206 /* multi.c in Sources */,
|
1235
|
+
C5A8B1D7168B42F50020B206 /* netrc.c in Sources */,
|
1236
|
+
C5A8B1D9168B42F50020B206 /* nonblock.c in Sources */,
|
1237
|
+
C5A8B1DB168B42F50020B206 /* nss.c in Sources */,
|
1238
|
+
C5A8B1DD168B42F50020B206 /* nwlib.c in Sources */,
|
1239
|
+
C5A8B1DE168B42F50020B206 /* nwos.c in Sources */,
|
1240
|
+
C5A8B1DF168B42F50020B206 /* parsedate.c in Sources */,
|
1241
|
+
C5A8B1E1168B42F50020B206 /* progress.c in Sources */,
|
1242
|
+
C5A8B1E3168B42F50020B206 /* qssl.c in Sources */,
|
1243
|
+
C5A8B1E5168B42F50020B206 /* rawstr.c in Sources */,
|
1244
|
+
C5A8B1E7168B42F50020B206 /* rhossl.c in Sources */,
|
1245
|
+
C5A8B1E9168B42F50020B206 /* security.c in Sources */,
|
1246
|
+
C5A8B1EA168B42F50020B206 /* select.c in Sources */,
|
1247
|
+
C5A8B1EC168B42F50020B206 /* sendf.c in Sources */,
|
1248
|
+
C5A8B1F0168B42F50020B206 /* share.c in Sources */,
|
1249
|
+
C5A8B1F2168B42F50020B206 /* slist.c in Sources */,
|
1250
|
+
C5A8B1F5168B42F50020B206 /* socks.c in Sources */,
|
1251
|
+
C5A8B1F7168B42F50020B206 /* socks_gssapi.c in Sources */,
|
1252
|
+
C5A8B1F8168B42F50020B206 /* socks_sspi.c in Sources */,
|
1253
|
+
C5A8B1F9168B42F50020B206 /* speedcheck.c in Sources */,
|
1254
|
+
C5A8B1FB168B42F50020B206 /* splay.c in Sources */,
|
1255
|
+
C5A8B1FD168B42F50020B206 /* ssh.c in Sources */,
|
1256
|
+
65CC3735185E0FF1003C83EA /* SyncNotify.cpp in Sources */,
|
1257
|
+
C5A8B1FF168B42F50020B206 /* sslgen.c in Sources */,
|
1258
|
+
C5A8B201168B42F50020B206 /* ssluse.c in Sources */,
|
1259
|
+
C5A8B203168B42F50020B206 /* strdup.c in Sources */,
|
1260
|
+
C5A8B205168B42F50020B206 /* strequal.c in Sources */,
|
1261
|
+
C5A8B207168B42F50020B206 /* strerror.c in Sources */,
|
1262
|
+
C5A8B209168B42F50020B206 /* strtok.c in Sources */,
|
1263
|
+
C5A8B20B168B42F50020B206 /* strtoofft.c in Sources */,
|
1264
|
+
C5A8B20D168B42F50020B206 /* telnet.c in Sources */,
|
1265
|
+
C5A8B20F168B42F50020B206 /* tftp.c in Sources */,
|
1266
|
+
C5A8B211168B42F50020B206 /* timeval.c in Sources */,
|
1267
|
+
C5A8B213168B42F50020B206 /* transfer.c in Sources */,
|
1268
|
+
C5A8B215168B42F50020B206 /* url.c in Sources */,
|
1269
|
+
C5A8B218168B42F50020B206 /* version.c in Sources */,
|
1270
|
+
C5A8B221168B434D0020B206 /* RhoClassFactory.cpp in Sources */,
|
1271
|
+
C5A8B224168B434D0020B206 /* RhoCryptImpl.mm in Sources */,
|
1272
|
+
C5A8B225168B434D0020B206 /* RhoFileImpl.m in Sources */,
|
1273
|
+
C5A8B226168B434D0020B206 /* RhoThreadImpl.m in Sources */,
|
1274
|
+
C5A8B247168B439D0020B206 /* PosixThreadImpl.cpp in Sources */,
|
1275
|
+
C5A8B24A168B439D0020B206 /* RhoConf.cpp in Sources */,
|
1276
|
+
C5A8B24D168B439D0020B206 /* RhodesAppBase.cpp in Sources */,
|
1277
|
+
C5A8B250168B439D0020B206 /* RhoFile.cpp in Sources */,
|
1278
|
+
C5A8B257168B439D0020B206 /* RhoThread.cpp in Sources */,
|
1279
|
+
C5A8B25B168B439D0020B206 /* ThreadQueue.cpp in Sources */,
|
1280
|
+
C5A8B25D168B439D0020B206 /* Tokenizer.cpp in Sources */,
|
1281
|
+
C5A8B269168B43B90020B206 /* DBAdapter.cpp in Sources */,
|
1282
|
+
C5A8B26B168B43B90020B206 /* DBAttrManager.cpp in Sources */,
|
1283
|
+
C5A8B26D168B43B90020B206 /* DBImportTransaction.cpp in Sources */,
|
1284
|
+
C5A8B26F168B43B90020B206 /* DBRequestHelper.cpp in Sources */,
|
1285
|
+
C5A8B271168B43B90020B206 /* DBResult.cpp in Sources */,
|
1286
|
+
C5A8B277168B43E00020B206 /* unzip.cpp in Sources */,
|
1287
|
+
C5A8B279168B43E00020B206 /* zip.cpp in Sources */,
|
1288
|
+
C5A8B28D168B44860020B206 /* arraylist.c in Sources */,
|
1289
|
+
C5A8B292168B44860020B206 /* json_object.c in Sources */,
|
1290
|
+
C5A8B295168B44860020B206 /* json_tokener.c in Sources */,
|
1291
|
+
C5A8B297168B44860020B206 /* json_util.c in Sources */,
|
1292
|
+
C5A8B299168B44860020B206 /* JSONIterator.cpp in Sources */,
|
1293
|
+
65CC3733185E0FF1003C83EA /* SyncEngine.cpp in Sources */,
|
1294
|
+
C5A8B29B168B44860020B206 /* linkhash.c in Sources */,
|
1295
|
+
C5A8B29D168B44860020B206 /* printbuf.c in Sources */,
|
1296
|
+
C5A8B2A7168B44B40020B206 /* RhoLog.cpp in Sources */,
|
1297
|
+
65CC374A185E274E003C83EA /* MethodResult.cpp in Sources */,
|
1298
|
+
C5A8B2AA168B44B40020B206 /* RhoLogConf.cpp in Sources */,
|
1299
|
+
C5A8B2AC168B44B40020B206 /* RhoLogSink.cpp in Sources */,
|
1300
|
+
C5A8B2AE168B44B40020B206 /* RhoPlainLog.cpp in Sources */,
|
1301
|
+
C5A8B2B7168B44DC0020B206 /* CURLNetRequest.cpp in Sources */,
|
1302
|
+
C5A8B2B9168B44DC0020B206 /* INetRequest.cpp in Sources */,
|
1303
|
+
C5A8B2BB168B44DC0020B206 /* ssl.cpp in Sources */,
|
1304
|
+
C5A8B2BD168B44DC0020B206 /* URI.cpp in Sources */,
|
1305
|
+
C5A8B2C1168B44F10020B206 /* sslimpl.cpp in Sources */,
|
1306
|
+
65CC3752185E274E003C83EA /* StringifyHelper.cpp in Sources */,
|
1307
|
+
C518600A168B4EDE004D12AB /* RhoconnectClientManager.cpp in Sources */,
|
1308
|
+
C5186011168B58A3004D12AB /* RhoPushManager.cpp in Sources */,
|
1309
|
+
);
|
1310
|
+
runOnlyForDeploymentPostprocessing = 0;
|
1311
|
+
};
|
1312
|
+
/* End PBXSourcesBuildPhase section */
|
1313
|
+
|
1314
|
+
/* Begin XCBuildConfiguration section */
|
1315
|
+
1DEB921F08733DC00010E9CD /* Debug */ = {
|
1316
|
+
isa = XCBuildConfiguration;
|
1317
|
+
buildSettings = {
|
1318
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
1319
|
+
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
1320
|
+
COPY_PHASE_STRIP = NO;
|
1321
|
+
DSTROOT = /tmp/RhoConnectClient.dst;
|
1322
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
1323
|
+
GCC_MODEL_TUNING = G5;
|
1324
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
1325
|
+
GCC_PRECOMPILE_PREFIX_HEADER = NO;
|
1326
|
+
GCC_PREFIX_HEADER = "";
|
1327
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
1328
|
+
"RHO_NO_RUBY=1",
|
1329
|
+
"RHORC_NO_RUBY=1",
|
1330
|
+
"HAVE_CONFIG_H=1",
|
1331
|
+
"USE_RHOSSL=1",
|
1332
|
+
);
|
1333
|
+
HEADER_SEARCH_PATHS = (
|
1334
|
+
../../../rhodes/platform/shared,
|
1335
|
+
../../../rhodes/platform/shared/curl/include,
|
1336
|
+
"../../ext/rhoconnect-client/ext/shared",
|
1337
|
+
../../platform/shared,
|
1338
|
+
);
|
1339
|
+
INSTALL_PATH = /usr/local/lib;
|
1340
|
+
IPHONEOS_DEPLOYMENT_TARGET = 4.0;
|
1341
|
+
ONLY_ACTIVE_ARCH = YES;
|
1342
|
+
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = NO;
|
1343
|
+
PRODUCT_NAME = RhoConnectClient;
|
1344
|
+
RHO_NO_RUBY = 1;
|
1345
|
+
SDKROOT = iphoneos;
|
1346
|
+
SYMROOT = ../build;
|
1347
|
+
USER_HEADER_SEARCH_PATHS = "../../../rhodes/platform/shared ../../../rhodes/platform/shared/curl/include ../../ext/rhoconnect-client/ext/shared ../../platform/shared";
|
1348
|
+
};
|
1349
|
+
name = Debug;
|
1350
|
+
};
|
1351
|
+
1DEB922008733DC00010E9CD /* Release */ = {
|
1352
|
+
isa = XCBuildConfiguration;
|
1353
|
+
buildSettings = {
|
1354
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
1355
|
+
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
1356
|
+
DSTROOT = /tmp/RhoConnectClient.dst;
|
1357
|
+
GCC_MODEL_TUNING = G5;
|
1358
|
+
GCC_PRECOMPILE_PREFIX_HEADER = NO;
|
1359
|
+
GCC_PREFIX_HEADER = "";
|
1360
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
1361
|
+
"RHO_NO_RUBY=1",
|
1362
|
+
"RHORC_NO_RUBY=1",
|
1363
|
+
"HAVE_CONFIG_H=1",
|
1364
|
+
"USE_RHOSSL=1",
|
1365
|
+
);
|
1366
|
+
HEADER_SEARCH_PATHS = (
|
1367
|
+
../../../rhodes/platform/shared,
|
1368
|
+
../../../rhodes/platform/shared/curl/include,
|
1369
|
+
"../../ext/rhoconnect-client/ext/shared",
|
1370
|
+
../../platform/shared,
|
1371
|
+
);
|
1372
|
+
INSTALL_PATH = /usr/local/lib;
|
1373
|
+
IPHONEOS_DEPLOYMENT_TARGET = 4.0;
|
1374
|
+
ONLY_ACTIVE_ARCH = YES;
|
1375
|
+
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = NO;
|
1376
|
+
PRODUCT_NAME = RhoConnectClient;
|
1377
|
+
RHO_NO_RUBY = 1;
|
1378
|
+
SDKROOT = iphoneos;
|
1379
|
+
SYMROOT = ../build;
|
1380
|
+
USER_HEADER_SEARCH_PATHS = "../../../rhodes/platform/shared ../../../rhodes/platform/shared/curl/include ../../ext/rhoconnect-client/ext/shared ../../platform/shared";
|
1381
|
+
};
|
1382
|
+
name = Release;
|
1383
|
+
};
|
1384
|
+
1DEB922308733DC00010E9CD /* Debug */ = {
|
1385
|
+
isa = XCBuildConfiguration;
|
1386
|
+
buildSettings = {
|
1387
|
+
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
1388
|
+
GCC_C_LANGUAGE_STANDARD = c99;
|
1389
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
1390
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
1391
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
1392
|
+
OTHER_LDFLAGS = "-ObjC";
|
1393
|
+
RHO_NO_RUBY = 1;
|
1394
|
+
SDKROOT = iphoneos;
|
1395
|
+
};
|
1396
|
+
name = Debug;
|
1397
|
+
};
|
1398
|
+
1DEB922408733DC00010E9CD /* Release */ = {
|
1399
|
+
isa = XCBuildConfiguration;
|
1400
|
+
buildSettings = {
|
1401
|
+
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
1402
|
+
GCC_C_LANGUAGE_STANDARD = c99;
|
1403
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
1404
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
1405
|
+
OTHER_LDFLAGS = "-ObjC";
|
1406
|
+
SDKROOT = iphoneos;
|
1407
|
+
};
|
1408
|
+
name = Release;
|
1409
|
+
};
|
1410
|
+
/* End XCBuildConfiguration section */
|
1411
|
+
|
1412
|
+
/* Begin XCConfigurationList section */
|
1413
|
+
1DEB921E08733DC00010E9CD /* Build configuration list for PBXNativeTarget "SyncClient" */ = {
|
1414
|
+
isa = XCConfigurationList;
|
1415
|
+
buildConfigurations = (
|
1416
|
+
1DEB921F08733DC00010E9CD /* Debug */,
|
1417
|
+
1DEB922008733DC00010E9CD /* Release */,
|
1418
|
+
);
|
1419
|
+
defaultConfigurationIsVisible = 0;
|
1420
|
+
defaultConfigurationName = Release;
|
1421
|
+
};
|
1422
|
+
1DEB922208733DC00010E9CD /* Build configuration list for PBXProject "RhoConnectClient" */ = {
|
1423
|
+
isa = XCConfigurationList;
|
1424
|
+
buildConfigurations = (
|
1425
|
+
1DEB922308733DC00010E9CD /* Debug */,
|
1426
|
+
1DEB922408733DC00010E9CD /* Release */,
|
1427
|
+
);
|
1428
|
+
defaultConfigurationIsVisible = 0;
|
1429
|
+
defaultConfigurationName = Release;
|
1430
|
+
};
|
1431
|
+
/* End XCConfigurationList section */
|
1432
|
+
};
|
1433
|
+
rootObject = 0867D690FE84028FC02AAC07 /* Project object */;
|
1434
|
+
}
|