Skip to content

Commit

Permalink
Project: RESTDataWare
Browse files Browse the repository at this point in the history
Changes:
 - Correção de versionamento de pacotes pro Lazarus
 - Correção de pacote de instalação Zeos
 - Correção de pacote de instalação ShellServices
  • Loading branch information
mobius1qwe committed Aug 20, 2022
1 parent 0ca1fb1 commit 02632c4
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</CompilerOptions>
<Description Value="The proposal was fulfilled. REST DW was created to facilitate the creation of CRUDs in the same model that we created applications for Client / Server Database. Today, being able to write data to a bank via WebService is too complex for simple operations, making scheduling of simple screens time-consuming. With REST Dataware, you no longer have to worry about creating SQL Insertion, Deletion, Read, and Execution methods via Webservice; Simply add a RESTDataBase connection component and add a RESTClientSQL component that will already have your SQL solution fully functional as you did back in the day and with all the power of modern REST / JSON technology with data compression and everything the language can offer. Have fun."/>
<License Value="GPL- 3.0"/>
<Version Major="2"/>
<Version Major="2" Release="3"/>
<Files Count="84">
<Item1>
<Filename Value="RestDatawareIndySockets.lrs"/>
Expand All @@ -55,6 +55,7 @@
<RequiredPkgs Count="5">
<Item1>
<PackageName Value="restdatawarecomponents"/>
<MinVersion Major="2" Valid="True"/>
</Item1>
<Item2>
<PackageName Value="indylaz"/>
Expand Down
12 changes: 4 additions & 8 deletions CORE/Packages/Lazarus/Drivers/zeos/restdwdriverzeos.lpk
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<IncludeFiles Value="..\..\..\..;..\..\..\..\Includes"/>
<Libraries Value="..\..\..\..\static\$(TargetCPU)-$(TargetOS)"/>
<OtherUnitFiles Value="..\..\libs;..\..;..\..\libs\JSON;..\..\..\..\Source\Database_Drivers"/>
<UnitOutputDirectory Value="..\..\..\..\compiledlaz"/>
<UnitOutputDirectory Value="..\..\..\..\Source\compiledlaz"/>
</SearchPaths>
<CodeGeneration>
<Optimizations>
Expand All @@ -23,8 +23,8 @@
<Description Value="The proposal was fulfilled. REST DW was created to facilitate the creation of CRUDs in the same model that we created applications for Client / Server Database. Today, being able to write data to a bank via WebService is too complex for simple operations, making scheduling of simple screens time-consuming. With REST Dataware, you no longer have to worry about creating SQL Insertion, Deletion, Read, and Execution methods via Webservice; Simply add a RESTDataBase connection component and add a RESTClientSQL component that will already have your SQL solution fully functional as you did back in the day and with all the power of modern REST / JSON technology with data compression and everything the language can offer. Have fun.
"/>
<License Value="GPL- 3.0"/>
<Version Major="2"/>
<Files Count="3">
<Version Major="2" Release="3"/>
<Files Count="2">
<Item1>
<Filename Value="restdwdriverzeos.lrs"/>
<Type Value="LRS"/>
Expand All @@ -34,16 +34,12 @@
<HasRegisterProc Value="True"/>
<UnitName Value="uRESTDWDriverZEOS"/>
</Item2>
<Item3>
<Filename Value="..\..\..\..\Source\Database_Drivers\uRESTDWDriverZEOSReg.pas"/>
<HasRegisterProc Value="True"/>
<UnitName Value="uRESTDWDriverZEOSReg"/>
</Item3>
</Files>
<CompatibilityMode Value="True"/>
<RequiredPkgs Count="4">
<Item1>
<PackageName Value="restdatawarecomponents"/>
<MinVersion Major="2" Valid="True"/>
</Item1>
<Item2>
<PackageName Value="LR_ZeosDB"/>
Expand Down
3 changes: 1 addition & 2 deletions CORE/Packages/Lazarus/Drivers/zeos/restdwdriverzeos.pas
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,13 @@
interface

uses
uRESTDWDriverZEOS, uRESTDWDriverZEOSReg, LazarusPackageIntf;
uRESTDWDriverZEOS, LazarusPackageIntf;

implementation

procedure Register;
begin
RegisterUnit('uRESTDWDriverZEOS', @uRESTDWDriverZEOS.Register);
RegisterUnit('uRESTDWDriverZEOSReg', @uRESTDWDriverZEOSReg.Register);
end;

initialization
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,26 @@
</SearchPaths>
</CompilerOptions>
<License Value="GPL - 3.0"/>
<Version Major="2"/>
<Version Major="2" Release="3"/>
<Files>
<Item>
<Filename Value="RestDatawareShellservices.lrs"/>
<Type Value="LRS"/>
</Item>
<Item>
<Filename Value="..\..\..\Source\ShellTools\uRESTDWShellServicesLazarus.pas"/>
<UnitName Value="uRESTDWShellServices"/>
<UnitName Value="uRESTDWShellServicesLazarus"/>
</Item>
<Item>
<Filename Value="..\..\..\Source\ShellTools\uRESTDWShellServicesRegLazarus.pas"/>
<UnitName Value="uRESTDWShellServicesReg"/>
<HasRegisterProc Value="True"/>
<UnitName Value="uRESTDWShellServicesRegLazarus"/>
</Item>
</Files>
<RequiredPkgs>
<Item>
<PackageName Value="restdatawarecomponents"/>
<MinVersion Major="2" Valid="True"/>
</Item>
<Item>
<PackageName Value="weblaz"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@
interface

uses
uRESTDWShellServicesLazarus, uRESTDWShellServicesRegLazarus,
LazarusPackageIntf;
uRESTDWShellServicesLazarus, uRESTDWShellServicesRegLazarus, LazarusPackageIntf;

implementation

procedure Register;
begin
RegisterUnit('uRESTDWShellServicesRegLazarus',
@uRESTDWShellServicesRegLazarus.Register);
end;

initialization
Expand Down
2 changes: 1 addition & 1 deletion CORE/Packages/Lazarus/restdatawarecomponents.lpk
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</CompilerOptions>
<Description Value="The proposal was fulfilled. REST DW was created to facilitate the creation of CRUDs in the same model that we created applications for Client / Server Database. Today, being able to write data to a bank via WebService is too complex for simple operations, making scheduling of simple screens time-consuming. With REST Dataware, you no longer have to worry about creating SQL Insertion, Deletion, Read, and Execution methods via Webservice; Simply add a RESTDataBase connection component and add a RESTClientSQL component that will already have your SQL solution fully functional as you did back in the day and with all the power of modern REST / JSON technology with data compression and everything the language can offer. Have fun."/>
<License Value="GPL- 3.0"/>
<Version Major="2"/>
<Version Major="2" Release="3"/>
<Files Count="82">
<Item1>
<Filename Value="restdatawarecomponents.lrs"/>
Expand Down

0 comments on commit 02632c4

Please sign in to comment.