]> code.delx.au - gnu-emacs-elpa/commitdiff
Fix up copyright headers.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 10 Mar 2014 19:33:08 +0000 (15:33 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 10 Mar 2014 19:33:08 +0000 (15:33 -0400)
22 files changed:
packages/web-server/examples/000-hello-world.el
packages/web-server/examples/001-hello-world-utf8.el
packages/web-server/examples/002-hello-world-html.el
packages/web-server/examples/003-file-server.el
packages/web-server/examples/004-url-param-echo.el
packages/web-server/examples/005-post-echo.el
packages/web-server/examples/006-basic-authentication.el
packages/web-server/examples/007-org-mode-file-server.el
packages/web-server/examples/008-file-upload.el
packages/web-server/examples/009-web-socket.el
packages/web-server/examples/010-current-buffer.el
packages/web-server/examples/011-org-agenda.el
packages/web-server/examples/012-search-bbdb.el
packages/web-server/examples/013-org-export-service.el
packages/web-server/examples/014-org-json.el
packages/web-server/examples/015-auto-mode-server.el
packages/web-server/examples/016-content-encoding-gzip.el
packages/web-server/examples/017-transfer-encoding-chunked.el
packages/web-server/examples/018-web-shell.el
packages/web-server/web-server-status-codes.el
packages/web-server/web-server-test.el
packages/web-server/web-server.el

index e0ed687a6a47f982d34c440f3e8a68852d2aae1b..c428052191bf660fe3fb67efa203f6555c364c9c 100644 (file)
@@ -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
index 1108cfbd1a793714d5dfbc104b9978f84ed1d488..667b2acbf80a2d56663b478bf0a80439c97b8b91 100644 (file)
@@ -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
index be054c7238d123af6da6fbe6e12aefdd8e322ed4..ea46b13a28773a656e309e0427744f2c3ca179a8 100644 (file)
@@ -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
index 394d36828bbe9773540b0ee986a5d428ebe51bd5..c96d0f5814389bffb862e706d29eeef9682cdcae 100644 (file)
@@ -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)
index a3a7247a30b327fca85fe8fdba25a4e38e815c7c..b77f3f88c77f8cd9281c182cf1159b205d79b499 100644 (file)
@@ -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)
index 068b410689ff2e856734cef4fd7513825e8435b2..df44266f1217351d389ff0fd7714b1322362b706 100644 (file)
@@ -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)
index 61d1d4b354ca7a1e9b9c7bbc6263de287ff1fa25..85ad216d050a157b290b00935e5fa9c269b22267 100644 (file)
@@ -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
index b34793f4b6437be47fff9fa3e5081d299c50fe72..ff4f4034bedc768c0b0ad191bf994c66569cc9ea 100644 (file)
@@ -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)
index d445c972f9b0beaecac80c076a929384f8e081f4..9e9c0958b6e0552d1991e9518487646607f9e987 100644 (file)
@@ -1,4 +1,6 @@
 ;;; file-upload.el --- use an uploaded file
+;; Copyright (C) 2014  Free Software Foundation, Inc.
+
 (ws-start
  '(((:POST . ".*") .
     (lambda (request)
index bdcaab2d50510e292b837306ebf98a61c40e46cb..4b0c27d860033584d327eef5b4b5a79576ad9a35 100644 (file)
@@ -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
index d9d8646fa7ed2a509844a2f579356cb6eb4f989f..8a651ace0e3abea2b9bba66cbefb52085695b343 100644 (file)
@@ -1,4 +1,6 @@
 ;;; current-buffer.el --- Show the current Emacs buffer
+;; Copyright (C) 2014  Free Software Foundation, Inc.
+
 (require 'htmlize)
 
 (ws-start
index 2c7467d801144c1e8784b4084a4ae42b1d52a1e3..6bca980452957fc5ae6b891d1ed11ee6fe2e1242 100644 (file)
@@ -1,4 +1,6 @@
 ;;; org-agenda.el --- display the Org-mode agenda
+;; Copyright (C) 2014  Free Software Foundation, Inc.
+
 (require 'htmlize)
 
 (ws-start
index 7ac1a6fea09979f7929ac1ac0505d613eae215cf..0f298207f5b140109c9cc88b5a361173b43e4bec 100644 (file)
@@ -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
index 12352daf62c374375c744f7d73611f142aac7ab7..fb3f76af5a32ec461301165db81cb6dd3fd17c41 100644 (file)
@@ -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
index 822175aa3e00d7e5db1f1fc28a84f93e65104b7d..fb578f29a026fd4e5b0f85a03253c4d026b28f1d 100644 (file)
@@ -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
index 69e993f4bdc82a0d996e23f8d3d053aca8448882..5a36a93b737c8d49b2da1d97c35a762bbe7d9a80 100644 (file)
@@ -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))
index e50bf589eadc575727b44280823c7710e2390334..e3f3280d403d356ce6cbb1065be5be61b5f03be6 100644 (file)
@@ -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
index 3217ccfafd989edb68b70c04fe9c2b390efadf8d..c53fd2f89263f6a867460f259b1c01161db449f5 100644 (file)
@@ -1,4 +1,6 @@
 ;;; transfer-encoding-chunked.el -- chunked transfer encoding
+;; Copyright (C) 2014  Free Software Foundation, Inc.
+
 (ws-start
  (lambda (request)
    (let ((s "
index 78814d181d5ed5863bfdfae8ce7dc07a5db409d0..90ba86aab5e3aa8a2d123199d5dcdfcbd0bc5542 100644 (file)
@@ -1,6 +1,19 @@
 ;;; web-shell.el --- interact with a SHELL through a web interface
 
-;; Copyright (C) 2013 Eric Schulte <schulte.eric@gmail.com>
+;; 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:
 
index bf0e4caa6988c11b377de6be426b3d3c66b18266..f3f07fcc173214b5608ed6348ff4479c09575848 100644 (file)
@@ -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")
index 9d89ef3edd7f98fd0cce3897fdeb6337ff33234b..a9f0f19ffb47bdb6295bb4258c5d45ea5ec803e4 100644 (file)
@@ -1,9 +1,21 @@
 ;;; web-server-test.el --- Test the Emacs Web Server
 
-;; Copyright (C) 2013 Eric Schulte <schulte.eric@gmail.com>
+;; Copyright (C) 2013-2014  Free Software Foundation, Inc.
 
 ;; Author: Eric Schulte <schulte.eric@gmail.com>
-;; 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)
index 500030f690ee5bd8d1bca42922920c0c9912f1cd..148c983ad7ee34de4bf2fed7e10fce4b2699258a 100644 (file)
@@ -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: