diff options
author | Noah Kantrowitz <noah@coderanger.net> | 2016-02-02 14:43:28 -0800 |
---|---|---|
committer | Noah Kantrowitz <noah@coderanger.net> | 2016-02-02 14:43:28 -0800 |
commit | 0878ed6123706ed4201644ee798da993f8cb5ad4 (patch) | |
tree | 6d3417f8bddbd09054e8a36d7cd1803002f3cd00 /lib/chef/http | |
parent | a27aada46427ed7fe366bb9e9f57ca6f94272f97 (diff) | |
download | chef-0878ed6123706ed4201644ee798da993f8cb5ad4.tar.gz |
Copyright year update for 2016 and massive cleanup.
Generated via git ls-files | xargs perl -pi -e "s/[Cc]opyright (?:\([Cc]\) )?((?\!$(date +%Y))\\d{4})(-\\d{4})?([, ][ \d]+)*(,|(?= ))/Copyright \\1-$(date +%Y),/g"
Diffstat (limited to 'lib/chef/http')
-rw-r--r-- | lib/chef/http/auth_credentials.rb | 2 | ||||
-rw-r--r-- | lib/chef/http/authenticator.rb | 2 | ||||
-rw-r--r-- | lib/chef/http/basic_client.rb | 2 | ||||
-rw-r--r-- | lib/chef/http/cookie_jar.rb | 2 | ||||
-rw-r--r-- | lib/chef/http/cookie_manager.rb | 2 | ||||
-rw-r--r-- | lib/chef/http/decompressor.rb | 2 | ||||
-rw-r--r-- | lib/chef/http/http_request.rb | 2 | ||||
-rw-r--r-- | lib/chef/http/json_input.rb | 2 | ||||
-rw-r--r-- | lib/chef/http/json_output.rb | 2 | ||||
-rw-r--r-- | lib/chef/http/json_to_model_output.rb | 2 | ||||
-rw-r--r-- | lib/chef/http/remote_request_id.rb | 2 | ||||
-rw-r--r-- | lib/chef/http/simple.rb | 2 | ||||
-rw-r--r-- | lib/chef/http/simple_json.rb | 2 | ||||
-rw-r--r-- | lib/chef/http/socketless_chef_zero_client.rb | 4 | ||||
-rw-r--r-- | lib/chef/http/ssl_policies.rb | 2 | ||||
-rw-r--r-- | lib/chef/http/validate_content_length.rb | 2 |
16 files changed, 17 insertions, 17 deletions
diff --git a/lib/chef/http/auth_credentials.rb b/lib/chef/http/auth_credentials.rb index c583352cfd..2c277297cd 100644 --- a/lib/chef/http/auth_credentials.rb +++ b/lib/chef/http/auth_credentials.rb @@ -5,7 +5,7 @@ # Author:: Christopher Brown (<cb@opscode.com>) # Author:: Christopher Walters (<cw@opscode.com>) # Author:: Daniel DeLeo (<dan@opscode.com>) -# Copyright:: Copyright (c) 2009, 2010 Opscode, Inc. +# Copyright:: Copyright 2009-2016, Opscode, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/chef/http/authenticator.rb b/lib/chef/http/authenticator.rb index ab4804c964..a7748db544 100644 --- a/lib/chef/http/authenticator.rb +++ b/lib/chef/http/authenticator.rb @@ -1,6 +1,6 @@ #-- # Author:: Daniel DeLeo (<dan@opscode.com>) -# Copyright:: Copyright (c) 2013 Opscode, Inc. +# Copyright:: Copyright 2013-2016, Opscode, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/chef/http/basic_client.rb b/lib/chef/http/basic_client.rb index defa4976d1..51b0d083a9 100644 --- a/lib/chef/http/basic_client.rb +++ b/lib/chef/http/basic_client.rb @@ -5,7 +5,7 @@ # Author:: Christopher Brown (<cb@opscode.com>) # Author:: Christopher Walters (<cw@opscode.com>) # Author:: Daniel DeLeo (<dan@opscode.com>) -# Copyright:: Copyright (c) 2009, 2010 Opscode, Inc. +# Copyright:: Copyright 2009-2016, Opscode, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/chef/http/cookie_jar.rb b/lib/chef/http/cookie_jar.rb index 3f6d879c1f..9883f2b210 100644 --- a/lib/chef/http/cookie_jar.rb +++ b/lib/chef/http/cookie_jar.rb @@ -5,7 +5,7 @@ # Author:: Christopher Brown (<cb@opscode.com>) # Author:: Christopher Walters (<cw@opscode.com>) # Author:: Daniel DeLeo (<dan@opscode.com>) -# Copyright:: Copyright (c) 2009, 2010 Opscode, Inc. +# Copyright:: Copyright 2009-2016, Opscode, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/chef/http/cookie_manager.rb b/lib/chef/http/cookie_manager.rb index 4b48352382..95ceab1f7b 100644 --- a/lib/chef/http/cookie_manager.rb +++ b/lib/chef/http/cookie_manager.rb @@ -1,6 +1,6 @@ #-- # Author:: Daniel DeLeo (<dan@opscode.com>) -# Copyright:: Copyright (c) 2013 Opscode, Inc. +# Copyright:: Copyright 2013-2016, Opscode, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/chef/http/decompressor.rb b/lib/chef/http/decompressor.rb index bc033cc35e..9ee59c28d8 100644 --- a/lib/chef/http/decompressor.rb +++ b/lib/chef/http/decompressor.rb @@ -1,6 +1,6 @@ #-- # Author:: Daniel DeLeo (<dan@opscode.com>) -# Copyright:: Copyright (c) 2013 Opscode, Inc. +# Copyright:: Copyright 2013-2016, Opscode, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/chef/http/http_request.rb b/lib/chef/http/http_request.rb index 2dec4d8267..b5c085c0c4 100644 --- a/lib/chef/http/http_request.rb +++ b/lib/chef/http/http_request.rb @@ -5,7 +5,7 @@ # Author:: Christopher Brown (<cb@opscode.com>) # Author:: Christopher Walters (<cw@opscode.com>) # Author:: Daniel DeLeo (<dan@opscode.com>) -# Copyright:: Copyright (c) 2009, 2010-2016 Chef Software, Inc. +# Copyright:: Copyright 2009-2016, 2010-2016 Chef Software, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/chef/http/json_input.rb b/lib/chef/http/json_input.rb index 3bfca38479..e90aed2a63 100644 --- a/lib/chef/http/json_input.rb +++ b/lib/chef/http/json_input.rb @@ -1,7 +1,7 @@ #-- # Author:: Daniel DeLeo (<dan@opscode.com>) # Author:: John Keiser (<jkeiser@opscode.com>) -# Copyright:: Copyright (c) 2013 Opscode, Inc. +# Copyright:: Copyright 2013-2016, Opscode, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/chef/http/json_output.rb b/lib/chef/http/json_output.rb index 86165d3d55..913fef8078 100644 --- a/lib/chef/http/json_output.rb +++ b/lib/chef/http/json_output.rb @@ -1,7 +1,7 @@ #-- # Author:: Daniel DeLeo (<dan@opscode.com>) # Author:: John Keiser (<jkeiser@opscode.com>) -# Copyright:: Copyright (c) 2013 Opscode, Inc. +# Copyright:: Copyright 2013-2016, Opscode, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/chef/http/json_to_model_output.rb b/lib/chef/http/json_to_model_output.rb index 2290c90b0c..22f52e9753 100644 --- a/lib/chef/http/json_to_model_output.rb +++ b/lib/chef/http/json_to_model_output.rb @@ -1,6 +1,6 @@ #-- # Author:: Daniel DeLeo (<dan@opscode.com>) -# Copyright:: Copyright (c) 2013 Opscode, Inc. +# Copyright:: Copyright 2013-2016, Opscode, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/chef/http/remote_request_id.rb b/lib/chef/http/remote_request_id.rb index bfee5d3ded..487d67961c 100644 --- a/lib/chef/http/remote_request_id.rb +++ b/lib/chef/http/remote_request_id.rb @@ -1,5 +1,5 @@ # Author:: Prajakta Purohit (<prajakta@opscode.com>) -# Copyright:: Copyright (c) 2009, 2010, 2013, 2014 Opscode, Inc. +# Copyright:: Copyright 2009-2016, Opscode, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/chef/http/simple.rb b/lib/chef/http/simple.rb index d828e98186..bdbc31c9f1 100644 --- a/lib/chef/http/simple.rb +++ b/lib/chef/http/simple.rb @@ -1,6 +1,6 @@ # # Author:: Daniel DeLeo (<dan@chef.io>) -# Copyright:: Copyright (c) 2015 Chef Software, Inc. +# Copyright:: Copyright 2015-2016, Chef Software, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/chef/http/simple_json.rb b/lib/chef/http/simple_json.rb index 5c5a87d387..7357d859ee 100644 --- a/lib/chef/http/simple_json.rb +++ b/lib/chef/http/simple_json.rb @@ -1,6 +1,6 @@ # # Author:: Thom May (<thom@chef.io>) -# Copyright:: Copyright (c) 2015 Chef Software, Inc. +# Copyright:: Copyright 2015-2016, Chef Software, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/chef/http/socketless_chef_zero_client.rb b/lib/chef/http/socketless_chef_zero_client.rb index e81aff6fce..ef2e8732cc 100644 --- a/lib/chef/http/socketless_chef_zero_client.rb +++ b/lib/chef/http/socketless_chef_zero_client.rb @@ -1,6 +1,6 @@ #-- # Author:: Daniel DeLeo (<dan@chef.io>) -# Copyright:: Copyright (c) 2015 Chef Software, Inc. +# Copyright:: Copyright 2015-2016, Chef Software, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -22,7 +22,7 @@ # fakeweb is distributed under the MIT license, which is copied below: # --- # -# Copyright 2006-2010 Blaine Cook, Chris Kampmeier, and other contributors +# Copyright 2006-2016, Blaine Cook, Chris Kampmeier, and other contributors # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the diff --git a/lib/chef/http/ssl_policies.rb b/lib/chef/http/ssl_policies.rb index 5247d677cc..de3698f91c 100644 --- a/lib/chef/http/ssl_policies.rb +++ b/lib/chef/http/ssl_policies.rb @@ -5,7 +5,7 @@ # Author:: Christopher Brown (<cb@opscode.com>) # Author:: Christopher Walters (<cw@opscode.com>) # Author:: Daniel DeLeo (<dan@opscode.com>) -# Copyright:: Copyright (c) 2009, 2010, 2013 Opscode, Inc. +# Copyright:: Copyright 2009-2016, Opscode, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/lib/chef/http/validate_content_length.rb b/lib/chef/http/validate_content_length.rb index 77fb6194ef..77d7b51537 100644 --- a/lib/chef/http/validate_content_length.rb +++ b/lib/chef/http/validate_content_length.rb @@ -1,6 +1,6 @@ #-- # Author:: Lamont Granquist (<lamont@getchef.com>) -# Copyright:: Copyright (c) 2013 Chef Software, Inc. +# Copyright:: Copyright 2013-2016, Chef Software, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); |