Skip to content

Commit

Permalink
Regenerated docs for commit e1f4264
Browse files Browse the repository at this point in the history
  • Loading branch information
klauer committed Nov 2, 2023
1 parent 8602b9c commit df1532c
Show file tree
Hide file tree
Showing 10 changed files with 67,632 additions and 16,717 deletions.
10 changes: 10 additions & 0 deletions _sources/versions.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ TwinCAT Versions

This summary was generated |today|.

This section lists the TwinCAT remote manager version for each project.
This is not the PLC runtime version.
A properly configured project will have the same runtime version (as in 4022)
and the latest remote manager bugfix version (even if above that of the
PLC runtime).

A mismatch of remote manager major runtime version and PLC
runtime version is a severe misconfiguration that could cause stability
and other issues.

.. list-table::
:header-rows: 1

Expand Down
7 changes: 7 additions & 0 deletions _static/expand-collapse.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
88 changes: 88 additions & 0 deletions _static/tree.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
/* Adapted from https://iamkate.com/code/tree-views/ - thanks! */

.tree{
--spacing : 1.5rem;
--radius : 10px;
}

.tree li{
display : block;
position : relative;
padding-left : calc(2 * var(--spacing) - var(--radius) - 2px);
}

.tree ul{
margin-left : calc(var(--radius) - var(--spacing));
padding-left : 0;
}

.tree ul li{
border-left : 2px solid #ddd;
}

.tree ul li:last-child{
border-color : transparent;
}

.tree ul li::before{
content : '';
display : block;
position : absolute;
top : calc(var(--spacing) / -2);
left : -2px;
width : calc(var(--spacing) + 2px);
height : calc(var(--spacing) + 1px);
border : solid #ddd;
border-width : 0 0 2px 2px;
}

.tree summary{
display : block;
cursor : pointer;
}

.tree summary::marker,
.tree summary::-webkit-details-marker{
display : none;
}

.tree summary:focus{
outline : none;
}

.tree summary:focus-visible{
outline : 1px dotted #000;
}

.tree summary::before{
content : '';
display : block;
position : absolute;
top : calc(var(--spacing) / 2 - var(--radius));
left : calc(var(--spacing) - var(--radius) - 1px);
width : calc(2 * var(--radius));
height : calc(2 * var(--radius));
border-radius : 50%;
background : #ddd;
}

.tree li::after {
content : '';
display : block;
position : absolute;
top : calc(var(--spacing) / 2 - var(--radius));
left : calc(var(--spacing) - var(--radius) - 1px);
width : calc(2 * var(--radius));
height : calc(2 * var(--radius));
border-radius : 50%;
background : transparent;
}

.tree summary::before{
z-index : 1;
background : #696 url('expand-collapse.svg') 0 0;
}

.tree details[open] > summary::before{
background-position : calc(-2 * var(--radius)) 0;
}
3 changes: 2 additions & 1 deletion axes.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<title>Axes by Project &mdash; plc-summary documentation</title>
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/tree.css" type="text/css" />
<!--[if lt IE 9]>
<script src="_static/js/html5shiv.min.js"></script>
<![endif]-->
Expand Down Expand Up @@ -136,7 +137,7 @@

<section id="axes-by-project">
<h1>Axes by Project<a class="headerlink" href="#axes-by-project" title="Permalink to this heading"></a></h1>
<p>This summary was generated Nov 02 2023 at 04:21:17 (-0700).</p>
<p>This summary was generated Nov 02 2023 at 11:56:28 (-0700).</p>
<section id="pcdshub-lcls-plc-bergmann-kohzu">
<h2>pcdshub/lcls-plc-bergmann-kohzu<a class="headerlink" href="#pcdshub-lcls-plc-bergmann-kohzu" title="Permalink to this heading"></a></h2>
<p>Version <a class="reference external" href="https://github.com/pcdshub/lcls-plc-bergmann-kohzu/tree/b4ba7a2b2ad6e14db0fb9639d23d6271eb7e25f0">b4ba7a2</a> - <a class="reference external" href="https://pcdshub.github.io/lcls-plc-bergmann-kohzu">Documentation</a></p>
Expand Down
Loading

0 comments on commit df1532c

Please sign in to comment.