[前][次][番号順一覧][スレッド一覧]

ruby-changes:2105

From: ko1@a...
Date: 2 Oct 2007 10:47:05 +0900
Subject: [ruby-changes:2105] ser - Ruby:r13596 (trunk): r1367@bean: ser | 2007-10-01 21:24:35 -0400

ser	2007-10-02 10:46:50 +0900 (Tue, 02 Oct 2007)

  New Revision: 13596

  Added files:
    trunk/lib/rexml/undefinednamespaceexception.rb
  Modified directories:
    trunk/lib/rexml/

  Log:
     r1367@bean:  ser | 2007-10-01 21:24:35 -0400
      r1354@bean:  ser | 2007-09-13 08:23:09 -0400
      Eggbeater missed one.
     

  Modified: trunk/lib/rexml/

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/lib/rexml?r1=13596&r2=13595
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/lib/rexml/undefinednamespaceexception.rb?revision=13596&view=markup

Index: lib/rexml/undefinednamespaceexception.rb
===================================================================
--- lib/rexml/undefinednamespaceexception.rb	(revision 0)
+++ lib/rexml/undefinednamespaceexception.rb	(revision 13596)
@@ -0,0 +1,8 @@
+require 'rexml/parseexception'
+module REXML
+  class UndefinedNamespaceException < ParseException
+    def initialize( prefix, source, parser )
+      super( "Undefined prefix #{prefix} found" )
+    end
+  end
+end

Property changes on: lib/rexml
___________________________________________________________________
Name: svk:merge
   - 3a3bbbf4-582e-0410-a78b-8bf2211dae1f:/local/rexml-trunk/src/rexml:1287
3a3bbbf4-582e-0410-a78b-8bf2211dae1f:/local/rexml/trunk/src/rexml:1352
3a3bbbf4-582e-0410-a78b-8bf2211dae1f:/local/ruby-1.8.6:1304
3a3bbbf4-582e-0410-a78b-8bf2211dae1f:/local/ruby-trunk:1366
877f57f0-f5bd-0310-8c13-bb9e5bdefd87:/branches/3.1.7/src/rexml:1274
   + 3a3bbbf4-582e-0410-a78b-8bf2211dae1f:/local/rexml-trunk/src/rexml:1287
3a3bbbf4-582e-0410-a78b-8bf2211dae1f:/local/rexml/trunk/src/rexml:1354
3a3bbbf4-582e-0410-a78b-8bf2211dae1f:/local/ruby-1.8.6:1304
3a3bbbf4-582e-0410-a78b-8bf2211dae1f:/local/ruby-trunk:1367
877f57f0-f5bd-0310-8c13-bb9e5bdefd87:/branches/3.1.7/src/rexml:1274


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml

[前][次][番号順一覧][スレッド一覧]