diff --git a/docs/cudf/source/conf.py b/docs/cudf/source/conf.py index 1f1923390775..2d7285366bdc 100644 --- a/docs/cudf/source/conf.py +++ b/docs/cudf/source/conf.py @@ -179,7 +179,7 @@ def clean_all_xml_files(path): master_doc = "index" # General information about the project. -project = "cuDF" +project = "NVIDIA cuDF" copyright = f"2018-{datetime.datetime.today().year}, NVIDIA Corporation" author = "NVIDIA Corporation" @@ -228,7 +228,6 @@ def clean_all_xml_files(path): "external_links": [], "icon_links": [], "github_url": "https://github.com/rapidsai/cudf", - "twitter_url": "https://twitter.com/rapidsai", "show_toc_level": 1, "navbar_align": "content", "navbar_center": "navbar-nav, version-switcher, navbar-external-links", @@ -286,8 +285,8 @@ def clean_all_xml_files(path): ( master_doc, "cudf.tex", - "cudf Documentation", - "NVIDIA Corporation", + f"{project} Documentation", + author, "manual", ) ] @@ -297,7 +296,7 @@ def clean_all_xml_files(path): # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). -man_pages = [(master_doc, "cudf", "cudf Documentation", [author], 1)] +man_pages = [(master_doc, "cudf", f"{project} Documentation", [author], 1)] # -- Options for Texinfo output ------------------------------------------- @@ -309,7 +308,7 @@ def clean_all_xml_files(path): ( master_doc, "cudf", - "cudf Documentation", + f"{project} Documentation", author, "cudf", "One line description of project.", diff --git a/docs/cudf/source/index.rst b/docs/cudf/source/index.rst index 4fb4d409e558..cf06d7670337 100644 --- a/docs/cudf/source/index.rst +++ b/docs/cudf/source/index.rst @@ -1,11 +1,7 @@ -Welcome to the cuDF documentation! -================================== +NVIDIA cuDF Documentation +========================= -.. figure:: _static/RAPIDS-logo-purple.png - :width: 300px - :align: center - -**cuDF** (pronounced "KOO-dee-eff") is a GPU-accelerated library for tabular +**NVIDIA cuDF** (pronounced "KOO-dee-eff") is a GPU-accelerated library for tabular data processing. It is part of the `RAPIDS `_ suite of libraries and is composed of multiple sub-projects: diff --git a/docs/dask_cudf/source/conf.py b/docs/dask_cudf/source/conf.py index 93694b7f1ecc..e7226f666a46 100644 --- a/docs/dask_cudf/source/conf.py +++ b/docs/dask_cudf/source/conf.py @@ -16,7 +16,7 @@ DASK_CUDF_VERSION = Version(dask_cudf.__version__) -project = "dask-cuDF" +project = "NVIDIA Dask-cuDF" copyright = f"2018-{datetime.datetime.today().year}, NVIDIA Corporation" author = "NVIDIA Corporation" version = f"{DASK_CUDF_VERSION.major:02}.{DASK_CUDF_VERSION.minor:02}" @@ -61,7 +61,6 @@ html_theme_options = { "external_links": [], "github_url": "https://github.com/rapidsai/cudf", - "twitter_url": "https://twitter.com/rapidsai", "show_toc_level": 1, "navbar_align": "right", "navbar_center": "navbar-nav, version-switcher, navbar-external-links",