Commit Graph

118 Commits

Author SHA1 Message Date
Doug Bird 176a02f944 add TSV format 2018-06-22 00:41:43 -07:00
Doug Bird 45b142f730 fixed TSV format 2018-06-22 00:41:26 -07:00
Doug Bird 1aeaec7fbd version bump 2018-06-22 00:31:37 -07:00
Doug Bird 58ecddaabc version bump 2018-06-22 00:30:17 -07:00
Doug Bird cd4b5ba25e new "tsv" format 2018-06-22 00:29:21 -07:00
Doug Bird fb61e88ca6 new "tsv" format 2018-06-22 00:29:07 -07:00
Doug Bird 146682103e IANA updates 2018-06-21 18:07:50 -07:00
Doug Bird 63d9648714 move devel scripts 2018-06-21 18:07:23 -07:00
Doug Bird 6779448cb8 move devel scripts
- moved bin/helpers to bin/devel/helpers
- moved bin/update-formats.sh bin/devel/update-formats.sh
2018-06-21 18:06:57 -07:00
Doug Bird 9a1f4697c4 php format fixes
- applied fixes to php serialization in php helpers
2018-06-14 15:03:14 -07:00
Doug Bird 762ca821ea version bump 2018-06-14 15:02:06 -07:00
Doug Bird 6fe182313e fix php serialization 2018-06-14 14:58:20 -07:00
Doug Bird d93ed6109d country code fixes 2018-06-14 14:05:30 -07:00
Doug Bird a5770123fb country-code fixes
- fixes to country code TLD descriptions
2018-06-14 14:05:00 -07:00
Doug Bird 10ddb1bbfe scope fix 2018-06-14 13:24:46 -07:00
Doug Bird 3c60d490c5 package-lock.json
- needed to lock down tested/verified version
2018-06-14 13:20:45 -07:00
Doug Bird 8cfd3dc8b8 critical fix
- critical updates to format files due to bug in helper (and lack of unit testing)
2018-06-14 13:16:34 -07:00
Doug Bird 345977fa80 version bump 2018-06-14 13:15:24 -07:00
Doug Bird 4b845c80c4 fixes
- fix newly introduced concurrency issues due to behavior changes in an update on the "csv-parse" package
2018-06-14 13:14:43 -07:00
Doug Bird c69d089f92 180614 TLD updates 2018-06-14 12:10:23 -07:00
Doug Bird 607fb1b46a
Update README.md 2018-06-13 01:14:23 -07:00
Doug Bird c754606afe
Update README.md 2018-06-13 01:12:46 -07:00
Doug Bird 9668f4b205 Merge branch 'master' of github.com:katmore/tld-enum 2018-06-13 01:10:48 -07:00
Doug Bird 651c5f457f typo fixes 2018-06-13 01:10:41 -07:00
Doug Bird 97547a5e9c npm updates 2018-06-13 01:10:33 -07:00
Doug Bird 2ac03cf6a9 npm updates 2018-06-13 01:10:16 -07:00
Doug Bird b75aaae0c4
Update README.md 2018-06-13 01:02:24 -07:00
Doug Bird add307eb20
Update README.md 2018-06-13 00:27:30 -07:00
Doug Bird 9c6db021d7
Update README.md 2018-06-13 00:14:44 -07:00
Doug Bird 5a1ce77562
Update README.md 2018-06-13 00:07:30 -07:00
Doug Bird 0734ced113
Update README.md 2018-06-13 00:06:59 -07:00
Doug Bird 8a0309deff
Update README.md 2018-06-13 00:06:25 -07:00
Doug Bird e777bd1ebe
Update README.md 2018-06-13 00:04:17 -07:00
Doug Bird 9f425a827d
Update README.md 2018-06-12 23:38:10 -07:00
Doug Bird 57ff92668d
Update README.md 2018-06-12 23:34:53 -07:00
Doug Bird 5c3b268715
Update README.md 2018-06-12 23:31:49 -07:00
Doug Bird 6af38e1644
Update README.md 2018-06-12 23:30:55 -07:00
Doug Bird 02355e5b4c
Update README.md 2018-06-12 23:25:11 -07:00
Doug Bird f1926c60c0
Update README.md 2018-06-12 23:21:27 -07:00
Doug Bird 3c0f05d60c
Update README.md 2018-06-12 23:20:09 -07:00
Doug Bird 07e7a467a3
Update README.md 2018-06-12 23:17:55 -07:00
Doug Bird 16e7cdb202
Update README.md 2018-06-12 23:16:56 -07:00
Doug Bird 300cc523e0 version 2
- refactor js files to be proper module exportrs with an index.js
- fix inconsistent naming of TLD format files containing simple array of each TLD; now all named using the "list" suffix instead of some using "enum"
 - formats/js/tld-enum/list.js
 - formats/json/tld-list.json
 - formats/php/TldEnum/TldList.php
- new "desc" (description) format file; hashmap of each TLD with corresponding description
 - formats/js/tld-enum/desc.js
 - formats/json/tld-desc.json
 - formats/php/TldEnum/TldDesc.php
- new "type" format file; hashmap of each TLD with corresponding TLD type
 - formats/js/tld-enum/type.js
 - formats/json/tld-type.json
 - formats/php/TldEnum/TldType.php
- new "info" format file; array of each TLD with hashmap containing the "domain", "description", and "type" properties
 - formats/js/tld-enum/info.js
 - formats/json/tld-info.json
 - formats/php/TldEnum/TldInfo.php
- examples for new format files
 - examples/js-desc-demo.js
 - examples/js-info-demo.js
 - examples/js-type-demo.js
 - examples/php-TldDesc-demo.php
 - examples/php-TldInfo-demo.php
 - examples/php-TldType-demo.php
- fixes to bin/update-formats.sh
 - can now skip downloading data from IANA
 - creates new format files with newly created helpers
- created new helpers for new format files
 - bin/helpers/generate-js-tld-desc.js
 - bin/helpers/generate-js-tld-info.js
 - bin/helpers/generate-js-tld-type.js
 - bin/helpers/generate-json-tld-desc.js
 - bin/helpers/generate-json-tld-info.js
 - bin/helpers/generate-json-tld-type.js
 - bin/helpers/generate-php-tld-desc.php
 - bin/helpers/generate-php-tld-info.php
 - bin/helpers/generate-php-tld-type.php
2018-06-12 22:51:12 -07:00
Doug Bird e289011074 fixes
fix some typos
2018-06-12 18:46:39 -07:00
Doug Bird 506501f55e quiet mode 2018-06-12 18:39:58 -07:00
Doug Bird ebe7446f9d
Update README.md 2018-06-12 17:29:31 -07:00
Doug Bird 7a5d0705af
Update README.md 2018-06-12 17:28:06 -07:00
Doug Bird e0961c9b36
Update README.md 2018-06-12 17:25:40 -07:00
Doug Bird 499a9b69bb
Update README.md 2018-06-12 17:23:35 -07:00
Doug Bird b88540c91d
Update README.md 2018-06-12 17:22:54 -07:00