rhodes 3.3.3.beta.4 → 3.3.3
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +7 -5
- data/CREDITS +2215 -0
- data/Rakefile +225 -59
- data/bin/c2dm.rb +0 -0
- data/bin/get-rhodes-info.bat +0 -0
- data/bin/migrate-rhodes-app +0 -0
- data/bin/migrate-rhodes-app.bat +0 -0
- data/bin/rhodes +0 -0
- data/bin/rhodes-setup +0 -0
- data/bin/rhodes-setup.bat +0 -0
- data/bin/rhogen +0 -0
- data/bin/rhogen.bat +0 -0
- data/bin/set-rhodes-sdk +0 -0
- data/bin/set-rhodes-sdk.bat +0 -0
- data/bin/upgrade-rhodes-app +0 -0
- data/bin/upgrade-rhodes-app.bat +0 -0
- data/doc/build.txt +20 -9
- data/doc/configuration.txt +8 -8
- data/doc/connect-to-web-services.txt +1 -1
- data/doc/device-caps.txt +63 -26
- data/doc/extensions.txt +14 -2
- data/doc/install.txt +28 -19
- data/doc/introduction.txt +6 -3
- data/doc/jqt-jqm-transition.txt +10 -9
- data/doc/release.txt +5 -1
- data/doc/rhodes-command-line.txt +130 -0
- data/doc/rhom.txt +16 -11
- data/doc/rhostudio-eclipse.txt +3 -3
- data/doc/simulator.txt +28 -31
- data/doc/syncengine-ajax-api.txt +246 -0
- data/doc/synchronization.txt +21 -3
- data/doc/test-log-debug.txt +3 -1
- data/doc/ui.txt +16 -16
- data/ext/extconf.rb +8 -0
- data/lib/build/jake.rb +5 -5
- data/lib/extensions/barcode/ext/barcode/platform/android/Rakefile +9 -9
- data/lib/extensions/barcode/ext/barcode/platform/android/jni/src/barcode.cpp +81 -1
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/CaptureActivityHandler.java +6 -13
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/google/zxing/client/android/DecodeHandler.java +2 -6
- data/lib/extensions/barcode/ext/barcode/platform/android/src/com/rhomobile/barcode/Barcode.java +12 -1
- data/lib/extensions/barcode/ext/barcode/platform/bb/run.bat +0 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/Classes/BarcodeCallbackHelper.h +2 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/Classes/BarcodeCallbackHelper.mm +36 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/Classes/BarcodeViewController.h +0 -0
- data/lib/extensions/barcode/ext/barcode/platform/iphone/Classes/BarcodeViewController.m +15 -5
- data/lib/extensions/barcode/ext/barcode/platform/iphone/Classes/barcode.m +64 -1
- data/lib/extensions/barcode/ext/barcode/shared/ruby/barcode.i +35 -1
- data/lib/extensions/barcode/ext/barcode/shared/ruby/barcode_wrap.c +126 -2
- data/lib/extensions/barcode/ext/barcode/shared/src/zbar.c +18 -1
- data/lib/extensions/barcode/ext/build +0 -0
- data/lib/extensions/barcode/ext/build.bat +0 -0
- data/lib/extensions/digest-md5/ext/Rakefile +12 -10
- data/lib/extensions/digest-md5/ext/build +0 -0
- data/lib/extensions/digest-md5/ext/build.bat +0 -0
- data/lib/extensions/digest-md5/ext/digest-md5.sln +2 -2
- data/lib/extensions/digest-md5/ext/digest-md5.vcproj +41 -28
- data/lib/extensions/digest-sha1/ext/Rakefile +11 -10
- data/lib/extensions/digest-sha1/ext/build +0 -0
- data/lib/extensions/digest-sha1/ext/build.bat +0 -0
- data/lib/extensions/digest-sha1/ext/digest-sha1.sln +2 -2
- data/lib/extensions/digest-sha1/ext/digest-sha1.vcproj +41 -28
- data/lib/extensions/digest/ext/Rakefile +12 -11
- data/lib/extensions/digest/ext/build +0 -0
- data/lib/extensions/digest/ext/build.bat +0 -0
- data/lib/extensions/digest/ext/digest.sln +44 -0
- data/lib/extensions/digest/ext/digest.vcproj +40 -27
- data/lib/extensions/esri/ext/build +0 -0
- data/lib/extensions/esri/ext/build.bat +0 -0
- data/lib/extensions/fcntl/ext/Rakefile +10 -9
- data/lib/extensions/fcntl/ext/build +0 -0
- data/lib/extensions/fcntl/ext/build.bat +0 -0
- data/lib/extensions/fcntl/ext/fcntl.vcproj +1 -1
- data/lib/extensions/nfc/ext/build +0 -0
- data/lib/extensions/nfc/ext/build.bat +0 -0
- data/lib/extensions/nfc/ext/nfc/platform/android/Rakefile +11 -11
- data/lib/extensions/nfc/ext/nfc/platform/android/jni/src/nfc.cpp +0 -0
- data/lib/extensions/nfc/ext/nfc/platform/android/src/com/rhomobile/nfc/Nfc.java +12 -10
- data/lib/extensions/nfc/ext/nfc/shared/ruby/nfc_wrap.c +16 -9
- data/lib/extensions/pdf-writer/color.rb +145 -0
- data/lib/extensions/pdf-writer/color/cmyk.rb +279 -0
- data/lib/extensions/pdf-writer/color/css.rb +28 -0
- data/lib/extensions/pdf-writer/color/grayscale.rb +212 -0
- data/lib/extensions/pdf-writer/color/hsl.rb +221 -0
- data/lib/extensions/pdf-writer/color/palette.rb +16 -0
- data/lib/extensions/pdf-writer/color/palette/adobecolor.rb +272 -0
- data/lib/extensions/pdf-writer/color/palette/gimp.rb +116 -0
- data/lib/extensions/pdf-writer/color/palette/monocontrast.rb +180 -0
- data/lib/extensions/pdf-writer/color/rgb-colors.rb +355 -0
- data/lib/extensions/pdf-writer/color/rgb.rb +453 -0
- data/lib/extensions/pdf-writer/color/rgb/metallic.rb +43 -0
- data/lib/extensions/pdf-writer/color/yiq.rb +84 -0
- data/lib/extensions/pdf-writer/ext/LICENSES/color/Licence.txt +27 -0
- data/lib/extensions/pdf-writer/ext/LICENSES/color/README.txt +32 -0
- data/lib/extensions/pdf-writer/ext/LICENSES/pdf-writer/LICENCE +131 -0
- data/lib/extensions/pdf-writer/ext/LICENSES/pdf-writer/README +33 -0
- data/lib/extensions/pdf-writer/ext/LICENSES/transaction-simple/Licence.txt +25 -0
- data/lib/extensions/pdf-writer/ext/LICENSES/transaction-simple/Readme.txt +204 -0
- data/lib/extensions/pdf-writer/pdf/charts.rb +13 -0
- data/lib/extensions/pdf-writer/pdf/charts/stddev.rb +430 -0
- data/lib/extensions/pdf-writer/pdf/math.rb +108 -0
- data/lib/extensions/pdf-writer/pdf/quickref.rb +332 -0
- data/lib/extensions/pdf-writer/pdf/simpletable.rb +947 -0
- data/lib/extensions/pdf-writer/pdf/techbook.rb +901 -0
- data/lib/extensions/pdf-writer/pdf/writer.rb +2729 -0
- data/lib/extensions/pdf-writer/pdf/writer/arc4.rb +63 -0
- data/lib/extensions/pdf-writer/pdf/writer/fontmetrics.rb +203 -0
- data/lib/extensions/pdf-writer/pdf/writer/fonts/Courier-Bold.afm +342 -0
- data/lib/extensions/pdf-writer/pdf/writer/fonts/Courier-BoldOblique.afm +342 -0
- data/lib/extensions/pdf-writer/pdf/writer/fonts/Courier-Oblique.afm +342 -0
- data/lib/extensions/pdf-writer/pdf/writer/fonts/Courier.afm +342 -0
- data/lib/extensions/pdf-writer/pdf/writer/fonts/Helvetica-Bold.afm +2827 -0
- data/lib/extensions/pdf-writer/pdf/writer/fonts/Helvetica-BoldOblique.afm +2827 -0
- data/lib/extensions/pdf-writer/pdf/writer/fonts/Helvetica-Oblique.afm +3051 -0
- data/lib/extensions/pdf-writer/pdf/writer/fonts/Helvetica.afm +3051 -0
- data/lib/extensions/pdf-writer/pdf/writer/fonts/MustRead.html +19 -0
- data/lib/extensions/pdf-writer/pdf/writer/fonts/Symbol.afm +213 -0
- data/lib/extensions/pdf-writer/pdf/writer/fonts/Times-Bold.afm +2588 -0
- data/lib/extensions/pdf-writer/pdf/writer/fonts/Times-BoldItalic.afm +2384 -0
- data/lib/extensions/pdf-writer/pdf/writer/fonts/Times-Italic.afm +2667 -0
- data/lib/extensions/pdf-writer/pdf/writer/fonts/Times-Roman.afm +2419 -0
- data/lib/extensions/pdf-writer/pdf/writer/fonts/ZapfDingbats.afm +225 -0
- data/lib/extensions/pdf-writer/pdf/writer/graphics.rb +813 -0
- data/lib/extensions/pdf-writer/pdf/writer/graphics/imageinfo.rb +365 -0
- data/lib/extensions/pdf-writer/pdf/writer/lang.rb +43 -0
- data/lib/extensions/pdf-writer/pdf/writer/lang/en.rb +99 -0
- data/lib/extensions/pdf-writer/pdf/writer/object.rb +23 -0
- data/lib/extensions/pdf-writer/pdf/writer/object/action.rb +35 -0
- data/lib/extensions/pdf-writer/pdf/writer/object/annotation.rb +42 -0
- data/lib/extensions/pdf-writer/pdf/writer/object/catalog.rb +39 -0
- data/lib/extensions/pdf-writer/pdf/writer/object/contents.rb +65 -0
- data/lib/extensions/pdf-writer/pdf/writer/object/destination.rb +40 -0
- data/lib/extensions/pdf-writer/pdf/writer/object/encryption.rb +53 -0
- data/lib/extensions/pdf-writer/pdf/writer/object/font.rb +72 -0
- data/lib/extensions/pdf-writer/pdf/writer/object/fontdescriptor.rb +34 -0
- data/lib/extensions/pdf-writer/pdf/writer/object/fontencoding.rb +40 -0
- data/lib/extensions/pdf-writer/pdf/writer/object/image.rb +304 -0
- data/lib/extensions/pdf-writer/pdf/writer/object/info.rb +51 -0
- data/lib/extensions/pdf-writer/pdf/writer/object/outline.rb +30 -0
- data/lib/extensions/pdf-writer/pdf/writer/object/outlines.rb +30 -0
- data/lib/extensions/pdf-writer/pdf/writer/object/page.rb +195 -0
- data/lib/extensions/pdf-writer/pdf/writer/object/pages.rb +115 -0
- data/lib/extensions/pdf-writer/pdf/writer/object/procset.rb +46 -0
- data/lib/extensions/pdf-writer/pdf/writer/object/viewerpreferences.rb +74 -0
- data/lib/extensions/pdf-writer/pdf/writer/ohash.rb +58 -0
- data/lib/extensions/pdf-writer/pdf/writer/oreader.rb +25 -0
- data/lib/extensions/pdf-writer/pdf/writer/state.rb +48 -0
- data/lib/extensions/pdf-writer/pdf/writer/strokestyle.rb +138 -0
- data/lib/extensions/pdf-writer/transaction/simple.rb +486 -0
- data/lib/extensions/pdf-writer/transaction/simple/group.rb +146 -0
- data/lib/extensions/pdf-writer/transaction/simple/threadsafe.rb +68 -0
- data/lib/extensions/pdf-writer/transaction/simple/threadsafe/group.rb +36 -0
- data/lib/framework/builtinME.rb +0 -0
- data/lib/framework/dateOrig.rb +8 -2
- data/lib/framework/rational.rb +0 -0
- data/lib/framework/res/esri.wm.png +0 -0
- data/lib/framework/rho/rho.rb +6 -0
- data/lib/framework/rho/rhobluetooth.rb +0 -0
- data/lib/framework/rho/rhofsconnector.rb +0 -0
- data/lib/framework/rho/rhonativeviewmanager.rb +0 -0
- data/lib/framework/rhofsconnector.rb +0 -0
- data/lib/framework/rhom/rhom_object_factory.rb +8 -0
- data/lib/framework/rhomotoapi.rb +3 -2
- data/platform/android/Rhodes/jni/include/rhodes/JNIRhodes.h +9 -1
- data/platform/android/Rhodes/jni/include/rhodes/details/rhojava.inc +1 -0
- data/platform/android/Rhodes/jni/include/rhodes/jni/com_rhomobile_rhodes_file_RhoFileApi.h +26 -2
- data/platform/android/Rhodes/jni/src/callbacks.cpp +0 -5
- data/platform/android/Rhodes/jni/src/camera.cpp +1 -1
- data/platform/android/Rhodes/jni/src/fileapi.cpp +39 -19
- data/platform/android/Rhodes/jni/src/geolocation.cpp +3 -3
- data/platform/android/Rhodes/jni/src/mapview.cpp +206 -64
- data/platform/android/Rhodes/jni/src/nativeview.cpp +1 -1
- data/platform/android/Rhodes/jni/src/rhodes.cpp +13 -0
- data/platform/android/Rhodes/jni/src/rhodesapp.cpp +20 -0
- data/platform/android/Rhodes/jni/src/rhodessystem.cpp +36 -3
- data/platform/android/Rhodes/jni/src/signature.cpp +22 -2
- data/platform/android/Rhodes/res/drawable/alert_info.png +0 -0
- data/platform/android/Rhodes/res/drawable/esri.png +0 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/Capabilities.java +17 -16
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/Logger.java +4 -1
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/MemoryInfoCollector.java +67 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesActivity.java +139 -114
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesApplication.java +106 -13
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesService.java +11 -3
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/WebView.java +71 -16
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/CameraNewService.java +4 -1
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/camera/CameraSemiService.java +4 -1
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/extmanager/AbstractRhoExtension.java +22 -1
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/extmanager/Config.java +243 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/extmanager/IRhoExtManager.java +19 -1
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/extmanager/IRhoExtension.java +9 -1
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/{RhodesActivityListener.java → extmanager/IRhoListener.java} +16 -12
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/extmanager/RhoExtManager.java +63 -1
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/extmanager/RhoExtManagerImpl.java +239 -14
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/extmanager/RhodesStartupListeners.java +9 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/extmanager/WebkitExtension.java +53 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/file/RhoFileApi.java +27 -12
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/geolocation/GeoLocation.java +124 -62
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/geolocation/GeoLocationImpl.java +49 -137
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/SimpleMainView.java +84 -114
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/SplashScreen.java +75 -82
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/TabbedMainView.java +3 -2
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/Callout.java +4 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapBitmapManager.java +124 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapView.java +232 -43
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/Request.java +193 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/nativeview/IRhoCustomView.java +13 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/nativeview/RhoNativeViewManager.java +32 -23
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/nativeview/RhoVideoView.java +74 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality.java +6 -7
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality01.java +37 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality03.java +14 -1
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality05.java +51 -38
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality07.java +9 -1
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality08.java +48 -31
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionalityManager.java +15 -16
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/signature/Signature.java +52 -15
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/LocalFileHandler.java +20 -2
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/ChromeClientOld.java +1 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/GoogleWebView.java +77 -34
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/IRhoWebView.java +9 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebChromeClient.java +105 -0
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebViewClient.java +1 -1
- data/platform/android/build/RhodesSRC_build.files +8 -7
- data/platform/android/build/android.rake +326 -216
- data/platform/android/build/androidcommon.rb +27 -13
- data/platform/bb/RubyVM/src/com/rho/file/SimpleFile.java +27 -1
- data/platform/bb/RubyVM/src/j2me/io/File.java +104 -38
- data/platform/bb/build/bb.rake +1 -0
- data/platform/bb/build/runRAPC.bat +0 -0
- data/platform/bb/rhodes/resources/background.png +0 -0
- data/platform/bb/rhodes/resources/esri.png +0 -0
- data/platform/bb/rhodes/resources/mappin.png +0 -0
- data/platform/bb/rhodes/src/com/rho/rubyext/System.java +5 -1
- data/platform/bb/rhodes/src/rhomobile/PushListeningThread.java +2 -2
- data/platform/bb/rhodes/src/rhomobile/mapview/ESRIMapField.java +0 -0
- data/platform/bb/rhodes/src/rhomobile/mapview/ESRIMapProvider.java +0 -0
- data/platform/bb/rhodes/src/rhomobile/mapview/GeoCoding.java +0 -0
- data/platform/bb/rhodes/src/rhomobile/mapview/GoogleGeoCoding.java +0 -0
- data/platform/bb/rhodes/src/rhomobile/mapview/MapTools.java +0 -0
- data/platform/iphone/Classes/AppManager/AppManager.m +7 -1
- data/platform/iphone/Classes/Camera/PickImageDelegate.h +9 -0
- data/platform/iphone/Classes/Camera/PickImageDelegate.m +75 -4
- data/platform/iphone/Classes/GeoLocation/LocationController.h +8 -2
- data/platform/iphone/Classes/GeoLocation/LocationController.m +74 -76
- data/platform/iphone/Classes/InitMemoryInfoCollector.h +33 -0
- data/platform/iphone/Classes/InitMemoryInfoCollector.mm +52 -0
- data/platform/iphone/Classes/NativeView/NVViewController.h +0 -0
- data/platform/iphone/Classes/NativeView/NVViewController.m +34 -2
- data/platform/iphone/Classes/Rhodes.m +22 -2
- data/platform/iphone/Classes/Signature/SignatureDelegate.m +19 -0
- data/platform/iphone/Classes/Signature/SignatureViewController.h +0 -0
- data/platform/iphone/Classes/Signature/SignatureViewController.m +0 -0
- data/platform/iphone/Classes/SimpleMainView.h +0 -0
- data/platform/iphone/Classes/SimpleMainView.m +3 -3
- data/platform/iphone/ESRI/BluePushpin.png +0 -0
- data/platform/iphone/ESRI/BluePushpin@2x.png +0 -0
- data/platform/iphone/ESRI/esri.png +0 -0
- data/platform/iphone/ESRI/esri@2x.png +0 -0
- data/platform/iphone/rbuild/iphone.rake +75 -7
- data/platform/iphone/rhorunner.xcodeproj/project.pbxproj +13 -4
- data/platform/linux/target/compiler/rubylinux +0 -0
- data/platform/mac/target/compiler/RubyMac +0 -0
- data/platform/osx/Rhodes Launcher/rhorunner.app/rhorunner b/data/platform/osx/Rhodes → Launcher/rhorunner.app/rhorunner +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtCore.framework/Versions/4/QtCore +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtGui.framework/Resources/qt_menu.nib/keyedobjects.nib +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtGui.framework/Versions/4/QtGui +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtNetwork.framework/Versions/4/QtNetwork +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/QtWebKit.framework/Versions/4/QtWebKit +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Info.plist +1 -1
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/MacOS/RhoSimulator +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/accessible/libqtaccessiblewidgets.dylib +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/bearer/libqcorewlanbearer.dylib +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/bearer/libqgenericbearer.dylib +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/codecs/libqcncodecs.dylib +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/codecs/libqjpcodecs.dylib +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/codecs/libqkrcodecs.dylib +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/codecs/libqtwcodecs.dylib +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/graphicssystems/libqtracegraphicssystem.dylib +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/imageformats/libqgif.dylib +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/imageformats/libqico.dylib +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/imageformats/libqjpeg.dylib +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/imageformats/libqmng.dylib +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/imageformats/libqtga.dylib +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/imageformats/libqtiff.dylib +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/qmltooling/libqmldbg_inspector.dylib +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/qmltooling/libqmldbg_tcp.dylib +0 -0
- data/platform/osx/build/osx.rake +6 -8
- data/platform/shared/RhoConnectClient/RhoConnectClient.cpp +165 -33
- data/platform/shared/RhoConnectClient/RhoConnectClient.h +10 -1
- data/platform/shared/common/BundleManager.cpp +27 -16
- data/platform/shared/common/ExtManager.h +15 -2
- data/platform/shared/common/RhoConf.cpp +17 -2
- data/platform/shared/common/RhoConf.h +3 -1
- data/platform/shared/common/RhoDefs.h +6 -6
- data/platform/shared/common/RhoFatalError.h +1 -1
- data/platform/shared/common/RhoFile.cpp +9 -9
- data/platform/shared/common/RhoFilePath.h +7 -3
- data/platform/shared/common/RhoPort.h +3 -3
- data/platform/shared/common/RhoSystem.h +1 -1
- data/platform/shared/common/RhodesApp.cpp +426 -26
- data/platform/shared/common/RhodesApp.h +11 -3
- data/platform/shared/common/RhodesAppBase.cpp +4 -1
- data/platform/shared/common/StringConverter.h +3 -3
- data/platform/shared/common/app_build_capabilities.h +8 -0
- data/platform/shared/common/map/BaseMapEngine.cpp +302 -21
- data/platform/shared/common/map/BaseMapEngine.h +132 -6
- data/platform/shared/common/map/ESRIMapEngine.cpp +2 -1
- data/platform/shared/common/map/GeocodingMapEngine.cpp +22 -4
- data/platform/shared/common/map/GeocodingMapEngine.h +40 -0
- data/platform/shared/common/map/GoogleMapEngine.cpp +13 -1
- data/platform/shared/common/map/MapEngine.h +7 -0
- data/platform/shared/common/map/OSMMapEngine.cpp +12 -1
- data/platform/shared/json/JSONIterator.cpp +1 -1
- data/platform/shared/json/RJSONTokener.c +2 -0
- data/platform/shared/json/config.h +3 -3
- data/platform/shared/logging/RhoLog.cpp +12 -3
- data/platform/shared/logging/RhoLog.h +2 -1
- data/platform/shared/logging/RhoLogConf.cpp +147 -11
- data/platform/shared/logging/RhoLogConf.h +39 -1
- data/platform/shared/logging/RhoLogSink.cpp +1 -1
- data/platform/shared/net/HttpServer.cpp +8 -4
- data/platform/shared/net/INetRequest.cpp +7 -0
- data/platform/shared/net/INetRequest.h +2 -0
- data/platform/shared/net/RawSocket.cpp +1 -1
- data/platform/shared/qt/pbxproj2pro.pl +0 -0
- data/platform/shared/qt/pro_vcproj_diff.pl +0 -0
- data/platform/shared/qt/rhodes/QtMainWindow.cpp +1 -1
- data/platform/shared/qt/rhodes/impl/RhoClassFactoryImpl.h +2 -2
- data/platform/shared/qt/rhodes/impl/RhoThreadImpl.cpp +2 -2
- data/platform/shared/qt/rhodes/impl/SystemImpl.cpp +11 -1
- data/platform/shared/qt/rhodes/main.cpp +5 -5
- data/platform/shared/ruby/ext/alert/alert_wrap.c +8 -8
- data/platform/shared/ruby/ext/bluetooth/bluetooth.i +0 -0
- data/platform/shared/ruby/ext/bluetooth/bluetooth_wrap.c +16 -9
- data/platform/shared/ruby/ext/camera/camera.i +2 -2
- data/platform/shared/ruby/ext/camera/camera_wrap.c +18 -3
- data/platform/shared/ruby/ext/datetimepicker/datetimepicker_wrap.c +37 -8
- data/platform/shared/ruby/ext/geolocation/geolocation_wrap.c +8 -8
- data/platform/shared/ruby/ext/mapview/mapview_wrap.c +16 -9
- data/platform/shared/ruby/ext/nativebar/nativebar_wrap.c +16 -9
- data/platform/shared/ruby/ext/nativeviewmanager/nativeviewmanager.i +0 -0
- data/platform/shared/ruby/ext/nativeviewmanager/nativeviewmanager_wrap.c +16 -9
- data/platform/shared/ruby/ext/phonebook/phonebook_wrap.c +8 -1
- data/platform/shared/ruby/ext/rho/rhoruby.c +7 -1
- data/platform/shared/ruby/ext/rho/rhoruby.h +1 -0
- data/platform/shared/ruby/ext/rhoconf/rhoconf_wrap.c +16 -9
- data/platform/shared/ruby/ext/signature/signature.i +0 -0
- data/platform/shared/ruby/ext/signature/signature_wrap.c +9 -9
- data/platform/shared/ruby/ext/syncengine/syncengine_wrap.c +16 -9
- data/platform/shared/ruby/ext/system/system_wrap.c +16 -9
- data/platform/shared/ruby/ext/webview/webview_wrap.c +16 -9
- data/platform/shared/ruby/gc.c +1 -0
- data/platform/shared/ruby/regint.h +6 -4
- data/platform/shared/ruby/vm.c +1 -0
- data/platform/shared/ruby/wince/wince.h +1 -1
- data/platform/shared/rubyext/System.cpp +1 -1
- data/platform/shared/shttpd/src/rdispatcher.c +3 -3
- data/platform/shared/shttpd/src/std_includes.h +1 -1
- data/platform/shared/sqlite/sqlite3.c +1 -0
- data/platform/shared/statistic/test/TestProfiling.cpp +1 -1
- data/platform/shared/stlport/build/lib/configure +0 -0
- data/platform/shared/stlport/build/lib/configure.bat +0 -0
- data/platform/shared/sync/SyncEngine.cpp +9 -12
- data/platform/shared/sync/SyncNotify.cpp +36 -3
- data/platform/shared/sync/SyncNotify.h +11 -4
- data/platform/shared/sync/SyncSource.cpp +32 -16
- data/platform/shared/sync/SyncSource.h +2 -3
- data/platform/shared/sync/SyncThread.cpp +13 -4
- data/platform/shared/sync/SyncThread.h +4 -0
- data/platform/shared/tcmalloc/page_heap.h +1 -1
- data/platform/shared/tcmalloc/rhomem.h +1 -1
- data/platform/shared/tcmalloc/windows/port.cpp +12 -3
- data/platform/shared/test/Tests.cpp +4 -4
- data/platform/shared/test/test_helper.cpp +4 -4
- data/platform/symbian/sqlite3/src/sqlite3.h +1 -1
- data/platform/win32/RhoSimulator/Microsoft.VC90.CRT.manifest +6 -0
- data/platform/win32/RhoSimulator/Microsoft.VC90.OpenMP.manifest +6 -0
- data/platform/win32/RhoSimulator/QtCore4.dll +0 -0
- data/platform/win32/RhoSimulator/QtGui4.dll +0 -0
- data/platform/win32/RhoSimulator/QtNetwork4.dll +0 -0
- data/platform/win32/RhoSimulator/QtWebKit4.dll +0 -0
- data/platform/win32/RhoSimulator/RhoSimulator.exe +0 -0
- data/platform/win32/RhoSimulator/imageformats/qgif4.dll +0 -0
- data/platform/win32/RhoSimulator/imageformats/qico4.dll +0 -0
- data/platform/win32/RhoSimulator/imageformats/qjpeg4.dll +0 -0
- data/platform/win32/RhoSimulator/imageformats/qmng4.dll +0 -0
- data/platform/win32/RhoSimulator/imageformats/qsvg4.dll +0 -0
- data/platform/win32/RhoSimulator/imageformats/qtiff4.dll +0 -0
- data/platform/win32/RhoSimulator/libeay32.dll +0 -0
- data/platform/win32/RhoSimulator/msvcm90.dll +0 -0
- data/platform/win32/RhoSimulator/msvcp90.dll +0 -0
- data/platform/win32/RhoSimulator/msvcr90.dll +0 -0
- data/platform/win32/RhoSimulator/phonon4.dll +0 -0
- data/platform/win32/RhoSimulator/ssleay32.dll +0 -0
- data/platform/win32/RhoSimulator/vcomp90.dll +0 -0
- data/platform/win32/target/replaceicon/replaceicon.exe +0 -0
- data/platform/win32/target/updateresstring/updateresstring.exe +0 -0
- data/platform/wm/RhoLib/RhoLib.vcproj +394 -69
- data/platform/wm/build/build_inf.js +83 -23
- data/platform/wm/build/wm.rake +127 -81
- data/platform/wm/rhodes.sln +6 -6
- data/platform/wm/rhodes/DateTimePicker.h +2 -2
- data/platform/wm/rhodes/IBrowserEngine.h +3 -0
- data/platform/wm/rhodes/IEBrowserEngine.cpp +34 -2
- data/platform/wm/rhodes/IEBrowserEngine.h +4 -1
- data/platform/wm/rhodes/LicenseStub.cpp +73 -0
- data/platform/{android/Rhodes/src/com/rhomobile/rhodes/webview/ChromeClientNew.java → wm/rhodes/LogMemory.cpp} +32 -20
- data/platform/{android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettings.java → wm/rhodes/LogMemory.h} +11 -8
- data/platform/wm/rhodes/LogOptionsDlg.h +1 -1
- data/platform/wm/rhodes/LogView.cpp +10 -10
- data/platform/wm/rhodes/LogView.h +10 -10
- data/platform/wm/rhodes/MainWindow.cpp +431 -173
- data/platform/wm/rhodes/MainWindow.h +37 -19
- data/platform/wm/rhodes/MapView/MapViewManager.h +1 -1
- data/platform/wm/rhodes/OkCancelModalDialog.h +1 -1
- data/platform/wm/rhodes/Rhodes.cpp +210 -47
- data/platform/wm/rhodes/Rhodes.rc +38 -0
- data/platform/wm/rhodes/bluetooth/Bluetooth.cpp +2 -2
- data/platform/wm/rhodes/bluetooth/Bluetooth.h +3 -3
- data/platform/wm/rhodes/camera/Camera.cpp +2 -1
- data/platform/wm/rhodes/camera/Camera.h +1 -1
- data/platform/wm/rhodes/resource.h +1 -1
- data/platform/wm/rhodes/rho/common/ExtManager.cpp +93 -5
- data/platform/wm/rhodes/rho/net/NetRequestImpl.cpp +2 -2
- data/platform/wm/rhodes/rho/rubyext/NativeToolbar.cpp +2 -2
- data/platform/wm/rhodes/rho/rubyext/SystemImpl.cpp +13 -7
- data/platform/wm/rhodes/rhodes.vcproj +1409 -1008
- data/platform/wm/rhodes/simulator/MainWindowQt.h +1 -1
- data/platform/wm/rhodes/stdafx.h +2 -2
- data/platform/wm/rhoelements.sln +7 -9
- data/platform/wm/rubylib/rubylib.vcproj +62 -1
- data/platform/wm/sqlite3/sqlite3.vcproj +62 -1
- data/platform/wm/syncengine/syncengine.vcproj +62 -1
- data/platform/wm/tcmalloc/tcmalloc.vcproj +72 -53
- data/platform/wm/tools/detool/detool.cpp +1435 -1357
- data/platform/wp7/RhoRubyExtGen/GenerateInitializers.cmd +0 -0
- data/platform/wp7/RhoRubyLib/common/RhoLicense.cs +105 -0
- data/platform/wp7/RhoRubyLib/common/RhodesApp.cs +23 -5
- data/platform/wp7/RhoRubyLib/sync/SyncNotify.cs +5 -0
- data/platform/wp7/RhoRubyLib/views/RhoView.xaml.cs +22 -3
- data/platform/wp7/build/wp.rake +1 -0
- data/platform/wp7/rhodes/MainPage.xaml.cs +11 -0
- data/rakefile.rb +225 -59
- data/res/build-tools/7za.exe +0 -0
- data/res/build-tools/RhoAppRunner.exe +0 -0
- data/res/build-tools/RhoLogServer.exe +0 -0
- data/res/build-tools/RhoRuby.exe +0 -0
- data/res/build-tools/RubyMac +0 -0
- data/res/build-tools/detool.exe +0 -0
- data/res/build-tools/iphonesim/Source/iPhoneSimulator.m +1 -1
- data/res/build-tools/iphonesim/build/Release/iphonesim +0 -0
- data/res/build-tools/iphonesim/build/Release/iphonesim_43 +0 -0
- data/res/build-tools/license_rc.dll +0 -0
- data/res/build-tools/make.exe +0 -0
- data/res/build-tools/rubylinux +0 -0
- data/res/build-tools/swig_patch/Lib/typemaps/fragments.swg +235 -0
- data/res/build-tools/wmdc_connect.exe +0 -0
- data/res/build-tools/wp7explorer.exe +0 -0
- data/res/generators/rhogen.rb +2 -2
- data/res/generators/templates/application/app/Settings/controller.rb +1 -1
- data/res/generators/templates/application/app/layout.erb +1 -1
- data/res/generators/templates/application/app/loading.png +0 -0
- data/res/generators/templates/application/public/css/re_webkit.css +736 -0
- data/res/generators/templates/application/public/css/windows_mobile.css +0 -0
- data/res/generators/templates/application/public/images/listArrow.png +0 -0
- data/res/generators/templates/application/public/jqmobile/images/ajax-loader.png +0 -0
- data/res/generators/templates/application/public/jqmobile/images/icons-18-black.png +0 -0
- data/res/generators/templates/application/public/jqmobile/images/icons-18-white.png +0 -0
- data/res/generators/templates/application/public/jqmobile/images/icons-36-black.png +0 -0
- data/res/generators/templates/application/public/jqmobile/images/icons-36-white.png +0 -0
- data/res/generators/templates/application/public/js/syncengine.js +409 -52
- data/res/generators/templates/extension/extensions/montana/ext/build +0 -0
- data/res/generators/templates/extension/extensions/montana/ext/build.bat +0 -0
- data/res/generators/templates/extension/extensions/montana/ext/montana/platform/android/Rakefile +10 -10
- data/res/generators/templates/spec/app/SpecRunner/controller.rb +2 -0
- data/res/libs/motorolalicence/android/MotorolaLicence.h +13 -0
- data/res/libs/motorolalicence/android/libMotorolaLicence.a +0 -0
- data/res/libs/motorolalicence/iphone/MotorolaLicence.h +13 -0
- data/res/libs/motorolalicence/iphone/libMotorolaLicence.a +0 -0
- data/rhodes.gemspec +1 -1
- data/spec/framework_spec/app/SpecRunner/controller.rb +2 -0
- data/spec/phone_spec/app/SpecRunner/controller.rb +2 -0
- data/version +1 -1
- metadata +487 -412
- data/Manifest.txt +0 -7960
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesActivityStartupListeners.java +0 -12
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettingsNew.java +0 -52
- data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebSettingsOld.java +0 -62
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/Frameworks/phonon.framework/Versions/4/phonon +0 -0
- data/platform/osx/bin/RhoSimulator/RhoSimulator.app/Contents/PlugIns/phonon_backend/libphonon_qt7.dylib +0 -0
- data/platform/win32/RhoSimulator/Microsoft.VC80.CRT.manifest +0 -8
- data/platform/win32/RhoSimulator/Microsoft.VC80.OpenMP.manifest +0 -7
- data/platform/win32/RhoSimulator/msvcm80.dll +0 -0
- data/platform/win32/RhoSimulator/msvcp80.dll +0 -0
- data/platform/win32/RhoSimulator/msvcr80.dll +0 -0
- data/platform/win32/RhoSimulator/vcomp.dll +0 -0
- data/rhomobile-debug-1.0.6.gem +0 -0
@@ -92,7 +92,7 @@ private:
|
|
92
92
|
|
93
93
|
public:
|
94
94
|
int m_nErrCode;
|
95
|
-
String m_strError
|
95
|
+
String m_strError;
|
96
96
|
String m_strQueryParams;
|
97
97
|
|
98
98
|
public:
|
@@ -103,7 +103,6 @@ public:
|
|
103
103
|
int getID()const { return m_nID; }
|
104
104
|
String getName() { return m_strName; }
|
105
105
|
String getSyncType(){ return m_strSyncType; }
|
106
|
-
String getServerError(){ return m_strServerError; }
|
107
106
|
int getErrorCode(){ return m_nErrCode; }
|
108
107
|
|
109
108
|
int getServerObjectsCount()const{ return m_nInserted+m_nDeleted; }
|
@@ -165,7 +164,7 @@ public:
|
|
165
164
|
void updateAssociation(const String& strOldObject, const String& strNewObject, const String& strAttrib);
|
166
165
|
|
167
166
|
void applyChangedValues();
|
168
|
-
|
167
|
+
void processServerErrors(json::CJSONEntry& oCmds);
|
169
168
|
|
170
169
|
void checkProgressStepNotify(boolean bEndTransaction);
|
171
170
|
|
@@ -82,6 +82,7 @@ CSyncThread::CSyncThread() : CThreadQueue()
|
|
82
82
|
CSyncThread::~CSyncThread(void)
|
83
83
|
{
|
84
84
|
m_oSyncEngine.exitSync();
|
85
|
+
LOG(INFO) + "Stopping Sync thread";
|
85
86
|
stop(SYNC_WAIT_BEFOREKILL_SECONDS);
|
86
87
|
|
87
88
|
db::CDBAdapter::closeAll();
|
@@ -205,13 +206,21 @@ void CSyncThread::stopAll() {
|
|
205
206
|
getCommands().clear();
|
206
207
|
}
|
207
208
|
|
208
|
-
|
209
|
+
CSyncThread::getSyncEngine().stopSyncByUser();
|
210
|
+
|
211
|
+
//don't wait if calling from notify callback
|
212
|
+
if ( CSyncThread::getSyncEngine().getNotify().isInsideCallback() )
|
213
|
+
{
|
214
|
+
LOG(INFO)+"STOP sync called inside notify.";
|
215
|
+
return;
|
216
|
+
}
|
217
|
+
|
209
218
|
CSyncThread::getInstance()->stopWait();
|
210
|
-
|
211
|
-
|
219
|
+
|
220
|
+
while (!CSyncThread::getInstance()->isWaiting()) {
|
212
221
|
CSyncThread::getInstance()->sleep(100);
|
213
222
|
}
|
214
|
-
|
223
|
+
|
215
224
|
while( CDBAdapter::isAnyInsideTransaction() )
|
216
225
|
CSyncThread::getInstance()->sleep(100);
|
217
226
|
}
|
@@ -205,6 +205,10 @@ void rho_sync_stop();
|
|
205
205
|
void rho_sync_set_source_property(int nSrcID, const char* szPropName, const char* szPropValue);
|
206
206
|
int rho_sync_issyncing();
|
207
207
|
|
208
|
+
void rho_sync_enable_status_popup(int b);
|
209
|
+
void rho_sync_register_push();
|
210
|
+
void rho_sync_set_ssl_verify_peer(int b);
|
211
|
+
|
208
212
|
#ifdef __cplusplus
|
209
213
|
};
|
210
214
|
#endif //__cplusplus
|
@@ -156,7 +156,7 @@ class PageHeap {
|
|
156
156
|
// should keep this value big because various incarnations of Linux
|
157
157
|
// have small limits on the number of mmap() regions per
|
158
158
|
// address-space.
|
159
|
-
static const int kMinSystemAlloc = 1 << (
|
159
|
+
static const int kMinSystemAlloc = 1 << (21 - kPageShift);
|
160
160
|
|
161
161
|
// For all span-lengths < kMaxPages we keep an exact-size list.
|
162
162
|
// REQUIRED: kMaxPages >= kMinSystemAlloc;
|
@@ -212,12 +212,21 @@ extern void* TCMalloc_SystemAlloc(size_t size, size_t *actual_size,
|
|
212
212
|
extra = alignment - pagesize;
|
213
213
|
}
|
214
214
|
|
215
|
-
|
216
|
-
|
215
|
+
void *result = VirtualAlloc(0, size + extra, MEM_RESERVE, PAGE_NOACCESS);
|
216
|
+
result = VirtualAlloc(result, size + extra, MEM_COMMIT, PAGE_READWRITE);
|
217
|
+
|
218
|
+
//void* result = VirtualAlloc(0, size + extra,
|
219
|
+
// MEM_COMMIT|MEM_RESERVE, PAGE_READWRITE);
|
217
220
|
//RAWLOG_INFO1("VirtualAlloc = %d", size + extra);
|
218
221
|
g_nTotalMemory += size + extra;
|
219
222
|
int nTotal = g_nTotalMemory/(1024*1024);
|
220
|
-
|
223
|
+
|
224
|
+
MEMORYSTATUS sMemStat;
|
225
|
+
sMemStat.dwLength = sizeof(MEMORYSTATUS);
|
226
|
+
GlobalMemoryStatus(&sMemStat);
|
227
|
+
sMemStat.dwAvailVirtual /= 1024;
|
228
|
+
|
229
|
+
printf("TCMALLOC: VirtualAlloc = %d; Total: %d(Mb); Free VM: %d\n", size + extra, nTotal, sMemStat.dwAvailVirtual);
|
221
230
|
|
222
231
|
if (result == NULL)
|
223
232
|
return NULL;
|
@@ -25,10 +25,10 @@
|
|
25
25
|
*------------------------------------------------------------------------*/
|
26
26
|
|
27
27
|
#include "common/RhoPort.h"
|
28
|
-
#ifdef
|
28
|
+
#ifdef OS_WINDOWS_DESKTOP
|
29
29
|
#include <atlstr.h>
|
30
30
|
#endif
|
31
|
-
#if defined
|
31
|
+
#if defined(WINDOWS_PLATFORM)
|
32
32
|
#include "ruby\wince\direct.h"
|
33
33
|
#endif
|
34
34
|
|
@@ -102,11 +102,11 @@ const char* RhoGetRootPath() {
|
|
102
102
|
|
103
103
|
int rho_testvprintf(const char * fmt, va_list args)
|
104
104
|
{
|
105
|
-
#ifdef
|
105
|
+
#ifdef OS_WINDOWS_DESKTOP
|
106
106
|
CAtlStringA str;
|
107
107
|
str.FormatV(fmt,args);
|
108
108
|
OutputDebugStringA(str);
|
109
|
-
#endif //
|
109
|
+
#endif //OS_WINDOWS_DESKTOP
|
110
110
|
return vfprintf(stdout,fmt, args);
|
111
111
|
}
|
112
112
|
|
@@ -27,11 +27,11 @@
|
|
27
27
|
#include "common/RhoPort.h"
|
28
28
|
#include "common/RhoStd.h"
|
29
29
|
#include "common/RhodesApp.h"
|
30
|
-
#ifdef
|
30
|
+
#ifdef OS_WINDOWS_DESKTOP
|
31
31
|
#include <atlstr.h>
|
32
32
|
#endif
|
33
33
|
|
34
|
-
#ifdef
|
34
|
+
#ifdef OS_WINDOWS_DESKTOP
|
35
35
|
extern "C" const char* rho_native_rhopath()
|
36
36
|
{
|
37
37
|
static rho::String m_strRootPath;
|
@@ -64,11 +64,11 @@ rho::StringW rho::common::CRhodesApp::getAppNameW()
|
|
64
64
|
|
65
65
|
int rho_testvprintf(const char * fmt, va_list args)
|
66
66
|
{
|
67
|
-
#ifdef
|
67
|
+
#ifdef OS_WINDOWS_DESKTOP
|
68
68
|
CAtlStringA str;
|
69
69
|
str.FormatV(fmt,args);
|
70
70
|
OutputDebugStringA(str);
|
71
|
-
#endif //
|
71
|
+
#endif //OS_WINDOWS_DESKTOP
|
72
72
|
return vfprintf(stdout,fmt, args);
|
73
73
|
}
|
74
74
|
|
@@ -0,0 +1,6 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
2
|
+
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
3
|
+
<noInheritable></noInheritable>
|
4
|
+
<assemblyIdentity type="win32" name="Microsoft.VC90.CRT" version="9.0.30729.6161" processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
|
5
|
+
<file name="msvcr90.dll" hashalg="SHA1" hash="7021457b391b35606e708c69987e4b6f606609ee"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Transforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>S83+LBs1RkUxSkzia1WysaAhLbk=</dsig:DigestValue></asmv2:hash></file> <file name="msvcp90.dll" hashalg="SHA1" hash="88549dd3ce8eaa62ca8aad0e96ddd9fec2203628"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Transforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>cKyCmIKF+fcGn6qaBhKuun+wAcQ=</dsig:DigestValue></asmv2:hash></file> <file name="msvcm90.dll" hashalg="SHA1" hash="65ef374affa5b48827e539b35b3275c201b41fc9"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Transforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>r+4y/NnOFgaANxNXoHL1jF95DUg=</dsig:DigestValue></asmv2:hash></file>
|
6
|
+
</assembly>
|
@@ -0,0 +1,6 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
2
|
+
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
3
|
+
<noInheritable></noInheritable>
|
4
|
+
<assemblyIdentity type="win32" name="Microsoft.VC90.OpenMP" version="9.0.30729.6161" processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
|
5
|
+
<file name="vcomp90.dll" hashalg="SHA1" hash="2b27c43de97b4fb3bf26e438d96342e085e038f1"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Transforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>UtbClVB14kQ4XEg8PzoGVvXrA2Q=</dsig:DigestValue></asmv2:hash></file>
|
6
|
+
</assembly>
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
File without changes
|
File without changes
|
@@ -1,11 +1,12 @@
|
|
1
1
|
<?xml version="1.0" encoding="windows-1251"?>
|
2
2
|
<VisualStudioProject
|
3
3
|
ProjectType="Visual C++"
|
4
|
-
Version="
|
4
|
+
Version="9,00"
|
5
5
|
Name="RhoLib"
|
6
6
|
ProjectGUID="{F196A418-11F1-4067-9F4F-BCC7D70E6EC5}"
|
7
7
|
RootNamespace="RhoLib"
|
8
8
|
Keyword="Win32Proj"
|
9
|
+
TargetFrameworkVersion="131072"
|
9
10
|
>
|
10
11
|
<Platforms>
|
11
12
|
<Platform
|
@@ -23,15 +24,15 @@
|
|
23
24
|
<Platform
|
24
25
|
Name="MC3000c50b (ARMV4I)"
|
25
26
|
/>
|
26
|
-
<Platform
|
27
|
-
Name="Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
|
28
|
-
/>
|
29
27
|
<Platform
|
30
28
|
Name="Windows Mobile 5.0 Pocket PC SDK (ARMV4I)"
|
31
29
|
/>
|
32
30
|
<Platform
|
33
31
|
Name="Windows Mobile 5.0 Smartphone SDK (ARMV4I)"
|
34
32
|
/>
|
33
|
+
<Platform
|
34
|
+
Name="Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
|
35
|
+
/>
|
35
36
|
<Platform
|
36
37
|
Name="Windows Mobile 6 Standard SDK (ARMV4I)"
|
37
38
|
/>
|
@@ -100,6 +101,9 @@
|
|
100
101
|
<Tool
|
101
102
|
Name="VCBscMakeTool"
|
102
103
|
/>
|
104
|
+
<Tool
|
105
|
+
Name="VCFxCopTool"
|
106
|
+
/>
|
103
107
|
<Tool
|
104
108
|
Name="VCCodeSignTool"
|
105
109
|
/>
|
@@ -244,6 +248,9 @@
|
|
244
248
|
<Tool
|
245
249
|
Name="VCBscMakeTool"
|
246
250
|
/>
|
251
|
+
<Tool
|
252
|
+
Name="VCFxCopTool"
|
253
|
+
/>
|
247
254
|
<Tool
|
248
255
|
Name="VCCodeSignTool"
|
249
256
|
/>
|
@@ -321,6 +328,9 @@
|
|
321
328
|
<Tool
|
322
329
|
Name="VCBscMakeTool"
|
323
330
|
/>
|
331
|
+
<Tool
|
332
|
+
Name="VCFxCopTool"
|
333
|
+
/>
|
324
334
|
<Tool
|
325
335
|
Name="VCCodeSignTool"
|
326
336
|
/>
|
@@ -398,6 +408,9 @@
|
|
398
408
|
<Tool
|
399
409
|
Name="VCBscMakeTool"
|
400
410
|
/>
|
411
|
+
<Tool
|
412
|
+
Name="VCFxCopTool"
|
413
|
+
/>
|
401
414
|
<Tool
|
402
415
|
Name="VCCodeSignTool"
|
403
416
|
/>
|
@@ -414,7 +427,7 @@
|
|
414
427
|
/>
|
415
428
|
</Configuration>
|
416
429
|
<Configuration
|
417
|
-
Name="Debug|Windows Mobile
|
430
|
+
Name="Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)"
|
418
431
|
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
419
432
|
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
420
433
|
ConfigurationType="4"
|
@@ -434,7 +447,6 @@
|
|
434
447
|
/>
|
435
448
|
<Tool
|
436
449
|
Name="VCMIDLTool"
|
437
|
-
TargetEnvironment="1"
|
438
450
|
/>
|
439
451
|
<Tool
|
440
452
|
Name="VCCLCompilerTool"
|
@@ -463,7 +475,86 @@
|
|
463
475
|
/>
|
464
476
|
<Tool
|
465
477
|
Name="VCLibrarianTool"
|
466
|
-
AdditionalOptions=" /subsystem:windowsce,5.
|
478
|
+
AdditionalOptions=" /subsystem:windowsce,5.01"
|
479
|
+
OutputFile="$(OutDir)/RhoLib.lib"
|
480
|
+
/>
|
481
|
+
<Tool
|
482
|
+
Name="VCALinkTool"
|
483
|
+
/>
|
484
|
+
<Tool
|
485
|
+
Name="VCXDCMakeTool"
|
486
|
+
/>
|
487
|
+
<Tool
|
488
|
+
Name="VCBscMakeTool"
|
489
|
+
/>
|
490
|
+
<Tool
|
491
|
+
Name="VCFxCopTool"
|
492
|
+
/>
|
493
|
+
<Tool
|
494
|
+
Name="VCCodeSignTool"
|
495
|
+
/>
|
496
|
+
<Tool
|
497
|
+
Name="VCPostBuildEventTool"
|
498
|
+
/>
|
499
|
+
<DeploymentTool
|
500
|
+
ForceDirty="-1"
|
501
|
+
RemoteDirectory=""
|
502
|
+
RegisterOutput="0"
|
503
|
+
AdditionalFiles=""
|
504
|
+
/>
|
505
|
+
<DebuggerTool
|
506
|
+
/>
|
507
|
+
</Configuration>
|
508
|
+
<Configuration
|
509
|
+
Name="Debug|Windows Mobile 5.0 Smartphone SDK (ARMV4I)"
|
510
|
+
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
511
|
+
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
512
|
+
ConfigurationType="4"
|
513
|
+
CharacterSet="1"
|
514
|
+
>
|
515
|
+
<Tool
|
516
|
+
Name="VCPreBuildEventTool"
|
517
|
+
/>
|
518
|
+
<Tool
|
519
|
+
Name="VCCustomBuildTool"
|
520
|
+
/>
|
521
|
+
<Tool
|
522
|
+
Name="VCXMLDataGeneratorTool"
|
523
|
+
/>
|
524
|
+
<Tool
|
525
|
+
Name="VCWebServiceProxyGeneratorTool"
|
526
|
+
/>
|
527
|
+
<Tool
|
528
|
+
Name="VCMIDLTool"
|
529
|
+
/>
|
530
|
+
<Tool
|
531
|
+
Name="VCCLCompilerTool"
|
532
|
+
ExecutionBucket="7"
|
533
|
+
Optimization="0"
|
534
|
+
AdditionalIncludeDirectories="../../shared/ruby;../../shared"
|
535
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
536
|
+
MinimalRebuild="true"
|
537
|
+
RuntimeLibrary="1"
|
538
|
+
UsePrecompiledHeader="0"
|
539
|
+
WarningLevel="3"
|
540
|
+
DebugInformationFormat="3"
|
541
|
+
DisableSpecificWarnings="4018;4996"
|
542
|
+
/>
|
543
|
+
<Tool
|
544
|
+
Name="VCManagedResourceCompilerTool"
|
545
|
+
/>
|
546
|
+
<Tool
|
547
|
+
Name="VCResourceCompilerTool"
|
548
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
549
|
+
Culture="1033"
|
550
|
+
AdditionalIncludeDirectories="$(IntDir)"
|
551
|
+
/>
|
552
|
+
<Tool
|
553
|
+
Name="VCPreLinkEventTool"
|
554
|
+
/>
|
555
|
+
<Tool
|
556
|
+
Name="VCLibrarianTool"
|
557
|
+
AdditionalOptions=" /subsystem:windowsce,5.01"
|
467
558
|
OutputFile="$(OutDir)/RhoLib.lib"
|
468
559
|
/>
|
469
560
|
<Tool
|
@@ -475,6 +566,9 @@
|
|
475
566
|
<Tool
|
476
567
|
Name="VCBscMakeTool"
|
477
568
|
/>
|
569
|
+
<Tool
|
570
|
+
Name="VCFxCopTool"
|
571
|
+
/>
|
478
572
|
<Tool
|
479
573
|
Name="VCCodeSignTool"
|
480
574
|
/>
|
@@ -550,6 +644,9 @@
|
|
550
644
|
<Tool
|
551
645
|
Name="VCBscMakeTool"
|
552
646
|
/>
|
647
|
+
<Tool
|
648
|
+
Name="VCFxCopTool"
|
649
|
+
/>
|
553
650
|
<Tool
|
554
651
|
Name="VCCodeSignTool"
|
555
652
|
/>
|
@@ -692,6 +789,9 @@
|
|
692
789
|
<Tool
|
693
790
|
Name="VCBscMakeTool"
|
694
791
|
/>
|
792
|
+
<Tool
|
793
|
+
Name="VCFxCopTool"
|
794
|
+
/>
|
695
795
|
<Tool
|
696
796
|
Name="VCCodeSignTool"
|
697
797
|
/>
|
@@ -768,6 +868,9 @@
|
|
768
868
|
<Tool
|
769
869
|
Name="VCBscMakeTool"
|
770
870
|
/>
|
871
|
+
<Tool
|
872
|
+
Name="VCFxCopTool"
|
873
|
+
/>
|
771
874
|
<Tool
|
772
875
|
Name="VCCodeSignTool"
|
773
876
|
/>
|
@@ -844,6 +947,9 @@
|
|
844
947
|
<Tool
|
845
948
|
Name="VCBscMakeTool"
|
846
949
|
/>
|
950
|
+
<Tool
|
951
|
+
Name="VCFxCopTool"
|
952
|
+
/>
|
847
953
|
<Tool
|
848
954
|
Name="VCCodeSignTool"
|
849
955
|
/>
|
@@ -860,7 +966,7 @@
|
|
860
966
|
/>
|
861
967
|
</Configuration>
|
862
968
|
<Configuration
|
863
|
-
Name="Release|Windows Mobile
|
969
|
+
Name="Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)"
|
864
970
|
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
865
971
|
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
866
972
|
ConfigurationType="4"
|
@@ -880,7 +986,6 @@
|
|
880
986
|
/>
|
881
987
|
<Tool
|
882
988
|
Name="VCMIDLTool"
|
883
|
-
TargetEnvironment="1"
|
884
989
|
/>
|
885
990
|
<Tool
|
886
991
|
Name="VCCLCompilerTool"
|
@@ -908,7 +1013,85 @@
|
|
908
1013
|
/>
|
909
1014
|
<Tool
|
910
1015
|
Name="VCLibrarianTool"
|
911
|
-
AdditionalOptions=" /subsystem:windowsce,5.
|
1016
|
+
AdditionalOptions=" /subsystem:windowsce,5.01"
|
1017
|
+
OutputFile="$(OutDir)/RhoLib.lib"
|
1018
|
+
/>
|
1019
|
+
<Tool
|
1020
|
+
Name="VCALinkTool"
|
1021
|
+
/>
|
1022
|
+
<Tool
|
1023
|
+
Name="VCXDCMakeTool"
|
1024
|
+
/>
|
1025
|
+
<Tool
|
1026
|
+
Name="VCBscMakeTool"
|
1027
|
+
/>
|
1028
|
+
<Tool
|
1029
|
+
Name="VCFxCopTool"
|
1030
|
+
/>
|
1031
|
+
<Tool
|
1032
|
+
Name="VCCodeSignTool"
|
1033
|
+
/>
|
1034
|
+
<Tool
|
1035
|
+
Name="VCPostBuildEventTool"
|
1036
|
+
/>
|
1037
|
+
<DeploymentTool
|
1038
|
+
ForceDirty="-1"
|
1039
|
+
RemoteDirectory=""
|
1040
|
+
RegisterOutput="0"
|
1041
|
+
AdditionalFiles=""
|
1042
|
+
/>
|
1043
|
+
<DebuggerTool
|
1044
|
+
/>
|
1045
|
+
</Configuration>
|
1046
|
+
<Configuration
|
1047
|
+
Name="Release|Windows Mobile 5.0 Smartphone SDK (ARMV4I)"
|
1048
|
+
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1049
|
+
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1050
|
+
ConfigurationType="4"
|
1051
|
+
CharacterSet="1"
|
1052
|
+
>
|
1053
|
+
<Tool
|
1054
|
+
Name="VCPreBuildEventTool"
|
1055
|
+
/>
|
1056
|
+
<Tool
|
1057
|
+
Name="VCCustomBuildTool"
|
1058
|
+
/>
|
1059
|
+
<Tool
|
1060
|
+
Name="VCXMLDataGeneratorTool"
|
1061
|
+
/>
|
1062
|
+
<Tool
|
1063
|
+
Name="VCWebServiceProxyGeneratorTool"
|
1064
|
+
/>
|
1065
|
+
<Tool
|
1066
|
+
Name="VCMIDLTool"
|
1067
|
+
/>
|
1068
|
+
<Tool
|
1069
|
+
Name="VCCLCompilerTool"
|
1070
|
+
ExecutionBucket="7"
|
1071
|
+
Optimization="2"
|
1072
|
+
AdditionalIncludeDirectories="../../shared/ruby;../../shared"
|
1073
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
1074
|
+
RuntimeLibrary="0"
|
1075
|
+
UsePrecompiledHeader="0"
|
1076
|
+
WarningLevel="3"
|
1077
|
+
DebugInformationFormat="3"
|
1078
|
+
DisableSpecificWarnings="4018;4996"
|
1079
|
+
/>
|
1080
|
+
<Tool
|
1081
|
+
Name="VCManagedResourceCompilerTool"
|
1082
|
+
/>
|
1083
|
+
<Tool
|
1084
|
+
Name="VCResourceCompilerTool"
|
1085
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
1086
|
+
Culture="1033"
|
1087
|
+
AdditionalIncludeDirectories="$(IntDir)"
|
1088
|
+
/>
|
1089
|
+
<Tool
|
1090
|
+
Name="VCPreLinkEventTool"
|
1091
|
+
/>
|
1092
|
+
<Tool
|
1093
|
+
Name="VCLibrarianTool"
|
1094
|
+
AdditionalOptions=" /subsystem:windowsce,5.01"
|
912
1095
|
OutputFile="$(OutDir)/RhoLib.lib"
|
913
1096
|
/>
|
914
1097
|
<Tool
|
@@ -920,6 +1103,9 @@
|
|
920
1103
|
<Tool
|
921
1104
|
Name="VCBscMakeTool"
|
922
1105
|
/>
|
1106
|
+
<Tool
|
1107
|
+
Name="VCFxCopTool"
|
1108
|
+
/>
|
923
1109
|
<Tool
|
924
1110
|
Name="VCCodeSignTool"
|
925
1111
|
/>
|
@@ -997,6 +1183,9 @@
|
|
997
1183
|
<Tool
|
998
1184
|
Name="VCBscMakeTool"
|
999
1185
|
/>
|
1186
|
+
<Tool
|
1187
|
+
Name="VCFxCopTool"
|
1188
|
+
/>
|
1000
1189
|
<Tool
|
1001
1190
|
Name="VCCodeSignTool"
|
1002
1191
|
/>
|
@@ -1142,6 +1331,9 @@
|
|
1142
1331
|
<Tool
|
1143
1332
|
Name="VCBscMakeTool"
|
1144
1333
|
/>
|
1334
|
+
<Tool
|
1335
|
+
Name="VCFxCopTool"
|
1336
|
+
/>
|
1145
1337
|
<Tool
|
1146
1338
|
Name="VCCodeSignTool"
|
1147
1339
|
/>
|
@@ -1219,6 +1411,9 @@
|
|
1219
1411
|
<Tool
|
1220
1412
|
Name="VCBscMakeTool"
|
1221
1413
|
/>
|
1414
|
+
<Tool
|
1415
|
+
Name="VCFxCopTool"
|
1416
|
+
/>
|
1222
1417
|
<Tool
|
1223
1418
|
Name="VCCodeSignTool"
|
1224
1419
|
/>
|
@@ -1296,6 +1491,9 @@
|
|
1296
1491
|
<Tool
|
1297
1492
|
Name="VCBscMakeTool"
|
1298
1493
|
/>
|
1494
|
+
<Tool
|
1495
|
+
Name="VCFxCopTool"
|
1496
|
+
/>
|
1299
1497
|
<Tool
|
1300
1498
|
Name="VCCodeSignTool"
|
1301
1499
|
/>
|
@@ -1312,11 +1510,8 @@
|
|
1312
1510
|
/>
|
1313
1511
|
</Configuration>
|
1314
1512
|
<Configuration
|
1315
|
-
Name="SimulatorDebug|Windows Mobile
|
1316
|
-
|
1317
|
-
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1318
|
-
ConfigurationType="4"
|
1319
|
-
CharacterSet="1"
|
1513
|
+
Name="SimulatorDebug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)"
|
1514
|
+
ConfigurationType="1"
|
1320
1515
|
>
|
1321
1516
|
<Tool
|
1322
1517
|
Name="VCPreBuildEventTool"
|
@@ -1332,37 +1527,84 @@
|
|
1332
1527
|
/>
|
1333
1528
|
<Tool
|
1334
1529
|
Name="VCMIDLTool"
|
1335
|
-
TargetEnvironment="1"
|
1336
1530
|
/>
|
1337
1531
|
<Tool
|
1338
1532
|
Name="VCCLCompilerTool"
|
1339
1533
|
ExecutionBucket="7"
|
1340
|
-
Optimization="0"
|
1341
|
-
AdditionalIncludeDirectories="../../shared/ruby;../../shared"
|
1342
|
-
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
1343
|
-
MinimalRebuild="true"
|
1344
|
-
RuntimeLibrary="1"
|
1345
|
-
UsePrecompiledHeader="0"
|
1346
|
-
WarningLevel="3"
|
1347
|
-
DebugInformationFormat="3"
|
1348
|
-
DisableSpecificWarnings="4018;4996"
|
1349
1534
|
/>
|
1350
1535
|
<Tool
|
1351
1536
|
Name="VCManagedResourceCompilerTool"
|
1352
1537
|
/>
|
1353
1538
|
<Tool
|
1354
1539
|
Name="VCResourceCompilerTool"
|
1355
|
-
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
1356
|
-
Culture="1033"
|
1357
|
-
AdditionalIncludeDirectories="$(IntDir)"
|
1358
1540
|
/>
|
1359
1541
|
<Tool
|
1360
1542
|
Name="VCPreLinkEventTool"
|
1361
1543
|
/>
|
1362
1544
|
<Tool
|
1363
|
-
Name="
|
1364
|
-
|
1365
|
-
|
1545
|
+
Name="VCLinkerTool"
|
1546
|
+
/>
|
1547
|
+
<Tool
|
1548
|
+
Name="VCALinkTool"
|
1549
|
+
/>
|
1550
|
+
<Tool
|
1551
|
+
Name="VCXDCMakeTool"
|
1552
|
+
/>
|
1553
|
+
<Tool
|
1554
|
+
Name="VCBscMakeTool"
|
1555
|
+
/>
|
1556
|
+
<Tool
|
1557
|
+
Name="VCFxCopTool"
|
1558
|
+
/>
|
1559
|
+
<Tool
|
1560
|
+
Name="VCCodeSignTool"
|
1561
|
+
/>
|
1562
|
+
<Tool
|
1563
|
+
Name="VCPostBuildEventTool"
|
1564
|
+
/>
|
1565
|
+
<DeploymentTool
|
1566
|
+
ForceDirty="-1"
|
1567
|
+
RemoteDirectory=""
|
1568
|
+
RegisterOutput="0"
|
1569
|
+
AdditionalFiles=""
|
1570
|
+
/>
|
1571
|
+
<DebuggerTool
|
1572
|
+
/>
|
1573
|
+
</Configuration>
|
1574
|
+
<Configuration
|
1575
|
+
Name="SimulatorDebug|Windows Mobile 5.0 Smartphone SDK (ARMV4I)"
|
1576
|
+
ConfigurationType="1"
|
1577
|
+
>
|
1578
|
+
<Tool
|
1579
|
+
Name="VCPreBuildEventTool"
|
1580
|
+
/>
|
1581
|
+
<Tool
|
1582
|
+
Name="VCCustomBuildTool"
|
1583
|
+
/>
|
1584
|
+
<Tool
|
1585
|
+
Name="VCXMLDataGeneratorTool"
|
1586
|
+
/>
|
1587
|
+
<Tool
|
1588
|
+
Name="VCWebServiceProxyGeneratorTool"
|
1589
|
+
/>
|
1590
|
+
<Tool
|
1591
|
+
Name="VCMIDLTool"
|
1592
|
+
/>
|
1593
|
+
<Tool
|
1594
|
+
Name="VCCLCompilerTool"
|
1595
|
+
ExecutionBucket="7"
|
1596
|
+
/>
|
1597
|
+
<Tool
|
1598
|
+
Name="VCManagedResourceCompilerTool"
|
1599
|
+
/>
|
1600
|
+
<Tool
|
1601
|
+
Name="VCResourceCompilerTool"
|
1602
|
+
/>
|
1603
|
+
<Tool
|
1604
|
+
Name="VCPreLinkEventTool"
|
1605
|
+
/>
|
1606
|
+
<Tool
|
1607
|
+
Name="VCLinkerTool"
|
1366
1608
|
/>
|
1367
1609
|
<Tool
|
1368
1610
|
Name="VCALinkTool"
|
@@ -1373,6 +1615,9 @@
|
|
1373
1615
|
<Tool
|
1374
1616
|
Name="VCBscMakeTool"
|
1375
1617
|
/>
|
1618
|
+
<Tool
|
1619
|
+
Name="VCFxCopTool"
|
1620
|
+
/>
|
1376
1621
|
<Tool
|
1377
1622
|
Name="VCCodeSignTool"
|
1378
1623
|
/>
|
@@ -1449,6 +1694,9 @@
|
|
1449
1694
|
<Tool
|
1450
1695
|
Name="VCBscMakeTool"
|
1451
1696
|
/>
|
1697
|
+
<Tool
|
1698
|
+
Name="VCFxCopTool"
|
1699
|
+
/>
|
1452
1700
|
<Tool
|
1453
1701
|
Name="VCCodeSignTool"
|
1454
1702
|
/>
|
@@ -1592,6 +1840,9 @@
|
|
1592
1840
|
<Tool
|
1593
1841
|
Name="VCBscMakeTool"
|
1594
1842
|
/>
|
1843
|
+
<Tool
|
1844
|
+
Name="VCFxCopTool"
|
1845
|
+
/>
|
1595
1846
|
<Tool
|
1596
1847
|
Name="VCCodeSignTool"
|
1597
1848
|
/>
|
@@ -1668,6 +1919,9 @@
|
|
1668
1919
|
<Tool
|
1669
1920
|
Name="VCBscMakeTool"
|
1670
1921
|
/>
|
1922
|
+
<Tool
|
1923
|
+
Name="VCFxCopTool"
|
1924
|
+
/>
|
1671
1925
|
<Tool
|
1672
1926
|
Name="VCCodeSignTool"
|
1673
1927
|
/>
|
@@ -1744,6 +1998,9 @@
|
|
1744
1998
|
<Tool
|
1745
1999
|
Name="VCBscMakeTool"
|
1746
2000
|
/>
|
2001
|
+
<Tool
|
2002
|
+
Name="VCFxCopTool"
|
2003
|
+
/>
|
1747
2004
|
<Tool
|
1748
2005
|
Name="VCCodeSignTool"
|
1749
2006
|
/>
|
@@ -1760,11 +2017,8 @@
|
|
1760
2017
|
/>
|
1761
2018
|
</Configuration>
|
1762
2019
|
<Configuration
|
1763
|
-
Name="SimulatorRelease|Windows Mobile
|
1764
|
-
|
1765
|
-
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1766
|
-
ConfigurationType="4"
|
1767
|
-
CharacterSet="1"
|
2020
|
+
Name="SimulatorRelease|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)"
|
2021
|
+
ConfigurationType="1"
|
1768
2022
|
>
|
1769
2023
|
<Tool
|
1770
2024
|
Name="VCPreBuildEventTool"
|
@@ -1780,36 +2034,22 @@
|
|
1780
2034
|
/>
|
1781
2035
|
<Tool
|
1782
2036
|
Name="VCMIDLTool"
|
1783
|
-
TargetEnvironment="1"
|
1784
2037
|
/>
|
1785
2038
|
<Tool
|
1786
2039
|
Name="VCCLCompilerTool"
|
1787
2040
|
ExecutionBucket="7"
|
1788
|
-
Optimization="2"
|
1789
|
-
AdditionalIncludeDirectories="../../shared/ruby;../../shared"
|
1790
|
-
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
1791
|
-
RuntimeLibrary="0"
|
1792
|
-
UsePrecompiledHeader="0"
|
1793
|
-
WarningLevel="3"
|
1794
|
-
DebugInformationFormat="3"
|
1795
|
-
DisableSpecificWarnings="4018;4996"
|
1796
2041
|
/>
|
1797
2042
|
<Tool
|
1798
2043
|
Name="VCManagedResourceCompilerTool"
|
1799
2044
|
/>
|
1800
2045
|
<Tool
|
1801
2046
|
Name="VCResourceCompilerTool"
|
1802
|
-
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
1803
|
-
Culture="1033"
|
1804
|
-
AdditionalIncludeDirectories="$(IntDir)"
|
1805
2047
|
/>
|
1806
2048
|
<Tool
|
1807
2049
|
Name="VCPreLinkEventTool"
|
1808
2050
|
/>
|
1809
2051
|
<Tool
|
1810
|
-
Name="
|
1811
|
-
AdditionalOptions=" /subsystem:windowsce,5.02"
|
1812
|
-
OutputFile="$(OutDir)/RhoLib.lib"
|
2052
|
+
Name="VCLinkerTool"
|
1813
2053
|
/>
|
1814
2054
|
<Tool
|
1815
2055
|
Name="VCALinkTool"
|
@@ -1820,6 +2060,9 @@
|
|
1820
2060
|
<Tool
|
1821
2061
|
Name="VCBscMakeTool"
|
1822
2062
|
/>
|
2063
|
+
<Tool
|
2064
|
+
Name="VCFxCopTool"
|
2065
|
+
/>
|
1823
2066
|
<Tool
|
1824
2067
|
Name="VCCodeSignTool"
|
1825
2068
|
/>
|
@@ -1836,7 +2079,69 @@
|
|
1836
2079
|
/>
|
1837
2080
|
</Configuration>
|
1838
2081
|
<Configuration
|
1839
|
-
Name="
|
2082
|
+
Name="SimulatorRelease|Windows Mobile 5.0 Smartphone SDK (ARMV4I)"
|
2083
|
+
ConfigurationType="1"
|
2084
|
+
>
|
2085
|
+
<Tool
|
2086
|
+
Name="VCPreBuildEventTool"
|
2087
|
+
/>
|
2088
|
+
<Tool
|
2089
|
+
Name="VCCustomBuildTool"
|
2090
|
+
/>
|
2091
|
+
<Tool
|
2092
|
+
Name="VCXMLDataGeneratorTool"
|
2093
|
+
/>
|
2094
|
+
<Tool
|
2095
|
+
Name="VCWebServiceProxyGeneratorTool"
|
2096
|
+
/>
|
2097
|
+
<Tool
|
2098
|
+
Name="VCMIDLTool"
|
2099
|
+
/>
|
2100
|
+
<Tool
|
2101
|
+
Name="VCCLCompilerTool"
|
2102
|
+
ExecutionBucket="7"
|
2103
|
+
/>
|
2104
|
+
<Tool
|
2105
|
+
Name="VCManagedResourceCompilerTool"
|
2106
|
+
/>
|
2107
|
+
<Tool
|
2108
|
+
Name="VCResourceCompilerTool"
|
2109
|
+
/>
|
2110
|
+
<Tool
|
2111
|
+
Name="VCPreLinkEventTool"
|
2112
|
+
/>
|
2113
|
+
<Tool
|
2114
|
+
Name="VCLinkerTool"
|
2115
|
+
/>
|
2116
|
+
<Tool
|
2117
|
+
Name="VCALinkTool"
|
2118
|
+
/>
|
2119
|
+
<Tool
|
2120
|
+
Name="VCXDCMakeTool"
|
2121
|
+
/>
|
2122
|
+
<Tool
|
2123
|
+
Name="VCBscMakeTool"
|
2124
|
+
/>
|
2125
|
+
<Tool
|
2126
|
+
Name="VCFxCopTool"
|
2127
|
+
/>
|
2128
|
+
<Tool
|
2129
|
+
Name="VCCodeSignTool"
|
2130
|
+
/>
|
2131
|
+
<Tool
|
2132
|
+
Name="VCPostBuildEventTool"
|
2133
|
+
/>
|
2134
|
+
<DeploymentTool
|
2135
|
+
ForceDirty="-1"
|
2136
|
+
RemoteDirectory=""
|
2137
|
+
RegisterOutput="0"
|
2138
|
+
AdditionalFiles=""
|
2139
|
+
/>
|
2140
|
+
<DebuggerTool
|
2141
|
+
/>
|
2142
|
+
</Configuration>
|
2143
|
+
<Configuration
|
2144
|
+
Name="Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
|
1840
2145
|
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1841
2146
|
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1842
2147
|
ConfigurationType="4"
|
@@ -1856,6 +2161,7 @@
|
|
1856
2161
|
/>
|
1857
2162
|
<Tool
|
1858
2163
|
Name="VCMIDLTool"
|
2164
|
+
TargetEnvironment="1"
|
1859
2165
|
/>
|
1860
2166
|
<Tool
|
1861
2167
|
Name="VCCLCompilerTool"
|
@@ -1884,7 +2190,7 @@
|
|
1884
2190
|
/>
|
1885
2191
|
<Tool
|
1886
2192
|
Name="VCLibrarianTool"
|
1887
|
-
AdditionalOptions=" /subsystem:windowsce,5.
|
2193
|
+
AdditionalOptions=" /subsystem:windowsce,5.02"
|
1888
2194
|
OutputFile="$(OutDir)/RhoLib.lib"
|
1889
2195
|
/>
|
1890
2196
|
<Tool
|
@@ -1896,6 +2202,9 @@
|
|
1896
2202
|
<Tool
|
1897
2203
|
Name="VCBscMakeTool"
|
1898
2204
|
/>
|
2205
|
+
<Tool
|
2206
|
+
Name="VCFxCopTool"
|
2207
|
+
/>
|
1899
2208
|
<Tool
|
1900
2209
|
Name="VCCodeSignTool"
|
1901
2210
|
/>
|
@@ -1912,7 +2221,7 @@
|
|
1912
2221
|
/>
|
1913
2222
|
</Configuration>
|
1914
2223
|
<Configuration
|
1915
|
-
Name="
|
2224
|
+
Name="Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
|
1916
2225
|
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1917
2226
|
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1918
2227
|
ConfigurationType="4"
|
@@ -1932,15 +2241,15 @@
|
|
1932
2241
|
/>
|
1933
2242
|
<Tool
|
1934
2243
|
Name="VCMIDLTool"
|
2244
|
+
TargetEnvironment="1"
|
1935
2245
|
/>
|
1936
2246
|
<Tool
|
1937
2247
|
Name="VCCLCompilerTool"
|
1938
2248
|
ExecutionBucket="7"
|
1939
|
-
Optimization="
|
2249
|
+
Optimization="2"
|
1940
2250
|
AdditionalIncludeDirectories="../../shared/ruby;../../shared"
|
1941
|
-
PreprocessorDefinitions="
|
1942
|
-
|
1943
|
-
RuntimeLibrary="1"
|
2251
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
2252
|
+
RuntimeLibrary="0"
|
1944
2253
|
UsePrecompiledHeader="0"
|
1945
2254
|
WarningLevel="3"
|
1946
2255
|
DebugInformationFormat="3"
|
@@ -1951,7 +2260,7 @@
|
|
1951
2260
|
/>
|
1952
2261
|
<Tool
|
1953
2262
|
Name="VCResourceCompilerTool"
|
1954
|
-
PreprocessorDefinitions="
|
2263
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
1955
2264
|
Culture="1033"
|
1956
2265
|
AdditionalIncludeDirectories="$(IntDir)"
|
1957
2266
|
/>
|
@@ -1960,7 +2269,7 @@
|
|
1960
2269
|
/>
|
1961
2270
|
<Tool
|
1962
2271
|
Name="VCLibrarianTool"
|
1963
|
-
AdditionalOptions=" /subsystem:windowsce,5.
|
2272
|
+
AdditionalOptions=" /subsystem:windowsce,5.02"
|
1964
2273
|
OutputFile="$(OutDir)/RhoLib.lib"
|
1965
2274
|
/>
|
1966
2275
|
<Tool
|
@@ -1972,6 +2281,9 @@
|
|
1972
2281
|
<Tool
|
1973
2282
|
Name="VCBscMakeTool"
|
1974
2283
|
/>
|
2284
|
+
<Tool
|
2285
|
+
Name="VCFxCopTool"
|
2286
|
+
/>
|
1975
2287
|
<Tool
|
1976
2288
|
Name="VCCodeSignTool"
|
1977
2289
|
/>
|
@@ -1988,7 +2300,7 @@
|
|
1988
2300
|
/>
|
1989
2301
|
</Configuration>
|
1990
2302
|
<Configuration
|
1991
|
-
Name="
|
2303
|
+
Name="SimulatorDebug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
|
1992
2304
|
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1993
2305
|
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
1994
2306
|
ConfigurationType="4"
|
@@ -2008,6 +2320,7 @@
|
|
2008
2320
|
/>
|
2009
2321
|
<Tool
|
2010
2322
|
Name="VCMIDLTool"
|
2323
|
+
TargetEnvironment="1"
|
2011
2324
|
/>
|
2012
2325
|
<Tool
|
2013
2326
|
Name="VCCLCompilerTool"
|
@@ -2048,6 +2361,9 @@
|
|
2048
2361
|
<Tool
|
2049
2362
|
Name="VCBscMakeTool"
|
2050
2363
|
/>
|
2364
|
+
<Tool
|
2365
|
+
Name="VCFxCopTool"
|
2366
|
+
/>
|
2051
2367
|
<Tool
|
2052
2368
|
Name="VCCodeSignTool"
|
2053
2369
|
/>
|
@@ -2064,7 +2380,7 @@
|
|
2064
2380
|
/>
|
2065
2381
|
</Configuration>
|
2066
2382
|
<Configuration
|
2067
|
-
Name="
|
2383
|
+
Name="SimulatorRelease|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
|
2068
2384
|
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
2069
2385
|
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
2070
2386
|
ConfigurationType="4"
|
@@ -2084,6 +2400,7 @@
|
|
2084
2400
|
/>
|
2085
2401
|
<Tool
|
2086
2402
|
Name="VCMIDLTool"
|
2403
|
+
TargetEnvironment="1"
|
2087
2404
|
/>
|
2088
2405
|
<Tool
|
2089
2406
|
Name="VCCLCompilerTool"
|
@@ -2111,7 +2428,7 @@
|
|
2111
2428
|
/>
|
2112
2429
|
<Tool
|
2113
2430
|
Name="VCLibrarianTool"
|
2114
|
-
AdditionalOptions=" /subsystem:windowsce,5.
|
2431
|
+
AdditionalOptions=" /subsystem:windowsce,5.02"
|
2115
2432
|
OutputFile="$(OutDir)/RhoLib.lib"
|
2116
2433
|
/>
|
2117
2434
|
<Tool
|
@@ -2123,6 +2440,9 @@
|
|
2123
2440
|
<Tool
|
2124
2441
|
Name="VCBscMakeTool"
|
2125
2442
|
/>
|
2443
|
+
<Tool
|
2444
|
+
Name="VCFxCopTool"
|
2445
|
+
/>
|
2126
2446
|
<Tool
|
2127
2447
|
Name="VCCodeSignTool"
|
2128
2448
|
/>
|
@@ -2139,7 +2459,7 @@
|
|
2139
2459
|
/>
|
2140
2460
|
</Configuration>
|
2141
2461
|
<Configuration
|
2142
|
-
Name="
|
2462
|
+
Name="Debug|Windows Mobile 6 Standard SDK (ARMV4I)"
|
2143
2463
|
OutputDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
2144
2464
|
IntermediateDirectory="..\bin\$(PlatformName)\$(ProjectName)\$(ConfigurationName)"
|
2145
2465
|
ConfigurationType="4"
|
@@ -2163,10 +2483,11 @@
|
|
2163
2483
|
<Tool
|
2164
2484
|
Name="VCCLCompilerTool"
|
2165
2485
|
ExecutionBucket="7"
|
2166
|
-
Optimization="
|
2486
|
+
Optimization="0"
|
2167
2487
|
AdditionalIncludeDirectories="../../shared/ruby;../../shared"
|
2168
|
-
PreprocessorDefinitions="
|
2169
|
-
|
2488
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
2489
|
+
MinimalRebuild="true"
|
2490
|
+
RuntimeLibrary="1"
|
2170
2491
|
UsePrecompiledHeader="0"
|
2171
2492
|
WarningLevel="3"
|
2172
2493
|
DebugInformationFormat="3"
|
@@ -2177,7 +2498,7 @@
|
|
2177
2498
|
/>
|
2178
2499
|
<Tool
|
2179
2500
|
Name="VCResourceCompilerTool"
|
2180
|
-
PreprocessorDefinitions="
|
2501
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
2181
2502
|
Culture="1033"
|
2182
2503
|
AdditionalIncludeDirectories="$(IntDir)"
|
2183
2504
|
/>
|
@@ -2186,7 +2507,7 @@
|
|
2186
2507
|
/>
|
2187
2508
|
<Tool
|
2188
2509
|
Name="VCLibrarianTool"
|
2189
|
-
AdditionalOptions=" /subsystem:windowsce,5.
|
2510
|
+
AdditionalOptions=" /subsystem:windowsce,5.02"
|
2190
2511
|
OutputFile="$(OutDir)/RhoLib.lib"
|
2191
2512
|
/>
|
2192
2513
|
<Tool
|
@@ -2295,6 +2616,10 @@
|
|
2295
2616
|
<Filter
|
2296
2617
|
Name="common"
|
2297
2618
|
>
|
2619
|
+
<File
|
2620
|
+
RelativePath="..\..\shared\common\app_build_capabilities.h"
|
2621
|
+
>
|
2622
|
+
</File>
|
2298
2623
|
<File
|
2299
2624
|
RelativePath="..\..\shared\common\app_build_configs.c"
|
2300
2625
|
>
|