diff --git a/Cargo.toml b/Cargo.toml index da2c35754..907a529fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "url" version = "1.0.0" -authors = [ "Simon Sapin " ] +authors = ["The rust-url developers"] description = "URL library for Rust, based on the WHATWG URL Standard" documentation = "http://servo.github.io/rust-url/url/index.html" diff --git a/LICENSE-MIT b/LICENSE-MIT index 1da3a5f6d..24de6b418 100644 --- a/LICENSE-MIT +++ b/LICENSE-MIT @@ -1,5 +1,4 @@ -Copyright (c) 2006-2009 Graydon Hoare -Copyright (c) 2009-2013 Mozilla Foundation +Copyright (c) 2013-2016 The rust-url developers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated diff --git a/idna/Cargo.toml b/idna/Cargo.toml index cc7a8d228..db532fa45 100644 --- a/idna/Cargo.toml +++ b/idna/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "idna" version = "0.1.0" -authors = ["Simon Sapin "] +authors = ["The rust-url developers"] description = "IDNA (Internationalizing Domain Names in Applications) and Punycode." repository = "https://github.com/servo/rust-url/" license = "MIT/Apache-2.0" diff --git a/idna/src/lib.rs b/idna/src/lib.rs index d53874f35..bdeafe448 100644 --- a/idna/src/lib.rs +++ b/idna/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2016 Simon Sapin. +// Copyright 2016 The rust-url developers. // // Licensed under the Apache License, Version 2.0 or the MIT license diff --git a/idna/src/make_uts46_mapping_table.py b/idna/src/make_uts46_mapping_table.py index 8e090dc76..d4554e5b1 100644 --- a/idna/src/make_uts46_mapping_table.py +++ b/idna/src/make_uts46_mapping_table.py @@ -1,4 +1,4 @@ -# Copyright 2013-2014 Valentin Gosu. +# Copyright 2013-2014 The rust-url developers. # # Licensed under the Apache License, Version 2.0 or the MIT license @@ -11,7 +11,7 @@ # http://www.unicode.org/Public/idna/latest/IdnaMappingTable.txt print('''\ -// Copyright 2013-2014 Valentin Gosu. +// Copyright 2013-2014 The rust-url developers. // // Licensed under the Apache License, Version 2.0 or the MIT license diff --git a/idna/src/punycode.rs b/idna/src/punycode.rs index 9e5f17698..75bb1d6e8 100644 --- a/idna/src/punycode.rs +++ b/idna/src/punycode.rs @@ -1,4 +1,4 @@ -// Copyright 2013 Simon Sapin. +// Copyright 2013 The rust-url developers. // // Licensed under the Apache License, Version 2.0 or the MIT license diff --git a/idna/src/uts46.rs b/idna/src/uts46.rs index 1570ab330..bfe12ff26 100644 --- a/idna/src/uts46.rs +++ b/idna/src/uts46.rs @@ -1,4 +1,4 @@ -// Copyright 2013-2014 Valentin Gosu. +// Copyright 2013-2014 The rust-url developers. // // Licensed under the Apache License, Version 2.0 or the MIT license diff --git a/idna/src/uts46_mapping_table.rs b/idna/src/uts46_mapping_table.rs index eb57dfb27..dd1bdaae8 100644 --- a/idna/src/uts46_mapping_table.rs +++ b/idna/src/uts46_mapping_table.rs @@ -1,4 +1,4 @@ -// Copyright 2013-2014 Valentin Gosu. +// Copyright 2013-2014 The rust-url developers. // // Licensed under the Apache License, Version 2.0 or the MIT license diff --git a/idna/tests/punycode.rs b/idna/tests/punycode.rs index b72c0abaa..67988e80c 100644 --- a/idna/tests/punycode.rs +++ b/idna/tests/punycode.rs @@ -1,4 +1,4 @@ -// Copyright 2013 Simon Sapin. +// Copyright 2013 The rust-url developers. // // Licensed under the Apache License, Version 2.0 or the MIT license diff --git a/idna/tests/uts46.rs b/idna/tests/uts46.rs index 038fdf450..f660559fa 100644 --- a/idna/tests/uts46.rs +++ b/idna/tests/uts46.rs @@ -1,4 +1,4 @@ -// Copyright 2013-2014 Valentin Gosu. +// Copyright 2013-2014 The rust-url developers. // // Licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/encoding.rs b/src/encoding.rs index ed88bb805..0703c788f 100644 --- a/src/encoding.rs +++ b/src/encoding.rs @@ -1,4 +1,4 @@ -// Copyright 2013-2014 Simon Sapin. +// Copyright 2013-2014 The rust-url developers. // // Licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/form_urlencoded.rs b/src/form_urlencoded.rs index 190ba3086..16fbeb516 100644 --- a/src/form_urlencoded.rs +++ b/src/form_urlencoded.rs @@ -1,4 +1,4 @@ -// Copyright 2013-2016 Simon Sapin. +// Copyright 2013-2016 The rust-url developers. // // Licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/host.rs b/src/host.rs index 093cb5ba1..47ebbd79e 100644 --- a/src/host.rs +++ b/src/host.rs @@ -1,4 +1,4 @@ -// Copyright 2013-2016 Simon Sapin. +// Copyright 2013-2016 The rust-url developers. // // Licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/lib.rs b/src/lib.rs index 5960e4d4b..5feba5b01 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2013-2015 Simon Sapin. +// Copyright 2013-2015 The rust-url developers. // // Licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/origin.rs b/src/origin.rs index da2039cf2..a78b939fc 100644 --- a/src/origin.rs +++ b/src/origin.rs @@ -1,4 +1,4 @@ -// Copyright 2016 Simon Sapin. +// Copyright 2016 The rust-url developers. // // Licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/parser.rs b/src/parser.rs index 04dd445fb..39879de5d 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -1,4 +1,4 @@ -// Copyright 2013-2016 Simon Sapin. +// Copyright 2013-2016 The rust-url developers. // // Licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/percent_encoding.rs b/src/percent_encoding.rs index f91402d41..72b47245d 100644 --- a/src/percent_encoding.rs +++ b/src/percent_encoding.rs @@ -1,4 +1,4 @@ -// Copyright 2013-2016 Simon Sapin. +// Copyright 2013-2016 The rust-url developers. // // Licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/quirks.rs b/src/quirks.rs index 55bef503a..3e25ac20f 100644 --- a/src/quirks.rs +++ b/src/quirks.rs @@ -1,4 +1,4 @@ -// Copyright 2016 Simon Sapin. +// Copyright 2016 The rust-url developers. // // Licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/slicing.rs b/src/slicing.rs index 5a303e4ba..926f3c796 100644 --- a/src/slicing.rs +++ b/src/slicing.rs @@ -1,4 +1,4 @@ -// Copyright 2016 Simon Sapin. +// Copyright 2016 The rust-url developers. // // Licensed under the Apache License, Version 2.0 or the MIT license diff --git a/tests/data.rs b/tests/data.rs index 61c893f13..b8945aa48 100644 --- a/tests/data.rs +++ b/tests/data.rs @@ -1,4 +1,4 @@ -// Copyright 2013-2014 Simon Sapin. +// Copyright 2013-2014 The rust-url developers. // // Licensed under the Apache License, Version 2.0 or the MIT license diff --git a/tests/unit.rs b/tests/unit.rs index 44dbd64e6..6038e1f9e 100644 --- a/tests/unit.rs +++ b/tests/unit.rs @@ -1,4 +1,4 @@ -// Copyright 2013-2014 Simon Sapin. +// Copyright 2013-2014 The rust-url developers. // // Licensed under the Apache License, Version 2.0 or the MIT license