emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] 01/12: Fix up copyright headers.


From: Eric Schulte
Subject: [elpa] 01/12: Fix up copyright headers.
Date: Wed, 07 May 2014 03:10:58 +0000

eschulte pushed a commit to branch master
in repository elpa.

commit 6ea5306892276cf17cf6e930ceba8d89144f4845
Author: Stefan Monnier <address@hidden>
Date:   Mon Mar 10 15:33:08 2014 -0400

    Fix up copyright headers.
---
 examples/000-hello-world.el               |    2 ++
 examples/001-hello-world-utf8.el          |    2 ++
 examples/002-hello-world-html.el          |    2 ++
 examples/003-file-server.el               |    2 ++
 examples/004-url-param-echo.el            |    2 ++
 examples/005-post-echo.el                 |    2 ++
 examples/006-basic-authentication.el      |    2 ++
 examples/007-org-mode-file-server.el      |    2 ++
 examples/008-file-upload.el               |    2 ++
 examples/009-web-socket.el                |    1 +
 examples/010-current-buffer.el            |    2 ++
 examples/011-org-agenda.el                |    2 ++
 examples/012-search-bbdb.el               |    2 ++
 examples/013-org-export-service.el        |    2 ++
 examples/014-org-json.el                  |    2 ++
 examples/015-auto-mode-server.el          |    2 ++
 examples/016-content-encoding-gzip.el     |    2 ++
 examples/017-transfer-encoding-chunked.el |    2 ++
 examples/018-web-shell.el                 |   15 ++++++++++++++-
 web-server-status-codes.el                |   15 +++++++++++++++
 web-server-test.el                        |   16 ++++++++++++++--
 web-server.el                             |   14 +++++++++++++-
 22 files changed, 91 insertions(+), 4 deletions(-)

diff --git a/examples/000-hello-world.el b/examples/000-hello-world.el
index e0ed687..c428052 100644
--- a/examples/000-hello-world.el
+++ b/examples/000-hello-world.el
@@ -1,4 +1,6 @@
 ;;; hello-world.el --- simple hello world server using Emacs Web Server
