Skip to content

Commit 7ff525c

Browse files
committed
fixes issue #408 link to https://scriptcraftjs.org
1 parent 9a3fc1e commit 7ff525c

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

‎docs/API-Reference.md‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5260,7 +5260,7 @@ main thread of execution.
52605260

52615261
#### Parameters
52625262

5263-
* request: The request details either a plain URL e.g. "http://scriptcraft.js/sample.json" or an object with the following properties...
5263+
* request: The request details either a plain URL e.g. "https://scriptcraft.js/sample.json" or an object with the following properties...
52645264

52655265
- url: The URL of the request.
52665266
- method: Should be one of the standard HTTP methods, GET, POST, PUT, DELETE (defaults to GET).
@@ -5277,7 +5277,7 @@ The following example illustrates how to use http.request to make a request to a
52775277
```javascript
52785278
var jsResponse;
52795279
var http = require('http');
5280-
http.request('http://scriptcraftjs.org/sample.json',function(responseCode, responseBody){
5280+
http.request('https://scriptcraftjs.org/sample.json',function(responseCode, responseBody){
52815281
jsResponse = JSON.parse( responseBody );
52825282
});
52835283
```
@@ -5306,7 +5306,7 @@ This module can only be used if the separate `sc-mqtt.jar` file is
53065306
present in the CraftBukkit classpath. To use this module, you should
53075307
...
53085308

5309-
1. Download sc-mqtt.jar from <http://scriptcraftjs.org/download/extras/>
5309+
1. Download sc-mqtt.jar from <https://scriptcraftjs.org/download/extras/>
53105310
2. Save the file to the same directory where craftbukkit.jar resides.
53115311
3. Create a new batch file (windows-only) called
53125312
craftbukkit-sc-mqtt.bat and edit it to include the following

‎docs/YoungPersonsGuideToProgrammingMinecraft.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1295,7 +1295,7 @@ different objects and methods available for use by ScriptCraft.
12951295
[dlbuk2]: http://dl.bukkit.org/downloads/craftbukkit/
12961296
[dlcm]: http://canarymod.net/releases
12971297
[bii]: http://wiki.bukkit.org/Setting_up_a_server
1298-
[sc-plugin]: http://scriptcraftjs.org/download/
1298+
[sc-plugin]: https://scriptcraftjs.org/download/
12991299
[ce]: http://www.codecademy.com/
13001300
[mcdv]: http://www.minecraftwiki.net/wiki/Data_values
13011301
[np]: http://notepad-plus-plus.org/

‎release-notes.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ Various bug fixes, enhanced classroom module and improved error logging on start
275275
Added support for communication with Arduino and other devices which
276276
use the [MQTT protocol][mqtt] via a new `sc-mqtt` module. This module
277277
requires a separate sc-mqtt.jar file downloadable from
278-
<http://scriptcraftjs.org/download/extras/mqtt> which must be included
278+
<https://scriptcraftjs.org/download/extras/mqtt> which must be included
279279
in the CraftBukkit classpath. If using MQTT in ScriptCraft, then
280280
Craftbukkit should be launched like this...
281281

‎src/docs/templates/ypgpm.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1250,7 +1250,7 @@ different objects and methods available for use by ScriptCraft.
12501250
[dlbuk2]: http://dl.bukkit.org/downloads/craftbukkit/
12511251
[dlcm]: http://canarymod.net/releases
12521252
[bii]: http://wiki.bukkit.org/Setting_up_a_server
1253-
[sc-plugin]: http://scriptcraftjs.org/download/
1253+
[sc-plugin]: https://scriptcraftjs.org/download/
12541254
[ce]: http://www.codecademy.com/
12551255
[mcdv]: http://www.minecraftwiki.net/wiki/Data_values
12561256
[np]: http://notepad-plus-plus.org/

‎src/main/js/modules/http/request.js‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ main thread of execution.
1414
1515
#### Parameters
1616
17-
* request: The request details either a plain URL e.g. "http://scriptcraft.js/sample.json" or an object with the following properties...
17+
* request: The request details either a plain URL e.g. "https://scriptcraft.js/sample.json" or an object with the following properties...
1818
1919
- url: The URL of the request.
2020
- method: Should be one of the standard HTTP methods, GET, POST, PUT, DELETE (defaults to GET).
@@ -31,7 +31,7 @@ The following example illustrates how to use http.request to make a request to a
3131
```javascript
3232
var jsResponse;
3333
var http = require('http');
34-
http.request('http://scriptcraftjs.org/sample.json',function(responseCode, responseBody){
34+
http.request('https://scriptcraftjs.org/sample.json',function(responseCode, responseBody){
3535
jsResponse = JSON.parse( responseBody );
3636
});
3737
```

‎src/main/js/modules/sc-mqtt.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This module can only be used if the separate `sc-mqtt.jar` file is
1111
present in the CraftBukkit classpath. To use this module, you should
1212
...
1313
14-
1. Download sc-mqtt.jar from <http://scriptcraftjs.org/download/extras/>
14+
1. Download sc-mqtt.jar from <https://scriptcraftjs.org/download/extras/>
1515
2. Save the file to the same directory where craftbukkit.jar resides.
1616
3. Create a new batch file (windows-only) called
1717
craftbukkit-sc-mqtt.bat and edit it to include the following

0 commit comments

Comments
 (0)