Server IP : 127.0.0.2 / Your IP : 3.16.89.150 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/lib/python3/dist-packages/LanguageSelector/ |
Upload File : |
from __future__ import print_function import libxml2 class Variant: def __init__(self, name, desc, raw_desc): self.name = name self.desc = desc self.raw_desc = raw_desc def __str__(self): return "%s: %s, %s" % (self.name, self.desc, self.raw_desc) class Layout: def __init__(self, name, desc, raw_desc, short_desc, raw_short_desc, variants): self.name = name self.desc = desc self.raw_desc = raw_desc self.short_desc = short_desc self.raw_short_desc = raw_short_desc self.variants = variants def __str__(self): return "%s: %s, %s; %s, %s;; %s" % (self.name,self.desc,self.raw_desc,self.short_desc,self.raw_short_desc,["%s" % x for x in self.variants]) def get_all_layout_possibilities(): possibility_list = list() #FIXME: don't call parseFile() twice doc = libxml2.parseFile("/etc/X11/xkb/rules/xorg.xml") ctxt = doc.xpathNewContext() for i in ctxt.xpathEval("/xkbConfigRegistry/layoutList/layout/configItem/name/text()"): possibility_list.append(i.content) return possibility_list def get_variants(layout_node, lang): variant_list = list() variant_nodes = layout_node.xpathEval("../../../variantList/variant/configItem/name/text()") for i in variant_nodes: if len(i.xpathEval("../description[@xml:lang='%s']" % lang)) > 0: trans = i.xpathEval("../description[@xml:lang='%s']" % lang)[0] else: trans = "" v = Variant(i.content, trans, i.xpathEval("../../description[position()=1]")[0].content) variant_list.append(v) return variant_list def get_layouts(lang): layout_list = list() doc = libxml2.parseFile("/etc/X11/xkb/rules/xorg.xml") ctxt = doc.xpathNewContext() layout_nodes = ctxt.xpathEval("/xkbConfigRegistry/layoutList/layout/configItem/name/text()") for i in layout_nodes: if i.content == lang: if (len(i.xpathEval("../description[@xml:lang='%s']" % lang)) > 0): translation = i.xpathEval("../description[@xml:lang='%s']" % lang)[0] else: translation = "" if (len(i.xpathEval("../description[@xml:lang='%s']" % lang)) > 0): short_trans = i.xpathEval("../shortDescription[@xml:lang='%s']" % lang)[0] else: short_trans = "" layout_list.append(Layout(i.content, translation, i.xpathEval("../../description[position()=1]")[0].content, short_trans, i.xpathEval("../../shortDescription[position()=1]")[0].content, get_variants(i, lang))) return layout_list if __name__ == "__main__": for i in get_layouts("fr"): print(i) for i in get_all_layout_possibilities(): print(i)