From fbc34498be966f78e30ec001e125cf6fa351db5d Mon Sep 17 00:00:00 2001 From: "Kamat, Trivikram" <16024985+trivikr@users.noreply.github.com> Date: Thu, 2 Sep 2021 12:27:57 -0700 Subject: [PATCH 1/4] chore: remove unused docs:guide --- tasks/docs.rake | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/tasks/docs.rake b/tasks/docs.rake index b5c70e810f..4c03f50d05 100644 --- a/tasks/docs.rake +++ b/tasks/docs.rake @@ -13,18 +13,8 @@ namespace :docs do cp "tasks/fixtures/jquery.js", "doc/latest/js/jquery.js" end - desc "Build guide documentation" - task :guide => :directory do - ENV['SITEMAP_BASEURL'] = 'http://docs.aws.amazon.com/AWSJavaScriptSDK/guide/' - - rm_rf "doc/guide" - args = %w(-q --yardopts .yardopts_guide) - args += ENV['ARGS'].split(/\s+/) if ENV['ARGS'] - sh "bundle exec yard #{args.join(' ')}" - end - - desc "Builds API and guide documentation" - task :all => [:api, :guide] + desc "Builds API documentation" + task :all => [:api] end desc "Builds all documentation" From 9e50813073fda93f794b612c2c637bf32e4a3376 Mon Sep 17 00:00:00 2001 From: "Kamat, Trivikram" <16024985+trivikr@users.noreply.github.com> Date: Thu, 2 Sep 2021 12:28:50 -0700 Subject: [PATCH 2/4] chore: remove redundant docs:all call --- tasks/docs.rake | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tasks/docs.rake b/tasks/docs.rake index 4c03f50d05..fa053194a5 100644 --- a/tasks/docs.rake +++ b/tasks/docs.rake @@ -12,10 +12,8 @@ namespace :docs do sh "bundle exec yard #{args.join(' ')}" cp "tasks/fixtures/jquery.js", "doc/latest/js/jquery.js" end - - desc "Builds API documentation" - task :all => [:api] end -desc "Builds all documentation" -task :docs => ['docs:all'] +# TODO: move code for docs:api under docs once it's updated in internal release code +desc "Builds API documentation" +task :docs => ['docs:api'] From 4f0a4e56ced5d6a566aca26f041b4b38e1516b02 Mon Sep 17 00:00:00 2001 From: "Kamat, Trivikram" <16024985+trivikr@users.noreply.github.com> Date: Thu, 2 Sep 2021 12:37:54 -0700 Subject: [PATCH 3/4] chore: remove templates for flasky_sphinx_guide --- .../fulldoc/html/css/highlight.github.css | 127 -- .../fulldoc/html/css/style.css | 1193 ----------------- .../fulldoc/html/img/logo.png | Bin 4031 -> 0 bytes .../fulldoc/html/js/app.js | 33 - .../fulldoc/html/js/highlight.pack.js | 27 - .../fulldoc/html/js/sphinx/AUTHORS | 55 - .../fulldoc/html/js/sphinx/LICENSE | 25 - .../fulldoc/html/js/sphinx/doctools.js | 247 ---- .../fulldoc/html/js/sphinx/file.png | Bin 392 -> 0 bytes .../fulldoc/html/js/sphinx/searchtools.js | 568 -------- .../fulldoc/html/js/underscore.js | 23 - .../fulldoc/html/search.erb | 29 - .../fulldoc/html/search_index.erb | 1 - .../flasky_sphinx_guide/fulldoc/html/setup.rb | 75 -- .../layout/html/layout.erb | 93 -- .../flasky_sphinx_guide/layout/html/setup.rb | 9 - .../layout/html/sidebar.erb | 45 - .../onefile/html/layout.erb | 51 - .../flasky_sphinx_guide/onefile/html/setup.rb | 1 - 19 files changed, 2602 deletions(-) delete mode 100644 doc-src/templates/flasky_sphinx_guide/fulldoc/html/css/highlight.github.css delete mode 100644 doc-src/templates/flasky_sphinx_guide/fulldoc/html/css/style.css delete mode 100644 doc-src/templates/flasky_sphinx_guide/fulldoc/html/img/logo.png delete mode 100644 doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/app.js delete mode 100644 doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/highlight.pack.js delete mode 100644 doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/sphinx/AUTHORS delete mode 100644 doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/sphinx/LICENSE delete mode 100644 doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/sphinx/doctools.js delete mode 100644 doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/sphinx/file.png delete mode 100644 doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/sphinx/searchtools.js delete mode 100644 doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/underscore.js delete mode 100644 doc-src/templates/flasky_sphinx_guide/fulldoc/html/search.erb delete mode 100644 doc-src/templates/flasky_sphinx_guide/fulldoc/html/search_index.erb delete mode 100644 doc-src/templates/flasky_sphinx_guide/fulldoc/html/setup.rb delete mode 100644 doc-src/templates/flasky_sphinx_guide/layout/html/layout.erb delete mode 100644 doc-src/templates/flasky_sphinx_guide/layout/html/setup.rb delete mode 100644 doc-src/templates/flasky_sphinx_guide/layout/html/sidebar.erb delete mode 100644 doc-src/templates/flasky_sphinx_guide/onefile/html/layout.erb delete mode 100644 doc-src/templates/flasky_sphinx_guide/onefile/html/setup.rb diff --git a/doc-src/templates/flasky_sphinx_guide/fulldoc/html/css/highlight.github.css b/doc-src/templates/flasky_sphinx_guide/fulldoc/html/css/highlight.github.css deleted file mode 100644 index e534e87a03..0000000000 --- a/doc-src/templates/flasky_sphinx_guide/fulldoc/html/css/highlight.github.css +++ /dev/null @@ -1,127 +0,0 @@ -/* - -github.com style (c) Vasily Polovnyov - -*/ - -pre code { - display: block; padding: 0.5em; - color: #333; - /*background: #f8f8ff*/ -} - -pre .comment, -pre .template_comment, -pre .diff .header, -pre .javadoc { - color: #998; - font-style: italic -} - -pre .keyword, -pre .css .rule .keyword, -pre .winutils, -pre .javascript .title, -pre .nginx .title, -pre .subst, -pre .request, -pre .status { - color: #333; - font-weight: bold -} - -pre .number, -pre .hexcolor, -pre .ruby .constant { - color: #099; -} - -pre .string, -pre .tag .value, -pre .phpdoc, -pre .tex .formula { - color: #d14 -} - -pre .title, -pre .id { - color: #900; - font-weight: bold -} - -pre .javascript .title, -pre .lisp .title, -pre .clojure .title, -pre .subst { - font-weight: normal -} - -pre .class .title, -pre .haskell .type, -pre .vhdl .literal, -pre .tex .command { - color: #458; - font-weight: bold -} - -pre .tag, -pre .tag .title, -pre .rules .property, -pre .django .tag .keyword { - color: #000080; - font-weight: normal -} - -pre .attribute, -pre .variable, -pre .lisp .body { - color: #008080 -} - -pre .regexp { - color: #009926 -} - -pre .class { - color: #458; - font-weight: bold -} - -pre .symbol, -pre .ruby .symbol .string, -pre .lisp .keyword, -pre .tex .special, -pre .prompt { - color: #990073 -} - -pre .built_in, -pre .lisp .title, -pre .clojure .built_in { - color: #0086b3 -} - -pre .preprocessor, -pre .pi, -pre .doctype, -pre .shebang, -pre .cdata { - color: #999; - font-weight: bold -} - -pre .deletion { - background: #fdd -} - -pre .addition { - background: #dfd -} - -pre .diff .change { - background: #0086b3 -} - -pre .chunk { - color: #aaa -} diff --git a/doc-src/templates/flasky_sphinx_guide/fulldoc/html/css/style.css b/doc-src/templates/flasky_sphinx_guide/fulldoc/html/css/style.css deleted file mode 100644 index 9d60a91af0..0000000000 --- a/doc-src/templates/flasky_sphinx_guide/fulldoc/html/css/style.css +++ /dev/null @@ -1,1193 +0,0 @@ -/* - * basic.css - * ~~~~~~~~~ - * - * Sphinx stylesheet -- basic theme. - * - * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/* -- main layout ----------------------------------------------------------- */ - -div.clearer { - clear: both; -} - -/* -- relbar ---------------------------------------------------------------- */ - -div.related { - width: 100%; - font-size: 90%; -} - -div.related h3 { - display: none; -} - -div.related ul { - margin: 0; - padding: 0 0 0 10px; - list-style: none; -} - -div.related li { - display: inline; -} - -div.related li.right { - float: right; - margin-right: 5px; -} - -/* -- sidebar --------------------------------------------------------------- */ - -div.sphinxsidebarwrapper { - padding: 10px 5px 0 10px; -} - -div.sphinxsidebar { - float: left; - width: 230px; - margin-left: -100%; - font-size: 90%; - word-break: break-word; -} - -div.sphinxsidebar ul { - list-style: none; -} - -div.sphinxsidebar ul ul, -div.sphinxsidebar ul.want-points { - margin-left: 20px; - list-style: square; -} - -div.sphinxsidebar ul ul { - margin-top: 0; - margin-bottom: 0; -} - -div.sphinxsidebar form { - margin-top: 10px; -} - -div.sphinxsidebar input { - border: 1px solid #98dbcc; - font-family: sans-serif; - font-size: 1em; -} - -div.sphinxsidebar #searchbox input[type="text"] { - width: 170px; -} - -div.sphinxsidebar #searchbox input[type="submit"] { - width: 30px; -} - -img { - border: 0; -} - -/* -- search page ----------------------------------------------------------- */ - -ul.search { - margin: 10px 0 0 20px; - padding: 0; -} - -ul.search li { - padding: 5px 0 5px 20px; - background-image: url(file.png); - background-repeat: no-repeat; - background-position: 0 7px; -} - -ul.search li a { - font-weight: bold; -} - -ul.search li div.context { - color: #888; - margin: 2px 0 0 30px; - text-align: left; -} - -ul.keywordmatches li.goodmatch a { - font-weight: bold; -} - -/* -- index page ------------------------------------------------------------ */ - -table.contentstable { - width: 90%; -} - -table.contentstable p.biglink { - line-height: 150%; -} - -a.biglink { - font-size: 1.3em; -} - -span.linkdescr { - font-style: italic; - padding-top: 5px; - font-size: 90%; -} - -/* -- general index --------------------------------------------------------- */ - -table.indextable { - width: 100%; -} - -table.indextable td { - text-align: left; - vertical-align: top; -} - -table.indextable dl, table.indextable dd { - margin-top: 0; - margin-bottom: 0; -} - -table.indextable tr.pcap { - height: 10px; -} - -table.indextable tr.cap { - margin-top: 10px; - background-color: #f2f2f2; -} - -img.toggler { - margin-right: 3px; - margin-top: 3px; - cursor: pointer; -} - -div.modindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -div.genindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -/* -- general body styles --------------------------------------------------- */ - -a.headerlink { - visibility: hidden; -} - -h1:hover > a.headerlink, -h2:hover > a.headerlink, -h3:hover > a.headerlink, -h4:hover > a.headerlink, -h5:hover > a.headerlink, -h6:hover > a.headerlink, -dt:hover > a.headerlink { - visibility: visible; -} - -div.body p.caption { - text-align: inherit; -} - -div.body td { - text-align: left; -} - -.field-list ul { - padding-left: 1em; -} - -.first { - margin-top: 0 !important; -} - -p.rubric { - margin-top: 30px; - font-weight: bold; -} - -img.align-left, .figure.align-left, object.align-left { - clear: left; - float: left; - margin-right: 1em; -} - -img.align-right, .figure.align-right, object.align-right { - clear: right; - float: right; - margin-left: 1em; -} - -img.align-center, .figure.align-center, object.align-center { - display: block; - margin-left: auto; - margin-right: auto; -} - -.align-left { - text-align: left; -} - -.align-center { - text-align: center; -} - -.align-right { - text-align: right; -} - -/* -- sidebars -------------------------------------------------------------- */ - -div.sidebar { - margin: 0 0 0.5em 1em; - border: 1px solid #ddb; - padding: 7px 7px 0 7px; - background-color: #ffe; - width: 40%; - float: right; -} - -p.sidebar-title { - font-weight: bold; -} - -/* -- topics ---------------------------------------------------------------- */ - -div.topic { - border: 1px solid #ccc; - padding: 7px 7px 0 7px; - margin: 10px 0 10px 0; -} - -p.topic-title { - font-size: 1.1em; - font-weight: bold; - margin-top: 10px; -} - -/* -- admonitions ----------------------------------------------------------- */ - -div.admonition { - margin-top: 10px; - margin-bottom: 10px; - padding: 7px; -} - -div.admonition dt { - font-weight: bold; -} - -div.admonition dl { - margin-bottom: 0; -} - -p.admonition-title { - margin: 0px 10px 5px 0px; - font-weight: bold; -} - -div.body p.centered { - text-align: center; - margin-top: 25px; -} - -/* -- tables ---------------------------------------------------------------- */ - -table.docutils { - border: 0; - border-collapse: collapse; -} - -table.docutils td, table.docutils th { - padding: 1px 8px 1px 5px; - border-top: 0; - border-left: 0; - border-right: 0; - border-bottom: 1px solid #aaa; -} - -table.field-list td, table.field-list th { - border: 0 !important; -} - -table.footnote td, table.footnote th { - border: 0 !important; -} - -th { - text-align: left; - padding-right: 5px; -} - -table.citation { - border-left: solid 1px gray; - margin-left: 1px; -} - -table.citation td { - border-bottom: none; -} - -/* -- other body styles ----------------------------------------------------- */ - -ol.arabic { - list-style: decimal; -} - -ol.loweralpha { - list-style: lower-alpha; -} - -ol.upperalpha { - list-style: upper-alpha; -} - -ol.lowerroman { - list-style: lower-roman; -} - -ol.upperroman { - list-style: upper-roman; -} - -dl { - margin-bottom: 15px; -} - -dd p { - margin-top: 0px; -} - -dd ul, dd table { - margin-bottom: 10px; -} - -dd { - margin-top: 3px; - margin-bottom: 10px; - margin-left: 30px; -} - -dt:target, .highlighted { - background-color: #fbe54e; -} - -dl.glossary dt { - font-weight: bold; - font-size: 1.1em; -} - -.field-list ul { - margin: 0; - padding-left: 1em; -} - -.field-list p { - margin: 0; -} - -.refcount { - color: #060; -} - -.optional { - font-size: 1.3em; -} - -.versionmodified { - font-style: italic; -} - -.system-message { - background-color: #fda; - padding: 5px; - border: 3px solid red; -} - -.footnote:target { - background-color: #ffa; -} - -.line-block { - display: block; - margin-top: 1em; - margin-bottom: 1em; -} - -.line-block .line-block { - margin-top: 0; - margin-bottom: 0; - margin-left: 1.5em; -} - -.guilabel, .menuselection { - font-family: sans-serif; -} - -.accelerator { - text-decoration: underline; -} - -.classifier { - font-style: oblique; -} - -abbr, acronym { - border-bottom: dotted 1px; - cursor: help; -} - -/* -- code displays --------------------------------------------------------- */ - -pre { - overflow: auto; - overflow-y: hidden; /* fixes display issues on Chrome browsers */ -} - -td.linenos pre { - padding: 5px 0px; - border: 0; - background-color: transparent; - color: #aaa; -} - -table.highlighttable { - margin-left: 0.5em; -} - -table.highlighttable td { - padding: 0 0.5em 0 0.5em; -} - -tt.descname { - background-color: transparent; - font-weight: bold; - font-size: 1.2em; -} - -tt.descclassname { - background-color: transparent; -} - -tt.xref, a tt { - background-color: transparent; - font-weight: bold; -} - -h1 tt, h2 tt, h3 tt, h4 tt, h5 tt, h6 tt { - background-color: transparent; -} - -.viewcode-link { - float: right; -} - -.viewcode-back { - float: right; - font-family: sans-serif; -} - -div.viewcode-block:target { - margin: -1px -10px; - padding: 0 10px; -} - -/* -- math display ---------------------------------------------------------- */ - -img.math { - vertical-align: middle; -} - -div.body div.math p { - text-align: center; -} - -span.eqno { - float: right; -} - -/* -- printout stylesheet --------------------------------------------------- */ - -@media print { - div.document, - div.documentwrapper, - div.bodywrapper { - margin: 0 !important; - width: 100%; - } - - div.sphinxsidebar, - div.related, - div.footer, - #top-link { - display: none; - } -} - -/* - * flasky.css_t - * ~~~~~~~~~~~~ - * - * :copyright: Copyright 2010 by Armin Ronacher. - * :license: Flask Design License, see LICENSE for details. - */ - -/* -- page layout ----------------------------------------------------------- */ - -body { - font-family: Helvetica, arial, freesans, clean, sans-serif; - font-size: 15px; - background-color: white; - color: #000; - margin: 0; - padding: 0; -} - -div.document { - width: 960px; - margin: 30px auto 0 auto; -} - -div.documentwrapper { - float: left; - width: 100%; -} - -div.bodywrapper { - margin: 0 0 0 220px; -} - -div.sphinxsidebar { - width: 220px; -} - -hr { - border: 1px solid #B1B4B6; -} - -div.body { - background-color: #ffffff; - color: #3E4349; - padding: 0 30px 0 30px; -} - -img.floatingflask { - padding: 0 0 10px 10px; - float: right; -} - -div.footer { - width: 960px; - margin: 20px auto 30px auto; - font-size: 14px; - color: #888; - text-align: right; -} - -div.footer a { - color: #888; -} - -div.related { - display: none; -} - -div.sphinxsidebar a { - color: #444; - text-decoration: none; -} - -div.sphinxsidebar a:hover { - border-bottom: 1px solid #999; -} - -div.sphinxsidebar { - font-size: 14px; - line-height: 1.5; -} - -div.sphinxsidebarwrapper { - padding: 0 10px 18px; -} - -div.sphinxsidebarwrapper p.logo { - padding: 0 0 8px 0; - margin: 0; -} - -div.sphinxsidebar h3, -div.sphinxsidebar h4 { - font-family: Helvetica, arial, freesans, clean, sans-serif; - color: #444; - font-size: 24px; - font-weight: normal; - margin: 0 0 5px 0; - padding: 0; -} - -div.sphinxsidebar h4 { - font-size: 20px; -} - -div.sphinxsidebar h3 a { - color: #444; -} - -div.sphinxsidebar p.logo a, -div.sphinxsidebar h3 a, -div.sphinxsidebar p.logo a:hover, -div.sphinxsidebar h3 a:hover { - border: none; -} - -div.sphinxsidebarwrapper h3.logo { - margin: 0; -} - -div.sphinxsidebar p { - color: #555; - margin: 10px 0; -} - -div.sphinxsidebar ul { - margin: 10px 0; - padding: 0; - color: #000; -} - -div.sphinxsidebar input { - border: 1px solid #ccc; - font-family: Helvetica, arial, freesans, clean, sans-serif; - font-size: 1em; -} - -p.feedback a { - color: rgb(0, 89, 160); -} - -/* -- body styles ----------------------------------------------------------- */ - -a { - color: rgb(0, 89, 160); - text-decoration: none; -} - -a:hover { - color: #6D4100; - text-decoration: underline; -} - -div.body h1, -div.body h2, -div.body h3, -div.body h4, -div.body h5, -div.body h6 { - font-family: Helvetica, arial, freesans, clean, sans-serif; - font-weight: normal; - margin: 30px 0px 10px 0px; - padding: 0; -} - - - -div.body h1 { margin-top: 0; padding-top: 0; font-size: 240%; font-weight: bold; } -div.body h2 { font-size: 180%; border-bottom: 1px solid #ccc; padding-bottom: 6px; font-weight: bold; } -div.body h3 { font-size: 150%; font-weight: bold; } -div.body h4 { font-size: 130%; } -div.body h5 { font-size: 130%; } -div.body h6 { font-size: 130%; } - -a.headerlink { - color: #ddd; - padding: 0 4px; - text-decoration: none; -} - -a.headerlink:hover { - color: #444; - background: #eaeaea; -} - -div.body p, div.body dd, div.body li { - line-height: 1.5em; -} - -div.admonition { - background: #fafafa; - margin: 20px 0; - padding: 10px 30px; - border-top: 1px solid #ccc; - border-bottom: 1px solid #ccc; -} - -div.admonition tt.xref, div.admonition a tt { - border-bottom: 1px solid #fafafa; -} - -dd div.admonition { - margin-left: -60px; - padding-left: 60px; -} - -div.admonition p.admonition-title { - font-family: Helvetica, arial, freesans, clean, sans-serif; - font-weight: normal; - font-size: 22px; - margin: 0 0 10px 0; - padding: 0; - line-height: 1; -} - -div.admonition p.last { - margin-bottom: 0; -} - -div.highlight { - background-color: white; -} - -dt:target, .highlight { - background: #FAF3E8; -} - -div.note { - background-color: #f8f8f8; - border: 1px solid #ccc; - border-radius: 3px; -} - -div.seealso { - background-color: #ffc; - border: 1px solid #ff6; -} - -div.topic { - background-color: #f8f8f8; -} - -p.admonition-title { - display: inline; -} - -p.admonition-title:after { - content: ":"; -} - -pre, tt { - font-family: 'Consolas', 'Menlo', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace; - font-size: 0.9em; -} - -img.screenshot { -} - -tt.descname, tt.descclassname { - font-size: 0.95em; -} - -tt.descname { - padding-right: 0.08em; -} - -img.screenshot { - -moz-box-shadow: 2px 2px 4px #eee; - -webkit-box-shadow: 2px 2px 4px #eee; - box-shadow: 2px 2px 4px #eee; -} - -table.docutils { - border: 1px solid #888; - -moz-box-shadow: 2px 2px 4px #eee; - -webkit-box-shadow: 2px 2px 4px #eee; - box-shadow: 2px 2px 4px #eee; -} - -table.docutils td, table.docutils th { - border: 1px solid #888; - padding: 0.25em 0.7em; -} - -table.field-list, table.footnote { - border: none; - -moz-box-shadow: none; - -webkit-box-shadow: none; - box-shadow: none; -} - -table.footnote { - margin: 15px 0; - width: 100%; - border: 1px solid #eee; - background: #fdfdfd; - font-size: 0.9em; -} - -table.footnote + table.footnote { - margin-top: -15px; - border-top: none; -} - -table.field-list th { - padding: 0 0.8em 0 0; -} - -table.field-list td { - padding: 0; -} - -table.footnote td.label { - width: 0px; - padding: 0.3em 0 0.3em 0.5em; -} - -table.footnote td { - padding: 0.3em 0.5em; -} - -dl { - margin: 0; - padding: 0; -} - -dl dd { - margin-left: 30px; -} - -blockquote { - margin: 0 0 0 30px; - padding: 0; -} - -ul, ol { - margin: 10px 0 10px 30px; - padding: 0; -} - -pre { - background-color: #f8f8f8; - border: 1px solid #ccc; - font-size: 13px; - line-height: 19px; - overflow: auto; - padding: 6px 10px; - border-radius: 3px; -} - -dl pre, blockquote pre, li pre { - -} - -dl dl pre { - margin-left: -90px; - padding-left: 90px; -} - -tt { - background-color: #ecf0f3; - color: #222; - /* padding: 1px 2px; */ -} - -tt.xref, a tt { - background-color: #FBFBFB; - border-bottom: 1px solid white; -} - -a.reference { - text-decoration: none; -} - -a.reference:hover { - border-bottom: 1px solid #6D4100; -} - -a.footnote-reference { - text-decoration: none; - font-size: 0.7em; - vertical-align: top; -} - -a.footnote-reference:hover { - border-bottom: 1px solid #6D4100; -} - -a:hover tt { - background: #EEE; -} - -.logo img { - margin: 0 0 24px 0; - padding: 0; -} - -#menu { - padding: 12px; - margin: 0 0 24 px; - height: 19px; - background: rgb(244, 248, 250); - border-bottom: 1px solid rgb(206, 221, 230); -} - -.width-wrapper { - width: 960px; - margin: 0 auto; -} - -#menu #left-logo { - float: left; - margin-right: 58px; - font-weight: bold; - margin-left: 20px; -} -#menu #main-menu { - float: left; - margin: 0; - padding: 0; -} -#menu #main-menu li { - display: block; - margin: 0 30px 0 0; - padding: 0; - float: left; - font-weight: bold; -} -#menu a { - text-decoration: none; -} - -#footer-links { - border-top: 1px solid #ccc; - padding-top: 12px; - margin-top: 30px; - height: 30px; -} - -#footer-links a { - padding: 0 24px 0 0; - display: block; - padding: 0 0 0 20px; - float: right; -} - -.inline-toc { - background-color: #fff !important; - border: none !important; - padding: 0 0 0 14px !important; -} - -div .warning { - background: rgb(255, 242, 242); -} - -table.api-operations { - width: 100%; - border: none; - border-width: 0; - -webkit-box-shadow: none; - box-shadow: none; - -moz-box-shadow: none; -} - -table.api-operations tbody td { - border-top: 0; - border-left: 0; - border-right: 0; - border-bottom: 1px solid #eee; -} - -#github-stars { - float: right; - margin: 0; - padding: 0; -} - -#github-stars iframe { - margin: 0; - padding: 0; -} - -.internal em { - text-decoration: none !important; - font-style: none !important; -} - -/* - * small_flask.css_t - * ~~~~~~~~~~~~~~~~~ - * - * :copyright: Copyright 2010 by Armin Ronacher. - * :license: Flask Design License, see LICENSE for details. - */ - -@media only screen and (max-device-width: 480px) -{ - -body { - margin: 0; - padding: 20px 30px; -} - -div.documentwrapper { - float: none; - background: white; -} - -div.sphinxsidebar { - display: block; - float: none; - width: 102.5%; - margin: 50px -30px -20px -30px; - padding: 10px 20px; - background: #333; - color: white; -} - -div.sphinxsidebar h3, div.sphinxsidebar h4, div.sphinxsidebar p, -div.sphinxsidebar h3 a { - color: white; -} - -div.sphinxsidebar a { - color: #aaa; -} - -div.sphinxsidebar p.logo { - display: none; -} - -div.document { - width: 100%; - margin: 0; -} - -div.related { - display: block; - margin: 0; - padding: 10px 0 20px 0; -} - -div.related ul, -div.related ul li { - margin: 0; - padding: 0; -} - -div.footer { - display: none; -} - -div.bodywrapper { - margin: 0; -} - -div.body { - min-height: 0; - padding: 0; -} - -} /* end @media */ - -/* - * yard customizations - */ - -table { border-collapse: collapse; } -table th, table td { border: 1px solid #ccc; padding: 8px; padding-right: 17px; } -table tr:nth-child(odd) { background: #eee; } -table tr:nth-child(even) { background: #fff; } -table th { background: #fff; } - -#search-results .search li { display: block; } - -div.body ul { - list-style: none; padding: 0; margin: 0; font-size: 1.1em; clear: both; - margin-bottom: 12px; -} -div.body ul li { - border-bottom: 1px solid #ccc; padding-bottom: 5px; - margin-bottom: 7px; width: 47%; float: left; margin-right: 7px; -} -div.body ul li em { font-size: 0.9em; } - -div.body .clear { clear: both; } - -div.body p.note { background: #f5f5f5; padding: 14px; } -div.body p.note:before { content: "Note: "; font-weight: bold; } - -#toc.one-file { margin-bottom: 2em; border-bottom: 1px #ccc solid; } -div.body #toc.one-file ul, -div.body ul.search { - padding-left: 12px; - margin-left: 12px; - margin-top: 0; list-style: disc; font-size: 1em; -} -div.body #toc.one-file ul li, -div.body ul.search li { - padding-bottom: 0; border: 0; float: none; width: inherit; - margin-bottom: 4px; -} - -@media print { - #menu, - #footer-links { - display: none; - } -} - -/* ---- customizations ---- */ - -.subtitle { font-size: 1.1em; padding: 0; margin: 0; position: relative; top: -6px; color: #666; font-weight: 100; } - -.buttons a { - display: block; float: left; - padding: 9px 14px 9px; - margin-right: 12px; - -webkit-border-radius: 6px; - border-radius: 6px; - font-size: 16px; - border: 1px solid #ccc; - background-color: hsl(201, 100%, 30%) !important; - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00a5ff", endColorstr="#006399"); - background-image: -khtml-gradient(linear, left top, left bottom, from(#00a5ff), to(#006399)); - background-image: -moz-linear-gradient(top, #00a5ff, #006399); - background-image: -ms-linear-gradient(top, #00a5ff, #006399); - background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #00a5ff), color-stop(100%, #006399)); - background-image: -webkit-linear-gradient(top, #00a5ff, #006399); - background-image: -o-linear-gradient(top, #00a5ff, #006399); - background-image: linear-gradient(#00a5ff, #006399); - border-color: #006399 #006399 hsl(201, 100%, 25%); - color: #fff !important; - text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.33); - -webkit-font-smoothing: antialiased; -} -.buttons a:hover { - text-decoration: none; - background-image: -khtml-gradient(linear, left top, left bottom, from(#0085cf), to(#004379)); - background-image: -moz-linear-gradient(top, #0085cf, #004379); - background-image: -ms-linear-gradient(top, #0085cf, #004379); - background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0085cf), color-stop(100%, #004379)); - background-image: -webkit-linear-gradient(top, #0085cf, #004379); - background-image: -o-linear-gradient(top, #0085cf, #004379); - background-image: linear-gradient(#0085cf, #004379); -} -.buttons a:last-child { margin-right: 0; } - -#capabilities-banner { margin-bottom: 12px; font-weight: bold; padding: 12px; } diff --git a/doc-src/templates/flasky_sphinx_guide/fulldoc/html/img/logo.png b/doc-src/templates/flasky_sphinx_guide/fulldoc/html/img/logo.png deleted file mode 100644 index 684f30f92deaa5b1e363a31a0d8de40704ab33e3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4031 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'); - var show = false; - var toc = _toc; - var counter = 0; - var tags = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6']; - for (i in tags) { tags[i] = '#filecontents > ' + tags[i] } - var lastTag = parseInt(tags[0][1]); - $(tags.join(', ')).each(function() { - if (this.id == "filecontents") return; - show = true; - var thisTag = parseInt(this.tagName[1]); - if (this.id.length == 0) { - var proposedId = $(this).text().replace(/[^a-z0-9-]/ig, '_'); - if ($('#' + proposedId).length > 0) proposedId += counter++; - this.id = proposedId; - } - if (thisTag > lastTag) { - for (var i = 0; i < thisTag - lastTag; i++) { - var tmp = $('