Skip to content
This repository was archived by the owner on Dec 6, 2018. It is now read-only.

Commit ef1913b

Browse files
committed
Merge pull request #371 from forGGe/remove_title_build
Remove title page from theCore documentation
2 parents 7bb2105 + 08b03e3 commit ef1913b

File tree

8 files changed

+3
-280
lines changed

8 files changed

+3
-280
lines changed

doc/CMakeLists.txt

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,6 @@ if(Sphinx_FOUND)
228228
# Single-page HTML output directory
229229
set(SPHINX_SINGLE_HTML_DIR "${BINARY_BUILD_DIR}/singlehtml")
230230

231-
# Title page output directory for forgge.github.io index page
232-
set(SPHINX_TITLE_HTML_DIR "${CMAKE_CURRENT_BINARY_DIR}/sphinx/")
233-
234231
add_custom_target(core_sphinx
235232
# create directories beforehand
236233
COMMAND ${CMAKE_COMMAND} -E make_directory
@@ -262,15 +259,6 @@ if(Sphinx_FOUND)
262259
"${CMAKE_CURRENT_SOURCE_DIR}/sphinx/source"
263260
"${SPHINX_SINGLE_HTML_DIR}"
264261
COMMENT "Building HTML documentation with Sphinx"
265-
266-
COMMAND # Title HTML build
267-
${CMAKE_COMMAND} -E env SPHINX_ROOT_URL=http://forgge.github.io/theCore
268-
${SPHINX_EXECUTABLE}
269-
-b singlehtml
270-
-c "${CMAKE_CURRENT_SOURCE_DIR}/sphinx/source_title"
271-
"${CMAKE_CURRENT_SOURCE_DIR}/sphinx/source_title"
272-
"${SPHINX_TITLE_HTML_DIR}"
273-
COMMENT "Building title page documentation with Sphinx"
274262
)
275263

276264
add_dependencies(core_sphinx core_doxygen)

doc/sphinx/source_title/_static/.empty

Whitespace-only changes.

doc/sphinx/source_title/_templates/.empty

Whitespace-only changes.

doc/sphinx/source_title/_templates/page.html

Lines changed: 0 additions & 20 deletions
This file was deleted.

doc/sphinx/source_title/conf.py

Lines changed: 0 additions & 219 deletions
This file was deleted.

doc/sphinx/source_title/index.rst

Lines changed: 0 additions & 28 deletions
This file was deleted.

scripts/doc_deploy.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ cp -Lr ../docs/sphinx/* .
3333
mkdir -p ../gh_pages/theCore/doxygen/
3434

3535
# Generate sitemap
36+
cd theCore
3637
${SCRIPTPATH}/sitemap.sh
38+
cd -
3739

3840
if [ -z "$(git status --porcelain)" ]; then
3941
echo "No documentation changes present. Skipping doc deploy"

scripts/sitemap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# url configuration
4-
URL="https://forgge.github.io/"
4+
URL="https://forgge.github.io/theCore/"
55

66
# values: always hourly daily weekly monthly yearly never
77
FREQ="daily"

0 commit comments

Comments
 (0)