diff --git a/docs/Makefile b/docs/Makefile index 666dc804..f906e4af 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -23,7 +23,7 @@ I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source help: @echo "Please use \`make ' where is one of" - @echo " build to build the C and Cython extensions for zipline" + @echo " build to build the C and Cython extensions for catalyst" @echo " html to make standalone HTML files" @echo " livehtml to run a persistent process that rebuilds the docs" @echo " dirhtml to make HTML files named index.html in directories" @@ -96,9 +96,9 @@ qthelp: build @echo @echo "Build finished; now you can run "qcollectiongenerator" with the" \ ".qhcp project file in $(BUILDDIR)/qthelp, like this:" - @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/zipline.qhcp" + @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/catalyst.qhcp" @echo "To view the help file:" - @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/zipline.qhc" + @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/catalyst.qhc" applehelp: build $(SPHINXBUILD) -b applehelp $(ALLSPHINXOPTS) $(BUILDDIR)/applehelp @@ -113,8 +113,8 @@ devhelp: build @echo @echo "Build finished." @echo "To view the help file:" - @echo "# mkdir -p $$HOME/.local/share/devhelp/zipline" - @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/zipline" + @echo "# mkdir -p $$HOME/.local/share/devhelp/catalyst" + @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/catalyst" @echo "# devhelp" epub: build diff --git a/docs/deploy.py b/docs/deploy.py index 9120e033..4c6b8451 100644 --- a/docs/deploy.py +++ b/docs/deploy.py @@ -8,8 +8,8 @@ from shutil import move, rmtree from subprocess import check_call HERE = dirname(abspath(__file__)) -ZIPLINE_ROOT = dirname(HERE) -TEMP_LOCATION = '/tmp/zipline-doc' +CATALYST_ROOT = dirname(HERE) +TEMP_LOCATION = '/tmp/catalyst-doc' TEMP_LOCATION_GLOB = TEMP_LOCATION + '/*' @@ -46,8 +46,8 @@ def main(): print("Copying built files to temp location.") move('build/html', TEMP_LOCATION) - print("Moving to '%s'" % ZIPLINE_ROOT) - os.chdir(ZIPLINE_ROOT) + print("Moving to '%s'" % CATALYST_ROOT) + os.chdir(CATALYST_ROOT) print("Checking out gh-pages branch.") check_call( @@ -70,7 +70,7 @@ def main(): os.chdir(old_dir) print() - print("Updated documentation branch in directory %s" % ZIPLINE_ROOT) + print("Updated documentation branch in directory %s" % CATALYST_ROOT) print("If you are happy with these changes, commit and push to gh-pages.") if __name__ == '__main__': diff --git a/docs/make.bat b/docs/make.bat index 472630a9..1b28f18b 100644 --- a/docs/make.bat +++ b/docs/make.bat @@ -127,9 +127,9 @@ if "%1" == "qthelp" ( echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: - echo.^> qcollectiongenerator %BUILDDIR%\qthelp\zipline.qhcp + echo.^> qcollectiongenerator %BUILDDIR%\qthelp\catalyst.qhcp echo.To view the help file: - echo.^> assistant -collectionFile %BUILDDIR%\qthelp\zipline.ghc + echo.^> assistant -collectionFile %BUILDDIR%\qthelp\catalyst.ghc goto end ) diff --git a/docs/source/conf.py b/docs/source/conf.py index dd0304d0..3dc91ef9 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -41,11 +41,11 @@ master_doc = 'index' # General information about the project. project = u'Catalyst' -copyright = u'2017, Enigma MPC, Inc.' +copyright = u'2018, Enigma MPC, Inc.' # The full version, including alpha/beta/rc tags, but excluding the commit hash #release = version.split('+', 1)[0] -release = '0.3' +release = '0.4' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files.