Skip to content

Commit 9ac52fa

Browse files
yrusskihligee
authored andcommitted
Use https everywhere - documentation and samples
1 parent 028a311 commit 9ac52fa

File tree

13 files changed

+44
-44
lines changed

13 files changed

+44
-44
lines changed

ReadMe.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
[![official project](http://jb.gg/badges/official.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
1+
[![official project](https://jb.gg/badges/official.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
22
[![TeamCity (simple build status)](https://img.shields.io/teamcity/http/teamcity.jetbrains.com/s/Kotlin_dev_Compiler.svg)](https://teamcity.jetbrains.com/viewType.html?buildTypeId=Kotlin_dev_Compiler&branch_Kotlin_dev=%3Cdefault%3E&tab=buildTypeStatusDiv)
3-
[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlin/kotlin-maven-plugin.svg)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.jetbrains.kotlin%22)
4-
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0)
3+
[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlin/kotlin-maven-plugin.svg)](https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.jetbrains.kotlin%22)
4+
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)
55

66
# Kotlin Programming Language
77

@@ -15,7 +15,7 @@ Welcome to [Kotlin](https://kotlinlang.org/)! Some handy links:
1515
* [Forum](https://discuss.kotlinlang.org/)
1616
* [Kotlin Blog](https://blog.jetbrains.com/kotlin/)
1717
* [Follow Kotlin on Twitter](https://twitter.com/kotlin)
18-
* [Public Slack channel](http://slack.kotlinlang.org/)
18+
* [Public Slack channel](https://slack.kotlinlang.org/)
1919
* [TeamCity CI build](https://teamcity.jetbrains.com/project.html?tab=projectOverview&projectId=Kotlin)
2020

2121
## Editing Kotlin

compiler/preloader/instrumentation/ReadMe.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This is determined by the ```src/META-INF/services/org.jetbrains.kotlin.preloadi
2525
**Instrumenter** is any implementation of ```org.jetbrains.kotlin.preloading.instrumentation.Instrumenter``` interface.
2626

2727
Preloader loads the **first** instrumenter service found on the class path.
28-
Services are provided through the [standard JDK mechanism](http://docs.oracle.com/javase/6/docs/api/java/util/ServiceLoader.html).
28+
Services are provided through the [standard JDK mechanism](https://docs.oracle.com/javase/6/docs/api/java/util/ServiceLoader.html).
2929

3030
Every preloaded class is run through the instrumenter. Before exiting the program instrumenter's dump() method is called.
3131
**Note** JDK classes and everything in the Preloader's own class path are not preloaded, thus not instrumented.

jps-plugin/testData/general/DevKitProject/resources/META-INF/plugin.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<id>com.your.company.unique.plugin.id</id>
33
<name>Plugin display name here</name>
44
<version>1.0</version>
5-
<vendor email="[email protected]" url="http://www.yourcompany.com">YourCompany</vendor>
5+
<vendor email="[email protected]" url="https://www.yourcompany.com">YourCompany</vendor>
66

77
<description><![CDATA[
88
Enter short description for your plugin here.<br>

js/ReadMe.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The Kotlin Standard Library for JS is built with gradle, see the corresponding m
1111

1212
## Reusing JVM based test cases in JavaScript
1313

14-
Any Kotlin test cases using the **org.junit.Test** annotation and the [kotlin.test](../libraries/kotlin.test) package, such as [this test case](../libraries/stdlib/test/text/StringNumberConversionTest.kt#L16) are automatically converted to JavaScript using [QUnit](http://qunitjs.com/).
14+
Any Kotlin test cases using the **org.junit.Test** annotation and the [kotlin.test](../libraries/kotlin.test) package, such as [this test case](../libraries/stdlib/test/text/StringNumberConversionTest.kt#L16) are automatically converted to JavaScript using [QUnit](https://qunitjs.com/).
1515

1616
This allows the test cases to be [run directly in a web page in any web browser](../libraries/stdlib/js/ReadMe.md).
1717

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# Kotlin Programming Language
22

3-
Welcome to [Kotlin](http://kotlinlang.org/)! Some handy links:
3+
Welcome to [Kotlin](https://kotlinlang.org/)! Some handy links:
44

5-
* [Kotlin Site](http://kotlinlang.org/)
6-
* [Getting Started Guide](http://kotlinlang.org/docs/tutorials/javascript/getting-started-idea/getting-started-with-intellij-idea.html)
7-
* [Try Kotlin](http://try.kotlinlang.org/)
8-
* [Kotlin Standard Library](http://kotlinlang.org/api/latest/jvm/stdlib/index.html)
9-
* [Issue Tracker](http://youtrack.jetbrains.com/issues/KT)
5+
* [Kotlin Site](https://kotlinlang.org/)
6+
* [Getting Started Guide](https://kotlinlang.org/docs/tutorials/javascript/getting-started-idea/getting-started-with-intellij-idea.html)
7+
* [Try Kotlin](https://try.kotlinlang.org/)
8+
* [Kotlin Standard Library](https://kotlinlang.org/api/latest/jvm/stdlib/index.html)
9+
* [Issue Tracker](https://youtrack.jetbrains.com/issues/KT)
1010
* [Forum](https://discuss.kotlinlang.org/)
11-
* [Kotlin Blog](http://blog.jetbrains.com/kotlin/)
11+
* [Kotlin Blog](https://blog.jetbrains.com/kotlin/)
1212
* [Follow Kotlin on Twitter](https://twitter.com/kotlin)
13-
* [Public Slack channel](http://slack.kotlinlang.org/)
13+
* [Public Slack channel](https://slack.kotlinlang.org/)
1414
* [TeamCity CI build](https://teamcity.jetbrains.com/project.html?tab=projectOverview&projectId=Kotlin)
1515

1616
## Editing Kotlin
1717

1818
* [Kotlin IntelliJ IDEA Plugin](https://kotlinlang.org/docs/tutorials/getting-started.html)
19-
* [Kotlin Eclipse Plugin](http://kotlinlang.org/docs/tutorials/getting-started-eclipse.html)
19+
* [Kotlin Eclipse Plugin](https://kotlinlang.org/docs/tutorials/getting-started-eclipse.html)
2020
* [Kotlin TextMate Bundle](https://github.com/vkostyukov/kotlin-sublime-package)

js/npm/templates/kotlin-test/README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ compiler output for performing assertions in tests, independently of the test fr
55

66
The library includes out-of-the-box support for [Jasmine](https://jasmine.github.io/),
77
[Mocha](https://mochajs.org/), [Jest](https://facebook.github.io/jest/),
8-
and [QUnit](http://qunitjs.com).
8+
and [QUnit](https://qunitjs.com).
99

1010
Try out the [examples](https://github.com/JetBrains/kotlin-examples/tree/master/gradle/js-tests),
1111
read the [forum post](https://discuss.kotlinlang.org/t/unit-testing-in-kotlin-js/3943)
@@ -14,19 +14,19 @@ for more information.
1414

1515
## Handy links
1616

17-
* [Kotlin Site](http://kotlinlang.org/)
18-
* [Getting Started Guide](http://kotlinlang.org/docs/tutorials/javascript/getting-started-idea/getting-started-with-intellij-idea.html)
19-
* [Try Kotlin](http://try.kotlinlang.org/)
20-
* [Kotlin Standard Library](http://kotlinlang.org/api/latest/jvm/stdlib/index.html)
21-
* [Issue Tracker](http://youtrack.jetbrains.com/issues/KT)
17+
* [Kotlin Site](https://kotlinlang.org/)
18+
* [Getting Started Guide](https://kotlinlang.org/docs/tutorials/javascript/getting-started-idea/getting-started-with-intellij-idea.html)
19+
* [Try Kotlin](https://try.kotlinlang.org/)
20+
* [Kotlin Standard Library](https://kotlinlang.org/api/latest/jvm/stdlib/index.html)
21+
* [Issue Tracker](https://youtrack.jetbrains.com/issues/KT)
2222
* [Forum](https://discuss.kotlinlang.org/)
23-
* [Kotlin Blog](http://blog.jetbrains.com/kotlin/)
23+
* [Kotlin Blog](https://blog.jetbrains.com/kotlin/)
2424
* [Follow Kotlin on Twitter](https://twitter.com/kotlin)
25-
* [Public Slack channel](http://slack.kotlinlang.org/)
25+
* [Public Slack channel](https://slack.kotlinlang.org/)
2626
* [TeamCity CI build](https://teamcity.jetbrains.com/project.html?tab=projectOverview&projectId=Kotlin)
2727

2828
## Editing Kotlin
2929

3030
* [Kotlin IntelliJ IDEA Plugin](https://kotlinlang.org/docs/tutorials/getting-started.html)
31-
* [Kotlin Eclipse Plugin](http://kotlinlang.org/docs/tutorials/getting-started-eclipse.html)
31+
* [Kotlin Eclipse Plugin](https://kotlinlang.org/docs/tutorials/getting-started-eclipse.html)
3232
* [Kotlin TextMate Bundle](https://github.com/vkostyukov/kotlin-sublime-package)

js/npm/templates/kotlin/README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# Kotlin Programming Language
22

3-
Welcome to [Kotlin](http://kotlinlang.org/)! Some handy links:
3+
Welcome to [Kotlin](https://kotlinlang.org/)! Some handy links:
44

5-
* [Kotlin Site](http://kotlinlang.org/)
6-
* [Getting Started Guide](http://kotlinlang.org/docs/tutorials/javascript/getting-started-idea/getting-started-with-intellij-idea.html)
7-
* [Try Kotlin](http://try.kotlinlang.org/)
8-
* [Kotlin Standard Library](http://kotlinlang.org/api/latest/jvm/stdlib/index.html)
9-
* [Issue Tracker](http://youtrack.jetbrains.com/issues/KT)
5+
* [Kotlin Site](https://kotlinlang.org/)
6+
* [Getting Started Guide](https://kotlinlang.org/docs/tutorials/javascript/getting-started-idea/getting-started-with-intellij-idea.html)
7+
* [Try Kotlin](https://try.kotlinlang.org/)
8+
* [Kotlin Standard Library](https://kotlinlang.org/api/latest/jvm/stdlib/index.html)
9+
* [Issue Tracker](https://youtrack.jetbrains.com/issues/KT)
1010
* [Forum](https://discuss.kotlinlang.org/)
11-
* [Kotlin Blog](http://blog.jetbrains.com/kotlin/)
11+
* [Kotlin Blog](https://blog.jetbrains.com/kotlin/)
1212
* [Follow Kotlin on Twitter](https://twitter.com/kotlin)
13-
* [Public Slack channel](http://slack.kotlinlang.org/)
13+
* [Public Slack channel](https://slack.kotlinlang.org/)
1414
* [TeamCity CI build](https://teamcity.jetbrains.com/project.html?tab=projectOverview&projectId=Kotlin)
1515

1616
## Editing Kotlin
1717

1818
* [Kotlin IntelliJ IDEA Plugin](https://kotlinlang.org/docs/tutorials/getting-started.html)
19-
* [Kotlin Eclipse Plugin](http://kotlinlang.org/docs/tutorials/getting-started-eclipse.html)
19+
* [Kotlin Eclipse Plugin](https://kotlinlang.org/docs/tutorials/getting-started-eclipse.html)
2020
* [Kotlin TextMate Bundle](https://github.com/vkostyukov/kotlin-sublime-package)

libraries/ReadMe.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ You can work with the maven modules of this maven project in IDEA from the [root
2222

2323
### Building
2424

25-
You need to install a recent (at least 3.3) [Maven](http://maven.apache.org/) distribution.
25+
You need to install a recent (at least 3.3) [Maven](https://maven.apache.org/) distribution.
2626

2727
Before building this Maven project you need to build and install the required artifacts built with Gradle to the local maven repository, by issuing the following command in the root project:
2828

libraries/build-docs.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
<sourceRoot path="stdlib/common/src" />
7676
<sourceRoot path="stdlib/src" />
7777

78-
<sourcelink path=".." url="http://github.com/JetBrains/kotlin/blob/${github.revision}" linesuffix="#L"/>
78+
<sourcelink path=".." url="https://github.com/JetBrains/kotlin/blob/${github.revision}" linesuffix="#L"/>
7979

8080
<!-- TODO Docs? -->
8181
<packageOptions prefix="org.w3c" reportUndocumented="false"/>
@@ -93,9 +93,9 @@
9393
<sourceRoot path="kotlin.test/testng/src/main/kotlin" platforms="JVM"/>
9494
<sourceRoot path="kotlin.test/js/src/main/kotlin" platforms="JS"/>
9595

96-
<sourcelink path=".." url="http://github.com/JetBrains/kotlin/blob/${github.revision}" linesuffix="#L"/>
96+
<sourcelink path=".." url="https://github.com/JetBrains/kotlin/blob/${github.revision}" linesuffix="#L"/>
9797
<ExternalDocumentationLink url="https://kotlinlang.org/api/latest/jvm/stdlib/" packageListUrl="${stdlib.package.list}" />
98-
<ExternalDocumentationLink url="http://junit.org/junit4/javadoc/latest/" />
98+
<ExternalDocumentationLink url="https://junit.org/junit4/javadoc/latest/" />
9999
<packageoptions prefix="org.junit" skipdeprecated="true"/>
100100
</dokka>
101101
</target>

libraries/examples/browser-example-with-library/ReadMe.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This (really simple ;) application shows how to use Kotlin and the maven plugin to generate JavaScript and invoke it from inside a HTML web page.
44

5-
The source [Hello.kt](https://github.com/JetBrains/kotlin/blob/master/libraries/examples/browser-example-with-library/src/main/kotlin/sample/Hello.kt) uses the [kotlin.browser](http://jetbrains.github.com/kotlin/versions/snapshot/apidocs/kotlin/browser/package-summary.html) API to access the *document* property to modify the HTML.
5+
The source [Hello.kt](https://github.com/JetBrains/kotlin/blob/master/libraries/examples/browser-example-with-library/src/main/kotlin/sample/Hello.kt) uses the [kotlin.browser](https://jetbrains.github.com/kotlin/versions/snapshot/apidocs/kotlin/browser/package-summary.html) API to access the *document* property to modify the HTML.
66

77
### Running the sample in a web browser
88

libraries/examples/browser-example/ReadMe.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This (really simple ;) application shows how to use Kotlin and the maven plugin to generate JavaScript and invoke it from inside a HTML web page.
44

5-
The source [Hello.kt](https://github.com/JetBrains/kotlin/blob/master/libraries/examples/browser-example/src/main/kotlin/sample/Hello.kt) uses the [kotlin.browser](http://jetbrains.github.com/kotlin/versions/snapshot/apidocs/kotlin/browser/package-summary.html) API to access the *document* property to modify the HTML.
5+
The source [Hello.kt](https://github.com/JetBrains/kotlin/blob/master/libraries/examples/browser-example/src/main/kotlin/sample/Hello.kt) uses the [kotlin.browser](https://jetbrains.github.com/kotlin/versions/snapshot/apidocs/kotlin/browser/package-summary.html) API to access the *document* property to modify the HTML.
66

77
### Running the sample in a web browser
88

@@ -14,11 +14,11 @@ To run the example try:
1414

1515
This should open a browser which then shows some simple HTML which then includes some dynamically generated content.
1616

17-
## Running the sample on Java 7 with JavaFX and [kool.io](http://kool.io/)'s browser
17+
## Running the sample on Java 7 with JavaFX and [kool.io](https://kool.io/)'s browser
1818

1919
You can also run the sample as Java code on a JVM using JavaFX (which includes its own webkit rendering engine for HTML / CSS / JS support) using the [kool.io JavaFX browser](https://github.com/koolio/kool/blob/master/samples/kool-template-sample/ReadMe.md).
2020

21-
First you need to install [Java 7 update 4](http://www.oracle.com/technetwork/java/javase/overview/index.html) or later which ships with JavaFX.
21+
First you need to install [Java 7 update 4](https://www.oracle.com/technetwork/java/javase/overview/index.html) or later which ships with JavaFX.
2222

2323
You will need to setup **JAVA_HOME** and **PATH** environment variables to point to the latest JDK. If you install Java 7 and use a Mac you might want to run this first...
2424

libraries/stdlib/ReadMe.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## The Kotlin Standard Library
22

3-
This module creates the [standard library for Kotlin](http://kotlinlang.org/api/latest/jvm/stdlib/index.html).
3+
This module creates the [standard library for Kotlin](https://kotlinlang.org/api/latest/jvm/stdlib/index.html).
44

55
### Notes for contributors
66

libraries/stdlib/samples/ReadMe.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This project contains samples for the standard library functions.
44
They are located in the [test](test) source root and each sample is written like a small unit test.
55
Then these samples are referenced in the documentation of the standard library functions
6-
with the [`@sample`](http://kotlinlang.org/docs/reference/kotlin-doc.html#block-tags) tag and are embedded in the generated documentation as runnable samples.
6+
with the [`@sample`](https://kotlinlang.org/docs/reference/kotlin-doc.html#block-tags) tag and are embedded in the generated documentation as runnable samples.
77

88

99
### Guides for sample authoring

0 commit comments

Comments
 (0)