2019-01-13 00:26:30 +01:00
|
|
|
package dmvcframeworkRT;
|
|
|
|
|
2023-03-24 17:16:03 +01:00
|
|
|
{$R *.res}
|
|
|
|
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
|
|
|
|
{$ALIGN 8}
|
|
|
|
{$ASSERTIONS ON}
|
|
|
|
{$BOOLEVAL OFF}
|
|
|
|
{$DEBUGINFO OFF}
|
|
|
|
{$EXTENDEDSYNTAX ON}
|
|
|
|
{$IMPORTEDDATA ON}
|
|
|
|
{$IOCHECKS ON}
|
|
|
|
{$LOCALSYMBOLS ON}
|
|
|
|
{$LONGSTRINGS ON}
|
|
|
|
{$OPENSTRINGS ON}
|
|
|
|
{$OPTIMIZATION OFF}
|
|
|
|
{$OVERFLOWCHECKS OFF}
|
|
|
|
{$RANGECHECKS OFF}
|
|
|
|
{$REFERENCEINFO ON}
|
|
|
|
{$SAFEDIVIDE OFF}
|
|
|
|
{$STACKFRAMES ON}
|
|
|
|
{$TYPEDADDRESS OFF}
|
|
|
|
{$VARSTRINGCHECKS ON}
|
|
|
|
{$WRITEABLECONST OFF}
|
|
|
|
{$MINENUMSIZE 1}
|
|
|
|
{$IMAGEBASE $400000}
|
|
|
|
{$DEFINE DEBUG}
|
|
|
|
{$ENDIF IMPLICITBUILDING}
|
2023-09-12 23:55:10 +02:00
|
|
|
{$DESCRIPTION 'DMVCFramework 3.x'}
|
2019-01-13 00:26:30 +01:00
|
|
|
{$LIBSUFFIX '101'}
|
2023-03-24 17:16:03 +01:00
|
|
|
{$RUNONLY}
|
|
|
|
{$IMPLICITBUILD ON}
|
2019-01-13 00:26:30 +01:00
|
|
|
|
|
|
|
requires
|
|
|
|
rtl,
|
|
|
|
inet,
|
|
|
|
FireDAC,
|
|
|
|
IndyCore,
|
|
|
|
IndyProtocols,
|
|
|
|
FireDACIBDriver,
|
|
|
|
FireDACMySQLDriver,
|
2019-10-15 12:51:08 +02:00
|
|
|
loggerproRT,
|
2021-09-29 19:30:14 +02:00
|
|
|
FireDACPgDriver,
|
2023-03-24 17:16:03 +01:00
|
|
|
FireDACSqliteDriver,
|
|
|
|
SwagDoc;
|
2019-01-13 00:26:30 +01:00
|
|
|
|
|
|
|
contains
|
2023-03-24 17:16:03 +01:00
|
|
|
Web.HTTPDImpl,
|
|
|
|
Web.ApacheConst,
|
|
|
|
Web.ApacheHTTP,
|
|
|
|
Web.Win.IsapiHTTP,
|
|
|
|
Web.HTTPDMethods,
|
2021-09-29 19:30:14 +02:00
|
|
|
MVCFramework in '..\..\sources\MVCFramework.pas',
|
2023-03-24 17:16:03 +01:00
|
|
|
MVCFramework.AsyncTask in '..\..\sources\MVCFramework.AsyncTask.pas',
|
|
|
|
MVCFramework.Middleware.Swagger in '..\..\sources\MVCFramework.Middleware.Swagger.pas',
|
|
|
|
MVCFramework.Middleware.Trace in '..\..\sources\MVCFramework.Middleware.Trace.pas',
|
|
|
|
MVCFramework.Middleware.ETag in '..\..\sources\MVCFramework.Middleware.ETag.pas',
|
2019-01-13 00:26:30 +01:00
|
|
|
MVCFramework.ActiveRecord in '..\..\sources\MVCFramework.ActiveRecord.pas',
|
|
|
|
MVCFramework.ActiveRecordController in '..\..\sources\MVCFramework.ActiveRecordController.pas',
|
|
|
|
MVCFramework.ApplicationSession in '..\..\sources\MVCFramework.ApplicationSession.pas',
|
|
|
|
MVCFramework.Cache in '..\..\sources\MVCFramework.Cache.pas',
|
|
|
|
MVCFramework.Commons in '..\..\sources\MVCFramework.Commons.pas',
|
|
|
|
MVCFramework.Console in '..\..\sources\MVCFramework.Console.pas',
|
|
|
|
MVCFramework.DataSet.Utils in '..\..\sources\MVCFramework.DataSet.Utils.pas',
|
|
|
|
MVCFramework.DuckTyping in '..\..\sources\MVCFramework.DuckTyping.pas',
|
|
|
|
MVCFramework.FireDAC.Utils in '..\..\sources\MVCFramework.FireDAC.Utils.pas',
|
|
|
|
MVCFramework.HMAC in '..\..\sources\MVCFramework.HMAC.pas',
|
|
|
|
MVCFramework.JSONRPC.Client in '..\..\sources\MVCFramework.JSONRPC.Client.pas',
|
|
|
|
MVCFramework.JSONRPC in '..\..\sources\MVCFramework.JSONRPC.pas',
|
|
|
|
MVCFramework.JWT in '..\..\sources\MVCFramework.JWT.pas',
|
|
|
|
MVCFramework.Logger in '..\..\sources\MVCFramework.Logger.pas',
|
|
|
|
MVCFramework.Middleware.Analytics in '..\..\sources\MVCFramework.Middleware.Analytics.pas',
|
|
|
|
MVCFramework.Middleware.Authentication in '..\..\sources\MVCFramework.Middleware.Authentication.pas',
|
|
|
|
MVCFramework.Middleware.Authentication.RoleBasedAuthHandler in '..\..\sources\MVCFramework.Middleware.Authentication.RoleBasedAuthHandler.pas',
|
|
|
|
MVCFramework.Middleware.Compression in '..\..\sources\MVCFramework.Middleware.Compression.pas',
|
|
|
|
MVCFramework.Middleware.CORS in '..\..\sources\MVCFramework.Middleware.CORS.pas',
|
|
|
|
MVCFramework.Middleware.JWT in '..\..\sources\MVCFramework.Middleware.JWT.pas',
|
|
|
|
MVCFramework.Middleware.SecurityHeaders in '..\..\sources\MVCFramework.Middleware.SecurityHeaders.pas',
|
|
|
|
MVCFramework.MultiMap in '..\..\sources\MVCFramework.MultiMap.pas',
|
|
|
|
MVCFramework.Patches in '..\..\sources\MVCFramework.Patches.pas',
|
|
|
|
MVCFramework.RESTAdapter in '..\..\sources\MVCFramework.RESTAdapter.pas',
|
|
|
|
MVCFramework.Router in '..\..\sources\MVCFramework.Router.pas',
|
|
|
|
MVCFramework.RQL.AST2FirebirdSQL in '..\..\sources\MVCFramework.RQL.AST2FirebirdSQL.pas',
|
|
|
|
MVCFramework.RQL.AST2InterbaseSQL in '..\..\sources\MVCFramework.RQL.AST2InterbaseSQL.pas',
|
|
|
|
MVCFramework.RQL.AST2MySQL in '..\..\sources\MVCFramework.RQL.AST2MySQL.pas',
|
|
|
|
MVCFramework.RQL.AST2PostgreSQL in '..\..\sources\MVCFramework.RQL.AST2PostgreSQL.pas',
|
2021-09-29 19:30:14 +02:00
|
|
|
MVCFramework.RQL.AST2SQLite in '..\..\sources\MVCFramework.RQL.AST2SQLite.pas',
|
2019-01-13 00:26:30 +01:00
|
|
|
MVCFramework.RQL.Parser in '..\..\sources\MVCFramework.RQL.Parser.pas',
|
|
|
|
MVCFramework.Rtti.Utils in '..\..\sources\MVCFramework.Rtti.Utils.pas',
|
|
|
|
MVCFramework.Serializer.Abstract in '..\..\sources\MVCFramework.Serializer.Abstract.pas',
|
|
|
|
MVCFramework.Serializer.Commons in '..\..\sources\MVCFramework.Serializer.Commons.pas',
|
|
|
|
MVCFramework.Serializer.Defaults in '..\..\sources\MVCFramework.Serializer.Defaults.pas',
|
|
|
|
MVCFramework.Serializer.Intf in '..\..\sources\MVCFramework.Serializer.Intf.pas',
|
|
|
|
MVCFramework.Serializer.JsonDataObjects.CustomTypes in '..\..\sources\MVCFramework.Serializer.JsonDataObjects.CustomTypes.pas',
|
|
|
|
MVCFramework.Serializer.JsonDataObjects in '..\..\sources\MVCFramework.Serializer.JsonDataObjects.pas',
|
|
|
|
MVCFramework.Session in '..\..\sources\MVCFramework.Session.pas',
|
|
|
|
MVCFramework.SysControllers in '..\..\sources\MVCFramework.SysControllers.pas',
|
|
|
|
MVCFramework.SystemJSONUtils in '..\..\sources\MVCFramework.SystemJSONUtils.pas',
|
2019-04-16 23:40:20 +02:00
|
|
|
MVCFramework.View.Cache in '..\..\sources\MVCFramework.View.Cache.pas',
|
2019-10-15 12:51:08 +02:00
|
|
|
MVCFramework.Controllers.Register in '..\..\sources\MVCFramework.Controllers.Register.pas',
|
|
|
|
MVCFramework.SQLGenerators.Firebird in '..\..\sources\MVCFramework.SQLGenerators.Firebird.pas',
|
|
|
|
MVCFramework.SQLGenerators.Interbase in '..\..\sources\MVCFramework.SQLGenerators.Interbase.pas',
|
|
|
|
MVCFramework.SQLGenerators.MySQL in '..\..\sources\MVCFramework.SQLGenerators.MySQL.pas',
|
|
|
|
MVCFramework.SQLGenerators.PostgreSQL in '..\..\sources\MVCFramework.SQLGenerators.PostgreSQL.pas',
|
2019-12-01 17:40:25 +01:00
|
|
|
MVCFramework.SQLGenerators.Sqlite in '..\..\sources\MVCFramework.SQLGenerators.Sqlite.pas',
|
2021-09-29 19:30:14 +02:00
|
|
|
MVCFramework.Swagger.Commons in '..\..\sources\MVCFramework.Swagger.Commons.pas',
|
2020-09-18 10:49:56 +02:00
|
|
|
MVCFramework.Nullables in '..\..\sources\MVCFramework.Nullables.pas',
|
2020-09-24 22:55:19 +02:00
|
|
|
MVCFramework.Serializer.HTML in '..\..\sources\MVCFramework.Serializer.HTML.pas',
|
2021-09-29 19:30:14 +02:00
|
|
|
MVCFramework.LRUCache in '..\..\sources\MVCFramework.LRUCache.pas',
|
2020-09-24 22:55:19 +02:00
|
|
|
MVCFramework.RESTClient.Commons in '..\..\sources\MVCFramework.RESTClient.Commons.pas',
|
|
|
|
MVCFramework.RESTClient.Indy in '..\..\sources\MVCFramework.RESTClient.Indy.pas',
|
|
|
|
MVCFramework.RESTClient.Intf in '..\..\sources\MVCFramework.RESTClient.Intf.pas',
|
2021-09-15 14:24:39 +02:00
|
|
|
MVCFramework.RESTClient in '..\..\sources\MVCFramework.RESTClient.pas',
|
2023-03-24 17:16:03 +01:00
|
|
|
MVCFramework.Utils in '..\..\sources\MVCFramework.Utils.pas',
|
2023-09-12 23:55:10 +02:00
|
|
|
JsonDataObjects in '..\..\sources\JsonDataObjects.pas',
|
|
|
|
MVCFramework.DotEnv.Parser in '..\..\sources\MVCFramework.DotEnv.Parser.pas',
|
2023-10-06 12:30:40 +02:00
|
|
|
MVCFramework.DotEnv in '..\..\sources\MVCFramework.DotEnv.pas',
|
2024-03-13 12:10:37 +01:00
|
|
|
MVCFramework.Serializer.URLEncoded in '..\..\sources\MVCFramework.Serializer.URLEncoded.pas',
|
|
|
|
MVCFramework.Serializer.Text in '..\..\sources\MVCFramework.Serializer.Text.pas',
|
2024-04-10 14:19:53 +02:00
|
|
|
LoggerPro.ConsoleAppender in '..\..\lib\loggerpro\LoggerPro.ConsoleAppender.pas',
|
2024-05-10 16:16:47 +02:00
|
|
|
MVCFramework.Container in '..\..\sources\MVCFramework.Container.pas',
|
|
|
|
sqids in '..\..\sources\sqids.pas';
|
2019-01-13 00:26:30 +01:00
|
|
|
|
|
|
|
end.
|
|
|
|
|
2021-09-29 19:30:14 +02:00
|
|
|
|
|
|
|
|
2023-03-24 17:16:03 +01:00
|
|
|
|