Skip to content

Commit 127cbc5

Browse files
committed
used https
1 parent 1863755 commit 127cbc5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+88
-88
lines changed

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "nette-forms",
33
"description": "Client side script for Nette Forms Component",
4-
"homepage": "http://nette.org",
4+
"homepage": "https://nette.org",
55
"keywords": [
66
"nette",
77
"validation",
@@ -13,7 +13,7 @@
1313
"GPL-3.0"
1414
],
1515
"authors": [
16-
"David Grudl (http://davidgrudl.com)"
16+
"David Grudl (https://davidgrudl.com)"
1717
],
1818
"main": "src/assets/netteForms.js",
1919
"ignore": [

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "nette/forms",
33
"description": "Nette Forms: greatly facilitates web forms",
4-
"homepage": "http://nette.org",
4+
"homepage": "https://nette.org",
55
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
66
"authors": [
77
{
88
"name": "David Grudl",
9-
"homepage": "http://davidgrudl.com"
9+
"homepage": "https://davidgrudl.com"
1010
},
1111
{
1212
"name": "Nette Community",
13-
"homepage": "http://nette.org/contributors"
13+
"homepage": "https://nette.org/contributors"
1414
}
1515
],
1616
"require": {

contributing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The issue tracker is the preferred channel for bug reports, features requests
55
and submitting pull requests, but please respect the following restrictions:
66

77
* Please **do not** use the issue tracker for personal support requests (use
8-
[Nette forum](http://forum.nette.org) or [Stack Overflow](http://stackoverflow.com)).
8+
[Nette forum](https://forum.nette.org) or [Stack Overflow](http://stackoverflow.com)).
99

1010
* Please **do not** derail or troll issues. Keep the discussion on topic and
1111
respect the opinions of others.
@@ -21,7 +21,7 @@ fits with the scope and aims of the project. It's up to *you* to make a strong
2121
case to convince the project's developers of the merits of this feature.
2222

2323
Nette welcomes **pull requests**. If you'd like to contribute, please take a moment
24-
to [read the guidelines](http://nette.org/en/contributing) in order to make
24+
to [read the guidelines](https://nette.org/en/contributing) in order to make
2525
the contribution process easy and effective for everyone involved.
2626

2727
Thanks!

examples/basic-example.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,10 @@
124124
<meta charset="utf-8">
125125
<title>Nette Forms basic example</title>
126126
<link rel="stylesheet" media="screen" href="assets/style.css" />
127-
<script src="http://nette.github.io/resources/js/netteForms.js"></script>
127+
<script src="https://nette.github.io/resources/js/netteForms.js"></script>
128128

129129
<h1>Nette Forms basic example</h1>
130130

131131
<?php echo $form ?>
132132

133-
<footer><a href="http://doc.nette.org/en/forms">see documentation</a></footer>
133+
<footer><a href="https://doc.nette.org/en/forms">see documentation</a></footer>

examples/bootstrap2-rendering.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
<meta charset="utf-8">
8686
<title>Nette Forms & Bootstrap 2 rendering example</title>
8787

88-
<link rel="stylesheet" media="screen" href="http://netdna.bootstrapcdn.com/bootstrap/2.3.2/css/bootstrap.min.css" />
88+
<link rel="stylesheet" media="screen" href="https://netdna.bootstrapcdn.com/bootstrap/2.3.2/css/bootstrap.min.css" />
8989

9090
<div class="container">
9191
<div class="page-header">

examples/containers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@
5959

6060
<?php echo $form ?>
6161

62-
<footer><a href="http://doc.nette.org/en/forms">see documentation</a></footer>
62+
<footer><a href="https://doc.nette.org/en/forms">see documentation</a></footer>

examples/custom-control.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,4 +115,4 @@ public static function validateDate(Nette\Forms\IControl $control)
115115

116116
<?php echo $form ?>
117117

118-
<footer><a href="http://doc.nette.org/en/forms">see documentation</a></footer>
118+
<footer><a href="https://doc.nette.org/en/forms">see documentation</a></footer>

examples/custom-rendering.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,10 @@
116116
background: #EEE;
117117
}
118118
</style>
119-
<script src="http://nette.github.io/resources/js/netteForms.js"></script>
119+
<script src="https://nette.github.io/resources/js/netteForms.js"></script>
120120

121121
<h1>Nette Forms custom rendering example</h1>
122122

123123
<?php echo $form ?>
124124

125-
<footer><a href="http://doc.nette.org/en/forms">see documentation</a></footer>
125+
<footer><a href="https://doc.nette.org/en/forms">see documentation</a></footer>

examples/custom-validator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ static function divisibilityValidator($item, $arg)
5151
<meta charset="utf-8">
5252
<title>Nette Forms custom validator example</title>
5353
<link rel="stylesheet" media="screen" href="assets/style.css" />
54-
<script src="http://nette.github.io/resources/js/netteForms.js"></script>
54+
<script src="https://nette.github.io/resources/js/netteForms.js"></script>
5555

5656
<script>
5757
Nette.validators.MyValidators_divisibilityValidator = function(elem, args, val) {
@@ -63,4 +63,4 @@ static function divisibilityValidator($item, $arg)
6363

6464
<?php echo $form ?>
6565

66-
<footer><a href="http://doc.nette.org/en/forms">see documentation</a></footer>
66+
<footer><a href="https://doc.nette.org/en/forms">see documentation</a></footer>

examples/html5.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@
5858
<meta charset="utf-8">
5959
<title>Nette Forms and HTML5</title>
6060
<link rel="stylesheet" media="screen" href="assets/style.css" />
61-
<script src="http://nette.github.io/resources/js/netteForms.js"></script>
61+
<script src="https://nette.github.io/resources/js/netteForms.js"></script>
6262

6363
<h1>Nette Forms and HTML5</h1>
6464

6565
<?php echo $form ?>
6666

67-
<footer><a href="http://doc.nette.org/en/forms">see documentation</a></footer>
67+
<footer><a href="https://doc.nette.org/en/forms">see documentation</a></footer>

0 commit comments

Comments
 (0)