sphinx-adc-theme


Namesphinx-adc-theme JSON
Version 0.1.7 PyPI version JSON
download
home_pagehttps://github.com/mga-sphinx/sphinx_adc_theme
SummaryApple Developer Connection theme for Sphinx, 2015 version.
upload_time2020-03-07 07:46:39
maintainer
docs_urlNone
authorChristophe CHAUVET
requires_python
licenseBSD
keywords sphinx theme
VCS
bugtrack_url
requirements Sphinx setuptools_scm
Travis-CI
coveralls test coverage No coveralls.
            .. _adc: https://developer.apple.com/library/mac/navigation/
.. _bower: http://www.bower.io
.. _sphinx: http://www.sphinx-doc.org
.. _compass: http://www.compass-style.org
.. _sass: http://www.sass-lang.com
.. _grunt: http://www.gruntjs.com
.. _node: http://www.nodejs.com
.. _demo: http://mga-sphinx.github.io/sphinx_adc_theme
.. _hidden: http://sphinx-doc.org/markup/toctree.html

***************************************
Apple Developer Connection Sphinx Theme
***************************************

.. image:: https://travis-ci.org/mga-sphinx/sphinx_adc_theme.svg?branch=master
    :target: https://travis-ci.org/mga-sphinx/sphinx_adc_theme

.. contents:: 

This is a sphinx_ theme that made for adc_.

Check demo_

Installation
============

Via package
-----------

Download the package or add it to your ``requirements.txt`` file:

.. code:: bash

    $ pip install sphinx_adc_theme

In your ``conf.py`` file:

.. code:: python

    import sphinx_adc_theme

    html_theme = "sphinx_adc_theme"

    html_theme_path = [sphinx_adc_theme.get_html_theme_path()]

Via git or download
-------------------

Symlink or subtree the ``sphinx_adc_theme/sphinx_adc_theme`` repository into your documentation at
``docs/_themes/sphinx_adc_theme`` then add the following two settings to your Sphinx
conf.py file:

.. code:: python

    html_theme = "sphinx_adc_theme"
    html_theme_path = ["_themes", ]

Changelog
=========

See CHANGELOG.rst file

Contributing or modifying the theme
===================================

The sphinx_adc_theme is primarily a sass_ project that requires a few other sass libraries. I'm
using bower_ to manage these dependencies and sass_ to build the css. The good news is
I have a very nice set of grunt_ operations that will not only load these dependencies, but watch
for changes, rebuild the sphinx demo docs and build a distributable version of the theme.
The bad news is this means you'll need to set up your environment similar to that
of a front-end developer (vs. that of a python developer). That means installing node and ruby.

Set up your environment
-----------------------

1. Install sphinx_ into a virtual environment.

.. code::

    pip install sphinx

2. Install sass

.. code::

    gem install sass

2. Install node, bower and grunt.

.. code::

    // Install node
    brew install node

    // Install bower and grunt
    npm install -g bower grunt-cli

    // Now that everything is installed, let's install the theme dependecies.
    npm install

Now that our environment is set up, make sure you're in your virtual environment, go to
this repository in your terminal and run grunt:

.. code::

    grunt

This default task will do the following **very cool things that make it worth the trouble**.

1. It'll install and update any bower dependencies.
2. It'll run sphinx and build new docs.
3. It'll watch for changes to the sass files and build css from the changes.
4. It'll rebuild the sphinx docs anytime it notices a change to .rst, .html, .js
   or .css files.


Before you create an issue
--------------------------

I don't have a lot of time to maintain this project due to other responsibilities.
I know there are a lot of Python engineers out there that can't code sass / css and
are unable to submit pull requests. That said, submitting random style bugs without
at least providing sample documentation that replicates your problem is a good
way for me to ignore your request. RST unfortunately can spit out a lot of things
in a lot of ways. I don't have time to research your problem for you, but I do
have time to fix the actual styling issue if you can replicate the problem for me.


Before you send a Pull Request
------------------------------

