summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-05-18 08:57:37 +0000
committeraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-05-18 08:57:37 +0000
commit08a0727577e23ee55ce0eb09a78826f7f7642411 (patch)
tree8b56995afa158a3faea8a5bc8cfed2f97cfbc706
parentf63956c52c796194f5a4f5178775d80582e543c1 (diff)
o protocol.rb, http.rb, smtp.rb, pop.rb: update RD documents
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@701 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--lib/net/http.rb20
-rw-r--r--lib/net/pop.rb19
-rw-r--r--lib/net/protocol.rb18
-rw-r--r--lib/net/smtp.rb15
4 files changed, 50 insertions, 22 deletions
diff --git a/lib/net/http.rb b/lib/net/http.rb
index 2a7190f126..402169c511 100644
--- a/lib/net/http.rb
+++ b/lib/net/http.rb
@@ -23,18 +23,28 @@ module Net
== Class Methods
-: new( address, port = 80 )
- create new HTTP object.
+: new( address = 'localhost', port = 80 )
+ creates a new Net::HTTP object.
+
+: start( address = 'localhost', port = 80 )
+: start( address = 'localhost', port = 80 ) {|http| .... }
+ equals to Net::HTTP.new( address, port ).start
: port
- returns HTTP default port, 80
+ HTTP default port, 80
: command_type
- returns Command class, HTTPCommand
-
+ Command class for Net::HTTP, HTTPCommand
== Methods
+: start
+: start {|http| .... }
+ creates a new Net::HTTP object and starts HTTP session.
+
+ When this method is called as iterator, gives HTTP object to block
+ and close HTTP session after block call finished.
+
: get( path, header = nil, dest = '' )
: get( path, header = nil ) {|str| .... }
get data from "path" on connecting host.
diff --git a/lib/net/pop.rb b/lib/net/pop.rb
index a6c002ce0c..1d3e41a54b 100644
--- a/lib/net/pop.rb
+++ b/lib/net/pop.rb
@@ -28,21 +28,28 @@ Net::Protocol
=== Class Methods
: new( address = 'localhost', port = 110 )
- This method create a new POP3 object.
- This will not open connection yet.
+ creates a new Net::POP3 object.
+ This method does not open TCP connection yet.
+: start( address = 'localhost', port = 110, *protoargs )
+: start( address = 'localhost', port = 110, *protoargs ) {|pop| .... }
+ equals to Net::POP3.new( address, port ).start( *protoargs )
=== Methods
: start( account, password )
- This method start POP3.
+: start( account, password ) {|pop| .... }
+ starts POP3 session.
-: each{|popmail| ...}
+ When called as iterator, give a POP3 object to block and
+ close session after block call is finished.
+
+: each {|popmail| .... }
This method is equals to "pop3.mails.each"
: mails
- This method returns an array of ((URL:#POPMail)).
- This array is renewed when login.
+ an array of ((URL:#POPMail)).
+ This array is renewed when session started.
=end
diff --git a/lib/net/protocol.rb b/lib/net/protocol.rb
index 399b2bbdd4..c52b9d5184 100644
--- a/lib/net/protocol.rb
+++ b/lib/net/protocol.rb
@@ -30,17 +30,15 @@ Object
: new( address = 'localhost', port = nil )
This method Creates a new protocol object.
-: start( address = 'localhost', port = nil, *args )
-: start( address = 'localhost', port = nil, *args ){|proto| .... }
- This method creates a new Protocol object and start session.
- If you call this method with block, Protocol object give itself
- to block and finish session when block returns.
+: start( address = 'localhost', port = nil, *protoargs )
+: start( address = 'localhost', port = nil, *protoargs ) {|proto| .... }
+ This method creates a new Protocol object and opens a session.
+ equals to Net::Protocol.new( address, port ).start( *protoargs )
: Proxy( address, port )
This method creates a proxy class of its protocol.
Arguments are address/port of proxy host.
-
=== Methods
: address
@@ -50,11 +48,15 @@ Object
connecting port number
: start( *args )
- This method start protocol. If you call this method when the protocol
- is already started, this only returns false without doing anything.
+: start( *args ) {|proto| .... }
+ This method starts protocol. If protocol was already started,
+ do nothing and returns false.
'*args' are specified in subclasses.
+ When is called as iterator, gives Protocol object to block and
+ close session when block finished.
+
: finish
This method ends protocol. If you call this method before protocol starts,
it only return false without doing anything.
diff --git a/lib/net/smtp.rb b/lib/net/smtp.rb
index 35e9118df8..09ae8ecb66 100644
--- a/lib/net/smtp.rb
+++ b/lib/net/smtp.rb
@@ -28,15 +28,24 @@ Net::Protocol
=== Class Methods
: new( address = 'localhost', port = 25 )
- This method create new SMTP object.
+ creates a new Net::SMTP object.
+: start( address = 'localhost', port = 25, *protoargs )
+: start( address = 'localhost', port = 25, *protoargs ) {|smtp| .... }
+ same to Net::SMTP.new( address, port ).start( *protoargs )
=== Methods
-: start( helo_domain = ENV['HOSTNAME'] || ENV['HOST'], account = nil, password = nil, authtype = nil )
- This method opens TCP connection and start SMTP.
+: start( helo_domain = Socket.gethostname, \
+ account = nil, password = nil, authtype = nil )
+: start( helo_domain = Socket.gethostname, \
+ account = nil, password = nil, authtype = nil ) {|smtp| .... }
+ opens TCP connection and starts SMTP session.
If protocol had been started, do nothing and return false.
+ When this methods is called as iterator, give a SMTP object to block and
+ close session after block call finished.
+
If account and password are given, is trying to get authentication
by using AUTH command. "authtype" is :plain (symbol) or :cram_md5.