summaryrefslogtreecommitdiff
path: root/roundcubemail/program/lib/Net/IDNA2
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-09-29 12:36:28 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-09-29 12:36:28 +0000
commita1ab3314f33bb69b9f40dd700ea769bbeffc8a5d (patch)
treeb7ab2ad2ce8fd5ea4e237d916adaeb5d105ee3e7 /roundcubemail/program/lib/Net/IDNA2
parente72c3403074be1e7664db46f8779b5f640318b3c (diff)
- Add Internationalized Domain Name (IDNA) support (#1483894)
git-svn-id: https://svn.roundcube.net/trunk@4009 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/lib/Net/IDNA2')
-rw-r--r--roundcubemail/program/lib/Net/IDNA2/Exception.php3
-rw-r--r--roundcubemail/program/lib/Net/IDNA2/Exception/Nameprep.php5
2 files changed, 8 insertions, 0 deletions
diff --git a/roundcubemail/program/lib/Net/IDNA2/Exception.php b/roundcubemail/program/lib/Net/IDNA2/Exception.php
new file mode 100644
index 000000000..9c77ad6e1
--- /dev/null
+++ b/roundcubemail/program/lib/Net/IDNA2/Exception.php
@@ -0,0 +1,3 @@
+<?php
+class Net_IDNA2_Exception extends Exception {
+}
diff --git a/roundcubemail/program/lib/Net/IDNA2/Exception/Nameprep.php b/roundcubemail/program/lib/Net/IDNA2/Exception/Nameprep.php
new file mode 100644
index 000000000..a753e173d
--- /dev/null
+++ b/roundcubemail/program/lib/Net/IDNA2/Exception/Nameprep.php
@@ -0,0 +1,5 @@
+<?php
+require_once 'Net/IDNA2/Exception.php';
+
+class Net_IDNA2_Exception_Nameprep extends Net_IDNA2_Exception {
+} \ No newline at end of file