mirror of
https://github.com/mbierlee/mirage-config.git
synced 2024-11-15 04:44:01 +01:00
102 lines
3.3 KiB
HTML
102 lines
3.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0"/>
|
|
<title>Function ConfigDictionary.getConfig</title>
|
|
<link rel="stylesheet" href="../../css/style.min.css"/>
|
|
<script type="text/javascript" src="../../js/script.min.js"></script>
|
|
</head>
|
|
<body onload="setupDdox();">
|
|
<header></header>
|
|
<nav id="main-nav">
|
|
<div>
|
|
<noscript>
|
|
<p style="color: red">The search functionality needs JavaScript enabled</p>
|
|
</noscript>
|
|
<div id="symbolSearchPane" style="display: none">
|
|
<form action="#" method="GET">
|
|
<input id="symbolSearch" type="text" name="q" placeholder="Search for symbols" autocomplete="off" onchange="performSymbolSearch(24);" onkeypress="this.onchange();" onpaste="this.onchange();" oninput="this.onchange();" autofocus/>
|
|
</form>
|
|
<ul id="symbolSearchResults" class="symbolList" style="display: none"></ul><script type="application/javascript" src="../../symbols.js"></script><script type="application/javascript">var symbolSearchRootDir = "../../";
|
|
document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
|
</div>
|
|
<ul class="tree-view">
|
|
<li class="tree-view ">
|
|
<div class="package ">
|
|
<a href="../../mirage.html">mirage</a>
|
|
</div>
|
|
<ul class="tree-view">
|
|
<li>
|
|
<div class="module selected">
|
|
<a href="../../mirage/config.html">config</a>
|
|
</div>
|
|
</li>
|
|
<li>
|
|
<div class="module ">
|
|
<a href="../../mirage/java.html">java</a>
|
|
</div>
|
|
</li>
|
|
<li>
|
|
<div class="module ">
|
|
<a href="../../mirage/json.html">json</a>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<p id="main-nav-footer">
|
|
Built with
|
|
<a href="https://github.com/MartinNowak/scod">scod</a>
|
|
</p>
|
|
</nav>
|
|
<div id="main-contents">
|
|
<div>
|
|
<h1>Function ConfigDictionary.getConfig</h1><p>Fetch a sub-section of the config as another config.
|
|
</p>
|
|
<div class="prototype">
|
|
<code class="lang-d">
|
|
<div class="single-prototype">
|
|
<a href="../../mirage/config/ConfigDictionary.html"><span class="typ">ConfigDictionary</span></a> <span class="pln">getConfig</span>
|
|
<span class="pun">(</span>
|
|
<br/>
|
|
<span class="typ">string</span> <span class="pln">configPath</span>
|
|
<br/>
|
|
<span class="pun">)</span><span class="pun">;</span>
|
|
</div>
|
|
</code>
|
|
</div>
|
|
<section><p>Commonly used for example to fetch further configuration from arrays, e.g.: <code class="lang-d"><span class="pln">getConfig</span><span class="pun">(</span><span class="str">"http.servers[3]"</span><span class="pun">)</span></code>
|
|
which then returns the rest of the config at that path.
|
|
</p>
|
|
</section>
|
|
|
|
<section><h2>Parameters</h2>
|
|
<table><col class="caption"><tr><th>Name</th><th>Description</th></tr>
|
|
<tr><td id="configPath">configPath</td><td> Path to the wanted config. See get().</td></tr>
|
|
</table>
|
|
</section>
|
|
<section><h2>Returns</h2>
|
|
<p>A sub-section of the configuration.
|
|
</p>
|
|
</section>
|
|
|
|
</div>
|
|
<footer>
|
|
<div id="license-info">
|
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
|
</p>
|
|
|
|
<p>2022-2023 Mike Bierlee
|
|
</p>
|
|
|
|
<p>This software is licensed under the terms of the MIT license.
|
|
The full terms of the license can be found in the LICENSE file.
|
|
</p>
|
|
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html> |