Home
last modified time | relevance | path

Searched refs:relativePath (Results 1 – 25 of 32) sorted by relevance

12

/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
DUriResolver.php199 $relativePath = str_repeat('../', count($sourceSegments)) . implode('/', $targetSegments);
204 if ('' === $relativePath || false !== strpos(explode('/', $relativePath, 2)[0], ':')) {
205 $relativePath = "./$relativePath";
206 } elseif ('/' === $relativePath[0]) {
209 $relativePath = ".$relativePath";
211 $relativePath = "./$relativePath";
215 return $relativePath;
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/
DUriResolver.php188 $relativePath = str_repeat('../', count($sourceSegments)).implode('/', $targetSegments);
193 if ('' === $relativePath || false !== strpos(explode('/', $relativePath, 2)[0], ':')) {
194 $relativePath = "./$relativePath";
195 } elseif ('/' === $relativePath[0]) {
198 $relativePath = ".$relativePath";
200 $relativePath = "./$relativePath";
204 return $relativePath;
/plugin/findologicxmlexport/vendor/hoa/iterator/
DSplFileInfo.php69 * @param string $relativePath Relative path.
71 public function __construct($filename, $relativePath = null) argument
79 $this->_relativePath = $relativePath;
111 * @param string $relativePath Relative path.
114 public function setRelativePath($relativePath) argument
117 $this->_relativePath = $relativePath;
DDirectory.php108 * @param string $relativePath Relative path.
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PolyService/
DPolyFile.php29 public $relativePath; variable in Google\\Service\\PolyService\\PolyFile
52 public function setRelativePath($relativePath) argument
54 $this->relativePath = $relativePath;
61 return $this->relativePath;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DLP/
DGooglePrivacyDlpV2Container.php33 public $relativePath; variable in Google\\Service\\DLP\\GooglePrivacyDlpV2Container
82 public function setRelativePath($relativePath) argument
84 $this->relativePath = $relativePath;
91 return $this->relativePath;
/plugin/findologicxmlexport/vendor/hoa/iterator/Test/Unit/
DSplFileInfo.php80 $relativePath = 'hoa://Test/Vfs/A/B/',
82 $pathname = $relativePath . $relativePathname
84 ->when($result = new LUT\SplFileInfo($pathname . '?type=file', $relativePath))
93 ->isEqualTo($relativePath)
/plugin/combo/ComboStrap/
H A DLocalPath.php112 [$this->host, $relativePath] = explode("/", $pathWithoutNetworkShare, 2);
113 $this->path = "/$relativePath";
281 …$relativePath = substr($actualPath->toAbsoluteId(), strlen($localPath->toAbsoluteId()) + $sepChara…
282 …$relativePath = str_replace($this->getDirectorySeparator(), WikiPath::NAMESPACE_SEPARATOR_DOUBLE_P…
283 return LocalPath::createFromPathString($relativePath);
H A DWikiPath.php532 * @param string $relativePath
536 static function toDokuWikiSeparator(string $relativePath): string argument
538 return preg_replace('/[\\\\\/]/', ":", $relativePath);
614 $relativePath = $path->relativize($drivePath);
625 $relativePath = $path->relativize($drivePath);
631 $wikiId = $relativePath->toAbsoluteId();
H A DBrandTag.php247 $relativePath = str_replace(":", "/", $page->getWikiId());
249 ->setProperty("path", $relativePath)
/plugin/deletepageguard/build/
H A Dcreate-dist.php68 $relativePath = substr($currentPath, $sourceLen + 1);
69 $destPath = $dest . '/' . $relativePath;
/plugin/parserfunctions/
Dhelper.php158 $relativePath = ltrim($target, '/');
159 $fullPath = DOKU_INC . $relativePath;
/plugin/pagestats/
Dhelper.php117 $relativePath = str_replace($path, '', $file->getPathname());
122 if (strpos($relativePath, '/'.$ns.'/') !== false) {
/plugin/netlogo/inc/
Dsupport.php11 function relativePath($from, $to, $ps = '/') function
/plugin/combo/admin/
H A Dpagerules.php163 $relativePath = 'admin/' . $this->getPluginComponent() . '_intro';
164 echo($this->locale_xhtml($relativePath));
/plugin/dokullm/
H A DChromaDBClient.php794 $relativePath = str_replace($pagesDir, '', $filePath);
796 $relativePath = preg_replace('/\.txt$/', '', $relativePath);
798 $parts = array_filter(explode('/', $relativePath));
/plugin/asciidocjs/node_modules/source-map/
Dsource-map.d.ts88 …static fromStringWithSourceMap(code: string, sourceMapConsumer: SourceMapConsumer, relativePath?: …
DREADME.md52 …- [SourceNode.fromStringWithSourceMap(code, sourceMapConsumer[, relativePath])](#sourcenodefromstr…
570 #### SourceNode.fromStringWithSourceMap(code, sourceMapConsumer[, relativePath])
578 * `relativePath` The optional path that relative sources in `sourceMapConsumer`
/plugin/asciidocjs/node_modules/resolve/
Dreadme.markdown90 * `opts.pathFilter(pkg, path, relativePath)` - transform a path within a package
93 * relativePath - the path relative from the package.json location
198 * `opts.pathFilter(pkg, path, relativePath)` - transform a path within a package
201 * relativePath - the path relative from the package.json location
/plugin/icalevents/vendor/squizlabs/php_codesniffer/
DCodeSniffer.php1672 $relativePath = $path;
1675 $relativePath = substr($path, (strlen($basedir) + 1));
1706 $testPath = $relativePath;
/plugin/asciidocjs/node_modules/pug-filters/node_modules/source-map/
DREADME.md52 …- [SourceNode.fromStringWithSourceMap(code, sourceMapConsumer[, relativePath])](#sourcenodefromstr…
557 #### SourceNode.fromStringWithSourceMap(code, sourceMapConsumer[, relativePath])
565 * `relativePath` The optional path that relative sources in `sourceMapConsumer`
/plugin/xlsx2dw/packages/jszip/
Djszip.js987 zip.forEach(function (relativePath, file) { argument
995 name : relativePath,
1519 var filename, relativePath, file;
1524 relativePath = filename.slice(this.root.length, filename.length);
1525 …if (relativePath && filename.slice(0, this.root.length) === this.root) { // the file is in the cur…
1526 …cb(relativePath, file); // TODO reverse the parameters ? need to be clean AND consistent with the …
1540 this.forEach(function (relativePath, entry) { argument
1541 if (search(relativePath, entry)) { // the file matches the function
1562 return this.filter(function(relativePath, file) { argument
1563 return !file.dir && regexp.test(relativePath);
[all …]
/plugin/datatables/assets/jszip/
Djszip.js987 zip.forEach(function (relativePath, file) { argument
995 name : relativePath,
1519 var filename, relativePath, file;
1524 relativePath = filename.slice(this.root.length, filename.length);
1525 …if (relativePath && filename.slice(0, this.root.length) === this.root) { // the file is in the cur…
1526 …cb(relativePath, file); // TODO reverse the parameters ? need to be clean AND consistent with the …
1540 this.forEach(function (relativePath, entry) { argument
1541 if (search(relativePath, entry)) { // the file matches the function
1562 return this.filter(function(relativePath, file) { argument
1563 return !file.dir && regexp.test(relativePath);
[all …]
/plugin/amcharts/assets/amcharts/plugins/export/libs/jszip/
Djszip.js1257 filename, relativePath, file, fileClone;
1265 relativePath = filename.slice(this.root.length, filename.length);
1267 search(relativePath, fileClone)) { // and the file matches the function
1287 return this.filter(function(relativePath, file) { argument
1288 return !file.dir && regexp.test(relativePath);
1292 return this.filter(function(relativePath, file) { argument
1293 return !file.dir && relativePath === name;
1315 return this.filter(function(relativePath, file) { argument
1316 return file.dir && arg.test(relativePath);
1351 var kids = this.filter(function(relativePath, file) { argument
/plugin/calendar/
Dadmin.php5704 $relativePath = $zipPath . substr($itemPath, strlen($dir));
5708 $dirInZip = rtrim($relativePath, '/') . '/';
5713 if ($zip->addFile($itemPath, $relativePath)) {

12