Skip to content

Commit 2e9dfcb

Browse files
Merge pull request #211 from spring-operator/polish-urls-remaining-master
URL Cleanup
2 parents 2e11e9e + 5436636 commit 2e9dfcb

File tree

48 files changed

+185
-185
lines changed

Some content is hidden

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

48 files changed

+185
-185
lines changed

Diff for: Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ all:
2424
# this commands:
2525
# cd /usr/src
2626
# apt-get -y install libncurses-dev libssl-dev
27-
# [ -e otp_src_R14B03.tar.gz ] || wget http://www.erlang.org/download/otp_src_R14B03.tar.gz
27+
# [ -e otp_src_R14B03.tar.gz ] || wget https://www.erlang.org/download/otp_src_R14B03.tar.gz
2828
# [ -e otp_src_R14B03 ] || tar xzf otp_src_R14B03.tar.gz
2929
# cd otp_src_R14B03/
3030
# ./configure
@@ -41,8 +41,8 @@ test: setup
4141
test-travisci: setup-travisci
4242
SLOWNESS=4 RUBY=ruby python travisci.py
4343

44-
RABBITVER:=$(shell curl -s "http://www.rabbitmq.com/releases/rabbitmq-server/" | grep -oE '([0-9\.]{5,})' | tail -n 1)
45-
R=http://www.rabbitmq.com/releases
44+
RABBITVER:=$(shell curl -s "https://www.rabbitmq.com/releases/rabbitmq-server/" | grep -oE '([0-9\.]{5,})' | tail -n 1)
45+
R=https://www.rabbitmq.com/releases
4646

4747
# Default value assumes CI environment
4848
RUBY?=ruby1.9.1

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# RabbitMQ Tutorials
22

