Home
last modified time | relevance | path

Searched refs:requestDir (Results 1 – 8 of 8) sorted by relevance

/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/core/Classes/Http/
H A DNormalizedParams.php133 protected $requestDir = ''; variable in TYPO3\\CMS\\Core\\Http\\NormalizedParams
305 $requestDir = $this->requestDir = $requestHost . GeneralUtility::dirname($scriptName) . '/';
309 … $siteUrl = $this->siteUrl = self::determineSiteUrl($requestDir, $pathThisScript, $pathSite . '/');
400 return $this->requestDir;
776 * @param string $requestDir Full Uri with path, but without script name and query parts
781 …protected static function determineSiteUrl(string $requestDir, string $pathThisScript, string $pat… argument
785 $siteUrl = $requestDir;
788 $siteUrl = substr($requestDir, 0, -strlen($pathThisScriptDir));
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/
H A DNormalizedParams.php140 protected $requestDir = ''; variable in TYPO3\\CMS\\Core\\Http\\NormalizedParams
326 $requestDir = $this->requestDir = $requestHost . GeneralUtility::dirname($scriptName) . '/';
330 … $siteUrl = $this->siteUrl = self::determineSiteUrl($requestDir, $pathThisScript, $pathSite . '/');
421 return $this->requestDir;
810 * @param string $requestDir Full Uri with path, but without script name and query parts
815 …protected static function determineSiteUrl(string $requestDir, string $pathThisScript, string $pat… argument
818 $siteUrl = (string)substr($requestDir, 0, -strlen($pathThisScriptDir));
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/core/Classes/Http/
H A DNormalizedParams.php136 protected $requestDir = ''; variable in TYPO3\\CMS\\Core\\Http\\NormalizedParams
322 $requestDir = $this->requestDir = $requestHost . GeneralUtility::dirname($scriptName) . '/';
326 … $siteUrl = $this->siteUrl = self::determineSiteUrl($requestDir, $pathThisScript, $pathSite . '/');
417 return $this->requestDir;
815 * @param string $requestDir Full Uri with path, but without script name and query parts
820 …protected static function determineSiteUrl(string $requestDir, string $pathThisScript, string $pat… argument
823 $siteUrl = substr($requestDir, 0, -strlen($pathThisScriptDir));
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/core/Classes/Http/Security/
H A DReferrerEnforcer.php49 protected $requestDir; variable in TYPO3\\CMS\\Core\\Http\\Security\\ReferrerEnforcer
55 $this->requestDir = $this->resolveRequestDir($request);
121 if (strpos($referrer, $this->requestDir) === 0) {
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/core/Classes/Http/Security/
H A DReferrerEnforcer.php49 protected $requestDir; variable in TYPO3\\CMS\\Core\\Http\\Security\\ReferrerEnforcer
55 $this->requestDir = $this->resolveRequestDir($request);
123 if (strpos($referrer, $this->requestDir) === 0) {
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Classes/Http/Security/
H A DReferrerEnforcer.php49 protected $requestDir; variable in TYPO3\\CMS\\Core\\Http\\Security\\ReferrerEnforcer
55 $this->requestDir = $this->resolveRequestDir($request);
123 if (strpos($referrer, $this->requestDir) === 0) {
/dports/net-mgmt/icinga2/icinga2-2.13.2/lib/remote/
H A Djsonrpcconnection-pki.cpp118 String requestDir = ApiListener::GetCertificateRequestsDir(); in RequestCertificateHandler() local
119 String requestPath = requestDir + "/" + certFingerprint + ".json"; in RequestCertificateHandler()
148 } else if (Utility::PathExists(requestDir + "/" + certFingerprint + ".removed")) { in RequestCertificateHandler()
247 Utility::MkDirP(requestDir, 0700); in RequestCertificateHandler()
360 String requestDir = ApiListener::GetCertificateRequestsDir(); in UpdateCertificateHandler() local
361 String requestPath = requestDir + "/" + certFingerprint + ".json"; in UpdateCertificateHandler()
H A Dpkiutility.cpp441 String requestDir = ApiListener::GetCertificateRequestsDir(); in GetCertificateRequests() local
447 if (Utility::PathExists(requestDir)) in GetCertificateRequests()
448 …Utility::Glob(requestDir + "/*." + ext, [requests](const String& requestFile) { CollectRequestHand… in GetCertificateRequests()