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

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

[elpa] 39/119: removed extra comments from examples


From: Eric Schulte
Subject: [elpa] 39/119: removed extra comments from examples
Date: Mon, 10 Mar 2014 16:57:15 +0000

eschulte pushed a commit to branch master
in repository elpa.

commit fdb1d7fa67d6a335b50633a2a7a9244142f0b1fe
Author: Eric Schulte <address@hidden>
Date:   Mon Dec 23 19:33:33 2013 -0700

    removed extra comments from examples
---
 examples/0-hello-world.el      |   10 ----------
 examples/1-hello-world-utf8.el |   10 ----------
 examples/2-hello-world-html.el |   10 ----------
 examples/3-post-echo.el        |   10 ----------
 examples/4-file-server.el      |   13 -------------
 examples/5-url-param-echo.el   |   10 ----------
 6 files changed, 0 insertions(+), 63 deletions(-)

diff --git a/examples/0-hello-world.el b/examples/0-hello-world.el
index 6ba3209..76ae4f3 100644
--- a/examples/0-hello-world.el
+++ b/examples/0-hello-world.el
@@ -1,14 +1,4 @@
 ;;; hello-world.el --- simple hello world server using Emacs Web Server
-
-;; Copyright (C) 2013 Eric Schulte <address@hidden>
-
-;; Author: Eric Schulte <address@hidden>
-;; Keywords: hello http
-;; License: GPLV3 (see the COPYING file in this directory)
-
-;;; Code:
-(require 'emacs-web-server)
-
 (ews-start
  '(((lambda (_) t) .
     (lambda (proc request)
diff --git a/examples/1-hello-world-utf8.el b/examples/1-hello-world-utf8.el
index 432eae4..d7804b2 100644
--- a/examples/1-hello-world-utf8.el
+++ b/examples/1-hello-world-utf8.el
@@ -1,14 +1,4 @@
 ;;; hello-world-utf8.el --- utf8 hello world server using Emacs Web Server
-
-;; Copyright (C) 2013 Eric Schulte <address@hidden>
-
-;; Author: Eric Schulte <address@hidden>
-;; Keywords: hello http
-;; License: GPLV3 (see the COPYING file in this directory)
-
-;;; Code:
-(require 'emacs-web-server)
-
 (ews-start
  '(((lambda (_) t) .
     (lambda (proc request)
diff --git a/examples/2-hello-world-html.el b/examples/2-hello-world-html.el
index 0b4e606..49d4420 100644
--- a/examples/2-hello-world-html.el
+++ b/examples/2-hello-world-html.el
@@ -1,14 +1,4 @@
 ;;; hello-world-html.el --- html hello world server using Emacs Web Server
-
-;; Copyright (C) 2013 Eric Schulte <address@hidden>
-
-;; Author: Eric Schulte <address@hidden>
-;; Keywords: hello http
-;; License: GPLV3 (see the COPYING file in this directory)
-
-;;; Code:
-(require 'emacs-web-server)
-
 (ews-start
  '(((lambda (_) t) .
     (lambda (proc request)
diff --git a/examples/3-post-echo.el b/examples/3-post-echo.el
index 465c018..b4d81d4 100644
--- a/examples/3-post-echo.el
+++ b/examples/3-post-echo.el
@@ -1,14 +1,4 @@
 ;;; post-echo.el --- echo back posted message using Emacs Web Server
-
-;; Copyright (C) 2013 Eric Schulte <address@hidden>
-
-;; Author: Eric Schulte <address@hidden>
-;; Keywords: http post
-;; License: GPLV3 (see the COPYING file in this directory)
-
-;;; Code:
-(require 'emacs-web-server)
-
 (ews-start
  '(((:POST . ".*") .
     (lambda (proc request)
diff --git a/examples/4-file-server.el b/examples/4-file-server.el
index 877bc76..ba32c65 100644
--- a/examples/4-file-server.el
+++ b/examples/4-file-server.el
@@ -1,19 +1,6 @@
 ;;; file-server.el --- serve any files using Emacs Web Server
-
-;; Copyright (C) 2013 Eric Schulte <address@hidden>
-
-;; Author: Eric Schulte <address@hidden>
-;; Keywords: http post
-;; License: GPLV3 (see the COPYING file in this directory)
-
-;;; Commentary
-
 ;; This example uses absolute paths and will try to serve files from
 ;; the root of the file-system, so don't run it on a public server.
-
-;;; Code:
-(require 'emacs-web-server)
-
 (ews-start
  '(((:GET . ".*") .
     (lambda (proc request) (ews-send-file proc (cdr (assoc :GET request))))))
diff --git a/examples/5-url-param-echo.el b/examples/5-url-param-echo.el
index c0dfa1d..48a5284 100644
--- a/examples/5-url-param-echo.el
+++ b/examples/5-url-param-echo.el
@@ -1,14 +1,4 @@
 ;;; url-param-echo.el --- echo back url-paramed message using Emacs Web Server
-
-;; Copyright (C) 2013 Eric Schulte <address@hidden>
-
-;; Author: Eric Schulte <address@hidden>
-;; Keywords: http url-param
-;; License: GPLV3 (see the COPYING file in this directory)
-
-;;; Code:
-(require 'emacs-web-server)
-
 (ews-start
  '(((:GET . ".*") .
     (lambda (proc request)



reply via email to

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