├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── CrossPlatform ├── CopySynCrossPlatformUnits.bat ├── SynCrossPlatform.inc ├── SynCrossPlatformCrypto.pas ├── SynCrossPlatformJSON.pas ├── SynCrossPlatformREST.pas ├── SynCrossPlatformSpecific.pas ├── SynCrossPlatformSynLZ.pas ├── SynCrossPlatformTests.pas └── templates │ ├── API.adoc.mustache │ ├── CrossPlatform.pas.mustache │ ├── Delphi.pas.mustache │ ├── FPC-mORMotInterfaces.pas.mustache │ ├── FPCServer-mORMotServer.pas.mustache │ ├── SmartMobileStudio.pas.mustache │ └── Swagger.json.mustache ├── Delphinus.Info.json ├── Delphinus.Install.json ├── Packages ├── .gitignore ├── README.md ├── mormot_base.lpk └── mormot_cross.lpk ├── PasZip.pas ├── RTL7 ├── FastMM4.pas ├── FastMM4Messages.pas ├── FastMM4Options.inc └── FastMM4_AVX512.obj ├── ReadMe.txt ├── SQLite3 ├── DDD │ ├── dom │ │ ├── asynch.pas.mustache │ │ ├── dddDomAuthInterfaces.pas │ │ ├── dddDomCountry.pas │ │ ├── dddDomEmailInterfaces.pas │ │ ├── dddDomUserCQRS.pas │ │ ├── dddDomUserInterfaces.pas │ │ └── dddDomUserTypes.pas │ ├── infra │ │ ├── dddInfraApps.pas │ │ ├── dddInfraAuthRest.pas │ │ ├── dddInfraEmail.pas │ │ ├── dddInfraEmailer.pas │ │ ├── dddInfraRepoUser.pas │ │ └── dddInfraSettings.pas │ └── tools │ │ ├── dddToolsAdminDB.dfm │ │ ├── dddToolsAdminDB.pas │ │ ├── dddToolsAdminLog.dfm │ │ ├── dddToolsAdminLog.pas │ │ ├── dddToolsAdminMain.dfm │ │ └── dddToolsAdminMain.pas ├── Documentation │ ├── IamLost.png │ ├── Release │ │ ├── Release.dpr │ │ ├── ReleaseForm.dfm │ │ └── ReleaseForm.pas │ ├── SmartCalculator.png │ ├── SourceCodeRep │ │ ├── FossilCommit.bat │ │ ├── FossilCommit.sh │ │ ├── FossilStatus.bat │ │ ├── FossilStatus.sh │ │ ├── FossilUpdate.bat │ │ ├── FossilUpdate.sh │ │ ├── GitCommit.bat │ │ ├── GitCommit.sh │ │ ├── GitCommitAll.bat │ │ ├── GitCommitAll.sh │ │ ├── GitCommitDMustache.bat │ │ ├── GitCommitDMustache.sh │ │ ├── GitCommitLVCL.bat │ │ ├── GitCommitLVCL.sh │ │ ├── GitCommitSynPdf.bat │ │ ├── GitCommitSynPdf.sh │ │ ├── GitCommitSynProject.bat │ │ ├── GitCommitSynProject.sh │ │ ├── GitShell.bat │ │ ├── SourceCodeRep.dpr │ │ ├── SourceCodeRep.ico │ │ ├── SourceCodeRep.lpi │ │ ├── SourceCodeRep.res │ │ ├── SourceCodeRepMain.dfm │ │ ├── SourceCodeRepMain.lfm │ │ └── SourceCodeRepMain.pas │ ├── Synopse SQLite3 Framework.pro │ ├── cartoon01.png │ ├── cartoon02.png │ ├── cartoon03.png │ ├── cartoon04.png │ ├── cartoon05.png │ ├── cartoon06.png │ ├── cartoon07.png │ ├── cartoon08.png │ ├── gpl-3.0.txt │ ├── logo.png │ ├── mORMot128.png │ ├── synfiletms.png │ └── synfilevcl.png ├── SQLite3BtnArrow.bmp ├── SQLite3BtnClose.bmp ├── SQLite3BtnMax.bmp ├── SQLite3BtnMin.bmp ├── SQLite3BtnOk.bmp ├── SQLite3UI.RES ├── SQLite3UI.rc ├── SQLite3UILogin.RES ├── SQLite3UILogin.png ├── SQLite3UILogin.rc ├── Samples │ ├── 01 - In Memory ORM │ │ ├── Project01.dpr │ │ ├── Project01.lpi │ │ ├── Project01.lpr │ │ ├── Project01.res │ │ ├── Project01.txt │ │ ├── SampleData.pas │ │ ├── Unit1.dfm │ │ ├── Unit1.lfm │ │ └── Unit1.pas │ ├── 02 - Embedded SQLite3 ORM │ │ ├── Project02.dpr │ │ ├── Project02.lpi │ │ ├── Project02.lpr │ │ └── Project02.txt │ ├── 03 - NamedPipe Client-Server │ │ ├── Project03.txt │ │ ├── Project03Client.dpr │ │ ├── Project03Client.res │ │ ├── Project03Server.dpr │ │ ├── Project03Server.res │ │ ├── Unit2.dfm │ │ └── Unit2.pas │ ├── 04 - HTTP Client-Server │ │ ├── Project04Client.dpr │ │ ├── Project04Client.lpi │ │ ├── Project04Client.lpr │ │ ├── Project04Client.res │ │ ├── Project04Server.dpr │ │ ├── Project04Server.lpi │ │ ├── Project04Server.lpr │ │ ├── Project04Server.res │ │ ├── Project04ServerRegister.dpr │ │ ├── Project04ServerStatic.dpr │ │ ├── Project04ServerStatic.res │ │ ├── Unit2.dfm │ │ ├── Unit2.lfm │ │ ├── Unit2.pas │ │ ├── Unit2Static.dfm │ │ └── Unit2Static.pas │ ├── 05 - Report created from code │ │ ├── SynPdfFormCanvas.dpr │ │ ├── SynPdfLayers.dpr │ │ ├── TestSQLite3Pages.dpr │ │ ├── TestSQLite3Pages.res │ │ ├── Unit1.dfm │ │ └── Unit1.pas │ ├── 06 - Remote JSON REST Service │ │ ├── Project06Client.dpr │ │ ├── Project06Client.res │ │ ├── Project06ClientMain.dfm │ │ ├── Project06ClientMain.pas │ │ └── Project06Server.dpr │ ├── 07 - SynTest │ │ ├── SynTest.dpr │ │ └── SynTestTest.pas │ ├── 08 - TaskDialog │ │ ├── TaskDialogTest.dpr │ │ └── TaskDialogTest.res │ ├── 09 - HttpApi web server │ │ ├── HttpApiServer.dpr │ │ └── HttpApiServer.lpi │ ├── 10 - Background Http service │ │ ├── httpservice.dpr │ │ ├── httpservice.lpi │ │ ├── httpserviceSetup.dpr │ │ └── httpserviceSetup.lpi │ ├── 11 - Exception logging │ │ ├── LibraryTest.dpr │ │ ├── LogView.dpr │ │ ├── LogView.ico │ │ ├── LogView.lpi │ │ ├── LogView.lpr │ │ ├── LogView.lps │ │ ├── LogView.res │ │ ├── LogViewMain.dfm │ │ ├── LogViewMain.lfm │ │ ├── LogViewMain.pas │ │ ├── LoggingTest.dpr │ │ ├── Map2Mab.dpr │ │ ├── MyLibrary.dpr │ │ ├── MyLibrary.res │ │ ├── RemoteLogMain.dfm │ │ ├── RemoteLogMain.pas │ │ ├── RemoteLoggingTest.dpr │ │ ├── RemoteLoggingTest.res │ │ ├── UnSynLz.dpr │ │ └── thread512.dpr │ ├── 12 - SynDB Explorer │ │ ├── DBSynLZ.dpr │ │ ├── SynDB.ico │ │ ├── SynDBExplorer.dpr │ │ ├── SynDBExplorer.dproj │ │ ├── SynDBExplorer.res │ │ ├── SynDBExplorerClasses.pas │ │ ├── SynDBExplorerExportTables.dfm │ │ ├── SynDBExplorerExportTables.pas │ │ ├── SynDBExplorerFrame.dfm │ │ ├── SynDBExplorerFrame.pas │ │ ├── SynDBExplorerMain.dfm │ │ ├── SynDBExplorerMain.pas │ │ ├── SynDBExplorerQueryBuilder.dfm │ │ ├── SynDBExplorerQueryBuilder.pas │ │ ├── SynDBExplorerServer.dfm │ │ └── SynDBExplorerServer.pas │ ├── 13 - StandAlone JSON SQL server │ │ ├── JSONSQLClient.dpr │ │ └── JSONSQLServer.dpr │ ├── 14 - Interface based services │ │ ├── Project14Client.dpr │ │ ├── Project14Client.lpi │ │ ├── Project14Client.res │ │ ├── Project14ClientMain.dfm │ │ ├── Project14ClientMain.pas │ │ ├── Project14Interface.pas │ │ ├── Project14Server.dpr │ │ ├── Project14ServerExternal.dpr │ │ ├── Project14ServerHttp.dpr │ │ ├── Project14ServerHttp.lpi │ │ ├── Project14ServerHttpWeak.dpr │ │ └── Project14ServerInMemory.dpr │ ├── 15 - External DB performance │ │ ├── PerfMain.dfm │ │ ├── PerfMain.pas │ │ ├── PerfTest.dpr │ │ ├── PerfTest.res │ │ ├── PerfTestCases.pas │ │ ├── PerfTestConsole.dpr │ │ └── mORMotBatchInsert.dpr │ ├── 16 - Execute SQL via services │ │ ├── Project16Client.dpr │ │ ├── Project16Client.res │ │ ├── Project16ClientMain.dfm │ │ ├── Project16ClientMain.pas │ │ ├── Project16Interface.pas │ │ └── Project16ServerHttp.dpr │ ├── 17 - TClientDataset use │ │ ├── mORMotVCLTest.dpr │ │ ├── mORMotVCLUnit.dfm │ │ └── mORMotVCLUnit.pas │ ├── 18 - AJAX ExtJS Grid │ │ ├── Project18Server.dpr │ │ ├── Project18Server.res │ │ ├── SampleRecordInit.json │ │ ├── Unit2.dfm │ │ ├── Unit2.pas │ │ └── html5 │ │ │ ├── MyApp.html │ │ │ ├── app.js │ │ │ ├── app │ │ │ ├── controller │ │ │ │ └── Contacts.js │ │ │ ├── model │ │ │ │ └── Contact.js │ │ │ ├── store │ │ │ │ └── Contacts.js │ │ │ └── view │ │ │ │ ├── Viewport.js │ │ │ │ └── contact │ │ │ │ ├── Edit.js │ │ │ │ ├── Filtro.js │ │ │ │ ├── Filtrod.js │ │ │ │ └── Grid.js │ │ │ └── resources │ │ │ ├── css │ │ │ └── app.css │ │ │ └── images │ │ │ ├── add.png │ │ │ ├── default.gif │ │ │ ├── delete.png │ │ │ ├── error.gif │ │ │ ├── error.png │ │ │ ├── filter.gif │ │ │ ├── grid.png │ │ │ ├── save.gif │ │ │ ├── search.gif │ │ │ ├── stop.png │ │ │ ├── user.png │ │ │ └── user_add.gif │ ├── 19 - AJAX ExtJS FishFacts │ │ ├── Project19Server.dpr │ │ ├── Project19Server.res │ │ ├── Unit2.dfm │ │ ├── Unit2.pas │ │ └── html5 │ │ │ ├── css │ │ │ └── main.css │ │ │ ├── images │ │ │ ├── down.png │ │ │ ├── fishfacts.JPG │ │ │ └── up.png │ │ │ ├── index.html │ │ │ └── jquery.min.js │ ├── 20 - DTO interface based service │ │ ├── Project20Client.dpr │ │ ├── Project20Client.res │ │ ├── Project20ClientMain.dfm │ │ ├── Project20ClientMain.pas │ │ ├── Project20Interface.pas │ │ └── Project20ServerInMemory.dpr │ ├── 21 - HTTP Client-Server performance │ │ ├── Project21HttpClient.dpr │ │ ├── Project21HttpClient.res │ │ ├── Project21HttpClientMain.dfm │ │ ├── Project21HttpClientMain.pas │ │ └── Project21HttpServer.dpr │ ├── 22 - JavaScript HTTPApi web server │ │ ├── JSHttpApiServer.dpr │ │ ├── mustache.md │ │ ├── readme.md │ │ ├── showDownRunner.js │ │ └── showdown.js │ ├── 23 - JavaScript Tests │ │ ├── SynSMSelfTest.pas │ │ ├── TestMustache.dpr │ │ ├── TestMustache.res │ │ ├── TestMustacheUnit.dfm │ │ ├── TestMustacheUnit.pas │ │ ├── TestSynSM.dpr │ │ └── js │ │ │ ├── testCompileUTF8.js │ │ │ └── testCompileUnicode.js │ ├── 24 - MongoDB │ │ ├── MongoDBTestCases.pas │ │ └── MongoDBTests.dpr │ ├── 25 - JSON performance │ │ ├── JSONPerfTestCases.pas │ │ └── JSONPerfTests.dpr │ ├── 26 - RESTful ORM │ │ ├── RESTClient.dpr │ │ ├── RESTClient.res │ │ ├── RESTData.pas │ │ ├── RESTServerClass.pas │ │ ├── RESTserver.dpr │ │ ├── RestClientMain.dfm │ │ └── RestClientMain.pas │ ├── 27 - CrossPlatform Clients │ │ ├── FMClient.dpr │ │ ├── FMMain.fmx │ │ ├── FMMain.pas │ │ ├── FPC │ │ │ ├── JSONconsole.lpi │ │ │ ├── JSONconsole.lpr │ │ │ ├── LCLClient.lpi │ │ │ ├── LCLClient.lpr │ │ │ ├── LCLMain.lfm │ │ │ └── LCLMain.pas │ │ ├── MobileClient.dpr │ │ ├── MobileMain.fmx │ │ ├── MobileMain.pas │ │ ├── People.json │ │ ├── PeopleServer.pas │ │ ├── Project14ServerHttpWrapper.dpr │ │ ├── RegressionTests.dpr │ │ ├── RegressionTestsServer.dpr │ │ ├── SmartMobileStudio │ │ │ ├── Form1.pas │ │ │ ├── Form1.sfm │ │ │ ├── Project14Client.spr │ │ │ ├── Project14Client.sproj │ │ │ ├── Unit1.pas │ │ │ ├── mORMotClient.pas │ │ │ └── www │ │ │ │ ├── app.manifest │ │ │ │ ├── index.html │ │ │ │ └── timestamp.txt │ │ ├── VCLClient.dpr │ │ ├── VCLMain.dfm │ │ ├── VCLMain.pas │ │ └── mORMotClient.pas │ ├── 28 - Simple RESTful ORM Server │ │ ├── RESTModel.pas │ │ ├── RESTclient.dpr │ │ ├── RESTserver.dpr │ │ └── RESTserver_wrappers.dpr │ ├── 29 - SmartMobileStudio Client │ │ ├── CopySynCrossPlatformUnits.bat │ │ ├── CopySynCrossPlatformUnitsBACK.bat │ │ ├── LoginForm.pas │ │ ├── LoginForm.sfm │ │ ├── MainUnit.pas │ │ ├── ReadMe.md │ │ ├── SmartTests.pas │ │ ├── WebForm.sproj │ │ ├── WebFormApplication.spr │ │ └── mORMotClient.pas │ ├── 30 - MVC Server │ │ ├── MVCModel.pas │ │ ├── MVCServer.dpr │ │ ├── MVCServerFirebird.dpr │ │ ├── MVCServerMongoDB.dpr │ │ ├── MVCServerPostgreSQL.dpr │ │ ├── MVCViewModel.pas │ │ └── Views │ │ │ ├── .static │ │ │ ├── blog.css │ │ │ └── blog.ico │ │ │ ├── ArticleEdit.html │ │ │ ├── ArticleView.html │ │ │ ├── AuthorView.html │ │ │ ├── Default.html │ │ │ ├── Error.html │ │ │ ├── articlerow.partial │ │ │ ├── footer.partial │ │ │ ├── header.partial │ │ │ └── masthead.partial │ ├── 31 - WebSockets │ │ ├── Project31ChatCallbackInterface.pas │ │ ├── Project31ChatClient.dpr │ │ ├── Project31ChatServer.dpr │ │ ├── Project31LongWorkCallbackInterface.pas │ │ ├── Project31LongWorkClient.dpr │ │ ├── Project31LongWorkServer.dpr │ │ ├── Project31SimpleEchoServer.dpr │ │ ├── Project31SimpleEchoServer.html │ │ ├── Project31WinHTTPEchoServer.dpr │ │ └── Project31WinHTTPEchoServer.lpi │ ├── 33 - ECC │ │ ├── ECC.dpr │ │ ├── ECC.ico │ │ ├── ECC.lpi │ │ ├── ECC.res │ │ └── ECCProcess.pas │ ├── 34 - Socket Polling │ │ └── Project34RTSPproxy.dpr │ ├── 35 - Practical DDD │ │ ├── 01 │ │ │ ├── ReadMe.md │ │ │ ├── dom │ │ │ │ ├── DomConferenceDepend.pas │ │ │ │ ├── DomConferenceInterfaces.pas │ │ │ │ ├── DomConferenceServices.pas │ │ │ │ ├── DomConferenceTest.pas │ │ │ │ └── DomConferenceTypes.pas │ │ │ ├── infra │ │ │ │ └── InfraConferenceRepository.pas │ │ │ ├── serv │ │ │ │ ├── ServBook.dpr │ │ │ │ ├── ServBookMain.pas │ │ │ │ └── ServBookTest.pas │ │ │ └── test │ │ │ │ ├── TestAll.dpr │ │ │ │ └── TestAllMain.pas │ │ ├── 02 │ │ │ ├── ReadMe.md │ │ │ ├── dom │ │ │ │ ├── DomConferenceDepend.pas │ │ │ │ ├── DomConferenceInterfaces.pas │ │ │ │ ├── DomConferenceServices.pas │ │ │ │ ├── DomConferenceTest.pas │ │ │ │ └── DomConferenceTypes.pas │ │ │ ├── infra │ │ │ │ └── InfraConferenceRepository.pas │ │ │ ├── serv │ │ │ │ ├── ServBook.dpr │ │ │ │ ├── ServBookMain.pas │ │ │ │ └── ServBookTest.pas │ │ │ └── test │ │ │ │ ├── TestAll.dpr │ │ │ │ └── TestAllMain.pas │ │ ├── 03 │ │ │ ├── ReadMe.md │ │ │ ├── dom │ │ │ │ ├── DomConferenceDepend.pas │ │ │ │ ├── DomConferenceInterfaces.pas │ │ │ │ ├── DomConferenceServices.pas │ │ │ │ ├── DomConferenceTest.pas │ │ │ │ └── DomConferenceTypes.pas │ │ │ ├── infra │ │ │ │ └── InfraConferenceRepository.pas │ │ │ ├── serv │ │ │ │ ├── ServBook.dpr │ │ │ │ ├── ServBookMain.pas │ │ │ │ └── ServBookTest.pas │ │ │ └── test │ │ │ │ ├── TestAll.dpr │ │ │ │ └── TestAllMain.pas │ │ ├── 04 │ │ │ ├── ReadMe.md │ │ │ ├── dom │ │ │ │ ├── DomConferenceDepend.pas │ │ │ │ ├── DomConferenceInterfaces.pas │ │ │ │ ├── DomConferenceServices.pas │ │ │ │ ├── DomConferenceTest.pas │ │ │ │ └── DomConferenceTypes.pas │ │ │ ├── infra │ │ │ │ └── InfraConferenceRepository.pas │ │ │ ├── serv │ │ │ │ ├── ServBook.dpr │ │ │ │ ├── ServBookMain.pas │ │ │ │ └── ServBookTest.pas │ │ │ └── test │ │ │ │ ├── TestAll.dpr │ │ │ │ └── TestAllMain.pas │ │ ├── 05 │ │ │ ├── ReadMe.md │ │ │ ├── dom │ │ │ │ ├── DomConferenceDepend.pas │ │ │ │ ├── DomConferenceInterfaces.pas │ │ │ │ ├── DomConferenceServices.pas │ │ │ │ ├── DomConferenceTest.pas │ │ │ │ └── DomConferenceTypes.pas │ │ │ ├── infra │ │ │ │ └── InfraConferenceRepository.pas │ │ │ ├── serv │ │ │ │ ├── ServBook.dpr │ │ │ │ ├── ServBook.dproj │ │ │ │ ├── ServBookMain.pas │ │ │ │ └── ServBookTest.pas │ │ │ └── test │ │ │ │ ├── TestAll.dpr │ │ │ │ ├── TestAll.dproj │ │ │ │ └── TestAllMain.pas │ │ └── ReadMe.md │ ├── 36 - Simple REST Benchmark │ │ ├── README.md │ │ ├── RESTBenchmark.dpr │ │ ├── RESTBenchmark.lpi │ │ ├── RESTModel.pas │ │ ├── installSystemSocket.sh │ │ ├── mormot-rest-nginx.conf │ │ ├── rest_benchmark.service │ │ └── rest_benchmark.socket │ ├── 37 - FishShop Service │ │ ├── FishShopDaemon.dpr │ │ ├── FishShopDaemon.lpi │ │ ├── ServFishShopMain.pas │ │ ├── ServFishShopTests.pas │ │ ├── ServFishShopTypes.pas │ │ ├── TestFishShop.dpr │ │ └── TestFishShop.lpi │ ├── MainDemo │ │ ├── BannerData.png │ │ ├── BannerSafe.png │ │ ├── FileClient.pas │ │ ├── FileEdit.dfm │ │ ├── FileEdit.pas │ │ ├── FileMain.dfm │ │ ├── FileMain.pas │ │ ├── FileMain.rc │ │ ├── FileMain.zip │ │ ├── FileMainRes.bat │ │ ├── FileServer.pas │ │ ├── FileTables.pas │ │ ├── SynFile.dpr │ │ └── SynFile.res │ └── ThirdPartyDemos │ │ ├── Alfred │ │ └── mORMot4Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── ReadMe.md │ │ │ ├── ant.properties │ │ │ ├── assets │ │ │ ├── Synopse.png │ │ │ ├── mormot.jpg │ │ │ └── mormotbw.jpg │ │ │ ├── bin │ │ │ └── --hereWillBeTheAppBuilt-- │ │ │ ├── build.bat │ │ │ ├── build.xml │ │ │ ├── build_release.bat │ │ │ ├── gen │ │ │ ├── R.java.d │ │ │ └── com │ │ │ │ └── kredix │ │ │ │ ├── BuildConfig.java │ │ │ │ └── R.java │ │ │ ├── install.bat │ │ │ ├── jni │ │ │ ├── And_Controls │ │ │ │ ├── And_Controls.pas │ │ │ │ ├── And_Controls_Types.pas │ │ │ │ ├── And_Jni.pas │ │ │ │ ├── And_Jni_Bridge.pas │ │ │ │ └── Deprecated │ │ │ │ │ ├── And_lib_Image.pas │ │ │ │ │ └── And_lib_Unzip.pas │ │ │ ├── Form_Splash.pas │ │ │ ├── Form_main.pas │ │ │ ├── SampleData.pas │ │ │ ├── mORMotOnAndroid.compiled │ │ │ ├── mORMotOnAndroid.lpi │ │ │ ├── mORMotOnAndroid.lps │ │ │ ├── mORMotOnAndroid.pas │ │ │ ├── mORMotOnAndroid.res │ │ │ ├── main.compiled │ │ │ ├── main.pas │ │ │ └── main.res │ │ │ ├── libs │ │ │ └── armeabi-v7a │ │ │ │ └── --hereWillBeTheLibBuilt-- │ │ │ ├── mORMot │ │ │ └── --putmORMotSourceHere-- │ │ │ ├── my-release-key.keystore │ │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ ├── Thumbs.db │ │ │ │ └── icon.png │ │ │ ├── drawable-ldpi │ │ │ │ ├── Thumbs.db │ │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── Thumbs.db │ │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ ├── Thumbs.db │ │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── icon.png │ │ │ └── values │ │ │ │ └── strings.xml │ │ │ ├── src │ │ │ ├── App.java │ │ │ └── Controls.java │ │ │ └── uninstall.bat │ │ ├── AntonE │ │ ├── CSV2ORM │ │ │ ├── CSV2ORM.dpr │ │ │ ├── Device.csv │ │ │ ├── MAinFormU.dfm │ │ │ ├── MAinFormU.pas │ │ │ ├── ReadMe.md │ │ │ └── Templates.cds │ │ └── ORMCDS │ │ │ ├── DataModU.dfm │ │ │ ├── MAinFormU.dfm │ │ │ ├── MAinFormU.pas │ │ │ ├── ORMCDS.pas │ │ │ ├── ORMCDS_Test.dpr │ │ │ ├── ReadMe.md │ │ │ ├── SampleForm1U.dfm │ │ │ ├── SampleForm1U.pas │ │ │ ├── SampleForm2U.dfm │ │ │ └── SampleForm2U.pas │ │ ├── Chaa │ │ ├── ReadMe.md │ │ └── WindowsAuth.dpr │ │ ├── ChinaPeng │ │ ├── ReadMe.md │ │ └── clientcode.java │ │ ├── DigDiver │ │ └── AngularJS │ │ │ ├── ReadMe.md │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── app.js │ │ │ ├── controllers.js │ │ │ ├── controllers │ │ │ │ ├── contacts.js │ │ │ │ ├── drafts.js │ │ │ │ ├── editor.js │ │ │ │ ├── emails.js │ │ │ │ └── templates.js │ │ │ ├── custom_config.js │ │ │ ├── em-utils.js │ │ │ └── syn-auth.js │ │ │ └── partials │ │ │ ├── console.html │ │ │ ├── contacts-blank.html │ │ │ ├── contacts-sidebar.html │ │ │ ├── contacts.html │ │ │ ├── content-sidebar.html │ │ │ ├── drafts.html │ │ │ ├── editor-draft.html │ │ │ ├── editor-template.html │ │ │ ├── editor.html │ │ │ ├── email-item-details.html │ │ │ ├── gt-dropdown.html │ │ │ ├── gt-select.html │ │ │ ├── login.html │ │ │ ├── modal-upload-attachment.html │ │ │ ├── multiselect.tmpl.html │ │ │ ├── outbox.html │ │ │ ├── sidebar-main-layuot.html │ │ │ ├── templates.html │ │ │ ├── topbar │ │ │ ├── console.html │ │ │ ├── contacts.html │ │ │ ├── editor.html │ │ │ ├── search.html │ │ │ └── sending-search.html │ │ │ ├── workplaces.html │ │ │ └── wp-base.html │ │ ├── EMartin │ │ ├── SynJSONTreeview │ │ │ ├── ReadMe.md │ │ │ ├── Sample.json │ │ │ ├── SynJSONTVEditor.dof │ │ │ ├── SynJSONTVEditor.dpr │ │ │ ├── SynJSONTVEditor.res │ │ │ ├── SynJSONTreeView.pas │ │ │ ├── SynJSONTreeView.res │ │ │ ├── fLevel.dfm │ │ │ ├── fLevel.pas │ │ │ ├── fMain.dfm │ │ │ └── fMain.pas │ │ └── TSynRestDataset │ │ │ ├── Demo.bpg │ │ │ ├── FishFactSyn │ │ │ ├── Ffactwin.dfm │ │ │ ├── Ffactwin.pas │ │ │ └── FishFactSyn.dpr │ │ │ ├── ReadMe.md │ │ │ ├── SampleData.pas │ │ │ ├── Server.dpr │ │ │ ├── SynRestMidasVCL.pas │ │ │ ├── SynRestVCL.pas │ │ │ ├── fMain.dfm │ │ │ └── fMain.pas │ │ ├── George │ │ └── REST-tester │ │ │ ├── JMeterTestPlan_NoAuthentication.jmx │ │ │ ├── README.md │ │ │ ├── RestClientFormUnit.dfm │ │ │ ├── RestClientFormUnit.lfm │ │ │ ├── RestClientFormUnit.pas │ │ │ ├── RestClientUnit.pas │ │ │ ├── RestMethodsInterfaceUnit.pas │ │ │ ├── RestServerFormUnit.dfm │ │ │ ├── RestServerFormUnit.lfm │ │ │ ├── RestServerFormUnit.lrs │ │ │ ├── RestServerFormUnit.pas │ │ │ ├── RestServerMethodsUnit.pas │ │ │ ├── RestServerUnit.pas │ │ │ ├── generics-collections │ │ │ └── src │ │ │ │ ├── generics.collections.pas │ │ │ │ ├── generics.defaults.pas │ │ │ │ ├── generics.hashes.pas │ │ │ │ ├── generics.helpers.pas │ │ │ │ ├── generics.memoryexpanders.pas │ │ │ │ ├── generics.strings.pas │ │ │ │ ├── generics.strings.rsj │ │ │ │ └── inc │ │ │ │ ├── generics.dictionaries.inc │ │ │ │ └── generics.dictionariesh.inc │ │ │ ├── mORMotRESTFPCInterfaces.pas │ │ │ ├── mORMotRESTcl.dpr │ │ │ ├── mORMotRESTcl.lpi │ │ │ ├── mORMotRESTsrv.dpr │ │ │ ├── mORMotRESTsrv.lpi │ │ │ └── screenshot.png │ │ ├── KroKodil │ │ ├── README.md │ │ ├── moRMOt.iml │ │ ├── pom.xml │ │ ├── server.png │ │ └── src │ │ │ ├── delphi │ │ │ ├── CalcInterface.pas │ │ │ ├── Client.dpr │ │ │ ├── Client.res │ │ │ ├── ClientForm.dfm │ │ │ ├── ClientForm.pas │ │ │ ├── FileCollect.pas │ │ │ ├── REST.bdsgroup │ │ │ ├── REST.bpg │ │ │ ├── SampleData.pas │ │ │ ├── Server.dpr │ │ │ ├── Server.res │ │ │ ├── ServerForm.dfm │ │ │ ├── ServerForm.pas │ │ │ ├── bin │ │ │ │ ├── SHA Client.lnk │ │ │ │ ├── SHA Server.lnk │ │ │ │ ├── SSL Client.lnk │ │ │ │ ├── SSL Server.lnk │ │ │ │ ├── server.db3 │ │ │ │ └── users.json │ │ │ └── ssl │ │ │ │ ├── SignRoot.pvk │ │ │ │ ├── signroot.cer │ │ │ │ └── ssl.bat │ │ │ └── main │ │ │ └── java │ │ │ ├── CRC32.java │ │ │ ├── RESTClient.java │ │ │ ├── SynClient.java │ │ │ └── SynTest.java │ │ ├── Migajek │ │ ├── synopse-sqlite-demo │ │ │ ├── Project1.dpr │ │ │ ├── Project1.res │ │ │ ├── ReadMe.md │ │ │ ├── Unit1.dfm │ │ │ ├── Unit1.pas │ │ │ ├── uCustomer.pas │ │ │ ├── uLoginForm.dfm │ │ │ ├── uLoginForm.pas │ │ │ └── uQueryHistory.pas │ │ └── synopse-sqlite-generator │ │ │ ├── Project2.dpr │ │ │ ├── Project2.res │ │ │ ├── ReadMe.md │ │ │ ├── RegExpr.pas │ │ │ ├── Unit1.dfm │ │ │ └── Unit1.pas │ │ ├── Ondrej │ │ └── SynTaskDialog4Lazarus │ │ │ ├── FMXUtil.inc.pas │ │ │ ├── ReadMe.md │ │ │ ├── SynTaskDialog.RES │ │ │ ├── SynTaskDialog.pas │ │ │ ├── res │ │ │ ├── blank.png.pas │ │ │ ├── error.png.pas │ │ │ ├── help.png.pas │ │ │ ├── info.png.pas │ │ │ ├── std_lazarrow.lrs │ │ │ ├── std_lazicons.lrs │ │ │ └── warning.png.pas │ │ │ ├── std_lazarrow.lrs │ │ │ └── std_lazicons.lrs │ │ ├── ReadMe.md │ │ ├── StackOverflow │ │ ├── BinarySearchFastMultiInsert.dpr │ │ └── ORMFastMultiInsertWithIndex.dpr │ │ ├── TPrami │ │ └── mORMotDebuggerVisualizer │ │ │ ├── ReadMe.md │ │ │ ├── TimeLogVisualizer.pas │ │ │ ├── mORMotDebugVisualizerTestAppdproj.dpr │ │ │ ├── mORMotDebuggerVisualizer.dpk │ │ │ ├── mORMotDebuggerVisualizer.res │ │ │ ├── mORMotVisualizerTesterMainForm.dfm │ │ │ └── mORMotVisualizerTesterMainForm.pas │ │ ├── WarleyAlex │ │ └── MongoProj │ │ │ ├── DB │ │ │ └── wine.json │ │ │ ├── Form2.dfm │ │ │ ├── Form2.pas │ │ │ ├── Formulario.dfm │ │ │ ├── Formulario.pas │ │ │ ├── ReadMe.md │ │ │ ├── Servidor.res │ │ │ ├── btn.RES │ │ │ ├── mongoproj.dpr │ │ │ ├── mongoproj.res │ │ │ ├── mormotMongo.dfm │ │ │ ├── mormotMongo.pas │ │ │ └── pics │ │ │ ├── argiano.jpg │ │ │ ├── block_nine.jpg │ │ │ ├── bodega_lurton.jpg │ │ │ ├── bouscat.jpg │ │ │ ├── calera.jpg │ │ │ ├── capineto.png │ │ │ ├── caronne.jpg │ │ │ ├── dinastia.jpg │ │ │ ├── domaine_serene.jpg │ │ │ ├── ex_umbris.jpg │ │ │ ├── fourvines.jpg │ │ │ ├── generic.jpg │ │ │ ├── hugel.jpg │ │ │ ├── lan_rioja.jpg │ │ │ ├── le_doyenne.jpg │ │ │ ├── margerum.jpg │ │ │ ├── momo.jpg │ │ │ ├── morizottes.jpg │ │ │ ├── petalos.jpg │ │ │ ├── ponzi.jpg │ │ │ ├── quivira.jpg │ │ │ ├── rex_hill.jpg │ │ │ ├── saint_cosme.jpg │ │ │ ├── shafer.jpg │ │ │ ├── viticcio.jpg │ │ │ ├── warley.jpg │ │ │ └── waterbrook.jpg │ │ └── uian2000 │ │ └── DDDPersistence │ │ ├── DDDPersistence.dpr │ │ ├── DDDPersistenceMain.pas │ │ └── ReadMe.md ├── ServiceTestForm.dfm ├── ServiceTestForm.pas ├── ServiceTestSQL3.dpr ├── ServiceTestSQL3.res ├── TestOleDB.dpr ├── TestSQL3.dpr ├── TestSQL3.lpi ├── TestSQL3.res ├── TestSQL3FPCInterfaces.pas ├── TestSQL3Register.dpr ├── amalgamation │ ├── ReadMe.md │ ├── android │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── Application.mk │ │ │ └── ApplicationWin32.mk │ │ ├── ndk-linux.sh │ │ └── ndk-windows.bat │ ├── ciphers │ │ ├── cipher_common.c │ │ └── cipher_common.h │ ├── codecext.c │ ├── compile-delphi-win32.bat │ ├── compile-delphi-win64.bat │ ├── compile-fpc-aarch64-android.sh │ ├── compile-fpc-aarch64-linux.sh │ ├── compile-fpc-arm-android.sh │ ├── compile-fpc-arm-linux.sh │ ├── compile-fpc-i386-android.sh │ ├── compile-fpc-i386-darwin.sh │ ├── compile-fpc-i386-freebsd.sh │ ├── compile-fpc-i386-linux.bat │ ├── compile-fpc-i386-linux.sh │ ├── compile-fpc-i386-openbsd.sh │ ├── compile-fpc-i386-win32.sh │ ├── compile-fpc-x86_64-android.sh │ ├── compile-fpc-x86_64-darwin.sh │ ├── compile-fpc-x86_64-freebsd.sh │ ├── compile-fpc-x86_64-linux.bat │ ├── compile-fpc-x86_64-linux.sh │ ├── compile-fpc-x86_64-openbsd.sh │ ├── compile-fpc-x86_64-win64.sh │ ├── patch-and-compile.sh │ ├── patchsqlite3.sh │ ├── regexp.c │ ├── sqlite3mc.c │ ├── sqlite3mc_vfs.c │ └── sqlite3mc_vfs.h ├── build-fpc-linux64.sh ├── c-fpc64gcclin.sh ├── c-fpcgcclin.sh ├── mORMot.pas ├── mORMotBigTable.pas ├── mORMotDB.pas ├── mORMotDDD.pas ├── mORMotFastCgiServer.pas ├── mORMotHttpClient.pas ├── mORMotHttpServer.pas ├── mORMotMVC.pas ├── mORMotMidasVCL.pas ├── mORMotMongoDB.pas ├── mORMotReport.pas ├── mORMotSQLite3.pas ├── mORMotSelfTests.pas ├── mORMotService.pas ├── mORMotToolBar.pas ├── mORMotUI.pas ├── mORMotUIEdit.dfm ├── mORMotUIEdit.pas ├── mORMotUILogin.dfm ├── mORMotUILogin.pas ├── mORMotUIOptions.dfm ├── mORMotUIOptions.pas ├── mORMotUIQuery.dfm ├── mORMotUIQuery.pas ├── mORMotVCL.pas ├── mORMotWrappers.pas ├── mORMoti18n.pas ├── sqlite3.o └── sqlite3.obj ├── SyNode ├── .gitignore ├── NSPRAPI.pas ├── README.md ├── Samples │ ├── 01 - Dll Modules │ │ └── math-module │ │ │ ├── package.json │ │ │ └── src │ │ │ ├── mathModule.dpr │ │ │ ├── mathModule.res │ │ │ └── uMathModule.pas │ ├── 02 - Bindings │ │ ├── .gitignore │ │ ├── ExtendDebuggerConsole.js │ │ ├── SpiderMonkey45Binding.dpr │ │ ├── SpiderMonkey45Binding.dproj │ │ ├── SpiderMonkey45Binding.lpi │ │ ├── SpiderMonkey45Binding.lpr │ │ ├── SpiderMonkey45Binding.otares │ │ ├── SpiderMonkey45Binding.res │ │ ├── SpiderMonkey45Binding_Icon.ico │ │ ├── SpiderMonkey45Binding_Icon1.ico │ │ ├── ufrmSM45Demo.dfm │ │ └── ufrmSM45Demo.pas │ ├── 03 - HelloSpiderMonkey52 │ │ ├── HelloSpiderMonkey52.dpr │ │ ├── HelloSpiderMonkey52.lpi │ │ └── HelloSpiderMonkey52.lpr │ └── AllSamples.bpg ├── SpiderMonkey.pas ├── SyNode.inc ├── SyNode.pas ├── SyNodeBinding_HTTPClient.pas ├── SyNodeBinding_buffer.pas ├── SyNodeBinding_const.pas ├── SyNodeBinding_fs.pas ├── SyNodeBinding_util.pas ├── SyNodeBinding_uv.pas ├── SyNodeBinding_worker.pas ├── SyNodeNewProto.pas ├── SyNodePluginIntf.pas ├── SyNodeProto.pas ├── SyNodeReadWrite.pas ├── SyNodeRemoteDebugger.pas ├── SyNodeSimpleProto.pas ├── _SynodePluginTemplate.dpr ├── build_res.sh ├── core_modules.res ├── core_modules │ ├── DevTools │ │ ├── Debugger.js │ │ ├── DevToolsUtils.js │ │ ├── ObjectActorPreviewers.js │ │ ├── js-property-provider.js │ │ └── stringify.js │ ├── ModuleLoader.js │ ├── core_modules │ ├── node_modules │ │ ├── _stream_duplex.js │ │ ├── _stream_passthrough.js │ │ ├── _stream_readable.js │ │ ├── _stream_transform.js │ │ ├── _stream_writable.js │ │ ├── assert.js │ │ ├── buffer.js │ │ ├── child_process.js │ │ ├── console.js │ │ ├── crypto.js │ │ ├── dns.js │ │ ├── events.js │ │ ├── fs.js │ │ ├── http.js │ │ ├── https.js │ │ ├── internal │ │ │ ├── errors.js │ │ │ ├── fs.js │ │ │ ├── module.js │ │ │ ├── net.js │ │ │ ├── process │ │ │ │ └── stdio.js │ │ │ ├── querystring.js │ │ │ ├── streams │ │ │ │ ├── BufferList.js │ │ │ │ └── lazy_transform.js │ │ │ └── util.js │ │ ├── module.js │ │ ├── net.js │ │ ├── os.js │ │ ├── path.js │ │ ├── polyfill │ │ │ └── WindowTimer.js │ │ ├── punycode.js │ │ ├── querystring.js │ │ ├── stream.js │ │ ├── string_decoder.js │ │ ├── timers.js │ │ ├── tty.js │ │ ├── url.js │ │ ├── util.js │ │ ├── vm.js │ │ └── zlib.js │ └── synode.js ├── modules_cjs.txt ├── modules_es6.txt ├── mozjs │ ├── BuildInstruction.md │ ├── BuildInstructionSM52-linux.md │ ├── BuildInstructionSM52.md │ ├── Delphi patch 52.patch │ └── esr52-git.patch ├── synodebinding_os.pas └── tools │ ├── core_res.lpi │ └── core_res.lpr ├── SynBidirSock.pas ├── SynBigTable.pas ├── SynBz.pas ├── SynBzPas.pas ├── SynCommons.pas ├── SynCrtSock.pas ├── SynCrypto.pas ├── SynCurl.pas ├── SynDB.pas ├── SynDBDataset.pas ├── SynDBDataset ├── SynDBBDE.pas ├── SynDBFireDAC.pas ├── SynDBNexusDB.pas └── SynDBUniDAC.pas ├── SynDBFirebird.pas ├── SynDBMidasVCL.pas ├── SynDBODBC.pas ├── SynDBOracle.pas ├── SynDBPostgres.pas ├── SynDBRemote.pas ├── SynDBSQLite3.pas ├── SynDBVCL.pas ├── SynDBZeos.pas ├── SynDoubleToText.inc ├── SynDprUses.inc ├── SynEcc.pas ├── SynEcc32O2.obj ├── SynEcc32asm.inc ├── SynEcc64O2.o ├── SynFPCCMemAligned.pas ├── SynFPCLinux.pas ├── SynFPCMetaFile.pas ├── SynFPCSock.pas ├── SynFPCSockLIBC.inc ├── SynFPCTypInfo.pas ├── SynFPCx64MM.pas ├── SynFastWideString.pas ├── SynGSSAPI.pas ├── SynGSSAPIAuth.pas ├── SynGdiPlus.pas ├── SynKylix.pas ├── SynLZ.pas ├── SynLZO.pas ├── SynLizard.pas ├── SynLog.pas ├── SynMemoEx.pas ├── SynMongoDB.pas ├── SynMustache.pas ├── SynOleDB.pas ├── SynOpenSSL.pas ├── SynPdf.pas ├── SynProtoRTSPHTTP.pas ├── SynProtoRelay.pas ├── SynSM.inc ├── SynSM.pas ├── SynSMAPI.pas ├── SynSQLite3.pas ├── SynSQLite3RegEx.pas ├── SynSQLite3Static.pas ├── SynSSPI.pas ├── SynSSPIAuth.pas ├── SynScaleMM.pas ├── SynSelfTests.pas ├── SynTBB.pas ├── SynTable.pas ├── SynTaskDialog.RES ├── SynTaskDialog.pas ├── SynTaskDialog.rc ├── SynTests.pas ├── SynVirtualDataSet.pas ├── SynWinSock.pas ├── SynZLibSSE.pas ├── SynZip.pas ├── SynZipFiles.pas ├── Synopse.inc ├── SynopseCommit.inc ├── bunzipasm.inc ├── compil.bat ├── compilFPC.bat ├── compilpil.bat ├── crc32c64.obj ├── deflate.obj ├── lizard.dpr ├── lizard.lpi ├── padlock.o ├── padlock_aes.o ├── padlock_sha.o ├── sha512-x64sse4.obj ├── sha512-x86.obj ├── static ├── ReadMe.txt ├── aarch64-android │ ├── libcurl.a │ └── libgcc.a ├── aarch64-linux │ ├── libgcc.a │ └── sqlite3.o ├── arm-android │ ├── libcurl.a │ └── libgcc.a ├── arm-linux │ ├── libgcc.a │ └── sqlite3.o ├── i386-darwin │ ├── libsqlite3.a │ └── sqlite3.o ├── i386-freebsd │ ├── libgcc.a │ └── sqlite3.o ├── i386-linux │ ├── ecclin32O2.o │ ├── entropy_common.o │ ├── fse_compress.o │ ├── fse_decompress.o │ ├── huf_compress.o │ ├── huf_decompress.o │ ├── libgcc.a │ ├── lizard_compress.o │ ├── lizard_decompress.o │ ├── sha512-x86.o │ └── sqlite3.o ├── i386-openbsd │ ├── libgcc.a │ └── sqlite3.o ├── i386-win32 │ ├── adler32.o │ ├── crc32.o │ ├── deflate.o │ ├── eccwin32O2.o │ ├── entropy_common.o │ ├── fse_compress.o │ ├── fse_decompress.o │ ├── huf_compress.o │ ├── huf_decompress.o │ ├── inffast.o │ ├── inflate.o │ ├── inftrees.o │ ├── libgcc.a │ ├── libkernel32.a │ ├── libmsvcrt.a │ ├── lizard_compress.o │ ├── lizard_decompress.o │ ├── sha512-x86.o │ ├── sqlite3.o │ ├── trees.o │ ├── zlib-32.dll │ └── zutil.o ├── x86_64-darwin │ ├── crc32c64.o │ ├── libsqlite3.a │ └── sqlite3.o ├── x86_64-freebsd │ ├── libgcc.a │ └── sqlite3.o ├── x86_64-linux │ ├── crc32c64.o │ ├── ecclin64O2.o │ ├── entropy_common.o │ ├── fse_compress.o │ ├── fse_decompress.o │ ├── huf_compress.o │ ├── huf_decompress.o │ ├── libgcc.a │ ├── lizard_compress.o │ ├── lizard_decompress.o │ ├── sha512-x64sse4.o │ └── sqlite3.o ├── x86_64-openbsd │ ├── libgcc.a │ └── sqlite3.o └── x86_64-win64 │ ├── adler32.o │ ├── crc32.o │ ├── deflate.o │ ├── eccwin64O2.o │ ├── entropy_common.o │ ├── fse_compress.o │ ├── fse_decompress.o │ ├── huf_compress.o │ ├── huf_decompress.o │ ├── inffast.o │ ├── inflate.o │ ├── inftrees.o │ ├── libgcc.a │ ├── libkernel32.a │ ├── libmsvcrt.a │ ├── libsqlite3-64.a │ ├── lizard_compress.o │ ├── lizard_decompress.o │ ├── sqlite3-64.dll │ ├── sqlite3.o │ ├── sse │ ├── adler32.o │ ├── crc32.o │ ├── deflate.o │ ├── inffast.o │ ├── inflate.o │ ├── inftrees.o │ ├── trees.o │ └── zutil.o │ ├── trees.o │ ├── zlib-64.dll │ └── zutil.o ├── trees.obj ├── vista.RES ├── vista.manifest ├── vista.rc ├── vistaAdm.RES ├── vistaAdm.manifest └── vistaAdm.rc /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/.gitignore -------------------------------------------------------------------------------- /CrossPlatform/CopySynCrossPlatformUnits.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/CrossPlatform/CopySynCrossPlatformUnits.bat -------------------------------------------------------------------------------- /CrossPlatform/SynCrossPlatform.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/CrossPlatform/SynCrossPlatform.inc -------------------------------------------------------------------------------- /CrossPlatform/SynCrossPlatformCrypto.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/CrossPlatform/SynCrossPlatformCrypto.pas -------------------------------------------------------------------------------- /CrossPlatform/SynCrossPlatformJSON.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/CrossPlatform/SynCrossPlatformJSON.pas -------------------------------------------------------------------------------- /CrossPlatform/SynCrossPlatformREST.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/CrossPlatform/SynCrossPlatformREST.pas -------------------------------------------------------------------------------- /CrossPlatform/SynCrossPlatformSpecific.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/CrossPlatform/SynCrossPlatformSpecific.pas -------------------------------------------------------------------------------- /CrossPlatform/SynCrossPlatformSynLZ.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/CrossPlatform/SynCrossPlatformSynLZ.pas -------------------------------------------------------------------------------- /CrossPlatform/SynCrossPlatformTests.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/CrossPlatform/SynCrossPlatformTests.pas -------------------------------------------------------------------------------- /CrossPlatform/templates/API.adoc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/CrossPlatform/templates/API.adoc.mustache -------------------------------------------------------------------------------- /CrossPlatform/templates/CrossPlatform.pas.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/CrossPlatform/templates/CrossPlatform.pas.mustache -------------------------------------------------------------------------------- /CrossPlatform/templates/Delphi.pas.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/CrossPlatform/templates/Delphi.pas.mustache -------------------------------------------------------------------------------- /CrossPlatform/templates/FPC-mORMotInterfaces.pas.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/CrossPlatform/templates/FPC-mORMotInterfaces.pas.mustache -------------------------------------------------------------------------------- /CrossPlatform/templates/FPCServer-mORMotServer.pas.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/CrossPlatform/templates/FPCServer-mORMotServer.pas.mustache -------------------------------------------------------------------------------- /CrossPlatform/templates/SmartMobileStudio.pas.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/CrossPlatform/templates/SmartMobileStudio.pas.mustache -------------------------------------------------------------------------------- /CrossPlatform/templates/Swagger.json.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/CrossPlatform/templates/Swagger.json.mustache -------------------------------------------------------------------------------- /Delphinus.Info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/Delphinus.Info.json -------------------------------------------------------------------------------- /Delphinus.Install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/Delphinus.Install.json -------------------------------------------------------------------------------- /Packages/.gitignore: -------------------------------------------------------------------------------- 1 | *.pas 2 | -------------------------------------------------------------------------------- /Packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/Packages/README.md -------------------------------------------------------------------------------- /Packages/mormot_base.lpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/Packages/mormot_base.lpk -------------------------------------------------------------------------------- /Packages/mormot_cross.lpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/Packages/mormot_cross.lpk -------------------------------------------------------------------------------- /PasZip.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/PasZip.pas -------------------------------------------------------------------------------- /RTL7/FastMM4.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/RTL7/FastMM4.pas -------------------------------------------------------------------------------- /RTL7/FastMM4Messages.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/RTL7/FastMM4Messages.pas -------------------------------------------------------------------------------- /RTL7/FastMM4Options.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/RTL7/FastMM4Options.inc -------------------------------------------------------------------------------- /RTL7/FastMM4_AVX512.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/RTL7/FastMM4_AVX512.obj -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/ReadMe.txt -------------------------------------------------------------------------------- /SQLite3/DDD/dom/asynch.pas.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/DDD/dom/asynch.pas.mustache -------------------------------------------------------------------------------- /SQLite3/DDD/dom/dddDomAuthInterfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/DDD/dom/dddDomAuthInterfaces.pas -------------------------------------------------------------------------------- /SQLite3/DDD/dom/dddDomCountry.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/DDD/dom/dddDomCountry.pas -------------------------------------------------------------------------------- /SQLite3/DDD/dom/dddDomEmailInterfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/DDD/dom/dddDomEmailInterfaces.pas -------------------------------------------------------------------------------- /SQLite3/DDD/dom/dddDomUserCQRS.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/DDD/dom/dddDomUserCQRS.pas -------------------------------------------------------------------------------- /SQLite3/DDD/dom/dddDomUserInterfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/DDD/dom/dddDomUserInterfaces.pas -------------------------------------------------------------------------------- /SQLite3/DDD/dom/dddDomUserTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/DDD/dom/dddDomUserTypes.pas -------------------------------------------------------------------------------- /SQLite3/DDD/infra/dddInfraApps.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/DDD/infra/dddInfraApps.pas -------------------------------------------------------------------------------- /SQLite3/DDD/infra/dddInfraAuthRest.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/DDD/infra/dddInfraAuthRest.pas -------------------------------------------------------------------------------- /SQLite3/DDD/infra/dddInfraEmail.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/DDD/infra/dddInfraEmail.pas -------------------------------------------------------------------------------- /SQLite3/DDD/infra/dddInfraEmailer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/DDD/infra/dddInfraEmailer.pas -------------------------------------------------------------------------------- /SQLite3/DDD/infra/dddInfraRepoUser.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/DDD/infra/dddInfraRepoUser.pas -------------------------------------------------------------------------------- /SQLite3/DDD/infra/dddInfraSettings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/DDD/infra/dddInfraSettings.pas -------------------------------------------------------------------------------- /SQLite3/DDD/tools/dddToolsAdminDB.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/DDD/tools/dddToolsAdminDB.dfm -------------------------------------------------------------------------------- /SQLite3/DDD/tools/dddToolsAdminDB.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/DDD/tools/dddToolsAdminDB.pas -------------------------------------------------------------------------------- /SQLite3/DDD/tools/dddToolsAdminLog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/DDD/tools/dddToolsAdminLog.dfm -------------------------------------------------------------------------------- /SQLite3/DDD/tools/dddToolsAdminLog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/DDD/tools/dddToolsAdminLog.pas -------------------------------------------------------------------------------- /SQLite3/DDD/tools/dddToolsAdminMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/DDD/tools/dddToolsAdminMain.dfm -------------------------------------------------------------------------------- /SQLite3/DDD/tools/dddToolsAdminMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/DDD/tools/dddToolsAdminMain.pas -------------------------------------------------------------------------------- /SQLite3/Documentation/IamLost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/IamLost.png -------------------------------------------------------------------------------- /SQLite3/Documentation/Release/Release.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/Release/Release.dpr -------------------------------------------------------------------------------- /SQLite3/Documentation/Release/ReleaseForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/Release/ReleaseForm.dfm -------------------------------------------------------------------------------- /SQLite3/Documentation/Release/ReleaseForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/Release/ReleaseForm.pas -------------------------------------------------------------------------------- /SQLite3/Documentation/SmartCalculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SmartCalculator.png -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/FossilCommit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/FossilCommit.bat -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/FossilCommit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/FossilCommit.sh -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/FossilStatus.bat: -------------------------------------------------------------------------------- 1 | fossil status>%1 -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/FossilStatus.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | fossil status > $1 -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/FossilUpdate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/FossilUpdate.bat -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/FossilUpdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/FossilUpdate.sh -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/GitCommit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/GitCommit.bat -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/GitCommit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/GitCommit.sh -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/GitCommitAll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/GitCommitAll.bat -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/GitCommitAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/GitCommitAll.sh -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/GitCommitDMustache.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/GitCommitDMustache.bat -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/GitCommitDMustache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/GitCommitDMustache.sh -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/GitCommitLVCL.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/GitCommitLVCL.bat -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/GitCommitLVCL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/GitCommitLVCL.sh -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/GitCommitSynPdf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/GitCommitSynPdf.bat -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/GitCommitSynPdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/GitCommitSynPdf.sh -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/GitCommitSynProject.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/GitCommitSynProject.bat -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/GitCommitSynProject.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/GitCommitSynProject.sh -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/GitShell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/GitShell.bat -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/SourceCodeRep.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/SourceCodeRep.dpr -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/SourceCodeRep.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/SourceCodeRep.ico -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/SourceCodeRep.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/SourceCodeRep.lpi -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/SourceCodeRep.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/SourceCodeRep.res -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/SourceCodeRepMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/SourceCodeRepMain.dfm -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/SourceCodeRepMain.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/SourceCodeRepMain.lfm -------------------------------------------------------------------------------- /SQLite3/Documentation/SourceCodeRep/SourceCodeRepMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/SourceCodeRep/SourceCodeRepMain.pas -------------------------------------------------------------------------------- /SQLite3/Documentation/Synopse SQLite3 Framework.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/Synopse SQLite3 Framework.pro -------------------------------------------------------------------------------- /SQLite3/Documentation/cartoon01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/cartoon01.png -------------------------------------------------------------------------------- /SQLite3/Documentation/cartoon02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/cartoon02.png -------------------------------------------------------------------------------- /SQLite3/Documentation/cartoon03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/cartoon03.png -------------------------------------------------------------------------------- /SQLite3/Documentation/cartoon04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/cartoon04.png -------------------------------------------------------------------------------- /SQLite3/Documentation/cartoon05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/cartoon05.png -------------------------------------------------------------------------------- /SQLite3/Documentation/cartoon06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/cartoon06.png -------------------------------------------------------------------------------- /SQLite3/Documentation/cartoon07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/cartoon07.png -------------------------------------------------------------------------------- /SQLite3/Documentation/cartoon08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/cartoon08.png -------------------------------------------------------------------------------- /SQLite3/Documentation/gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/gpl-3.0.txt -------------------------------------------------------------------------------- /SQLite3/Documentation/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/logo.png -------------------------------------------------------------------------------- /SQLite3/Documentation/mORMot128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/mORMot128.png -------------------------------------------------------------------------------- /SQLite3/Documentation/synfiletms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/synfiletms.png -------------------------------------------------------------------------------- /SQLite3/Documentation/synfilevcl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Documentation/synfilevcl.png -------------------------------------------------------------------------------- /SQLite3/SQLite3BtnArrow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/SQLite3BtnArrow.bmp -------------------------------------------------------------------------------- /SQLite3/SQLite3BtnClose.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/SQLite3BtnClose.bmp -------------------------------------------------------------------------------- /SQLite3/SQLite3BtnMax.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/SQLite3BtnMax.bmp -------------------------------------------------------------------------------- /SQLite3/SQLite3BtnMin.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/SQLite3BtnMin.bmp -------------------------------------------------------------------------------- /SQLite3/SQLite3BtnOk.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/SQLite3BtnOk.bmp -------------------------------------------------------------------------------- /SQLite3/SQLite3UI.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/SQLite3UI.RES -------------------------------------------------------------------------------- /SQLite3/SQLite3UI.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/SQLite3UI.rc -------------------------------------------------------------------------------- /SQLite3/SQLite3UILogin.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/SQLite3UILogin.RES -------------------------------------------------------------------------------- /SQLite3/SQLite3UILogin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/SQLite3UILogin.png -------------------------------------------------------------------------------- /SQLite3/SQLite3UILogin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/SQLite3UILogin.rc -------------------------------------------------------------------------------- /SQLite3/Samples/01 - In Memory ORM/Project01.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/01 - In Memory ORM/Project01.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/01 - In Memory ORM/Project01.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/01 - In Memory ORM/Project01.lpi -------------------------------------------------------------------------------- /SQLite3/Samples/01 - In Memory ORM/Project01.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/01 - In Memory ORM/Project01.lpr -------------------------------------------------------------------------------- /SQLite3/Samples/01 - In Memory ORM/Project01.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/01 - In Memory ORM/Project01.res -------------------------------------------------------------------------------- /SQLite3/Samples/01 - In Memory ORM/Project01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/01 - In Memory ORM/Project01.txt -------------------------------------------------------------------------------- /SQLite3/Samples/01 - In Memory ORM/SampleData.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/01 - In Memory ORM/SampleData.pas -------------------------------------------------------------------------------- /SQLite3/Samples/01 - In Memory ORM/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/01 - In Memory ORM/Unit1.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/01 - In Memory ORM/Unit1.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/01 - In Memory ORM/Unit1.lfm -------------------------------------------------------------------------------- /SQLite3/Samples/01 - In Memory ORM/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/01 - In Memory ORM/Unit1.pas -------------------------------------------------------------------------------- /SQLite3/Samples/02 - Embedded SQLite3 ORM/Project02.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/02 - Embedded SQLite3 ORM/Project02.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/02 - Embedded SQLite3 ORM/Project02.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/02 - Embedded SQLite3 ORM/Project02.lpi -------------------------------------------------------------------------------- /SQLite3/Samples/02 - Embedded SQLite3 ORM/Project02.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/02 - Embedded SQLite3 ORM/Project02.lpr -------------------------------------------------------------------------------- /SQLite3/Samples/02 - Embedded SQLite3 ORM/Project02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/02 - Embedded SQLite3 ORM/Project02.txt -------------------------------------------------------------------------------- /SQLite3/Samples/03 - NamedPipe Client-Server/Project03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/03 - NamedPipe Client-Server/Project03.txt -------------------------------------------------------------------------------- /SQLite3/Samples/03 - NamedPipe Client-Server/Project03Client.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/03 - NamedPipe Client-Server/Project03Client.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/03 - NamedPipe Client-Server/Project03Client.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/03 - NamedPipe Client-Server/Project03Client.res -------------------------------------------------------------------------------- /SQLite3/Samples/03 - NamedPipe Client-Server/Project03Server.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/03 - NamedPipe Client-Server/Project03Server.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/03 - NamedPipe Client-Server/Project03Server.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/03 - NamedPipe Client-Server/Project03Server.res -------------------------------------------------------------------------------- /SQLite3/Samples/03 - NamedPipe Client-Server/Unit2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/03 - NamedPipe Client-Server/Unit2.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/03 - NamedPipe Client-Server/Unit2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/03 - NamedPipe Client-Server/Unit2.pas -------------------------------------------------------------------------------- /SQLite3/Samples/04 - HTTP Client-Server/Project04Client.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/04 - HTTP Client-Server/Project04Client.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/04 - HTTP Client-Server/Project04Client.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/04 - HTTP Client-Server/Project04Client.lpi -------------------------------------------------------------------------------- /SQLite3/Samples/04 - HTTP Client-Server/Project04Client.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/04 - HTTP Client-Server/Project04Client.lpr -------------------------------------------------------------------------------- /SQLite3/Samples/04 - HTTP Client-Server/Project04Client.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/04 - HTTP Client-Server/Project04Client.res -------------------------------------------------------------------------------- /SQLite3/Samples/04 - HTTP Client-Server/Project04Server.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/04 - HTTP Client-Server/Project04Server.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/04 - HTTP Client-Server/Project04Server.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/04 - HTTP Client-Server/Project04Server.lpi -------------------------------------------------------------------------------- /SQLite3/Samples/04 - HTTP Client-Server/Project04Server.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/04 - HTTP Client-Server/Project04Server.lpr -------------------------------------------------------------------------------- /SQLite3/Samples/04 - HTTP Client-Server/Project04Server.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/04 - HTTP Client-Server/Project04Server.res -------------------------------------------------------------------------------- /SQLite3/Samples/04 - HTTP Client-Server/Project04ServerStatic.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/04 - HTTP Client-Server/Project04ServerStatic.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/04 - HTTP Client-Server/Project04ServerStatic.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/04 - HTTP Client-Server/Project04ServerStatic.res -------------------------------------------------------------------------------- /SQLite3/Samples/04 - HTTP Client-Server/Unit2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/04 - HTTP Client-Server/Unit2.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/04 - HTTP Client-Server/Unit2.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/04 - HTTP Client-Server/Unit2.lfm -------------------------------------------------------------------------------- /SQLite3/Samples/04 - HTTP Client-Server/Unit2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/04 - HTTP Client-Server/Unit2.pas -------------------------------------------------------------------------------- /SQLite3/Samples/04 - HTTP Client-Server/Unit2Static.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/04 - HTTP Client-Server/Unit2Static.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/04 - HTTP Client-Server/Unit2Static.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/04 - HTTP Client-Server/Unit2Static.pas -------------------------------------------------------------------------------- /SQLite3/Samples/05 - Report created from code/SynPdfFormCanvas.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/05 - Report created from code/SynPdfFormCanvas.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/05 - Report created from code/SynPdfLayers.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/05 - Report created from code/SynPdfLayers.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/05 - Report created from code/TestSQLite3Pages.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/05 - Report created from code/TestSQLite3Pages.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/05 - Report created from code/TestSQLite3Pages.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/05 - Report created from code/TestSQLite3Pages.res -------------------------------------------------------------------------------- /SQLite3/Samples/05 - Report created from code/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/05 - Report created from code/Unit1.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/05 - Report created from code/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/05 - Report created from code/Unit1.pas -------------------------------------------------------------------------------- /SQLite3/Samples/06 - Remote JSON REST Service/Project06Client.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/06 - Remote JSON REST Service/Project06Client.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/06 - Remote JSON REST Service/Project06Client.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/06 - Remote JSON REST Service/Project06Client.res -------------------------------------------------------------------------------- /SQLite3/Samples/06 - Remote JSON REST Service/Project06Server.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/06 - Remote JSON REST Service/Project06Server.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/07 - SynTest/SynTest.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/07 - SynTest/SynTest.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/07 - SynTest/SynTestTest.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/07 - SynTest/SynTestTest.pas -------------------------------------------------------------------------------- /SQLite3/Samples/08 - TaskDialog/TaskDialogTest.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/08 - TaskDialog/TaskDialogTest.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/08 - TaskDialog/TaskDialogTest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/08 - TaskDialog/TaskDialogTest.res -------------------------------------------------------------------------------- /SQLite3/Samples/09 - HttpApi web server/HttpApiServer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/09 - HttpApi web server/HttpApiServer.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/09 - HttpApi web server/HttpApiServer.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/09 - HttpApi web server/HttpApiServer.lpi -------------------------------------------------------------------------------- /SQLite3/Samples/10 - Background Http service/httpservice.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/10 - Background Http service/httpservice.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/10 - Background Http service/httpservice.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/10 - Background Http service/httpservice.lpi -------------------------------------------------------------------------------- /SQLite3/Samples/10 - Background Http service/httpserviceSetup.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/10 - Background Http service/httpserviceSetup.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/10 - Background Http service/httpserviceSetup.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/10 - Background Http service/httpserviceSetup.lpi -------------------------------------------------------------------------------- /SQLite3/Samples/11 - Exception logging/LibraryTest.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/11 - Exception logging/LibraryTest.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/11 - Exception logging/LogView.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/11 - Exception logging/LogView.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/11 - Exception logging/LogView.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/11 - Exception logging/LogView.ico -------------------------------------------------------------------------------- /SQLite3/Samples/11 - Exception logging/LogView.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/11 - Exception logging/LogView.lpi -------------------------------------------------------------------------------- /SQLite3/Samples/11 - Exception logging/LogView.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/11 - Exception logging/LogView.lpr -------------------------------------------------------------------------------- /SQLite3/Samples/11 - Exception logging/LogView.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/11 - Exception logging/LogView.lps -------------------------------------------------------------------------------- /SQLite3/Samples/11 - Exception logging/LogView.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/11 - Exception logging/LogView.res -------------------------------------------------------------------------------- /SQLite3/Samples/11 - Exception logging/LogViewMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/11 - Exception logging/LogViewMain.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/11 - Exception logging/LogViewMain.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/11 - Exception logging/LogViewMain.lfm -------------------------------------------------------------------------------- /SQLite3/Samples/11 - Exception logging/LogViewMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/11 - Exception logging/LogViewMain.pas -------------------------------------------------------------------------------- /SQLite3/Samples/11 - Exception logging/LoggingTest.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/11 - Exception logging/LoggingTest.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/11 - Exception logging/Map2Mab.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/11 - Exception logging/Map2Mab.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/11 - Exception logging/MyLibrary.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/11 - Exception logging/MyLibrary.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/11 - Exception logging/MyLibrary.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/11 - Exception logging/MyLibrary.res -------------------------------------------------------------------------------- /SQLite3/Samples/11 - Exception logging/RemoteLogMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/11 - Exception logging/RemoteLogMain.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/11 - Exception logging/RemoteLogMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/11 - Exception logging/RemoteLogMain.pas -------------------------------------------------------------------------------- /SQLite3/Samples/11 - Exception logging/RemoteLoggingTest.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/11 - Exception logging/RemoteLoggingTest.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/11 - Exception logging/RemoteLoggingTest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/11 - Exception logging/RemoteLoggingTest.res -------------------------------------------------------------------------------- /SQLite3/Samples/11 - Exception logging/UnSynLz.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/11 - Exception logging/UnSynLz.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/11 - Exception logging/thread512.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/11 - Exception logging/thread512.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/12 - SynDB Explorer/DBSynLZ.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/12 - SynDB Explorer/DBSynLZ.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/12 - SynDB Explorer/SynDB.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/12 - SynDB Explorer/SynDB.ico -------------------------------------------------------------------------------- /SQLite3/Samples/12 - SynDB Explorer/SynDBExplorer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/12 - SynDB Explorer/SynDBExplorer.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/12 - SynDB Explorer/SynDBExplorer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/12 - SynDB Explorer/SynDBExplorer.dproj -------------------------------------------------------------------------------- /SQLite3/Samples/12 - SynDB Explorer/SynDBExplorer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/12 - SynDB Explorer/SynDBExplorer.res -------------------------------------------------------------------------------- /SQLite3/Samples/12 - SynDB Explorer/SynDBExplorerClasses.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/12 - SynDB Explorer/SynDBExplorerClasses.pas -------------------------------------------------------------------------------- /SQLite3/Samples/12 - SynDB Explorer/SynDBExplorerExportTables.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/12 - SynDB Explorer/SynDBExplorerExportTables.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/12 - SynDB Explorer/SynDBExplorerExportTables.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/12 - SynDB Explorer/SynDBExplorerExportTables.pas -------------------------------------------------------------------------------- /SQLite3/Samples/12 - SynDB Explorer/SynDBExplorerFrame.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/12 - SynDB Explorer/SynDBExplorerFrame.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/12 - SynDB Explorer/SynDBExplorerFrame.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/12 - SynDB Explorer/SynDBExplorerFrame.pas -------------------------------------------------------------------------------- /SQLite3/Samples/12 - SynDB Explorer/SynDBExplorerMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/12 - SynDB Explorer/SynDBExplorerMain.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/12 - SynDB Explorer/SynDBExplorerMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/12 - SynDB Explorer/SynDBExplorerMain.pas -------------------------------------------------------------------------------- /SQLite3/Samples/12 - SynDB Explorer/SynDBExplorerQueryBuilder.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/12 - SynDB Explorer/SynDBExplorerQueryBuilder.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/12 - SynDB Explorer/SynDBExplorerQueryBuilder.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/12 - SynDB Explorer/SynDBExplorerQueryBuilder.pas -------------------------------------------------------------------------------- /SQLite3/Samples/12 - SynDB Explorer/SynDBExplorerServer.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/12 - SynDB Explorer/SynDBExplorerServer.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/12 - SynDB Explorer/SynDBExplorerServer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/12 - SynDB Explorer/SynDBExplorerServer.pas -------------------------------------------------------------------------------- /SQLite3/Samples/13 - StandAlone JSON SQL server/JSONSQLClient.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/13 - StandAlone JSON SQL server/JSONSQLClient.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/13 - StandAlone JSON SQL server/JSONSQLServer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/13 - StandAlone JSON SQL server/JSONSQLServer.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/14 - Interface based services/Project14Client.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/14 - Interface based services/Project14Client.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/14 - Interface based services/Project14Client.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/14 - Interface based services/Project14Client.lpi -------------------------------------------------------------------------------- /SQLite3/Samples/14 - Interface based services/Project14Client.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/14 - Interface based services/Project14Client.res -------------------------------------------------------------------------------- /SQLite3/Samples/14 - Interface based services/Project14Server.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/14 - Interface based services/Project14Server.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/15 - External DB performance/PerfMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/15 - External DB performance/PerfMain.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/15 - External DB performance/PerfMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/15 - External DB performance/PerfMain.pas -------------------------------------------------------------------------------- /SQLite3/Samples/15 - External DB performance/PerfTest.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/15 - External DB performance/PerfTest.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/15 - External DB performance/PerfTest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/15 - External DB performance/PerfTest.res -------------------------------------------------------------------------------- /SQLite3/Samples/15 - External DB performance/PerfTestCases.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/15 - External DB performance/PerfTestCases.pas -------------------------------------------------------------------------------- /SQLite3/Samples/15 - External DB performance/PerfTestConsole.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/15 - External DB performance/PerfTestConsole.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/15 - External DB performance/mORMotBatchInsert.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/15 - External DB performance/mORMotBatchInsert.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/16 - Execute SQL via services/Project16Client.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/16 - Execute SQL via services/Project16Client.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/16 - Execute SQL via services/Project16Client.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/16 - Execute SQL via services/Project16Client.res -------------------------------------------------------------------------------- /SQLite3/Samples/17 - TClientDataset use/mORMotVCLTest.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/17 - TClientDataset use/mORMotVCLTest.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/17 - TClientDataset use/mORMotVCLUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/17 - TClientDataset use/mORMotVCLUnit.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/17 - TClientDataset use/mORMotVCLUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/17 - TClientDataset use/mORMotVCLUnit.pas -------------------------------------------------------------------------------- /SQLite3/Samples/18 - AJAX ExtJS Grid/Project18Server.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/18 - AJAX ExtJS Grid/Project18Server.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/18 - AJAX ExtJS Grid/Project18Server.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/18 - AJAX ExtJS Grid/Project18Server.res -------------------------------------------------------------------------------- /SQLite3/Samples/18 - AJAX ExtJS Grid/SampleRecordInit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/18 - AJAX ExtJS Grid/SampleRecordInit.json -------------------------------------------------------------------------------- /SQLite3/Samples/18 - AJAX ExtJS Grid/Unit2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/18 - AJAX ExtJS Grid/Unit2.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/18 - AJAX ExtJS Grid/Unit2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/18 - AJAX ExtJS Grid/Unit2.pas -------------------------------------------------------------------------------- /SQLite3/Samples/18 - AJAX ExtJS Grid/html5/MyApp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/18 - AJAX ExtJS Grid/html5/MyApp.html -------------------------------------------------------------------------------- /SQLite3/Samples/18 - AJAX ExtJS Grid/html5/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/18 - AJAX ExtJS Grid/html5/app.js -------------------------------------------------------------------------------- /SQLite3/Samples/18 - AJAX ExtJS Grid/html5/app/model/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/18 - AJAX ExtJS Grid/html5/app/model/Contact.js -------------------------------------------------------------------------------- /SQLite3/Samples/18 - AJAX ExtJS Grid/html5/app/store/Contacts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/18 - AJAX ExtJS Grid/html5/app/store/Contacts.js -------------------------------------------------------------------------------- /SQLite3/Samples/18 - AJAX ExtJS Grid/html5/app/view/Viewport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/18 - AJAX ExtJS Grid/html5/app/view/Viewport.js -------------------------------------------------------------------------------- /SQLite3/Samples/18 - AJAX ExtJS Grid/html5/resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/18 - AJAX ExtJS Grid/html5/resources/css/app.css -------------------------------------------------------------------------------- /SQLite3/Samples/19 - AJAX ExtJS FishFacts/Project19Server.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/19 - AJAX ExtJS FishFacts/Project19Server.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/19 - AJAX ExtJS FishFacts/Project19Server.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/19 - AJAX ExtJS FishFacts/Project19Server.res -------------------------------------------------------------------------------- /SQLite3/Samples/19 - AJAX ExtJS FishFacts/Unit2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/19 - AJAX ExtJS FishFacts/Unit2.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/19 - AJAX ExtJS FishFacts/Unit2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/19 - AJAX ExtJS FishFacts/Unit2.pas -------------------------------------------------------------------------------- /SQLite3/Samples/19 - AJAX ExtJS FishFacts/html5/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/19 - AJAX ExtJS FishFacts/html5/css/main.css -------------------------------------------------------------------------------- /SQLite3/Samples/19 - AJAX ExtJS FishFacts/html5/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/19 - AJAX ExtJS FishFacts/html5/images/down.png -------------------------------------------------------------------------------- /SQLite3/Samples/19 - AJAX ExtJS FishFacts/html5/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/19 - AJAX ExtJS FishFacts/html5/images/up.png -------------------------------------------------------------------------------- /SQLite3/Samples/19 - AJAX ExtJS FishFacts/html5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/19 - AJAX ExtJS FishFacts/html5/index.html -------------------------------------------------------------------------------- /SQLite3/Samples/19 - AJAX ExtJS FishFacts/html5/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/19 - AJAX ExtJS FishFacts/html5/jquery.min.js -------------------------------------------------------------------------------- /SQLite3/Samples/22 - JavaScript HTTPApi web server/mustache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/22 - JavaScript HTTPApi web server/mustache.md -------------------------------------------------------------------------------- /SQLite3/Samples/22 - JavaScript HTTPApi web server/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/22 - JavaScript HTTPApi web server/readme.md -------------------------------------------------------------------------------- /SQLite3/Samples/22 - JavaScript HTTPApi web server/showdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/22 - JavaScript HTTPApi web server/showdown.js -------------------------------------------------------------------------------- /SQLite3/Samples/23 - JavaScript Tests/SynSMSelfTest.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/23 - JavaScript Tests/SynSMSelfTest.pas -------------------------------------------------------------------------------- /SQLite3/Samples/23 - JavaScript Tests/TestMustache.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/23 - JavaScript Tests/TestMustache.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/23 - JavaScript Tests/TestMustache.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/23 - JavaScript Tests/TestMustache.res -------------------------------------------------------------------------------- /SQLite3/Samples/23 - JavaScript Tests/TestMustacheUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/23 - JavaScript Tests/TestMustacheUnit.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/23 - JavaScript Tests/TestMustacheUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/23 - JavaScript Tests/TestMustacheUnit.pas -------------------------------------------------------------------------------- /SQLite3/Samples/23 - JavaScript Tests/TestSynSM.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/23 - JavaScript Tests/TestSynSM.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/23 - JavaScript Tests/js/testCompileUTF8.js: -------------------------------------------------------------------------------- 1 | var a=1 -------------------------------------------------------------------------------- /SQLite3/Samples/23 - JavaScript Tests/js/testCompileUnicode.js: -------------------------------------------------------------------------------- 1 | var a=1 -------------------------------------------------------------------------------- /SQLite3/Samples/24 - MongoDB/MongoDBTestCases.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/24 - MongoDB/MongoDBTestCases.pas -------------------------------------------------------------------------------- /SQLite3/Samples/24 - MongoDB/MongoDBTests.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/24 - MongoDB/MongoDBTests.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/25 - JSON performance/JSONPerfTestCases.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/25 - JSON performance/JSONPerfTestCases.pas -------------------------------------------------------------------------------- /SQLite3/Samples/25 - JSON performance/JSONPerfTests.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/25 - JSON performance/JSONPerfTests.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/26 - RESTful ORM/RESTClient.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/26 - RESTful ORM/RESTClient.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/26 - RESTful ORM/RESTClient.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/26 - RESTful ORM/RESTClient.res -------------------------------------------------------------------------------- /SQLite3/Samples/26 - RESTful ORM/RESTData.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/26 - RESTful ORM/RESTData.pas -------------------------------------------------------------------------------- /SQLite3/Samples/26 - RESTful ORM/RESTServerClass.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/26 - RESTful ORM/RESTServerClass.pas -------------------------------------------------------------------------------- /SQLite3/Samples/26 - RESTful ORM/RESTserver.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/26 - RESTful ORM/RESTserver.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/26 - RESTful ORM/RestClientMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/26 - RESTful ORM/RestClientMain.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/26 - RESTful ORM/RestClientMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/26 - RESTful ORM/RestClientMain.pas -------------------------------------------------------------------------------- /SQLite3/Samples/27 - CrossPlatform Clients/FMClient.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/27 - CrossPlatform Clients/FMClient.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/27 - CrossPlatform Clients/FMMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/27 - CrossPlatform Clients/FMMain.fmx -------------------------------------------------------------------------------- /SQLite3/Samples/27 - CrossPlatform Clients/FMMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/27 - CrossPlatform Clients/FMMain.pas -------------------------------------------------------------------------------- /SQLite3/Samples/27 - CrossPlatform Clients/FPC/JSONconsole.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/27 - CrossPlatform Clients/FPC/JSONconsole.lpi -------------------------------------------------------------------------------- /SQLite3/Samples/27 - CrossPlatform Clients/FPC/JSONconsole.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/27 - CrossPlatform Clients/FPC/JSONconsole.lpr -------------------------------------------------------------------------------- /SQLite3/Samples/27 - CrossPlatform Clients/FPC/LCLClient.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/27 - CrossPlatform Clients/FPC/LCLClient.lpi -------------------------------------------------------------------------------- /SQLite3/Samples/27 - CrossPlatform Clients/FPC/LCLClient.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/27 - CrossPlatform Clients/FPC/LCLClient.lpr -------------------------------------------------------------------------------- /SQLite3/Samples/27 - CrossPlatform Clients/FPC/LCLMain.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/27 - CrossPlatform Clients/FPC/LCLMain.lfm -------------------------------------------------------------------------------- /SQLite3/Samples/27 - CrossPlatform Clients/FPC/LCLMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/27 - CrossPlatform Clients/FPC/LCLMain.pas -------------------------------------------------------------------------------- /SQLite3/Samples/27 - CrossPlatform Clients/MobileClient.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/27 - CrossPlatform Clients/MobileClient.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/27 - CrossPlatform Clients/MobileMain.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/27 - CrossPlatform Clients/MobileMain.fmx -------------------------------------------------------------------------------- /SQLite3/Samples/27 - CrossPlatform Clients/MobileMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/27 - CrossPlatform Clients/MobileMain.pas -------------------------------------------------------------------------------- /SQLite3/Samples/27 - CrossPlatform Clients/People.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/27 - CrossPlatform Clients/People.json -------------------------------------------------------------------------------- /SQLite3/Samples/27 - CrossPlatform Clients/PeopleServer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/27 - CrossPlatform Clients/PeopleServer.pas -------------------------------------------------------------------------------- /SQLite3/Samples/27 - CrossPlatform Clients/RegressionTests.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/27 - CrossPlatform Clients/RegressionTests.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/27 - CrossPlatform Clients/SmartMobileStudio/www/timestamp.txt: -------------------------------------------------------------------------------- 1 | 2014-08-10T16:59:28.498 -------------------------------------------------------------------------------- /SQLite3/Samples/27 - CrossPlatform Clients/VCLClient.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/27 - CrossPlatform Clients/VCLClient.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/27 - CrossPlatform Clients/VCLMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/27 - CrossPlatform Clients/VCLMain.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/27 - CrossPlatform Clients/VCLMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/27 - CrossPlatform Clients/VCLMain.pas -------------------------------------------------------------------------------- /SQLite3/Samples/27 - CrossPlatform Clients/mORMotClient.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/27 - CrossPlatform Clients/mORMotClient.pas -------------------------------------------------------------------------------- /SQLite3/Samples/28 - Simple RESTful ORM Server/RESTModel.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/28 - Simple RESTful ORM Server/RESTModel.pas -------------------------------------------------------------------------------- /SQLite3/Samples/28 - Simple RESTful ORM Server/RESTclient.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/28 - Simple RESTful ORM Server/RESTclient.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/28 - Simple RESTful ORM Server/RESTserver.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/28 - Simple RESTful ORM Server/RESTserver.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/29 - SmartMobileStudio Client/LoginForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/29 - SmartMobileStudio Client/LoginForm.pas -------------------------------------------------------------------------------- /SQLite3/Samples/29 - SmartMobileStudio Client/LoginForm.sfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/29 - SmartMobileStudio Client/LoginForm.sfm -------------------------------------------------------------------------------- /SQLite3/Samples/29 - SmartMobileStudio Client/MainUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/29 - SmartMobileStudio Client/MainUnit.pas -------------------------------------------------------------------------------- /SQLite3/Samples/29 - SmartMobileStudio Client/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/29 - SmartMobileStudio Client/ReadMe.md -------------------------------------------------------------------------------- /SQLite3/Samples/29 - SmartMobileStudio Client/SmartTests.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/29 - SmartMobileStudio Client/SmartTests.pas -------------------------------------------------------------------------------- /SQLite3/Samples/29 - SmartMobileStudio Client/WebForm.sproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/29 - SmartMobileStudio Client/WebForm.sproj -------------------------------------------------------------------------------- /SQLite3/Samples/29 - SmartMobileStudio Client/mORMotClient.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/29 - SmartMobileStudio Client/mORMotClient.pas -------------------------------------------------------------------------------- /SQLite3/Samples/30 - MVC Server/MVCModel.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/30 - MVC Server/MVCModel.pas -------------------------------------------------------------------------------- /SQLite3/Samples/30 - MVC Server/MVCServer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/30 - MVC Server/MVCServer.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/30 - MVC Server/MVCServerFirebird.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/30 - MVC Server/MVCServerFirebird.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/30 - MVC Server/MVCServerMongoDB.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/30 - MVC Server/MVCServerMongoDB.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/30 - MVC Server/MVCServerPostgreSQL.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/30 - MVC Server/MVCServerPostgreSQL.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/30 - MVC Server/MVCViewModel.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/30 - MVC Server/MVCViewModel.pas -------------------------------------------------------------------------------- /SQLite3/Samples/30 - MVC Server/Views/.static/blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/30 - MVC Server/Views/.static/blog.css -------------------------------------------------------------------------------- /SQLite3/Samples/30 - MVC Server/Views/.static/blog.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/30 - MVC Server/Views/.static/blog.ico -------------------------------------------------------------------------------- /SQLite3/Samples/30 - MVC Server/Views/ArticleEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/30 - MVC Server/Views/ArticleEdit.html -------------------------------------------------------------------------------- /SQLite3/Samples/30 - MVC Server/Views/ArticleView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/30 - MVC Server/Views/ArticleView.html -------------------------------------------------------------------------------- /SQLite3/Samples/30 - MVC Server/Views/AuthorView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/30 - MVC Server/Views/AuthorView.html -------------------------------------------------------------------------------- /SQLite3/Samples/30 - MVC Server/Views/Default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/30 - MVC Server/Views/Default.html -------------------------------------------------------------------------------- /SQLite3/Samples/30 - MVC Server/Views/Error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/30 - MVC Server/Views/Error.html -------------------------------------------------------------------------------- /SQLite3/Samples/30 - MVC Server/Views/articlerow.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/30 - MVC Server/Views/articlerow.partial -------------------------------------------------------------------------------- /SQLite3/Samples/30 - MVC Server/Views/footer.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/30 - MVC Server/Views/footer.partial -------------------------------------------------------------------------------- /SQLite3/Samples/30 - MVC Server/Views/header.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/30 - MVC Server/Views/header.partial -------------------------------------------------------------------------------- /SQLite3/Samples/30 - MVC Server/Views/masthead.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/30 - MVC Server/Views/masthead.partial -------------------------------------------------------------------------------- /SQLite3/Samples/31 - WebSockets/Project31ChatCallbackInterface.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/31 - WebSockets/Project31ChatCallbackInterface.pas -------------------------------------------------------------------------------- /SQLite3/Samples/31 - WebSockets/Project31ChatClient.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/31 - WebSockets/Project31ChatClient.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/31 - WebSockets/Project31ChatServer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/31 - WebSockets/Project31ChatServer.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/31 - WebSockets/Project31LongWorkClient.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/31 - WebSockets/Project31LongWorkClient.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/31 - WebSockets/Project31LongWorkServer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/31 - WebSockets/Project31LongWorkServer.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/31 - WebSockets/Project31SimpleEchoServer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/31 - WebSockets/Project31SimpleEchoServer.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/31 - WebSockets/Project31SimpleEchoServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/31 - WebSockets/Project31SimpleEchoServer.html -------------------------------------------------------------------------------- /SQLite3/Samples/31 - WebSockets/Project31WinHTTPEchoServer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/31 - WebSockets/Project31WinHTTPEchoServer.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/31 - WebSockets/Project31WinHTTPEchoServer.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/31 - WebSockets/Project31WinHTTPEchoServer.lpi -------------------------------------------------------------------------------- /SQLite3/Samples/33 - ECC/ECC.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/33 - ECC/ECC.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/33 - ECC/ECC.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/33 - ECC/ECC.ico -------------------------------------------------------------------------------- /SQLite3/Samples/33 - ECC/ECC.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/33 - ECC/ECC.lpi -------------------------------------------------------------------------------- /SQLite3/Samples/33 - ECC/ECC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/33 - ECC/ECC.res -------------------------------------------------------------------------------- /SQLite3/Samples/33 - ECC/ECCProcess.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/33 - ECC/ECCProcess.pas -------------------------------------------------------------------------------- /SQLite3/Samples/34 - Socket Polling/Project34RTSPproxy.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/34 - Socket Polling/Project34RTSPproxy.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/01/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/01/ReadMe.md -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/01/dom/DomConferenceDepend.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/01/dom/DomConferenceDepend.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/01/dom/DomConferenceTest.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/01/dom/DomConferenceTest.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/01/dom/DomConferenceTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/01/dom/DomConferenceTypes.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/01/serv/ServBook.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/01/serv/ServBook.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/01/serv/ServBookMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/01/serv/ServBookMain.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/01/serv/ServBookTest.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/01/serv/ServBookTest.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/01/test/TestAll.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/01/test/TestAll.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/01/test/TestAllMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/01/test/TestAllMain.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/02/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/02/ReadMe.md -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/02/dom/DomConferenceDepend.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/02/dom/DomConferenceDepend.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/02/dom/DomConferenceTest.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/02/dom/DomConferenceTest.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/02/dom/DomConferenceTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/02/dom/DomConferenceTypes.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/02/serv/ServBook.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/02/serv/ServBook.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/02/serv/ServBookMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/02/serv/ServBookMain.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/02/serv/ServBookTest.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/02/serv/ServBookTest.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/02/test/TestAll.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/02/test/TestAll.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/02/test/TestAllMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/02/test/TestAllMain.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/03/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/03/ReadMe.md -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/03/dom/DomConferenceDepend.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/03/dom/DomConferenceDepend.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/03/dom/DomConferenceTest.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/03/dom/DomConferenceTest.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/03/dom/DomConferenceTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/03/dom/DomConferenceTypes.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/03/serv/ServBook.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/03/serv/ServBook.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/03/serv/ServBookMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/03/serv/ServBookMain.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/03/serv/ServBookTest.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/03/serv/ServBookTest.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/03/test/TestAll.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/03/test/TestAll.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/03/test/TestAllMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/03/test/TestAllMain.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/04/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/04/ReadMe.md -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/04/dom/DomConferenceDepend.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/04/dom/DomConferenceDepend.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/04/dom/DomConferenceTest.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/04/dom/DomConferenceTest.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/04/dom/DomConferenceTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/04/dom/DomConferenceTypes.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/04/serv/ServBook.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/04/serv/ServBook.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/04/serv/ServBookMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/04/serv/ServBookMain.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/04/serv/ServBookTest.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/04/serv/ServBookTest.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/04/test/TestAll.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/04/test/TestAll.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/04/test/TestAllMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/04/test/TestAllMain.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/05/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/05/ReadMe.md -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/05/dom/DomConferenceDepend.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/05/dom/DomConferenceDepend.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/05/dom/DomConferenceTest.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/05/dom/DomConferenceTest.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/05/dom/DomConferenceTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/05/dom/DomConferenceTypes.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/05/serv/ServBook.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/05/serv/ServBook.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/05/serv/ServBook.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/05/serv/ServBook.dproj -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/05/serv/ServBookMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/05/serv/ServBookMain.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/05/serv/ServBookTest.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/05/serv/ServBookTest.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/05/test/TestAll.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/05/test/TestAll.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/05/test/TestAll.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/05/test/TestAll.dproj -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/05/test/TestAllMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/05/test/TestAllMain.pas -------------------------------------------------------------------------------- /SQLite3/Samples/35 - Practical DDD/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/35 - Practical DDD/ReadMe.md -------------------------------------------------------------------------------- /SQLite3/Samples/36 - Simple REST Benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/36 - Simple REST Benchmark/README.md -------------------------------------------------------------------------------- /SQLite3/Samples/36 - Simple REST Benchmark/RESTBenchmark.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/36 - Simple REST Benchmark/RESTBenchmark.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/36 - Simple REST Benchmark/RESTBenchmark.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/36 - Simple REST Benchmark/RESTBenchmark.lpi -------------------------------------------------------------------------------- /SQLite3/Samples/36 - Simple REST Benchmark/RESTModel.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/36 - Simple REST Benchmark/RESTModel.pas -------------------------------------------------------------------------------- /SQLite3/Samples/36 - Simple REST Benchmark/installSystemSocket.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/36 - Simple REST Benchmark/installSystemSocket.sh -------------------------------------------------------------------------------- /SQLite3/Samples/36 - Simple REST Benchmark/mormot-rest-nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/36 - Simple REST Benchmark/mormot-rest-nginx.conf -------------------------------------------------------------------------------- /SQLite3/Samples/36 - Simple REST Benchmark/rest_benchmark.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/36 - Simple REST Benchmark/rest_benchmark.service -------------------------------------------------------------------------------- /SQLite3/Samples/36 - Simple REST Benchmark/rest_benchmark.socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/36 - Simple REST Benchmark/rest_benchmark.socket -------------------------------------------------------------------------------- /SQLite3/Samples/37 - FishShop Service/FishShopDaemon.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/37 - FishShop Service/FishShopDaemon.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/37 - FishShop Service/FishShopDaemon.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/37 - FishShop Service/FishShopDaemon.lpi -------------------------------------------------------------------------------- /SQLite3/Samples/37 - FishShop Service/ServFishShopMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/37 - FishShop Service/ServFishShopMain.pas -------------------------------------------------------------------------------- /SQLite3/Samples/37 - FishShop Service/ServFishShopTests.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/37 - FishShop Service/ServFishShopTests.pas -------------------------------------------------------------------------------- /SQLite3/Samples/37 - FishShop Service/ServFishShopTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/37 - FishShop Service/ServFishShopTypes.pas -------------------------------------------------------------------------------- /SQLite3/Samples/37 - FishShop Service/TestFishShop.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/37 - FishShop Service/TestFishShop.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/37 - FishShop Service/TestFishShop.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/37 - FishShop Service/TestFishShop.lpi -------------------------------------------------------------------------------- /SQLite3/Samples/MainDemo/BannerData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/MainDemo/BannerData.png -------------------------------------------------------------------------------- /SQLite3/Samples/MainDemo/BannerSafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/MainDemo/BannerSafe.png -------------------------------------------------------------------------------- /SQLite3/Samples/MainDemo/FileClient.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/MainDemo/FileClient.pas -------------------------------------------------------------------------------- /SQLite3/Samples/MainDemo/FileEdit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/MainDemo/FileEdit.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/MainDemo/FileEdit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/MainDemo/FileEdit.pas -------------------------------------------------------------------------------- /SQLite3/Samples/MainDemo/FileMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/MainDemo/FileMain.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/MainDemo/FileMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/MainDemo/FileMain.pas -------------------------------------------------------------------------------- /SQLite3/Samples/MainDemo/FileMain.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/MainDemo/FileMain.rc -------------------------------------------------------------------------------- /SQLite3/Samples/MainDemo/FileMain.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/MainDemo/FileMain.zip -------------------------------------------------------------------------------- /SQLite3/Samples/MainDemo/FileMainRes.bat: -------------------------------------------------------------------------------- 1 | brcc32 FileMain.rc 2 | rem pause -------------------------------------------------------------------------------- /SQLite3/Samples/MainDemo/FileServer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/MainDemo/FileServer.pas -------------------------------------------------------------------------------- /SQLite3/Samples/MainDemo/FileTables.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/MainDemo/FileTables.pas -------------------------------------------------------------------------------- /SQLite3/Samples/MainDemo/SynFile.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/MainDemo/SynFile.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/MainDemo/SynFile.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/MainDemo/SynFile.res -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/Alfred/mORMot4Android/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/Alfred/mORMot4Android/ReadMe.md -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/Alfred/mORMot4Android/bin/--hereWillBeTheAppBuilt--: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/Alfred/mORMot4Android/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/Alfred/mORMot4Android/build.bat -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/Alfred/mORMot4Android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/Alfred/mORMot4Android/build.xml -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/Alfred/mORMot4Android/gen/R.java.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/Alfred/mORMot4Android/gen/R.java.d -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/Alfred/mORMot4Android/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/Alfred/mORMot4Android/install.bat -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/Alfred/mORMot4Android/jni/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/Alfred/mORMot4Android/jni/main.pas -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/Alfred/mORMot4Android/jni/main.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/Alfred/mORMot4Android/jni/main.res -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/Alfred/mORMot4Android/libs/armeabi-v7a/--hereWillBeTheLibBuilt--: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/Alfred/mORMot4Android/mORMot/--putmORMotSourceHere--: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/Alfred/mORMot4Android/src/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/Alfred/mORMot4Android/src/App.java -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/AntonE/CSV2ORM/CSV2ORM.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/AntonE/CSV2ORM/CSV2ORM.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/AntonE/CSV2ORM/Device.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/AntonE/CSV2ORM/Device.csv -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/AntonE/CSV2ORM/MAinFormU.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/AntonE/CSV2ORM/MAinFormU.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/AntonE/CSV2ORM/MAinFormU.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/AntonE/CSV2ORM/MAinFormU.pas -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/AntonE/CSV2ORM/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/AntonE/CSV2ORM/ReadMe.md -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/AntonE/CSV2ORM/Templates.cds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/AntonE/CSV2ORM/Templates.cds -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/AntonE/ORMCDS/DataModU.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/AntonE/ORMCDS/DataModU.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/AntonE/ORMCDS/MAinFormU.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/AntonE/ORMCDS/MAinFormU.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/AntonE/ORMCDS/MAinFormU.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/AntonE/ORMCDS/MAinFormU.pas -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/AntonE/ORMCDS/ORMCDS.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/AntonE/ORMCDS/ORMCDS.pas -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/AntonE/ORMCDS/ORMCDS_Test.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/AntonE/ORMCDS/ORMCDS_Test.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/AntonE/ORMCDS/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/AntonE/ORMCDS/ReadMe.md -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/AntonE/ORMCDS/SampleForm1U.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/AntonE/ORMCDS/SampleForm1U.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/AntonE/ORMCDS/SampleForm1U.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/AntonE/ORMCDS/SampleForm1U.pas -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/AntonE/ORMCDS/SampleForm2U.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/AntonE/ORMCDS/SampleForm2U.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/AntonE/ORMCDS/SampleForm2U.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/AntonE/ORMCDS/SampleForm2U.pas -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/Chaa/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/Chaa/ReadMe.md -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/Chaa/WindowsAuth.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/Chaa/WindowsAuth.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/ChinaPeng/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/ChinaPeng/ReadMe.md -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/ChinaPeng/clientcode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/ChinaPeng/clientcode.java -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/DigDiver/AngularJS/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/DigDiver/AngularJS/ReadMe.md -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/DigDiver/AngularJS/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/DigDiver/AngularJS/index.html -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/DigDiver/AngularJS/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/DigDiver/AngularJS/js/app.js -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/DigDiver/AngularJS/js/em-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/DigDiver/AngularJS/js/em-utils.js -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/DigDiver/AngularJS/js/syn-auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/DigDiver/AngularJS/js/syn-auth.js -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/EMartin/TSynRestDataset/Demo.bpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/EMartin/TSynRestDataset/Demo.bpg -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/George/REST-tester/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/George/REST-tester/README.md -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/KroKodil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/KroKodil/README.md -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/KroKodil/moRMOt.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/KroKodil/moRMOt.iml -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/KroKodil/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/KroKodil/pom.xml -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/KroKodil/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/KroKodil/server.png -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/KroKodil/src/delphi/Client.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/KroKodil/src/delphi/Client.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/KroKodil/src/delphi/Client.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/KroKodil/src/delphi/Client.res -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/KroKodil/src/delphi/REST.bpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/KroKodil/src/delphi/REST.bpg -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/KroKodil/src/delphi/Server.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/KroKodil/src/delphi/Server.dpr -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/KroKodil/src/delphi/Server.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/KroKodil/src/delphi/Server.res -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/KroKodil/src/delphi/ssl/ssl.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/KroKodil/src/delphi/ssl/ssl.bat -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/ReadMe.md -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/WarleyAlex/MongoProj/Form2.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/WarleyAlex/MongoProj/Form2.dfm -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/WarleyAlex/MongoProj/Form2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/WarleyAlex/MongoProj/Form2.pas -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/WarleyAlex/MongoProj/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/WarleyAlex/MongoProj/ReadMe.md -------------------------------------------------------------------------------- /SQLite3/Samples/ThirdPartyDemos/WarleyAlex/MongoProj/btn.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/Samples/ThirdPartyDemos/WarleyAlex/MongoProj/btn.RES -------------------------------------------------------------------------------- /SQLite3/ServiceTestForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/ServiceTestForm.dfm -------------------------------------------------------------------------------- /SQLite3/ServiceTestForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/ServiceTestForm.pas -------------------------------------------------------------------------------- /SQLite3/ServiceTestSQL3.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/ServiceTestSQL3.dpr -------------------------------------------------------------------------------- /SQLite3/ServiceTestSQL3.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/ServiceTestSQL3.res -------------------------------------------------------------------------------- /SQLite3/TestOleDB.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/TestOleDB.dpr -------------------------------------------------------------------------------- /SQLite3/TestSQL3.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/TestSQL3.dpr -------------------------------------------------------------------------------- /SQLite3/TestSQL3.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/TestSQL3.lpi -------------------------------------------------------------------------------- /SQLite3/TestSQL3.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/TestSQL3.res -------------------------------------------------------------------------------- /SQLite3/TestSQL3FPCInterfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/TestSQL3FPCInterfaces.pas -------------------------------------------------------------------------------- /SQLite3/TestSQL3Register.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/TestSQL3Register.dpr -------------------------------------------------------------------------------- /SQLite3/amalgamation/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/ReadMe.md -------------------------------------------------------------------------------- /SQLite3/amalgamation/android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/android/jni/Android.mk -------------------------------------------------------------------------------- /SQLite3/amalgamation/android/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/android/jni/Application.mk -------------------------------------------------------------------------------- /SQLite3/amalgamation/android/jni/ApplicationWin32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/android/jni/ApplicationWin32.mk -------------------------------------------------------------------------------- /SQLite3/amalgamation/android/ndk-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/android/ndk-linux.sh -------------------------------------------------------------------------------- /SQLite3/amalgamation/android/ndk-windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/android/ndk-windows.bat -------------------------------------------------------------------------------- /SQLite3/amalgamation/ciphers/cipher_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/ciphers/cipher_common.c -------------------------------------------------------------------------------- /SQLite3/amalgamation/ciphers/cipher_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/ciphers/cipher_common.h -------------------------------------------------------------------------------- /SQLite3/amalgamation/codecext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/codecext.c -------------------------------------------------------------------------------- /SQLite3/amalgamation/compile-delphi-win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/compile-delphi-win32.bat -------------------------------------------------------------------------------- /SQLite3/amalgamation/compile-delphi-win64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/compile-delphi-win64.bat -------------------------------------------------------------------------------- /SQLite3/amalgamation/compile-fpc-aarch64-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/compile-fpc-aarch64-android.sh -------------------------------------------------------------------------------- /SQLite3/amalgamation/compile-fpc-aarch64-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/compile-fpc-aarch64-linux.sh -------------------------------------------------------------------------------- /SQLite3/amalgamation/compile-fpc-arm-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/compile-fpc-arm-android.sh -------------------------------------------------------------------------------- /SQLite3/amalgamation/compile-fpc-arm-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/compile-fpc-arm-linux.sh -------------------------------------------------------------------------------- /SQLite3/amalgamation/compile-fpc-i386-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/compile-fpc-i386-android.sh -------------------------------------------------------------------------------- /SQLite3/amalgamation/compile-fpc-i386-darwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/compile-fpc-i386-darwin.sh -------------------------------------------------------------------------------- /SQLite3/amalgamation/compile-fpc-i386-freebsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/compile-fpc-i386-freebsd.sh -------------------------------------------------------------------------------- /SQLite3/amalgamation/compile-fpc-i386-linux.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/compile-fpc-i386-linux.bat -------------------------------------------------------------------------------- /SQLite3/amalgamation/compile-fpc-i386-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/compile-fpc-i386-linux.sh -------------------------------------------------------------------------------- /SQLite3/amalgamation/compile-fpc-i386-openbsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/compile-fpc-i386-openbsd.sh -------------------------------------------------------------------------------- /SQLite3/amalgamation/compile-fpc-i386-win32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/compile-fpc-i386-win32.sh -------------------------------------------------------------------------------- /SQLite3/amalgamation/compile-fpc-x86_64-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/compile-fpc-x86_64-android.sh -------------------------------------------------------------------------------- /SQLite3/amalgamation/compile-fpc-x86_64-darwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/compile-fpc-x86_64-darwin.sh -------------------------------------------------------------------------------- /SQLite3/amalgamation/compile-fpc-x86_64-freebsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/compile-fpc-x86_64-freebsd.sh -------------------------------------------------------------------------------- /SQLite3/amalgamation/compile-fpc-x86_64-linux.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/compile-fpc-x86_64-linux.bat -------------------------------------------------------------------------------- /SQLite3/amalgamation/compile-fpc-x86_64-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/compile-fpc-x86_64-linux.sh -------------------------------------------------------------------------------- /SQLite3/amalgamation/compile-fpc-x86_64-openbsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/compile-fpc-x86_64-openbsd.sh -------------------------------------------------------------------------------- /SQLite3/amalgamation/compile-fpc-x86_64-win64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/compile-fpc-x86_64-win64.sh -------------------------------------------------------------------------------- /SQLite3/amalgamation/patch-and-compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/patch-and-compile.sh -------------------------------------------------------------------------------- /SQLite3/amalgamation/patchsqlite3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/patchsqlite3.sh -------------------------------------------------------------------------------- /SQLite3/amalgamation/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/regexp.c -------------------------------------------------------------------------------- /SQLite3/amalgamation/sqlite3mc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/sqlite3mc.c -------------------------------------------------------------------------------- /SQLite3/amalgamation/sqlite3mc_vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/sqlite3mc_vfs.c -------------------------------------------------------------------------------- /SQLite3/amalgamation/sqlite3mc_vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/amalgamation/sqlite3mc_vfs.h -------------------------------------------------------------------------------- /SQLite3/build-fpc-linux64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/build-fpc-linux64.sh -------------------------------------------------------------------------------- /SQLite3/c-fpc64gcclin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/c-fpc64gcclin.sh -------------------------------------------------------------------------------- /SQLite3/c-fpcgcclin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/c-fpcgcclin.sh -------------------------------------------------------------------------------- /SQLite3/mORMot.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMot.pas -------------------------------------------------------------------------------- /SQLite3/mORMotBigTable.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotBigTable.pas -------------------------------------------------------------------------------- /SQLite3/mORMotDB.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotDB.pas -------------------------------------------------------------------------------- /SQLite3/mORMotDDD.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotDDD.pas -------------------------------------------------------------------------------- /SQLite3/mORMotFastCgiServer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotFastCgiServer.pas -------------------------------------------------------------------------------- /SQLite3/mORMotHttpClient.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotHttpClient.pas -------------------------------------------------------------------------------- /SQLite3/mORMotHttpServer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotHttpServer.pas -------------------------------------------------------------------------------- /SQLite3/mORMotMVC.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotMVC.pas -------------------------------------------------------------------------------- /SQLite3/mORMotMidasVCL.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotMidasVCL.pas -------------------------------------------------------------------------------- /SQLite3/mORMotMongoDB.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotMongoDB.pas -------------------------------------------------------------------------------- /SQLite3/mORMotReport.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotReport.pas -------------------------------------------------------------------------------- /SQLite3/mORMotSQLite3.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotSQLite3.pas -------------------------------------------------------------------------------- /SQLite3/mORMotSelfTests.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotSelfTests.pas -------------------------------------------------------------------------------- /SQLite3/mORMotService.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotService.pas -------------------------------------------------------------------------------- /SQLite3/mORMotToolBar.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotToolBar.pas -------------------------------------------------------------------------------- /SQLite3/mORMotUI.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotUI.pas -------------------------------------------------------------------------------- /SQLite3/mORMotUIEdit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotUIEdit.dfm -------------------------------------------------------------------------------- /SQLite3/mORMotUIEdit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotUIEdit.pas -------------------------------------------------------------------------------- /SQLite3/mORMotUILogin.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotUILogin.dfm -------------------------------------------------------------------------------- /SQLite3/mORMotUILogin.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotUILogin.pas -------------------------------------------------------------------------------- /SQLite3/mORMotUIOptions.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotUIOptions.dfm -------------------------------------------------------------------------------- /SQLite3/mORMotUIOptions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotUIOptions.pas -------------------------------------------------------------------------------- /SQLite3/mORMotUIQuery.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotUIQuery.dfm -------------------------------------------------------------------------------- /SQLite3/mORMotUIQuery.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotUIQuery.pas -------------------------------------------------------------------------------- /SQLite3/mORMotVCL.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotVCL.pas -------------------------------------------------------------------------------- /SQLite3/mORMotWrappers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMotWrappers.pas -------------------------------------------------------------------------------- /SQLite3/mORMoti18n.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/mORMoti18n.pas -------------------------------------------------------------------------------- /SQLite3/sqlite3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/sqlite3.o -------------------------------------------------------------------------------- /SQLite3/sqlite3.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SQLite3/sqlite3.obj -------------------------------------------------------------------------------- /SyNode/.gitignore: -------------------------------------------------------------------------------- 1 | .resources/ 2 | tools/core_res -------------------------------------------------------------------------------- /SyNode/NSPRAPI.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/NSPRAPI.pas -------------------------------------------------------------------------------- /SyNode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/README.md -------------------------------------------------------------------------------- /SyNode/Samples/01 - Dll Modules/math-module/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/Samples/01 - Dll Modules/math-module/package.json -------------------------------------------------------------------------------- /SyNode/Samples/01 - Dll Modules/math-module/src/mathModule.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/Samples/01 - Dll Modules/math-module/src/mathModule.dpr -------------------------------------------------------------------------------- /SyNode/Samples/01 - Dll Modules/math-module/src/mathModule.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/Samples/01 - Dll Modules/math-module/src/mathModule.res -------------------------------------------------------------------------------- /SyNode/Samples/01 - Dll Modules/math-module/src/uMathModule.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/Samples/01 - Dll Modules/math-module/src/uMathModule.pas -------------------------------------------------------------------------------- /SyNode/Samples/02 - Bindings/.gitignore: -------------------------------------------------------------------------------- 1 | lib/ -------------------------------------------------------------------------------- /SyNode/Samples/02 - Bindings/ExtendDebuggerConsole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/Samples/02 - Bindings/ExtendDebuggerConsole.js -------------------------------------------------------------------------------- /SyNode/Samples/02 - Bindings/SpiderMonkey45Binding.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/Samples/02 - Bindings/SpiderMonkey45Binding.dpr -------------------------------------------------------------------------------- /SyNode/Samples/02 - Bindings/SpiderMonkey45Binding.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/Samples/02 - Bindings/SpiderMonkey45Binding.dproj -------------------------------------------------------------------------------- /SyNode/Samples/02 - Bindings/SpiderMonkey45Binding.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/Samples/02 - Bindings/SpiderMonkey45Binding.lpi -------------------------------------------------------------------------------- /SyNode/Samples/02 - Bindings/SpiderMonkey45Binding.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/Samples/02 - Bindings/SpiderMonkey45Binding.lpr -------------------------------------------------------------------------------- /SyNode/Samples/02 - Bindings/SpiderMonkey45Binding.otares: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/Samples/02 - Bindings/SpiderMonkey45Binding.otares -------------------------------------------------------------------------------- /SyNode/Samples/02 - Bindings/SpiderMonkey45Binding.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/Samples/02 - Bindings/SpiderMonkey45Binding.res -------------------------------------------------------------------------------- /SyNode/Samples/02 - Bindings/SpiderMonkey45Binding_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/Samples/02 - Bindings/SpiderMonkey45Binding_Icon.ico -------------------------------------------------------------------------------- /SyNode/Samples/02 - Bindings/SpiderMonkey45Binding_Icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/Samples/02 - Bindings/SpiderMonkey45Binding_Icon1.ico -------------------------------------------------------------------------------- /SyNode/Samples/02 - Bindings/ufrmSM45Demo.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/Samples/02 - Bindings/ufrmSM45Demo.dfm -------------------------------------------------------------------------------- /SyNode/Samples/02 - Bindings/ufrmSM45Demo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/Samples/02 - Bindings/ufrmSM45Demo.pas -------------------------------------------------------------------------------- /SyNode/Samples/03 - HelloSpiderMonkey52/HelloSpiderMonkey52.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/Samples/03 - HelloSpiderMonkey52/HelloSpiderMonkey52.dpr -------------------------------------------------------------------------------- /SyNode/Samples/03 - HelloSpiderMonkey52/HelloSpiderMonkey52.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/Samples/03 - HelloSpiderMonkey52/HelloSpiderMonkey52.lpi -------------------------------------------------------------------------------- /SyNode/Samples/03 - HelloSpiderMonkey52/HelloSpiderMonkey52.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/Samples/03 - HelloSpiderMonkey52/HelloSpiderMonkey52.lpr -------------------------------------------------------------------------------- /SyNode/Samples/AllSamples.bpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/Samples/AllSamples.bpg -------------------------------------------------------------------------------- /SyNode/SpiderMonkey.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/SpiderMonkey.pas -------------------------------------------------------------------------------- /SyNode/SyNode.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/SyNode.inc -------------------------------------------------------------------------------- /SyNode/SyNode.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/SyNode.pas -------------------------------------------------------------------------------- /SyNode/SyNodeBinding_HTTPClient.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/SyNodeBinding_HTTPClient.pas -------------------------------------------------------------------------------- /SyNode/SyNodeBinding_buffer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/SyNodeBinding_buffer.pas -------------------------------------------------------------------------------- /SyNode/SyNodeBinding_const.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/SyNodeBinding_const.pas -------------------------------------------------------------------------------- /SyNode/SyNodeBinding_fs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/SyNodeBinding_fs.pas -------------------------------------------------------------------------------- /SyNode/SyNodeBinding_util.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/SyNodeBinding_util.pas -------------------------------------------------------------------------------- /SyNode/SyNodeBinding_uv.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/SyNodeBinding_uv.pas -------------------------------------------------------------------------------- /SyNode/SyNodeBinding_worker.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/SyNodeBinding_worker.pas -------------------------------------------------------------------------------- /SyNode/SyNodeNewProto.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/SyNodeNewProto.pas -------------------------------------------------------------------------------- /SyNode/SyNodePluginIntf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/SyNodePluginIntf.pas -------------------------------------------------------------------------------- /SyNode/SyNodeProto.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/SyNodeProto.pas -------------------------------------------------------------------------------- /SyNode/SyNodeReadWrite.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/SyNodeReadWrite.pas -------------------------------------------------------------------------------- /SyNode/SyNodeRemoteDebugger.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/SyNodeRemoteDebugger.pas -------------------------------------------------------------------------------- /SyNode/SyNodeSimpleProto.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/SyNodeSimpleProto.pas -------------------------------------------------------------------------------- /SyNode/_SynodePluginTemplate.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/_SynodePluginTemplate.dpr -------------------------------------------------------------------------------- /SyNode/build_res.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/build_res.sh -------------------------------------------------------------------------------- /SyNode/core_modules.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules.res -------------------------------------------------------------------------------- /SyNode/core_modules/DevTools/Debugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/DevTools/Debugger.js -------------------------------------------------------------------------------- /SyNode/core_modules/DevTools/DevToolsUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/DevTools/DevToolsUtils.js -------------------------------------------------------------------------------- /SyNode/core_modules/DevTools/ObjectActorPreviewers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/DevTools/ObjectActorPreviewers.js -------------------------------------------------------------------------------- /SyNode/core_modules/DevTools/js-property-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/DevTools/js-property-provider.js -------------------------------------------------------------------------------- /SyNode/core_modules/DevTools/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/DevTools/stringify.js -------------------------------------------------------------------------------- /SyNode/core_modules/ModuleLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/ModuleLoader.js -------------------------------------------------------------------------------- /SyNode/core_modules/core_modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/core_modules -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/_stream_duplex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/_stream_duplex.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/_stream_passthrough.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/_stream_passthrough.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/_stream_readable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/_stream_readable.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/_stream_transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/_stream_transform.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/_stream_writable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/_stream_writable.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/assert.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/buffer.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/child_process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/child_process.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/console.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/crypto.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/dns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/dns.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/events.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/fs.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/http.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/https.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/https.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/internal/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/internal/errors.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/internal/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/internal/fs.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/internal/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/internal/module.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/internal/net.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/internal/net.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/internal/process/stdio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/internal/process/stdio.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/internal/querystring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/internal/querystring.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/internal/streams/BufferList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/internal/streams/BufferList.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/internal/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/internal/util.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/module.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/net.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/net.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/os.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/os.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/path.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/polyfill/WindowTimer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/polyfill/WindowTimer.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/punycode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/punycode.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/querystring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/querystring.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/stream.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/string_decoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/string_decoder.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/timers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/timers.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/tty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/tty.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/url.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/util.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/vm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/node_modules/vm.js -------------------------------------------------------------------------------- /SyNode/core_modules/node_modules/zlib.js: -------------------------------------------------------------------------------- 1 | // fake zlib -------------------------------------------------------------------------------- /SyNode/core_modules/synode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/core_modules/synode.js -------------------------------------------------------------------------------- /SyNode/modules_cjs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/modules_cjs.txt -------------------------------------------------------------------------------- /SyNode/modules_es6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/modules_es6.txt -------------------------------------------------------------------------------- /SyNode/mozjs/BuildInstruction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/mozjs/BuildInstruction.md -------------------------------------------------------------------------------- /SyNode/mozjs/BuildInstructionSM52-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/mozjs/BuildInstructionSM52-linux.md -------------------------------------------------------------------------------- /SyNode/mozjs/BuildInstructionSM52.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/mozjs/BuildInstructionSM52.md -------------------------------------------------------------------------------- /SyNode/mozjs/Delphi patch 52.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/mozjs/Delphi patch 52.patch -------------------------------------------------------------------------------- /SyNode/mozjs/esr52-git.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/mozjs/esr52-git.patch -------------------------------------------------------------------------------- /SyNode/synodebinding_os.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/synodebinding_os.pas -------------------------------------------------------------------------------- /SyNode/tools/core_res.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/tools/core_res.lpi -------------------------------------------------------------------------------- /SyNode/tools/core_res.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SyNode/tools/core_res.lpr -------------------------------------------------------------------------------- /SynBidirSock.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynBidirSock.pas -------------------------------------------------------------------------------- /SynBigTable.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynBigTable.pas -------------------------------------------------------------------------------- /SynBz.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynBz.pas -------------------------------------------------------------------------------- /SynBzPas.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynBzPas.pas -------------------------------------------------------------------------------- /SynCommons.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynCommons.pas -------------------------------------------------------------------------------- /SynCrtSock.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynCrtSock.pas -------------------------------------------------------------------------------- /SynCrypto.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynCrypto.pas -------------------------------------------------------------------------------- /SynCurl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynCurl.pas -------------------------------------------------------------------------------- /SynDB.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynDB.pas -------------------------------------------------------------------------------- /SynDBDataset.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynDBDataset.pas -------------------------------------------------------------------------------- /SynDBDataset/SynDBBDE.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynDBDataset/SynDBBDE.pas -------------------------------------------------------------------------------- /SynDBDataset/SynDBFireDAC.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynDBDataset/SynDBFireDAC.pas -------------------------------------------------------------------------------- /SynDBDataset/SynDBNexusDB.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynDBDataset/SynDBNexusDB.pas -------------------------------------------------------------------------------- /SynDBDataset/SynDBUniDAC.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynDBDataset/SynDBUniDAC.pas -------------------------------------------------------------------------------- /SynDBFirebird.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynDBFirebird.pas -------------------------------------------------------------------------------- /SynDBMidasVCL.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynDBMidasVCL.pas -------------------------------------------------------------------------------- /SynDBODBC.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynDBODBC.pas -------------------------------------------------------------------------------- /SynDBOracle.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynDBOracle.pas -------------------------------------------------------------------------------- /SynDBPostgres.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynDBPostgres.pas -------------------------------------------------------------------------------- /SynDBRemote.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynDBRemote.pas -------------------------------------------------------------------------------- /SynDBSQLite3.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynDBSQLite3.pas -------------------------------------------------------------------------------- /SynDBVCL.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynDBVCL.pas -------------------------------------------------------------------------------- /SynDBZeos.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynDBZeos.pas -------------------------------------------------------------------------------- /SynDoubleToText.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynDoubleToText.inc -------------------------------------------------------------------------------- /SynDprUses.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynDprUses.inc -------------------------------------------------------------------------------- /SynEcc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynEcc.pas -------------------------------------------------------------------------------- /SynEcc32O2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynEcc32O2.obj -------------------------------------------------------------------------------- /SynEcc32asm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynEcc32asm.inc -------------------------------------------------------------------------------- /SynEcc64O2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynEcc64O2.o -------------------------------------------------------------------------------- /SynFPCCMemAligned.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynFPCCMemAligned.pas -------------------------------------------------------------------------------- /SynFPCLinux.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynFPCLinux.pas -------------------------------------------------------------------------------- /SynFPCMetaFile.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynFPCMetaFile.pas -------------------------------------------------------------------------------- /SynFPCSock.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynFPCSock.pas -------------------------------------------------------------------------------- /SynFPCSockLIBC.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynFPCSockLIBC.inc -------------------------------------------------------------------------------- /SynFPCTypInfo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynFPCTypInfo.pas -------------------------------------------------------------------------------- /SynFPCx64MM.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynFPCx64MM.pas -------------------------------------------------------------------------------- /SynFastWideString.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynFastWideString.pas -------------------------------------------------------------------------------- /SynGSSAPI.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynGSSAPI.pas -------------------------------------------------------------------------------- /SynGSSAPIAuth.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynGSSAPIAuth.pas -------------------------------------------------------------------------------- /SynGdiPlus.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynGdiPlus.pas -------------------------------------------------------------------------------- /SynKylix.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynKylix.pas -------------------------------------------------------------------------------- /SynLZ.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynLZ.pas -------------------------------------------------------------------------------- /SynLZO.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynLZO.pas -------------------------------------------------------------------------------- /SynLizard.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynLizard.pas -------------------------------------------------------------------------------- /SynLog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynLog.pas -------------------------------------------------------------------------------- /SynMemoEx.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynMemoEx.pas -------------------------------------------------------------------------------- /SynMongoDB.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynMongoDB.pas -------------------------------------------------------------------------------- /SynMustache.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynMustache.pas -------------------------------------------------------------------------------- /SynOleDB.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynOleDB.pas -------------------------------------------------------------------------------- /SynOpenSSL.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynOpenSSL.pas -------------------------------------------------------------------------------- /SynPdf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynPdf.pas -------------------------------------------------------------------------------- /SynProtoRTSPHTTP.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynProtoRTSPHTTP.pas -------------------------------------------------------------------------------- /SynProtoRelay.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynProtoRelay.pas -------------------------------------------------------------------------------- /SynSM.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynSM.inc -------------------------------------------------------------------------------- /SynSM.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynSM.pas -------------------------------------------------------------------------------- /SynSMAPI.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynSMAPI.pas -------------------------------------------------------------------------------- /SynSQLite3.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynSQLite3.pas -------------------------------------------------------------------------------- /SynSQLite3RegEx.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynSQLite3RegEx.pas -------------------------------------------------------------------------------- /SynSQLite3Static.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynSQLite3Static.pas -------------------------------------------------------------------------------- /SynSSPI.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynSSPI.pas -------------------------------------------------------------------------------- /SynSSPIAuth.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynSSPIAuth.pas -------------------------------------------------------------------------------- /SynScaleMM.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynScaleMM.pas -------------------------------------------------------------------------------- /SynSelfTests.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynSelfTests.pas -------------------------------------------------------------------------------- /SynTBB.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynTBB.pas -------------------------------------------------------------------------------- /SynTable.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynTable.pas -------------------------------------------------------------------------------- /SynTaskDialog.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynTaskDialog.RES -------------------------------------------------------------------------------- /SynTaskDialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynTaskDialog.pas -------------------------------------------------------------------------------- /SynTaskDialog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynTaskDialog.rc -------------------------------------------------------------------------------- /SynTests.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynTests.pas -------------------------------------------------------------------------------- /SynVirtualDataSet.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynVirtualDataSet.pas -------------------------------------------------------------------------------- /SynWinSock.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynWinSock.pas -------------------------------------------------------------------------------- /SynZLibSSE.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynZLibSSE.pas -------------------------------------------------------------------------------- /SynZip.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynZip.pas -------------------------------------------------------------------------------- /SynZipFiles.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/SynZipFiles.pas -------------------------------------------------------------------------------- /Synopse.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/Synopse.inc -------------------------------------------------------------------------------- /SynopseCommit.inc: -------------------------------------------------------------------------------- 1 | '1.18.7663' 2 | -------------------------------------------------------------------------------- /bunzipasm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/bunzipasm.inc -------------------------------------------------------------------------------- /compil.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/compil.bat -------------------------------------------------------------------------------- /compilFPC.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/compilFPC.bat -------------------------------------------------------------------------------- /compilpil.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/compilpil.bat -------------------------------------------------------------------------------- /crc32c64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/crc32c64.obj -------------------------------------------------------------------------------- /deflate.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/deflate.obj -------------------------------------------------------------------------------- /lizard.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/lizard.dpr -------------------------------------------------------------------------------- /lizard.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/lizard.lpi -------------------------------------------------------------------------------- /padlock.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/padlock.o -------------------------------------------------------------------------------- /padlock_aes.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/padlock_aes.o -------------------------------------------------------------------------------- /padlock_sha.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/padlock_sha.o -------------------------------------------------------------------------------- /sha512-x64sse4.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/sha512-x64sse4.obj -------------------------------------------------------------------------------- /sha512-x86.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/sha512-x86.obj -------------------------------------------------------------------------------- /static/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/ReadMe.txt -------------------------------------------------------------------------------- /static/aarch64-android/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/aarch64-android/libcurl.a -------------------------------------------------------------------------------- /static/aarch64-android/libgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/aarch64-android/libgcc.a -------------------------------------------------------------------------------- /static/aarch64-linux/libgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/aarch64-linux/libgcc.a -------------------------------------------------------------------------------- /static/aarch64-linux/sqlite3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/aarch64-linux/sqlite3.o -------------------------------------------------------------------------------- /static/arm-android/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/arm-android/libcurl.a -------------------------------------------------------------------------------- /static/arm-android/libgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/arm-android/libgcc.a -------------------------------------------------------------------------------- /static/arm-linux/libgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/arm-linux/libgcc.a -------------------------------------------------------------------------------- /static/arm-linux/sqlite3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/arm-linux/sqlite3.o -------------------------------------------------------------------------------- /static/i386-darwin/libsqlite3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-darwin/libsqlite3.a -------------------------------------------------------------------------------- /static/i386-darwin/sqlite3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-darwin/sqlite3.o -------------------------------------------------------------------------------- /static/i386-freebsd/libgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-freebsd/libgcc.a -------------------------------------------------------------------------------- /static/i386-freebsd/sqlite3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-freebsd/sqlite3.o -------------------------------------------------------------------------------- /static/i386-linux/ecclin32O2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-linux/ecclin32O2.o -------------------------------------------------------------------------------- /static/i386-linux/entropy_common.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-linux/entropy_common.o -------------------------------------------------------------------------------- /static/i386-linux/fse_compress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-linux/fse_compress.o -------------------------------------------------------------------------------- /static/i386-linux/fse_decompress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-linux/fse_decompress.o -------------------------------------------------------------------------------- /static/i386-linux/huf_compress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-linux/huf_compress.o -------------------------------------------------------------------------------- /static/i386-linux/huf_decompress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-linux/huf_decompress.o -------------------------------------------------------------------------------- /static/i386-linux/libgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-linux/libgcc.a -------------------------------------------------------------------------------- /static/i386-linux/lizard_compress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-linux/lizard_compress.o -------------------------------------------------------------------------------- /static/i386-linux/lizard_decompress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-linux/lizard_decompress.o -------------------------------------------------------------------------------- /static/i386-linux/sha512-x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-linux/sha512-x86.o -------------------------------------------------------------------------------- /static/i386-linux/sqlite3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-linux/sqlite3.o -------------------------------------------------------------------------------- /static/i386-openbsd/libgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-openbsd/libgcc.a -------------------------------------------------------------------------------- /static/i386-openbsd/sqlite3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-openbsd/sqlite3.o -------------------------------------------------------------------------------- /static/i386-win32/adler32.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-win32/adler32.o -------------------------------------------------------------------------------- /static/i386-win32/crc32.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-win32/crc32.o -------------------------------------------------------------------------------- /static/i386-win32/deflate.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-win32/deflate.o -------------------------------------------------------------------------------- /static/i386-win32/eccwin32O2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-win32/eccwin32O2.o -------------------------------------------------------------------------------- /static/i386-win32/entropy_common.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-win32/entropy_common.o -------------------------------------------------------------------------------- /static/i386-win32/fse_compress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-win32/fse_compress.o -------------------------------------------------------------------------------- /static/i386-win32/fse_decompress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-win32/fse_decompress.o -------------------------------------------------------------------------------- /static/i386-win32/huf_compress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-win32/huf_compress.o -------------------------------------------------------------------------------- /static/i386-win32/huf_decompress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-win32/huf_decompress.o -------------------------------------------------------------------------------- /static/i386-win32/inffast.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-win32/inffast.o -------------------------------------------------------------------------------- /static/i386-win32/inflate.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-win32/inflate.o -------------------------------------------------------------------------------- /static/i386-win32/inftrees.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-win32/inftrees.o -------------------------------------------------------------------------------- /static/i386-win32/libgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-win32/libgcc.a -------------------------------------------------------------------------------- /static/i386-win32/libkernel32.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-win32/libkernel32.a -------------------------------------------------------------------------------- /static/i386-win32/libmsvcrt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-win32/libmsvcrt.a -------------------------------------------------------------------------------- /static/i386-win32/lizard_compress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-win32/lizard_compress.o -------------------------------------------------------------------------------- /static/i386-win32/lizard_decompress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-win32/lizard_decompress.o -------------------------------------------------------------------------------- /static/i386-win32/sha512-x86.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-win32/sha512-x86.o -------------------------------------------------------------------------------- /static/i386-win32/sqlite3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-win32/sqlite3.o -------------------------------------------------------------------------------- /static/i386-win32/trees.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-win32/trees.o -------------------------------------------------------------------------------- /static/i386-win32/zlib-32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-win32/zlib-32.dll -------------------------------------------------------------------------------- /static/i386-win32/zutil.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/i386-win32/zutil.o -------------------------------------------------------------------------------- /static/x86_64-darwin/crc32c64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-darwin/crc32c64.o -------------------------------------------------------------------------------- /static/x86_64-darwin/libsqlite3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-darwin/libsqlite3.a -------------------------------------------------------------------------------- /static/x86_64-darwin/sqlite3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-darwin/sqlite3.o -------------------------------------------------------------------------------- /static/x86_64-freebsd/libgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-freebsd/libgcc.a -------------------------------------------------------------------------------- /static/x86_64-freebsd/sqlite3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-freebsd/sqlite3.o -------------------------------------------------------------------------------- /static/x86_64-linux/crc32c64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-linux/crc32c64.o -------------------------------------------------------------------------------- /static/x86_64-linux/ecclin64O2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-linux/ecclin64O2.o -------------------------------------------------------------------------------- /static/x86_64-linux/entropy_common.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-linux/entropy_common.o -------------------------------------------------------------------------------- /static/x86_64-linux/fse_compress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-linux/fse_compress.o -------------------------------------------------------------------------------- /static/x86_64-linux/fse_decompress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-linux/fse_decompress.o -------------------------------------------------------------------------------- /static/x86_64-linux/huf_compress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-linux/huf_compress.o -------------------------------------------------------------------------------- /static/x86_64-linux/huf_decompress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-linux/huf_decompress.o -------------------------------------------------------------------------------- /static/x86_64-linux/libgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-linux/libgcc.a -------------------------------------------------------------------------------- /static/x86_64-linux/lizard_compress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-linux/lizard_compress.o -------------------------------------------------------------------------------- /static/x86_64-linux/lizard_decompress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-linux/lizard_decompress.o -------------------------------------------------------------------------------- /static/x86_64-linux/sha512-x64sse4.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-linux/sha512-x64sse4.o -------------------------------------------------------------------------------- /static/x86_64-linux/sqlite3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-linux/sqlite3.o -------------------------------------------------------------------------------- /static/x86_64-openbsd/libgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-openbsd/libgcc.a -------------------------------------------------------------------------------- /static/x86_64-openbsd/sqlite3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-openbsd/sqlite3.o -------------------------------------------------------------------------------- /static/x86_64-win64/adler32.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/adler32.o -------------------------------------------------------------------------------- /static/x86_64-win64/crc32.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/crc32.o -------------------------------------------------------------------------------- /static/x86_64-win64/deflate.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/deflate.o -------------------------------------------------------------------------------- /static/x86_64-win64/eccwin64O2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/eccwin64O2.o -------------------------------------------------------------------------------- /static/x86_64-win64/entropy_common.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/entropy_common.o -------------------------------------------------------------------------------- /static/x86_64-win64/fse_compress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/fse_compress.o -------------------------------------------------------------------------------- /static/x86_64-win64/fse_decompress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/fse_decompress.o -------------------------------------------------------------------------------- /static/x86_64-win64/huf_compress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/huf_compress.o -------------------------------------------------------------------------------- /static/x86_64-win64/huf_decompress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/huf_decompress.o -------------------------------------------------------------------------------- /static/x86_64-win64/inffast.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/inffast.o -------------------------------------------------------------------------------- /static/x86_64-win64/inflate.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/inflate.o -------------------------------------------------------------------------------- /static/x86_64-win64/inftrees.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/inftrees.o -------------------------------------------------------------------------------- /static/x86_64-win64/libgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/libgcc.a -------------------------------------------------------------------------------- /static/x86_64-win64/libkernel32.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/libkernel32.a -------------------------------------------------------------------------------- /static/x86_64-win64/libmsvcrt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/libmsvcrt.a -------------------------------------------------------------------------------- /static/x86_64-win64/libsqlite3-64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/libsqlite3-64.a -------------------------------------------------------------------------------- /static/x86_64-win64/lizard_compress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/lizard_compress.o -------------------------------------------------------------------------------- /static/x86_64-win64/lizard_decompress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/lizard_decompress.o -------------------------------------------------------------------------------- /static/x86_64-win64/sqlite3-64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/sqlite3-64.dll -------------------------------------------------------------------------------- /static/x86_64-win64/sqlite3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/sqlite3.o -------------------------------------------------------------------------------- /static/x86_64-win64/sse/adler32.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/sse/adler32.o -------------------------------------------------------------------------------- /static/x86_64-win64/sse/crc32.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/sse/crc32.o -------------------------------------------------------------------------------- /static/x86_64-win64/sse/deflate.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/sse/deflate.o -------------------------------------------------------------------------------- /static/x86_64-win64/sse/inffast.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/sse/inffast.o -------------------------------------------------------------------------------- /static/x86_64-win64/sse/inflate.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/sse/inflate.o -------------------------------------------------------------------------------- /static/x86_64-win64/sse/inftrees.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/sse/inftrees.o -------------------------------------------------------------------------------- /static/x86_64-win64/sse/trees.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/sse/trees.o -------------------------------------------------------------------------------- /static/x86_64-win64/sse/zutil.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/sse/zutil.o -------------------------------------------------------------------------------- /static/x86_64-win64/trees.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/trees.o -------------------------------------------------------------------------------- /static/x86_64-win64/zlib-64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/zlib-64.dll -------------------------------------------------------------------------------- /static/x86_64-win64/zutil.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/static/x86_64-win64/zutil.o -------------------------------------------------------------------------------- /trees.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/trees.obj -------------------------------------------------------------------------------- /vista.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/vista.RES -------------------------------------------------------------------------------- /vista.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/vista.manifest -------------------------------------------------------------------------------- /vista.rc: -------------------------------------------------------------------------------- 1 | 1 24 "vista.manifest" -------------------------------------------------------------------------------- /vistaAdm.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/vistaAdm.RES -------------------------------------------------------------------------------- /vistaAdm.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synopse/mORMot/HEAD/vistaAdm.manifest -------------------------------------------------------------------------------- /vistaAdm.rc: -------------------------------------------------------------------------------- 1 | 1 24 "vistaAdm.manifest" --------------------------------------------------------------------------------