aboutsummaryrefslogtreecommitdiffstats
path: root/components/selectors
diff options
context:
space:
mode:
authorJan Andre Ikenmeyer <jan@ikenmeyer.eu>2018-11-19 14:47:27 +0100
committerJan Andre Ikenmeyer <jan@ikenmeyer.eu>2018-11-19 14:47:27 +0100
commit1d6fe65401383bd01d30368d32eedcd908fa79ad (patch)
tree903ebb4fb5ebd492dc63d4f21c522b4f23a85d7e /components/selectors
parenta1a14459c141afc6ac6771b8a6c9ca374537edf2 (diff)
downloadservo-1d6fe65401383bd01d30368d32eedcd908fa79ad.tar.gz
servo-1d6fe65401383bd01d30368d32eedcd908fa79ad.zip
Update MPL license to https (part 4)
Diffstat (limited to 'components/selectors')
-rw-r--r--components/selectors/attr.rs2
-rw-r--r--components/selectors/bloom.rs2
-rw-r--r--components/selectors/build.rs2
-rw-r--r--components/selectors/builder.rs2
-rw-r--r--components/selectors/context.rs2
-rw-r--r--components/selectors/lib.rs2
-rw-r--r--components/selectors/matching.rs2
-rw-r--r--components/selectors/nth_index_cache.rs2
-rw-r--r--components/selectors/parser.rs2
-rw-r--r--components/selectors/sink.rs2
-rw-r--r--components/selectors/tree.rs2
-rw-r--r--components/selectors/visitor.rs2
12 files changed, 12 insertions, 12 deletions
diff --git a/components/selectors/attr.rs b/components/selectors/attr.rs
index 07b97a87a56..38612f57b64 100644
--- a/components/selectors/attr.rs
+++ b/components/selectors/attr.rs
@@ -1,6 +1,6 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
use crate::parser::SelectorImpl;
use cssparser::ToCss;
diff --git a/components/selectors/bloom.rs b/components/selectors/bloom.rs
index f868fc7df16..738894ebf22 100644
--- a/components/selectors/bloom.rs
+++ b/components/selectors/bloom.rs
@@ -1,6 +1,6 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
//! Counting and non-counting Bloom filters tuned for use as ancestor filters
//! for selector matching.
diff --git a/components/selectors/build.rs b/components/selectors/build.rs
index 1521ce66f2d..cc841227df5 100644
--- a/components/selectors/build.rs
+++ b/components/selectors/build.rs
@@ -1,6 +1,6 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
extern crate phf_codegen;
diff --git a/components/selectors/builder.rs b/components/selectors/builder.rs
index 4f1f09890aa..e653af58fd5 100644
--- a/components/selectors/builder.rs
+++ b/components/selectors/builder.rs
@@ -1,6 +1,6 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
//! Helper module to build up a selector safely and efficiently.
//!
diff --git a/components/selectors/context.rs b/components/selectors/context.rs
index b20b4d47582..3ecd4dd82d5 100644
--- a/components/selectors/context.rs
+++ b/components/selectors/context.rs
@@ -1,6 +1,6 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
use crate::attr::CaseSensitivity;
use crate::bloom::BloomFilter;
diff --git a/components/selectors/lib.rs b/components/selectors/lib.rs
index 66d8898cc19..02c34f4b7e7 100644
--- a/components/selectors/lib.rs
+++ b/components/selectors/lib.rs
@@ -1,6 +1,6 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
// Make |cargo bench| work.
#![cfg_attr(feature = "bench", feature(test))]
diff --git a/components/selectors/matching.rs b/components/selectors/matching.rs
index 7fd7fc87db7..d8d083d7b28 100644
--- a/components/selectors/matching.rs
+++ b/components/selectors/matching.rs
@@ -1,6 +1,6 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
use crate::attr::{AttrSelectorOperation, NamespaceConstraint, ParsedAttrSelectorOperation};
use crate::bloom::{BloomFilter, BLOOM_HASH_MASK};
diff --git a/components/selectors/nth_index_cache.rs b/components/selectors/nth_index_cache.rs
index a3f0e64d76f..8d1d479274f 100644
--- a/components/selectors/nth_index_cache.rs
+++ b/components/selectors/nth_index_cache.rs
@@ -1,6 +1,6 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
use crate::tree::OpaqueElement;
use fxhash::FxHashMap;
diff --git a/components/selectors/parser.rs b/components/selectors/parser.rs
index ff5a4ff08b3..e8e98dbe38e 100644
--- a/components/selectors/parser.rs
+++ b/components/selectors/parser.rs
@@ -1,6 +1,6 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
use crate::attr::{AttrSelectorOperator, AttrSelectorWithOptionalNamespace};
use crate::attr::{NamespaceConstraint, ParsedAttrSelectorOperation};
diff --git a/components/selectors/sink.rs b/components/selectors/sink.rs
index 3c57aa143c4..dcdd7ff259d 100644
--- a/components/selectors/sink.rs
+++ b/components/selectors/sink.rs
@@ -1,6 +1,6 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
//! Small helpers to abstract over different containers.
#![deny(missing_docs)]
diff --git a/components/selectors/tree.rs b/components/selectors/tree.rs
index 56cbb9dbec7..9e606ab9124 100644
--- a/components/selectors/tree.rs
+++ b/components/selectors/tree.rs
@@ -1,6 +1,6 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
//! Traits that nodes must implement. Breaks the otherwise-cyclic dependency
//! between layout and style.
diff --git a/components/selectors/visitor.rs b/components/selectors/visitor.rs
index 86b9c2fb0db..60d118d3101 100644
--- a/components/selectors/visitor.rs
+++ b/components/selectors/visitor.rs
@@ -1,6 +1,6 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
//! Visitor traits for selectors.