Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
802 views

How to convert IDN to ASCII?

What is the best way to convert an internationalized domain name to its ASCII-form? I want to convert Bücher.ch into xn--bcher-kva.ch by using some sort of (free) .net code.
3
votes
1answer
123 views

International Domain Names + JQuery attr('href') problems in Firefox

I'm trying to set the href of an a element using jQuery. When I set an IDN in Firefox 6, the href is url encoded. One example is the IDN http://räksmörgås.se, which is mangled to ...
3
votes
2answers
271 views

idn_to_ascii() in 5.2.17

There's a very handy function idn_to_ascii() in PHP 5.3, but I'm running 5.2.17 and I can't change that. How do I encode Unicode domain names to ascii then?
3
votes
1answer
76 views

Utf-8 in subdomain?

Is it possible to use UTF-8 in a subdomain? If so, which characters are allowed and how does the can't-mix-encodings thing work? I've tried to RTFM, but Google wan't of much help
3
votes
1answer
89 views

Ajax calls to encoded Internationalized domain names with jQuery 1.5 doesn't work in Internet Explorer?

Using jQuery 1.5 or 1.5.1, any ajax() calls to encoded Internationalized domain names (IDN) (like xn--bcher-kva.ch) seems to fail in Internet Explorer 8. It worked fine in jQuery 1.4.4 and also with ...
3
votes
1answer
257 views

Allowed unicode characters in IDN host labels

