Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MRG] http:// → https:// #870

Merged
merged 1 commit into from
Oct 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading