Skip to content

Commit

Permalink
http:// → https://
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitriPapadopoulos committed Oct 8, 2023
1 parent 708ccda commit 6ff888d
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Pull Requests
Code Style
----------
- [Black](https://github.com/psf/black) is required
- Type hints should pass using the current [mypy](http://mypy-lang.org/) release
- Type hints should pass using the current [mypy](https://mypy-lang.org/) release
- There are a handful of project-specific styles that should be used:
- `ae` for an ApplicationEntity object
- `acse` for the ACSE object
Expand Down
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@
pynetdicom
==========

A Python implementation of the `DICOM <http://dicom.nema.org>`_
A Python implementation of the `DICOM <https://www.dicomstandard.org>`_
networking protocol, originally based on (legacy)
`pynetdicom <https://github.com/patmun/pynetdicom_legacy>`_.


Description
-----------

`DICOM <http://dicom.nema.org>`_ is the international standard for medical
images and related information. It defines the formats and communication
`DICOM <https://www.dicomstandard.org>`_ is the international standard for
medical images and related information. It defines the formats and communication
protocols for media exchange in radiology, cardiology, radiotherapy and other
medical domains.

Expand All @@ -60,9 +60,9 @@ and is used to represent a DICOM Application Entity. With it you can:

Once associated, the services available to the association can
be used by sending
`DIMSE-C <http://dicom.nema.org/medical/dicom/current/output/html/part07.html#chapter_9>`_
`DIMSE-C <https://dicom.nema.org/medical/dicom/current/output/html/part07.html#chapter_9>`_
and
`DIMSE-N <http://dicom.nema.org/medical/dicom/current/output/html/part07.html#chapter_10>`_
`DIMSE-N <https://dicom.nema.org/medical/dicom/current/output/html/part07.html#chapter_10>`_
messages.

Documentation
Expand Down
2 changes: 1 addition & 1 deletion asv.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
//"install_timeout": 600,

// the base URL to show a commit for the project.
// "show_commit_url": "http://github.com/owner/project/commit/",
// "show_commit_url": "https://github.com/owner/project/commit/",

// The Pythons you'd like to test against. If not provided, defaults
// to the current version of Python used to run `asv`.
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
extlinks = {
# 'alias' : (url_prefix, caption)
# Usage :dcm:`link text <part05/sect_6.2.html>`
"dcm": ("http://dicom.nema.org/medical/dicom/current/output/chtml/%s", None),
"dcm": ("https://dicom.nema.org/medical/dicom/current/output/chtml/%s", None),
"gh": ("https://github.com/pydicom/%s", None),
"issue": ("https://github.com/pydicom/pynetdicom/issues/%s", "#%s"),
"pr": ("https://github.com/pydicom/pynetdicom/pull/%s", "#%s"),
Expand Down Expand Up @@ -306,7 +306,7 @@ def setup(app):

# Example configuration for intersphinx: refer to
# the Python standard library.
# intersphinx_mapping = {'http://docs.python.org/': None}
# intersphinx_mapping = {'https://docs.python.org/': None}


# The following is used by sphinx.ext.linkcode to provide links to github
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
============

:gh:`pynetdicom <pynetdicom>` is a pure Python package
that implements the `DICOM <http://dicom.nema.org/>`_ networking protocol.
that implements the `DICOM <https://www.dicomstandard.org/>`_ networking protocol.
Working with
:gh:`pydicom <pydicom>`, it allows the easy creation
of DICOM Application Entities (AEs), which can then act as *Service Class
Expand Down
2 changes: 1 addition & 1 deletion pynetdicom/apps/tests/test_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ def test_str_types(self):
"TM": ("StudyTime", "120000.123456"),
"UC": ("LongCodeValue", "So many characters in this one"),
"UI": ("SOPClassUID", "1.2.3.4.5.6"),
"UR": ("CodingSchemeURL", "http://github.com/pydicom/pynetdicom"),
"UR": ("CodingSchemeURL", "https://github.com/pydicom/pynetdicom"),
"UT": ("StrainAdditionalInformation", "Wheeeeeeeeee"),
}
for vr, (kw, val) in keywords.items():
Expand Down

0 comments on commit 6ff888d

Please sign in to comment.