summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* 2004-04-04eban2004-04-041-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6085 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Allow multiple --exclude options to RDocdave2004-04-043-3/+14
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/syck/syck.h: version 0.43.why2004-04-038-1055/+1216
| | | | | | | | | | | | | | | | | | * ext/syck/lib/gram.c: allow root-level inline collections. [ruby-talk:94922] * lib/yaml/rubytypes.rb (Symbol#to_yaml): emit symbols as implicits. [ruby-talk:94930] * ext/syck/bytecode.c: turn off default implicit typing. * ext/syck/implicit.c: detect base60 integers. * ext/syck/rubyext.c: handle base60, as well as hex and octal with commas. implicit typing of ruby symbols. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6083 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2004-04-03eban2004-04-031-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6082 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * Fixed a bug in the evaluation of XPath's 'or'ser2004-04-032-12/+18
| | | | | | | | * deprecated #type changed to class.name * XPath's union was was being incorrectly interpreted git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6081 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2004-04-02eban2004-04-021-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6074 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* REXML changesser2004-04-024-7/+12
| | | | | | | | | | | | | | | * The main purpose for this change is to get a fix in for nasty bug in XPath. In the new code for the descendant-or-self axis, the document order code was calling the wrong method to do node comparisons, causing a terrible overhead that slowed the axis down to the point where it was unusable. This is a common axis, also known as '//', so this fix is critical. * Using Element#text= on a non-Text, non-String argument caused an error. this has been changed so that the behavior is like puts() -- to_s() is called on the object first. * refactored the pretty-printing code a little. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6073 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* REXML changes backported from the 1.9 branch:ser2004-04-0216-91/+141
| | | | | | | | | | | | | | | | | | | | * Minor source documentation changes * Changes to the pretty-printing code, including the addition of the word- wrap submission. * Bug fix for missing quotations in NOTATION DTD items * Bug fixes and improvements to whitespace handling in text nodes * Refactoring and bug fixes in encoding support * Minor speed optimizations in the core parser * Bug fixes in the SAX2 parserthe core parser * Copyright fixes * Version bump to REXML 3.0.0 * A change that caused speed degredation has been reversed * Addition of a value=() method in Text, for replacing the contents of a text node * Fixed the document order of the descendant-or-self axis in XPath git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6071 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Fix parse bug with toplevel methods. Allow RDoc in =begin rdoc/=end comments ↵dave2004-04-024-26/+57
| | | | | | (experimental) git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6066 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2004-04-01nahi2004-04-011-4/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6064 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* add test_symmetry_bignum.akr2004-04-011-0/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6063 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/soap/mapping/{factory.rb,registry.rb}: fixed illegal mapped URInahi2004-04-015-8/+48
| | | | | | | | | | | | | | | | | | | object with soap/marshal. added URIFactory class for URI mapping. BasetypeFactory checks instance_variables when original mapping is not allowed (ivar must be empty). Instance of URI have instance_variables but it must be llowed whenever original mapping is allowed or not. * lib/xsd/datatypes.rb: check the smallest positive non-zero single-precision float exactly instead of packing with "f". [ruby-talk:88822] * lib/soap/mapping/rubytypeFactory.rb: should not dump singleton class. [ruby-dev:22588] c = class << Object.new; class C; self; end; end; SOAPMarshal.dump(c) git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6062 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * time.c (year_leap_p): new function.akr2004-03-312-8/+95
| | | | | | | | | (timegm_noleapsecond): ditto. (search_time_t): use timegm_noleapsecond instead of mktime for first guess. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6057 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2004-03-31nobu2004-03-311-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6056 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * intern.h: provide proper prototypes. [ruby-core:02724]nobu2004-03-313-6/+10
| | | | | | | * ruby.h: missing.h is now prerequisite to intern.h. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6055 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/delegate.rb (DelegateClass): define internal methods of thenobu2004-03-312-7/+12
| | | | | | | result class, but not metaclass of the caller. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6053 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * time.c (search_time_t): limit guess range by mktime if it isakr2004-03-302-0/+14
| | | | | | | available. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6050 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* fix typo.akr2004-03-283-4/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6042 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2004-03-28nobu2004-03-281-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6041 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/net/pop.rb (auth): failed when account/password include "%". ↵aamine2004-03-282-2/+7
| | | | | | [ruby-talk:95933] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6038 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * (lib/open-uri.rb): permit extra semicolon in content-type field.akr2004-03-272-2/+7
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6035 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2004-03-27eban2004-03-271-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6034 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * (lib/pp.rb, lib/prettyprint.rb): define seplist in PP::PPMethodsakr2004-03-273-39/+51
| | | | | | | instead of PrettyPrint. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6033 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Add --version option to ridave2004-03-252-2/+21
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6028 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2004-03-25eban2004-03-251-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6021 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Add the --list-names optiondave2004-03-247-8/+75
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6020 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Must now use "::" to separate nested classes. This fixes bug where "ri ↵dave2004-03-242-0/+7
| | | | | | Kernel.Array" was looking for a class called Array git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6019 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Get --one-page working with C codedave2004-03-242-1/+12
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6018 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Move "y" documentation to correct placedave2004-03-241-15/+16
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/uri.rb: Documented (thanks Dmitry V. Sabanin).gsinclair2004-03-249-979/+979
| | | | | | | | | | | | | | * lib/uri/common.rb: Ditto. * lib/uri/ftp.rb: Ditto. * lib/uri/generic.rb: Ditto. * lib/uri/http.rb: Ditto. * lib/uri/https.rb: Ditto. * lib/uri/ldap.rb: Ditto. * lib/uri/mailto.rb: Ditto. (All backported from 1.9) git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6016 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2004-03-24nobu2004-03-241-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6014 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/mkmf.rb ($ruby, $topdir, $hdrdir): should not be affected bynobu2004-03-242-10/+22
| | | | | | | | | | | | DESTDIR after installed. * lib/mkmf.rb (RUBY): / is not recognized as path separator on nmake/bmake. [ruby-list:39388] * lib/mkmf.rb (init_mkmf): $INCFLAGS also should be lazy-evaluated. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6013 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Don't be as eager to invent classes to documentdave2004-03-243-4/+17
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6010 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Allow templates to be specified outside the RDoc treedave2004-03-243-3/+14
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6008 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2004-03-22eban2004-03-221-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6000 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ruby.1: add -width option to .Bl for old groff.eban2004-03-222-1/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5999 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2004-03-21eban2004-03-211-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5995 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/shell/*: bug fix for Shell#system(command_line_string).keiju2004-03-214-9/+20
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5994 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* lib/scanf.rbdblack2004-03-201-0/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5985 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Backported 1.9 branch modifications/corrections to 1.8 branchdblack2004-03-201-12/+17
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5984 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Force RDoc html background to whitedave2004-03-202-0/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5983 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2004-03-20eban2004-03-201-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5982 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* synchronized with date2 3.6.tadf2004-03-203-12/+41
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5981 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2004-03-19usa2004-03-191-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5979 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * io.c (rb_io_sync): need not to check writable. [ruby-core:02674]matz2004-03-193-2/+11
| | | | | | | | * eval.c (proc_eq): avoid false positive by using scope and dyna_vars. no longer use frame.uniq. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5978 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* backport drb.rb 1.16seki2004-03-182-1/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2004-03-17nobu2004-03-171-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5967 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * dir.c (range): fix possible "\0" overrun. (in case of "\0-")ocean2004-03-172-9/+13
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5966 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2004-03-15eban2004-03-151-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5954 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_yield_0): should not re-submit TAG_BREAK if thismatz2004-03-158-7/+18
| | | | | | | yield is not break destination. [ruby-dev:23197] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5953 b2dd03c8-39d4-4d8f-98ff-823fe69b080e