Skip to content

Commit

Permalink
Rename contact-eis-1.1.xsd schema to contact-ee-1.1.xsd
Browse files Browse the repository at this point in the history
  • Loading branch information
Artur Beljajev committed Dec 6, 2016
1 parent cbcbcff commit 3a71078
Show file tree
Hide file tree
Showing 8 changed files with 72 additions and 72 deletions.
2 changes: 1 addition & 1 deletion app/views/epp/contacts/create.xml.builder
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ xml.epp_head do
end

xml.resData do
xml.tag!('contact:creData', 'xmlns:contact' => 'https://epp.tld.ee/schema/contact-eis-1.1.xsd') do
xml.tag!('contact:creData', 'xmlns:contact' => 'https://epp.tld.ee/schema/contact-ee-1.1.xsd') do
xml.tag!('contact:id', @contact.code)
xml.tag!('contact:crDate', @contact.created_at.try(:iso8601))
end
Expand Down
2 changes: 1 addition & 1 deletion app/views/epp/contacts/update.xml.builder
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ xml.epp_head do
end

xml.resData do
xml.tag!('contact:creData', 'xmlns:contact' => 'https://epp.tld.ee/schema/contact-eis-1.1.xsd') do
xml.tag!('contact:creData', 'xmlns:contact' => 'https://epp.tld.ee/schema/contact-ee-1.1.xsd') do
xml.tag!('contact:id', @contact.code)
xml.tag!('contact:crDate', @contact.created_at.try(:iso8601))
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
<command>
<create>
<contact:create xmlns:contact="https://epp.tld.ee/schema/contact-eis-1.1.xsd">
<contact:create xmlns:contact="https://epp.tld.ee/schema/contact-ee-1.1.xsd">
<contact:postalInfo>
<contact:name>Sillius Soddus</contact:name>
<contact:addr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
<command>
<update>
<contact:update xmlns:contact="https://epp.tld.ee/schema/contact-eis-1.1.xsd">
<contact:update xmlns:contact="https://epp.tld.ee/schema/contact-ee-1.1.xsd">
<contact:id>sh8013</contact:id>
<contact:chg>
<contact:postalInfo>
Expand Down
124 changes: 62 additions & 62 deletions doc/epp-examples.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions doc/epp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
* [keyrelay-1.0.xsd](/lib/schemas/keyrelay-1.0.xsd)
* [secDNS-1.1.xsd](/lib/schemas/secDNS-1.1.xsd)

### EIS-specific
### .EE-specific
* [domain-eis-1.0.xsd](/lib/schemas/domain-eis-1.0.xsd)
* [contact-eis-1.0.xsd](/lib/schemas/contact-eis-1.0.xsd)
* [contact-eis-1.1.xsd](/lib/schemas/contact-eis-1.1.xsd)
* [contact-ee-1.1.xsd](/lib/schemas/contact-ee-1.1.xsd)
* [eis-1.0.xsd](/lib/schemas/eis-1.0.xsd)

More info about The Extensible Provisioning Protocol (EPP):
Expand Down
4 changes: 2 additions & 2 deletions doc/epp/contact.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ More info: https://en.wikipedia.org/wiki/Latin_script_in_Unicode
Field name Min-max Field description
----------------------- ------- -----------------
<create> 1
<contact:create> 1 Attribute: xmlns:contact="https://epp.tld.ee/schema/contact-eis-1.1.xsd"
<contact:create> 1 Attribute: xmlns:contact="https://epp.tld.ee/schema/contact-ee-1.1.xsd"
<contact:id> 0-1 Contact id, optional,
string: ASCII letters, numbers, ':', '-' characters, no spaces,
max 100 characters,
Expand Down Expand Up @@ -53,7 +53,7 @@ More info: https://en.wikipedia.org/wiki/Latin_script_in_Unicode
Field name Min-max Field description
----------------------- ------- -----------------
<update> 1
<contact:update> 1 Attribute: xmlns:contact="https://epp.tld.ee/schema/contact-eis-1.1.xsd"
<contact:update> 1 Attribute: xmlns:contact="https://epp.tld.ee/schema/contact-ee-1.1.xsd"
<contact:id> 1 Contact id, required
<contact:chg> 1 Change container
<contact:postalInfo> 1 Postal information container
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>

<schema targetNamespace="https://epp.tld.ee/schema/contact-eis-1.1.xsd"
xmlns:contact="https://epp.tld.ee/schema/contact-eis-1.1.xsd"
<schema targetNamespace="https://epp.tld.ee/schema/contact-ee-1.1.xsd"
xmlns:contact="https://epp.tld.ee/schema/contact-ee-1.1.xsd"
xmlns:epp="urn:ietf:params:xml:ns:epp-1.0"
xmlns:eppcom="urn:ietf:params:xml:ns:eppcom-1.0"
xmlns="http://www.w3.org/2001/XMLSchema"
Expand Down

0 comments on commit 3a71078

Please sign in to comment.