[Groonga-commit] ranguba/racknga at 86085f4 [master] Update FSF address

Back to archive index

Masafumi Yokoyama null+****@clear*****
Sat Oct 11 23:46:10 JST 2014


Masafumi Yokoyama	2014-10-11 23:46:10 +0900 (Sat, 11 Oct 2014)

  New Revision: 86085f40f9d7025c6e7c0a973e5f46b4e64af837
  https://github.com/ranguba/racknga/commit/86085f40f9d7025c6e7c0a973e5f46b4e64af837

  Message:
    Update FSF address

  Modified files:
    lib/racknga.rb
    lib/racknga/access_log_parser.rb
    lib/racknga/api-keys.rb
    lib/racknga/cache_database.rb
    lib/racknga/exception_mail_notifier.rb
    lib/racknga/log_database.rb
    lib/racknga/log_entry.rb
    lib/racknga/middleware/auth/api-key.rb
    lib/racknga/middleware/cache.rb
    lib/racknga/middleware/deflater.rb
    lib/racknga/middleware/exception_notifier.rb
    lib/racknga/middleware/instance_name.rb
    lib/racknga/middleware/jsonp.rb
    lib/racknga/middleware/log.rb
    lib/racknga/middleware/nginx_raw_uri.rb
    lib/racknga/middleware/range.rb
    lib/racknga/reverse_line_reader.rb
    lib/racknga/utils.rb
    lib/racknga/version.rb

  Modified: lib/racknga.rb (+1 -1)
===================================================================
--- lib/racknga.rb    2014-10-11 23:43:31 +0900 (bcbd3bf)
+++ lib/racknga.rb    2014-10-11 23:46:10 +0900 (b7e8bf8)
@@ -14,7 +14,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
 require 'rack'
 

  Modified: lib/racknga/access_log_parser.rb (+1 -1)
===================================================================
--- lib/racknga/access_log_parser.rb    2014-10-11 23:43:31 +0900 (940a05c)
+++ lib/racknga/access_log_parser.rb    2014-10-11 23:46:10 +0900 (1e22e15)
@@ -15,7 +15,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
 require "racknga/log_entry"
 require "racknga/reverse_line_reader"

  Modified: lib/racknga/api-keys.rb (+1 -1)
===================================================================
--- lib/racknga/api-keys.rb    2014-10-11 23:43:31 +0900 (e218eb4)
+++ lib/racknga/api-keys.rb    2014-10-11 23:46:10 +0900 (1ab8811)
@@ -14,7 +14,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
 module Racknga
   # This is a store for API keys. It is used with

  Modified: lib/racknga/cache_database.rb (+1 -1)
===================================================================
--- lib/racknga/cache_database.rb    2014-10-11 23:43:31 +0900 (b5d2813)
+++ lib/racknga/cache_database.rb    2014-10-11 23:46:10 +0900 (b24f2c2)
@@ -14,7 +14,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
 require 'fileutils'
 

  Modified: lib/racknga/exception_mail_notifier.rb (+1 -1)
===================================================================
--- lib/racknga/exception_mail_notifier.rb    2014-10-11 23:43:31 +0900 (ff0dc54)
+++ lib/racknga/exception_mail_notifier.rb    2014-10-11 23:46:10 +0900 (38fe2f9)
@@ -14,7 +14,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
 require 'time'
 require 'net/smtp'

  Modified: lib/racknga/log_database.rb (+1 -1)
===================================================================
--- lib/racknga/log_database.rb    2014-10-11 23:43:31 +0900 (208f2a5)
+++ lib/racknga/log_database.rb    2014-10-11 23:46:10 +0900 (f172cb6)
@@ -14,7 +14,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
 require 'fileutils'
 

  Modified: lib/racknga/log_entry.rb (+1 -1)
===================================================================
--- lib/racknga/log_entry.rb    2014-10-11 23:43:31 +0900 (eac6e08)
+++ lib/racknga/log_entry.rb    2014-10-11 23:46:10 +0900 (fec7eee)
@@ -15,7 +15,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
 module Racknga
   class LogEntry

  Modified: lib/racknga/middleware/auth/api-key.rb (+1 -1)
===================================================================
--- lib/racknga/middleware/auth/api-key.rb    2014-10-11 23:43:31 +0900 (9bddd53)
+++ lib/racknga/middleware/auth/api-key.rb    2014-10-11 23:46:10 +0900 (4afd7ab)
@@ -14,7 +14,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
 module Racknga
   module Middleware

  Modified: lib/racknga/middleware/cache.rb (+1 -1)
