From 25679552a9e3b56bd85497de3b210cd9a237253c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Caron?= Date: Fri, 10 Nov 2023 13:50:01 +0100 Subject: [PATCH] [doc] Move config and doc source files --- doc/Makefile | 33 ------------------ doc/{src => }/conf.py | 0 doc/{src => }/css/custom.css | 0 doc/{src => }/developer-notes.rst | 0 .../images/apple-touch-icon-180x180.png | Bin doc/{src => }/images/favicon-16x16.png | Bin doc/{src => }/images/favicon-32x32.png | Bin .../images/pink-round-corners-140x140.png | Bin doc/{src => }/index.rst | 0 doc/{src => }/installation.rst | 0 doc/{src => }/introduction.rst | 0 doc/{src => }/inverse-kinematics.rst | 0 doc/{src => }/limits.rst | 0 doc/{src => }/references.rst | 0 doc/{src => }/tasks.rst | 0 15 files changed, 33 deletions(-) delete mode 100644 doc/Makefile rename doc/{src => }/conf.py (100%) rename doc/{src => }/css/custom.css (100%) rename doc/{src => }/developer-notes.rst (100%) rename doc/{src => }/images/apple-touch-icon-180x180.png (100%) rename doc/{src => }/images/favicon-16x16.png (100%) rename doc/{src => }/images/favicon-32x32.png (100%) rename doc/{src => }/images/pink-round-corners-140x140.png (100%) rename doc/{src => }/index.rst (100%) rename doc/{src => }/installation.rst (100%) rename doc/{src => }/introduction.rst (100%) rename doc/{src => }/inverse-kinematics.rst (100%) rename doc/{src => }/limits.rst (100%) rename doc/{src => }/references.rst (100%) rename doc/{src => }/tasks.rst (100%) diff --git a/doc/Makefile b/doc/Makefile deleted file mode 100644 index 37502498..00000000 --- a/doc/Makefile +++ /dev/null @@ -1,33 +0,0 @@ -# Makefile for Sphinx documentation -# -# Copyright 2022 Stéphane Caron -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# You can set these variables from the command line. -SPHINXOPTS = -W -SPHINXBUILD = sphinx-build -SOURCEDIR = src -BUILDDIR = build -ONLINEDIR = scaron.info:public_html/doc/pink - -.PHONY: help Makefile upload - -help: - @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) - -%: Makefile - @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) - -upload: clean html - rsync -auvz --delete-after $(BUILDDIR)/html/ $(ONLINEDIR)/ diff --git a/doc/src/conf.py b/doc/conf.py similarity index 100% rename from doc/src/conf.py rename to doc/conf.py diff --git a/doc/src/css/custom.css b/doc/css/custom.css similarity index 100% rename from doc/src/css/custom.css rename to doc/css/custom.css diff --git a/doc/src/developer-notes.rst b/doc/developer-notes.rst similarity index 100% rename from doc/src/developer-notes.rst rename to doc/developer-notes.rst diff --git a/doc/src/images/apple-touch-icon-180x180.png b/doc/images/apple-touch-icon-180x180.png similarity index 100% rename from doc/src/images/apple-touch-icon-180x180.png rename to doc/images/apple-touch-icon-180x180.png diff --git a/doc/src/images/favicon-16x16.png b/doc/images/favicon-16x16.png similarity index 100% rename from doc/src/images/favicon-16x16.png rename to doc/images/favicon-16x16.png diff --git a/doc/src/images/favicon-32x32.png b/doc/images/favicon-32x32.png similarity index 100% rename from doc/src/images/favicon-32x32.png rename to doc/images/favicon-32x32.png diff --git a/doc/src/images/pink-round-corners-140x140.png b/doc/images/pink-round-corners-140x140.png similarity index 100% rename from doc/src/images/pink-round-corners-140x140.png rename to doc/images/pink-round-corners-140x140.png diff --git a/doc/src/index.rst b/doc/index.rst similarity index 100% rename from doc/src/index.rst rename to doc/index.rst diff --git a/doc/src/installation.rst b/doc/installation.rst similarity index 100% rename from doc/src/installation.rst rename to doc/installation.rst diff --git a/doc/src/introduction.rst b/doc/introduction.rst similarity index 100% rename from doc/src/introduction.rst rename to doc/introduction.rst diff --git a/doc/src/inverse-kinematics.rst b/doc/inverse-kinematics.rst similarity index 100% rename from doc/src/inverse-kinematics.rst rename to doc/inverse-kinematics.rst diff --git a/doc/src/limits.rst b/doc/limits.rst similarity index 100% rename from doc/src/limits.rst rename to doc/limits.rst diff --git a/doc/src/references.rst b/doc/references.rst similarity index 100% rename from doc/src/references.rst rename to doc/references.rst diff --git a/doc/src/tasks.rst b/doc/tasks.rst similarity index 100% rename from doc/src/tasks.rst rename to doc/tasks.rst