Skip to content

Commit

Permalink
Change relevant URLs from HTTP to HTTPS
Browse files Browse the repository at this point in the history
The helenos.org web site (including many of the subdomains) is
accessible using HTTPS. While the redirections from HTTP are available,
HTTPS is generally prefered now.

Note that switching to HTTPS unconditionally in all cases is not
possible yet due to various limitations.
  • Loading branch information
martin-decky committed Aug 21, 2024
1 parent f8cb1bc commit 14b2ac7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ via message passing. A failure or crash of one component does not
directly harm others. HelenOS is therefore flexible, modular,
extensible, fault tolerant and easy to understand.

![screenshot](http://www.helenos.org/raw-attachment/wiki/Screenshots/gui-14.1-aio.png "Screenshot")
![screenshot](https://www.helenos.org/raw-attachment/wiki/Screenshots/gui-14.1-aio.png "Screenshot")

HelenOS aims to be compatible with the C11 and C++14 standards, but does not
aspire to be a clone of any existing operating system and trades compatibility
Expand All @@ -18,10 +18,10 @@ to order specifically for HelenOS so that its essential parts can stay free of
adaptation layers, glue code, franken-components and the maintenance burden
incurred by them.

* [Website](http://helenos.org)
* [Wiki](http://helenos.org/wiki)
* [Tickets](http://www.helenos.org/report/1)
* [How to contribute](http://www.helenos.org/wiki/HowToContribute)
* [Website](https://helenos.org)
* [Wiki](https://helenos.org/wiki)
* [Tickets](https://www.helenos.org/report/1)
* [How to contribute](https://www.helenos.org/wiki/HowToContribute)

## Portability

Expand Down Expand Up @@ -125,14 +125,14 @@ $ ./tools/ew.py
```

For additional information about running HelenOS, see
[UsersGuide/RunningInQEMU](http://www.helenos.org/wiki/UsersGuide/RunningInQEMU) or
[UsersGuide/RunningInVirtualBox](http://www.helenos.org/wiki/UsersGuide/RunningInVirtualBox) or
[UsersGuide/RunningInQEMU](https://www.helenos.org/wiki/UsersGuide/RunningInQEMU) or
[UsersGuide/RunningInVirtualBox](https://www.helenos.org/wiki/UsersGuide/RunningInVirtualBox) or
see the files in tools/conf.

## Contributing

There is a whole section of our wiki devoted to
[how to contribute to HelenOS](http://www.helenos.org/wiki/HowToContribute).
[how to contribute to HelenOS](https://www.helenos.org/wiki/HowToContribute).
But to highlight the most important points, you should subscribe to
our mailing list and if you have an idea for contributing, discuss it
with us first so that we can agree upon the design.
Expand Down
2 changes: 1 addition & 1 deletion tools/travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
# too).
#
# [1] https://travis-ci.org/
# [2] http://www.helenos.org/wiki/CI
# [2] https://www.helenos.org/wiki/CI
#

H_ARCH_CONFIG_CROSS_TARGET=2
Expand Down
2 changes: 1 addition & 1 deletion uspace/app/bdsh/cmds/modules/help/help.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ static void help_survival(void)

"This is but a small glimpse of what you can do with HelenOS. "
"To learn more please point your browser to the HelenOS User's "
"Guide: http://trac.helenos.org/wiki/UsersGuide\n\n",
"Guide: https://www.helenos.org/wiki/UsersGuide\n\n",
ALIGN_LEFT);
}

Expand Down
2 changes: 1 addition & 1 deletion uspace/app/getterm/welcome.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
void welcome_msg_print(void)
{
printf("Welcome to HelenOS!\n");
printf("http://www.helenos.org/\n\n");
printf("https://www.helenos.org/\n\n");
printf("Type 'help' [Enter] to see a few survival tips.\n\n");
}

Expand Down

0 comments on commit 14b2ac7

Please sign in to comment.