From ecb90abd459a9e6ba0c356ab39f78a1a1f6831c6 Mon Sep 17 00:00:00 2001 From: Tim Niemueller Date: Tue, 14 Sep 2010 22:06:15 -0400 Subject: [PATCH] Remove svn keyword from files --- Makefile | 1 - README | 1 - doc/us/examples.html | 1 - doc/us/index.html | 1 - doc/us/license.html | 3 --- doc/us/manual.html | 1 - src/http.lua | 1 - src/init.lua | 1 - src/server.lua | 1 - tests/apitest.lua | 1 - tests/httptest.lua | 1 - 11 files changed, 13 deletions(-) diff --git a/Makefile b/Makefile index 25cdf8f..488e3cf 100755 --- a/Makefile +++ b/Makefile @@ -1,4 +1,3 @@ -# $Id$ LUA_DIR= /usr/local/share/lua/5.1 diff --git a/README b/README index 86a0578..d714dfe 100755 --- a/README +++ b/README @@ -17,4 +17,3 @@ Here goes a small description of the files in the distribution http.lua -- Extension library over HTTP server.lua -- Server implementation over CGILua -$Id$ diff --git a/doc/us/examples.html b/doc/us/examples.html index 70fb7b3..4079d2c 100755 --- a/doc/us/examples.html +++ b/doc/us/examples.html @@ -178,7 +178,6 @@ respond (xmlrpc.srvEncode (result, not ok)) Valid XHTML 1.0!

-

$Id$

diff --git a/doc/us/index.html b/doc/us/index.html index f8529e9..5a3ee79 100755 --- a/doc/us/index.html +++ b/doc/us/index.html @@ -121,7 +121,6 @@ Comments are welcome!

Valid XHTML 1.0!

-

$Id$

diff --git a/doc/us/license.html b/doc/us/license.html index ba137bb..da5e75b 100755 --- a/doc/us/license.html +++ b/doc/us/license.html @@ -104,9 +104,6 @@ SOFTWARE.

Valid XHTML 1.0!

-

- $Id$ -

diff --git a/doc/us/manual.html b/doc/us/manual.html index 1ac864a..54e9970 100755 --- a/doc/us/manual.html +++ b/doc/us/manual.html @@ -307,7 +307,6 @@ starting point for other implementations.

Valid XHTML 1.0!

-

$Id$

diff --git a/src/http.lua b/src/http.lua index 1862546..f9cd3a2 100755 --- a/src/http.lua +++ b/src/http.lua @@ -1,7 +1,6 @@ --------------------------------------------------------------------- -- XML-RPC over HTTP. -- See Copyright Notice in license.html --- $Id$ --------------------------------------------------------------------- local error, tonumber, tostring, unpack = error, tonumber, tostring, unpack diff --git a/src/init.lua b/src/init.lua index 0f37a9a..d354ae9 100755 --- a/src/init.lua +++ b/src/init.lua @@ -1,7 +1,6 @@ --------------------------------------------------------------------- -- XML-RPC implementation for Lua. -- See Copyright Notice in license.html --- $Id$ --------------------------------------------------------------------- local lxp = require "lxp" diff --git a/src/server.lua b/src/server.lua index 6e34b94..33ac498 100755 --- a/src/server.lua +++ b/src/server.lua @@ -1,7 +1,6 @@ --------------------------------------------------------------------- -- XML-RPC server -- See Copyright Notice in license.html --- $Id$ --------------------------------------------------------------------- local assert, pcall, setmetatable, type, unpack = assert, pcall, setmetatable, type, unpack diff --git a/tests/apitest.lua b/tests/apitest.lua index 3cc4e7a..cab038c 100755 --- a/tests/apitest.lua +++ b/tests/apitest.lua @@ -2,7 +2,6 @@ --------------------------------------------------------------------- -- XML-RPC Overall API test script -- See Copyright Notice in license.html --- $Id$ --------------------------------------------------------------------- diff --git a/tests/httptest.lua b/tests/httptest.lua index 104b5a1..e9c0009 100755 --- a/tests/httptest.lua +++ b/tests/httptest.lua @@ -1,7 +1,6 @@ --------------------------------------------------------------------- -- XML-RPC Automatic Tests -- See Copyright Notice in license.html --- $Id$ ----------------------------------------------------------------------- require"xmlrpc.http"