Skip to content

Commit

Permalink
Use HTTPS links
Browse files Browse the repository at this point in the history
Update various links from HTTP to HTTPS.
  • Loading branch information
martincostello committed Mar 4, 2024
1 parent deb08fe commit 500ab3d
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ If you find a bug, have a feature request or even want to contribute an enhancem

## If you find what looks like a bug:

* Check the [GitHub issue tracker](http://github.com/justeattakeaway/JustSaying/issues/ "JustSaying issues") to see if anyone else has reported the same issue.
* Check the [GitHub issue tracker](https://github.com/justeattakeaway/JustSaying/issues/ "JustSaying issues") to see if anyone else has reported the same issue.
* Make sure you are using the latest version of JustSaying
* If you are still having problems then [create an issue](https://github.com/justeattakeaway/JustSaying/issues/new/choose) with enough information so that it can be reproduced and diagnosed

Expand Down
6 changes: 3 additions & 3 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ members of the project's leadership.
## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
available at [http://contributor-covenant.org/version/1/4][version]
available at [https://contributor-covenant.org/version/1/4][version]

[homepage]: http://contributor-covenant.org
[version]: http://contributor-covenant.org/version/1/4/
[homepage]: https://contributor-covenant.org
[version]: https://contributor-covenant.org/version/1/4/
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
https://www.apache.org/licenses/

TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

Expand Down Expand Up @@ -192,7 +192,7 @@
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
Expand Down
7 changes: 4 additions & 3 deletions docs/Documentation_generation.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Documentation Generation

## PlantUML
> PlantUML is used to draw UML diagrams, using a simple and human readable text description. [plantuml.com](http://plantuml.com/)

> PlantUML is used to draw UML diagrams, using a simple and human readable text description. [plantuml.com](https://plantuml.com/)
## Integration with Visual Studio Code

Expand Down Expand Up @@ -36,5 +37,5 @@
- All images in `/docs` will be regenerated

## Further reading
- Further reading and examples available at:
- https://www.planttext.com/

- Further reading and examples available at <https://www.planttext.com>
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"sslPort": 44386
}
},
"$schema": "http://json.schemastore.org/launchsettings.json",
"$schema": "https://json.schemastore.org/launchsettings.json",
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
Expand Down
22 changes: 11 additions & 11 deletions src/JustSaying/Messaging/MessageAttributeValue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ namespace JustSaying.Messaging;
/// <summary>
/// The user-specified message attribute value. For string data types, the value attribute
/// has the same restrictions on the content as the message body. For more information,
/// see <a href="http://docs.aws.amazon.com/sns/latest/api/API_Publish.html">Publish</a> in the AWS docs.
///
///
/// see <a href="https://docs.aws.amazon.com/sns/latest/api/API_Publish.html">Publish</a> in the AWS docs.
///
///
/// <para>
/// Name, type, and value must not be empty or null. In addition, the message body should
/// not be empty or null. All parts of the message attribute, including name, type, and
/// value, are included in the message size restriction, which is currently 256 KB (262,144
/// bytes). For more information, see <a href="http://docs.aws.amazon.com/sns/latest/dg/SNSMessageAttributes.html">Using
/// bytes). For more information, see <a href="https://docs.aws.amazon.com/sns/latest/dg/SNSMessageAttributes.html">Using
/// Amazon SNS Message Attributes</a> in the AWS docs.
/// </para>
/// </summary>
public class MessageAttributeValue
{
/// <summary>
/// Gets and sets the property BinaryValue.
/// Gets and sets the property BinaryValue.
/// <para>
/// Binary type attributes can store any binary data, for example, compressed data, encrypted
/// data, or images.
Expand All @@ -31,20 +31,20 @@ public class MessageAttributeValue
public IReadOnlyCollection<byte> BinaryValue { get; set; }

/// <summary>
/// Gets and sets the property StringValue.
/// Gets and sets the property StringValue.
/// <para>
/// Strings are Unicode with UTF8 binary encoding. For a list of code values, see <a href="http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters">http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters</a>.
/// </para>
/// Strings are Unicode with UTF8 binary encoding. For a list of code values, see <a href="https://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters">https://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters</a>.
/// /// </para>
/// </summary>
public string StringValue { get; set; }

/// <summary>
/// Gets and sets the property DataType.
/// Gets and sets the property DataType.
/// <para>
/// Amazon SNS supports the following logical data types: String, String.Array, Number,
/// and Binary. For more information, see <a href="http://docs.aws.amazon.com/sns/latest/dg/SNSMessageAttributes.html#SNSMessageAttributes.DataTypes">Message
/// and Binary. For more information, see <a href="https://docs.aws.amazon.com/sns/latest/dg/SNSMessageAttributes.html#SNSMessageAttributes.DataTypes">Message
/// Attribute Data Types in the AWS docs</a>.
/// </para>
/// </summary>
public string DataType { get; set; }
}
}

0 comments on commit 500ab3d

Please sign in to comment.