summaryrefslogtreecommitdiff
path: root/lib/net
diff options
context:
space:
mode:
authorshugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-01-31 03:13:23 +0000
committershugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-01-31 03:13:23 +0000
commit0f0658d08f3661ef9cc5fc7ee5ce952db0c657cd (patch)
tree22d787cac95b3a31a0ae59622798d5df6c65fc20 /lib/net
parent1f77ea8214fe9cc02e53fcb59b2de0ea88a436d8 (diff)
* removed svn:keywords for compatibility.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_5@11599 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/net')
-rw-r--r--lib/net/http.rb4
-rw-r--r--lib/net/https.rb4
-rw-r--r--lib/net/pop.rb4
-rw-r--r--lib/net/protocol.rb2
-rw-r--r--lib/net/smtp.rb4
-rw-r--r--lib/net/telnet.rb2
6 files changed, 10 insertions, 10 deletions
diff --git a/lib/net/http.rb b/lib/net/http.rb
index 46d95b27b4..b62f97d374 100644
--- a/lib/net/http.rb
+++ b/lib/net/http.rb
@@ -22,7 +22,7 @@
# http://www.ruby-lang.org/ja/man/?cmd=view;name=net%2Fhttp.rb
#
#--
-# $Id$
+# $Id: http.rb,v 1.100.2.14 2006/07/26 13:27:18 aamine Exp $
#++
require 'net/protocol'
@@ -278,7 +278,7 @@ module Net #:nodoc:
class HTTP < Protocol
# :stopdoc:
- Revision = %q$Revision$.split[1]
+ Revision = %q$Revision: 1.100.2.14 $.split[1]
HTTPVersion = '1.1'
@newimpl = true
# :startdoc:
diff --git a/lib/net/https.rb b/lib/net/https.rb
index e296dbbed4..1111e94590 100644
--- a/lib/net/https.rb
+++ b/lib/net/https.rb
@@ -1,6 +1,6 @@
=begin
-= $RCSfile$ -- SSL/TLS enhancement for Net::HTTP.
+= $RCSfile: https.rb,v $ -- SSL/TLS enhancement for Net::HTTP.
== Info
'OpenSSL for Ruby 2' project
@@ -16,7 +16,7 @@
You can get it from RAA or Ruby's CVS repository.
== Version
- $Id$
+ $Id: https.rb,v 1.3.4.2 2006/02/05 09:56:34 aamine Exp $
2001-11-06: Contiributed to Ruby/OpenSSL project.
2004-03-06: Some code is merged in to net/http.
diff --git a/lib/net/pop.rb b/lib/net/pop.rb
index 2ecbcbdf28..b76124156b 100644
--- a/lib/net/pop.rb
+++ b/lib/net/pop.rb
@@ -15,7 +15,7 @@
# NOTE: You can find Japanese version of this document in
# the doc/net directory of the standard ruby interpreter package.
#
-# $Id$
+# $Id: pop.rb,v 1.62.2.4 2005/09/13 07:27:18 aamine Exp $
#
# See Net::POP3 for documentation.
#
@@ -190,7 +190,7 @@ module Net
#
class POP3 < Protocol
- Revision = %q$Revision$.split[1]
+ Revision = %q$Revision: 1.62.2.4 $.split[1]
#
# Class Parameters
diff --git a/lib/net/protocol.rb b/lib/net/protocol.rb
index d722fdcbd4..0fee78c63a 100644
--- a/lib/net/protocol.rb
+++ b/lib/net/protocol.rb
@@ -11,7 +11,7 @@
# modify this program under the same terms as Ruby itself,
# Ruby Distribute License or GNU General Public License.
#
-# $Id$
+# $Id: protocol.rb,v 1.73.2.3 2005/09/13 07:27:18 aamine Exp $
#++
#
# WARNING: This file is going to remove.
diff --git a/lib/net/smtp.rb b/lib/net/smtp.rb
index dda9dab072..89929b1c6e 100644
--- a/lib/net/smtp.rb
+++ b/lib/net/smtp.rb
@@ -15,7 +15,7 @@
# NOTE: You can find Japanese version of this document in
# the doc/net directory of the standard ruby interpreter package.
#
-# $Id$
+# $Id: smtp.rb,v 1.69.2.3 2005/09/13 07:27:18 aamine Exp $
#
# See Net::SMTP for documentation.
#
@@ -163,7 +163,7 @@ module Net
#
class SMTP
- Revision = %q$Revision$.split[1]
+ Revision = %q$Revision: 1.69.2.3 $.split[1]
# The default SMTP port, port 25.
def SMTP.default_port
diff --git a/lib/net/telnet.rb b/lib/net/telnet.rb
index c5f8b0429a..a2f6065dd7 100644
--- a/lib/net/telnet.rb
+++ b/lib/net/telnet.rb
@@ -164,7 +164,7 @@ module Net
CR = "\015"
LF = "\012"
EOL = CR + LF
- REVISION = '$Id$'
+ REVISION = '$Id: telnet.rb,v 1.23.2.4 2005/09/14 15:21:31 matz Exp $'
# :startdoc:
#