-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integrate into enums/dataframes into device page
- data models now accesible globally which enables moreintegrated webpages - point src submodule to main - MRef.html.extension.js extended to search global data models for enums and dataFrames - separated enums and classes into completely different partial templates - dataframes and enums excluded in filter.yml
- Loading branch information
Showing
12 changed files
with
696 additions
and
203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule onix-refactor
updated
from 4088fd to e8add7
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,84 +1,7 @@ | ||
{{!Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license.}} | ||
{{!master(layout/_master.tmpl)}} | ||
|
||
{{^_splitReference}} | ||
{{#isClass}} | ||
|
||
<div> | ||
<h1 id="{{id}}" data-uid="{{uid}}" class="text-break" style="display:inline-block;"> | ||
{{#inClass}}{{name.0.value}}{{/inClass}} | ||
{{#sourceurl}}<a class="header-action link-secondary" title="View source" href="{{sourceurl}}"><i class="bi bi-code-slash"></i></a>{{/sourceurl}} | ||
</h1> | ||
<p style="display:inline;"> | ||
{{#sourceNode}} Source Operator {{/sourceNode}} | ||
{{#sinkNode}} Sink Operator {{/sinkNode}} | ||
{{#combinatorNode}} Combinator Operator {{/combinatorNode}} | ||
</p> | ||
</div> | ||
|
||
<div class="markdown summary">{{{summary}}}</div> | ||
<div class="markdown level0 remarks">{{{remarks}}}</div> | ||
|
||
{{#showWorkflow}} | ||
<div class="workflow"><p><img src="../workflows/operators/{{name.0.value}}.bonsai" alt="{{name.0.value}} Workflow"></p></div> | ||
{{/showWorkflow}} | ||
|
||
<div class="markdown conceptual">{{{conceptual}}}</div> | ||
|
||
{{#children}} | ||
{{#nodeMethod}} | ||
|
||
<h2>Inputs & Outputs</h2> | ||
|
||
{{>partials/class.methods}} | ||
|
||
{{/nodeMethod}} | ||
{{/children}} | ||
|
||
{{#children}} | ||
{{#inProperty}} | ||
|
||
<h2>Properties</h2> | ||
<table> | ||
<tr> | ||
<th style="width: 15%;">Property</th> | ||
<th style="width: 15%;">Type</th> | ||
<th style="width: 70%;">Description</th> | ||
</tr> | ||
{{>partials/class.properties}} | ||
</table> | ||
|
||
{{/inProperty}} | ||
{{/children}} | ||
|
||
{{/isClass}} | ||
|
||
{{#isEnum}} | ||
|
||
<h1 id="{{id}}" data-uid="{{uid}}" class="text-break"> | ||
{{#inEnum}}{{name.0.value}}{{/inEnum}} | ||
{{#sourceurl}}<a class="header-action link-secondary" title="View source" href="{{sourceurl}}"><i class="bi bi-code-slash"></i></a>{{/sourceurl}} | ||
</h1> | ||
|
||
<div class="markdown summary">{{{summary}}}</div> | ||
<div class="markdown level0 remarks">{{#remarks}}{{{remarks}}}{{/remarks}}</div> | ||
<div class="markdown conceptual">{{{conceptual}}}</div> | ||
|
||
{{#children}} | ||
{{#inField}} | ||
|
||
<h2>Fields</h2> | ||
<table> | ||
<tr> | ||
<th>Value</th> | ||
<th>Description</th> | ||
</tr> | ||
{{>partials/enum.fields}} | ||
</table> | ||
|
||
{{/inField}} | ||
{{/children}} | ||
{{!master(layout/_master.tmpl)}} | ||
|
||
{{/isEnum}} | ||
{{>partials/class}} | ||
|
||
{{/_splitReference}} | ||
{{>partials/enum}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
exports.getOptions = function (model) { | ||
return { | ||
isShared: true | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.