Add AAS branding in various places that WorldWide Telescope is introduced

Recall that people might be navigating directly to any of these documentation pages, so we have
to be pretty persistent in the branding even if it feels kind of ridiculous.
This commit is contained in:
Peter Williams 2019-09-15 19:03:36 -04:00
Родитель f66094891b
Коммит 60ac38c6a2
11 изменённых файлов: 18 добавлений и 18 удалений

Просмотреть файл

@ -12,7 +12,7 @@ This will then look like:
.. image:: images/jupyter.jpg
Once the WorldWide Telescope widget is visible, you can start to interact
Once the AAS WorldWide Telescope widget is visible, you can start to interact
with the ``wwt`` object in the next cell of the notebook. You can find out more
about interacting with this object in :doc:`settings` and :doc:`annotations`.

Просмотреть файл

@ -13,7 +13,7 @@ To use the Qt viewer from an IPython session, do::
In [3]: wwt = WWTQtClient()
Note that the order is important - for now :class:`pywwt.qt.WWTQtClient` has to
be imported before ``%gui qt`` is run. Once the WorldWide Telescope viewer is
be imported before ``%gui qt`` is run. Once the AAS WorldWide Telescope viewer is
visible, you can start to interact with the ``wwt`` object in the next cell of
the notebook. You can find out more about interacting with this object in
:doc:`settings` and :doc:`annotations`.
@ -33,7 +33,7 @@ not necessary::
wwt = WWTQtClient()
The :class:`pywwt.qt.WWTQtClient` class takes a ``block_until_ready`` argument
which can be used to tell Python to wait for WorldWide Telescope to be open
which can be used to tell Python to wait for AAS WorldWide Telescope to be open
before proceeding with the rest of the script::
wwt = WWTQtClient(block_until_ready=True)
@ -51,7 +51,7 @@ closed. You can find out more about interacting with the ``wwt`` object in
Embedding
---------
If you are developing a Qt Application, you can embed the WorldWide Telescope
If you are developing a Qt Application, you can embed the AAS WorldWide Telescope
Qt widget by creating an instance of the :class:`pywwt.qt.WWTQtClient` class,
then accessing the underlying Qt widget using the ``widget`` attribute::
@ -59,4 +59,4 @@ then accessing the underlying Qt widget using the ``widget`` attribute::
wwt_client = WWTQtClient()
wwt_client.widget # refers to the Qt widget
The Qt widget can then be added to any layout in your application.
The Qt widget can then be added to any layout in your application.

Просмотреть файл

@ -2,12 +2,12 @@ Basic controls
==============
Once a Jupyter or Qt widget has been created, the way in which you change
settings and interact with WorldWide Telescope is the same.
settings and interact with AAS WorldWide Telescope is the same.
Visual settings
---------------
Once the WorldWide Telescope Jupyter or Qt widget has been initialized -- here
Once the AAS WorldWide Telescope Jupyter or Qt widget has been initialized -- here
we assign it to the variable name ``wwt`` -- you can toggle several visual
settings on and off. For example::

Просмотреть файл

@ -4,7 +4,7 @@ Changing and controlling views
==============================
PyWWT includes the option to toggle between view modes in the same manner as in
the WorldWide Telescope Web Client by using the
the AAS WorldWide Telescope Web Client by using the
:meth:`~pywwt.BaseWWTWidget.set_view` method. Available modes include a view of
the sky, as well as 3D views of celestial bodies, the solar system, the galaxy,
or the observable universe. The rest of the documentation is based on the

Просмотреть файл

@ -4,7 +4,7 @@ Using the Windows client
About
-----
The **pywwt.windows** sub-package includes a Python interface for the Microsoft
The **pywwt.windows** sub-package includes a Python interface for the AAS
`WorldWide Telescope <http://www.worldwidetelescope.org/home>`_
(WWT) Windows client, using the
`Layer Control API (LCAPI) <https://worldwidetelescope.gitbook.io/layer-control-reference/lcapicommands#load>`_.
@ -15,7 +15,7 @@ IPython notebook. Most importantly, it enables the passing of data created
within a Python environment to WWT.
.. note:: The **pywwt** package was originally developed as a client for
the Windows WorldWideTelescope application. For now, the API for
the Windows WorldWide Telescope application. For now, the API for
the Windows is identical to that in previous versions, with the
exception that imports of the ``WWTClient`` class should be
changed from::

Просмотреть файл

@ -4,14 +4,14 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"## Using WorldWide Telescope inside the Jupyter notebook"
"## Using AAS WorldWide Telescope inside the Jupyter notebook"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"This notebook shows how to start up the WorldWide Telescope Jupyter widget, and how to subsequently modify its properties. You can find out more about using pywwt in the [documentation](http://pywwt.readthedocs.io).\n",
"This notebook shows how to start up the AAS WorldWide Telescope Jupyter widget, and how to subsequently modify its properties. You can find out more about using pywwt in the [documentation](http://pywwt.readthedocs.io).\n",
"\n",
"We start off by importing the ``WWTJupyterWidget`` class:"
]

Просмотреть файл

@ -4,14 +4,14 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"## Controlling the WorldWide Telescope Windows client using pywwt"
"## Controlling the AAS WorldWide Telescope Windows client using pywwt"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"This notebook demonstrates how to use the WorldWide Telescope Windows client using pywwt. You can find out more about this in the [documentation](http://pywwt.readthedocs.io/en/latest/windows.html)."
"This notebook demonstrates how to use the AAS WorldWide Telescope Windows client using pywwt. You can find out more about this in the [documentation](http://pywwt.readthedocs.io/en/latest/windows.html)."
]
},
{

Просмотреть файл

@ -1,7 +1,7 @@
{
"name": "pywwt",
"version": "0.7.0",
"description": "WorldWide Telescope from Python",
"description": "AAS WorldWide Telescope from Python",
"keywords": [
"jupyter",
"jupyterlab",

Просмотреть файл

@ -38,7 +38,7 @@ class BaseWWTWidget(HasTraits):
The core class in common to the Qt and Jupyter widgets.
This class provides a common interface to modify settings and interact with
WorldWide Telescope.
the AAS WorldWide Telescope.
"""
def __init__(self, **kwargs):
super(BaseWWTWidget, self).__init__()

Просмотреть файл

@ -25,7 +25,7 @@ if not PY2:
@widgets.register
class WWTJupyterWidget(widgets.DOMWidget, BaseWWTWidget):
"""
A WorldWide Telescope Jupyter widget.
An AAS WorldWide Telescope Jupyter widget.
"""
_view_name = Unicode('WWTView').tag(sync=True)

Просмотреть файл

@ -70,7 +70,7 @@ with open('README.rst') as f:
setup_args = dict(
name = name,
description = 'WorldWide Telescope from Python',
description = 'The AAS WorldWide Telescope from Python',
long_description = LONG_DESCRIPTION,
version = version,
scripts = glob(pjoin('scripts', '*')),