From 59079607f5d48d0b8a8d055d44096411dabf7a29 Mon Sep 17 00:00:00 2001 From: Durgesh Satyam <6235798+durgeshsatyam@users.noreply.github.com> Date: Tue, 4 Feb 2020 19:55:04 +0530 Subject: [PATCH] initial commit copied from dthreelab docs repo --- AUTHORS.rst | 7 ++ README.rst | 41 +++++++ docs/Makefile | 177 +++++++++++++++++++++++++++++ docs/authors.rst | 1 + docs/conf.py | 258 ++++++++++++++++++++++++++++++++++++++++++ docs/contributing.rst | 1 + docs/history.rst | 1 + docs/index.rst | 63 +++++++++++ docs/installation.rst | 7 ++ docs/make.bat | 242 +++++++++++++++++++++++++++++++++++++++ docs/readme.rst | 1 + docs/root.rst | 7 ++ docs/usage.rst | 7 ++ images/d3logo.png | Bin 0 -> 14953 bytes images/icon.png | Bin 0 -> 8098 bytes 15 files changed, 813 insertions(+) create mode 100644 AUTHORS.rst create mode 100644 README.rst create mode 100644 docs/Makefile create mode 100644 docs/authors.rst create mode 100644 docs/conf.py create mode 100644 docs/contributing.rst create mode 100644 docs/history.rst create mode 100644 docs/index.rst create mode 100644 docs/installation.rst create mode 100644 docs/make.bat create mode 100644 docs/readme.rst create mode 100644 docs/root.rst create mode 100644 docs/usage.rst create mode 100644 images/d3logo.png create mode 100644 images/icon.png diff --git a/AUTHORS.rst b/AUTHORS.rst new file mode 100644 index 0000000..45ab6bc --- /dev/null +++ b/AUTHORS.rst @@ -0,0 +1,7 @@ +Authors +------- + +* Team DThreeLab + + + diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..591fa33 --- /dev/null +++ b/README.rst @@ -0,0 +1,41 @@ +Template +======== + +$project will solve your problem of where to start with documentation, +by providing a basic explanation of how to do it easily. + +Look how easy it is to use: + + import project + # Get your stuff done + project.do_stuff() + +Features +-------- + +- Be awesome +- Make things faster + +Installation +------------ + +Install $project by running: + + install project + +Contribute +---------- + +- Issue Tracker: github.com/$project/$project/issues +- Source Code: github.com/$project/$project + +Support +------- + +If you are having issues, please let us know. +We have a mailing list located at: project@google-groups.com + +License +------- + +The project is licensed under the BSD license. diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 0000000..c04268f --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,177 @@ +# Makefile for Sphinx documentation +# + +# You can set these variables from the command line. +SPHINXOPTS = +SPHINXBUILD = sphinx-build +PAPER = +BUILDDIR = _build + +# User-friendly check for sphinx-build +ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1) +$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/) +endif + +# Internal variables. +PAPEROPT_a4 = -D latex_paper_size=a4 +PAPEROPT_letter = -D latex_paper_size=letter +ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . +# the i18n builder cannot share the environment and doctrees with the others +I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . + +.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext + +help: + @echo "Please use \`make ' where is one of" + @echo " html to make standalone HTML files" + @echo " dirhtml to make HTML files named index.html in directories" + @echo " singlehtml to make a single large HTML file" + @echo " pickle to make pickle files" + @echo " json to make JSON files" + @echo " htmlhelp to make HTML files and a HTML help project" + @echo " qthelp to make HTML files and a qthelp project" + @echo " devhelp to make HTML files and a Devhelp project" + @echo " epub to make an epub" + @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" + @echo " latexpdf to make LaTeX files and run them through pdflatex" + @echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx" + @echo " text to make text files" + @echo " man to make manual pages" + @echo " texinfo to make Texinfo files" + @echo " info to make Texinfo files and run them through makeinfo" + @echo " gettext to make PO message catalogs" + @echo " changes to make an overview of all changed/added/deprecated items" + @echo " xml to make Docutils-native XML files" + @echo " pseudoxml to make pseudoxml-XML files for display purposes" + @echo " linkcheck to check all external links for integrity" + @echo " doctest to run all doctests embedded in the documentation (if enabled)" + +clean: + rm -rf $(BUILDDIR)/* + +html: + $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html + @echo + @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." + +dirhtml: + $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml + @echo + @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml." + +singlehtml: + $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml + @echo + @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml." + +pickle: + $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle + @echo + @echo "Build finished; now you can process the pickle files." + +json: + $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json + @echo + @echo "Build finished; now you can process the JSON files." + +htmlhelp: + $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp + @echo + @echo "Build finished; now you can run HTML Help Workshop with the" \ + ".hhp project file in $(BUILDDIR)/htmlhelp." + +qthelp: + $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp + @echo + @echo "Build finished; now you can run "qcollectiongenerator" with the" \ + ".qhcp project file in $(BUILDDIR)/qthelp, like this:" + @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/ReadtheDocsTemplate.qhcp" + @echo "To view the help file:" + @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/ReadtheDocsTemplate.qhc" + +devhelp: + $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp + @echo + @echo "Build finished." + @echo "To view the help file:" + @echo "# mkdir -p $$HOME/.local/share/devhelp/ReadtheDocsTemplate" + @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/ReadtheDocsTemplate" + @echo "# devhelp" + +epub: + $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub + @echo + @echo "Build finished. The epub file is in $(BUILDDIR)/epub." + +latex: + $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex + @echo + @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." + @echo "Run \`make' in that directory to run these through (pdf)latex" \ + "(use \`make latexpdf' here to do that automatically)." + +latexpdf: + $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex + @echo "Running LaTeX files through pdflatex..." + $(MAKE) -C $(BUILDDIR)/latex all-pdf + @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." + +latexpdfja: + $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex + @echo "Running LaTeX files through platex and dvipdfmx..." + $(MAKE) -C $(BUILDDIR)/latex all-pdf-ja + @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." + +text: + $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text + @echo + @echo "Build finished. The text files are in $(BUILDDIR)/text." + +man: + $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man + @echo + @echo "Build finished. The manual pages are in $(BUILDDIR)/man." + +texinfo: + $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo + @echo + @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo." + @echo "Run \`make' in that directory to run these through makeinfo" \ + "(use \`make info' here to do that automatically)." + +info: + $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo + @echo "Running Texinfo files through makeinfo..." + make -C $(BUILDDIR)/texinfo info + @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo." + +gettext: + $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale + @echo + @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale." + +changes: + $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes + @echo + @echo "The overview file is in $(BUILDDIR)/changes." + +linkcheck: + $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck + @echo + @echo "Link check complete; look for any errors in the above output " \ + "or in $(BUILDDIR)/linkcheck/output.txt." + +doctest: + $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest + @echo "Testing of doctests in the sources finished, look at the " \ + "results in $(BUILDDIR)/doctest/output.txt." + +xml: + $(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml + @echo + @echo "Build finished. The XML files are in $(BUILDDIR)/xml." + +pseudoxml: + $(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml + @echo + @echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml." diff --git a/docs/authors.rst b/docs/authors.rst new file mode 100644 index 0000000..e122f91 --- /dev/null +++ b/docs/authors.rst @@ -0,0 +1 @@ +.. include:: ../AUTHORS.rst diff --git a/docs/conf.py b/docs/conf.py new file mode 100644 index 0000000..d2308f3 --- /dev/null +++ b/docs/conf.py @@ -0,0 +1,258 @@ +# -*- coding: utf-8 -*- +# +# Read the Docs Template documentation build configuration file, created by +# sphinx-quickstart on Tue Aug 26 14:19:49 2014. +# +# This file is execfile()d with the current directory set to its +# containing dir. +# +# Note that not all possible configuration values are present in this +# autogenerated file. +# +# All configuration values have a default; values that are commented out +# serve to show the default. + +import sys +import os + +# If extensions (or modules to document with autodoc) are in another directory, +# add these directories to sys.path here. If the directory is relative to the +# documentation root, use os.path.abspath to make it absolute, like shown here. +#sys.path.insert(0, os.path.abspath('.')) + +# -- General configuration ------------------------------------------------ + +# If your documentation needs a minimal Sphinx version, state it here. +#needs_sphinx = '1.0' + +# Add any Sphinx extension module names here, as strings. They can be +# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom +# ones. +extensions = [] + +# Add any paths that contain templates here, relative to this directory. +templates_path = ['_templates'] + +# The suffix of source filenames. +source_suffix = '.rst' + +# The encoding of source files. +#source_encoding = 'utf-8-sig' + +# The master toctree document. +master_doc = 'index' + +# General information about the project. +project = u'DThreeLab - Documentation' +copyright = u'2019, DThreeLab.com' + +# The version info for the project you're documenting, acts as replacement for +# |version| and |release|, also used in various other places throughout the +# built documents. +# +# The short X.Y version. +version = '1.0' +# The full version, including alpha/beta/rc tags. +release = '1.0' + +# The language for content autogenerated by Sphinx. Refer to documentation +# for a list of supported languages. +#language = None + +# There are two options for replacing |today|: either, you set today to some +# non-false value, then it is used: +#today = '' +# Else, today_fmt is used as the format for a strftime call. +#today_fmt = '%B %d, %Y' + +# List of patterns, relative to source directory, that match files and +# directories to ignore when looking for source files. +exclude_patterns = ['_build'] + +# The reST default role (used for this markup: `text`) to use for all +# documents. +#default_role = None + +# If true, '()' will be appended to :func: etc. cross-reference text. +#add_function_parentheses = True + +# If true, the current module name will be prepended to all description +# unit titles (such as .. function::). +#add_module_names = True + +# If true, sectionauthor and moduleauthor directives will be shown in the +# output. They are ignored by default. +#show_authors = False + +# The name of the Pygments (syntax highlighting) style to use. +pygments_style = 'sphinx' + +# A list of ignored prefixes for module index sorting. +#modindex_common_prefix = [] + +# If true, keep warnings as "system message" paragraphs in the built documents. +#keep_warnings = False + + +# -- Options for HTML output ---------------------------------------------- + +# The theme to use for HTML and HTML Help pages. See the documentation for +# a list of builtin themes. +html_theme = 'default' + +# Theme options are theme-specific and customize the look and feel of a theme +# further. For a list of options available for each theme, see the +# documentation. +#html_theme_options = {} + +# Add any paths that contain custom themes here, relative to this directory. +#html_theme_path = [] + +# The name for this set of Sphinx documents. If None, it defaults to +# " v documentation". +#html_title = None + +# A shorter title for the navigation bar. Default is the same as html_title. +#html_short_title = None + +# The name of an image file (relative to this directory) to place at the top +# of the sidebar. +html_logo = '../images/d3logo.png' + +# The name of an image file (within the static path) to use as favicon of the +# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 +# pixels large. +html_favicon = '../images/icon.png' + +# Add any paths that contain custom static files (such as style sheets) here, +# relative to this directory. They are copied after the builtin static files, +# so a file named "default.css" will overwrite the builtin "default.css". +html_static_path = ['_static'] + +# Add any extra paths that contain custom files (such as robots.txt or +# .htaccess) here, relative to this directory. These files are copied +# directly to the root of the documentation. +#html_extra_path = [] + +# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, +# using the given strftime format. +#html_last_updated_fmt = '%b %d, %Y' + +# If true, SmartyPants will be used to convert quotes and dashes to +# typographically correct entities. +#html_use_smartypants = True + +# Custom sidebar templates, maps document names to template names. +#html_sidebars = {} + +# Additional templates that should be rendered to pages, maps page names to +# template names. +#html_additional_pages = {} + +# If false, no module index is generated. +#html_domain_indices = True + +# If false, no index is generated. +#html_use_index = True + +# If true, the index is split into individual pages for each letter. +#html_split_index = False + +# If true, links to the reST sources are added to the pages. +#html_show_sourcelink = True + +# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. +#html_show_sphinx = True + +# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. +#html_show_copyright = True + +# If true, an OpenSearch description file will be output, and all pages will +# contain a tag referring to it. The value of this option must be the +# base URL from which the finished HTML is served. +#html_use_opensearch = '' + +# This is the file name suffix for HTML files (e.g. ".xhtml"). +#html_file_suffix = None + +# Output file base name for HTML help builder. +htmlhelp_basename = 'ReadtheDocsTemplatedoc' + + +# -- Options for LaTeX output --------------------------------------------- + +latex_elements = { +# The paper size ('letterpaper' or 'a4paper'). +#'papersize': 'letterpaper', + +# The font size ('10pt', '11pt' or '12pt'). +#'pointsize': '10pt', + +# Additional stuff for the LaTeX preamble. +#'preamble': '', +} + +# Grouping the document tree into LaTeX files. List of tuples +# (source start file, target name, title, +# author, documentclass [howto, manual, or own class]). +latex_documents = [ + ('index', 'ReadtheDocsTemplate.tex', u'Read the Docs Template Documentation', + u'Read the Docs', 'manual'), +] + +# The name of an image file (relative to this directory) to place at the top of +# the title page. +#latex_logo = None + +# For "manual" documents, if this is true, then toplevel headings are parts, +# not chapters. +#latex_use_parts = False + +# If true, show page references after internal links. +#latex_show_pagerefs = False + +# If true, show URL addresses after external links. +#latex_show_urls = False + +# Documents to append as an appendix to all manuals. +#latex_appendices = [] + +# If false, no module index is generated. +#latex_domain_indices = True + + +# -- Options for manual page output --------------------------------------- + +# One entry per manual page. List of tuples +# (source start file, name, description, authors, manual section). +man_pages = [ + ('index', 'readthedocstemplate', u'Read the Docs Template Documentation', + [u'Read the Docs'], 1) +] + +# If true, show URL addresses after external links. +#man_show_urls = False + + +# -- Options for Texinfo output ------------------------------------------- + +# Grouping the document tree into Texinfo files. List of tuples +# (source start file, target name, title, author, +# dir menu entry, description, category) +texinfo_documents = [ + ('index', 'ReadtheDocsTemplate', u'Read the Docs Template Documentation', + u'Read the Docs', 'ReadtheDocsTemplate', 'One line description of project.', + 'Miscellaneous'), +] + +# Documents to append as an appendix to all manuals. +#texinfo_appendices = [] + +# If false, no module index is generated. +#texinfo_domain_indices = True + +# How to display URL addresses: 'footnote', 'no', or 'inline'. +#texinfo_show_urls = 'footnote' + +# If true, do not generate a @detailmenu in the "Top" node's menu. +#texinfo_no_detailmenu = False diff --git a/docs/contributing.rst b/docs/contributing.rst new file mode 100644 index 0000000..e582053 --- /dev/null +++ b/docs/contributing.rst @@ -0,0 +1 @@ +.. include:: ../CONTRIBUTING.rst diff --git a/docs/history.rst b/docs/history.rst new file mode 100644 index 0000000..2506499 --- /dev/null +++ b/docs/history.rst @@ -0,0 +1 @@ +.. include:: ../HISTORY.rst diff --git a/docs/index.rst b/docs/index.rst new file mode 100644 index 0000000..2a9befe --- /dev/null +++ b/docs/index.rst @@ -0,0 +1,63 @@ +.. Read the Docs Template documentation master file, created by + sphinx-quickstart on Tue Aug 26 14:19:49 2014. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +DThreeLab Documentation +================================================== + +Introduction +================================================== + +**DThree Lab** is a software architectural platform which helps you develop other softwares without a single line of code. + +We have 2 products to deliver. + +* API for your current website/Mobile Apps/Software + +Firstly, the homepage has four sections:- User Panel, App Developer, App Elements and Editable Mobile View. +User Panel shows you the options you have while working with a particular component. The components which are present in this user panel are the components which are to be dragged and dropped in order to make your software. +The next section is App Developer. This section shows you the actual component you are working upon. The component to be added will be picked from user panel, dragged and dropped in sub-type content present of the component currently opened in App developer section. +App Developer Section is followed by App Elements. This section contains actual elements of you app in hierarchical order. This is can be called you actual app. You can overview you app and every component you have added without opening it in this section. +The last one is the Editable Mobile View, which lets you see how you real app will look and work. The moment you save and deploy your app, you will be able to see changes in this section. This way you can decide your user interface as well as backend flow easily. +* You can also just open a certain component by clicking it in the editable mobile view instead of searching it all your way in the App Elements Section. +* Web view will allow you to see how you it will look like if you are creating a website or web-app. + + +Every component will have two types of contents: Static contents and Sub-type contents. +Static contents are the options available to edit the component itself, and it offers a variety of fields. The other one is Sub-type contents. It contains the other components which the current component will contain. The components dragged from the user panel are dropped in this region. + +So, ready to build your own software? Let’s go.. +First element of your app will be Elements. It is the first and the main component is Elements. It is the root of every parent containing server and UI. It contains two other main components :- +User interface +Server + +As it is the main and root component, deleting it will delete you whole app. + +Front end of you app will be managed and created using User Interface component while backend will be handled under Server. Dthree labs make it easier for you to handle user interface and server simultaneously. +So, let’s get started with User Interface first. + +.. contents:: Table of Contents + +Contents: +================== + +.. toctree:: + :maxdepth: 2 + + authors + usage + root + installation + authors + readme + + + +Indices and tables +================== + +* :ref:`genindex` +* :ref:`modindex` +* :ref:`search` + diff --git a/docs/installation.rst b/docs/installation.rst new file mode 100644 index 0000000..9667188 --- /dev/null +++ b/docs/installation.rst @@ -0,0 +1,7 @@ +============ +Installation +============ + +Install the package with pip:: + + $ pip install read-the-docs-template diff --git a/docs/make.bat b/docs/make.bat new file mode 100644 index 0000000..fec43bb --- /dev/null +++ b/docs/make.bat @@ -0,0 +1,242 @@ +@ECHO OFF + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set BUILDDIR=_build +set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . +set I18NSPHINXOPTS=%SPHINXOPTS% . +if NOT "%PAPER%" == "" ( + set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% + set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% +) + +if "%1" == "" goto help + +if "%1" == "help" ( + :help + echo.Please use `make ^` where ^ is one of + echo. html to make standalone HTML files + echo. dirhtml to make HTML files named index.html in directories + echo. singlehtml to make a single large HTML file + echo. pickle to make pickle files + echo. json to make JSON files + echo. htmlhelp to make HTML files and a HTML help project + echo. qthelp to make HTML files and a qthelp project + echo. devhelp to make HTML files and a Devhelp project + echo. epub to make an epub + echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter + echo. text to make text files + echo. man to make manual pages + echo. texinfo to make Texinfo files + echo. gettext to make PO message catalogs + echo. changes to make an overview over all changed/added/deprecated items + echo. xml to make Docutils-native XML files + echo. pseudoxml to make pseudoxml-XML files for display purposes + echo. linkcheck to check all external links for integrity + echo. doctest to run all doctests embedded in the documentation if enabled + goto end +) + +if "%1" == "clean" ( + for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i + del /q /s %BUILDDIR%\* + goto end +) + + +%SPHINXBUILD% 2> nul +if errorlevel 9009 ( + echo. + echo.The 'sphinx-build' command was not found. Make sure you have Sphinx + echo.installed, then set the SPHINXBUILD environment variable to point + echo.to the full path of the 'sphinx-build' executable. Alternatively you + echo.may add the Sphinx directory to PATH. + echo. + echo.If you don't have Sphinx installed, grab it from + echo.http://sphinx-doc.org/ + exit /b 1 +) + +if "%1" == "html" ( + %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The HTML pages are in %BUILDDIR%/html. + goto end +) + +if "%1" == "dirhtml" ( + %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. + goto end +) + +if "%1" == "singlehtml" ( + %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. + goto end +) + +if "%1" == "pickle" ( + %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle + if errorlevel 1 exit /b 1 + echo. + echo.Build finished; now you can process the pickle files. + goto end +) + +if "%1" == "json" ( + %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json + if errorlevel 1 exit /b 1 + echo. + echo.Build finished; now you can process the JSON files. + goto end +) + +if "%1" == "htmlhelp" ( + %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp + if errorlevel 1 exit /b 1 + echo. + echo.Build finished; now you can run HTML Help Workshop with the ^ +.hhp project file in %BUILDDIR%/htmlhelp. + goto end +) + +if "%1" == "qthelp" ( + %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp + if errorlevel 1 exit /b 1 + echo. + echo.Build finished; now you can run "qcollectiongenerator" with the ^ +.qhcp project file in %BUILDDIR%/qthelp, like this: + echo.^> qcollectiongenerator %BUILDDIR%\qthelp\complexity.qhcp + echo.To view the help file: + echo.^> assistant -collectionFile %BUILDDIR%\qthelp\complexity.ghc + goto end +) + +if "%1" == "devhelp" ( + %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. + goto end +) + +if "%1" == "epub" ( + %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The epub file is in %BUILDDIR%/epub. + goto end +) + +if "%1" == "latex" ( + %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex + if errorlevel 1 exit /b 1 + echo. + echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. + goto end +) + +if "%1" == "latexpdf" ( + %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex + cd %BUILDDIR%/latex + make all-pdf + cd %BUILDDIR%/.. + echo. + echo.Build finished; the PDF files are in %BUILDDIR%/latex. + goto end +) + +if "%1" == "latexpdfja" ( + %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex + cd %BUILDDIR%/latex + make all-pdf-ja + cd %BUILDDIR%/.. + echo. + echo.Build finished; the PDF files are in %BUILDDIR%/latex. + goto end +) + +if "%1" == "text" ( + %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The text files are in %BUILDDIR%/text. + goto end +) + +if "%1" == "man" ( + %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The manual pages are in %BUILDDIR%/man. + goto end +) + +if "%1" == "texinfo" ( + %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. + goto end +) + +if "%1" == "gettext" ( + %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The message catalogs are in %BUILDDIR%/locale. + goto end +) + +if "%1" == "changes" ( + %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes + if errorlevel 1 exit /b 1 + echo. + echo.The overview file is in %BUILDDIR%/changes. + goto end +) + +if "%1" == "linkcheck" ( + %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck + if errorlevel 1 exit /b 1 + echo. + echo.Link check complete; look for any errors in the above output ^ +or in %BUILDDIR%/linkcheck/output.txt. + goto end +) + +if "%1" == "doctest" ( + %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest + if errorlevel 1 exit /b 1 + echo. + echo.Testing of doctests in the sources finished, look at the ^ +results in %BUILDDIR%/doctest/output.txt. + goto end +) + +if "%1" == "xml" ( + %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The XML files are in %BUILDDIR%/xml. + goto end +) + +if "%1" == "pseudoxml" ( + %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml + if errorlevel 1 exit /b 1 + echo. + echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. + goto end +) + +:end diff --git a/docs/readme.rst b/docs/readme.rst new file mode 100644 index 0000000..72a3355 --- /dev/null +++ b/docs/readme.rst @@ -0,0 +1 @@ +.. include:: ../README.rst diff --git a/docs/root.rst b/docs/root.rst new file mode 100644 index 0000000..4028361 --- /dev/null +++ b/docs/root.rst @@ -0,0 +1,7 @@ +=================== +Root +=================== + +To use this template, simply update it:: + + import read-the-docs-template diff --git a/docs/usage.rst b/docs/usage.rst new file mode 100644 index 0000000..fb9b1ec --- /dev/null +++ b/docs/usage.rst @@ -0,0 +1,7 @@ +======== +Usage +======== + +To use this template, simply update it:: + + import read-the-docs-template diff --git a/images/d3logo.png b/images/d3logo.png new file mode 100644 index 0000000000000000000000000000000000000000..83ea119ba3e7b7fc56066e29a913c3d2f03fbe6c GIT binary patch literal 14953 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 literal 0 HcmV?d00001 diff --git a/images/icon.png b/images/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..834d6045bd1af0180f25d379ae91795139bd5588 GIT binary patch literal 8098 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