|
Revision 1824, 0.7 kB
(checked in by nahi, 1 year ago)
|
- Copyright notice updated. add '2000-2007' uniformly.
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
author date id revision
|
| Line | |
|---|
| 1 |
# XSD4R - XML Schema Datatype 1999 support |
|---|
| 2 |
# Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>. |
|---|
| 3 |
|
|---|
| 4 |
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can |
|---|
| 5 |
# redistribute it and/or modify it under the same terms of Ruby's license; |
|---|
| 6 |
# either the dual license version in 2003, or any later version. |
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
require 'xsd/datatypes' |
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
module XSD |
|---|
| 13 |
Namespace.replace('http://www.w3.org/1999/XMLSchema') |
|---|
| 14 |
InstanceNamespace.replace('http://www.w3.org/1999/XMLSchema-instance') |
|---|
| 15 |
AnyTypeLiteral.replace('ur-type') |
|---|
| 16 |
AnySimpleTypeLiteral.replace('ur-type') |
|---|
| 17 |
NilLiteral.replace('null') |
|---|
| 18 |
NilValue.replace('1') |
|---|
| 19 |
DateTimeLiteral.replace('timeInstant') |
|---|
| 20 |
end |
|---|