Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
ec30af91
Commit
ec30af91
authored
May 16, 2014
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update sphinx_rtd_theme to 54a48b1726ed602c9b5416ee46c639462ec315fe
parent
3b5b5ce2
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
44 additions
and
33 deletions
+44
-33
doc/_themes/sphinx_rtd_theme/breadcrumbs.html
doc/_themes/sphinx_rtd_theme/breadcrumbs.html
+2
-2
doc/_themes/sphinx_rtd_theme/footer.html
doc/_themes/sphinx_rtd_theme/footer.html
+1
-1
doc/_themes/sphinx_rtd_theme/layout.html
doc/_themes/sphinx_rtd_theme/layout.html
+37
-26
doc/_themes/sphinx_rtd_theme/search.html
doc/_themes/sphinx_rtd_theme/search.html
+1
-1
doc/_themes/sphinx_rtd_theme/static/css/badge_only.css
doc/_themes/sphinx_rtd_theme/static/css/badge_only.css
+1
-1
doc/_themes/sphinx_rtd_theme/static/css/theme.css
doc/_themes/sphinx_rtd_theme/static/css/theme.css
+2
-2
No files found.
doc/_themes/sphinx_rtd_theme/breadcrumbs.html
View file @
ec30af91
...
...
@@ -7,9 +7,9 @@
<li>
{{ title }}
</li>
<li
class=
"wy-breadcrumbs-aside"
>
{% if display_github %}
<a
href=
"https://github.com/{{ github_user }}/{{ github_repo }}/blob/{{ github_version }}{{ conf_py_path }}{{ pagename }}
.rst
"
class=
"fa fa-github"
>
Edit on GitHub
</a>
<a
href=
"https://github.com/{{ github_user }}/{{ github_repo }}/blob/{{ github_version }}{{ conf_py_path }}{{ pagename }}
{{ source_suffix }}
"
class=
"fa fa-github"
>
Edit on GitHub
</a>
{% elif display_bitbucket %}
<a
href=
"https://bitbucket.org/{{ bitbucket_user }}/{{ bitbucket_repo }}/src/{{ bitbucket_version}}{{ conf_py_path }}{{ pagename }}
.rst
"
class=
"fa fa-bitbucket"
>
Edit on Bitbucket
</a>
<a
href=
"https://bitbucket.org/{{ bitbucket_user }}/{{ bitbucket_repo }}/src/{{ bitbucket_version}}{{ conf_py_path }}{{ pagename }}
{{ source_suffix }}
"
class=
"fa fa-bitbucket"
>
Edit on Bitbucket
</a>
{% elif show_source and has_source and sourcename %}
<a
href=
"{{ pathto('_sources/' + sourcename, true)|e }}"
rel=
"nofollow"
>
View page source
</a>
{% endif %}
...
...
doc/_themes/sphinx_rtd_theme/footer.html
View file @
ec30af91
...
...
@@ -2,7 +2,7 @@
{% if next or prev %}
<div
class=
"rst-footer-buttons"
role=
"navigation"
aria-label=
"footer navigation"
>
{% if next %}
<a
href=
"{{ next.link|e }}"
class=
"btn btn-neutral float-right"
title=
"{{ next.title|striptags|e }}"
/
>
Next
<span
class=
"fa fa-arrow-circle-right"
></span></a>
<a
href=
"{{ next.link|e }}"
class=
"btn btn-neutral float-right"
title=
"{{ next.title|striptags|e }}"
>
Next
<span
class=
"fa fa-arrow-circle-right"
></span></a>
{% endif %}
{% if prev %}
<a
href=
"{{ prev.link|e }}"
class=
"btn btn-neutral"
title=
"{{ prev.title|striptags|e }}"
><span
class=
"fa fa-arrow-circle-left"
></span>
Previous
</a>
...
...
doc/_themes/sphinx_rtd_theme/layout.html
View file @
ec30af91
...
...
@@ -25,41 +25,17 @@
{# CSS #}
<link
href=
'https://fonts.googleapis.com/css?family=Lato:400,700|Roboto+Slab:400,700|Inconsolata:400,700'
rel=
'stylesheet'
type=
'text/css'
>
{#
JS
#}
{#
OPENSEARCH
#}
{% if not embedded %}
<script
type=
"text/javascript"
>
var
DOCUMENTATION_OPTIONS
=
{
URL_ROOT
:
'
{{ url_root }}
'
,
VERSION
:
'
{{ release|e }}
'
,
COLLAPSE_INDEX
:
false
,
FILE_SUFFIX
:
'
{{
''
if no_search_suffix else file_suffix }}
'
,
HAS_SOURCE
:
{{
has_source
|
lower
}}
};
</script>
{%- for scriptfile in script_files %}
<script
type=
"text/javascript"
src=
"{{ pathto(scriptfile, 1) }}"
></script>
{%- endfor %}
{% if use_opensearch %}
<link
rel=
"search"
type=
"application/opensearchdescription+xml"
title=
"{% trans docstitle=docstitle|e %}Search within {{ docstitle }}{% endtrans %}"
href=
"{{ pathto('_static/opensearch.xml', 1) }}"
/>
{% endif %}
{% endif %}
{# RTD hosts th
ese file themselves
, so just load on non RTD builds #}
{# RTD hosts th
is file
, so just load on non RTD builds #}
{% if not READTHEDOCS %}
<link
rel=
"stylesheet"
href=
"{{ pathto('_static/' + style, 1) }}"
type=
"text/css"
/>
<script
type=
"text/javascript"
src=
"{{ pathto('_static/js/theme.js', 1) }}"
></script>
{% endif %}
{# STICKY NAVIGATION #}
{% if theme_sticky_navigation %}
<script
type=
"text/javascript"
>
jQuery
(
function
()
{
SphinxRtdTheme
.
StickyNav
.
enable
();
});
</script>
{% endif %}
{% for cssfile in css_files %}
...
...
@@ -94,6 +70,7 @@
{%- endblock %}
{%- block extrahead %} {% endblock %}
{# Keep modernizr in head - http://modernizr.com/docs/#installing #}
<script
src=
"https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"
></script>
</head>
...
...
@@ -145,5 +122,39 @@
</div>
{% include "versions.html" %}
{% if not embedded %}
<script
type=
"text/javascript"
>
var
DOCUMENTATION_OPTIONS
=
{
URL_ROOT
:
'
{{ url_root }}
'
,
VERSION
:
'
{{ release|e }}
'
,
COLLAPSE_INDEX
:
false
,
FILE_SUFFIX
:
'
{{
''
if no_search_suffix else file_suffix }}
'
,
HAS_SOURCE
:
{{
has_source
|
lower
}}
};
</script>
{%- for scriptfile in script_files %}
<script
type=
"text/javascript"
src=
"{{ pathto(scriptfile, 1) }}"
></script>
{%- endfor %}
{% endif %}
{# RTD hosts this file, so just load on non RTD builds #}
{% if not READTHEDOCS %}
<script
type=
"text/javascript"
src=
"{{ pathto('_static/js/theme.js', 1) }}"
></script>
{% endif %}
{# STICKY NAVIGATION #}
{% if theme_sticky_navigation %}
<script
type=
"text/javascript"
>
jQuery
(
function
()
{
SphinxRtdTheme
.
StickyNav
.
enable
();
});
</script>
{% endif %}
{%- block footer %} {% endblock %}
</body>
</html>
doc/_themes/sphinx_rtd_theme/search.html
View file @
ec30af91
...
...
@@ -10,7 +10,7 @@
{%- extends "layout.html" %}
{% set title = _('Search') %}
{% set script_files = script_files + ['_static/searchtools.js'] %}
{% block
extrahead
%}
{% block
footer
%}
<script
type=
"text/javascript"
>
jQuery
(
function
()
{
Search
.
loadIndex
(
"
{{ pathto('searchindex.js', 1) }}
"
);
});
</script>
...
...
doc/_themes/sphinx_rtd_theme/static/css/badge_only.css
View file @
ec30af91
.f
ont-smooth
,
.f
a
:before
{
-webkit-font-smoothing
:
antialiased
}
.clearfix
{
*
zoom
:
1
}
.clearfix
:before
,
.clearfix
:after
{
display
:
table
;
content
:
""
}
.clearfix
:after
{
clear
:
both
}
@font-face
{
font-family
:
FontAwesome
;
font-weight
:
normal
;
font-style
:
normal
;
src
:
url("../font/fontawesome_webfont.eot")
;
src
:
url("../font/fontawesome_webfont.eot?#iefix")
format
(
"embedded-opentype"
),
url("../font/fontawesome_webfont.woff")
format
(
"woff"
),
url("../font/fontawesome_webfont.ttf")
format
(
"truetype"
),
url("../font/fontawesome_webfont.svg#FontAwesome")
format
(
"svg"
)}
.fa
:before
{
display
:
inline-block
;
font-family
:
FontAwesome
;
font-style
:
normal
;
font-weight
:
normal
;
line-height
:
1
;
text-decoration
:
inherit
}
a
.fa
{
display
:
inline-block
;
text-decoration
:
inherit
}
li
.fa
{
display
:
inline-block
}
li
.fa-large
:before
,
li
.fa-large
:before
{
width
:
1.875em
}
ul
.fas
{
list-style-type
:
none
;
margin-left
:
2em
;
text-indent
:
-0.8em
}
ul
.fas
li
.fa
{
width
:
0.8em
}
ul
.fas
li
.fa-large
:before
,
ul
.fas
li
.fa-large
:before
{
vertical-align
:
baseline
}
.fa-book
:before
{
content
:
"\f02d"
}
.icon-book
:before
{
content
:
"\f02d"
}
.fa-caret-down
:before
{
content
:
"\f0d7"
}
.icon-caret-down
:before
{
content
:
"\f0d7"
}
.fa-caret-up
:before
{
content
:
"\f0d8"
}
.icon-caret-up
:before
{
content
:
"\f0d8"
}
.fa-caret-left
:before
{
content
:
"\f0d9"
}
.icon-caret-left
:before
{
content
:
"\f0d9"
}
.fa-caret-right
:before
{
content
:
"\f0da"
}
.icon-caret-right
:before
{
content
:
"\f0da"
}
.rst-versions
{
position
:
fixed
;
bottom
:
0
;
left
:
0
;
width
:
300px
;
color
:
#fcfcfc
;
background
:
#1f1d1d
;
border-top
:
solid
10px
#343131
;
font-family
:
"Lato"
,
"proxima-nova"
,
"Helvetica Neue"
,
Arial
,
sans-serif
;
z-index
:
400
}
.rst-versions
a
{
color
:
#2980b9
;
text-decoration
:
none
}
.rst-versions
.rst-badge-small
{
display
:
none
}
.rst-versions
.rst-current-version
{
padding
:
12px
;
background-color
:
#272525
;
display
:
block
;
text-align
:
right
;
font-size
:
90%
;
cursor
:
pointer
;
color
:
#27ae60
;
*
zoom
:
1
}
.rst-versions
.rst-current-version
:before
,
.rst-versions
.rst-current-version
:after
{
display
:
table
;
content
:
""
}
.rst-versions
.rst-current-version
:after
{
clear
:
both
}
.rst-versions
.rst-current-version
.fa
{
color
:
#fcfcfc
}
.rst-versions
.rst-current-version
.fa-book
{
float
:
left
}
.rst-versions
.rst-current-version
.icon-book
{
float
:
left
}
.rst-versions
.rst-current-version.rst-out-of-date
{
background-color
:
#e74c3c
;
color
:
#fff
}
.rst-versions
.rst-current-version.rst-active-old-version
{
background-color
:
#f1c40f
;
color
:
#000
}
.rst-versions.shift-up
.rst-other-versions
{
display
:
block
}
.rst-versions
.rst-other-versions
{
font-size
:
90%
;
padding
:
12px
;
color
:
gray
;
display
:
none
}
.rst-versions
.rst-other-versions
hr
{
display
:
block
;
height
:
1px
;
border
:
0
;
margin
:
20px
0
;
padding
:
0
;
border-top
:
solid
1px
#413d3d
}
.rst-versions
.rst-other-versions
dd
{
display
:
inline-block
;
margin
:
0
}
.rst-versions
.rst-other-versions
dd
a
{
display
:
inline-block
;
padding
:
6px
;
color
:
#fcfcfc
}
.rst-versions.rst-badge
{
width
:
auto
;
bottom
:
20px
;
right
:
20px
;
left
:
auto
;
border
:
none
;
max-width
:
300px
}
.rst-versions.rst-badge
.icon-book
{
float
:
none
}
.rst-versions.rst-badge
.fa-book
{
float
:
none
}
.rst-versions.rst-badge.shift-up
.rst-current-version
{
text-align
:
right
}
.rst-versions.rst-badge.shift-up
.rst-current-version
.fa-book
{
float
:
left
}
.rst-versions.rst-badge.shift-up
.rst-current-version
.icon-book
{
float
:
left
}
.rst-versions.rst-badge
.rst-current-version
{
width
:
auto
;
height
:
30px
;
line-height
:
30px
;
padding
:
0
6px
;
display
:
block
;
text-align
:
center
}
@media
screen
and
(
max-width
:
768px
){
.rst-versions
{
width
:
85%
;
display
:
none
}
.rst-versions.shift
{
display
:
block
}
img
{
width
:
100%
;
height
:
auto
}}
.fa
:before
{
-webkit-font-smoothing
:
antialiased
}
.clearfix
{
*
zoom
:
1
}
.clearfix
:before
,
.clearfix
:after
{
display
:
table
;
content
:
""
}
.clearfix
:after
{
clear
:
both
}
@font-face
{
font-family
:
FontAwesome
;
font-weight
:
normal
;
font-style
:
normal
;
src
:
url("../font/fontawesome_webfont.eot")
;
src
:
url("../font/fontawesome_webfont.eot?#iefix")
format
(
"embedded-opentype"
),
url("../font/fontawesome_webfont.woff")
format
(
"woff"
),
url("../font/fontawesome_webfont.ttf")
format
(
"truetype"
),
url("../font/fontawesome_webfont.svg#FontAwesome")
format
(
"svg"
)}
.fa
:before
{
display
:
inline-block
;
font-family
:
FontAwesome
;
font-style
:
normal
;
font-weight
:
normal
;
line-height
:
1
;
text-decoration
:
inherit
}
a
.fa
{
display
:
inline-block
;
text-decoration
:
inherit
}
li
.fa
{
display
:
inline-block
}
li
.fa-large
:before
,
li
.fa-large
:before
{
width
:
1.875em
}
ul
.fas
{
list-style-type
:
none
;
margin-left
:
2em
;
text-indent
:
-0.8em
}
ul
.fas
li
.fa
{
width
:
0.8em
}
ul
.fas
li
.fa-large
:before
,
ul
.fas
li
.fa-large
:before
{
vertical-align
:
baseline
}
.fa-book
:before
{
content
:
"\f02d"
}
.icon-book
:before
{
content
:
"\f02d"
}
.fa-caret-down
:before
{
content
:
"\f0d7"
}
.icon-caret-down
:before
{
content
:
"\f0d7"
}
.fa-caret-up
:before
{
content
:
"\f0d8"
}
.icon-caret-up
:before
{
content
:
"\f0d8"
}
.fa-caret-left
:before
{
content
:
"\f0d9"
}
.icon-caret-left
:before
{
content
:
"\f0d9"
}
.fa-caret-right
:before
{
content
:
"\f0da"
}
.icon-caret-right
:before
{
content
:
"\f0da"
}
.rst-versions
{
position
:
fixed
;
bottom
:
0
;
left
:
0
;
width
:
300px
;
color
:
#fcfcfc
;
background
:
#1f1d1d
;
border-top
:
solid
10px
#343131
;
font-family
:
"Lato"
,
"proxima-nova"
,
"Helvetica Neue"
,
Arial
,
sans-serif
;
z-index
:
400
}
.rst-versions
a
{
color
:
#2980b9
;
text-decoration
:
none
}
.rst-versions
.rst-badge-small
{
display
:
none
}
.rst-versions
.rst-current-version
{
padding
:
12px
;
background-color
:
#272525
;
display
:
block
;
text-align
:
right
;
font-size
:
90%
;
cursor
:
pointer
;
color
:
#27ae60
;
*
zoom
:
1
}
.rst-versions
.rst-current-version
:before
,
.rst-versions
.rst-current-version
:after
{
display
:
table
;
content
:
""
}
.rst-versions
.rst-current-version
:after
{
clear
:
both
}
.rst-versions
.rst-current-version
.fa
{
color
:
#fcfcfc
}
.rst-versions
.rst-current-version
.fa-book
{
float
:
left
}
.rst-versions
.rst-current-version
.icon-book
{
float
:
left
}
.rst-versions
.rst-current-version.rst-out-of-date
{
background-color
:
#e74c3c
;
color
:
#fff
}
.rst-versions
.rst-current-version.rst-active-old-version
{
background-color
:
#f1c40f
;
color
:
#000
}
.rst-versions.shift-up
.rst-other-versions
{
display
:
block
}
.rst-versions
.rst-other-versions
{
font-size
:
90%
;
padding
:
12px
;
color
:
gray
;
display
:
none
}
.rst-versions
.rst-other-versions
hr
{
display
:
block
;
height
:
1px
;
border
:
0
;
margin
:
20px
0
;
padding
:
0
;
border-top
:
solid
1px
#413d3d
}
.rst-versions
.rst-other-versions
dd
{
display
:
inline-block
;
margin
:
0
}
.rst-versions
.rst-other-versions
dd
a
{
display
:
inline-block
;
padding
:
6px
;
color
:
#fcfcfc
}
.rst-versions.rst-badge
{
width
:
auto
;
bottom
:
20px
;
right
:
20px
;
left
:
auto
;
border
:
none
;
max-width
:
300px
}
.rst-versions.rst-badge
.icon-book
{
float
:
none
}
.rst-versions.rst-badge
.fa-book
{
float
:
none
}
.rst-versions.rst-badge.shift-up
.rst-current-version
{
text-align
:
right
}
.rst-versions.rst-badge.shift-up
.rst-current-version
.fa-book
{
float
:
left
}
.rst-versions.rst-badge.shift-up
.rst-current-version
.icon-book
{
float
:
left
}
.rst-versions.rst-badge
.rst-current-version
{
width
:
auto
;
height
:
30px
;
line-height
:
30px
;
padding
:
0
6px
;
display
:
block
;
text-align
:
center
}
@media
screen
and
(
max-width
:
768px
){
.rst-versions
{
width
:
85%
;
display
:
none
}
.rst-versions.shift
{
display
:
block
}
img
{
width
:
100%
;
height
:
auto
}}
doc/_themes/sphinx_rtd_theme/static/css/theme.css
View file @
ec30af91
This source diff could not be displayed because it is too large. You can
view the blob
instead.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment