Changeset 1599
- Timestamp:
- 07/27/05 23:35:43 (3 years ago)
- Files:
-
- trunk/lib/wsdl/xmlSchema/importer.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/wsdl/xmlSchema/importer.rb
r1574 r1599 49 49 (location.relative? and FileTest.exist?(location.path)) 50 50 content = File.open(location.path).read 51 elsif location.scheme and location.scheme.size == 1 and 52 FileTest.exist?(location.to_s) 53 # ToDo: remove this ugly workaround for a path with drive letter 54 # (D://foo/bar) 55 content = File.open(location.to_s).read 51 56 else 52 57 client = web_client.new(nil, "WSDL4R")