mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 05:18:12 +02:00
* Dotted filenames for package gitlab
This commit is contained in:
parent
484c453409
commit
43812138ca
3
packages/gitlab/namespaced/Api.Gitlab.Client.pas
Normal file
3
packages/gitlab/namespaced/Api.Gitlab.Client.pas
Normal file
@ -0,0 +1,3 @@
|
||||
unit Api.Gitlab.Client;
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
{$i gitlabclient.pas}
|
3
packages/gitlab/namespaces.lst
Normal file
3
packages/gitlab/namespaces.lst
Normal file
@ -0,0 +1,3 @@
|
||||
src/gitlabclient.pas=namespaced/Api.Gitlab.Client.pas
|
||||
{s*:src/}=namespaced/
|
||||
{i+:src/}
|
@ -1,12 +1,19 @@
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit gitlabclient;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
{$mode ObjFPC}{$H+}
|
||||
{$modeswitch advancedrecords}
|
||||
|
||||
interface
|
||||
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
uses
|
||||
System.Classes, System.SysUtils, System.IniFiles, FpJson.Data, FpWeb.Client, FpWeb.Client.Http, FpWeb.Http.Protocol;
|
||||
{$ELSE FPC_DOTTEDUNITS}
|
||||
uses
|
||||
Classes, SysUtils, inifiles, fpjson, fpwebclient, fphttpwebclient, httpprotocol;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
Const
|
||||
LongThrottleSleep = 60 * 1000; // One minute
|
||||
|
Loading…
Reference in New Issue
Block a user