mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-05 17:18:13 +01:00
Compare commits
10 Commits
develop
...
hregis-fix
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3a4192a1f2 | ||
|
|
2355a3b53b | ||
|
|
24f1aa1f63 | ||
|
|
fb7b8f6c28 | ||
|
|
a268f6265f | ||
|
|
52d714865c | ||
|
|
8900b8e7bd | ||
|
|
58942df61e | ||
|
|
cdcbc60ec2 | ||
|
|
b6ce064641 |
Binary file not shown.
33
dev/tools/api/macos/README
Normal file
33
dev/tools/api/macos/README
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
README (English)
|
||||||
|
--------------------------------
|
||||||
|
|
||||||
|
##############
|
||||||
|
RapidAPI
|
||||||
|
##############
|
||||||
|
|
||||||
|
RapidAPI for Mac is a full-featured HTTP client that let's you test and describe the APIs you build or consume.
|
||||||
|
It has a beautiful native macOS interface to compose requests, inspect server responses, generate client code and export API definitions.
|
||||||
|
|
||||||
|
https://paw.cloud/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@@@
|
||||||
|
(@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@%
|
||||||
|
@@@@@@, @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,
|
||||||
|
@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||||
|
(@@@@@@( @@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||||||
|
@@@@@@@@@@@@@@@@@@@@@@@@@@@@* @@@@@@@@@@@. /@@@@@@@@@@@@@@@@@(
|
||||||
|
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* @@@@@@@@@@@. @@@@@@@@@@@@@
|
||||||
|
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@ /@@@@@@@@@@@@
|
||||||
|
@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@ @@@@@@@@@@@@
|
||||||
|
@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@ @@@@@@@@@@@@
|
||||||
|
@@@@@@@@@@@@@@@@@@@@@@@@@@@@# @@@@@@@@@@@ @@@@@@@@@@@@&
|
||||||
|
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@ @@@@@@@@@@@@@@
|
||||||
|
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@ &@@@@@@@@@@@@@@@@@@@@@@
|
||||||
|
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@ &@@@@@@@@@@@@@@@@@@@@/
|
||||||
|
@@@@@@@@@@@@@@@@@@@@@@@@@@& .@@@@@@@@@@@ &@@@@@@@@@@@@@@@@@@/
|
||||||
|
(@@@@@@@@@@@@@@@@@@@@@@@ .@@@@@@@@@@@ &@@@@@@@@@@@@@@@(
|
||||||
|
@@@@@ @@@@@ .@@@@@@@@@@@ @@@@@@@@@@@*
|
||||||
|
|
||||||
|
|
||||||
@@ -3724,7 +3724,7 @@ if (!function_exists("llxFooter")) {
|
|||||||
|
|
||||||
// Add code for the asynchronous anonymous first ping (for telemetry)
|
// Add code for the asynchronous anonymous first ping (for telemetry)
|
||||||
// You can use &forceping=1 in parameters to force the ping if the ping was already sent.
|
// You can use &forceping=1 in parameters to force the ping if the ping was already sent.
|
||||||
$forceping = GETPOST('forceping', 'alpha');
|
$forceping = GETPOSTINT('forceping');
|
||||||
|
|
||||||
if (($_SERVER["PHP_SELF"] == DOL_URL_ROOT.'/index.php') || $forceping) {
|
if (($_SERVER["PHP_SELF"] == DOL_URL_ROOT.'/index.php') || $forceping) {
|
||||||
$hash_unique_id = dol_hash('dolibarr'.$conf->file->instance_unique_id, 'sha256'); // Note: if the global salt changes, this hash changes too so ping may be counted twice. We don't mind. It is for statistics purpose only.
|
$hash_unique_id = dol_hash('dolibarr'.$conf->file->instance_unique_id, 'sha256'); // Note: if the global salt changes, this hash changes too so ping may be counted twice. We don't mind. It is for statistics purpose only.
|
||||||
@@ -3758,7 +3758,7 @@ if (!function_exists("llxFooter")) {
|
|||||||
|
|
||||||
// Add code to force the registration if not yet done but ready (in case past submission failed)
|
// Add code to force the registration if not yet done but ready (in case past submission failed)
|
||||||
// You can use &forceregistration=1 in parameters to force the call if the call was already sent.
|
// You can use &forceregistration=1 in parameters to force the call if the call was already sent.
|
||||||
$forceregistration = GETPOST('forceregistration', 'alpha');
|
$forceregistration = GETPOSTINT('forceregistration');
|
||||||
if (isModEnabled('blockedlog') && (($_SERVER["PHP_SELF"] == DOL_URL_ROOT.'/index.php') || $forceregistration)) {
|
if (isModEnabled('blockedlog') && (($_SERVER["PHP_SELF"] == DOL_URL_ROOT.'/index.php') || $forceregistration)) {
|
||||||
include_once DOL_DOCUMENT_ROOT.'/blockedlog/lib/blockedlog.lib.php';
|
include_once DOL_DOCUMENT_ROOT.'/blockedlog/lib/blockedlog.lib.php';
|
||||||
if (!isALNEQualifiedVersion()) {
|
if (!isALNEQualifiedVersion()) {
|
||||||
|
|||||||
Reference in New Issue
Block a user