Im currently working on a "proper" URI validator and currently it all comes down to hostname validation, the rest isnt that tricky. Im stuck at IDN hostname labels (e.g. containing unicode; possible ...
3
votes
1answer
500 views

IDN aware tools to encode/decode human readable IRI to/from valid URI

Let's assume a user enter address of some resource and we need to translate it to: <a href="valid URI here">human readable form</a> HTML4 specification refers to RFC 3986 which allows ...
2
votes
2answers
46 views

is there is anyway i can rewrite the domain name to the original IDN not the punny code?

i have bought an IDN domain name with non-latin charachters. it is good but when i access the domain name, the address bar shows the punny code for the domain not the actual domain which will be hard ...
2
votes
1answer
83 views

Simple question about characters in django urls

In django documentation they wrote that in urls it is only possible to use ASCII characters. It seems to be strange to me because of characters that are in IDN domains. For exapmle, if I have IDN ...
2
votes
1answer
226 views

help needed for IDN regex

based on this post link text i came up with a regex for javascript \b(([\w-]+:\/\/?|[\w\d]+[.])?[^\s()<>]+[.](?:\([\w\d]+\)|([^`!()\[\]{};:'".,<>?«»“”‘’\s]|\/))) this one matches urls ...
2
votes
3answers
700 views

Properly Matching a IDN URL

I need help building a regular expression that can properly match an URL inside free text. scheme One of the following: ftp, http, https (is ftps a protocol?) optional user (and optional pass) ...
1
vote
2answers
41 views

What is the maximum length of an IDNA converted domain name?

First things first: I'm storing multiple domains to a database, after I've converted each and every domain name to it's IDNA version. What I need to know the maximum length such an IDNA-converted ...
1
vote
0answers
50 views

How to encode IDN on apache?

I need to rewrite requests in apache to a directory. While most browsers convert it to Punycode (Bücher.ch -> xn--bcher-kva.ch) some of the request is encoded to ascii (Bücher.ch -> B%C3%BCcher.ch). ...
1
vote
1answer
40 views

count length of international domain name throw SQL (PostgreSQL)

I have several domain names saved in database in idn format ("xn--"). I want to run some statistics queries, but have problem to count characters on these domain names SELECT dom_name, ...
1
vote
0answers
39 views

IDN domain and Facebook Connect

Does Facbook Connect support IDN domains with special characters such as æ, ø, å?
1
vote
1answer
160 views

Ruby convert IDN domain from Punycode to Unicode

I'm writing a Rails app that needs to convert an IDN domain name from Punycode into its Unicode equivalent. I tried installing the idn gem that has bindings to GNU LibIDN, but it won't compile the ...
1
vote
0answers
135 views

converting escaped urls with punycode to utf, refactoring

I want to store all my url in readble utf8 class User < ActiveRecord::Base require 'addressable/uri' require 'idn' include IDN def service_url=(url) url = Addressable::URI.parse ...
1
vote
1answer
201 views

Handling special characters in domain names (without IDN)?

I am using the URI class to break apart a string url. The getHost() method returns null when there are special characters in it. Such as: http://✪df.ws/g44 It was suggested to use the IDN class to ...
1
vote
1answer
133 views

IDN support in Android [closed]

Does Android browser support IDN websites? Also is this support available for 3rd party applications? In other words can I connect to a webservice hosted on an IDN website from an Android App? ...
1
vote
1answer
125 views

the ruby idna.toUnicode fun, is not converting the punycode in the tld part

i use the Idna.toAscii fun to convert a site name www.中国.中国(the tld is also has unicode chars). the result was www.xn--fiqs8s.xn--fiqs8s I used the Idna.toUnicode fun to convert the above punycode ...
1
vote
1answer
527 views

PHP cURL get content with accented URL

Using cURL with an accented URL, I cannot get content if CURLOPT_RETURNTRANSFER = true. Example: $curl = curl_init(); curl_setopt ($curl, CURLOPT_URL, "http://fr.wikipedia.org/wiki/Été"); ...
1
vote
1answer
242 views

How can i code and decode urls from IDN in php?

im doing a site to check, register, etc of domains, i have to make it IDN compliant. Right now i have something like this: echo $domain; $domain = idn_to_ascii($domain); echo $domain; $domain ...
1
vote
1answer
145 views

Absurd problem displaying silverlight video player on differing domains

I'm having a problem displaying two silverlight movies from different domains. They are both in the bindings of IIS, both are redirected to my private computer/server and both are loading a ...
0
votes
1answer
80 views

How to enable IDN/IRI Support for URI-Class by code?

I'm trying to enable the IDN/IRI support for the URI class, because I need the "Uri.IsWellFormedUriString" method on german umlaut-domains (e.g. www.bücher.de). I found similar question at ...
0
votes
0answers
57 views

“skipping incompatible” error in conftest

I believe the conftest lacks the correct flags, but I'm unable to figure out the problem looking at the contents of mkmf.log, which are included below. Any ideas would be appreciated! I am compiling ...
0
votes
2answers
52 views

How to enable IDN support in PHP (cURL)?

My cURL configuration (fro phpinfo() function) is: cURL support enabled cURL Information 7.21.7 Age 3 Features AsynchDNS Yes Debug No GSS-Negotiate Yes IDN ...
0
votes
1answer
26 views

Are IDN domain names case-sensitive?

Some people will reply that domain names are not case-sensitive. In the new Unicode world this is no longer true. (Source) I thought one of the steps in the Unicode > Punycode conversion was a ...
0
votes
2answers
43 views

Does Cocoa's CFHost support IDNs?

WINAPI has methods to convert Unicode host names to Punycode. Does Cocoa/Cocoa Touch have a similar mechanism?
0
votes
0answers
53 views

Jetty does not recognize internationalized (IDN) SUB domain names

The international form of my sub domain name is like this: XN--80AHAIUUGL4G It is properly setup in my provider and resolves. That is tested. My top-level domain name is citadelait.com so I wrote in ...
0
votes
1answer
98 views

PEAR Mail package and IDN domains

I'm using PEAR Mail package in many projects, sending mails via smtp method. But I found out there's a problem with IDN domains (like tüv.de). The PEAR package rejects mails containing german umlauts ...
0
votes
1answer
89 views

The right way to do IURI (International) in ASP.NET MVC?

What is the right way to do International URI's within ASP.NET MVC that supports downlevel clients in the cleanest way possible? The strings I want to display are in UTF-8 or UTF-16 ...
0
votes
1answer
91 views

ruby toUnicode fun does not return the idn site when there is no www. in the url

In my rails app, i convert a idn url to punycode and back to idn. But if i have a url like this http://日本語.jp (without www.) domain = "http://日本語.jp" punycode = Idna.toAscii(domain) => ...