Questions tagged [tld]

TLD is an abbreviation for top-level domain.

The top-level domains (TLDs) are managed by registrars under agreement from ICANN (www.icann.org). There are several different types of TLDs:

  • gTLD - Generic top-level domains (.com, .net, .org ...)- Anybody can register these domains
  • ccTLD - Country code top-level domains (.uk, .us, .ly, .cc) - These domains normally have restrictions on their use, for example, only companies that operate in these countries may register them (.uk does not have this restriction, but .ie, Ireland, does)
  • sTLD - Sponsored top-level domains (.coop, .museum, .jobs) - These domains are for certain uses only. There are strict rules which must be met in order to register one of these domains.

See also http://icannwiki.com/GTLD for more details, including history and instructions for the proposal and registration process.

272 questions
3
votes
2 answers

Read only spinner

I am learning Jsf.Is there any method for making the spinners read only?I should change the value only using spinners and not directly typing the number.Can i implement that by setting attribute in the spinners.tld file?
Warrior
  • 39,156
  • 44
  • 139
  • 214
3
votes
0 answers

Stop tomcat 8 from scanning for TLDs

I have a Lucee web app that is packaged as a WAR. Long story short, when the app is deployed, the Lucee runtime places some custom TLD files under WEB-INF/lucee-server/library/tld. These TLD files are intended only for Lucee to read - they are not…
JDS
  • 153
  • 9
3
votes
1 answer

How to include a JSP page into a custom tag

I am creating a custom tag directive where I have to print a table of data from database. So far I have created: JSP page: <%@taglib uri="/WEB-INF/tlds/fact.tld" prefix="veritis"%>
user09
  • 920
  • 2
  • 12
  • 38
3
votes
1 answer

When should I change the tlib-version of my tag library?

I'm after guidelines on when I should change the tlib-version in the .tld of a tag library that I author. Specifically I'm wondering if I should bump the version number if I add new tags to the library or if I should only do this if I make breaking…
Walter Rumsby
  • 7,435
  • 5
  • 41
  • 36
3
votes
2 answers

How to extract the top level domain from any URL using PostgreSQL

I want to take a relatively modest set of URLs and resolve them down to the top level domains using one (or more, if required) PostgreSQL queries. It seems like the major steps to do this are as follows: find the number and position of all the "/"…
user1601238
  • 41
  • 1
  • 4
3
votes
2 answers

Get TLD DNS server ip address

We know that the way DNS works is to recursively retrieve suffice of the domain. For example www.google.com, it retrieves the name server of com and get its ip address, and use this name server to retrive google.com, ... Retrieving the ip addresses…
3
votes
1 answer

Redirect TLD and 'blog' subdomain on github pages

I started with GitHub Pages and I don't manage to configure my DNS and my GitHub Repository as I want to. I would like to redirect both mydomain.com and blog.mydomain.com to username.github.com. I put mydomain.com in the CNAME file in my GitHub…
yageek
  • 4,115
  • 3
  • 30
  • 48
3
votes
1 answer

How to get a list of TLD's using bash for building a regex?

In the need for finding e-mail addresses and host names, we would like to improve an existing regex to seach only for existing public TLD's. We would like one bash command where we can copy and paste its output into our regular expression. We…
Pro Backup
  • 729
  • 14
  • 34
3
votes
1 answer

struts tag for button call Action

Just wondering if anyone has ever seen or written a customer tag to call Struts2 Actions. What I'm looking for is something like this:-
KPS
  • 41
  • 1
  • 2
  • 3
3
votes
1 answer

How to wget recursively on specific TLDs?

Is it possible to recursively download files from specific TLDs with wget? Specifically, I'm trying to download the full text of the Code of Massachusetts Regulations. The actual text of the regulations is stored in multiple files across multiple…
Joe Mornin
  • 8,766
  • 18
  • 57
  • 82
2
votes
2 answers

Most efficient way to redirect several TLD's sharing a common root to one primary domain using htaccess

I'm using the following code (repeated) to redirect 6 additional TLDs to one primary TLD. is there a more efficient way to achieve the same result? RewriteEngine on RewriteCond %{HTTP_HOST} !^(www\.)?mydomain\.com$ [NC] RewriteRule .?$…
toomanyairmiles
  • 6,465
  • 8
  • 43
  • 71
2
votes
1 answer

Extraction of TLD from urls and sorting domains and subdomains for each TLD file

I have a list of million urls. I need to extract the TLD for each url and create multiple files for each TLD. For example collect all urls with .com as tld and dump that in 1 file, another file for .edu tld and so on. Further within each file, I…
Maxwell
  • 409
  • 1
  • 6
  • 19
2
votes
2 answers

Random TLD Name, Numbers and Letters, for Added Security?

I have a client app that faces the internet, but only clients will access. The site should never be indexed or crawled or viewed outside of our clients. We always concerned about DDOS and attempts to gain access. If the system can add one more level…
Karl
  • 1,585
  • 2
  • 13
  • 22
2
votes
1 answer

Pandas add column based_domain from existing column

I new to pandas. I have a dataset like this one: df = pd.DataFrame({'Date':['10/2/2011', '11/2/2011', '12/2/2011', '13/2/2011'], 'Event':['music.example.com', 'poetry.example.com', 'theatre.domain.com', 'comedy.domain.com'], …
Yepher
  • 1,465
  • 12
  • 25
2
votes
1 answer

Get the "main" domain name JS

My objective is to get the "main" domain name of the current page in JS. By "main", I mean that all these domains should return the same result, "domain": domain.com domain.co.uk subdomain.domain.com subdomain.domain.co.uk As you can see,…
Oscar
  • 128
  • 1
  • 6