├── .gitignore ├── AccessMarvelDeveloperAPI ├── ImgLoadThreadU.pas ├── MarvelAPI.dpr ├── MarvelAPI.dproj ├── MarvelAPI.res ├── MarvelAPIFMX.fmx ├── MarvelAPIFMX.pas └── README.md ├── AndroidKeyEvent ├── AndroidKeyEvent.dpr ├── AndroidKeyEvent.dproj ├── AndroidKeyEvent.res ├── FMX.TextListener.Android.pas ├── MainFMX.fmx └── MainFMX.pas ├── AutomateSaveState ├── README.md ├── SaveState.dpr ├── SaveState.dproj ├── SaveState.res ├── SaveStateFRM.fmx ├── SaveStateFRM.pas └── SaveStateHelper.pas ├── DemosPG.groupproj ├── InterstitialAdMoB ├── AndroidManifest.template.xml ├── InterstitialAdMob.dpr ├── InterstitialAdMob.dproj ├── MainFMX.fmx ├── MainFMX.pas └── README.md ├── LICENSE ├── LocationSensorPatch ├── LocationSensorPatch.groupproj ├── LocationSensorPatch.groupproj.local ├── README.md ├── android_service │ ├── LocationService.dpr │ ├── LocationService.dproj │ ├── LocationService.res │ ├── LocationServiceU.dfm │ └── LocationServiceU.pas └── multi_device_application │ ├── LocationSensorDemo.deployproj │ ├── LocationSensorDemo.dpr │ ├── LocationSensorDemo.dproj │ ├── LocationSensorDemo.res │ ├── MainU.fmx │ └── MainU.pas ├── README.md ├── RetryHelper ├── RetryHelperTests.dpr ├── RetryHelperTests.dproj ├── RetryHelperU.pas └── RetryerTestU.pas ├── TwoFingerPan ├── MainFMX.fmx ├── MainFMX.pas ├── README.md ├── TwoFingerPan.dpr └── TwoFingerPan.dproj └── WineCellarMVVM ├── MVVM.groupproj ├── wincellarclientMVVM ├── AndroidManifest.template.xml ├── Events │ └── EventsU.pas ├── MainFMX.fmx ├── MainFMX.pas ├── Models │ ├── Model.QRScan.pas │ ├── Model.REST.Cerimonie.pas │ ├── Models.Factory.pas │ ├── Models.Validators.pas │ └── RESTServicesU.pas ├── SupportCode │ └── JobQueue.pas ├── System.Constant.pas ├── ViewModels │ └── ViewModel.Main.pas ├── Views │ ├── MainFMX.fmx │ └── MainFMX.pas ├── WineCellarClientMVVM.dpr ├── WineCellarClientMVVM.dproj └── WineCellarClientMVVM.res └── winecellarserver ├── MainDataModuleUnit.dfm ├── MainDataModuleUnit.pas ├── MainWebModuleUnit.dfm ├── MainWebModuleUnit.pas ├── WINES.FDB ├── WineCellarAppControllerU.pas ├── WineCellarServer.dpr ├── WineCellarServer.dproj ├── WineCellarServer.res ├── WinesBO.pas └── www ├── css └── styles.css ├── index.html ├── js ├── jquery-1.7.1.min.js └── main.js └── pics ├── block_nine.jpg ├── bodega_lurton.jpg ├── bouscat.jpg ├── domaine_serene.jpg ├── ex_umbris.jpg ├── generic.jpg ├── lan_rioja.jpg ├── le_doyenne.jpg ├── lurton-pinot-gris.jpg ├── margerum.jpg ├── morizottes.jpg ├── rex_hill.jpg ├── saint_cosme.jpg └── viticcio.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/.gitignore -------------------------------------------------------------------------------- /AccessMarvelDeveloperAPI/ImgLoadThreadU.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/AccessMarvelDeveloperAPI/ImgLoadThreadU.pas -------------------------------------------------------------------------------- /AccessMarvelDeveloperAPI/MarvelAPI.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/AccessMarvelDeveloperAPI/MarvelAPI.dpr -------------------------------------------------------------------------------- /AccessMarvelDeveloperAPI/MarvelAPI.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/AccessMarvelDeveloperAPI/MarvelAPI.dproj -------------------------------------------------------------------------------- /AccessMarvelDeveloperAPI/MarvelAPI.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/AccessMarvelDeveloperAPI/MarvelAPI.res -------------------------------------------------------------------------------- /AccessMarvelDeveloperAPI/MarvelAPIFMX.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/AccessMarvelDeveloperAPI/MarvelAPIFMX.fmx -------------------------------------------------------------------------------- /AccessMarvelDeveloperAPI/MarvelAPIFMX.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/AccessMarvelDeveloperAPI/MarvelAPIFMX.pas -------------------------------------------------------------------------------- /AccessMarvelDeveloperAPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/AccessMarvelDeveloperAPI/README.md -------------------------------------------------------------------------------- /AndroidKeyEvent/AndroidKeyEvent.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/AndroidKeyEvent/AndroidKeyEvent.dpr -------------------------------------------------------------------------------- /AndroidKeyEvent/AndroidKeyEvent.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/AndroidKeyEvent/AndroidKeyEvent.dproj -------------------------------------------------------------------------------- /AndroidKeyEvent/AndroidKeyEvent.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/AndroidKeyEvent/AndroidKeyEvent.res -------------------------------------------------------------------------------- /AndroidKeyEvent/FMX.TextListener.Android.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/AndroidKeyEvent/FMX.TextListener.Android.pas -------------------------------------------------------------------------------- /AndroidKeyEvent/MainFMX.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/AndroidKeyEvent/MainFMX.fmx -------------------------------------------------------------------------------- /AndroidKeyEvent/MainFMX.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/AndroidKeyEvent/MainFMX.pas -------------------------------------------------------------------------------- /AutomateSaveState/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/AutomateSaveState/README.md -------------------------------------------------------------------------------- /AutomateSaveState/SaveState.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/AutomateSaveState/SaveState.dpr -------------------------------------------------------------------------------- /AutomateSaveState/SaveState.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/AutomateSaveState/SaveState.dproj -------------------------------------------------------------------------------- /AutomateSaveState/SaveState.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/AutomateSaveState/SaveState.res -------------------------------------------------------------------------------- /AutomateSaveState/SaveStateFRM.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/AutomateSaveState/SaveStateFRM.fmx -------------------------------------------------------------------------------- /AutomateSaveState/SaveStateFRM.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/AutomateSaveState/SaveStateFRM.pas -------------------------------------------------------------------------------- /AutomateSaveState/SaveStateHelper.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/AutomateSaveState/SaveStateHelper.pas -------------------------------------------------------------------------------- /DemosPG.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/DemosPG.groupproj -------------------------------------------------------------------------------- /InterstitialAdMoB/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/InterstitialAdMoB/AndroidManifest.template.xml -------------------------------------------------------------------------------- /InterstitialAdMoB/InterstitialAdMob.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/InterstitialAdMoB/InterstitialAdMob.dpr -------------------------------------------------------------------------------- /InterstitialAdMoB/InterstitialAdMob.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/InterstitialAdMoB/InterstitialAdMob.dproj -------------------------------------------------------------------------------- /InterstitialAdMoB/MainFMX.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/InterstitialAdMoB/MainFMX.fmx -------------------------------------------------------------------------------- /InterstitialAdMoB/MainFMX.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/InterstitialAdMoB/MainFMX.pas -------------------------------------------------------------------------------- /InterstitialAdMoB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/InterstitialAdMoB/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/LICENSE -------------------------------------------------------------------------------- /LocationSensorPatch/LocationSensorPatch.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/LocationSensorPatch/LocationSensorPatch.groupproj -------------------------------------------------------------------------------- /LocationSensorPatch/LocationSensorPatch.groupproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/LocationSensorPatch/LocationSensorPatch.groupproj.local -------------------------------------------------------------------------------- /LocationSensorPatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/LocationSensorPatch/README.md -------------------------------------------------------------------------------- /LocationSensorPatch/android_service/LocationService.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/LocationSensorPatch/android_service/LocationService.dpr -------------------------------------------------------------------------------- /LocationSensorPatch/android_service/LocationService.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/LocationSensorPatch/android_service/LocationService.dproj -------------------------------------------------------------------------------- /LocationSensorPatch/android_service/LocationService.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/LocationSensorPatch/android_service/LocationService.res -------------------------------------------------------------------------------- /LocationSensorPatch/android_service/LocationServiceU.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/LocationSensorPatch/android_service/LocationServiceU.dfm -------------------------------------------------------------------------------- /LocationSensorPatch/android_service/LocationServiceU.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/LocationSensorPatch/android_service/LocationServiceU.pas -------------------------------------------------------------------------------- /LocationSensorPatch/multi_device_application/LocationSensorDemo.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/LocationSensorPatch/multi_device_application/LocationSensorDemo.deployproj -------------------------------------------------------------------------------- /LocationSensorPatch/multi_device_application/LocationSensorDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/LocationSensorPatch/multi_device_application/LocationSensorDemo.dpr -------------------------------------------------------------------------------- /LocationSensorPatch/multi_device_application/LocationSensorDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/LocationSensorPatch/multi_device_application/LocationSensorDemo.dproj -------------------------------------------------------------------------------- /LocationSensorPatch/multi_device_application/LocationSensorDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/LocationSensorPatch/multi_device_application/LocationSensorDemo.res -------------------------------------------------------------------------------- /LocationSensorPatch/multi_device_application/MainU.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/LocationSensorPatch/multi_device_application/MainU.fmx -------------------------------------------------------------------------------- /LocationSensorPatch/multi_device_application/MainU.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/LocationSensorPatch/multi_device_application/MainU.pas -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/README.md -------------------------------------------------------------------------------- /RetryHelper/RetryHelperTests.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/RetryHelper/RetryHelperTests.dpr -------------------------------------------------------------------------------- /RetryHelper/RetryHelperTests.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/RetryHelper/RetryHelperTests.dproj -------------------------------------------------------------------------------- /RetryHelper/RetryHelperU.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/RetryHelper/RetryHelperU.pas -------------------------------------------------------------------------------- /RetryHelper/RetryerTestU.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/RetryHelper/RetryerTestU.pas -------------------------------------------------------------------------------- /TwoFingerPan/MainFMX.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/TwoFingerPan/MainFMX.fmx -------------------------------------------------------------------------------- /TwoFingerPan/MainFMX.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/TwoFingerPan/MainFMX.pas -------------------------------------------------------------------------------- /TwoFingerPan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/TwoFingerPan/README.md -------------------------------------------------------------------------------- /TwoFingerPan/TwoFingerPan.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/TwoFingerPan/TwoFingerPan.dpr -------------------------------------------------------------------------------- /TwoFingerPan/TwoFingerPan.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/TwoFingerPan/TwoFingerPan.dproj -------------------------------------------------------------------------------- /WineCellarMVVM/MVVM.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/MVVM.groupproj -------------------------------------------------------------------------------- /WineCellarMVVM/wincellarclientMVVM/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/wincellarclientMVVM/AndroidManifest.template.xml -------------------------------------------------------------------------------- /WineCellarMVVM/wincellarclientMVVM/Events/EventsU.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/wincellarclientMVVM/Events/EventsU.pas -------------------------------------------------------------------------------- /WineCellarMVVM/wincellarclientMVVM/MainFMX.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/wincellarclientMVVM/MainFMX.fmx -------------------------------------------------------------------------------- /WineCellarMVVM/wincellarclientMVVM/MainFMX.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/wincellarclientMVVM/MainFMX.pas -------------------------------------------------------------------------------- /WineCellarMVVM/wincellarclientMVVM/Models/Model.QRScan.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/wincellarclientMVVM/Models/Model.QRScan.pas -------------------------------------------------------------------------------- /WineCellarMVVM/wincellarclientMVVM/Models/Model.REST.Cerimonie.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/wincellarclientMVVM/Models/Model.REST.Cerimonie.pas -------------------------------------------------------------------------------- /WineCellarMVVM/wincellarclientMVVM/Models/Models.Factory.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/wincellarclientMVVM/Models/Models.Factory.pas -------------------------------------------------------------------------------- /WineCellarMVVM/wincellarclientMVVM/Models/Models.Validators.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/wincellarclientMVVM/Models/Models.Validators.pas -------------------------------------------------------------------------------- /WineCellarMVVM/wincellarclientMVVM/Models/RESTServicesU.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/wincellarclientMVVM/Models/RESTServicesU.pas -------------------------------------------------------------------------------- /WineCellarMVVM/wincellarclientMVVM/SupportCode/JobQueue.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/wincellarclientMVVM/SupportCode/JobQueue.pas -------------------------------------------------------------------------------- /WineCellarMVVM/wincellarclientMVVM/System.Constant.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/wincellarclientMVVM/System.Constant.pas -------------------------------------------------------------------------------- /WineCellarMVVM/wincellarclientMVVM/ViewModels/ViewModel.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/wincellarclientMVVM/ViewModels/ViewModel.Main.pas -------------------------------------------------------------------------------- /WineCellarMVVM/wincellarclientMVVM/Views/MainFMX.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/wincellarclientMVVM/Views/MainFMX.fmx -------------------------------------------------------------------------------- /WineCellarMVVM/wincellarclientMVVM/Views/MainFMX.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/wincellarclientMVVM/Views/MainFMX.pas -------------------------------------------------------------------------------- /WineCellarMVVM/wincellarclientMVVM/WineCellarClientMVVM.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/wincellarclientMVVM/WineCellarClientMVVM.dpr -------------------------------------------------------------------------------- /WineCellarMVVM/wincellarclientMVVM/WineCellarClientMVVM.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/wincellarclientMVVM/WineCellarClientMVVM.dproj -------------------------------------------------------------------------------- /WineCellarMVVM/wincellarclientMVVM/WineCellarClientMVVM.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/wincellarclientMVVM/WineCellarClientMVVM.res -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/MainDataModuleUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/MainDataModuleUnit.dfm -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/MainDataModuleUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/MainDataModuleUnit.pas -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/MainWebModuleUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/MainWebModuleUnit.dfm -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/MainWebModuleUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/MainWebModuleUnit.pas -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/WINES.FDB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/WINES.FDB -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/WineCellarAppControllerU.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/WineCellarAppControllerU.pas -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/WineCellarServer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/WineCellarServer.dpr -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/WineCellarServer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/WineCellarServer.dproj -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/WineCellarServer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/WineCellarServer.res -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/WinesBO.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/WinesBO.pas -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/www/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/www/css/styles.css -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/www/index.html -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/www/js/jquery-1.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/www/js/jquery-1.7.1.min.js -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/www/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/www/js/main.js -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/www/pics/block_nine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/www/pics/block_nine.jpg -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/www/pics/bodega_lurton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/www/pics/bodega_lurton.jpg -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/www/pics/bouscat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/www/pics/bouscat.jpg -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/www/pics/domaine_serene.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/www/pics/domaine_serene.jpg -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/www/pics/ex_umbris.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/www/pics/ex_umbris.jpg -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/www/pics/generic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/www/pics/generic.jpg -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/www/pics/lan_rioja.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/www/pics/lan_rioja.jpg -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/www/pics/le_doyenne.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/www/pics/le_doyenne.jpg -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/www/pics/lurton-pinot-gris.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/www/pics/lurton-pinot-gris.jpg -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/www/pics/margerum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/www/pics/margerum.jpg -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/www/pics/morizottes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/www/pics/morizottes.jpg -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/www/pics/rex_hill.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/www/pics/rex_hill.jpg -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/www/pics/saint_cosme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/www/pics/saint_cosme.jpg -------------------------------------------------------------------------------- /WineCellarMVVM/winecellarserver/www/pics/viticcio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinettaro/DelphiDemos/HEAD/WineCellarMVVM/winecellarserver/www/pics/viticcio.jpg --------------------------------------------------------------------------------