Skip to content

Commit

Permalink
https links where possible.
Browse files Browse the repository at this point in the history
  • Loading branch information
ralight committed Mar 30, 2019
1 parent 7e49d91 commit ec3fd36
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 12 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The Mosquitto project has been created to provide a light weight, open-source
implementation, of an MQTT broker to allow new, existing, and emerging
applications for Machine-to-Machine (M2M) and Internet of Things (IoT).

- <http:https://mosquitto.org/>
- <https:https://mosquitto.org/>
- <https://projects.eclipse.org/projects/technology.mosquitto>


Expand All @@ -19,7 +19,7 @@ Source

The Mosquitto code is stored in a git repository.

- http:https://github.com/eclipse/mosquitto
- https:https://github.com/eclipse/mosquitto

You can contribute bugfixes and new features by sending pull requests through GitHub.

Expand Down
2 changes: 1 addition & 1 deletion client/sub_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ void print_usage(void)
printf(" socks5h:https://[username[:password]@]hostname[:port]\n");
printf(" Only \"none\" and \"username\" authentication is supported.\n");
#endif
printf("\nSee http:https://mosquitto.org/ for more information.\n\n");
printf("\nSee https:https://mosquitto.org/ for more information.\n\n");
}

int main(int argc, char *argv[])
Expand Down
2 changes: 1 addition & 1 deletion man/manpage.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<xsl:param name="man.endnotes.list.enabled">0</xsl:param>
<xsl:param name="man.endnotes.are.numbered">0</xsl:param>
<!-- But if we do, set a base url for the relative links. -->
<xsl:param name="man.base.url.for.relative.links">http:https://mosquitto.org/man/</xsl:param>
<xsl:param name="man.base.url.for.relative.links">https:https://mosquitto.org/man/</xsl:param>
<!-- Don't output filename when generating. -->
<xsl:param name="man.output.quietly" select="1"></xsl:param>
<!-- Generate ansi style function synopses. -->
Expand Down
15 changes: 8 additions & 7 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,20 @@ subscribing.
See the following links for more information on MQTT:

- Community page: <http:https://mqtt.org/>
- MQTT v3.1.1 standard: <http:https://docs.oasis-open.org/mqtt/mqtt/v3.1.1/mqtt-v3.1.1.html>
- MQTT v3.1.1 standard: <https://docs.oasis-open.org/mqtt/mqtt/v3.1.1/mqtt-v3.1.1.html>
- MQTT v5.0 standard: <https://docs.oasis-open.org/mqtt/mqtt/v5.0/mqtt-v5.0.html>

Mosquitto project information is available at the following locations:

- Main homepage: <http:https://mosquitto.org/>
- Main homepage: <https:https://mosquitto.org/>
- Find existing bugs or submit a new bug: <https://github.com/eclipse/mosquitto/issues>
- Source code repository: <https://github.com/eclipse/mosquitto>

There is also a public test server available at <http:https://test.mosquitto.org/>
There is also a public test server available at <https:https://test.mosquitto.org/>

## Installing

See <http:https://mosquitto.org/download/> for details on installing binaries for
See <https:https://mosquitto.org/download/> for details on installing binaries for
various platforms.

## Quick start
Expand All @@ -44,17 +45,17 @@ And to publish a message:
## Documentation

Documentation for the broker, clients and client library API can be found in
the man pages, which are available online at <http:https://mosquitto.org/man/>. There
the man pages, which are available online at <https:https://mosquitto.org/man/>. There
are also pages with an introduction to the features of MQTT, the
`mosquitto_passwd` utility for dealing with username/passwords, and a
description of the configuration file options available for the broker.

Detailed client library API documentation can be found at <http:https://mosquitto.org/api/>
Detailed client library API documentation can be found at <https:https://mosquitto.org/api/>

## Building from source

To build from source the recommended route for end users is to download the
archive from <http:https://mosquitto.org/download/>.
archive from <https:https://mosquitto.org/download/>.

On Windows and Mac, use `cmake` to build. On other platforms, just run `make`
to build. For Windows, see also `readme-windows.md`.
Expand Down
2 changes: 1 addition & 1 deletion src/mosquitto_passwd.c
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ void print_usage(void)
printf(" -c : create a new password file. This will overwrite existing files.\n");
printf(" -D : delete the username rather than adding/updating its password.\n");
printf(" -U : update a plain text password file to use hashed passwords.\n");
printf("\nSee http:https://mosquitto.org/ for more information.\n\n");
printf("\nSee https:https://mosquitto.org/ for more information.\n\n");
}

int output_new_password(FILE *fptr, const char *username, const char *password)
Expand Down

0 comments on commit ec3fd36

Please sign in to comment.