Skip to content
This repository was archived by the owner on Mar 4, 2024. It is now read-only.

Commit f02533a

Browse files
committed
atk: Use https for all links
Hi all This is a followup to gtk-rs/gtk#1054 Cheers, Stefan
1 parent 61b466b commit f02533a

File tree

11 files changed

+13
-13
lines changed

11 files changed

+13
-13
lines changed

COPYRIGHT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Zach Oakes <[email protected]>
6060
Zach Ploskey <[email protected]>
6161

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

6565
This project provides interoperability with various GNOME libraries but doesn't
6666
distribute any parts of them. Distributing compiled libraries and executables

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
2-
documentation = "http://gtk-rs.org/docs/atk/"
2+
documentation = "https://gtk-rs.org/docs/atk/"
33
categories = ["api-bindings", "gui"]
44
license = "MIT"
55
description = "Rust bindings for the ATK library"
66
name = "atk"
7-
homepage = "http://gtk-rs.org/"
7+
homepage = "https://gtk-rs.org/"
88
authors = ["The Gtk-rs Project Developers"]
99
readme = "README.md"
1010
version = "0.9.0"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# atk [![Build Status](https://travis-ci.org/gtk-rs/atk.png?branch=master)](https://travis-ci.org/gtk-rs/atk) [![Build status](https://ci.appveyor.com/api/projects/status/gaybdnw603c942a0?svg=true)](https://ci.appveyor.com/project/GuillaumeGomez/atk) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/gtk-rs/atk)
22

3-
[Project site](http://gtk-rs.org/) | [Online documentation](http://gtk-rs.org/docs/)
3+
[Project site](https://gtk-rs.org/) | [Online documentation](https://gtk-rs.org/docs-src/)
44

55
__Rust__ bindings and wrappers for __Atk__.
66

src/attribute.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use atk_sys;
66
use glib::translate::*;

src/attribute_set.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use glib;
66

src/editable_text.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use atk_sys;
66
use glib::object::IsA;

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// Copyright 2013-2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
//! # ATK bindings
66
//!
77
//! This library contains safe Rust bindings for [ATK](https://developer.gnome.org/atk/). It's
8-
//! a part of [Gtk-rs](http://gtk-rs.org/).
8+
//! a part of [Gtk-rs](https://gtk-rs.org/).
99
1010
#![cfg_attr(feature = "cargo-clippy", allow(let_unit_value))]
1111
#![cfg_attr(feature = "cargo-clippy", allow(new_without_default))]

src/prelude.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2015, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
//! Traits intended for blanket imports.
66

src/rt.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2015, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
/// No-op.
66
macro_rules! assert_initialized_main_thread {

src/table.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use atk_sys;
66
use glib::object::IsA;

src/text_rectangle.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2013-2018, The Gtk-rs Project Developers.
22
// See the COPYRIGHT file at the top-level directory of this distribution.
3-
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
3+
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
44

55
use atk_sys;
66
use glib::translate::*;

0 commit comments

Comments
 (0)