Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
59d9b264
Kaydet (Commit)
59d9b264
authored
Eyl 29, 2013
tarafından
Markus Amalthea Magnuson
Kaydeden (comit)
Tim Graham
Şub 10, 2014
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #21190 -- Added a new ePub theme for documentation.
üst
9a4ee8dd
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
125 additions
and
2 deletions
+125
-2
epub-cover.html
docs/_theme/djangodocs-epub/epub-cover.html
+10
-0
docicons-behindscenes.png
docs/_theme/djangodocs-epub/static/docicons-behindscenes.png
+2
-0
docicons-note.png
docs/_theme/djangodocs-epub/static/docicons-note.png
+2
-0
docicons-philosophy.png
docs/_theme/djangodocs-epub/static/docicons-philosophy.png
+2
-0
docicons-warning.png
docs/_theme/djangodocs-epub/static/docicons-warning.png
+2
-0
epub.css
docs/_theme/djangodocs-epub/static/epub.css
+67
-0
theme.conf
docs/_theme/djangodocs-epub/theme.conf
+8
-0
conf.py
docs/conf.py
+32
-2
No files found.
docs/_theme/djangodocs-epub/epub-cover.html
0 → 100644
Dosyayı görüntüle @
59d9b264
{%- extends "epub/epub-cover.html" %}
{% block content %}
<div
class=
"epub-cover"
>
<h1>
Django Documentation
</h1>
<h2><em>
Release {{ release }}
</em></h2>
<h3>
{{ copyright }}
</h3>
<p>
{{ last_updated }}
</p>
</div>
{% endblock %}
docs/_theme/djangodocs-epub/static/docicons-behindscenes.png
0 → 120000
Dosyayı görüntüle @
59d9b264
../../djangodocs/static/docicons-behindscenes.png
\ No newline at end of file
docs/_theme/djangodocs-epub/static/docicons-note.png
0 → 120000
Dosyayı görüntüle @
59d9b264
../../djangodocs/static/docicons-note.png
\ No newline at end of file
docs/_theme/djangodocs-epub/static/docicons-philosophy.png
0 → 120000
Dosyayı görüntüle @
59d9b264
../../djangodocs/static/docicons-philosophy.png
\ No newline at end of file
docs/_theme/djangodocs-epub/static/docicons-warning.png
0 → 120000
Dosyayı görüntüle @
59d9b264
../../djangodocs/static/docicons-warning.png
\ No newline at end of file
docs/_theme/djangodocs-epub/static/epub.css
0 → 100644
Dosyayı görüntüle @
59d9b264
h1
{
margin-top
:
0
;
}
/* Keep lists a bit narrow to maximize page estate regarding width. */
ol
,
ul
{
margin
:
0
;
padding
:
0
0
0
1.3em
;
}
/* Images should never exceed the width of the page. */
img
{
max-width
:
100%
;
}
/* Don't display URL after links, this is not print. */
.link-target
{
display
:
none
;
}
/* This is the front cover page of the book. */
.epub-cover
{
text-align
:
center
;
}
.epub-cover
h1
{
margin
:
4em
0
0
0
;
}
.epub-cover
h2
{
margin
:
1em
0
;
}
.epub-cover
h3
{
margin
:
3em
0
2em
0
;
}
/* Code examples should never exceed the width of the page, so wrap instead. */
pre
,
span
.pre
{
white-space
:
pre-wrap
;
}
pre
{
background-color
:
#f6f6f6
;
border
:
0
;
padding
:
0.5em
;
font-size
:
90%
;
}
/* Header for some code blocks. */
.snippet-filename
{
background-color
:
#393939
;
color
:
white
;
margin
:
0
;
padding
:
0.5em
;
font
:
bold
90%
monospace
;
}
.snippet-filename
+
.highlight
>
pre
,
.snippet-filename
+
pre
{
margin-top
:
0
;
}
a
:link
,
a
:visited
{
color
:
#396623
;
}
a
:hover
{
color
:
#1d3311
;
}
/* Use special styled note boxes from the default theme, but with the left side
fitted after the icon, to allow text resizing with breaking. */
.note
,
.admonition
{
background-position
:
9px
0.8em
;
background-repeat
:
no-repeat
;
padding
:
0.8em
1em
0.8em
65px
;
margin
:
1em
0
;
border
:
0.01em
solid
black
;
}
.note
,
.admonition
{
background-image
:
url(docicons-note.png)
;
}
div
.admonition-philosophy
{
background-image
:
url(docicons-philosophy.png)
;
}
div
.admonition-behind-the-scenes
{
background-image
:
url(docicons-behindscenes.png)
;
}
.admonition.warning
{
background-image
:
url(docicons-warning.png)
;
}
.admonition-title
{
font-weight
:
bold
;
margin
:
0
;
}
.admonition
.last
{
margin-bottom
:
0
;
}
docs/_theme/djangodocs-epub/theme.conf
0 → 100644
Dosyayı görüntüle @
59d9b264
[
theme
]
inherit
=
epub
stylesheet
=
epub
.
css
pygments_style
=
trac
[
options
]
relbar1
=
false
footer
=
false
docs/conf.py
Dosyayı görüntüle @
59d9b264
...
...
@@ -273,10 +273,19 @@ texinfo_documents = [(
# -- Options for Epub output ---------------------------------------------------
# Bibliographic Dublin Core info.
epub_title
=
'Django'
epub_title
=
project
epub_author
=
'Django Software Foundation'
epub_publisher
=
'Django Software Foundation'
epub_copyright
=
'2010, Django Software Foundation'
epub_copyright
=
copyright
# The basename for the epub file. It defaults to the project name.
#epub_basename = 'Django'
# The HTML theme for the epub output. Since the default themes are not optimized
# for small screen space, using the same theme for HTML and epub output is
# usually not wise. This defaults to 'epub', a theme designed to save visual
# space.
epub_theme
=
'djangodocs-epub'
# The language of the text. It defaults to the language option
# or en if the language is not set.
...
...
@@ -292,6 +301,12 @@ epub_copyright = '2010, Django Software Foundation'
# A unique identification for the text.
#epub_uid = ''
# A tuple containing the cover image and cover page html template filenames.
epub_cover
=
(
''
,
'epub-cover.html'
)
# A sequence of (type, uri, title) tuples for the guide element of content.opf.
#epub_guide = ()
# HTML files that should be inserted before the pages created by sphinx.
# The format is a list of tuples containing the path and title.
#epub_pre_files = []
...
...
@@ -308,3 +323,18 @@ epub_copyright = '2010, Django Software Foundation'
# Allow duplicate toc entries.
#epub_tocdup = True
# Choose between 'default' and 'includehidden'.
#epub_tocscope = 'default'
# Fix unsupported image types using the PIL.
#epub_fix_images = False
# Scale large images.
#epub_max_image_width = 0
# How to display URL addresses: 'footnote', 'no', or 'inline'.
#epub_show_urls = 'inline'
# If false, no index is generated.
#epub_use_index = True
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