mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/cgi-lib.rb, lib/getopts.rb, lib/importenv.rb, lib/parsearg.rb:
warn with caller position. * test/rss/test_content.rb, test/rss/test_dublincore.rb, test/rss/test_syndication.rb, test/rss/test_trackback.rb: use cgi instead of cgi-lib. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5829 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9418d16cbb
commit
8f2057e33d
9 changed files with 18 additions and 9 deletions
11
ChangeLog
11
ChangeLog
|
@ -1,6 +1,15 @@
|
|||
Wed Feb 25 20:44:45 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/cgi-lib.rb, lib/getopts.rb, lib/importenv.rb, lib/parsearg.rb:
|
||||
warn with caller position.
|
||||
|
||||
* test/rss/test_content.rb, test/rss/test_dublincore.rb,
|
||||
test/rss/test_syndication.rb, test/rss/test_trackback.rb: use cgi
|
||||
instead of cgi-lib.
|
||||
|
||||
Tue Feb 24 18:42:03 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
|
||||
|
||||
* dir.c (glob_helper): '**/' should not match leading period
|
||||
* dir.c (glob_helper): '**/' should not match leading period
|
||||
unless File::FNM_DOTMATCH is set. (like '*/') [ruby-dev:23014]
|
||||
|
||||
Tue Feb 24 18:03:14 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
warn "Warning: cgi-lib is deprecated after Ruby 1.8.1; use cgi instead"
|
||||
warn "Warning:#{caller[0].sub(/:in `.*'\z/, '')}: cgi-lib is deprecated after Ruby 1.8.1; use cgi instead"
|
||||
|
||||
=begin
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
# rewritten by Akinori MUSHA <knu@ruby-lang.org>
|
||||
#
|
||||
|
||||
warn "Warning: getopts is deprecated after Ruby 1.8.1; use optparse instead"
|
||||
warn "Warning:#{caller[0].sub(/:in `.*'\z/, '')}: getopts is deprecated after Ruby 1.8.1; use optparse instead"
|
||||
|
||||
$RCS_ID=%q$Header$
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
# $USER = "matz"
|
||||
# p ENV["USER"]
|
||||
|
||||
warn "Warning: importenv is deprecated after Ruby 1.8.1 (no replacement)"
|
||||
warn "Warning:#{caller[0].sub(/:in `.*'\z/, '')}: importenv is deprecated after Ruby 1.8.1 (no replacement)"
|
||||
|
||||
for k,v in ENV
|
||||
next unless /^[a-zA-Z][_a-zA-Z0-9]*/ =~ k
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#
|
||||
#
|
||||
|
||||
warn "Warning: parsearg is deprecated after Ruby 1.8.1; use optparse instead"
|
||||
warn "Warning:#{caller[0].sub(/:in `.*'\z/, '')}: parsearg is deprecated after Ruby 1.8.1; use optparse instead"
|
||||
|
||||
$RCS_ID=%q$Header$
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# -*- tab-width: 2 -*- vim: ts=2
|
||||
|
||||
require "test/unit"
|
||||
require "cgi-lib"
|
||||
require "cgi"
|
||||
require "rexml/document"
|
||||
|
||||
require "rss/1.0"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# -*- tab-width: 2 -*- vim: ts=2
|
||||
|
||||
require "test/unit"
|
||||
require "cgi-lib"
|
||||
require "cgi"
|
||||
require "rexml/document"
|
||||
|
||||
require "rss/1.0"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# -*- tab-width: 2 -*- vim: ts=2
|
||||
|
||||
require "test/unit"
|
||||
require "cgi-lib"
|
||||
require "cgi"
|
||||
require "rexml/document"
|
||||
|
||||
require "rss/1.0"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# -*- tab-width: 2 -*- vim: ts=2
|
||||
|
||||
require "test/unit"
|
||||
require "cgi-lib"
|
||||
require "cgi"
|
||||
require "rexml/document"
|
||||
|
||||
require "rss/1.0"
|
||||
|
|
Loading…
Add table
Reference in a new issue