Skip to content
This repository has been archived by the owner on Jun 8, 2021. It is now read-only.

Use https for all links #331

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion COPYRIGHT
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Zach Oakes <[email protected]>
Zach Ploskey <[email protected]>

The Gtk-rs Project is licensed under the MIT license, see the LICENSE file
or <http://opensource.org/licenses/MIT>.
or <https://opensource.org/licenses/MIT>.

This project provides interoperability with various GNOME libraries but doesn't
distribute any parts of them. Distributing compiled libraries and executables
Expand Down
2 changes: 1 addition & 1 deletion src/bin/cairo_png.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
//!
//! This sample demonstrates how to create `ImageSurface`, draw on it
//! and then save result to PNG file.
//! Analog of C# example http://www.mgsloan.com/cairo_tut/stroke.cs
//! Analog of C# example https://web.archive.org/web/20130729155927/http://www.mgsloan.com/cairo_tut/stroke.cs
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You failed your replace here. ;)

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sadly the original site has been restructured and the only reference I could find was in the Web Archive.
But the archive URL is with TLS 🙃


extern crate cairo;

Expand Down
2 changes: 1 addition & 1 deletion src/bin/gtktest.glade
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<property name="can_focus">False</property>
<property name="type_hint">dialog</property>
<property name="program_name">Glade</property>
<property name="website">http://gtk-rs.org</property>
<property name="website">https://gtk-rs.org</property>
<property name="authors">James T. Kirk
Spock
Leonard McCoy</property>
Expand Down
2 changes: 1 addition & 1 deletion src/bin/menu_bar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ fn build_ui(application: &gtk::Application) {
let p = AboutDialog::new();
p.set_authors(&["gtk-rs developers"]);
p.set_website_label(Some("gtk-rs"));
p.set_website(Some("http://gtk-rs.org"));
p.set_website(Some("https://gtk-rs.org"));
p.set_authors(&["Gtk-rs developers"]);
p.set_title("About!");
p.set_transient_for(Some(&window));
Expand Down
2 changes: 1 addition & 1 deletion src/bin/menu_bar_system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ fn add_actions(
about.connect_activate(clone!(@weak window => move |_, _| {
let p = AboutDialog::new();
p.set_website_label(Some("gtk-rs"));
p.set_website(Some("http://gtk-rs.org"));
p.set_website(Some("https://gtk-rs.org"));
p.set_authors(&["Gtk-rs developers"]);
p.set_title("About!");
p.set_transient_for(Some(&window));
Expand Down