Add AC/DC adaptor schematics
Update mkdocs deprecated global variable
This commit is contained in:
parent
47560cb812
commit
e2bd20cd43
4 changed files with 199 additions and 3 deletions
|
@ -34,6 +34,7 @@ Mechanical|Helios4 Case B Assembled|rev 4G|2017-09-01|[Download](/files/casing/H
|
||||||
|
|
||||||
Doc-Type | Filename | Version | Date | Download | Description
|
Doc-Type | Filename | Version | Date | Download | Description
|
||||||
---------|----------|---------|------|----------|-------------
|
---------|----------|---------|------|----------|-------------
|
||||||
|
Schematics|YCZX Schematics 12V8A|rev xx|2017-11-1|[Download](/files/power-supply/YCZX_Schematics_12V8A.pdf)|AC/DC Power Adapter Schematics
|
||||||
Certificate|YCZX AC/DC FCC VoC|rev xx|2016-03-22|[Download](/files/power-supply/YCZX_ACDC_FCC_VoC.jpg)|AC/DC Power Adapter FCC Verification of Conformity
|
Certificate|YCZX AC/DC FCC VoC|rev xx|2016-03-22|[Download](/files/power-supply/YCZX_ACDC_FCC_VoC.jpg)|AC/DC Power Adapter FCC Verification of Conformity
|
||||||
Certificate|YCZX AC/DC CE CoC|rev xx|2016-03-22|[Download](/files/power-supply/YCZX_ACDC_CE_CoC.jpg)|AC/DC Power Adapter CE Certificate of Compliance
|
Certificate|YCZX AC/DC CE CoC|rev xx|2016-03-22|[Download](/files/power-supply/YCZX_ACDC_CE_CoC.jpg)|AC/DC Power Adapter CE Certificate of Compliance
|
||||||
|
|
||||||
|
|
BIN
docs/files/power-supply/YCZX_Schematics_12V8A.pdf
Normal file
BIN
docs/files/power-supply/YCZX_Schematics_12V8A.pdf
Normal file
Binary file not shown.
|
@ -3,7 +3,6 @@ site_name: 'Helios4 Wiki'
|
||||||
site_description: 'Helios4 Wiki'
|
site_description: 'Helios4 Wiki'
|
||||||
site_author: 'Kobol Team'
|
site_author: 'Kobol Team'
|
||||||
site_url: 'https://wiki.kobol.io'
|
site_url: 'https://wiki.kobol.io'
|
||||||
site_favicon: 'img/favicon.png'
|
|
||||||
|
|
||||||
# Repository
|
# Repository
|
||||||
repo_name: 'Helios4 GitHub Repo'
|
repo_name: 'Helios4 GitHub Repo'
|
||||||
|
@ -13,8 +12,9 @@ repo_url: 'https://github.com/helios-4'
|
||||||
copyright: 'Copyright © Kobol Team 2017'
|
copyright: 'Copyright © Kobol Team 2017'
|
||||||
|
|
||||||
# Documentation and theme
|
# Documentation and theme
|
||||||
theme: 'material'
|
theme:
|
||||||
theme_dir: 'theme'
|
name: 'material'
|
||||||
|
custom_dir: 'theme'
|
||||||
|
|
||||||
# Options
|
# Options
|
||||||
extra:
|
extra:
|
||||||
|
|
195
theme/base.html
Normal file
195
theme/base.html
Normal file
|
@ -0,0 +1,195 @@
|
||||||
|
{% import "partials/language.html" as lang with context %}
|
||||||
|
{% set feature = config.theme.feature %}
|
||||||
|
{% set palette = config.theme.palette %}
|
||||||
|
{% set font = config.theme.font %}
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="{{ lang.t('language') }}" class="no-js">
|
||||||
|
<head>
|
||||||
|
{% block site_meta %}
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||||
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||||
|
{% if page and page.meta.description %}
|
||||||
|
<meta name="description" content="{{ page.meta.description }}">
|
||||||
|
{% elif config.site_description %}
|
||||||
|
<meta name="description" content="{{ config.site_description }}">
|
||||||
|
{% endif %}
|
||||||
|
{% if page.canonical_url %}
|
||||||
|
<link rel="canonical" href="{{ page.canonical_url }}">
|
||||||
|
{% endif %}
|
||||||
|
{% if page and page.meta.author %}
|
||||||
|
<meta name="author" content="{{ page.meta.author | first }}">
|
||||||
|
{% elif config.site_author %}
|
||||||
|
<meta name="author" content="{{ config.site_author }}">
|
||||||
|
{% endif %}
|
||||||
|
{% for key in [
|
||||||
|
"clipboard.copy",
|
||||||
|
"clipboard.copied",
|
||||||
|
"search.language",
|
||||||
|
"search.result.none",
|
||||||
|
"search.result.one",
|
||||||
|
"search.result.other",
|
||||||
|
"search.tokenizer"
|
||||||
|
] %}
|
||||||
|
<meta name="lang:{{ key }}" content="{{ lang.t(key) }}">
|
||||||
|
{% endfor %}
|
||||||
|
<link rel="shortcut icon" href="{{ base_url }}/img/favicon.png">
|
||||||
|
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-2.1.0">
|
||||||
|
{% endblock %}
|
||||||
|
{% block htmltitle %}
|
||||||
|
{% if page and page.meta.title %}
|
||||||
|
<title>{{ page.meta.title }}</title>
|
||||||
|
{% elif page and page.title and not page.is_homepage %}
|
||||||
|
<title>{{ page.title }} - {{ config.site_name }}</title>
|
||||||
|
{% else %}
|
||||||
|
<title>{{ config.site_name }}</title>
|
||||||
|
{% endif %}
|
||||||
|
{% endblock %}
|
||||||
|
{% block styles %}
|
||||||
|
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-3368aa6b74.css">
|
||||||
|
{% if palette.primary or palette.accent %}
|
||||||
|
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-95ad5566f9.palette.css">
|
||||||
|
{% endif %}
|
||||||
|
{% endblock %}
|
||||||
|
{% block libs %}
|
||||||
|
<script src="{{ base_url }}/assets/javascripts/modernizr-e826f8942a.js"></script>
|
||||||
|
{% endblock %}
|
||||||
|
{% block fonts %}
|
||||||
|
{% if font != false %}
|
||||||
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family={{
|
||||||
|
font.text | replace(' ', '+') + ':300,400,400i,700|' +
|
||||||
|
font.code | replace(' ', '+')
|
||||||
|
}}">
|
||||||
|
<style>body,input{font-family:"{{ font.text }}","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"{{ font.code }}","Courier New",Courier,monospace}</style>
|
||||||
|
{% endif %}
|
||||||
|
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
|
||||||
|
{% endblock %}
|
||||||
|
{% for path in extra_css %}
|
||||||
|
<link rel="stylesheet" href="{{ path }}">
|
||||||
|
{% endfor %}
|
||||||
|
{% block extrahead %}{% endblock %}
|
||||||
|
</head>
|
||||||
|
{% if palette.primary or palette.accent %}
|
||||||
|
{% set primary = palette.primary | replace(" ", "-") | lower %}
|
||||||
|
{% set accent = palette.accent | replace(" ", "-") | lower %}
|
||||||
|
{% if palette.primary and palette.accent %}
|
||||||
|
<body data-md-color-primary="{{ primary }}" data-md-color-accent="{{ accent }}">
|
||||||
|
{% elif palette.primary %}
|
||||||
|
<body data-md-color-primary="{{ primary }}">
|
||||||
|
{% elif palette.accent %}
|
||||||
|
<body data-md-color-accent="{{ accent }}">
|
||||||
|
{% endif %}
|
||||||
|
{% else %}
|
||||||
|
<body>
|
||||||
|
{% endif %}
|
||||||
|
<svg class="md-svg">
|
||||||
|
<defs>
|
||||||
|
{% set platform = config.extra.repo_icon or config.repo_url %}
|
||||||
|
{% if "github" in platform %}
|
||||||
|
{% include "assets/images/icons/github-1da075986e.svg" %}
|
||||||
|
{% elif "gitlab" in platform %}
|
||||||
|
{% include "assets/images/icons/gitlab-5ad3f9f9e5.svg" %}
|
||||||
|
{% elif "bitbucket" in platform %}
|
||||||
|
{% include "assets/images/icons/bitbucket-670608a71a.svg" %}
|
||||||
|
{% endif %}
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
<input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="drawer">
|
||||||
|
<input class="md-toggle" data-md-toggle="search" type="checkbox" id="search">
|
||||||
|
<label class="md-overlay" data-md-component="overlay" for="drawer"></label>
|
||||||
|
{% block header %}
|
||||||
|
{% include "partials/header.html" %}
|
||||||
|
{% endblock %}
|
||||||
|
<div class="md-container">
|
||||||
|
{% if feature.tabs %}
|
||||||
|
{% include "partials/tabs.html" %}
|
||||||
|
{% endif %}
|
||||||
|
<main class="md-main">
|
||||||
|
<div class="md-main__inner md-grid" data-md-component="container">
|
||||||
|
{% block site_nav %}
|
||||||
|
{% if nav %}
|
||||||
|
<div class="md-sidebar md-sidebar--primary" data-md-component="navigation">
|
||||||
|
<div class="md-sidebar__scrollwrap">
|
||||||
|
<div class="md-sidebar__inner">
|
||||||
|
{% include "partials/nav.html" %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
{% if page.toc %}
|
||||||
|
<div class="md-sidebar md-sidebar--secondary" data-md-component="toc">
|
||||||
|
<div class="md-sidebar__scrollwrap">
|
||||||
|
<div class="md-sidebar__inner">
|
||||||
|
{% include "partials/toc.html" %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
{% endblock %}
|
||||||
|
<div class="md-content">
|
||||||
|
<article class="md-content__inner md-typeset">
|
||||||
|
{% block content %}
|
||||||
|
{% if page.edit_url %}
|
||||||
|
<a href="{{ page.edit_url }}" title="{{ lang.t('edit.link.title') }}" class="md-icon md-content__icon"></a>
|
||||||
|
{% endif %}
|
||||||
|
{% if not "\x3ch1" in page.content %}
|
||||||
|
<h1>{{ page.title | default(config.site_name, true)}}</h1>
|
||||||
|
{% endif %}
|
||||||
|
{{ page.content }}
|
||||||
|
{% block source %}
|
||||||
|
{% if page.meta.source %}
|
||||||
|
<h2 id="__source">{{ lang.t("meta.source") }}</h2>
|
||||||
|
{% set path = page.meta.path | default([""]) %}
|
||||||
|
{% set file = page.meta.source %}
|
||||||
|
<a href="{{ [config.repo_url, path, file] | join('/') }}" title="{{ file }}" class="md-source-file">
|
||||||
|
{{ file }}
|
||||||
|
</a>
|
||||||
|
{% endif %}
|
||||||
|
{% endblock %}
|
||||||
|
{% endblock %}
|
||||||
|
{% block disqus %}
|
||||||
|
{% if config.extra.disqus and not page.is_homepage %}
|
||||||
|
<h2 id="__comments">{{ lang.t("meta.comments") }}</h2>
|
||||||
|
{% include "partials/disqus.html" %}
|
||||||
|
{% endif %}
|
||||||
|
{% endblock %}
|
||||||
|
</article>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
{% block footer %}
|
||||||
|
{% include "partials/footer.html" %}
|
||||||
|
{% endblock %}
|
||||||
|
</div>
|
||||||
|
{% block scripts %}
|
||||||
|
<script src="{{ base_url }}/assets/javascripts/application-a5397a53ce.js"></script>
|
||||||
|
{% if lang.t("search.language") != "en" %}
|
||||||
|
{% set languages = lang.t("search.language").split(",") %}
|
||||||
|
{% if languages | length and languages[0] != "" %}
|
||||||
|
{% set path = base_url + "/assets/javascripts/lunr" %}
|
||||||
|
<script src="{{ path }}/lunr.stemmer.support.js"></script>
|
||||||
|
{% for language in languages | map("trim") %}
|
||||||
|
{% if language != "en" %}
|
||||||
|
{% if language == "jp" %}
|
||||||
|
<script src="{{ path }}/tinyseg.js"></script>
|
||||||
|
{% endif %}
|
||||||
|
<script src="{{ path }}/lunr.{{ language }}.js"></script>
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
{% if languages | length > 1 %}
|
||||||
|
<script src="{{ path }}/lunr.multi.js"></script>
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
<script>app.initialize({version:"{{ mkdocs_version }}",url:{base:"{{ base_url }}"}})</script>
|
||||||
|
{% for path in extra_javascript %}
|
||||||
|
<script src="{{ path }}"></script>
|
||||||
|
{% endfor %}
|
||||||
|
{% endblock %}
|
||||||
|
{% block analytics %}
|
||||||
|
{% if config.google_analytics %}
|
||||||
|
<script>!function(e,t,a,n,o,c,i){e.GoogleAnalyticsObject=o,e[o]=e[o]||function(){(e[o].q=e[o].q||[]).push(arguments)},e[o].l=1*new Date,c=t.createElement(a),i=t.getElementsByTagName(a)[0],c.async=1,c.src=n,i.parentNode.insertBefore(c,i)}(window,document,"script","https://www.google-analytics.com/analytics.js","ga"),ga("create","{{ config.google_analytics[0] }}","{{ config.google_analytics[1] }}"),ga("set","anonymizeIp",!0),ga("send","pageview");var links=document.getElementsByTagName("a");Array.prototype.map.call(links,function(e){e.host!=document.location.host&&e.addEventListener("click",function(){var t=e.getAttribute("data-md-action")||"follow";ga("send","event","outbound",t,e.href)})});var query=document.forms.search.query;query.addEventListener("blur",function(){if(this.value){var e=document.location.pathname;ga("send","pageview",e+"?q="+this.value)}})</script>
|
||||||
|
{% endif %}
|
||||||
|
{% endblock %}
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in a new issue