[Python-modules-commits] [python-git] 01/04: New upstream version 2.0.9
Takaki Taniguchi
takaki at moszumanska.debian.org
Mon Oct 17 10:49:10 UTC 2016
This is an automated email from the git hooks/post-receive script.
takaki pushed a commit to branch master
in repository python-git.
commit 50d8da47071a21c22453ff87c8ea74fc8804a765
Author: TANIGUCHI Takaki <takaki at asis.media-as.org>
Date: Mon Oct 17 18:02:50 2016 +0900
New upstream version 2.0.9
---
AUTHORS | 2 +
GitPython.egg-info/PKG-INFO | 4 +-
GitPython.egg-info/SOURCES.txt | 51 +-
GitPython.egg-info/requires.txt | 2 +-
PKG-INFO | 4 +-
VERSION | 2 +-
doc/build/doctrees/changes.doctree | Bin 0 -> 187056 bytes
doc/build/doctrees/environment.pickle | Bin 0 -> 162271 bytes
doc/build/doctrees/index.doctree | Bin 0 -> 5337 bytes
doc/build/doctrees/intro.doctree | Bin 0 -> 30272 bytes
doc/build/doctrees/reference.doctree | Bin 0 -> 1953294 bytes
doc/build/doctrees/roadmap.doctree | Bin 0 -> 3274 bytes
doc/build/doctrees/tutorial.doctree | Bin 0 -> 134138 bytes
doc/build/doctrees/whatsnew.doctree | Bin 0 -> 8783 bytes
doc/build/html/.buildinfo | 4 +
.../html/_sources/changes.txt} | 9 +
.../index.rst => build/html/_sources/index.txt} | 1 -
.../intro.rst => build/html/_sources/intro.txt} | 24 +-
doc/build/html/_sources/reference.txt | 229 +
doc/build/html/_sources/roadmap.txt | 9 +
.../html/_sources/tutorial.txt} | 0
.../html/_sources/whatsnew.txt} | 0
doc/build/html/_static/ajax-loader.gif | Bin 0 -> 673 bytes
doc/build/html/_static/alabaster.css | 593 ++
doc/build/html/_static/basic.css | 608 ++
doc/build/html/_static/comment-bright.png | Bin 0 -> 3500 bytes
doc/build/html/_static/comment-close.png | Bin 0 -> 3578 bytes
doc/build/html/_static/comment.png | Bin 0 -> 3445 bytes
doc/build/html/_static/doctools.js | 287 +
doc/build/html/_static/down-pressed.png | Bin 0 -> 347 bytes
doc/build/html/_static/down.png | Bin 0 -> 347 bytes
doc/build/html/_static/file.png | Bin 0 -> 358 bytes
doc/build/html/_static/jquery-1.11.1.js | 10308 +++++++++++++++++++
doc/build/html/_static/jquery.js | 4 +
doc/build/html/_static/minus.png | Bin 0 -> 173 bytes
doc/build/html/_static/plus.png | Bin 0 -> 173 bytes
doc/build/html/_static/pygments.css | 65 +
doc/build/html/_static/searchtools.js | 651 ++
doc/build/html/_static/underscore-1.3.1.js | 999 ++
doc/build/html/_static/underscore.js | 31 +
doc/build/html/_static/up-pressed.png | Bin 0 -> 345 bytes
doc/build/html/_static/up.png | Bin 0 -> 345 bytes
doc/build/html/_static/websupport.js | 808 ++
doc/build/html/changes.html | 955 ++
doc/build/html/genindex.html | 3877 +++++++
doc/build/html/index.html | 212 +
doc/build/html/intro.html | 238 +
doc/build/html/objects.inv | Bin 0 -> 5528 bytes
doc/build/html/py-modindex.html | 240 +
doc/build/html/reference.html | 7988 ++++++++++++++
doc/build/html/roadmap.html | 99 +
doc/build/html/search.html | 99 +
doc/build/html/searchindex.js | 1 +
doc/build/html/tutorial.html | 738 ++
doc/build/html/whatsnew.html | 119 +
doc/source/changes.rst | 9 +
doc/source/conf.py | 3 +-
doc/source/index.rst | 1 -
doc/source/intro.rst | 24 +-
doc/source/tutorial.rst | 124 +-
git/__init__.py | 28 +-
git/cmd.py | 400 +-
git/compat.py | 74 +-
git/config.py | 53 +-
git/db.py | 4 +-
git/diff.py | 32 +-
git/exc.py | 79 +-
git/index/base.py | 48 +-
git/index/fun.py | 47 +-
git/index/util.py | 14 +-
git/objects/__init__.py | 16 +-
git/objects/base.py | 2 +-
git/objects/commit.py | 19 +-
git/objects/fun.py | 4 +-
git/objects/submodule/base.py | 119 +-
git/objects/tag.py | 6 +-
git/refs/head.py | 28 +-
git/refs/reference.py | 2 +-
git/refs/symbolic.py | 86 +-
git/refs/tag.py | 14 +-
git/remote.py | 98 +-
git/repo/base.py | 84 +-
git/repo/fun.py | 6 +-
git/test/fixtures/cat_file.py | 7 +-
git/test/lib/asserts.py | 17 +-
git/test/lib/helper.py | 266 +-
git/test/performance/lib.py | 8 +-
git/test/performance/test_commit.py | 4 +
git/test/performance/test_odb.py | 9 +-
git/test/performance/test_streams.py | 7 +-
git/test/test_base.py | 46 +-
git/test/test_commit.py | 136 +-
git/test/test_config.py | 194 +-
git/test/test_diff.py | 119 +-
git/test/test_docs.py | 102 +-
git/test/test_exc.py | 142 +
git/test/test_git.py | 106 +-
git/test/test_index.py | 290 +-
git/test/test_reflog.py | 5 +-
git/test/test_refs.py | 28 +-
git/test/test_remote.py | 253 +-
git/test/test_repo.py | 351 +-
git/test/test_submodule.py | 220 +-
git/test/test_tree.py | 19 +-
git/test/test_util.py | 130 +-
git/util.py | 154 +-
requirements.txt | 2 +
setup.py | 56 +-
108 files changed, 31559 insertions(+), 1797 deletions(-)
diff --git a/AUTHORS b/AUTHORS
index 15fff4a..34cf8cb 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -14,5 +14,7 @@ Contributors are:
-Sebastian Thiel <byronimo _at_ gmail.com>
-Jonathan Chu <jonathan.chu _at_ me.com>
-Vincent Driessen <me _at_ nvie.com>
+-Phil Elson <pelson _dot_ pub _at_ gmail.com>
+-Bernard `Guyzmo` Pratz <guyzmo+gitpython+pub at m0g.net>
Portions derived from other open source works and are clearly marked.
diff --git a/GitPython.egg-info/PKG-INFO b/GitPython.egg-info/PKG-INFO
index e5544ba..da53655 100644
--- a/GitPython.egg-info/PKG-INFO
+++ b/GitPython.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: GitPython
-Version: 2.0.8
+Version: 2.0.9
Summary: Python Git Library
Home-page: https://github.com/gitpython-developers/GitPython
Author: Sebastian Thiel, Michael Trier
@@ -24,4 +24,4 @@ Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
-Requires: gitdb (>=0.6.4)
+Requires: gitdb2 (>=2.0.0)
diff --git a/GitPython.egg-info/SOURCES.txt b/GitPython.egg-info/SOURCES.txt
index 52ee0aa..5129cdc 100644
--- a/GitPython.egg-info/SOURCES.txt
+++ b/GitPython.egg-info/SOURCES.txt
@@ -14,6 +14,55 @@ GitPython.egg-info/requires.txt
GitPython.egg-info/top_level.txt
doc/.gitignore
doc/Makefile
+doc/build/doctrees/changes.doctree
+doc/build/doctrees/environment.pickle
+doc/build/doctrees/index.doctree
+doc/build/doctrees/intro.doctree
+doc/build/doctrees/reference.doctree
+doc/build/doctrees/roadmap.doctree
+doc/build/doctrees/tutorial.doctree
+doc/build/doctrees/whatsnew.doctree
+doc/build/html/.buildinfo
+doc/build/html/changes.html
+doc/build/html/genindex.html
+doc/build/html/index.html
+doc/build/html/intro.html
+doc/build/html/objects.inv
+doc/build/html/py-modindex.html
+doc/build/html/reference.html
+doc/build/html/roadmap.html
+doc/build/html/search.html
+doc/build/html/searchindex.js
+doc/build/html/tutorial.html
+doc/build/html/whatsnew.html
+doc/build/html/_sources/changes.txt
+doc/build/html/_sources/index.txt
+doc/build/html/_sources/intro.txt
+doc/build/html/_sources/reference.txt
+doc/build/html/_sources/roadmap.txt
+doc/build/html/_sources/tutorial.txt
+doc/build/html/_sources/whatsnew.txt
+doc/build/html/_static/ajax-loader.gif
+doc/build/html/_static/alabaster.css
+doc/build/html/_static/basic.css
+doc/build/html/_static/comment-bright.png
+doc/build/html/_static/comment-close.png
+doc/build/html/_static/comment.png
+doc/build/html/_static/doctools.js
+doc/build/html/_static/down-pressed.png
+doc/build/html/_static/down.png
+doc/build/html/_static/file.png
+doc/build/html/_static/jquery-1.11.1.js
+doc/build/html/_static/jquery.js
+doc/build/html/_static/minus.png
+doc/build/html/_static/plus.png
+doc/build/html/_static/pygments.css
+doc/build/html/_static/searchtools.js
+doc/build/html/_static/underscore-1.3.1.js
+doc/build/html/_static/underscore.js
+doc/build/html/_static/up-pressed.png
+doc/build/html/_static/up.png
+doc/build/html/_static/websupport.js
doc/source/changes.rst
doc/source/conf.py
doc/source/index.rst
@@ -21,7 +70,6 @@ doc/source/intro.rst
doc/source/reference.rst
doc/source/roadmap.rst
doc/source/tutorial.rst
-doc/source/whatsnew.rst
git/__init__.py
git/cmd.py
git/compat.py
@@ -68,6 +116,7 @@ git/test/test_config.py
git/test/test_db.py
git/test/test_diff.py
git/test/test_docs.py
+git/test/test_exc.py
git/test/test_fun.py
git/test/test_git.py
git/test/test_index.py
diff --git a/GitPython.egg-info/requires.txt b/GitPython.egg-info/requires.txt
index 9d6c4b0..7dd1ffa 100644
--- a/GitPython.egg-info/requires.txt
+++ b/GitPython.egg-info/requires.txt
@@ -1 +1 @@
-gitdb >= 0.6.4
+gitdb2 >= 2.0.0
diff --git a/PKG-INFO b/PKG-INFO
index e5544ba..da53655 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: GitPython
-Version: 2.0.8
+Version: 2.0.9
Summary: Python Git Library
Home-page: https://github.com/gitpython-developers/GitPython
Author: Sebastian Thiel, Michael Trier
@@ -24,4 +24,4 @@ Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
-Requires: gitdb (>=0.6.4)
+Requires: gitdb2 (>=2.0.0)
diff --git a/VERSION b/VERSION
index 815e68d..09843e3 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.0.8
+2.0.9
diff --git a/doc/build/doctrees/changes.doctree b/doc/build/doctrees/changes.doctree
new file mode 100644
index 0000000..6d5a026
Binary files /dev/null and b/doc/build/doctrees/changes.doctree differ
diff --git a/doc/build/doctrees/environment.pickle b/doc/build/doctrees/environment.pickle
new file mode 100644
index 0000000..382bc3c
Binary files /dev/null and b/doc/build/doctrees/environment.pickle differ
diff --git a/doc/build/doctrees/index.doctree b/doc/build/doctrees/index.doctree
new file mode 100644
index 0000000..cd8366c
Binary files /dev/null and b/doc/build/doctrees/index.doctree differ
diff --git a/doc/build/doctrees/intro.doctree b/doc/build/doctrees/intro.doctree
new file mode 100644
index 0000000..dd9c868
Binary files /dev/null and b/doc/build/doctrees/intro.doctree differ
diff --git a/doc/build/doctrees/reference.doctree b/doc/build/doctrees/reference.doctree
new file mode 100644
index 0000000..4deadb1
Binary files /dev/null and b/doc/build/doctrees/reference.doctree differ
diff --git a/doc/build/doctrees/roadmap.doctree b/doc/build/doctrees/roadmap.doctree
new file mode 100644
index 0000000..18dfcc6
Binary files /dev/null and b/doc/build/doctrees/roadmap.doctree differ
diff --git a/doc/build/doctrees/tutorial.doctree b/doc/build/doctrees/tutorial.doctree
new file mode 100644
index 0000000..cbbefdc
Binary files /dev/null and b/doc/build/doctrees/tutorial.doctree differ
diff --git a/doc/build/doctrees/whatsnew.doctree b/doc/build/doctrees/whatsnew.doctree
new file mode 100644
index 0000000..eabbef4
Binary files /dev/null and b/doc/build/doctrees/whatsnew.doctree differ
diff --git a/doc/build/html/.buildinfo b/doc/build/html/.buildinfo
new file mode 100644
index 0000000..42c65f2
--- /dev/null
+++ b/doc/build/html/.buildinfo
@@ -0,0 +1,4 @@
+# Sphinx build info version 1
+# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
+config: aa5cad3465d5616735474421fa2148f2
+tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/doc/source/changes.rst b/doc/build/html/_sources/changes.txt
similarity index 98%
copy from doc/source/changes.rst
copy to doc/build/html/_sources/changes.txt
index bba538b..fcd8240 100644
--- a/doc/source/changes.rst
+++ b/doc/build/html/_sources/changes.txt
@@ -2,6 +2,15 @@
Changelog
=========
+2.0.9 - Bugfixes
+=============================
+
+* `tag.commit` will now resolve commits deeply.
+* `Repo` objects can now be pickled, which helps with multi-processing.
+* `Head.checkout()` now deals with detached heads, which is when it will return
+ the `HEAD` reference instead.
+
+* `DiffIndex.iter_change_type(...)` produces better results when diffing
2.0.8 - Features and Bugfixes
=============================
diff --git a/doc/source/index.rst b/doc/build/html/_sources/index.txt
similarity index 97%
copy from doc/source/index.rst
copy to doc/build/html/_sources/index.txt
index 1079c5c..69fb573 100644
--- a/doc/source/index.rst
+++ b/doc/build/html/_sources/index.txt
@@ -9,7 +9,6 @@ GitPython Documentation
:maxdepth: 2
intro
- whatsnew
tutorial
reference
roadmap
diff --git a/doc/source/intro.rst b/doc/build/html/_sources/intro.txt
similarity index 80%
copy from doc/source/intro.rst
copy to doc/build/html/_sources/intro.txt
index 6c4e50f..1766f8a 100644
--- a/doc/source/intro.rst
+++ b/doc/build/html/_sources/intro.txt
@@ -15,7 +15,7 @@ Requirements
* `Python`_ 2.7 or newer
Since GitPython 2.0.0. Please note that python 2.6 is still reasonably well supported, but might
- deteriorate over time.
+ deteriorate over time. Support is provided on a best-effort basis only.
* `Git`_ 1.7.0 or newer
It should also work with older versions, but it may be that some operations
involving remotes will not work as expected.
@@ -59,6 +59,28 @@ script:
.. note:: In this case, you have to manually install `GitDB`_ as well. It would be recommended to use the :ref:`git source repository <source-code-label>` in that case.
+Limitations
+===========
+
+Leakage of System Resources
+---------------------------
+
+GitPython is not suited for long-running processes (like daemons) as it tends to
+leak system resources. It was written in a time where destructors (as implemented
+in the `__del__` method) still ran deterministically.
+
+In case you still want to use it in such a context, you will want to search the
+codebase for `__del__` implementations and call these yourself when you see fit.
+
+Another way assure proper cleanup of resources is to factor out GitPython into a
+separate process which can be dropped periodically.
+
+Best-effort for Python 2.6 and Windows support
+----------------------------------------------
+
+This means that support for these platforms is likely to worsen over time
+as they are kept alive solely by their users, or not.
+
Getting Started
===============
diff --git a/doc/build/html/_sources/reference.txt b/doc/build/html/_sources/reference.txt
new file mode 100644
index 0000000..53fa863
--- /dev/null
+++ b/doc/build/html/_sources/reference.txt
@@ -0,0 +1,229 @@
+.. _api_reference_toplevel:
+
+API Reference
+=============
+
+Objects.Base
+------------
+
+.. automodule:: git.objects.base
+ :members:
+ :undoc-members:
+ :special-members:
+
+Objects.Blob
+------------
+
+.. automodule:: git.objects.blob
+ :members:
+ :undoc-members:
+ :special-members:
+
+Objects.Commit
+--------------
+
+.. automodule:: git.objects.commit
+ :members:
+ :undoc-members:
+ :special-members:
+
+Objects.Tag
+-----------
+
+.. automodule:: git.objects.tag
+ :members:
+ :undoc-members:
+ :special-members:
+
+Objects.Tree
+------------
+
+.. automodule:: git.objects.tree
+ :members:
+ :undoc-members:
+ :special-members:
+
+Objects.Functions
+-----------------
+
+.. automodule:: git.objects.fun
+ :members:
+ :undoc-members:
+ :special-members:
+
+Objects.Submodule.base
+----------------------
+
+.. automodule:: git.objects.submodule.base
+ :members:
+ :undoc-members:
+ :special-members:
+
+Objects.Submodule.root
+----------------------
+
+.. automodule:: git.objects.submodule.root
+ :members:
+ :undoc-members:
+ :special-members:
+
+Objects.Submodule.util
+----------------------
+
+.. automodule:: git.objects.submodule.util
+ :members:
+ :undoc-members:
+ :special-members:
+
+Objects.Util
+-------------
+
+.. automodule:: git.objects.util
+ :members:
+ :undoc-members:
+ :special-members:
+
+Index.Base
+----------
+
+.. automodule:: git.index.base
+ :members:
+ :undoc-members:
+ :special-members:
+
+Index.Functions
+---------------
+
+.. automodule:: git.index.fun
+ :members:
+ :undoc-members:
+ :special-members:
+
+Index.Types
+-----------
+
+.. automodule:: git.index.typ
+ :members:
+ :undoc-members:
+ :special-members:
+
+Index.Util
+-------------
+
+.. automodule:: git.index.util
+ :members:
+ :undoc-members:
+ :special-members:
+
+GitCmd
+------
+
+.. automodule:: git.cmd
+ :members:
+ :undoc-members:
+ :special-members:
+
+Config
+------
+
+.. automodule:: git.config
+ :members:
+ :undoc-members:
+ :special-members:
+
+Diff
+----
+
+.. automodule:: git.diff
+ :members:
+ :undoc-members:
+ :special-members:
+
+Exceptions
+----------
+
+.. automodule:: git.exc
+ :members:
+ :undoc-members:
+ :special-members:
+
+
+Refs.symbolic
+-------------
+
+.. automodule:: git.refs.symbolic
+ :members:
+ :undoc-members:
+ :special-members:
+
+Refs.reference
+--------------
+
+.. automodule:: git.refs.reference
+ :members:
+ :undoc-members:
+ :special-members:
+
+Refs.head
+---------
+
+.. automodule:: git.refs.head
+ :members:
+ :undoc-members:
+ :special-members:
+
+Refs.tag
+------------
+
+.. automodule:: git.refs.tag
+ :members:
+ :undoc-members:
+ :special-members:
+
+Refs.remote
+------------
+
+.. automodule:: git.refs.remote
+ :members:
+ :undoc-members:
+ :special-members:
+
+Refs.log
+------------
+
+.. automodule:: git.refs.log
+ :members:
+ :undoc-members:
+ :special-members:
+
+Remote
+------
+
+.. automodule:: git.remote
+ :members:
+ :undoc-members:
+ :special-members:
+
+Repo.Base
+---------
+
+.. automodule:: git.repo.base
+ :members:
+ :undoc-members:
+ :special-members:
+
+Repo.Functions
+--------------
+
+.. automodule:: git.repo.fun
+ :members:
+ :undoc-members:
+ :special-members:
+
+Util
+----
+
+.. automodule:: git.util
+ :members:
+ :undoc-members:
+ :special-members:
diff --git a/doc/build/html/_sources/roadmap.txt b/doc/build/html/_sources/roadmap.txt
new file mode 100644
index 0000000..f93d5e6
--- /dev/null
+++ b/doc/build/html/_sources/roadmap.txt
@@ -0,0 +1,9 @@
+
+#######
+Roadmap
+#######
+The full list of milestones including associated tasks can be found on github:
+https://github.com/gitpython-developers/GitPython/issues
+
+Select the respective milestone to filter the list of issues accordingly.
+
diff --git a/doc/source/tutorial.rst b/doc/build/html/_sources/tutorial.txt
similarity index 100%
copy from doc/source/tutorial.rst
copy to doc/build/html/_sources/tutorial.txt
diff --git a/doc/source/whatsnew.rst b/doc/build/html/_sources/whatsnew.txt
similarity index 100%
rename from doc/source/whatsnew.rst
rename to doc/build/html/_sources/whatsnew.txt
diff --git a/doc/build/html/_static/ajax-loader.gif b/doc/build/html/_static/ajax-loader.gif
new file mode 100644
index 0000000..61faf8c
Binary files /dev/null and b/doc/build/html/_static/ajax-loader.gif differ
diff --git a/doc/build/html/_static/alabaster.css b/doc/build/html/_static/alabaster.css
new file mode 100644
index 0000000..bc420a4
--- /dev/null
+++ b/doc/build/html/_static/alabaster.css
@@ -0,0 +1,593 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ at import url("basic.css");
+
+/* -- page layout ----------------------------------------------------------- */
+
+body {
+ font-family: 'goudy old style', 'minion pro', 'bell mt', Georgia, 'Hiragino Mincho Pro', serif;
+ font-size: 17px;
+ background-color: white;
+ color: #000;
+ margin: 0;
+ padding: 0;
+}
+
+div.document {
+ width: 940px;
+ 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;
+}
+
+div.body > .section {
+ text-align: left;
+}
+
+div.footer {
+ width: 940px;
+ margin: 20px auto 30px auto;
+ font-size: 14px;
+ color: #888;
+ text-align: right;
+}
+
+div.footer a {
+ color: #888;
+}
+
+
+div.relations {
+ display: none;
+}
+
+
+div.sphinxsidebar a {
+ color: #444;
+ text-decoration: none;
+ border-bottom: 1px dotted #999;
+}
+
+div.sphinxsidebar a:hover {
+ border-bottom: 1px solid #999;
+}
+
+div.sphinxsidebar {
+ font-size: 14px;
+ line-height: 1.5;
+}
+
+div.sphinxsidebarwrapper {
+ padding: 18px 10px;
+}
+
+div.sphinxsidebarwrapper p.logo {
+ padding: 0;
+ margin: -10px 0 0 0px;
+ text-align: center;
+}
+
+div.sphinxsidebarwrapper h1.logo {
+ margin-top: -10px;
+ text-align: center;
+ margin-bottom: 5px;
+ text-align: left;
+}
+
+div.sphinxsidebarwrapper h1.logo-name {
+ margin-top: 0px;
+}
+
+div.sphinxsidebarwrapper p.blurb {
+ margin-top: 0;
+ font-style: normal;
+}
+
+div.sphinxsidebar h3,
+div.sphinxsidebar h4 {
+ font-family: 'Garamond', 'Georgia', 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.sphinxsidebar p {
+ color: #555;
+ margin: 10px 0;
+}
+
+div.sphinxsidebar ul {
+ margin: 10px 0;
+ padding: 0;
+ color: #000;
+}
+
+div.sphinxsidebar ul li.toctree-l1 > a {
+ font-size: 120%;
+}
+
+div.sphinxsidebar ul li.toctree-l2 > a {
+ font-size: 110%;
+}
+
+div.sphinxsidebar input {
+ border: 1px solid #CCC;
+ font-family: 'goudy old style', 'minion pro', 'bell mt', Georgia, 'Hiragino Mincho Pro', serif;
+ font-size: 1em;
+}
+
+div.sphinxsidebar hr {
+ border: none;
+ height: 1px;
+ color: #AAA;
+ background: #AAA;
+
+ text-align: left;
+ margin-left: 0;
+ width: 50%;
+}
+
+/* -- body styles ----------------------------------------------------------- */
+
+a {
+ color: #004B6B;
+ text-decoration: underline;
+}
+
+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: 'Garamond', 'Georgia', serif;
+ font-weight: normal;
+ margin: 30px 0px 10px 0px;
+ padding: 0;
+}
+
+div.body h1 { margin-top: 0; padding-top: 0; font-size: 240%; }
+div.body h2 { font-size: 180%; }
+div.body h3 { font-size: 150%; }
+div.body h4 { font-size: 130%; }
+div.body h5 { font-size: 100%; }
+div.body h6 { font-size: 100%; }
+
+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.4em;
+}
+
+div.admonition {
+ margin: 20px 0px;
+ padding: 10px 30px;
+ background-color: #FCC;
+ border: 1px solid #FAA;
+}
+
+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: 'Garamond', 'Georgia', serif;
+ font-weight: normal;
+ font-size: 24px;
+ 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: #EEE;
+ border: 1px solid #CCC;
+}
+
+div.seealso {
+ background-color: #EEE;
+ border: 1px solid #CCC;
+}
+
+div.topic {
+ background-color: #eee;
+}
+
+p.admonition-title {
+ display: inline;
+}
+
+p.admonition-title:after {
+ content: ":";
+}
+
+pre, tt, code {
+ font-family: 'Consolas', 'Menlo', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace;
+ font-size: 0.9em;
+}
+
+.hll {
+ background-color: #FFC;
+ margin: 0 -12px;
+ padding: 0 12px;
+ display: block;
+}
+
+img.screenshot {
+}
+
+tt.descname, tt.descclassname, code.descname, code.descclassname {
+ font-size: 0.95em;
+}
+
+tt.descname, code.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 {
... 37009 lines suppressed ...
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-git.git
More information about the Python-modules-commits
mailing list