File: domentityresolver.rb

package info (click to toggle)
libxml-parser-ruby 0.6.8-4
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 932 kB
  • ctags: 1,525
  • sloc: ruby: 11,080; ansic: 1,958; xml: 467; makefile: 6
file content (13 lines) | stat: -rw-r--r-- 249 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
## -*- Ruby -*-
## XML::DOM::DOMEntityResolver
## 2001 by yoshidam
##

module XML
  module DOM
    module DOMEntityResolver
      ## DOMInputSource resolveEntity(publicId, systemId)
      def resolveEntity(publicId, systemId); end
    end
  end
end