3-
This project contains code for [RabbitMQ tutorials](http://www.rabbitmq.com/getstarted.html) with
3+
This project contains code for [RabbitMQ tutorials](https://www.rabbitmq.com/getstarted.html) with
44
their ports to various languages.
55

6-
This repository only contains runnable code. Please consult [tutorials on the site](http://www.rabbitmq.com/getstarted.html)
7-
to learn more about [the concepts](http://www.rabbitmq.com/getstarted.html), requirements, supported client library version and so on.
6+
This repository only contains runnable code. Please consult [tutorials on the site](https://www.rabbitmq.com/getstarted.html)
7+
to learn more about [the concepts](https://www.rabbitmq.com/getstarted.html), requirements, supported client library version and so on.
88

99
A please check out the rest of [RabbitMQ documentation](https://www.rabbitmq.com/documentation.html)!
1010

Diff for: clojure/README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,44 @@
11
# Clojure code for RabbitMQ tutorials
22

33
Here you can find Clojure code examples from
4-
[RabbitMQ tutorials](http://www.rabbitmq.com/getstarted.html).
4+
[RabbitMQ tutorials](https://www.rabbitmq.com/getstarted.html).
55

66
## Requirements
77

8-
To run this code you need [Leiningen](http://leiningen.org).
8+
To run this code you need [Leiningen](https://leiningen.org).
99

1010
These tutorials will work on JDK 6 through 8 (Oracle or OpenJDK).
1111

1212
## Code
1313

1414
Code examples are executed via `lein run`:
1515

16-
[Tutorial one: "Hello World!"](http://www.rabbitmq.com/tutorial-one-java.html):
16+
[Tutorial one: "Hello World!"](https://www.rabbitmq.com/tutorial-one-java.html):
1717

1818
lein run -m rabbitmq.tutorials.send
1919
lein run -m rabbitmq.tutorials.receive
2020

21-
[Tutorial two: Work Queues](http://www.rabbitmq.com/tutorial-two-java.html):
21+
[Tutorial two: Work Queues](https://www.rabbitmq.com/tutorial-two-java.html):
2222

2323
lein run -m rabbitmq.tutorials.new-task
2424
lein run -m rabbitmq.tutorials.worker
2525

26-
[Tutorial three: Publish/Subscribe](http://www.rabbitmq.com/tutorial-three-java.html)
26+
[Tutorial three: Publish/Subscribe](https://www.rabbitmq.com/tutorial-three-java.html)
2727

2828
lein run -m rabbitmq.tutorials.receive-logs
2929
lein run -m rabbitmq.tutorials.emit-log
3030

31-
[Tutorial four: Routing](http://www.rabbitmq.com/tutorial-four-java.html)
31+
[Tutorial four: Routing](https://www.rabbitmq.com/tutorial-four-java.html)
3232

3333
lein run -m rabbitmq.tutorials.receive-logs-direct
3434
lein run -m rabbitmq.tutorials.emit-log-direct info
3535

36-
[Tutorial five: Topics](http://www.rabbitmq.com/tutorial-five-java.html)
36+
[Tutorial five: Topics](https://www.rabbitmq.com/tutorial-five-java.html)
3737

3838
lein run -m rabbitmq.tutorials.receive-logs-topic
3939
lein run -m rabbitmq.tutorials.emit-log-topic info
4040

41-
[Tutorial six: RPC](http://www.rabbitmq.com/tutorial-six-java.html)
41+
[Tutorial six: RPC](https://www.rabbitmq.com/tutorial-six-java.html)
4242

4343
lein run -m rabbitmq.tutorials.rpc-server
4444
lein run -m rabbitmq.tutorials.rpc-client

Diff for: clojure/project.clj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(defproject com.rabbitmq/tutorials "1.0.0-SNAPSHOT"
22
:description "RabbitMQ tutorials using Langohr"
3-
:url "http://github.com/rabbitmq/rabbitmq-tutorials"
3+
:url "https://github.com/rabbitmq/rabbitmq-tutorials"
44
:license {:name "Eclipse Public License"
5-
:url "http://www.eclipse.org/legal/epl-v10.html"}
5+
:url "https://www.eclipse.org/legal/epl-v10.html"}
66
:dependencies [[org.clojure/clojure "1.6.0"]
77
[com.novemberain/langohr "3.3.0"]])

Diff for: common-lisp/README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Common Lisp code for RabbitMQ tutorials
22

33
Here you can find Common Lisp code examples from
4-
[RabbitMQ tutorials](http://cl-rabbit.io/cl-bunny/tutorials/).
4+
[RabbitMQ tutorials](https://cl-rabbit.io/cl-bunny/tutorials/).
55

66
## Requirements
77

8-
To run this code you need [Cl-Bunny](http://cl-rabbit.io/cl-bunny).
8+
To run this code you need [Cl-Bunny](https://cl-rabbit.io/cl-bunny).
99

1010
You can install it via Quicklisp:
1111

@@ -17,34 +17,34 @@ All our examples are in fact executable sbcl scripts. You can run them from comm
1717

1818
## Code
1919

20-
[Tutorial one: "Hello World!"](http://cl-rabbit.io/cl-bunny/tutorials/tutorial-one-cl.html):
20+
[Tutorial one: "Hello World!"](https://cl-rabbit.io/cl-bunny/tutorials/tutorial-one-cl.html):
2121

2222
./send.lisp
2323
./receive.lisp
2424

25-
[Tutorial two: Work Queues](http://cl-rabbit.io/cl-bunny/tutorials/tutorial-two-cl.html):
25+
[Tutorial two: Work Queues](https://cl-rabbit.io/cl-bunny/tutorials/tutorial-two-cl.html):
2626

2727
./new-task.lisp
2828
./worker.lisp
2929

30-
[Tutorial three: Publish/Subscribe](http://cl-rabbit.io/cl-bunny/tutorials/tutorial-three-cl.html)
30+
[Tutorial three: Publish/Subscribe](https://cl-rabbit.io/cl-bunny/tutorials/tutorial-three-cl.html)
3131

3232
./receive-logs.lisp
3333
./emit-log.lisp
3434

35-
[Tutorial four: Routing](http://cl-rabbit.io/cl-bunny/tutorials/tutorial-four-cl.html)
35+
[Tutorial four: Routing](https://cl-rabbit.io/cl-bunny/tutorials/tutorial-four-cl.html)
3636

3737
./receive-logs-direct.lisp
3838
./emit-log-direct.lisp
3939

40-
[Tutorial five: Topics](http://cl-rabbit.io/cl-bunny/tutorials/tutorial-five-cl.html)
40+
[Tutorial five: Topics](https://cl-rabbit.io/cl-bunny/tutorials/tutorial-five-cl.html)
4141

4242
./receive-logs-topic.lisp
4343
./emit-log-topic.lisp
4444

45-
[Tutorial six: RPC](http://cl-rabbit.io/cl-bunny/tutorials/tutorial-six-cl.html)
45+
[Tutorial six: RPC](https://cl-rabbit.io/cl-bunny/tutorials/tutorial-six-cl.html)
4646

4747
./rpc-server.lisp
4848
./rpc-client.lisp
4949

50-
To learn more, visit [Cl-Bunny documentation](http://cl-rabbit.io/cl-bunny) site.
50+
To learn more, visit [Cl-Bunny documentation](https://cl-rabbit.io/cl-bunny) site.

Diff for: common-lisp/rpc-server.lisp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ sbcl --noinform --noprint <<EOF
1212
(fast-io:write64-be val obuffer)
1313
(fast-io:finish-output-buffer obuffer)))
1414
15-
;; http://www.cliki.net/fibonacci
15+
;; https://www.cliki.net/fibonacci
1616
(defun fibonacci (n)
1717
"Successive squaring method from SICP"
1818
(check-type n (integer 0 *))

Diff for: dart/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Dart code for RabbitMQ tutorials
22

33
Here you can find an [Dart](https://www.dartlang.org/) port of
4-
[RabbitMQ tutorials](http://www.rabbitmq.com/getstarted.html).
4+
[RabbitMQ tutorials](https://www.rabbitmq.com/getstarted.html).
55

66

77
## Requirements

Diff for: dotnet-visual-studio/1_Receive/1_Receive.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
9494
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
9595
<PropertyGroup>
96-
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
96+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see https://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
9797
</PropertyGroup>
9898
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
9999
</Target>

Diff for: dotnet-visual-studio/1_Send/1_Send.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
6262
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
6363
<PropertyGroup>
64-
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
64+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see https://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
6565
</PropertyGroup>
6666
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
6767
</Target>

Diff for: dotnet-visual-studio/2_NewTask/2_NewTask.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
6262
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
6363
<PropertyGroup>
64-
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
64+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see https://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
6565
</PropertyGroup>
6666
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
6767
</Target>

Diff for: dotnet-visual-studio/2_Worker/2_Worker.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
6262
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
6363
<PropertyGroup>
64-
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
64+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see https://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
6565
</PropertyGroup>
6666
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
6767
</Target>

Diff for: dotnet-visual-studio/3_EmitLog/3_EmitLog.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
6262
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
6363
<PropertyGroup>
64-
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
64+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see https://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
6565
</PropertyGroup>
6666
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
6767
</Target>

Diff for: dotnet-visual-studio/3_ReceiveLogs/3_ReceiveLogs.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
6262
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
6363
<PropertyGroup>
64-
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
64+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see https://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
6565
</PropertyGroup>
6666
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
6767
</Target>

Diff for: dotnet-visual-studio/4_EmitLogDirect/4_EmitLogDirect.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
6262
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
6363
<PropertyGroup>
64-
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
64+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see https://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
6565
</PropertyGroup>
6666
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
6767
</Target>

Diff for: dotnet-visual-studio/4_ReceiveLogsDirect/4_ReceiveLogsDirect.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
6262
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
6363
<PropertyGroup>
64-
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
64+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see https://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
6565
</PropertyGroup>
6666
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
6767
</Target>

Diff for: dotnet-visual-studio/5_EmitLogTopic/5_EmitLogTopic.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
6262
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
6363
<PropertyGroup>
64-
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
64+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see https://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
6565
</PropertyGroup>
6666
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
6767
</Target>

Diff for: dotnet-visual-studio/5_ReceiveLogsTopic/5_ReceiveLogsTopic.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
6262
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
6363
<PropertyGroup>
64-
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
64+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see https://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
6565
</PropertyGroup>
6666
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
6767
</Target>

Diff for: dotnet-visual-studio/6_RPCClient/6_RPCClient.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
6363
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
6464
<PropertyGroup>
65-
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
65+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see https://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
6666
</PropertyGroup>
6767
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
6868
</Target>

Diff for: dotnet-visual-studio/6_RPCServer/6_RPCServer.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
6262
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
6363
<PropertyGroup>
64-
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
64+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see https://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
6565
</PropertyGroup>
6666
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
6767
</Target>

Diff for: dotnet-visual-studio/README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# .NET C# Visual Studio Solution for RabbitMQ tutorials
22

33
Here you can find the C# code examples for [RabbitMQ
4-
tutorials](http://www.rabbitmq.com/getstarted.html) compiled
4+
tutorials](https://www.rabbitmq.com/getstarted.html) compiled
55
into a Visual Studio solution.
66

77
To successfully use the examples you will need a running RabbitMQ server.
@@ -13,32 +13,32 @@ time opening it in order to get the .NET RabbitMQ dependency from NuGet.
1313

1414
## Code
1515

16-
#### [Tutorial 1: "Hello World!"](http://www.rabbitmq.com/tutorial-one-dotnet.html)
16+
#### [Tutorial 1: "Hello World!"](https://www.rabbitmq.com/tutorial-one-dotnet.html)
1717

1818
- 1_Receive
1919
- 1_Send
2020

21-
#### [Tutorial 2: Work Queues](http://www.rabbitmq.com/tutorial-two-dotnet.html)
21+
#### [Tutorial 2: Work Queues](https://www.rabbitmq.com/tutorial-two-dotnet.html)
2222

2323
- 2_Worker
2424
- 2_NewTask
2525

26-
#### [Tutorial 3: Publish/Subscribe](http://www.rabbitmq.com/tutorial-three-dotnet.html)
26+
#### [Tutorial 3: Publish/Subscribe](https://www.rabbitmq.com/tutorial-three-dotnet.html)
2727

2828
- 3_ReceiveLogs
2929
- 3_EmitLog
3030

31-
#### [Tutorial 4: Routing](http://www.rabbitmq.com/tutorial-four-dotnet.html)
31+
#### [Tutorial 4: Routing](https://www.rabbitmq.com/tutorial-four-dotnet.html)
3232

3333
- 4_ReceiveLogsDirect
3434
- 4_EmitLogDirect
3535

36-
#### [Tutorial 5: Topics](http://www.rabbitmq.com/tutorial-five-dotnet.html)
36+
#### [Tutorial 5: Topics](https://www.rabbitmq.com/tutorial-five-dotnet.html)
3737

3838
- 5_ReceiveLogsTopic
3939
- 5_EmitLogTopic
4040

41-
#### [Tutorial 6: RPC](http://www.rabbitmq.com/tutorial-six-dotnet.html)
41+
#### [Tutorial 6: RPC](https://www.rabbitmq.com/tutorial-six-dotnet.html)
4242

4343
- 6_RPCServer
4444
- 6_RPCClient

0 commit comments

Comments
 (0)