Internationalized domain name, an Internet domain name containing non-ASCII characters.
0
votes
0answers
21 views
Convert Unicode to ASCII in URL (domain and parameters)
I have an Url, for example, http://кц.рф/ru/registrators/ and want to convert it to http://xn--j1ay.xn--p1ai/ru/registrators/ form.
new System.Globalization.IdnMapping().GetAscii(href)
// result: ...
0
votes
0answers
8 views
Buiding a search for IDNA domains
We are upgrading our systems for IDNA support but I'm currently struggling with our domain search. In our domain portfolio you can search for domains. IDNA domains are saved as their A-label in our ...
0
votes
0answers
79 views
Correctly distinguish UTF-8 email addresses in MySQL
What is the proper proper MySQL collation for storing email addresses?
I understand that email addresses can be UTF-8.
However, if I want to compare the input email with the email in database, how ...
0
votes
1answer
149 views
after ruby upgrade: Failed to build gem native extension. (EC2 Ubuntu)
I tried to switch my ruby version from 1.8 (default) to 1.9.3 (latest on Pangolin) as per http://lenni.info/blog/2012/05/installing-ruby-1-9-3-on-ubuntu-12-04-precise-pengolin/. I'm doing this using ...
0
votes
0answers
24 views
IDN domain support in WordPress for Android
Any has configured an IDN domain in Wordpress for Android 2.2.7 app?
I've tested with and without punycode notation but doesn't works.
I ever obtain the same error code:
...
0
votes
0answers
5 views
IDN Login Issue
I am beginning to develop an application for a client, so I can integrate QBMS into their unsupported shopping cart. I have signed up for an IDN account, and when I go to log in, there is no login ...
0
votes
3answers
116 views
Percent encoded characters in URL gives error in browser
I'm having problem with URL's that include special characters. The rendered HTML if I use NavigateUrl='Eval("website")' is this:
<a href="http://www.v%c3%a4rnamo.nu">www.värnamo.nu</a>
...
2
votes
1answer
77 views
How do I keep HTML Tidy from encoding IDNs?
I'm using HTML Tidy, and out of something like
<a href="http://www.äöü.com/">Link</a>
it makes
<a href="http://www.%C3%A4%C3%B6%C3%BC.de/">Link</a>
How do I tell Tidy to ...
2
votes
0answers
143 views
GWT RPC is not working in Opera at IDN
GWT RPC requests fail in Opera when site has international domain name.
The error message is as follows:
Unable to initiate the asynchronous service invocation
(GreetingService_Proxy.getDate) ...
1
vote
1answer
41 views
URL specification that allows internationalized domain names?
I'm trying to find the current spec for URLs. I found RFC3986, but that doesn't allow non-ASCII characters, like you might find in internationalized domain names (IDNA).
URLs are one of the key bits ...
1
vote
1answer
146 views
Unresolved external symbol - IdnToAscii
I tried to build the following sample application available on msdn:
http://msdn.microsoft.com/en-us/library/windows/desktop/dd319089%28v=vs.85%29.aspx
I created a new C++ command line project in ...
2
votes
2answers
197 views
Can Not Read UNICODE URL in C#
The following code won't work:
using System;
using System.IO;
using System.Net;
using System.Web;
namespace Proyecto_Prueba_04
{
class Program
{
/// <summary>
///
...
1
vote
0answers
55 views
Library to detect IDN domain from a string?
IM/Email type scenario:
User types whatever they want and sends it to their buddy. If they enter a URL, I want to make it clickable for the recipient. This means we need to identify a sequence of ...
0
votes
1answer
46 views
wordpress - page not found with inštrukcije
i have a domain named inštrukcije, wich includes š character.
I used IDN translater to translate it to: xn--intrukcije-19b.si
I installed new wordpress on this domain at: ...
1
vote
2answers
242 views
IDN-Domains: Any way to avoid “xn--” to be shown?
If I use a domain such as www.äöü.com, is there any way, to avoid it to be displayed as www.xn--4ca0bs.com in the users' browsers.
Domains as www.xn--4ca0bs.com cause a lot of confusion with average ...
1
vote
2answers
136 views
Splitting up an IDN URL in PHP
I'm trying to take an IDN URL along the lines of http://exämple.se/path or https://äxämple.se/anotherpath?foo=bar&baf=bas so that I get the components of it like so:
[0] http(s)://
[1] äxämple.se
...
1
vote
1answer
127 views
Which format to use for the CN & DNS fields in a SSL certificate for an IDN?
If I am issued a SSL certificate for an IDN domain, should I expect the value in the CN field to be the literal UTF-8 string for the domain name, or the escaped, punycode version?
What about the ...
2
votes
2answers
394 views
Coldfusion and Java how to validate a punycode IDN
Recently I rebuilt some forms so they would accept International Domains like
http://例子.测试
I would then store these as punycode. Before this though we had validation code running to check ...
0
votes
1answer
75 views
Coldfusion with Java IDN handling international domains
I'm rewriting one of our forms so that it can handle international domains, but before I start on that i thought i would test the capabilities of handling IDNs.
My thoughts were, should someone enter ...
1
vote
1answer
211 views
Do browsers encode in punycode only domain or whole url?
I was reading about IDN homograph atack and didn't find exactly stated does browsers encode in punycode only domain or rest of the URL is included (path and query). So my question is does one of ...
1
vote
1answer
146 views
IDNA does not round-trip
I have some IDNA encoded strings that I cannot decode. In Python, I try u"xn--grohandel-shop-2fb".decode("idna") and get the error "IDNA does not round-trip". The same for ...
0
votes
1answer
498 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 ...
4
votes
2answers
450 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 ...
0
votes
1answer
314 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 ...
1
vote
0answers
215 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).
...
0
votes
2answers
543 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
109 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 ...
3
votes
1answer
156 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 ...
3
votes
1answer
324 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 ...
0
votes
2answers
108 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?
1
vote
1answer
82 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
97 views
IDN domain and Facebook Connect
Does Facbook Connect support IDN domains with special characters such as æ, ø, å?
2
votes
2answers
638 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 ...
2
votes
1answer
215 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
0answers
276 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 ...
3
votes
2answers
952 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
202 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
0
votes
1answer
158 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 ...
3
votes
1answer
138 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 ...
1
vote
1answer
299 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 ...
0
votes
1answer
147 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
...
2
votes
1answer
268 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
181 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
2k 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é");
...
0
votes
1answer
110 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) => ...
2
votes
1answer
462 views
How do I match japanese characters using 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 ...
3
votes
1answer
1k 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 ...
3
votes
1answer
498 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
835 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 ...
1
vote
1answer
180 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 ...
