Skip to content

Commit eeb9582

Browse files
jonasktoso
authored andcommitted
Update links to use HTTPS (lightbend#526)
1 parent e0aebd2 commit eeb9582

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ fine... just be willing to revise it!
1414
Before we can accept pull requests, you will need to agree to the
1515
Typesafe Contributor License Agreement online, using your GitHub
1616
account - it takes 30 seconds. You can do this at
17-
http://www.typesafe.com/contribute/cla
17+
https://www.lightbend.com/contribute/cla
1818

1919
Expect that most PRs will need revision before merge. If people
2020
suggest revisions, you can make them yourself or wait for a

HOCON.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ the config file to the computer program.
109109
## Syntax
110110

111111
Much of this is defined with reference to JSON; you can find the
112-
JSON spec at http://json.org/ of course.
112+
JSON spec at https://json.org/ of course.
113113

114114
### Unchanged from JSON
115115

@@ -1337,7 +1337,7 @@ such that following the standard leads to people being confused.
13371337
Worse, common usage varies based on whether people are talking
13381338
about RAM or disk sizes, and various existing operating systems
13391339
and apps do all kinds of different things. See
1340-
http://en.wikipedia.org/wiki/Binary_prefix#Deviation_between_powers_of_1024_and_powers_of_1000
1340+
https://en.wikipedia.org/wiki/Binary_prefix#Deviation_between_powers_of_1024_and_powers_of_1000
13411341
for examples. It appears impossible to sort this out without
13421342
causing confusion for someone sometime.
13431343

@@ -1427,7 +1427,7 @@ way to get rid of default fallback values they don't want.
14271427

14281428
It may be useful to merge Java properties data with data loaded
14291429
from JSON or HOCON. See the Java properties spec here:
1430-
http://download.oracle.com/javase/7/docs/api/java/util/Properties.html#load%28java.io.Reader%29
1430+
https://docs.oracle.com/javase/8/docs/api/java/util/Properties.html#load-java.io.Reader-
14311431

14321432
Java properties parse as a one-level map from string keys to
14331433
string values.

LICENSE-2.0.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Apache License
33
Version 2.0, January 2004
4-
http://www.apache.org/licenses/
4+
https://www.apache.org/licenses/
55

66
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
77

@@ -193,7 +193,7 @@
193193
you may not use this file except in compliance with the License.
194194
You may obtain a copy of the License at
195195

196-
http://www.apache.org/licenses/LICENSE-2.0
196+
https://www.apache.org/licenses/LICENSE-2.0
197197

198198
Unless required by applicable law or agreed to in writing, software
199199
distributed under the License is distributed on an "AS IS" BASIS,

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ Thank you to contributors with commits since v1.2.1 tag:
222222
- build jar using Java 1.6 (and enforce this in build)
223223
- change getDuration to return unboxed long instead of boxed
224224
- API documentation improvements
225-
http://lightbend.github.io/config/latest/api/
225+
https://lightbend.github.io/config/latest/api/
226226

227227
# 1.1.0-9f31d6308e7ebbc3d7904b64ebb9f61f7e22a968: January 6, 2014
228228

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ https://github.com/lightbend/config/blob/master/NEWS.md
123123

124124
### API docs
125125

126-
- Online: http://lightbend.github.io/config/latest/api/
126+
- Online: https://lightbend.github.io/config/latest/api/
127127
- also published in jar form
128128
- consider reading this README first for an intro
129129
- for questions about the `.conf` file format, read
@@ -138,7 +138,7 @@ requests on GitHub.
138138
Before we can accept pull requests, you will need to agree to the
139139
Typesafe Contributor License Agreement online, using your GitHub
140140
account - it takes 30 seconds. You can do this at
141-
http://www.typesafe.com/contribute/cla
141+
https://www.lightbend.com/contribute/cla
142142

143143
Please see
144144
[CONTRIBUTING](https://github.com/lightbend/config/blob/master/CONTRIBUTING.md)
@@ -186,7 +186,7 @@ Objects are immutable, so methods on `Config` which transform the
186186
configuration return a new `Config`. Other types such as
187187
`ConfigParseOptions`, `ConfigResolveOptions`, `ConfigObject`,
188188
etc. are also immutable. See the
189-
[API docs](http://lightbend.github.io/config/latest/api/) for
189+
[API docs](https://lightbend.github.io/config/latest/api/) for
190190
details of course.
191191

192192
### Schemas and Validation
@@ -195,7 +195,7 @@ There isn't a schema language or anything like that. However, two
195195
suggested tools are:
196196

197197
- use the
198-
[checkValid() method](http://lightbend.github.io/config/latest/api/com/typesafe/config/Config.html#checkValid-com.typesafe.config.Config-java.lang.String...-)
198+
[checkValid() method](https://lightbend.github.io/config/latest/api/com/typesafe/config/Config.html#checkValid-com.typesafe.config.Config-java.lang.String...-)
199199
- access your config through a Settings class with a field for
200200
each setting, and instantiate it on startup (immediately
201201
throwing an exception if any settings are missing)
@@ -432,7 +432,7 @@ values into multiple places in your code. You have been warned!
432432
### Understanding `Config` and `ConfigObject`
433433

434434
To read and modify configuration, you'll use the
435-
[Config](http://lightbend.github.io/config/latest/api/com/typesafe/config/Config.html)
435+
[Config](https://lightbend.github.io/config/latest/api/com/typesafe/config/Config.html)
436436
interface. A `Config` looks at a JSON-equivalent data structure as
437437
a one-level map from paths to values. So if your JSON looks like
438438
this:
@@ -460,7 +460,7 @@ skip `null` values.
460460

461461
You can also look at a `Config` in the way most JSON APIs would,
462462
through the
463-
[ConfigObject](http://lightbend.github.io/config/latest/api/com/typesafe/config/ConfigObject.html)
463+
[ConfigObject](https://lightbend.github.io/config/latest/api/com/typesafe/config/ConfigObject.html)
464464
interface. This interface represents an object node in the JSON
465465
tree. `ConfigObject` instances come in multi-level trees, and the
466466
keys do not have any syntax (they are just strings, not path
@@ -472,15 +472,15 @@ expressions). Iterating over the above example as a
472472
In `ConfigObject`, `null` values are visible (distinct from
473473
missing values), just as they are in JSON.
474474

475-
`ConfigObject` is a subtype of [ConfigValue](http://lightbend.github.io/config/latest/api/com/typesafe/config/ConfigValue.html), where the other
475+
`ConfigObject` is a subtype of [ConfigValue](https://lightbend.github.io/config/latest/api/com/typesafe/config/ConfigValue.html), where the other
476476
subtypes are the other JSON types (list, string, number, boolean, null).
477477

478478
`Config` and `ConfigObject` are two ways to look at the same
479479
internal data structure, and you can convert between them for free
480480
using
481-
[Config.root()](http://lightbend.github.io/config/latest/api/com/typesafe/config/Config.html#root%28%29)
481+
[Config.root()](https://lightbend.github.io/config/latest/api/com/typesafe/config/Config.html#root--)
482482
and
483-
[ConfigObject.toConfig()](http://lightbend.github.io/config/latest/api/com/typesafe/config/ConfigObject.html#toConfig%28%29).
483+
[ConfigObject.toConfig()](https://lightbend.github.io/config/latest/api/com/typesafe/config/ConfigObject.html#toConfig--).
484484

485485
### ConfigBeanFactory
486486

config/src/test/resources/test04.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ akka {
174174

175175
mongodb {
176176
# Any specified collection name will be used as a prefix for collections that use durable mongo mailboxes
177-
uri = "mongodb://localhost/akka.mailbox" # Follow Mongo URI Spec - http://www.mongodb.org/display/DOCS/Connections
177+
uri = "mongodb://localhost/akka.mailbox" # Follow Mongo URI Spec - https://docs.mongodb.com/manual/reference/connection-string/
178178

179179
# Configurable timeouts for certain ops
180180
timeout {

project/PublishToSonatype.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ abstract class PublishToSonatype {
1111
def developerUrl: String
1212

1313
def licenseName = "Apache License, Version 2.0"
14-
def licenseUrl = "http://www.apache.org/licenses/LICENSE-2.0"
14+
def licenseUrl = "https://www.apache.org/licenses/LICENSE-2.0"
1515
def licenseDistribution = "repo"
1616
def scmUrl: String
1717
def scmConnection = "scm:git:" + scmUrl

0 commit comments

Comments
 (0)