+;; Copyright (C) 2014  Free Software Foundation, Inc.
+
 (ws-start
  (lambda (request)
    (with-slots (process headers) request
diff --git a/examples/001-hello-world-utf8.el b/examples/001-hello-world-utf8.el
index 1108cfb..667b2ac 100644
--- a/examples/001-hello-world-utf8.el
+++ b/examples/001-hello-world-utf8.el
@@ -1,4 +1,6 @@
 ;;; hello-world-utf8.el --- utf8 hello world server using Emacs Web Server
+;; Copyright (C) 2014  Free Software Foundation, Inc.
+
 (ws-start
  (lambda (request)
    (with-slots (process headers) request
diff --git a/examples/002-hello-world-html.el b/examples/002-hello-world-html.el
index be054c7..ea46b13 100644
--- a/examples/002-hello-world-html.el
+++ b/examples/002-hello-world-html.el
@@ -1,4 +1,6 @@
 ;;; hello-world-html.el --- html hello world server using Emacs Web Server
+;; Copyright (C) 2014  Free Software Foundation, Inc.
+
 (ws-start
  (lambda (request)
    (with-slots (process headers) request
diff --git a/examples/003-file-server.el b/examples/003-file-server.el
index 394d368..c96d0f5 100644
--- a/examples/003-file-server.el
+++ b/examples/003-file-server.el
@@ -1,4 +1,6 @@
 ;;; file-server.el --- serve any files using Emacs Web Server
+;; Copyright (C) 2014  Free Software Foundation, Inc.
+
 (lexical-let ((docroot default-directory))
   (ws-start
    (lambda (request)
diff --git a/examples/004-url-param-echo.el b/examples/004-url-param-echo.el
index a3a7247..b77f3f8 100644
--- a/examples/004-url-param-echo.el
+++ b/examples/004-url-param-echo.el
@@ -1,4 +1,6 @@
 ;;; url-param-echo.el --- echo back url-paramed message using Emacs Web Server
+;; Copyright (C) 2014  Free Software Foundation, Inc.
+
 (ws-start
  '(((:GET . ".*") .
     (lambda (request)
diff --git a/examples/005-post-echo.el b/examples/005-post-echo.el
index 068b410..df44266 100644
--- a/examples/005-post-echo.el
+++ b/examples/005-post-echo.el
@@ -1,4 +1,6 @@
 ;;; post-echo.el --- echo back posted message using Emacs Web Server
+;; Copyright (C) 2014  Free Software Foundation, Inc.
+
 (ws-start
  '(((:POST . ".*") .
     (lambda (request)
diff --git a/examples/006-basic-authentication.el 
b/examples/006-basic-authentication.el
index 61d1d4b..85ad216 100644
--- a/examples/006-basic-authentication.el
+++ b/examples/006-basic-authentication.el
@@ -1,4 +1,6 @@
 ;;; basic-authentication.el --- basic authentication
+;; Copyright (C) 2014  Free Software Foundation, Inc.
+
 (lexical-let ((users '(("foo" . "bar")
                        ("baz" . "qux"))))
   (ws-start
diff --git a/examples/007-org-mode-file-server.el 
b/examples/007-org-mode-file-server.el
index b34793f..ff4f403 100644
--- a/examples/007-org-mode-file-server.el
+++ b/examples/007-org-mode-file-server.el
@@ -1,4 +1,6 @@
 ;;; org-mode-file-server.el --- serve on-demand exported Org-mode files
+;; Copyright (C) 2014  Free Software Foundation, Inc.
+
 (lexical-let ((docroot "/tmp/"))
   (ws-start
    (lambda (request)
diff --git a/examples/008-file-upload.el b/examples/008-file-upload.el
index d445c97..9e9c095 100644
--- a/examples/008-file-upload.el
+++ b/examples/008-file-upload.el
@@ -1,4 +1,6 @@
 ;;; file-upload.el --- use an uploaded file
+;; Copyright (C) 2014  Free Software Foundation, Inc.
+
 (ws-start
  '(((:POST . ".*") .
     (lambda (request)
diff --git a/examples/009-web-socket.el b/examples/009-web-socket.el
index bdcaab2..4b0c27d 100644
--- a/examples/009-web-socket.el
+++ b/examples/009-web-socket.el
@@ -1,4 +1,5 @@
 ;;; web-sockets.el --- communicate via web-sockets
+;; Copyright (C) 2014  Free Software Foundation, Inc.
 
 (lexical-let* ((web-socket-port 9009)
                (web-socket-page
diff --git a/examples/010-current-buffer.el b/examples/010-current-buffer.el
index d9d8646..8a651ac 100644
--- a/examples/010-current-buffer.el
+++ b/examples/010-current-buffer.el
@@ -1,4 +1,6 @@
 ;;; current-buffer.el --- Show the current Emacs buffer
+;; Copyright (C) 2014  Free Software Foundation, Inc.
+
 (require 'htmlize)
 
 (ws-start
diff --git a/examples/011-org-agenda.el b/examples/011-org-agenda.el
index 2c7467d..6bca980 100644
--- a/examples/011-org-agenda.el
+++ b/examples/011-org-agenda.el
@@ -1,4 +1,6 @@
 ;;; org-agenda.el --- display the Org-mode agenda
+;; Copyright (C) 2014  Free Software Foundation, Inc.
+
 (require 'htmlize)
 
 (ws-start
diff --git a/examples/012-search-bbdb.el b/examples/012-search-bbdb.el
index 7ac1a6f..0f29820 100644
--- a/examples/012-search-bbdb.el
+++ b/examples/012-search-bbdb.el
@@ -1,4 +1,6 @@
 ;;; search-bbdb.el --- search the Big Brother Data Base for a supplied name
+;; Copyright (C) 2014  Free Software Foundation, Inc.
+
 (ws-start
  (lambda (request)
    (with-slots (process headers) request
diff --git a/examples/013-org-export-service.el 
b/examples/013-org-export-service.el
index 12352da..fb3f76a 100644
--- a/examples/013-org-export-service.el
+++ b/examples/013-org-export-service.el
@@ -1,4 +1,6 @@
 ;;; 013-org-export-service.el --- upload and export Org-mode files
+;; Copyright (C) 2014  Free Software Foundation, Inc.
+
 (ws-start
  (lambda (request)
    (with-slots (process headers) request
diff --git a/examples/014-org-json.el b/examples/014-org-json.el
index 822175a..fb578f2 100644
--- a/examples/014-org-json.el
+++ b/examples/014-org-json.el
@@ -1,5 +1,7 @@
 ;;; org-json.el --- Serve Org-mode pages as json
 ;; suggested by nicferrier
+;; Copyright (C) 2014  Free Software Foundation, Inc.
+
 (require 'json)
 (lexical-let ((docroot "/tmp/"))
   (ws-start
diff --git a/examples/015-auto-mode-server.el b/examples/015-auto-mode-server.el
index 69e993f..5a36a93 100644
--- a/examples/015-auto-mode-server.el
+++ b/examples/015-auto-mode-server.el
@@ -1,4 +1,6 @@
 ;;; auto-mode-server.el --- files with fontification from the `auto-mode-alist'
+;; Copyright (C) 2014  Free Software Foundation, Inc.
+
 (require 'htmlize)
 
 (lexical-let ((docroot default-directory))
diff --git a/examples/016-content-encoding-gzip.el 
b/examples/016-content-encoding-gzip.el
index e50bf58..e3f3280 100644
--- a/examples/016-content-encoding-gzip.el
+++ b/examples/016-content-encoding-gzip.el
@@ -1,4 +1,6 @@
 ;;; content-encoding-gzip.el -- gzip content encoding
+;; Copyright (C) 2014  Free Software Foundation, Inc.
+
 (ws-start
  (lambda (request)
    (with-slots (process headers) request
diff --git a/examples/017-transfer-encoding-chunked.el 
b/examples/017-transfer-encoding-chunked.el
index 3217ccf..c53fd2f 100644
--- a/examples/017-transfer-encoding-chunked.el
+++ b/examples/017-transfer-encoding-chunked.el
@@ -1,4 +1,6 @@
 ;;; transfer-encoding-chunked.el -- chunked transfer encoding
+;; Copyright (C) 2014  Free Software Foundation, Inc.
+
 (ws-start
  (lambda (request)
    (let ((s "
diff --git a/examples/018-web-shell.el b/examples/018-web-shell.el
index 78814d1..90ba86a 100644
--- a/examples/018-web-shell.el
+++ b/examples/018-web-shell.el
@@ -1,6 +1,19 @@
 ;;; web-shell.el --- interact with a SHELL through a web interface
 
-;; Copyright (C) 2013 Eric Schulte <address@hidden>
+;; Copyright (C) 2013-2014  Free Software Foundation, Inc.
+
+;; This software is free software: you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This software is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
 
 ;;; Commentary:
 
diff --git a/web-server-status-codes.el b/web-server-status-codes.el
index bf0e4ca..f3f07fc 100644
--- a/web-server-status-codes.el
+++ b/web-server-status-codes.el
@@ -1,5 +1,20 @@
 ;;; web-server-status-codes.el --- Emacs Web Server HTML status codes
 
+;; Copyright (C) 2013-2014  Free Software Foundation, Inc.
+
+;; This software is free software: you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This software is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
+
 ;;; Code:
 (defvar ws-status-codes
   '((100 . "Continue")
diff --git a/web-server-test.el b/web-server-test.el
index 9d89ef3..a9f0f19 100644
--- a/web-server-test.el
+++ b/web-server-test.el
@@ -1,9 +1,21 @@
 ;;; web-server-test.el --- Test the Emacs Web Server
 
-;; Copyright (C) 2013 Eric Schulte <address@hidden>
+;; Copyright (C) 2013-2014  Free Software Foundation, Inc.
 
 ;; Author: Eric Schulte <address@hidden>
-;; License: GPLV3 (see the COPYING file in this directory)
+
+;; This software is free software: you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This software is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
 
 ;;; Code:
 (require 'web-server)
diff --git a/web-server.el b/web-server.el
index 500030f..148c983 100644
--- a/web-server.el
+++ b/web-server.el
@@ -8,7 +8,19 @@
 ;; Package-Requires: ((emacs "24.3"))
 ;; Keywords: http, server, network
 ;; URL: https://github.com/eschulte/emacs-web-server
-;; License: GPLV3 (see the COPYING file in this directory)
+
+;; This software is free software: you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This software is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
 
 ;;; Commentary:
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]