diff --git a/docs/_static/documentation_options.js b/docs/_static/documentation_options.js index a51d694..6355ba4 100644 --- a/docs/_static/documentation_options.js +++ b/docs/_static/documentation_options.js @@ -1,6 +1,6 @@ var DOCUMENTATION_OPTIONS = { URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: '20191103', + VERSION: '20191126', LANGUAGE: 'None', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', diff --git a/docs/genindex.html b/docs/genindex.html index ac6706e..c8088c2 100644 --- a/docs/genindex.html +++ b/docs/genindex.html @@ -9,7 +9,7 @@ - Index — Python Forensics Handbook 20191103 documentation + Index — Python Forensics Handbook 20191126 documentation @@ -35,7 +35,18 @@ - + + + + + + @@ -59,7 +70,7 @@
- 20191103 + 20191126
diff --git a/docs/index.html b/docs/index.html index 13ed1b3..6db5a77 100644 --- a/docs/index.html +++ b/docs/index.html @@ -8,7 +8,7 @@ - The Python Forensics Handbook — Python Forensics Handbook 20191103 documentation + The Python Forensics Handbook — Python Forensics Handbook 20191126 documentation @@ -35,7 +35,18 @@ - + + + + + + @@ -59,7 +70,7 @@
- 20191103 + 20191126
diff --git a/docs/objects.inv b/docs/objects.inv index 7055da0..c40494d 100644 Binary files a/docs/objects.inv and b/docs/objects.inv differ diff --git a/docs/py-modindex.html b/docs/py-modindex.html index fea774b..a8c192a 100644 --- a/docs/py-modindex.html +++ b/docs/py-modindex.html @@ -8,7 +8,7 @@ - Python Module Index — Python Forensics Handbook 20191103 documentation + Python Module Index — Python Forensics Handbook 20191126 documentation @@ -35,7 +35,18 @@ + + + + + @@ -61,7 +72,7 @@
- 20191103 + 20191126
diff --git a/docs/search.html b/docs/search.html index 4738cbc..a60d581 100644 --- a/docs/search.html +++ b/docs/search.html @@ -8,7 +8,7 @@ - Search — Python Forensics Handbook 20191103 documentation + Search — Python Forensics Handbook 20191126 documentation @@ -35,7 +35,18 @@ - + + + + + + @@ -59,7 +70,7 @@
- 20191103 + 20191126
diff --git a/docs/section1.html b/docs/section1.html index eab5ce0..538b332 100644 --- a/docs/section1.html +++ b/docs/section1.html @@ -8,7 +8,7 @@ - Section 1 - Essential Scripts — Python Forensics Handbook 20191103 documentation + Section 1 - Essential Scripts — Python Forensics Handbook 20191126 documentation @@ -36,7 +36,18 @@ - + + + + + + @@ -60,7 +71,7 @@
- 20191103 + 20191126
diff --git a/docs/section2.html b/docs/section2.html index 7692719..4954006 100644 --- a/docs/section2.html +++ b/docs/section2.html @@ -8,7 +8,7 @@ - Section 2 - Registry Parsing — Python Forensics Handbook 20191103 documentation + Section 2 - Registry Parsing — Python Forensics Handbook 20191126 documentation @@ -36,7 +36,18 @@ - + + + + + + @@ -60,7 +71,7 @@
- 20191103 + 20191126
diff --git a/docs/section3.html b/docs/section3.html index 25a03c9..70dbc01 100644 --- a/docs/section3.html +++ b/docs/section3.html @@ -8,7 +8,7 @@ - Section 3 - Windows Event Log Parsing — Python Forensics Handbook 20191103 documentation + Section 3 - Windows Event Log Parsing — Python Forensics Handbook 20191126 documentation @@ -35,7 +35,18 @@ - + + + + + + @@ -59,7 +70,7 @@
- 20191103 + 20191126
diff --git a/docssrc/_templates/layout.html b/docssrc/_templates/layout.html new file mode 100644 index 0000000..06f00fe --- /dev/null +++ b/docssrc/_templates/layout.html @@ -0,0 +1,14 @@ +{% extends "!layout.html" %} + +{% block extrahead %} +{{ super() }} + + + +{% endblock %} \ No newline at end of file diff --git a/docssrc/make.bat b/docssrc/make.bat new file mode 100644 index 0000000..4ae4ccc --- /dev/null +++ b/docssrc/make.bat @@ -0,0 +1,38 @@ +@ECHO OFF + +pushd %~dp0 + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set SOURCEDIR=. +set BUILDDIR=_build + +if "%1" == "" goto help + +%SPHINXBUILD% >NUL 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 +) + +%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% +goto end + +:help +%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% + +:end +popd + +REM copy HTML to docs folder +robocopy _build\html ..\docs /S /E \ No newline at end of file