parent
baf043b5f5
commit
411e928ca8
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
https://github.com/0xHiteshPatel/sphinxcontrib-addmetahtml
|
@ -0,0 +1 @@
|
|||||||
|
./sphinxcontrib_addmetahtml-0.1.1-py3.7.egg
|
@ -0,0 +1 @@
|
|||||||
|
c:\rpa\pyopenrpa_repo\resources\wpy64-3720\python-3.7.2.amd64\lib\site-packages
|
@ -0,0 +1,20 @@
|
|||||||
|
Metadata-Version: 1.1
|
||||||
|
Name: sphinxcontrib-addmetahtml
|
||||||
|
Version: 0.1.1
|
||||||
|
Summary: Sphinx "addmetahtml" extension
|
||||||
|
Home-page: https://github.com/0xHiteshPatel/sphinxcontrib-addmetahtml
|
||||||
|
Author: Hitesh Patel
|
||||||
|
Author-email: hp@hiteshpatel.net
|
||||||
|
License: BSD
|
||||||
|
Download-URL: http://pypi.python.org/pypi/sphinxcontrib-addmetahtml
|
||||||
|
Description: Sphinx extension that enables addition of user-defined HTML to docs
|
||||||
|
Platform: any
|
||||||
|
Classifier: Development Status :: 4 - Beta
|
||||||
|
Classifier: Environment :: Console
|
||||||
|
Classifier: Environment :: Web Environment
|
||||||
|
Classifier: Intended Audience :: Developers
|
||||||
|
Classifier: License :: OSI Approved :: BSD License
|
||||||
|
Classifier: Operating System :: OS Independent
|
||||||
|
Classifier: Programming Language :: Python
|
||||||
|
Classifier: Topic :: Documentation
|
||||||
|
Classifier: Topic :: Utilities
|
@ -0,0 +1,12 @@
|
|||||||
|
README.rst
|
||||||
|
setup.cfg
|
||||||
|
setup.py
|
||||||
|
sphinxcontrib/__init__.py
|
||||||
|
sphinxcontrib/addmetahtml.py
|
||||||
|
sphinxcontrib_addmetahtml.egg-info/PKG-INFO
|
||||||
|
sphinxcontrib_addmetahtml.egg-info/SOURCES.txt
|
||||||
|
sphinxcontrib_addmetahtml.egg-info/dependency_links.txt
|
||||||
|
sphinxcontrib_addmetahtml.egg-info/namespace_packages.txt
|
||||||
|
sphinxcontrib_addmetahtml.egg-info/not-zip-safe
|
||||||
|
sphinxcontrib_addmetahtml.egg-info/requires.txt
|
||||||
|
sphinxcontrib_addmetahtml.egg-info/top_level.txt
|
@ -0,0 +1 @@
|
|||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
sphinxcontrib
|
@ -0,0 +1 @@
|
|||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
Sphinx>=1.6
|
@ -0,0 +1 @@
|
|||||||
|
sphinxcontrib
|
@ -0,0 +1,14 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
"""
|
||||||
|
sphinxcontrib
|
||||||
|
~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
This package is a namespace package that contains all extensions
|
||||||
|
distributed in the ``sphinx-contrib`` distribution.
|
||||||
|
|
||||||
|
:copyright: Copyright 2007-2009 by the Sphinx team, see AUTHORS.
|
||||||
|
:license: BSD, see LICENSE for details.
|
||||||
|
"""
|
||||||
|
|
||||||
|
__import__('pkg_resources').declare_namespace(__name__)
|
||||||
|
|
@ -0,0 +1,27 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from sphinx.errors import ExtensionError
|
||||||
|
|
||||||
|
def insert_content(app, pagename, templatename, context, doctree):
|
||||||
|
if not app.config.addmetahtml_enabled:
|
||||||
|
return
|
||||||
|
|
||||||
|
metatags = context.get('metatags', '')
|
||||||
|
metatags += app.config.addmetahtml_content
|
||||||
|
context['metatags'] = metatags
|
||||||
|
|
||||||
|
def validate_config(app):
|
||||||
|
if not app.config.addmetahtml_content:
|
||||||
|
raise ExtensionError("Please set a value for 'addmetahtml_content'")
|
||||||
|
|
||||||
|
def setup(app):
|
||||||
|
app.add_config_value('addmetahtml_enabled', True, 'html')
|
||||||
|
app.add_config_value('addmetahtml_content', '', 'html')
|
||||||
|
app.connect('builder-inited', validate_config)
|
||||||
|
app.connect('html-page-context', insert_content)
|
||||||
|
|
||||||
|
return
|
||||||
|
{
|
||||||
|
'version': '0.1.1'
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
#!C:\RPA\pyOpenRPA_repo\Resources\WPy64-3720\python-3.7.2.amd64\python.exe
|
||||||
|
# EASY-INSTALL-ENTRY-SCRIPT: 'chardet==3.0.4','console_scripts','chardetect'
|
||||||
|
__requires__ = 'chardet==3.0.4'
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
from pkg_resources import load_entry_point
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
||||||
|
sys.exit(
|
||||||
|
load_entry_point('chardet==3.0.4', 'console_scripts', 'chardetect')()
|
||||||
|
)
|
Binary file not shown.
@ -0,0 +1,12 @@
|
|||||||
|
#!C:\RPA\pyOpenRPA_repo\Resources\WPy64-3720\python-3.7.2.amd64\python.exe
|
||||||
|
# EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==40.8.0','console_scripts','easy_install-3.6'
|
||||||
|
__requires__ = 'setuptools==40.8.0'
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
from pkg_resources import load_entry_point
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
||||||
|
sys.exit(
|
||||||
|
load_entry_point('setuptools==40.8.0', 'console_scripts', 'easy_install-3.6')()
|
||||||
|
)
|
Binary file not shown.
@ -0,0 +1,12 @@
|
|||||||
|
#!C:\RPA\pyOpenRPA_repo\Resources\WPy64-3720\python-3.7.2.amd64\python.exe
|
||||||
|
# EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==40.8.0','console_scripts','easy_install'
|
||||||
|
__requires__ = 'setuptools==40.8.0'
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
from pkg_resources import load_entry_point
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
||||||
|
sys.exit(
|
||||||
|
load_entry_point('setuptools==40.8.0', 'console_scripts', 'easy_install')()
|
||||||
|
)
|
Binary file not shown.
@ -0,0 +1,12 @@
|
|||||||
|
#!C:\RPA\pyOpenRPA_repo\Resources\WPy64-3720\python-3.7.2.amd64\python.exe
|
||||||
|
# EASY-INSTALL-ENTRY-SCRIPT: 'Babel==2.9.0','console_scripts','pybabel'
|
||||||
|
__requires__ = 'Babel==2.9.0'
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
from pkg_resources import load_entry_point
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
||||||
|
sys.exit(
|
||||||
|
load_entry_point('Babel==2.9.0', 'console_scripts', 'pybabel')()
|
||||||
|
)
|
Binary file not shown.
@ -0,0 +1,12 @@
|
|||||||
|
#!C:\RPA\pyOpenRPA_repo\Resources\WPy64-3720\python-3.7.2.amd64\python.exe
|
||||||
|
# EASY-INSTALL-ENTRY-SCRIPT: 'Pygments==2.7.1','console_scripts','pygmentize'
|
||||||
|
__requires__ = 'Pygments==2.7.1'
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
from pkg_resources import load_entry_point
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
||||||
|
sys.exit(
|
||||||
|
load_entry_point('Pygments==2.7.1', 'console_scripts', 'pygmentize')()
|
||||||
|
)
|
Binary file not shown.
@ -0,0 +1,12 @@
|
|||||||
|
#!C:\RPA\pyOpenRPA_repo\Resources\WPy64-3720\python-3.7.2.amd64\python.exe
|
||||||
|
# EASY-INSTALL-ENTRY-SCRIPT: 'Sphinx==3.4.0','console_scripts','sphinx-apidoc'
|
||||||
|
__requires__ = 'Sphinx==3.4.0'
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
from pkg_resources import load_entry_point
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
||||||
|
sys.exit(
|
||||||
|
load_entry_point('Sphinx==3.4.0', 'console_scripts', 'sphinx-apidoc')()
|
||||||
|
)
|
Binary file not shown.
@ -0,0 +1,12 @@
|
|||||||
|
#!C:\RPA\pyOpenRPA_repo\Resources\WPy64-3720\python-3.7.2.amd64\python.exe
|
||||||
|
# EASY-INSTALL-ENTRY-SCRIPT: 'Sphinx==3.4.0','console_scripts','sphinx-autogen'
|
||||||
|
__requires__ = 'Sphinx==3.4.0'
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
from pkg_resources import load_entry_point
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
||||||
|
sys.exit(
|
||||||
|
load_entry_point('Sphinx==3.4.0', 'console_scripts', 'sphinx-autogen')()
|
||||||
|
)
|
Binary file not shown.
@ -0,0 +1,12 @@
|
|||||||
|
#!C:\RPA\pyOpenRPA_repo\Resources\WPy64-3720\python-3.7.2.amd64\python.exe
|
||||||
|
# EASY-INSTALL-ENTRY-SCRIPT: 'Sphinx==3.4.0','console_scripts','sphinx-build'
|
||||||
|
__requires__ = 'Sphinx==3.4.0'
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
from pkg_resources import load_entry_point
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
||||||
|
sys.exit(
|
||||||
|
load_entry_point('Sphinx==3.4.0', 'console_scripts', 'sphinx-build')()
|
||||||
|
)
|
Binary file not shown.
@ -0,0 +1,12 @@
|
|||||||
|
#!C:\RPA\pyOpenRPA_repo\Resources\WPy64-3720\python-3.7.2.amd64\python.exe
|
||||||
|
# EASY-INSTALL-ENTRY-SCRIPT: 'Sphinx==3.4.0','console_scripts','sphinx-quickstart'
|
||||||
|
__requires__ = 'Sphinx==3.4.0'
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
from pkg_resources import load_entry_point
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
||||||
|
sys.exit(
|
||||||
|
load_entry_point('Sphinx==3.4.0', 'console_scripts', 'sphinx-quickstart')()
|
||||||
|
)
|
Binary file not shown.
Loading…
Reference in new issue