From b97be813facc3a763424362ebf6e4c47a8579362 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Tue, 13 Oct 2015 20:45:26 +0000 Subject: copyright updates Future updates may use the update-copyright script in gnulib: git ls-files | UPDATE_COPYRIGHT_HOLDER='all contributors' \ UPDATE_COPYRIGHT_USE_INTERVALS=2 \ xargs /path/to/gnulib/build-aux/update-copyright --- lib/yahns.rb | 2 +- lib/yahns/acceptor.rb | 2 +- lib/yahns/cap_input.rb | 2 +- lib/yahns/client_expire_generic.rb | 2 +- lib/yahns/client_expire_tcpi.rb | 2 +- lib/yahns/config.rb | 2 +- lib/yahns/fdmap.rb | 2 +- lib/yahns/http_client.rb | 2 +- lib/yahns/http_context.rb | 2 +- lib/yahns/http_response.rb | 2 +- lib/yahns/log.rb | 2 +- lib/yahns/max_body.rb | 2 +- lib/yahns/max_body/rewindable_wrapper.rb | 2 +- lib/yahns/max_body/wrapper.rb | 2 +- lib/yahns/queue_egg.rb | 2 +- lib/yahns/queue_epoll.rb | 2 +- lib/yahns/queue_kqueue.rb | 2 +- lib/yahns/queue_quitter.rb | 2 +- lib/yahns/queue_quitter_pipe.rb | 2 +- lib/yahns/rack.rb | 2 +- lib/yahns/sendfile_compat.rb | 2 +- lib/yahns/server.rb | 2 +- lib/yahns/server_mp.rb | 2 +- lib/yahns/sigevent.rb | 2 +- lib/yahns/sigevent_efd.rb | 2 +- lib/yahns/sigevent_pipe.rb | 2 +- lib/yahns/socket_helper.rb | 2 +- lib/yahns/stream_file.rb | 2 +- lib/yahns/stream_input.rb | 2 +- lib/yahns/tcp_server.rb | 2 +- lib/yahns/tee_input.rb | 2 +- lib/yahns/tmpio.rb | 2 +- lib/yahns/unix_server.rb | 2 +- lib/yahns/wbuf_common.rb | 2 +- lib/yahns/wbuf_str.rb | 2 +- lib/yahns/worker.rb | 2 +- 36 files changed, 36 insertions(+), 36 deletions(-) (limited to 'lib') diff --git a/lib/yahns.rb b/lib/yahns.rb index b4a8bbe..641959c 100644 --- a/lib/yahns.rb +++ b/lib/yahns.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) $stdout.sync = $stderr.sync = true diff --git a/lib/yahns/acceptor.rb b/lib/yahns/acceptor.rb index 0cebea2..5745b73 100644 --- a/lib/yahns/acceptor.rb +++ b/lib/yahns/acceptor.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2013, Eric Wong et. al. +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (see COPYING for details) require_relative 'client_expire_tcpi' require_relative 'client_expire_generic' diff --git a/lib/yahns/cap_input.rb b/lib/yahns/cap_input.rb index 313b3ce..a501958 100644 --- a/lib/yahns/cap_input.rb +++ b/lib/yahns/cap_input.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2009-2013, Eric Wong et. al. +# Copyright (C) 2013-2015 all contributors # License: GPLv2 or later (https://www.gnu.org/licenses/gpl-2.0.txt) # This is used as the @input/env["rack.input"] when diff --git a/lib/yahns/client_expire_generic.rb b/lib/yahns/client_expire_generic.rb index 2beabb8..5ffc779 100644 --- a/lib/yahns/client_expire_generic.rb +++ b/lib/yahns/client_expire_generic.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) module Yahns::ClientExpireGeneric # :nodoc: def __timestamp diff --git a/lib/yahns/client_expire_tcpi.rb b/lib/yahns/client_expire_tcpi.rb index 4ca901a..c310800 100644 --- a/lib/yahns/client_expire_tcpi.rb +++ b/lib/yahns/client_expire_tcpi.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require 'raindrops' diff --git a/lib/yahns/config.rb b/lib/yahns/config.rb index 38f73b7..faae9c9 100644 --- a/lib/yahns/config.rb +++ b/lib/yahns/config.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) # # Implements a DSL for configuring a yahns server. diff --git a/lib/yahns/fdmap.rb b/lib/yahns/fdmap.rb index 523b003..8ff1319 100644 --- a/lib/yahns/fdmap.rb +++ b/lib/yahns/fdmap.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require 'thread' diff --git a/lib/yahns/http_client.rb b/lib/yahns/http_client.rb index 9a37811..db53587 100644 --- a/lib/yahns/http_client.rb +++ b/lib/yahns/http_client.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) class Yahns::HttpClient < Kgio::Socket # :nodoc: NULL_IO = StringIO.new("") diff --git a/lib/yahns/http_context.rb b/lib/yahns/http_context.rb index 8393ffe..eabc667 100644 --- a/lib/yahns/http_context.rb +++ b/lib/yahns/http_context.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) # subclasses of Yahns::HttpClient will class extend this diff --git a/lib/yahns/http_response.rb b/lib/yahns/http_response.rb index b36f696..99bf664 100644 --- a/lib/yahns/http_response.rb +++ b/lib/yahns/http_response.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'stream_file' require_relative 'wbuf_str' diff --git a/lib/yahns/log.rb b/lib/yahns/log.rb index a62b27c..a03c973 100644 --- a/lib/yahns/log.rb +++ b/lib/yahns/log.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) # logging-related utility functions for all of yahns diff --git a/lib/yahns/max_body.rb b/lib/yahns/max_body.rb index e52a10f..101a4fb 100644 --- a/lib/yahns/max_body.rb +++ b/lib/yahns/max_body.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2009-2013, Eric Wong et. al. +# Copyright (C) 2013-2015 all contributors # License: GPLv2 or later (https://www.gnu.org/licenses/gpl-2.0.txt) # Middleware used to enforce client_max_body_size for TeeInput users. diff --git a/lib/yahns/max_body/rewindable_wrapper.rb b/lib/yahns/max_body/rewindable_wrapper.rb index 5888def..c8ea412 100644 --- a/lib/yahns/max_body/rewindable_wrapper.rb +++ b/lib/yahns/max_body/rewindable_wrapper.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2009-2013, Eric Wong et. al. +# Copyright (C) 2013-2015 all contributors # License: GPLv2 or later (https://www.gnu.org/licenses/gpl-2.0.txt) class Yahns::MaxBody::RewindableWrapper < Yahns::MaxBody::Wrapper # :nodoc: def initialize(rack_input, limit) diff --git a/lib/yahns/max_body/wrapper.rb b/lib/yahns/max_body/wrapper.rb index 68f6b5b..e618568 100644 --- a/lib/yahns/max_body/wrapper.rb +++ b/lib/yahns/max_body/wrapper.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2009-2013, Eric Wong et. al. +# Copyright (C) 2013-2015 all contributors # License: GPLv2 or later (https://www.gnu.org/licenses/gpl-2.0.txt) # # This is only used for chunked request bodies, which are rare diff --git a/lib/yahns/queue_egg.rb b/lib/yahns/queue_egg.rb index dde72bf..0d62c2e 100644 --- a/lib/yahns/queue_egg.rb +++ b/lib/yahns/queue_egg.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) # this represents a Yahns::Queue before its vivified. This only diff --git a/lib/yahns/queue_epoll.rb b/lib/yahns/queue_epoll.rb index 1511917..c685fae 100644 --- a/lib/yahns/queue_epoll.rb +++ b/lib/yahns/queue_epoll.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) # # This is the dangerous, low-level epoll interface for sleepy_penguin diff --git a/lib/yahns/queue_kqueue.rb b/lib/yahns/queue_kqueue.rb index 33f5f8b..2636cee 100644 --- a/lib/yahns/queue_kqueue.rb +++ b/lib/yahns/queue_kqueue.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2014, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) # # This is the dangerous, low-level kqueue interface for sleepy_penguin diff --git a/lib/yahns/queue_quitter.rb b/lib/yahns/queue_quitter.rb index b9cf28a..f91ff58 100644 --- a/lib/yahns/queue_quitter.rb +++ b/lib/yahns/queue_quitter.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require 'sleepy_penguin' diff --git a/lib/yahns/queue_quitter_pipe.rb b/lib/yahns/queue_quitter_pipe.rb index e18e249..a886957 100644 --- a/lib/yahns/queue_quitter_pipe.rb +++ b/lib/yahns/queue_quitter_pipe.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) # # POSIX pipe version, see queue_quitter.rb for the (preferred) eventfd one diff --git a/lib/yahns/rack.rb b/lib/yahns/rack.rb index 3f8f6b7..3ec3582 100644 --- a/lib/yahns/rack.rb +++ b/lib/yahns/rack.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require 'rack' class Yahns::Rack # :nodoc: diff --git a/lib/yahns/sendfile_compat.rb b/lib/yahns/sendfile_compat.rb index f324075..da2a9ec 100644 --- a/lib/yahns/sendfile_compat.rb +++ b/lib/yahns/sendfile_compat.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2009-2014, Eric Wong et. al. +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) module Yahns::SendfileCompat diff --git a/lib/yahns/server.rb b/lib/yahns/server.rb index 01334ca..513fadb 100644 --- a/lib/yahns/server.rb +++ b/lib/yahns/server.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'queue_quitter' require_relative 'tcp_server' diff --git a/lib/yahns/server_mp.rb b/lib/yahns/server_mp.rb index 9e6ec60..6b5f4b6 100644 --- a/lib/yahns/server_mp.rb +++ b/lib/yahns/server_mp.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) module Yahns::ServerMP # :nodoc: EXIT_SIGS = [ :QUIT, :TERM, :INT ] diff --git a/lib/yahns/sigevent.rb b/lib/yahns/sigevent.rb index aa95f4b..ff4ac27 100644 --- a/lib/yahns/sigevent.rb +++ b/lib/yahns/sigevent.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) if SleepyPenguin.const_defined?(:EventFD) require_relative 'sigevent_efd' diff --git a/lib/yahns/sigevent_efd.rb b/lib/yahns/sigevent_efd.rb index 2c04b36..ce3bf1b 100644 --- a/lib/yahns/sigevent_efd.rb +++ b/lib/yahns/sigevent_efd.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) class Yahns::Sigevent < SleepyPenguin::EventFD # :nodoc: include Kgio::DefaultWaiters diff --git a/lib/yahns/sigevent_pipe.rb b/lib/yahns/sigevent_pipe.rb index 32cfbae..cfdab37 100644 --- a/lib/yahns/sigevent_pipe.rb +++ b/lib/yahns/sigevent_pipe.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) class Yahns::Sigevent # :nodoc: attr_reader :to_io diff --git a/lib/yahns/socket_helper.rb b/lib/yahns/socket_helper.rb index a74f3f8..c786801 100644 --- a/lib/yahns/socket_helper.rb +++ b/lib/yahns/socket_helper.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) # this is only meant for Yahns::Server module Yahns::SocketHelper # :nodoc: diff --git a/lib/yahns/stream_file.rb b/lib/yahns/stream_file.rb index fabbb9d..acc9f12 100644 --- a/lib/yahns/stream_file.rb +++ b/lib/yahns/stream_file.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2013, Eric Wong et. al. +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'wbuf_common' diff --git a/lib/yahns/stream_input.rb b/lib/yahns/stream_input.rb index d32ff66..c913ae4 100644 --- a/lib/yahns/stream_input.rb +++ b/lib/yahns/stream_input.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2009-2013, Eric Wong et. al. +# Copyright (C) 2013-2015 all contributors # License: GPLv2 or later (https://www.gnu.org/licenses/gpl-2.0.txt) # When processing uploads, Yahns may expose a StreamInput object under diff --git a/lib/yahns/tcp_server.rb b/lib/yahns/tcp_server.rb index 886dd4d..20e1a35 100644 --- a/lib/yahns/tcp_server.rb +++ b/lib/yahns/tcp_server.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2013, Eric Wong et. al. +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (see COPYING for details) require_relative 'acceptor' class Yahns::TCPServer < Kgio::TCPServer # :nodoc: diff --git a/lib/yahns/tee_input.rb b/lib/yahns/tee_input.rb index 09933ca..31ad9cc 100644 --- a/lib/yahns/tee_input.rb +++ b/lib/yahns/tee_input.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2009-2013, Eric Wong et. al. +# Copyright (C) 2013-2015 all contributors # License: GPLv2 or later (https://www.gnu.org/licenses/gpl-2.0.txt) # acts like tee(1) on an input input to provide a input-like stream diff --git a/lib/yahns/tmpio.rb b/lib/yahns/tmpio.rb index 48832df..dae3b30 100644 --- a/lib/yahns/tmpio.rb +++ b/lib/yahns/tmpio.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2009-2013, Eric Wong et. al. +# Copyright (C) 2013-2015 all contributors # License: GPLv2 or later (https://www.gnu.org/licenses/gpl-2.0.txt) require 'tmpdir' diff --git a/lib/yahns/unix_server.rb b/lib/yahns/unix_server.rb index 3c36cd9..9a4e72e 100644 --- a/lib/yahns/unix_server.rb +++ b/lib/yahns/unix_server.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2013, Eric Wong et. al. +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (see COPYING for details) require_relative 'acceptor' class Yahns::UNIXServer < Kgio::UNIXServer # :nodoc: diff --git a/lib/yahns/wbuf_common.rb b/lib/yahns/wbuf_common.rb index 9e2d855..8d81c0b 100644 --- a/lib/yahns/wbuf_common.rb +++ b/lib/yahns/wbuf_common.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2009-2013, Eric Wong et. al. +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) begin raise LoadError, "SENDFILE_BROKEN env set" if ENV["SENDFILE_BROKEN"] diff --git a/lib/yahns/wbuf_str.rb b/lib/yahns/wbuf_str.rb index b786a4c..89dfd33 100644 --- a/lib/yahns/wbuf_str.rb +++ b/lib/yahns/wbuf_str.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2013, Eric Wong et. al. +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'wbuf_common' diff --git a/lib/yahns/worker.rb b/lib/yahns/worker.rb index 4183c63..d6e7364 100644 --- a/lib/yahns/worker.rb +++ b/lib/yahns/worker.rb @@ -1,5 +1,5 @@ # -*- encoding: binary -*- -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) class Yahns::Worker # :nodoc: attr_accessor :nr -- cgit v1.2.3-24-ge0c7