mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-15 15:55:54 +01:00
Merge remote-tracking branch 'origin/master' into feature_dmscontainer_v3_1
This commit is contained in:
commit
33083497cd
@ -600,7 +600,7 @@ var
|
||||
lJsonArray: TJsonArray;
|
||||
i: Integer;
|
||||
begin
|
||||
lList := AElementValue.AsObject as TList<string>;
|
||||
lList := TMVCListOfString(AElementValue.AsObject);
|
||||
lList.Clear;
|
||||
lJsonArray := ASerializerObject as TJsonArray;
|
||||
for i := 0 to lJsonArray.Count - 1 do
|
||||
@ -650,7 +650,7 @@ var
|
||||
lJsonArray: TJsonArray;
|
||||
i: Integer;
|
||||
begin
|
||||
lList := AElementValue.AsObject as TList<Integer>;
|
||||
lList := TMVCListOfInteger(AElementValue.AsObject);
|
||||
lList.Clear;
|
||||
lJsonArray := ASerializerObject as TJsonArray;
|
||||
for i := 0 to lJsonArray.Count - 1 do
|
||||
@ -701,7 +701,7 @@ var
|
||||
lJsonArray: TJsonArray;
|
||||
i: Integer;
|
||||
begin
|
||||
lList := AElementValue.AsObject as TList<Boolean>;
|
||||
lList := TMVCListOfBoolean(AElementValue.AsObject);
|
||||
lList.Clear;
|
||||
lJsonArray := ASerializerObject as TJsonArray;
|
||||
for i := 0 to lJsonArray.Count - 1 do
|
||||
@ -751,7 +751,7 @@ var
|
||||
lJsonArray: TJsonArray;
|
||||
i: Integer;
|
||||
begin
|
||||
lList := AElementValue.AsObject as TList<Double>;
|
||||
lList := TMVCListOfDouble(AElementValue.AsObject);
|
||||
lList.Clear;
|
||||
lJsonArray := ASerializerObject as TJsonArray;
|
||||
for i := 0 to lJsonArray.Count - 1 do
|
||||
|
@ -2766,10 +2766,10 @@ begin
|
||||
begin
|
||||
try
|
||||
AHandled := ExecuteAction(ASender, ARequest, AResponse);
|
||||
// if not AHandled then
|
||||
// begin
|
||||
// AResponse.ContentStream := nil;
|
||||
// end;
|
||||
if not AHandled then
|
||||
begin
|
||||
AResponse.ContentStream := nil;
|
||||
end;
|
||||
except
|
||||
on E: Exception do
|
||||
begin
|
||||
|
@ -50,7 +50,8 @@ uses
|
||||
FDConnectionConfigU in 'webmodules\FDConnectionConfigU.pas',
|
||||
StandaloneServerTestU in '..\StandaloneServer\StandaloneServerTestU.pas',
|
||||
StandAloneServerWebModuleTest in '..\StandaloneServer\StandAloneServerWebModuleTest.pas' {TestWebModule2: TWebModule},
|
||||
MVCFramework.Commons in '..\..\..\sources\MVCFramework.Commons.pas';
|
||||
MVCFramework.Commons in '..\..\..\sources\MVCFramework.Commons.pas',
|
||||
MVCFramework.Serializer.JsonDataObjects.CustomTypes in '..\..\..\sources\MVCFramework.Serializer.JsonDataObjects.CustomTypes.pas';
|
||||
|
||||
{$R *.RES}
|
||||
|
||||
|
@ -219,6 +219,7 @@
|
||||
<DesignClass>TWebModule</DesignClass>
|
||||
</DCCReference>
|
||||
<DCCReference Include="..\..\..\sources\MVCFramework.Commons.pas"/>
|
||||
<DCCReference Include="..\..\..\sources\MVCFramework.Serializer.JsonDataObjects.CustomTypes.pas"/>
|
||||
<BuildConfiguration Include="Base">
|
||||
<Key>Base</Key>
|
||||
</BuildConfiguration>
|
||||
@ -333,6 +334,12 @@
|
||||
<Overwrite>true</Overwrite>
|
||||
</Platform>
|
||||
</DeployFile>
|
||||
<DeployFile LocalName="bin\DMVCFrameworkTests.rsm" Configuration="TESTINSIGHT" Class="DebugSymbols">
|
||||
<Platform Name="Win32">
|
||||
<RemoteName>DMVCFrameworkTests.rsm</RemoteName>
|
||||
<Overwrite>true</Overwrite>
|
||||
</Platform>
|
||||
</DeployFile>
|
||||
<DeployFile LocalName="$(BDS)\Redist\iossim32\libcgunwind.1.0.dylib" Class="DependencyModule">
|
||||
<Platform Name="iOSSimulator">
|
||||
<Overwrite>true</Overwrite>
|
||||
@ -356,6 +363,12 @@
|
||||
<Overwrite>true</Overwrite>
|
||||
</Platform>
|
||||
</DeployFile>
|
||||
<DeployFile LocalName="bin\DMVCFrameworkTests.exe" Configuration="TESTINSIGHT" Class="ProjectOutput">
|
||||
<Platform Name="Win32">
|
||||
<RemoteName>DMVCFrameworkTests.exe</RemoteName>
|
||||
<Overwrite>true</Overwrite>
|
||||
</Platform>
|
||||
</DeployFile>
|
||||
<DeployClass Name="AdditionalDebugSymbols">
|
||||
<Platform Name="OSX32">
|
||||
<Operation>1</Operation>
|
||||
|
Loading…
Reference in New Issue
Block a user