Use https everywhere - tests and test data

This commit is contained in:
Yaroslav Russkih
2019-02-18 21:25:20 +01:00
committed by Ilya Chernikov
parent 7135f1972a
commit 028a311949
46 changed files with 336 additions and 336 deletions
+8 -8
View File
@@ -23,14 +23,14 @@ fun testAllInline() : String {
p { +"this format can be used as an alternative markup to XML" }
// an element with attributes and text content
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
// mixed content
p {
+"This is some"
b { +"mixed" }
+"text. For more see the"
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
+"project"
}
p { +"some text" }
@@ -63,14 +63,14 @@ fun testHtmlNoInline() : String {
p { +"this format can be used as an alternative markup to XML" }
// an element with attributes and text content
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
// mixed content
p {
+"This is some"
b { +"mixed" }
+"text. For more see the"
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
+"project"
}
p { +"some text" }
@@ -103,14 +103,14 @@ fun testBodyNoInline() : String {
p { +"this format can be used as an alternative markup to XML" }
// an element with attributes and text content
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
// mixed content
p {
+"This is some"
b { +"mixed" }
+"text. For more see the"
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
+"project"
}
p { +"some text" }
@@ -143,14 +143,14 @@ fun testBodyHtmlNoInline() : String {
p { +"this format can be used as an alternative markup to XML" }
// an element with attributes and text content
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
// mixed content
p {
+"This is some"
b { +"mixed" }
+"text. For more see the"
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
+"project"
}
p { +"some text" }
@@ -23,14 +23,14 @@ inline fun testAllInline(f: () -> String) : String {
p { +"this format can be used as an alternative markup to XML" }
// an element with attributes and text content
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
// mixed content
p {
+"This is some"
b { +"mixed" }
+"text. For more see the"
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
+"project"
}
p { +"some text" }
@@ -63,14 +63,14 @@ inline fun testHtmlNoInline(crossinline f: () -> String) : String {
p { +"this format can be used as an alternative markup to XML" }
// an element with attributes and text content
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
// mixed content
p {
+"This is some"
b { +"mixed" }
+"text. For more see the"
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
+"project"
}
p { +"some text" }
@@ -103,14 +103,14 @@ inline fun testBodyNoInline(crossinline f: () -> String) : String {
p { +"this format can be used as an alternative markup to XML" }
// an element with attributes and text content
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
// mixed content
p {
+"This is some"
b { +"mixed" }
+"text. For more see the"
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
+"project"
}
p { +"some text" }
@@ -143,14 +143,14 @@ inline fun testBodyHtmlNoInline(crossinline f: () -> String) : String {
p { +"this format can be used as an alternative markup to XML" }
// an element with attributes and text content
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
// mixed content
p {
+"This is some"
b { +"mixed" }
+"text. For more see the"
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
+"project"
}
p { +"some text" }
@@ -72,7 +72,7 @@ class Logo(override var pos: Vector) : Shape() {
fun drawLogo(state: CanvasState) {
size = imageSize * (state.size.x / imageSize.x) * relSize
// getKotlinLogo() is a 'magic' function here defined only for purposes of demonstration but in fact it just find an element containing the logo
state.context.drawImage(getImage("http://try.kotlinlang.org/static/images/canvas/Kotlin-logo.png"), 0.0, 0.0,
state.context.drawImage(getImage("https://try.kotlinlang.org/static/images/canvas/Kotlin-logo.png"), 0.0, 0.0,
imageSize.x, imageSize.y,
position.x, position.y,
size.x, size.y)
@@ -29,7 +29,7 @@ val context: CanvasRenderingContext2D
}
val PATH_TO_IMAGES = "http://try.kotlinlang.org/static/images/canvas/"
val PATH_TO_IMAGES = "https://try.kotlinlang.org/static/images/canvas/"
val state: CanvasState by lazy { CanvasState(canvas) }
+3 -3
View File
@@ -5,7 +5,7 @@
* In this example we show how to describe an HTML page in Kotlin.
*
* See this page for details:
* http://confluence.jetbrains.net/display/Kotlin/Type-safe+Groovy-style+builders
* https://confluence.jetbrains.net/display/Kotlin/Type-safe+Groovy-style+builders
*/
fun main(args: Array<String>) {
@@ -19,14 +19,14 @@ fun main(args: Array<String>) {
p { +"this format can be used as an alternative markup to XML" }
// an element with attributes and text content
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
// mixed content
p {
+"This is some"
b { +"mixed" }
+"text. For more see the"
a(href = "http://jetbrains.com/kotlin") { +"Kotlin" }
a(href = "https://jetbrains.com/kotlin") { +"Kotlin" }
+"project"
}
p { +"some text" }
+2 -2
View File
@@ -11,7 +11,7 @@
<p>
this format can be used as an alternative markup to XML
</p>
<a href="http://jetbrains.com/kotlin">
<a href="https://jetbrains.com/kotlin">
Kotlin
</a>
<p>
@@ -20,7 +20,7 @@
mixed
</b>
text. For more see the
<a href="http://jetbrains.com/kotlin">
<a href="https://jetbrains.com/kotlin">
Kotlin
</a>
project
+2 -2
View File
@@ -11,7 +11,7 @@
<p>
this format can be used as an alternative markup to XML
</p>
<a href="http://jetbrains.com/kotlin">
<a href="https://jetbrains.com/kotlin">
Kotlin
</a>
<p>
@@ -20,7 +20,7 @@
mixed
</b>
text. For more see the
<a href="http://jetbrains.com/kotlin">
<a href="https://jetbrains.com/kotlin">
Kotlin
</a>
project