File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ contains
3838 RALDBModule in '..\..\..\src\database\RALDBModule.pas',
3939 RALDBSQLCache in '..\..\..\src\database\RALDBSQLCache.pas',
4040 RALDBConnection in '..\..\..\src\database\RALDBConnection.pas',
41- RALDBRegister in '..\..\..\src\database\RALDBRegister.pas';
41+ RALDBRegister in '..\..\..\src\database\RALDBRegister.pas',
42+ RALDBConnectionPooler in '..\..\..\src\database\RALDBConnectionPooler.pas';
4243
4344end.
Original file line number Diff line number Diff line change 180180 <DCCReference Include="..\..\..\src\database\RALDBSQLCache.pas"/>
181181 <DCCReference Include="..\..\..\src\database\RALDBConnection.pas"/>
182182 <DCCReference Include="..\..\..\src\database\RALDBRegister.pas"/>
183+ <DCCReference Include="..\..\..\src\database\RALDBConnectionPooler.pas"/>
183184 <BuildConfiguration Include="Base">
184185 <Key>Base</Key>
185186 </BuildConfiguration>
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ package UniGUIRAL;
2626{$IMAGEBASE $400000}
2727{$DEFINE DEBUG}
2828{$ENDIF IMPLICITBUILDING}
29+ {$DESCRIPTION 'PascalRAL | UniGUI Components'}
2930{$IMPLICITBUILD ON}
3031
3132requires
Original file line number Diff line number Diff line change 239239 <Overwrite>true</Overwrite>
240240 </Platform>
241241 </DeployFile>
242+ <DeployFile LocalName="..\..\..\..\..\..\..\..\Public\Documents\Embarcadero\Studio\23.0\Bpl\UniGUIRAL.bpl" Configuration="Debug" Class="ProjectOutput">
243+ <Platform Name="Win32">
244+ <RemoteName>UniGUIRAL.bpl</RemoteName>
245+ <Overwrite>true</Overwrite>
246+ </Platform>
247+ </DeployFile>
242248 <DeployFile LocalName="..\..\..\..\..\..\..\Public\Documents\Embarcadero\Studio\23.0\Bpl\UniGUIRAL.bpl" Configuration="Debug" Class="ProjectOutput"/>
243249 <DeployFile LocalName="C:\Users\Public\Documents\Embarcadero\Studio\20.0\Bpl\UniGUIRAL.bpl" Configuration="Debug" Class="ProjectOutput"/>
244250 <DeployClass Name="AdditionalDebugSymbols">
Original file line number Diff line number Diff line change @@ -126,14 +126,13 @@ TRALClientJWTAuth = class(TRALAuthClient)
126126 property OnBeforeGetToken;
127127 end ;
128128
129- // / JWT Authenticator for server components
130-
131129 { TRALServerJWTAuth }
132130
131+ // / JWT Authenticator for server components
133132 TRALServerJWTAuth = class (TRALAuthServer)
134133 private
135134 FAlgorithm: TRALJWTAlgorithm;
136- FCollectionAuth : TOwnedCollection;
135+ FCollectionAuth: TOwnedCollection;
137136 FAuthToken: TRALBaseRoute;
138137 FExpSecs: IntegerRAL;
139138 FJSONKey: StringRAL;
@@ -142,7 +141,7 @@ TRALServerJWTAuth = class(TRALAuthServer)
142141 FOnValidate: TRALOnTokenJWT;
143142 protected
144143 function GetAuthRoute : TRALBaseRoute; override;
145- procedure SetAuthRoute (ARoute : TRALBaseRoute); override;
144+ procedure SetAuthRoute (ARoute: TRALBaseRoute); override;
146145 public
147146 constructor Create(AOwner: TComponent); override;
148147 destructor Destroy; override;
Original file line number Diff line number Diff line change @@ -253,7 +253,7 @@ procedure GetEngineList(AList: TStrings);
253253
254254procedure TRALClient.SetEngineType (AValue: String);
255255var
256- vClass : TRALClientHTTPClass;
256+ vClass: TRALClientHTTPClass;
257257begin
258258 if FEngineType = AValue then
259259 Exit;
Original file line number Diff line number Diff line change @@ -50,8 +50,8 @@ TRALAuthorization = class(TPersistent)
5050 property AuthString: StringRAL read FAuthString write SetAuthString;
5151 property AuthType: TRALAuthTypes read FAuthType write FAuthType;
5252
53- property AsAuthBasic : TRALAuthBasic read GetAuthBasic;
54- property AsAuthBearer : TRALJWT read GetAuthBearer;
53+ property AsAuthBasic: TRALAuthBasic read GetAuthBasic;
54+ property AsAuthBearer: TRALJWT read GetAuthBearer;
5555 end ;
5656
5757 { TRALRequest }
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ interface
1313
1414 TRALfpHttpClientHTTP = class (TRALClientHTTP)
1515 private
16- FHttp : TFPHTTPClient;
16+ FHttp: TFPHTTPClient;
1717 protected
1818 procedure OnGetSSLHandler (Sender : TObject; Const UseSSL : Boolean; Out AHandler : TSocketHandler);
1919 public
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ function TRALCripto.Encrypt(AValue: TStream): StringRAL;
129129 vStream := BeforeEncrypt(AValue);
130130 vStream.Position := 0 ;
131131
132- Result := StreamToString (vStream, True );
132+ Result := StreamToByteString (vStream);
133133 finally
134134 FreeAndNil(vStream);
135135 end ;
You can’t perform that action at this time.
0 commit comments