Skip to content

Commit 0a7e50d

Browse files
Copilotphycodurus
andauthored
Merge branch 'version-3-0-alpha' into 1459-login-problems-intermittent, resolving merge conflicts
Agent-Logs-Url: https://github.com/TOMToolkit/tom_base/sessions/6528e0d8-184c-4931-a64c-7484b487ba05 Co-authored-by: phycodurus <431350+phycodurus@users.noreply.github.com>
1 parent 8659109 commit 0a7e50d

79 files changed

Lines changed: 4743 additions & 552 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
35.2 KB
Loading
23.1 KB
Loading

docs/api/tom_catalogs/forms.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
Forms
22
=====
33

4+
.. WARNING::
5+
6+
`tom_catalogs` is deprecated as of version 3.0 and has bene replaced by :doc:`tom_dataservices <../tom_dataservices/index>`.
7+
48
.. automodule:: tom_catalogs.forms
59
:members:

docs/api/tom_catalogs/harvesters.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Harvesters
22
==========
33

4+
.. WARNING::
5+
6+
`tom_catalogs` is deprecated as of version 3.0 and has bene replaced by :doc:`tom_dataservices <../tom_dataservices/index>`.
7+
48
********************
59
Base Harvester Class
610
********************

docs/api/tom_catalogs/index.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Catalogs
22
========
33

4+
.. WARNING::
5+
6+
This package is deprecated as of version 3.0 and has bene replaced by :doc:`tom_dataservices <../tom_dataservices/index>`.
7+
48
.. toctree::
59
:maxdepth: 2
610

docs/api/tom_catalogs/views.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
Views
22
=====
33

4+
.. WARNING::
5+
6+
`tom_catalogs` is deprecated as of version 3.0 and has bene replaced by :doc:`tom_dataservices <../tom_dataservices/index>`.
7+
48
.. automodule:: tom_catalogs.views
59
:members:

docs/api/tom_dataproducts/data_processing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ The ``DataProductUploadView`` calls ``run_data_processor`` upon saving the ``Dat
1111
instantiates the ``DATA_PROCESSOR_CLASS``, which can be specified in ``settings.py``. ``run_data_processor`` then
1212
processes the uploaded ``DataProduct`` based on the tag value, which can either be Photometry or Spectroscopy.
1313

14-
In the case of spectra, the default behavior is that ``DataProduct`` is converted into a ``specutils.Spectrum1D`` from
14+
In the case of spectra, the default behavior is that ``DataProduct`` is converted into a ``specutils.Spectrum`` from
1515
either a CSV or a FITS file. The spectrum is multiplied by the flux constant of the facility it was taken at, or not
16-
multiplied. The ``Spectrum1D`` is then serialized into JSON for database via the ``SpectrumSerializer``.
16+
multiplied. The ``Spectrum`` is then serialized into JSON for database via the ``SpectrumSerializer``.
1717

1818
For photometry, the default behavior is simply to read the CSV and convert it to JSON for database storage.
1919

docs/brokers/create_dataservice.rst

Lines changed: 382 additions & 36 deletions
Large diffs are not rendered by default.

docs/common/customsettings.rst

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ Default: []
166166

167167
With an `AUTH_STRATEGY <#auth-strategy>`__ value of **LOCKED**, urls in
168168
this list will remain visible to unauthenticated users. You can also use wild cards to open an entire path.
169-
You might add the homepage (‘/’), for example, or anything with a path that looks like '/accounts/reset/*/'.
169+
You might add the homepage (‘/’), for example, or anything with a path that looks like ``'/accounts/reset/*/'``.
170170

171171
`TARGET_PERMISSIONS_ONLY <#target-permissions-only>`__
172172
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -260,25 +260,6 @@ A list of observation facility classes to make available to your TOM. If
260260
you have written or downloaded a custom observation facility you would
261261
add the class to this list to make your TOM load it.
262262

263-
`TOM_HARVESTER_CLASSES <#tom-harvester-classes>`__
264-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
265-
266-
Default:
267-
268-
.. code-block
269-
270-
[
271-
'tom_catalogs.harvesters.simbad.SimbadHarvester',
272-
'tom_catalogs.harvesters.ned.NEDHarvester',
273-
'tom_catalogs.harvesters.jplhorizons.JPLHorizonsHarvester',
274-
'tom_catalogs.harvesters.mpc.MPCHarvester',
275-
'tom_catalogs.harvesters.tns.TNSHarvester',
276-
]
277-
278-
A list of TOM harverster classes to make available to your TOM. If you
279-
have written or downloaded additional harvester classes you would make
280-
them available here.
281-
282263
`TOM_LATEX_PROCESSORS <#tom-latex-processors>`__
283264
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
284265

docs/customization/customize_templates.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ Editing this file will allow you to overwrite any of the css used at the base le
181181
styling established by TOMToolkit themes such as "Dark Mode".
182182

183183
The TOMToolkit has several built in variables that allow you to establish a theme for your TOM. You can see these in
184-
`root` dictionay in yoyr ``custom.css``. Altering these will change the appearance of large portions of the website.
184+
`root` dictionary in your ``custom.css``. Altering these will change the appearance of large portions of the website.
185185

186186
As an example, let's change the background color from white (#ffffff) to an off-white (#efead6).
187187
Add the following in your ``custom.css`` after the comments:

0 commit comments

Comments
 (0)