whois 2.0.7 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +84 -10
- data/Rakefile +0 -7
- data/lib/core_ext.rb +9 -45
- data/lib/core_ext/array/extract_options.rb +29 -0
- data/lib/core_ext/array/wrap.rb +48 -0
- data/lib/core_ext/class/attribute.rb +115 -0
- data/lib/core_ext/date_time/conversions.rb +15 -0
- data/lib/core_ext/kernel/singleton_class.rb +13 -0
- data/lib/core_ext/module/remove_method.rb +16 -0
- data/lib/whois.rb +0 -4
- data/lib/whois/definitions/tlds.rb +10 -5
- data/lib/whois/record.rb +0 -3
- data/lib/whois/record/parser.rb +3 -3
- data/lib/whois/record/parser/NOTES.txt +15 -8
- data/lib/whois/record/parser/base.rb +12 -35
- data/lib/whois/record/parser/base_afilias.rb +156 -0
- data/lib/whois/record/parser/example.rb +8 -4
- data/lib/whois/record/parser/jobswhois.verisign-grs.com.rb +2 -2
- data/lib/whois/record/parser/scanners/afilias.rb +13 -4
- data/lib/whois/record/parser/{features → scanners}/ast.rb +1 -1
- data/lib/whois/record/parser/scanners/base.rb +9 -0
- data/lib/whois/record/parser/scanners/cnnic.rb +2 -2
- data/lib/whois/record/parser/scanners/{whoisbiz.rb → whois.biz.rb} +2 -8
- data/lib/whois/record/parser/scanners/whois.denic.de.rb +117 -0
- data/lib/whois/record/parser/scanners/whois.nic.hu.rb +187 -0
- data/lib/whois/record/parser/scanners/{whoisit.rb → whois.nic.it.rb} +2 -2
- data/lib/whois/record/parser/scanners/whois.registry.qa.rb +54 -0
- data/lib/whois/record/parser/scanners/whois.tld.ee.rb +41 -0
- data/lib/whois/record/parser/whois.aero.rb +8 -46
- data/lib/whois/record/parser/whois.afilias-grs.info.rb +2 -51
- data/lib/whois/record/parser/whois.afilias.info.rb +2 -126
- data/lib/whois/record/parser/whois.biz.rb +6 -6
- data/lib/whois/record/parser/whois.cnnic.cn.rb +5 -5
- data/lib/whois/record/parser/whois.crsnic.net.rb +2 -2
- data/lib/whois/record/parser/whois.denic.de.rb +8 -105
- data/lib/whois/record/parser/whois.dotmobiregistry.net.rb +2 -51
- data/lib/whois/record/parser/whois.godaddy.com.rb +138 -0
- data/lib/whois/record/parser/whois.iana.org.rb +2 -2
- data/lib/whois/record/parser/whois.markmonitor.com.rb +13 -12
- data/lib/whois/record/parser/whois.meregistry.net.rb +45 -30
- data/lib/whois/record/parser/whois.nic.af.rb +6 -2
- data/lib/whois/record/parser/whois.nic.ag.rb +2 -51
- data/lib/whois/record/parser/whois.nic.asia.rb +47 -38
- data/lib/whois/record/parser/whois.nic.cc.rb +2 -2
- data/lib/whois/record/parser/whois.nic.hu.rb +7 -174
- data/lib/whois/record/parser/whois.nic.it.rb +6 -6
- data/lib/whois/record/parser/whois.nic.name.rb +1 -5
- data/lib/whois/record/parser/whois.nic.travel.rb +4 -12
- data/lib/whois/record/parser/whois.nic.tv.rb +2 -2
- data/lib/whois/record/parser/whois.nic.us.rb +4 -4
- data/lib/whois/record/parser/whois.nic.xxx.rb +5 -112
- data/lib/whois/record/parser/whois.publicinterestregistry.net.rb +8 -168
- data/lib/whois/record/parser/whois.registry.in.rb +2 -60
- data/lib/whois/record/parser/whois.registry.qa.rb +117 -0
- data/lib/whois/record/parser/whois.ripn.net.rb +4 -84
- data/lib/whois/record/parser/whois.sgnic.sg.rb +13 -5
- data/lib/whois/record/parser/whois.tcinet.ru.rb +102 -0
- data/lib/whois/record/parser/whois.tld.ee.rb +5 -26
- data/lib/whois/record/parser/whois.tonic.to.rb +0 -8
- data/lib/whois/server/adapters/base.rb +23 -10
- data/lib/whois/version.rb +2 -2
- data/spec/fixtures/responses/FIND.txt +1 -0
- data/spec/fixtures/responses/whois.aero/status_available.expected +35 -1
- data/spec/fixtures/responses/whois.aero/status_registered.expected +77 -1
- data/spec/fixtures/responses/whois.afilias-grs.info/bz/status_available.expected +34 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/bz/status_registered.expected +39 -2
- data/spec/fixtures/responses/whois.afilias-grs.info/bz/status_registered.txt +2 -82
- data/spec/fixtures/responses/whois.afilias-grs.info/gi/status_available.expected +34 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/gi/status_registered.expected +76 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/hn/status_available.expected +34 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/hn/status_registered.expected +76 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/lc/status_available.expected +34 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/lc/status_registered.expected +76 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/mn/status_available.expected +34 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/mn/status_registered.expected +76 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/sc/status_available.expected +57 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/sc/status_registered.expected +76 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/vc/status_available.expected +34 -0
- data/spec/fixtures/responses/whois.afilias-grs.info/vc/status_registered.expected +76 -0
- data/spec/fixtures/responses/whois.dotmobiregistry.net/status_available.expected +35 -0
- data/spec/fixtures/responses/whois.dotmobiregistry.net/status_available.txt +1 -25
- data/spec/fixtures/responses/whois.dotmobiregistry.net/status_registered.expected +76 -0
- data/spec/fixtures/responses/whois.educause.edu/{properties_updated_on_unknown.expected → property_updated_on_unknown.expected} +0 -0
- data/spec/fixtures/responses/whois.educause.edu/{properties_updated_on_unknown.txt → property_updated_on_unknown.txt} +0 -0
- data/spec/fixtures/responses/whois.godaddy.com/status_registered.expected +87 -0
- data/spec/fixtures/responses/whois.godaddy.com/status_registered.txt +60 -0
- data/spec/fixtures/responses/whois.markmonitor.com/{properties_empty_contacts.expected → property_contacts_are_blank.expected} +0 -0
- data/spec/fixtures/responses/whois.markmonitor.com/{properties_empty_contacts.txt → property_contacts_are_blank.txt} +0 -0
- data/spec/fixtures/responses/whois.meregistry.net/{property_nameservers_is_missing.expected → property_nameservers_is_blank.expected} +0 -0
- data/spec/fixtures/responses/whois.meregistry.net/{property_nameservers_is_missing.txt → property_nameservers_is_blank.txt} +0 -0
- data/spec/fixtures/responses/whois.meregistry.net/status_available.expected +34 -0
- data/spec/fixtures/responses/whois.meregistry.net/status_registered.expected +77 -0
- data/spec/fixtures/responses/whois.meregistry.net/status_registered.txt +1 -1
- data/spec/fixtures/responses/{whois.nic.asia/property_status_client_delete_prohibited.expected → whois.nic.af/property_status_active.expected} +0 -0
- data/spec/fixtures/responses/whois.nic.af/property_status_active.txt +56 -0
- data/spec/fixtures/responses/{whois.nic.asia/property_status_client_transfer_prohibited.expected → whois.nic.af/property_status_delegated.expected} +0 -0
- data/spec/fixtures/responses/whois.nic.af/property_status_delegated.txt +46 -0
- data/spec/fixtures/responses/whois.nic.af/property_status_not_registered.expected +8 -0
- data/spec/fixtures/responses/whois.nic.af/property_status_not_registered.txt +13 -0
- data/spec/fixtures/responses/whois.nic.ag/status_available.expected +34 -0
- data/spec/fixtures/responses/whois.nic.ag/status_registered.expected +76 -0
- data/spec/fixtures/responses/whois.nic.asia/property_status_multiple.expected +8 -0
- data/spec/fixtures/responses/whois.nic.asia/{property_status_client_delete_prohibited.txt → property_status_multiple.txt} +0 -0
- data/spec/fixtures/responses/whois.nic.asia/property_status_single.expected +8 -0
- data/spec/fixtures/responses/whois.nic.asia/{property_status_client_transfer_prohibited.txt → property_status_single.txt} +76 -76
- data/spec/fixtures/responses/whois.nic.asia/status_available.expected +35 -1
- data/spec/fixtures/responses/whois.nic.asia/status_registered.expected +78 -1
- data/spec/fixtures/responses/whois.nic.dz/{status_available.expected → dz/status_available.expected} +0 -0
- data/spec/fixtures/responses/whois.nic.dz/{status_available.txt → dz/status_available.txt} +0 -0
- data/spec/fixtures/responses/whois.nic.dz/{status_registered.expected → dz/status_registered.expected} +0 -0
- data/spec/fixtures/responses/whois.nic.dz/{status_registered.txt → dz/status_registered.txt} +0 -0
- data/spec/fixtures/responses/whois.nic.name/status_available.expected +1 -1
- data/spec/fixtures/responses/whois.nic.name/status_registered.expected +1 -1
- data/spec/fixtures/responses/whois.nic.travel/property_status_multiple.expected +2 -0
- data/spec/fixtures/responses/whois.nic.travel/property_status_multiple.txt +83 -0
- data/spec/fixtures/responses/whois.nic.travel/property_status_single.expected +2 -0
- data/spec/fixtures/responses/whois.nic.travel/property_status_single.txt +75 -0
- data/spec/fixtures/responses/whois.nic.travel/status_available.expected +1 -1
- data/spec/fixtures/responses/whois.nic.travel/status_registered.expected +1 -1
- data/spec/fixtures/responses/whois.nic.xxx/property_updated_on_blank.expected +2 -0
- data/spec/fixtures/responses/whois.nic.xxx/property_updated_on_blank.txt +98 -0
- data/spec/fixtures/responses/whois.nic.xxx/status_registered.expected +45 -46
- data/spec/fixtures/responses/whois.nic.xxx/status_registered.txt +61 -61
- data/spec/fixtures/responses/whois.publicinterestregistry.net/status_available.expected +1 -1
- data/spec/fixtures/responses/whois.publicinterestregistry.net/status_registered.expected +8 -1
- data/spec/fixtures/responses/whois.registry.in/property_status_missing.expected +1 -1
- data/spec/fixtures/responses/whois.registry.in/property_status_multiple.expected +1 -1
- data/spec/fixtures/responses/whois.registry.in/property_status_ok.expected +1 -1
- data/spec/fixtures/responses/whois.registry.in/status_available.expected +31 -1
- data/spec/fixtures/responses/whois.registry.in/status_registered.expected +70 -1
- data/spec/fixtures/responses/whois.registry.qa/qa/status_available.expected +56 -0
- data/spec/fixtures/responses/whois.registry.qa/qa/status_available.txt +1 -0
- data/spec/fixtures/responses/whois.registry.qa/qa/status_registered.expected +91 -0
- data/spec/fixtures/responses/whois.registry.qa/qa/status_registered.txt +23 -0
- data/spec/fixtures/responses/whois.sgnic.sg/property_nameservers_schema_1_with_ip.expected +12 -0
- data/spec/fixtures/responses/whois.sgnic.sg/property_nameservers_schema_1_with_ip.txt +94 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/ru/property_nameservers_with_ip.expected +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/ru/property_nameservers_with_ip.txt +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/ru/status_available.expected +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/ru/status_available.txt +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/ru/status_registered.expected +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/ru/status_registered.txt +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/su/status_available.expected +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/su/status_available.txt +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/su/status_registered.expected +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/su/status_registered.txt +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/xn--p1ai/status_available.expected +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/xn--p1ai/status_available.txt +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/xn--p1ai/status_registered.expected +0 -0
- data/spec/fixtures/responses/{whois.ripn.net → whois.tcinet.ru}/xn--p1ai/status_registered.txt +0 -0
- data/spec/integration_spec.rb +29 -12
- data/spec/support/helpers/spec_helper.rb +0 -10
- data/spec/tlds +1 -1
- data/spec/whois/record/parser/base_spec.rb +23 -51
- data/spec/whois/record/parser/responses/whois.aero/status_available_spec.rb +49 -1
- data/spec/whois/record/parser/responses/whois.aero/status_registered_spec.rb +91 -1
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/bz/status_available_spec.rb +48 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/bz/status_registered_spec.rb +53 -2
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/gi/status_available_spec.rb +48 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/gi/status_registered_spec.rb +90 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/hn/status_available_spec.rb +48 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/hn/status_registered_spec.rb +90 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/lc/status_available_spec.rb +48 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/lc/status_registered_spec.rb +90 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/mn/status_available_spec.rb +48 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/mn/status_registered_spec.rb +90 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/sc/status_available_spec.rb +48 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/sc/status_registered_spec.rb +90 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/vc/status_available_spec.rb +48 -0
- data/spec/whois/record/parser/responses/whois.afilias-grs.info/vc/status_registered_spec.rb +90 -0
- data/spec/whois/record/parser/responses/whois.dotmobiregistry.net/status_available_spec.rb +48 -0
- data/spec/whois/record/parser/responses/whois.dotmobiregistry.net/status_registered_spec.rb +90 -0
- data/spec/whois/record/parser/responses/whois.educause.edu/{properties_updated_on_unknown_spec.rb → property_updated_on_unknown_spec.rb} +3 -3
- data/spec/whois/record/parser/responses/whois.godaddy.com/status_registered_spec.rb +131 -0
- data/spec/whois/record/parser/responses/whois.markmonitor.com/{properties_empty_contacts_spec.rb → property_contacts_are_blank_spec.rb} +3 -3
- data/spec/whois/record/parser/responses/whois.meregistry.net/{property_nameservers_is_missing_spec.rb → property_nameservers_is_blank_spec.rb} +3 -3
- data/spec/whois/record/parser/responses/whois.meregistry.net/status_available_spec.rb +48 -0
- data/spec/whois/record/parser/responses/whois.meregistry.net/status_registered_spec.rb +91 -0
- data/spec/whois/record/parser/responses/whois.nic.af/property_status_active_spec.rb +39 -0
- data/spec/whois/record/parser/responses/whois.nic.af/property_status_delegated_spec.rb +39 -0
- data/spec/whois/record/parser/responses/whois.nic.af/property_status_not_registered_spec.rb +39 -0
- data/spec/whois/record/parser/responses/whois.nic.ag/status_available_spec.rb +48 -0
- data/spec/whois/record/parser/responses/whois.nic.ag/status_registered_spec.rb +90 -0
- data/spec/whois/record/parser/responses/whois.nic.asia/{property_status_client_delete_prohibited_spec.rb → property_status_multiple_spec.rb} +4 -4
- data/spec/whois/record/parser/responses/whois.nic.asia/{property_status_client_transfer_prohibited_spec.rb → property_status_single_spec.rb} +4 -4
- data/spec/whois/record/parser/responses/whois.nic.asia/status_available_spec.rb +49 -1
- data/spec/whois/record/parser/responses/whois.nic.asia/status_registered_spec.rb +92 -1
- data/spec/whois/record/parser/responses/whois.nic.dz/{status_available_spec.rb → dz/status_available_spec.rb} +2 -2
- data/spec/whois/record/parser/responses/whois.nic.dz/{status_registered_spec.rb → dz/status_registered_spec.rb} +2 -2
- data/spec/whois/record/parser/responses/whois.nic.name/status_available_spec.rb +1 -1
- data/spec/whois/record/parser/responses/whois.nic.name/status_registered_spec.rb +1 -1
- data/spec/whois/record/parser/responses/whois.nic.travel/property_status_multiple_spec.rb +29 -0
- data/spec/whois/record/parser/responses/whois.nic.travel/property_status_single_spec.rb +29 -0
- data/spec/whois/record/parser/responses/whois.nic.travel/status_available_spec.rb +1 -1
- data/spec/whois/record/parser/responses/whois.nic.travel/status_registered_spec.rb +1 -1
- data/spec/whois/record/parser/responses/whois.nic.xxx/property_updated_on_blank_spec.rb +29 -0
- data/spec/whois/record/parser/responses/whois.nic.xxx/status_registered_spec.rb +45 -46
- data/spec/whois/record/parser/responses/whois.publicinterestregistry.net/status_available_spec.rb +1 -1
- data/spec/whois/record/parser/responses/whois.publicinterestregistry.net/status_registered_spec.rb +11 -1
- data/spec/whois/record/parser/responses/whois.registry.in/property_status_missing_spec.rb +1 -1
- data/spec/whois/record/parser/responses/whois.registry.in/property_status_multiple_spec.rb +1 -1
- data/spec/whois/record/parser/responses/whois.registry.in/property_status_ok_spec.rb +1 -1
- data/spec/whois/record/parser/responses/whois.registry.in/status_available_spec.rb +44 -1
- data/spec/whois/record/parser/responses/whois.registry.in/status_registered_spec.rb +83 -1
- data/spec/whois/record/parser/responses/whois.registry.qa/qa/status_available_spec.rb +107 -0
- data/spec/whois/record/parser/responses/whois.registry.qa/qa/status_registered_spec.rb +142 -0
- data/spec/whois/record/parser/responses/whois.sgnic.sg/property_nameservers_schema_1_with_ip_spec.rb +39 -0
- data/spec/whois/record/parser/responses/{whois.ripn.net → whois.tcinet.ru}/ru/property_nameservers_with_ip_spec.rb +4 -4
- data/spec/whois/record/parser/responses/{whois.ripn.net/su → whois.tcinet.ru/ru}/status_available_spec.rb +4 -4
- data/spec/whois/record/parser/responses/{whois.ripn.net → whois.tcinet.ru}/ru/status_registered_spec.rb +4 -4
- data/spec/whois/record/parser/responses/{whois.ripn.net/ru → whois.tcinet.ru/su}/status_available_spec.rb +4 -4
- data/spec/whois/record/parser/responses/{whois.ripn.net → whois.tcinet.ru}/su/status_registered_spec.rb +4 -4
- data/spec/whois/record/parser/responses/{whois.ripn.net → whois.tcinet.ru}/xn--p1ai/status_available_spec.rb +4 -4
- data/spec/whois/record/parser/responses/{whois.ripn.net → whois.tcinet.ru}/xn--p1ai/status_registered_spec.rb +4 -4
- data/spec/whois/record_spec.rb +4 -4
- data/spec/whois/server/adapters/afilias_spec.rb +3 -3
- data/spec/whois/server/adapters/base_spec.rb +50 -10
- data/spec/whois/server/adapters/formatted_spec.rb +4 -4
- data/spec/whois/server/adapters/pir_spec.rb +3 -3
- data/spec/whois/server/adapters/standard_spec.rb +4 -4
- data/spec/whois/server/adapters/verisign_spec.rb +7 -7
- data/whois.gemspec +4 -4
- metadata +101 -57
- data/lib/whois/answer.rb +0 -14
@@ -0,0 +1,75 @@
|
|
1
|
+
Domain Name: TRAVEL.TRAVEL
|
2
|
+
Domain ID: D24096-TRAVEL
|
3
|
+
Sponsoring Registrar: NEUSTAR GATEWAY
|
4
|
+
Domain Status: ok
|
5
|
+
Registrant ID: TRALLIANCE
|
6
|
+
Registrant Name: Tralliance Corporation
|
7
|
+
Registrant Address1: 110 East Broward Blvd, 14th floor
|
8
|
+
Registrant City: Fort Lauderdale
|
9
|
+
Registrant State/Province: FL
|
10
|
+
Registrant Postal Code: 33301
|
11
|
+
Registrant Country: United States
|
12
|
+
Registrant Country Code: US
|
13
|
+
Registrant Phone Number: +1.9547695999
|
14
|
+
Registrant Email: info@tralliance.travel
|
15
|
+
Administrative Contact ID: TRALLIANCE
|
16
|
+
Administrative Contact Name: Tralliance Corporation
|
17
|
+
Administrative Contact Address1: 110 East Broward Blvd, 14th floor
|
18
|
+
Administrative Contact City: Fort Lauderdale
|
19
|
+
Administrative Contact State/Province: FL
|
20
|
+
Administrative Contact Postal Code: 33301
|
21
|
+
Administrative Contact Country: United States
|
22
|
+
Administrative Contact Country Code: US
|
23
|
+
Administrative Contact Phone Number: +1.9547695999
|
24
|
+
Administrative Contact Email: info@tralliance.travel
|
25
|
+
Billing Contact ID: TRALLIANCE
|
26
|
+
Billing Contact Name: Tralliance Corporation
|
27
|
+
Billing Contact Address1: 110 East Broward Blvd, 14th floor
|
28
|
+
Billing Contact City: Fort Lauderdale
|
29
|
+
Billing Contact State/Province: FL
|
30
|
+
Billing Contact Postal Code: 33301
|
31
|
+
Billing Contact Country: United States
|
32
|
+
Billing Contact Country Code: US
|
33
|
+
Billing Contact Phone Number: +1.9547695999
|
34
|
+
Billing Contact Email: info@tralliance.travel
|
35
|
+
Technical Contact ID: TRALLIANCE
|
36
|
+
Technical Contact Name: Tralliance Corporation
|
37
|
+
Technical Contact Address1: 110 East Broward Blvd, 14th floor
|
38
|
+
Technical Contact City: Fort Lauderdale
|
39
|
+
Technical Contact State/Province: FL
|
40
|
+
Technical Contact Postal Code: 33301
|
41
|
+
Technical Contact Country: United States
|
42
|
+
Technical Contact Country Code: US
|
43
|
+
Technical Contact Phone Number: +1.9547695999
|
44
|
+
Technical Contact Email: info@tralliance.travel
|
45
|
+
Name Server: NETSYS.COM
|
46
|
+
Name Server: NS01-MIA.THEGLOBE.COM
|
47
|
+
Created by Registrar: NEUSTAR GATEWAY
|
48
|
+
Last Updated by Registrar: NMUTONYI
|
49
|
+
Domain Registration Date: Tue Oct 04 21:44:27 GMT 2005
|
50
|
+
Domain Expiration Date: Sun Oct 03 23:59:59 GMT 2010
|
51
|
+
Domain Last Updated Date: Sun Jul 23 16:08:37 GMT 2006
|
52
|
+
|
53
|
+
>>>> Whois database was last updated on: Fri Dec 25 21:30:26 GMT 2009 <<<<
|
54
|
+
|
55
|
+
Tralliance, Inc., the Registry Operator for .travel, has collected this information
|
56
|
+
for the WHOIS database through an ICANN-Accredited Registrar. This information
|
57
|
+
is provided to you for informational purposes only and is designed to assist
|
58
|
+
persons in determining contents of a domain name registration record in the
|
59
|
+
Tralliance registry database. Tralliance makes this information available to you
|
60
|
+
"as is" and does not guarantee its accuracy. By submitting a WHOIS query, you
|
61
|
+
agree that you will use this data only for lawful purposes and that, under no
|
62
|
+
circumstances will you use this data: (1) to allow, enable, or otherwise
|
63
|
+
support the transmission of mass unsolicited, commercial advertising or
|
64
|
+
solicitations via direct mail, electronic mail, or by telephone; (2) in
|
65
|
+
contravention of any applicable data and privacy protection acts; or (3) to
|
66
|
+
enable high volume, automated, electronic processes that apply to the registry
|
67
|
+
(or its systems). Compilation, repackaging, dissemination, or other use of the
|
68
|
+
WHOIS database in its entirety, or of a substantial portion thereof, is not
|
69
|
+
allowed without Tralliance's prior written permission. Tralliance reserves the
|
70
|
+
right to modify or change these conditions at any time without prior or
|
71
|
+
subsequent notification of any kind. By executing this query, in any manner
|
72
|
+
whatsoever, you agree to abide by these terms.
|
73
|
+
|
74
|
+
NOTE: FAILURE TO LOCATE A RECORD IN THE WHOIS DATABASE IS NOT INDICATIVE
|
75
|
+
OF THE AVAILABILITY OF A DOMAIN NAME.
|
@@ -0,0 +1,98 @@
|
|
1
|
+
Access to the .XXX WHOIS information is provided to assist persons in
|
2
|
+
determining the contents of a domain name registration record in the
|
3
|
+
ICM Registry database. The data in this record is provided by
|
4
|
+
ICM Registry for informational purposes only, and ICM does not
|
5
|
+
guarantee its accuracy. This service is intended only for query-based
|
6
|
+
access. You agree that you will use this data only for lawful purposes
|
7
|
+
and that, under no circumstances will you use this data to: (a) allow,
|
8
|
+
enable, or otherwise support the transmission by e-mail, telephone, or
|
9
|
+
facsimile of mass unsolicited, commercial advertising or solicitations
|
10
|
+
to entities other than the data recipient's own existing customers; or
|
11
|
+
(b) enable high volume, automated, electronic processes that send
|
12
|
+
queries or data to the systems of Registry Operator, a Registrar, or
|
13
|
+
ICM except as reasonably necessary to register domain names or
|
14
|
+
modify existing registrations. All rights reserved. ICM reserves
|
15
|
+
the right to modify these terms at any time. By submitting this query,
|
16
|
+
you agree to abide by this policy.
|
17
|
+
|
18
|
+
|
19
|
+
Domain ID:D372-ICM
|
20
|
+
Domain Name:MASALA.XXX
|
21
|
+
Created On:2011-08-09 17:48:52.556689+00
|
22
|
+
Last Updated On:
|
23
|
+
Expiration Date:2012-08-09 17:48:52.556689
|
24
|
+
Sponsoring Registrar:R2-ICM (Domainmonster.com)
|
25
|
+
Status:OK
|
26
|
+
Registrant ID:C7-ICM
|
27
|
+
Registrant Name:Domainmonster.com Privacy Service
|
28
|
+
Registrant Organization:Mesh Digital Ltd (Domainmonster.com)
|
29
|
+
Registrant Street1:PO Box 795
|
30
|
+
Registrant Street2:
|
31
|
+
Registrant Street3:
|
32
|
+
Registrant City:Godalming
|
33
|
+
Registrant State/Province:Surrey
|
34
|
+
Registrant Postal Code:GU7 9GA
|
35
|
+
Registrant Country:UB
|
36
|
+
Registrant Phone:44.14833075
|
37
|
+
Registrant Phone Ext.:
|
38
|
+
Registrant FAX:+44.148330403
|
39
|
+
Registrant FAX Ext.:
|
40
|
+
Registrant Email:support@domainmonster.com
|
41
|
+
Admin ID:C7-ICM
|
42
|
+
Admin Name:Domainmonster.com Privacy Service
|
43
|
+
Admin Organization:Mesh Digital Ltd (Domainmonster.com)
|
44
|
+
Admin Street1:PO Box 795
|
45
|
+
Admin Street2:
|
46
|
+
Admin Street3:
|
47
|
+
Admin City:Godalming
|
48
|
+
Admin State/Province:Surrey
|
49
|
+
Admin Postal Code:GU7 9GA
|
50
|
+
Admin Country:UB
|
51
|
+
Admin Phone:44.14833075
|
52
|
+
Admin Phone Ext.:
|
53
|
+
Admin FAX:+44.148330403
|
54
|
+
Admin FAX Ext.:
|
55
|
+
Admin Email:support@domainmonster.com
|
56
|
+
Billing ID:C7-ICM
|
57
|
+
Billing Name:Domainmonster.com Privacy Service
|
58
|
+
Billing Organization:Mesh Digital Ltd (Domainmonster.com)
|
59
|
+
Billing Street1:PO Box 795
|
60
|
+
Billing Street2:
|
61
|
+
Billing Street3:
|
62
|
+
Billing City:Godalming
|
63
|
+
Billing State/Province:Surrey
|
64
|
+
Billing Postal Code:GU7 9GA
|
65
|
+
Billing Country:UB
|
66
|
+
Billing Phone:44.14833075
|
67
|
+
Billing Phone Ext.:
|
68
|
+
Billing FAX:+44.148330403
|
69
|
+
Billing FAX Ext.:
|
70
|
+
Billing Email:support@domainmonster.com
|
71
|
+
Tech ID:C7-ICM
|
72
|
+
Tech Name:Domainmonster.com Privacy Service
|
73
|
+
Tech Organization:Mesh Digital Ltd (Domainmonster.com)
|
74
|
+
Tech Street1:PO Box 795
|
75
|
+
Tech Street2:
|
76
|
+
Tech Street3:
|
77
|
+
Tech City:Godalming
|
78
|
+
Tech State/Province:Surrey
|
79
|
+
Tech Postal Code:GU7 9GA
|
80
|
+
Tech Country:UB
|
81
|
+
Tech Phone:44.14833075
|
82
|
+
Tech Phone Ext.:
|
83
|
+
Tech FAX:+44.148330403
|
84
|
+
Tech FAX Ext.:
|
85
|
+
Tech Email:support@domainmonster.com
|
86
|
+
Name Server:ns33.domaincontrol.com
|
87
|
+
Name Server:ns34.domaincontrol.com
|
88
|
+
Name Server:
|
89
|
+
Name Server:
|
90
|
+
Name Server:
|
91
|
+
Name Server:
|
92
|
+
Name Server:
|
93
|
+
Name Server:
|
94
|
+
Name Server:
|
95
|
+
Name Server:
|
96
|
+
Name Server:
|
97
|
+
Name Server:
|
98
|
+
Name Server:
|
@@ -1,12 +1,12 @@
|
|
1
1
|
#disclaimer
|
2
|
-
should: %s == "Access to
|
2
|
+
should: %s == "Access to the .XXX WHOIS information is provided to assist persons in determining the contents of a domain name registration record in the ICM Registry database. The data in this record is provided by ICM Registry for informational purposes only, and ICM does not guarantee its accuracy. This service is intended only for query-based access. You agree that you will use this data only for lawful purposes and that, under no circumstances will you use this data to: (a) allow, enable, or otherwise support the transmission by e-mail, telephone, or facsimile of mass unsolicited, commercial advertising or solicitations to entities other than the data recipient's own existing customers; or (b) enable high volume, automated, electronic processes that send queries or data to the systems of Registry Operator, a Registrar, or ICM except as reasonably necessary to register domain names or modify existing registrations. All rights reserved. ICM reserves the right to modify these terms at any time. By submitting this query, you agree to abide by this policy."
|
3
3
|
|
4
4
|
|
5
5
|
#domain
|
6
|
-
should: %s == "
|
6
|
+
should: %s == "masala.xxx"
|
7
7
|
|
8
8
|
#domain_id
|
9
|
-
should: %s == "
|
9
|
+
should: %s == "D372-ICM"
|
10
10
|
|
11
11
|
|
12
12
|
#referral_whois
|
@@ -17,7 +17,7 @@
|
|
17
17
|
|
18
18
|
|
19
19
|
#status
|
20
|
-
should: %s == "OK"
|
20
|
+
should: %s == ["OK"]
|
21
21
|
|
22
22
|
#available?
|
23
23
|
should: %s == false
|
@@ -28,79 +28,78 @@
|
|
28
28
|
|
29
29
|
#created_on
|
30
30
|
should: %s be_a(Time)
|
31
|
-
should: %s == Time.parse("2011-
|
31
|
+
should: %s == Time.parse("2011-08-09 17:48:52.556689 UTC")
|
32
32
|
|
33
33
|
#updated_on
|
34
|
-
should: %s
|
35
|
-
should: %s == Time.parse("2011-05-03 21:00:00 UTC")
|
34
|
+
should: %s == nil
|
36
35
|
|
37
36
|
#expires_on
|
38
37
|
should: %s be_a(Time)
|
39
|
-
should: %s == Time.parse("2012-
|
38
|
+
should: %s == Time.parse("2012-08-09 17:48:52.556689")
|
40
39
|
|
41
40
|
|
42
41
|
#registrar
|
43
42
|
should: %s be_a(_registrar)
|
44
|
-
should: %s.id == "
|
45
|
-
should: %s.name == "
|
46
|
-
should: %s.organization == "
|
43
|
+
should: %s.id == "R2-ICM"
|
44
|
+
should: %s.name == "Domainmonster.com"
|
45
|
+
should: %s.organization == "Domainmonster.com"
|
47
46
|
|
48
47
|
#registrant_contacts
|
49
48
|
should: %s be_a(Array)
|
50
49
|
should: %s have(1).items
|
51
50
|
should: %s[0] be_a(_contact)
|
52
51
|
should: %s[0].type == Whois::Record::Contact::TYPE_REGISTRANT
|
53
|
-
should: %s[0].id == "
|
54
|
-
should: %s[0].name == "
|
55
|
-
should: %s[0].organization == "
|
56
|
-
should: %s[0].address == "PO Box
|
57
|
-
should: %s[0].city == "
|
58
|
-
should: %s[0].zip == "
|
59
|
-
should: %s[0].state == "
|
60
|
-
should: %s[0].country_code == "
|
61
|
-
should: %s[0].phone == "
|
62
|
-
should: %s[0].fax == "+
|
63
|
-
should: %s[0].email == "
|
52
|
+
should: %s[0].id == "C7-ICM"
|
53
|
+
should: %s[0].name == "Domainmonster.com Privacy Service"
|
54
|
+
should: %s[0].organization == "Mesh Digital Ltd (Domainmonster.com)"
|
55
|
+
should: %s[0].address == "PO Box 795"
|
56
|
+
should: %s[0].city == "Godalming"
|
57
|
+
should: %s[0].zip == "GU7 9GA"
|
58
|
+
should: %s[0].state == "Surrey"
|
59
|
+
should: %s[0].country_code == "UB"
|
60
|
+
should: %s[0].phone == "44.14833075"
|
61
|
+
should: %s[0].fax == "+44.148330403"
|
62
|
+
should: %s[0].email == "support@domainmonster.com"
|
64
63
|
|
65
64
|
#admin_contacts
|
66
65
|
should: %s be_a(Array)
|
67
66
|
should: %s have(1).items
|
68
67
|
should: %s[0] be_a(_contact)
|
69
68
|
should: %s[0].type == Whois::Record::Contact::TYPE_ADMIN
|
70
|
-
should: %s[0].id == "
|
71
|
-
should: %s[0].name == "
|
72
|
-
should: %s[0].organization == "
|
73
|
-
should: %s[0].address == "PO Box
|
74
|
-
should: %s[0].city == "
|
75
|
-
should: %s[0].zip == "
|
76
|
-
should: %s[0].state == "
|
77
|
-
should: %s[0].country_code == "
|
78
|
-
should: %s[0].phone == "
|
79
|
-
should: %s[0].fax == "+
|
80
|
-
should: %s[0].email == "
|
69
|
+
should: %s[0].id == "C7-ICM"
|
70
|
+
should: %s[0].name == "Domainmonster.com Privacy Service"
|
71
|
+
should: %s[0].organization == "Mesh Digital Ltd (Domainmonster.com)"
|
72
|
+
should: %s[0].address == "PO Box 795"
|
73
|
+
should: %s[0].city == "Godalming"
|
74
|
+
should: %s[0].zip == "GU7 9GA"
|
75
|
+
should: %s[0].state == "Surrey"
|
76
|
+
should: %s[0].country_code == "UB"
|
77
|
+
should: %s[0].phone == "44.14833075"
|
78
|
+
should: %s[0].fax == "+44.148330403"
|
79
|
+
should: %s[0].email == "support@domainmonster.com"
|
81
80
|
|
82
81
|
#technical_contacts
|
83
82
|
should: %s be_a(Array)
|
84
83
|
should: %s have(1).items
|
85
84
|
should: %s[0] be_a(_contact)
|
86
85
|
should: %s[0].type == Whois::Record::Contact::TYPE_TECHNICAL
|
87
|
-
should: %s[0].id == "
|
88
|
-
should: %s[0].name == "
|
89
|
-
should: %s[0].organization == "
|
90
|
-
should: %s[0].address == "PO Box
|
91
|
-
should: %s[0].city == "
|
92
|
-
should: %s[0].zip == "
|
93
|
-
should: %s[0].state == "
|
94
|
-
should: %s[0].country_code == "
|
95
|
-
should: %s[0].phone == "
|
96
|
-
should: %s[0].fax == "+
|
97
|
-
should: %s[0].email == "
|
86
|
+
should: %s[0].id == "C7-ICM"
|
87
|
+
should: %s[0].name == "Domainmonster.com Privacy Service"
|
88
|
+
should: %s[0].organization == "Mesh Digital Ltd (Domainmonster.com)"
|
89
|
+
should: %s[0].address == "PO Box 795"
|
90
|
+
should: %s[0].city == "Godalming"
|
91
|
+
should: %s[0].zip == "GU7 9GA"
|
92
|
+
should: %s[0].state == "Surrey"
|
93
|
+
should: %s[0].country_code == "UB"
|
94
|
+
should: %s[0].phone == "44.14833075"
|
95
|
+
should: %s[0].fax == "+44.148330403"
|
96
|
+
should: %s[0].email == "support@domainmonster.com"
|
98
97
|
|
99
98
|
|
100
99
|
#nameservers
|
101
100
|
should: %s be_a(Array)
|
102
101
|
should: %s have(2).items
|
103
102
|
should: %s[0] be_a(_nameserver)
|
104
|
-
should: %s[0].name == "
|
103
|
+
should: %s[0].name == "ns33.domaincontrol.com"
|
105
104
|
should: %s[1] be_a(_nameserver)
|
106
|
-
should: %s[1].name == "
|
105
|
+
should: %s[1].name == "ns34.domaincontrol.com"
|
@@ -1,4 +1,4 @@
|
|
1
|
-
Access to
|
1
|
+
Access to the .XXX WHOIS information is provided to assist persons in
|
2
2
|
determining the contents of a domain name registration record in the
|
3
3
|
ICM Registry database. The data in this record is provided by
|
4
4
|
ICM Registry for informational purposes only, and ICM does not
|
@@ -16,83 +16,83 @@ the right to modify these terms at any time. By submitting this query,
|
|
16
16
|
you agree to abide by this policy.
|
17
17
|
|
18
18
|
|
19
|
-
Domain ID:
|
20
|
-
Domain Name:
|
21
|
-
Created On:
|
22
|
-
Last Updated On:
|
23
|
-
Expiration Date:
|
24
|
-
Sponsoring Registrar:ICM
|
19
|
+
Domain ID:D372-ICM
|
20
|
+
Domain Name:MASALA.XXX
|
21
|
+
Created On:2011-08-09 17:48:52.556689+00
|
22
|
+
Last Updated On:
|
23
|
+
Expiration Date:2012-08-09 17:48:52.556689
|
24
|
+
Sponsoring Registrar:R2-ICM (Domainmonster.com)
|
25
25
|
Status:OK
|
26
|
-
Registrant ID:
|
27
|
-
Registrant Name:
|
28
|
-
Registrant Organization:
|
29
|
-
Registrant Street1:PO Box
|
26
|
+
Registrant ID:C7-ICM
|
27
|
+
Registrant Name:Domainmonster.com Privacy Service
|
28
|
+
Registrant Organization:Mesh Digital Ltd (Domainmonster.com)
|
29
|
+
Registrant Street1:PO Box 795
|
30
30
|
Registrant Street2:
|
31
31
|
Registrant Street3:
|
32
|
-
Registrant City:
|
33
|
-
Registrant State/Province:
|
34
|
-
Registrant Postal Code:
|
35
|
-
Registrant Country:
|
36
|
-
Registrant Phone
|
32
|
+
Registrant City:Godalming
|
33
|
+
Registrant State/Province:Surrey
|
34
|
+
Registrant Postal Code:GU7 9GA
|
35
|
+
Registrant Country:UB
|
36
|
+
Registrant Phone:44.14833075
|
37
37
|
Registrant Phone Ext.:
|
38
|
-
Registrant FAX:+
|
38
|
+
Registrant FAX:+44.148330403
|
39
39
|
Registrant FAX Ext.:
|
40
|
-
Registrant Email:
|
41
|
-
Admin ID:
|
42
|
-
Admin Name:
|
43
|
-
Admin Organization:
|
44
|
-
Admin Street1:PO Box
|
40
|
+
Registrant Email:support@domainmonster.com
|
41
|
+
Admin ID:C7-ICM
|
42
|
+
Admin Name:Domainmonster.com Privacy Service
|
43
|
+
Admin Organization:Mesh Digital Ltd (Domainmonster.com)
|
44
|
+
Admin Street1:PO Box 795
|
45
45
|
Admin Street2:
|
46
46
|
Admin Street3:
|
47
|
-
Admin City:
|
48
|
-
Admin State/Province:
|
49
|
-
Admin Postal Code:
|
50
|
-
Admin Country:
|
51
|
-
Admin Phone
|
47
|
+
Admin City:Godalming
|
48
|
+
Admin State/Province:Surrey
|
49
|
+
Admin Postal Code:GU7 9GA
|
50
|
+
Admin Country:UB
|
51
|
+
Admin Phone:44.14833075
|
52
52
|
Admin Phone Ext.:
|
53
|
-
Admin FAX:+
|
53
|
+
Admin FAX:+44.148330403
|
54
54
|
Admin FAX Ext.:
|
55
|
-
Admin Email:
|
56
|
-
Billing ID:
|
57
|
-
Billing Name:
|
58
|
-
Billing Organization:
|
59
|
-
Billing Street1:PO Box
|
55
|
+
Admin Email:support@domainmonster.com
|
56
|
+
Billing ID:C7-ICM
|
57
|
+
Billing Name:Domainmonster.com Privacy Service
|
58
|
+
Billing Organization:Mesh Digital Ltd (Domainmonster.com)
|
59
|
+
Billing Street1:PO Box 795
|
60
60
|
Billing Street2:
|
61
61
|
Billing Street3:
|
62
|
-
Billing City:
|
63
|
-
Billing State/Province:
|
64
|
-
Billing Postal Code:
|
65
|
-
Billing Country:
|
66
|
-
Billing Phone
|
62
|
+
Billing City:Godalming
|
63
|
+
Billing State/Province:Surrey
|
64
|
+
Billing Postal Code:GU7 9GA
|
65
|
+
Billing Country:UB
|
66
|
+
Billing Phone:44.14833075
|
67
67
|
Billing Phone Ext.:
|
68
|
-
Billing FAX:+
|
68
|
+
Billing FAX:+44.148330403
|
69
69
|
Billing FAX Ext.:
|
70
|
-
Billing Email:
|
71
|
-
Tech ID:
|
72
|
-
Tech Name:
|
73
|
-
Tech Organization:
|
74
|
-
Tech Street1:PO Box
|
70
|
+
Billing Email:support@domainmonster.com
|
71
|
+
Tech ID:C7-ICM
|
72
|
+
Tech Name:Domainmonster.com Privacy Service
|
73
|
+
Tech Organization:Mesh Digital Ltd (Domainmonster.com)
|
74
|
+
Tech Street1:PO Box 795
|
75
75
|
Tech Street2:
|
76
76
|
Tech Street3:
|
77
|
-
Tech City:
|
78
|
-
Tech State/Province:
|
79
|
-
Tech Postal Code:
|
80
|
-
Tech Country:
|
81
|
-
Tech Phone
|
77
|
+
Tech City:Godalming
|
78
|
+
Tech State/Province:Surrey
|
79
|
+
Tech Postal Code:GU7 9GA
|
80
|
+
Tech Country:UB
|
81
|
+
Tech Phone:44.14833075
|
82
82
|
Tech Phone Ext.:
|
83
|
-
Tech FAX:+
|
83
|
+
Tech FAX:+44.148330403
|
84
84
|
Tech FAX Ext.:
|
85
|
-
Tech Email:
|
86
|
-
Name Server:
|
87
|
-
Name Server:
|
85
|
+
Tech Email:support@domainmonster.com
|
86
|
+
Name Server:ns33.domaincontrol.com
|
87
|
+
Name Server:ns34.domaincontrol.com
|
88
|
+
Name Server:
|
89
|
+
Name Server:
|
90
|
+
Name Server:
|
91
|
+
Name Server:
|
92
|
+
Name Server:
|
93
|
+
Name Server:
|
94
|
+
Name Server:
|
95
|
+
Name Server:
|
88
96
|
Name Server:
|
89
97
|
Name Server:
|
90
98
|
Name Server:
|
91
|
-
Name Server:
|
92
|
-
Name Server:
|
93
|
-
Name Server:
|
94
|
-
Name Server:
|
95
|
-
Name Server:
|
96
|
-
Name Server:
|
97
|
-
Name Server:
|
98
|
-
Name Server:
|