Skip to content

Commit

Permalink
Add documentation to site, and update navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
abti committed Dec 6, 2020
1 parent 33c96ba commit ebe24fc
Show file tree
Hide file tree
Showing 141 changed files with 67,770 additions and 4 deletions.
540 changes: 540 additions & 0 deletions docs/404.html

Large diffs are not rendered by default.

748 changes: 748 additions & 0 deletions docs/Getting-Started/index.html

Large diffs are not rendered by default.

731 changes: 731 additions & 0 deletions docs/Gobblin-Architecture/index.html

Large diffs are not rendered by default.

582 changes: 582 additions & 0 deletions docs/Powered-By/index.html

Large diffs are not rendered by default.

932 changes: 932 additions & 0 deletions docs/adaptors/Gobblin-Distcp/index.html

Large diffs are not rendered by default.

905 changes: 905 additions & 0 deletions docs/adaptors/Hive-Avro-To-ORC-Converter/index.html

Large diffs are not rendered by default.

702 changes: 702 additions & 0 deletions docs/case-studies/Hive-Distcp/index.html

Large diffs are not rendered by default.

942 changes: 942 additions & 0 deletions docs/case-studies/Kafka-HDFS-Ingestion/index.html

Large diffs are not rendered by default.

800 changes: 800 additions & 0 deletions docs/case-studies/Publishing-Data-to-S3/index.html

Large diffs are not rendered by default.

650 changes: 650 additions & 0 deletions docs/case-studies/Writing-ORC-Data/index.html

Large diffs are not rendered by default.

40 changes: 40 additions & 0 deletions docs/css/extra.css
@@ -0,0 +1,40 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

/* Make the code font size bigger so its easier to read */

code {
font-size: 90%;
}

/* Work around until the TOC becomes collapsable */

a.toctree-l4 {
display: none;
}

a.toctree-l5 {
display: none;
}

a.toctree-l6 {
display: none;
}

.wy-side-nav-search {
background-color: #333333;
}
12 changes: 12 additions & 0 deletions docs/css/theme.css

Large diffs are not rendered by default.

197 changes: 197 additions & 0 deletions docs/css/theme_extra.css
@@ -0,0 +1,197 @@
/*
* Sphinx doesn't have support for section dividers like we do in
* MkDocs, this styles the section titles in the nav
*
* https://github.com/mkdocs/mkdocs/issues/175
*/
.wy-menu-vertical span {
line-height: 18px;
padding: 0.4045em 1.618em;
display: block;
position: relative;
font-size: 90%;
color: #838383;
}

.wy-menu-vertical .subnav a {
padding: 0.4045em 2.427em;
}

/*
* Long navigations run off the bottom of the screen as the nav
* area doesn't scroll.
*
* https://github.com/mkdocs/mkdocs/pull/202
*
* Builds upon pull 202 https://github.com/mkdocs/mkdocs/pull/202
* to make toc scrollbar end before navigations buttons to not be overlapping.
*/
.wy-nav-side {
height: calc(100% - 45px);
overflow-y: auto;
min-height: 0;
}

.rst-versions{
border-top: 0;
height: 45px;
}

@media screen and (max-width: 768px) {
.wy-nav-side {
height: 100%;
}
}

/*
* readthedocs theme hides nav items when the window height is
* too small to contain them.
*
* https://github.com/mkdocs/mkdocs/issues/#348
*/
.wy-menu-vertical ul {
margin-bottom: 2em;
}

/*
* Wrap inline code samples otherwise they shoot of the side and
* can't be read at all.
*
* https://github.com/mkdocs/mkdocs/issues/313
* https://github.com/mkdocs/mkdocs/issues/233
* https://github.com/mkdocs/mkdocs/issues/834
*/
code {
white-space: pre-wrap;
word-wrap: break-word;
padding: 2px 5px;
}

/**
* Make code blocks display as blocks and give them the appropriate
* font size and padding.
*
* https://github.com/mkdocs/mkdocs/issues/855
* https://github.com/mkdocs/mkdocs/issues/834
* https://github.com/mkdocs/mkdocs/issues/233
*/
pre code {
white-space: pre;
word-wrap: normal;
display: block;
padding: 12px;
font-size: 12px;
}

/*
* Fix link colors when the link text is inline code.
*
* https://github.com/mkdocs/mkdocs/issues/718
*/
a code {
color: #2980B9;
}
a:hover code {
color: #3091d1;
}
a:visited code {
color: #9B59B6;
}

/*
* The CSS classes from highlight.js seem to clash with the
* ReadTheDocs theme causing some code to be incorrectly made
* bold and italic.
*
* https://github.com/mkdocs/mkdocs/issues/411
*/
pre .cs, pre .c {
font-weight: inherit;
font-style: inherit;
}

/*
* Fix some issues with the theme and non-highlighted code
* samples. Without and highlighting styles attached the
* formatting is broken.
*
* https://github.com/mkdocs/mkdocs/issues/319
*/
.no-highlight {
display: block;
padding: 0.5em;
color: #333;
}


/*
* Additions specific to the search functionality provided by MkDocs
*/

.search-results {
margin-top: 23px;
}

.search-results article {
border-top: 1px solid #E1E4E5;
padding-top: 24px;
}

.search-results article:first-child {
border-top: none;
}

form .search-query {
width: 100%;
border-radius: 50px;
padding: 6px 12px; /* csslint allow: box-model */
border-color: #D1D4D5;
}

.wy-menu-vertical li ul {
display: inherit;
}

.wy-menu-vertical li ul.subnav ul.subnav{
padding-left: 1em;
}

.wy-menu-vertical .subnav li.current > a {
padding-left: 2.42em;
}
.wy-menu-vertical .subnav li.current > ul li a {
padding-left: 3.23em;
}

/*
* Improve inline code blocks within admonitions.
*
* https://github.com/mkdocs/mkdocs/issues/656
*/
.admonition code {
color: #404040;
border: 1px solid #c7c9cb;
border: 1px solid rgba(0, 0, 0, 0.2);
background: #f8fbfd;
background: rgba(255, 255, 255, 0.7);
}

/*
* Account for wide tables which go off the side.
* Override borders to avoid wierdness on narrow tables.
*
* https://github.com/mkdocs/mkdocs/issues/834
* https://github.com/mkdocs/mkdocs/pull/1034
*/
.rst-content .section .docutils {
width: 100%;
overflow: auto;
display: block;
border: none;
}

td, th {
border: 1px solid #e1e4e5 !important; /* csslint allow: important */
border-collapse: collapse;
}

0 comments on commit ebe24fc

Please sign in to comment.