===================================================================
--- lib/racknga/middleware/cache.rb    2014-10-11 23:43:31 +0900 (4513c64)
+++ lib/racknga/middleware/cache.rb    2014-10-11 23:46:10 +0900 (c426dfc)
@@ -14,7 +14,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
 require 'digest'
 require 'yaml'

  Modified: lib/racknga/middleware/deflater.rb (+1 -1)
===================================================================
--- lib/racknga/middleware/deflater.rb    2014-10-11 23:43:31 +0900 (2ecf80f)
+++ lib/racknga/middleware/deflater.rb    2014-10-11 23:46:10 +0900 (bdf8104)
@@ -14,7 +14,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
 module Racknga
   module Middleware

  Modified: lib/racknga/middleware/exception_notifier.rb (+1 -1)
===================================================================
--- lib/racknga/middleware/exception_notifier.rb    2014-10-11 23:43:31 +0900 (36ef758)
+++ lib/racknga/middleware/exception_notifier.rb    2014-10-11 23:46:10 +0900 (2570570)
@@ -14,7 +14,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
 require 'racknga/exception_mail_notifier'
 

  Modified: lib/racknga/middleware/instance_name.rb (+1 -1)
===================================================================
--- lib/racknga/middleware/instance_name.rb    2014-10-11 23:43:31 +0900 (c9f4a50)
+++ lib/racknga/middleware/instance_name.rb    2014-10-11 23:46:10 +0900 (4457459)
@@ -15,7 +15,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
 module Racknga
   module Middleware

  Modified: lib/racknga/middleware/jsonp.rb (+1 -1)
===================================================================
--- lib/racknga/middleware/jsonp.rb    2014-10-11 23:43:31 +0900 (1e7d289)
+++ lib/racknga/middleware/jsonp.rb    2014-10-11 23:46:10 +0900 (398ab64)
@@ -14,7 +14,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
 module Racknga
   module Middleware

  Modified: lib/racknga/middleware/log.rb (+1 -1)
===================================================================
--- lib/racknga/middleware/log.rb    2014-10-11 23:43:31 +0900 (51b3664)
+++ lib/racknga/middleware/log.rb    2014-10-11 23:46:10 +0900 (a4f0744)
@@ -14,7 +14,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
 require 'racknga/log_database'
 

  Modified: lib/racknga/middleware/nginx_raw_uri.rb (+1 -1)
===================================================================
--- lib/racknga/middleware/nginx_raw_uri.rb    2014-10-11 23:43:31 +0900 (5b387d7)
+++ lib/racknga/middleware/nginx_raw_uri.rb    2014-10-11 23:46:10 +0900 (01964e0)
@@ -14,7 +14,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
 module Racknga
   module Middleware

  Modified: lib/racknga/middleware/range.rb (+1 -1)
===================================================================
--- lib/racknga/middleware/range.rb    2014-10-11 23:43:31 +0900 (f2cf2b6)
+++ lib/racknga/middleware/range.rb    2014-10-11 23:46:10 +0900 (2cbf529)
@@ -14,7 +14,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
 require 'time'
 

  Modified: lib/racknga/reverse_line_reader.rb (+1 -1)
===================================================================
--- lib/racknga/reverse_line_reader.rb    2014-10-11 23:43:31 +0900 (2c0274c)
+++ lib/racknga/reverse_line_reader.rb    2014-10-11 23:46:10 +0900 (475bd0c)
@@ -14,7 +14,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
 module Racknga
   class ReverseLineReader

  Modified: lib/racknga/utils.rb (+1 -1)
===================================================================
--- lib/racknga/utils.rb    2014-10-11 23:43:31 +0900 (ba01c12)
+++ lib/racknga/utils.rb    2014-10-11 23:46:10 +0900 (0a8cba0)
@@ -14,7 +14,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
 module Racknga
   module Utils

  Modified: lib/racknga/version.rb (+1 -1)
===================================================================
--- lib/racknga/version.rb    2014-10-11 23:43:31 +0900 (0b5128d)
+++ lib/racknga/version.rb    2014-10-11 23:46:10 +0900 (ca1eecc)
@@ -14,7 +14,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
 module Racknga
   VERSION = '0.9.4'
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index