Skip to content

Commit b667091

Browse files
Documentation: http → https (#249)
* chmod -x * Documentation: http → https
1 parent a4ded52 commit b667091

File tree

15 files changed

+26
-26
lines changed

15 files changed

+26
-26
lines changed

README.md

100755100644
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,5 +90,5 @@ For __v1__ I rewrote and redesigned the core library essentially from scratch, a
9090
* Grailbio [go-dicom](https://github.com/grailbio/go-dicom) -- commits from their fork were applied to ours
9191
* GradientHealth for supporting work I did on this while there [gradienthealth/dicom](https://github.com/gradienthealth/dicom)
9292
* Innolitics [DICOM browser](https://dicom.innolitics.com/ciods)
93-
* [DICOM Specification](http://dicom.nema.org/medical/dicom/current/output/pdf/part05.pdf)
94-
* <div>Icons made by <a href="https://www.freepik.com/?__hstc=57440181.48e262e7f01bcb2b41259e2e5a8103b3.1557697512782.1557697512782.1557697512782.1&__hssc=57440181.4.1557697512783&__hsfp=2768524783" title="Freepik">Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a></div>
93+
* [DICOM Specification](https://dicom.nema.org/medical/dicom/current/output/pdf/part05.pdf)
94+
* <div>Icons made by <a href="https://www.freepik.com/?__hstc=57440181.48e262e7f01bcb2b41259e2e5a8103b3.1557697512782.1557697512782.1557697512782.1&__hssc=57440181.4.1557697512783&__hsfp=2768524783" title="Freepik">Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a> is licensed by <a href="https://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a></div>

dataset.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
var ErrorElementNotFound = errors.New("element not found")
1616

1717
// Dataset represents a DICOM dataset, see
18-
// http://dicom.nema.org/medical/dicom/current/output/html/part05.html#chapter_7.
18+
// https://dicom.nema.org/medical/dicom/current/output/html/part05.html#chapter_7.
1919
//
2020
// This Dataset representation is JSON serializable out of the box
2121
// (implements json.Marshaler) and will also pretty print as a string nicely (see String example).

element.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
var ErrorUnexpectedDataType = errors.New("the type of the data was unexpected or not allowed")
1515

1616
// Element represents a standard DICOM data element (see the DICOM standard:
17-
// http://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_7.1 ).
17+
// https://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_7.1 ).
1818
// This Element can be serialized to JSON out of the box and pretty printed as a string via the String() method.
1919
type Element struct {
2020
Tag tag.Tag `json:"tag"`
@@ -251,7 +251,7 @@ func (s *floatsValue) MarshalJSON() ([]byte, error) {
251251

252252
// SequenceItemValue is a Value that represents a single Sequence Item. Learn
253253
// more about Sequences at
254-
// http://dicom.nema.org/medical/dicom/current/output/chtml/part05/sect_7.5.html.
254+
// https://dicom.nema.org/medical/dicom/current/output/chtml/part05/sect_7.5.html.
255255
type SequenceItemValue struct {
256256
elements []*Element
257257
}

parse.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Package dicom provides a set of tools to read, write, and generally
2-
// work with DICOM (http://dicom.nema.org/) medical image files in Go.
2+
// work with DICOM (https://dicom.nema.org/) medical image files in Go.
33
//
44
// dicom.Parse and dicom.Write provide the core functionality to read and write
55
// DICOM Datasets. This package provides Go data structures that represent

pkg/charset/charset.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ var htmlEncodingNames = map[string]string{
7777
// ParseSpecificCharacterSet converts DICOM character encoding names, such as
7878
// "ISO-IR 100" to encoding.Decoder(s). It will return nil, nil for the default (7bit
7979
// ASCII) encoding. Cf. P3.2
80-
// D.6.2. http://dicom.nema.org/medical/dicom/2016d/output/chtml/part02/sect_D.6.2.html
80+
// D.6.2. https://dicom.nema.org/medical/dicom/2016d/output/chtml/part02/sect_D.6.2.html
8181
func ParseSpecificCharacterSet(encodingNames []string) (CodingSystem, error) {
8282
var decoders []*encoding.Decoder
8383
for _, name := range encodingNames {

pkg/dcmtime/errors.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@ import "errors"
66
var ErrParseDA = errors.New(
77
"error parsing dicom DA (date) value -- expected format is 'YYYYMMDD'. " +
88
"for more details on proper DA value formatting, see here: " +
9-
"http://dicom.nema.org/medical/dicom/current/output/html/part05.html#table_6.2-1",
9+
"https://dicom.nema.org/medical/dicom/current/output/html/part05.html#table_6.2-1",
1010
)
1111

1212
// ErrParseDA is a sentinel error returned from ParseDatetime.
1313
var ErrParseDT = errors.New(
1414
"error parsing dicom DT (datetime) value -- expected format is" +
1515
" 'YYYYMMDDHHMMSS.FFFFFF&ZZXX'. " +
1616
"for more details on proper DT value formatting, see here: " +
17-
"http://dicom.nema.org/medical/dicom/current/output/html/part05.html#table_6.2-1",
17+
"https://dicom.nema.org/medical/dicom/current/output/html/part05.html#table_6.2-1",
1818
)
1919

2020
// ErrParseTM is a sentinel error returned from ParseTime.
2121
var ErrParseTM = errors.New(
2222
"error parsing dicom TM (time) value, but expected format is 'HHMMSS.FFFFFF'. " +
2323
"for more details on proper TM value formatting, see here: " +
24-
"http://dicom.nema.org/medical/dicom/current/output/html/part05.html#table_6.2-1",
24+
"https://dicom.nema.org/medical/dicom/current/output/html/part05.html#table_6.2-1",
2525
)

pkg/personname/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
The personname package provides methods and data types for inspecting Person Name (PN)
33
DICOM Value Representations, as defined here:
44
5-
http://dicom.nema.org/dicom/2013/output/chtml/part05/sect_6.2.html
5+
https://dicom.nema.org/dicom/2013/output/chtml/part05/sect_6.2.html
66
*/
77
package personname

pkg/personname/errs.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var ErrNullSepLevelInvalid = fmt.Errorf("TrailingNullLevel exceeded maximum")
4040
func newErrTooManyGroups(groupsFound int) error {
4141
return fmt.Errorf(
4242
"%w: value contains %v groups. see 'PN' entry in official dicom spec: "+
43-
"http://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_6.2",
43+
"https://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_6.2",
4444
ErrParseGroupCount,
4545
groupsFound,
4646
)
@@ -51,7 +51,7 @@ func newErrTooManyGroups(groupsFound int) error {
5151
func newErrTooManyGroupSegments(group pnGroup, segmentsFound int) error {
5252
return fmt.Errorf(
5353
"%w: value group %v contains %v segments. see 'PN' entry in official "+
54-
"dicom spec: http://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_6.2",
54+
"dicom spec: https://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_6.2",
5555
ErrParseGroupSegmentCount,
5656
group,
5757
segmentsFound,

pkg/personname/groupInfo_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ func TestNewPersonNameFromDicom_Err(t *testing.T) {
436436
expectedString := "error parsing PN value: no more than 5 segments with " +
437437
"'[Last]^[First]^[Middle]^[Prefix]^[Suffix]' format are allowed: value group " +
438438
"Alphabetic contains 6 segments. see 'PN' entry in official dicom spec: " +
439-
"http://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_6.2"
439+
"https://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_6.2"
440440

441441
if err.Error() != expectedString {
442442
t.Errorf("unexpected error text: %v", err.Error())

pkg/personname/info.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ func validateInfoNullSepLevel(level InfoTrailingNullLevel) error {
8080
}
8181

8282
// Info holds information from an element with a "PN" VR. See the "PN"
83-
// entry at: http://dicom.nema.org/dicom/2013/output/chtml/part05/sect_6.2.html
83+
// entry at: https://dicom.nema.org/dicom/2013/output/chtml/part05/sect_6.2.html
8484
//
8585
// PN values are split into three groups which represent three different ways to
8686
// represent a name:

0 commit comments

Comments
 (0)