Skip to content

Commit 407e2f1

Browse files
committed
fix links to LAMMPS docs
- links broke when LAMMPS moved from lammps.sandia.gov to lammps.org - `git grep -l sandia | xargs perl -wpi~ -e 's(http://lammps\.sandia\.gov/doc)(https://docs.lammps.org)' --` - `git grep -l sandia | xargs perl -wpi~ -e 's(http://lammps\.sandia\.gov)(https://www.lammps.org)' --`
1 parent 8b0be5f commit 407e2f1

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

package/MDAnalysis/coordinates/LAMMPS.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,15 +105,15 @@
105105
106106
For further discussion follow the reports for `Issue 84`_ and `Issue 64`_.
107107
108-
.. _LAMMPS: http://lammps.sandia.gov/
109-
.. _write DCD: http://lammps.sandia.gov/doc/dump.html
108+
.. _LAMMPS: https://www.lammps.org/
109+
.. _write DCD: https://docs.lammps.org/dump.html
110110
.. _CHARMM trajectory: http://www.charmm.org/documentation/c36b1/dynamc.html#%20Trajectory
111111
.. _AKMA: http://www.charmm.org/documentation/c36b1/usage.html#%20AKMA
112-
.. _units real: http://lammps.sandia.gov/doc/units.html
113-
.. _units command: http://lammps.sandia.gov/doc/units.html
112+
.. _units real: https://docs.lammps.org/units.html
113+
.. _units command: https://docs.lammps.org/units.html
114114
.. _`Issue 64`: https://github.com/MDAnalysis/mdanalysis/issues/64
115115
.. _`Issue 84`: https://github.com/MDAnalysis/mdanalysis/issues/84
116-
.. _`LAMMPS dump format`: http://lammps.sandia.gov/doc/dump.html
116+
.. _`LAMMPS dump format`: https://docs.lammps.org/dump.html
117117
118118
Classes
119119
-------
@@ -198,7 +198,7 @@ class DCDReader(DCD.DCDReader):
198198
"Angstrom", corresponding to LAMMPS `units style`_ "**real**". See
199199
:mod:`MDAnalysis.units` for other recognized values.
200200
201-
.. _units style: http://lammps.sandia.gov/doc/units.html
201+
.. _units style: https://docs.lammps.org/units.html
202202
"""
203203

204204
format = "LAMMPS"

package/MDAnalysis/topology/LAMMPSParser.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333
read from the input file. This may change in release 3.0.
3434
See :ref:`Guessers` for more information.
3535
36-
.. _LAMMPS: http://lammps.sandia.gov/
37-
.. _data: DATA file format: :http://lammps.sandia.gov/doc/2001/data_format.html
38-
.. _dump: http://lammps.sandia.gov/doc/dump.html
36+
.. _LAMMPS: https://www.lammps.org/
37+
.. _data: DATA file format: :https://docs.lammps.org/2001/data_format.html
38+
.. _dump: https://docs.lammps.org/dump.html
3939
4040
.. versionchanged:: 1.0.0
4141
Deprecated :class:`LAMMPSDataConverter` has now been removed.
@@ -67,7 +67,7 @@
6767
>>> u = mda.Universe('myfile.data', atom_style='id type x y z')
6868
6969
70-
.. _`atom_style`: http://lammps.sandia.gov/doc/atom_style.html
70+
.. _`atom_style`: https://docs.lammps.org/atom_style.html
7171
7272
Classes
7373
-------
@@ -469,7 +469,7 @@ def _parse_atoms(self, datalines, massdict=None):
469469
Lammps atoms can have lots of different formats,
470470
and even custom formats
471471
472-
http://lammps.sandia.gov/doc/atom_style.html
472+
https://docs.lammps.org/atom_style.html
473473
474474
Treated here are
475475
- atoms with 7 fields (with charge) "full"

package/doc/sphinx/source/documentation_pages/overview.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ of a protein and the radius of gyration of the backbone atoms are calculated::
4040

4141
.. _NumPy: https://numpy.org/
4242
.. _CHARMM: http://www.charmm.org/
43-
.. _LAMMPS: http://lammps.sandia.gov/
43+
.. _LAMMPS: https://www.lammps.org/
4444
.. _NAMD: http://www.ks.uiuc.edu/Research/namd/
4545
.. _Gromacs: http://www.gromacs.org/
4646

package/doc/sphinx/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ written out in a range of formats.
3232
.. _NumPy: https://numpy.org/
3333
.. _CHARMM: http://www.charmm.org/
3434
.. _Amber: http://ambermd.org/
35-
.. _LAMMPS: http://lammps.sandia.gov/
35+
.. _LAMMPS: https://www.lammps.org/
3636
.. _NAMD: http://www.ks.uiuc.edu/Research/namd/
3737
.. _Gromacs: http://www.gromacs.org/
3838
.. _`DL_POLY`: https://www.sc.stfc.ac.uk/software/type/computational-materials-and-molecular-science/?searchquery=dl_poly

0 commit comments

Comments
 (0)