When you're done with your edits, you can run ``grunt build`` to clean out the old
files and rebuild a new distribution, compressing the css and cleaning out
extraneous files. Please do this before you send in a PR.





            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/mga-sphinx/sphinx_adc_theme",
    "name": "sphinx-adc-theme",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "sphinx theme",
    "author": "Christophe CHAUVET",
    "author_email": "christophe.chauvet@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/2b/96/06c02dbe0f7a7836ddc111d4485af5e289e4f86c82483fcca04ab927709c/sphinx_adc_theme-0.1.7.tar.gz",
    "platform": "",
    "description": ".. _adc: https://developer.apple.com/library/mac/navigation/\n.. _bower: http://www.bower.io\n.. _sphinx: http://www.sphinx-doc.org\n.. _compass: http://www.compass-style.org\n.. _sass: http://www.sass-lang.com\n.. _grunt: http://www.gruntjs.com\n.. _node: http://www.nodejs.com\n.. _demo: http://mga-sphinx.github.io/sphinx_adc_theme\n.. _hidden: http://sphinx-doc.org/markup/toctree.html\n\n***************************************\nApple Developer Connection Sphinx Theme\n***************************************\n\n.. image:: https://travis-ci.org/mga-sphinx/sphinx_adc_theme.svg?branch=master\n    :target: https://travis-ci.org/mga-sphinx/sphinx_adc_theme\n\n.. contents:: \n\nThis is a sphinx_ theme that made for adc_.\n\nCheck demo_\n\nInstallation\n============\n\nVia package\n-----------\n\nDownload the package or add it to your ``requirements.txt`` file:\n\n.. code:: bash\n\n    $ pip install sphinx_adc_theme\n\nIn your ``conf.py`` file:\n\n.. code:: python\n\n    import sphinx_adc_theme\n\n    html_theme = \"sphinx_adc_theme\"\n\n    html_theme_path = [sphinx_adc_theme.get_html_theme_path()]\n\nVia git or download\n-------------------\n\nSymlink or subtree the ``sphinx_adc_theme/sphinx_adc_theme`` repository into your documentation at\n``docs/_themes/sphinx_adc_theme`` then add the following two settings to your Sphinx\nconf.py file:\n\n.. code:: python\n\n    html_theme = \"sphinx_adc_theme\"\n    html_theme_path = [\"_themes\", ]\n\nChangelog\n=========\n\nSee CHANGELOG.rst file\n\nContributing or modifying the theme\n===================================\n\nThe sphinx_adc_theme is primarily a sass_ project that requires a few other sass libraries. I'm\nusing bower_ to manage these dependencies and sass_ to build the css. The good news is\nI have a very nice set of grunt_ operations that will not only load these dependencies, but watch\nfor changes, rebuild the sphinx demo docs and build a distributable version of the theme.\nThe bad news is this means you'll need to set up your environment similar to that\nof a front-end developer (vs. that of a python developer). That means installing node and ruby.\n\nSet up your environment\n-----------------------\n\n1. Install sphinx_ into a virtual environment.\n\n.. code::\n\n    pip install sphinx\n\n2. Install sass\n\n.. code::\n\n    gem install sass\n\n2. Install node, bower and grunt.\n\n.. code::\n\n    // Install node\n    brew install node\n\n    // Install bower and grunt\n    npm install -g bower grunt-cli\n\n    // Now that everything is installed, let's install the theme dependecies.\n    npm install\n\nNow that our environment is set up, make sure you're in your virtual environment, go to\nthis repository in your terminal and run grunt:\n\n.. code::\n\n    grunt\n\nThis default task will do the following **very cool things that make it worth the trouble**.\n\n1. It'll install and update any bower dependencies.\n2. It'll run sphinx and build new docs.\n3. It'll watch for changes to the sass files and build css from the changes.\n4. It'll rebuild the sphinx docs anytime it notices a change to .rst, .html, .js\n   or .css files.\n\n\nBefore you create an issue\n--------------------------\n\nI don't have a lot of time to maintain this project due to other responsibilities.\nI know there are a lot of Python engineers out there that can't code sass / css and\nare unable to submit pull requests. That said, submitting random style bugs without\nat least providing sample documentation that replicates your problem is a good\nway for me to ignore your request. RST unfortunately can spit out a lot of things\nin a lot of ways. I don't have time to research your problem for you, but I do\nhave time to fix the actual styling issue if you can replicate the problem for me.\n\n\nBefore you send a Pull Request\n------------------------------\n\nWhen you're done with your edits, you can run ``grunt build`` to clean out the old\nfiles and rebuild a new distribution, compressing the css and cleaning out\nextraneous files. Please do this before you send in a PR.\n\n\n\n\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Apple Developer Connection theme for Sphinx, 2015 version.",
    "version": "0.1.7",
    "project_urls": {
        "Bug Tracker": "https://github.com/mga-sphinx/sphinx_adc_theme/issues",
        "Demo": "http://mga-sphinx.github.io/sphinx_adc_theme/",
        "Documentation": "https://github.com/mga-sphinx/sphinx_adc_theme/blob/master/README.rst",
        "Homepage": "https://github.com/mga-sphinx/sphinx_adc_theme",
        "Source Code": "https://github.com/mga-sphinx/sphinx_adc_theme"
    },
    "split_keywords": [
        "sphinx",
        "theme"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "475a265ec1190511722d82d640caf626e674e3205fa006683906e01887692f8d",
                "md5": "b9569e44527bfa276906c7781efc23de",
                "sha256": "90ffb43c9e767fda42c3ae6c28cf7c3eb3e198d2106819ea1ba0957b1570edbf"
            },
            "downloads": -1,
            "filename": "sphinx_adc_theme-0.1.7-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b9569e44527bfa276906c7781efc23de",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 238553,
            "upload_time": "2020-03-07T07:46:37",
            "upload_time_iso_8601": "2020-03-07T07:46:37.487063Z",
            "url": "https://files.pythonhosted.org/packages/47/5a/265ec1190511722d82d640caf626e674e3205fa006683906e01887692f8d/sphinx_adc_theme-0.1.7-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b9606c02dbe0f7a7836ddc111d4485af5e289e4f86c82483fcca04ab927709c",
                "md5": "c75eef618524f0c4dd1684871f8f1375",
                "sha256": "dd9c543b4beb3076c733dfc594cc71bac6f96bfe86efcb5db30275da9cffbf3f"
            },
            "downloads": -1,
            "filename": "sphinx_adc_theme-0.1.7.tar.gz",
            "has_sig": false,
            "md5_digest": "c75eef618524f0c4dd1684871f8f1375",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 240951,
            "upload_time": "2020-03-07T07:46:39",
            "upload_time_iso_8601": "2020-03-07T07:46:39.189231Z",
            "url": "https://files.pythonhosted.org/packages/2b/96/06c02dbe0f7a7836ddc111d4485af5e289e4f86c82483fcca04ab927709c/sphinx_adc_theme-0.1.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2020-03-07 07:46:39",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "mga-sphinx",
    "github_project": "sphinx_adc_theme",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "Sphinx",
            "specs": [
                [
                    "==",
                    "4.5.0"
                ]
            ]
        },
        {
            "name": "setuptools_scm",
            "specs": [
                [
                    "==",
                    "6.4.2"
                ]
            ]
        }
    ],
    "lcname": "sphinx-adc-theme"
}
        
Elapsed time: 0.15950s