Tagged Questions
1
vote
2answers
53 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
142 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
259 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 ...
0
votes
2answers
45 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?