epp-client-rgp 0.11.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,133 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <schema targetNamespace="urn:ietf:params:xml:ns:rgp-1.0"
4
+ xmlns:rgp="urn:ietf:params:xml:ns:rgp-1.0"
5
+ xmlns="http://www.w3.org/2001/XMLSchema"
6
+ elementFormDefault="qualified">
7
+
8
+ <annotation>
9
+ <documentation>
10
+ Extensible Provisioning Protocol v1.0
11
+ domain name extension schema for registry grace period
12
+ processing.
13
+ </documentation>
14
+ </annotation>
15
+
16
+ <!--
17
+ Child elements found in EPP commands.
18
+ -->
19
+ <element name="update" type="rgp:updateType"/>
20
+
21
+ <!--
22
+ Child elements of the <update> command for the
23
+ redemption grace period.
24
+ -->
25
+ <complexType name="updateType">
26
+ <sequence>
27
+ <element name="restore" type="rgp:restoreType"/>
28
+ </sequence>
29
+ </complexType>
30
+
31
+ <complexType name="restoreType">
32
+ <sequence>
33
+ <element name="report" type="rgp:reportType"
34
+ minOccurs="0"/>
35
+ </sequence>
36
+ <attribute name="op" type="rgp:rgpOpType" use="required"/>
37
+ </complexType>
38
+
39
+ <!--
40
+ New redemption grace period operations can be defined
41
+ by adding to this enumeration.
42
+ -->
43
+ <simpleType name="rgpOpType">
44
+ <restriction base="token">
45
+ <enumeration value="request"/>
46
+ <enumeration value="report"/>
47
+ </restriction>
48
+ </simpleType>
49
+
50
+ <complexType name="reportType">
51
+ <sequence>
52
+ <element name="preData" type="rgp:mixedType"/>
53
+ <element name="postData" type="rgp:mixedType"/>
54
+ <element name="delTime" type="dateTime"/>
55
+ <element name="resTime" type="dateTime"/>
56
+ <element name="resReason" type="rgp:reportTextType"/>
57
+ <element name="statement" type="rgp:reportTextType"
58
+ maxOccurs="2"/>
59
+ <element name="other" type="rgp:mixedType"
60
+ minOccurs="0"/>
61
+ </sequence>
62
+ </complexType>
63
+
64
+ <complexType name="mixedType">
65
+ <complexContent mixed="true">
66
+ <restriction base="anyType">
67
+ <sequence>
68
+ <any processContents="lax"
69
+ minOccurs="0" maxOccurs="unbounded"/>
70
+ </sequence>
71
+ </restriction>
72
+ </complexContent>
73
+ </complexType>
74
+
75
+ <complexType name="reportTextType">
76
+ <complexContent mixed="true">
77
+ <restriction base="anyType">
78
+ <sequence>
79
+ <any processContents="lax"
80
+ minOccurs="0" maxOccurs="unbounded"/>
81
+ </sequence>
82
+ <attribute name="lang" type="language" default="en"/>
83
+ </restriction>
84
+ </complexContent>
85
+ </complexType>
86
+
87
+ <!--
88
+ Child response elements.
89
+ -->
90
+ <element name="infData" type="rgp:respDataType"/>
91
+ <element name="upData" type="rgp:respDataType"/>
92
+
93
+ <!--
94
+ Response elements.
95
+ -->
96
+ <complexType name="respDataType">
97
+ <sequence>
98
+ <element name="rgpStatus" type="rgp:statusType"
99
+ maxOccurs="unbounded"/>
100
+ </sequence>
101
+ </complexType>
102
+
103
+ <!--
104
+ Status is a combination of attributes and an optional
105
+ human-readable message that may be expressed in languages
106
+ other than English.
107
+ -->
108
+ <complexType name="statusType">
109
+ <simpleContent>
110
+ <extension base="normalizedString">
111
+ <attribute name="s" type="rgp:statusValueType"
112
+ use="required"/>
113
+ <attribute name="lang" type="language" default="en"/>
114
+ </extension>
115
+ </simpleContent>
116
+ </complexType>
117
+
118
+ <simpleType name="statusValueType">
119
+ <restriction base="token">
120
+ <enumeration value="addPeriod"/>
121
+ <enumeration value="autoRenewPeriod"/>
122
+ <enumeration value="renewPeriod"/>
123
+ <enumeration value="transferPeriod"/>
124
+ <enumeration value="pendingDelete"/>
125
+ <enumeration value="pendingRestore"/>
126
+ <enumeration value="redemptionPeriod"/>
127
+ </restriction>
128
+ </simpleType>
129
+
130
+ <!--
131
+ End of schema.
132
+ -->
133
+ </schema>
metadata ADDED
@@ -0,0 +1,124 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: epp-client-rgp
3
+ version: !ruby/object:Gem::Version
4
+ hash: 51
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 11
9
+ - 0
10
+ version: 0.11.0
11
+ platform: ruby
12
+ authors:
13
+ - Mathieu Arnold
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-05-14 00:00:00 Z
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: bundler
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ hash: 23
29
+ segments:
30
+ - 1
31
+ - 0
32
+ - 0
33
+ version: 1.0.0
34
+ type: :development
35
+ version_requirements: *id001
36
+ - !ruby/object:Gem::Dependency
37
+ name: nokogiri
38
+ prerelease: false
39
+ requirement: &id002 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ~>
43
+ - !ruby/object:Gem::Version
44
+ hash: 7
45
+ segments:
46
+ - 1
47
+ - 4
48
+ version: "1.4"
49
+ type: :runtime
50
+ version_requirements: *id002
51
+ - !ruby/object:Gem::Dependency
52
+ name: builder
53
+ prerelease: false
54
+ requirement: &id003 !ruby/object:Gem::Requirement
55
+ none: false
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ hash: 15
60
+ segments:
61
+ - 2
62
+ - 1
63
+ - 2
64
+ version: 2.1.2
65
+ type: :runtime
66
+ version_requirements: *id003
67
+ description: RGP EPP client library.
68
+ email:
69
+ - m@absolight.fr
70
+ executables: []
71
+
72
+ extensions: []
73
+
74
+ extra_rdoc_files: []
75
+
76
+ files:
77
+ - ChangeLog
78
+ - Gemfile
79
+ - MIT-LICENSE
80
+ - README
81
+ - Rakefile
82
+ - epp-client-rgp.gemspec
83
+ - lib/epp-client/rgp.rb
84
+ - vendor/ietf/rfc3915.txt
85
+ - vendor/ietf/rgp-1.0.xsd
86
+ homepage: https://github.com/Absolight/epp-client
87
+ licenses: []
88
+
89
+ post_install_message:
90
+ rdoc_options: []
91
+
92
+ require_paths:
93
+ - lib
94
+ required_ruby_version: !ruby/object:Gem::Requirement
95
+ none: false
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ hash: 57
100
+ segments:
101
+ - 1
102
+ - 8
103
+ - 7
104
+ version: 1.8.7
105
+ required_rubygems_version: !ruby/object:Gem::Requirement
106
+ none: false
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ hash: 23
111
+ segments:
112
+ - 1
113
+ - 3
114
+ - 6
115
+ version: 1.3.6
116
+ requirements: []
117
+
118
+ rubyforge_project:
119
+ rubygems_version: 1.8.16
120
+ signing_key:
121
+ specification_version: 3
122
+ summary: RGP EPP client library
123
+ test_files: []
124
+