Skip to content

Commit c220455

Browse files
committed
add monaco
1 parent 3fe530c commit c220455

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ dockerPush:
189189
# ====================================================
190190
# uploading to pypi an pypiTestUpload
191191
# build a test-mypi and download the image in a venv ane run a test
192-
pypiTest: pypiTestUpload testTestPypi testdocker testdockerTestdata
192+
pypiTest: pypiTestUpload testTestPypi # testdocker testdockerTestdata
193193

194194
# this is only the upload now for pypi builders
195195
pypiTestUpload:

whoisdomain/tldDb/tld_regexpr.py

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,21 @@ def xStr(what: str, times: int = 1, firstMandatory: bool = True) -> str:
145145
"_test": "livedns.co.uk",
146146
}
147147

148+
ZZ["mc"] = {
149+
"_server": "whois.nic.mc",
150+
"extend": "com",
151+
"_test": "nic.mc",
152+
"domain_name": R(r"Domain\s+:\s+(.+)"),
153+
"status": R(r"Status\s+:\s*(.+)"),
154+
"owner": R(r"Owner-c\s+:\s+(.+)"),
155+
"registrar": R(r"Registrar\s+:\s+(.+)"),
156+
"creation_date": R(r"Created\s+:(.+)"),
157+
"expiration_date": R(r"Expires on\s+:(.+)"),
158+
"updated_date": R(r"Last update\s+:(.+)"),
159+
"name_servers": R(r"nserver\s+:\s*(.+)"),
160+
}
161+
162+
148163
ZZ["gov.uk"] = {
149164
"extend": "ac.uk",
150165
"_server": "whois.gov.uk",
@@ -2892,7 +2907,6 @@ def xStr(what: str, times: int = 1, firstMandatory: bool = True) -> str:
28922907
ZZ["maif"] = {"_privateRegistry": True} # no whois server found in iana
28932908
ZZ["marshalls"] = {"_privateRegistry": True} # no whois server found in iana
28942909
ZZ["mattel"] = {"_privateRegistry": True} # no whois server found in iana
2895-
ZZ["mc"] = {"_privateRegistry": True} # no whois server found in iana
28962910
ZZ["merckmsd"] = {"_privateRegistry": True} # no whois server found in iana
28972911
ZZ["mh"] = {"_privateRegistry": True} # no whois server found in iana
28982912
ZZ["microsoft"] = {"_privateRegistry": True} # no whois server found in iana

0 commit comments

Comments
 (0)