<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Arkady Smirnov - Blog place</title>
	<atom:link href="http://adik.kiev.ua/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://adik.kiev.ua/blog</link>
	<description>let&#039;s do it</description>
	<lastBuildDate>Tue, 29 Nov 2011 13:01:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>[debian] Show installed packages sizes</title>
		<link>http://adik.kiev.ua/blog/2011/11/debian-show-installed-packages-sizes/</link>
		<comments>http://adik.kiev.ua/blog/2011/11/debian-show-installed-packages-sizes/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 13:00:01 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux-tips]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=523</guid>
		<description><![CDATA[dpkg-query -W --showformat='${Installed-Size}\t${Package}\n' &#124; sort -nr &#124; less Links: http://ubuntuforums.org/showthread.php?t=599424]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">dpkg-query <span style="color: #660033;">-W</span> <span style="color: #660033;">--showformat</span>=<span style="color: #ff0000;">'${Installed-Size}\t${Package}\n'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sort</span> <span style="color: #660033;">-nr</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">less</span></pre></div></div>

<p>Links: <a href="http://ubuntuforums.org/showthread.php?t=599424">http://ubuntuforums.org/showthread.php?t=599424</a></p>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2011/11/debian-show-installed-packages-sizes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[bash] Create a non-blocking pipe/FIFO in bash</title>
		<link>http://adik.kiev.ua/blog/2011/11/bach-create-a-non-blocking-pipefifo-in-bash/</link>
		<comments>http://adik.kiev.ua/blog/2011/11/bach-create-a-non-blocking-pipefifo-in-bash/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 13:26:37 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[Linux-tips]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=514</guid>
		<description><![CDATA[#!/bin/bash &#160; set -e &#160; INPIPE=/tmp/pipe_in OUTPIPE=/tmp/pipe_out &#160; rm -f &#34;$INPIPE&#34; &#34;$OUTPIPE&#34; 2&#62;/dev/null if ! mkfifo &#34;$INPIPE&#34; &#34;$OUTPIPE&#34;; then exit 1; fi &#160; process_cmd&#40;&#41; &#123; echo $@ sleep 4 &#125; &#160; while IFS=&#34;&#34; read -r -d $'\n' line; do printf '%s\n' &#34;${line}&#34; done &#60;$INPIPE &#62;$OUTPIPE &#38; bgproxy=$! &#160; exec 3&#62;$INPIPE exec 4&#60;$OUTPIPE &#160; while IFS=&#34;&#34; [...]]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">set</span> <span style="color: #660033;">-e</span>
&nbsp;
<span style="color: #007800;">INPIPE</span>=<span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>pipe_in
<span style="color: #007800;">OUTPIPE</span>=<span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>pipe_out
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-f</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$INPIPE</span>&quot;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$OUTPIPE</span>&quot;</span> <span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">&gt;/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #000000; font-weight: bold;">!</span> <span style="color: #c20cb9; font-weight: bold;">mkfifo</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$INPIPE</span>&quot;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$OUTPIPE</span>&quot;</span>; <span style="color: #000000; font-weight: bold;">then</span> 
  <span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">1</span>;
<span style="color: #000000; font-weight: bold;">fi</span>
&nbsp;
process_cmd<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
  <span style="color: #7a0874; font-weight: bold;">echo</span> $<span style="color: #000000; font-weight: bold;">@</span>
  <span style="color: #c20cb9; font-weight: bold;">sleep</span> <span style="color: #000000;">4</span>
<span style="color: #7a0874; font-weight: bold;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">while</span> <span style="color: #007800;">IFS</span>=<span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #c20cb9; font-weight: bold;">read</span> <span style="color: #660033;">-r</span> <span style="color: #660033;">-d</span> $<span style="color: #ff0000;">'\n'</span> line; <span style="color: #000000; font-weight: bold;">do</span>
  <span style="color: #7a0874; font-weight: bold;">printf</span> <span style="color: #ff0000;">'%s\n'</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">${line}</span>&quot;</span>
<span style="color: #000000; font-weight: bold;">done</span> <span style="color: #000000; font-weight: bold;">&lt;</span><span style="color: #007800;">$INPIPE</span> <span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #007800;">$OUTPIPE</span> <span style="color: #000000; font-weight: bold;">&amp;</span>
<span style="color: #007800;">bgproxy</span>=<span style="color: #007800;">$!</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">exec</span> <span style="color: #000000;">3</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #007800;">$INPIPE</span>
<span style="color: #7a0874; font-weight: bold;">exec</span> <span style="color: #000000;">4</span><span style="color: #000000; font-weight: bold;">&lt;</span><span style="color: #007800;">$OUTPIPE</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">while</span> <span style="color: #007800;">IFS</span>=<span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #c20cb9; font-weight: bold;">read</span> <span style="color: #660033;">-r</span> <span style="color: #660033;">-d</span> $<span style="color: #ff0000;">'\n'</span> <span style="color: #000000; font-weight: bold;">&lt;&amp;</span><span style="color: #000000;">4</span> line; <span style="color: #000000; font-weight: bold;">do</span>
  process_cmd <span style="color: #007800;">$line</span>
<span style="color: #000000; font-weight: bold;">done</span> <span style="color: #000000; font-weight: bold;">&amp;</span>
<span style="color: #007800;">bgreader</span>=<span style="color: #007800;">$!</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">trap</span> <span style="color: #ff0000;">&quot;kill -TERM <span style="color: #007800;">$bgproxy</span>; kill -TERM <span style="color: #007800;">$bgreader</span>; echo 'bgproxy=<span style="color: #007800;">$bgproxy</span> bgreader=<span style="color: #007800;">$bgreader</span>'; rm -f '<span style="color: #007800;">$PIPE</span>'; exit&quot;</span> <span style="color: #000000;">0</span> <span style="color: #000000;">1</span> <span style="color: #000000;">2</span> <span style="color: #000000;">3</span> <span style="color: #000000;">13</span> <span style="color: #000000;">15</span>
<span style="color: #7a0874; font-weight: bold;">wait</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$bgproxy</span>&quot;</span></pre></div></div>

<p>Links: <a href="http://stackoverflow.com/questions/7360473/linux-non-blocking-fifo-on-demand-logging">Linux non-blocking fifo (on demand logging)</a>, <a href="http://www.linuxjournal.com/content/using-named-pipes-fifos-bash">Using Named Pipes (FIFOs) with Bash</a></p>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2011/11/bach-create-a-non-blocking-pipefifo-in-bash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[nginx] configure gitosis and basic http auth for git-http-backend</title>
		<link>http://adik.kiev.ua/blog/2011/07/nginx-configure-gitosis-and-basic-http-auth-for-git-http-backend/</link>
		<comments>http://adik.kiev.ua/blog/2011/07/nginx-configure-gitosis-and-basic-http-auth-for-git-http-backend/#comments</comments>
		<pubDate>Sat, 02 Jul 2011 19:44:48 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[gitosis]]></category>
		<category><![CDATA[nginx]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=479</guid>
		<description><![CDATA[2. Path gitosis: git am --signoff < feauture_http_auth.patch From 815cf347c83465fb9fe20977198e12b9d438b014 Mon Sep 17 00:00:00 2001 From: Arkady Smirnov &#60;smirnov.arkady@gmail.com&#62; Date: Sat, 2 Jul 2011 20:35:28 +0300 Subject: &#91;PATCH&#93; Add http-auth feature &#160; --- gitosis/httpauth.py &#124; 119 +++++++++++++++++++++++++++++++++++++++++++++++++++ gitosis/run_hook.py &#124; 5 ++ 2 files changed, 124 insertions&#40;+&#41;, 0 deletions&#40;-&#41; create mode 100644 gitosis/httpauth.py &#160; diff --git [...]]]></description>
			<content:encoded><![CDATA[<p>2. Path gitosis:</p>
<p><code>git am --signoff < feauture_http_auth.patch</code></p>

<div class="wp_syntax"><div class="code"><pre class="diff" style="font-family:monospace;">From 815cf<span style="color: #440088;">347c83465</span>fb9fe20977198e12b<span style="color: #440088;">9d438</span>b014 Mon Sep <span style="">17</span> 00:00:00 <span style="">2001</span>
From: Arkady Smirnov &lt;smirnov.arkady@gmail.com&gt;
Date: Sat, <span style="">2</span> Jul <span style="">2011</span> <span style="">20</span>:<span style="">35</span>:<span style="">28</span> +0300
Subject: <span style="">&#91;</span>PATCH<span style="">&#93;</span> Add http-auth feature
&nbsp;
<span style="color: #888822;">---
 gitosis/httpauth.py |  119 +++++++++++++++++++++++++++++++++++++++++++++++++++</span>
 gitosis/run_hook.py |    <span style="">5</span> ++
 <span style="">2</span> files changed, <span style="">124</span> insertions<span style="">&#40;</span>+<span style="">&#41;</span>, <span style="">0</span> deletions<span style="">&#40;</span>-<span style="">&#41;</span>
 create mode <span style="">100644</span> gitosis/httpauth.py
&nbsp;
diff --git a/gitosis/httpauth.py b/gitosis/httpauth.py
new file mode <span style="">100644</span>
index 0000000..eda96ff
<span style="color: #888822;">--- /dev/null</span>
<span style="color: #888822;">+++ b/gitosis/httpauth.py</span>
<span style="color: #440088;">@@ -0,0 +1,119 @@</span>
<span style="color: #00b000;">+import os, errno, re</span>
<span style="color: #00b000;">+import logging</span>
<span style="color: #00b000;">+</span>
<span style="color: #00b000;">+log = logging.getLogger<span style="">&#40;</span>'gitosis.httpautch'<span style="">&#41;</span></span>
<span style="color: #00b000;">+</span>
<span style="color: #00b000;">+from gitosis import util</span>
<span style="color: #00b000;">+from gitosis import access</span>
<span style="color: #00b000;">+</span>
<span style="color: #00b000;">+_ACCEPTABLE_USER_RE = re.compile<span style="">&#40;</span>r'^<span style="">&#91;</span>a-zA-Z<span style="">&#93;</span><span style="">&#91;</span>a-zA-Z0-9_.-<span style="">&#93;</span>*<span style="">&#40;</span>@<span style="">&#91;</span>a-zA-Z<span style="">&#93;</span><span style="">&#91;</span>a-zA-Z0-9.-<span style="">&#93;</span>*<span style="">&#41;</span>?$'<span style="">&#41;</span></span>
<span style="color: #00b000;">+</span>
<span style="color: #00b000;">+def isSafeUsername<span style="">&#40;</span>user<span style="">&#41;</span>:</span>
<span style="color: #00b000;">+    match = _ACCEPTABLE_USER_RE.match<span style="">&#40;</span>user<span style="">&#41;</span></span>
<span style="color: #00b000;">+    return <span style="">&#40;</span>match is not None<span style="">&#41;</span></span>
<span style="color: #00b000;">+</span>
<span style="color: #00b000;">+def _extract_reldir<span style="">&#40;</span>topdir, dirpath<span style="">&#41;</span>:</span>
<span style="color: #00b000;">+    if topdir == dirpath:</span>
<span style="color: #00b000;">+        return '.'</span>
<span style="color: #00b000;">+    prefix = topdir + '/'</span>
<span style="color: #00b000;">+    assert dirpath.startswith<span style="">&#40;</span>prefix<span style="">&#41;</span></span>
<span style="color: #00b000;">+    reldir = dirpath<span style="">&#91;</span>len<span style="">&#40;</span>prefix<span style="">&#41;</span>:<span style="">&#93;</span></span>
<span style="color: #00b000;">+    return reldir</span>
<span style="color: #00b000;">+</span>
<span style="color: #00b000;">+def WriteHtpasswd<span style="">&#40;</span>config, keydir<span style="">&#41;</span>:</span>
<span style="color: #00b000;">+    repositories = util.getRepositoryDir<span style="">&#40;</span>config<span style="">&#41;</span></span>
<span style="color: #00b000;">+    </span>
<span style="color: #00b000;">+    def _error<span style="">&#40;</span>e<span style="">&#41;</span>:</span>
<span style="color: #00b000;">+        if e.errno == errno.ENOENT:</span>
<span style="color: #00b000;">+            pass</span>
<span style="color: #00b000;">+        else:</span>
<span style="color: #00b000;">+            raise e</span>
<span style="color: #00b000;">+    for <span style="">&#40;</span>dirpath, dirnames, filenames<span style="">&#41;</span> \</span>
<span style="color: #00b000;">+        in os.walk<span style="">&#40;</span>repositories, onerror=_error<span style="">&#41;</span>:</span>
<span style="color: #00b000;">+        </span>
<span style="color: #00b000;">+        reldir = _extract_reldir<span style="">&#40;</span></span>
<span style="color: #00b000;">+            topdir=repositories,</span>
<span style="color: #00b000;">+            dirpath=dirpath,</span>
<span style="color: #00b000;">+            <span style="">&#41;</span></span>
<span style="color: #00b000;">+        </span>
<span style="color: #00b000;">+        log.debug<span style="">&#40;</span>'Walking %r, seeing %r', reldir, dirnames<span style="">&#41;</span></span>
<span style="color: #00b000;">+        to_recurse = <span style="">&#91;</span><span style="">&#93;</span></span>
<span style="color: #00b000;">+        repos = <span style="">&#91;</span><span style="">&#93;</span></span>
<span style="color: #00b000;">+        for dirname in dirnames:</span>
<span style="color: #00b000;">+            if dirname.endswith<span style="">&#40;</span>'.git'<span style="">&#41;</span>:</span>
<span style="color: #00b000;">+                repos.append<span style="">&#40;</span>dirname<span style="">&#41;</span></span>
<span style="color: #00b000;">+            else:</span>
<span style="color: #00b000;">+                to_recurse.append<span style="">&#40;</span>dirname<span style="">&#41;</span></span>
<span style="color: #00b000;">+        dirnames<span style="">&#91;</span>:<span style="">&#93;</span> = to_recurse</span>
<span style="color: #00b000;">+        </span>
<span style="color: #00b000;">+        for repo in repos:</span>
<span style="color: #00b000;">+            reponame, ext = os.path.splitext<span style="">&#40;</span>repo<span style="">&#41;</span></span>
<span style="color: #00b000;">+            if reldir != '.':</span>
<span style="color: #00b000;">+                reponame = os.path.join<span style="">&#40;</span>reldir, reponame<span style="">&#41;</span></span>
<span style="color: #00b000;">+            assert ext == '.git'</span>
<span style="color: #00b000;">+            </span>
<span style="color: #00b000;">+            log.debug<span style="">&#40;</span>'http-auth for repo %r', repo<span style="">&#41;</span></span>
<span style="color: #00b000;">+            </span>
<span style="color: #00b000;">+            htpasswd_w = os.path.join<span style="">&#40;</span>dirpath, repo, '.htpasswd-write'<span style="">&#41;</span></span>
<span style="color: #00b000;">+            htpasswd_r = os.path.join<span style="">&#40;</span>dirpath, repo, '.htpasswd-read'<span style="">&#41;</span></span>
<span style="color: #00b000;">+            tmpw = '%s.%d.tmp' % <span style="">&#40;</span>htpasswd_w, os.getpid<span style="">&#40;</span><span style="">&#41;</span><span style="">&#41;</span></span>
<span style="color: #00b000;">+            tmpr = '%s.%d.tmp' % <span style="">&#40;</span>htpasswd_r, os.getpid<span style="">&#40;</span><span style="">&#41;</span><span style="">&#41;</span></span>
<span style="color: #00b000;">+            </span>
<span style="color: #00b000;">+            try:</span>
<span style="color: #00b000;">+                outw = file<span style="">&#40;</span>tmpw, 'w'<span style="">&#41;</span></span>
<span style="color: #00b000;">+                outr = file<span style="">&#40;</span>tmpr, 'w'<span style="">&#41;</span></span>
<span style="color: #00b000;">+            </span>
<span style="color: #00b000;">+            </span>
<span style="color: #00b000;">+                for filename in os.listdir<span style="">&#40;</span>keydir<span style="">&#41;</span>:</span>
<span style="color: #00b000;">+                    if filename.startswith<span style="">&#40;</span>'.'<span style="">&#41;</span>:</span>
<span style="color: #00b000;">+                        continue</span>
<span style="color: #00b000;">+                    </span>
<span style="color: #00b000;">+                    username, ext = os.path.splitext<span style="">&#40;</span>filename<span style="">&#41;</span></span>
<span style="color: #00b000;">+                    if ext != '.htpasswd':</span>
<span style="color: #00b000;">+                        continue</span>
<span style="color: #00b000;">+                    </span>
<span style="color: #00b000;">+                    if not isSafeUsername<span style="">&#40;</span>username<span style="">&#41;</span>:</span>
<span style="color: #00b000;">+                        log.warn<span style="">&#40;</span>'Unsafe HTTP-AUTH username in keyfile: %r', filename<span style="">&#41;</span></span>
<span style="color: #00b000;">+                        continue</span>
<span style="color: #00b000;">+                    </span>
<span style="color: #00b000;">+                    path = os.path.join<span style="">&#40;</span>keydir, filename<span style="">&#41;</span></span>
<span style="color: #00b000;">+                    f = file<span style="">&#40;</span>path<span style="">&#41;</span></span>
<span style="color: #00b000;">+                    log.debug<span style="">&#40;</span>'OPEN %r', path<span style="">&#41;</span></span>
<span style="color: #00b000;">+                    </span>
<span style="color: #00b000;">+                    # write access is always sufficient</span>
<span style="color: #00b000;">+                    newpath = access.haveAccess<span style="">&#40;</span></span>
<span style="color: #00b000;">+                        config=config,</span>
<span style="color: #00b000;">+                        user=username,</span>
<span style="color: #00b000;">+                        mode='writable',</span>
<span style="color: #00b000;">+                        path=reponame<span style="">&#41;</span></span>
<span style="color: #00b000;">+                    </span>
<span style="color: #00b000;">+                    if newpath is None:</span>
<span style="color: #00b000;">+                        newpath = access.haveAccess<span style="">&#40;</span></span>
<span style="color: #00b000;">+                            config=config,</span>
<span style="color: #00b000;">+                            user=username,</span>
<span style="color: #00b000;">+                            mode='readonly',</span>
<span style="color: #00b000;">+                            path=reponame<span style="">&#41;</span></span>
<span style="color: #00b000;">+                        </span>
<span style="color: #00b000;">+                        if newpath is not None:</span>
<span style="color: #00b000;">+                            log.debug<span style="">&#40;</span>'USERNAME = %r has readonly access', username<span style="">&#41;</span></span>
<span style="color: #00b000;">+                            for line in f:</span>
<span style="color: #00b000;">+                                line = line.rstrip<span style="">&#40;</span>'\n'<span style="">&#41;</span></span>
<span style="color: #00b000;">+                                print &gt;&gt;outr, line</span>
<span style="color: #00b000;">+                    else:</span>
<span style="color: #00b000;">+                        log.debug<span style="">&#40;</span>'USERNAME = %r has write access', username<span style="">&#41;</span></span>
<span style="color: #00b000;">+                        for line in f:</span>
<span style="color: #00b000;">+                            line = line.rstrip<span style="">&#40;</span>'\n'<span style="">&#41;</span></span>
<span style="color: #00b000;">+                            print &gt;&gt;outw, line</span>
<span style="color: #00b000;">+                            print &gt;&gt;outr, line</span>
<span style="color: #00b000;">+                    </span>
<span style="color: #00b000;">+                    f.close<span style="">&#40;</span><span style="">&#41;</span></span>
<span style="color: #00b000;">+                    os.fsync<span style="">&#40;</span>outw<span style="">&#41;</span></span>
<span style="color: #00b000;">+                    os.fsync<span style="">&#40;</span>outr<span style="">&#41;</span></span>
<span style="color: #00b000;">+                    </span>
<span style="color: #00b000;">+            finally:</span>
<span style="color: #00b000;">+                outw.close<span style="">&#40;</span><span style="">&#41;</span></span>
<span style="color: #00b000;">+                outr.close<span style="">&#40;</span><span style="">&#41;</span></span>
<span style="color: #00b000;">+            </span>
<span style="color: #00b000;">+            os.rename<span style="">&#40;</span>tmpw, htpasswd_w<span style="">&#41;</span></span>
<span style="color: #00b000;">+            os.rename<span style="">&#40;</span>tmpr, htpasswd_r<span style="">&#41;</span></span>
<span style="color: #00b000;">+</span>
diff --git a/gitosis/run_hook.py b/gitosis/run_hook.py
index e535e6a..f<span style="color: #440088;">8d089</span>b <span style="">100644</span>
<span style="color: #888822;">--- a/gitosis/run_hook.py</span>
<span style="color: #888822;">+++ b/gitosis/run_hook.py</span>
<span style="color: #440088;">@@ -10,6 +10,7 @@ import shutil</span>
&nbsp;
 from gitosis import repository
 from gitosis import ssh
<span style="color: #00b000;">+from gitosis import httpauth</span>
 from gitosis import gitweb
 from gitosis import gitdaemon
 from gitosis import app
<span style="color: #440088;">@@ -47,6 +48,10 @@ def post_update<span style="">&#40;</span>cfg, git_dir<span style="">&#41;</span>:</span>
         path=authorized_keys,
         keydir=os.path.join<span style="">&#40;</span>export, 'keydir'<span style="">&#41;</span>,
         <span style="">&#41;</span>
<span style="color: #00b000;">+    httpauth.WriteHtpasswd<span style="">&#40;</span></span>
<span style="color: #00b000;">+        config=cfg,</span>
<span style="color: #00b000;">+        keydir=os.path.join<span style="">&#40;</span>export, 'keydir'<span style="">&#41;</span>,</span>
<span style="color: #00b000;">+        <span style="">&#41;</span></span>
&nbsp;
 class Main<span style="">&#40;</span>app.App<span style="">&#41;</span>:
     def create_parser<span style="">&#40;</span>self<span style="">&#41;</span>:
<span style="color: #991111;">-- </span>
1.7.0.4</pre></div></div>

<p>3. Nginx config</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">server {
        listen       80;
        server_name  git.example.com;
&nbsp;
        open_file_cache          max=1000  inactive=20s;
        open_file_cache_valid    30s;
        open_file_cache_min_uses 2;
        open_file_cache_errors   on;
&nbsp;
        client_max_body_size 500m;
        proxy_buffering off;
&nbsp;
        # Enable chunk support
        # https://github.com/agentzh/chunkin-nginx-module
        chunkin on;
        error_page 411 = @my_411_error;
        location @my_411_error {
            chunkin_resume;
        }
&nbsp;
        set $git_root /home/git/repositories;
&nbsp;
        if ($uri ~ &quot;^(/[^/]+\.git)(.*)&quot; ) {
            set $git_project $git_root$1; 
            set $git_export_ok $git_project/git-daemon-export-ok; 
        }
&nbsp;
        if ( !-d $git_project ) {
            return 401;
        }
&nbsp;
        if ($arg_service ~* &quot;git-receive-pack&quot;) {
            rewrite ^ /git-auth/write$uri last;
        }      
&nbsp;
        if ( -f $git_export_ok ) {
            rewrite ^ /git/public$uri last;
        }
&nbsp;
        # default auth-read action
        rewrite ^ /git-auth/read$uri last;
&nbsp;
        location ~ ^/git/public(/.*) {
            internal;
            # fcgiwrap is set up to listen on this host:port
            fastcgi_pass        unix:/var/run/git-backend-fcgi;
            fastcgi_param       SCRIPT_FILENAME     /usr/lib/git-core/git-http-backend;
            #fastcgi_param      GIT_HTTP_EXPORT_ALL &quot;&quot;;
            fastcgi_param       GIT_PROJECT_ROOT    $git_root;
            fastcgi_param       PATH_INFO           $1;
            fastcgi_param       REMOTE_USER         $remote_user;
            include             fastcgi_params;
        }
&nbsp;
        location ~ ^/git-auth/read(/.*) {
            internal;
            auth_basic &quot;git-auth&quot;;
            auth_basic_user_file $git_project/.htpasswd-read;
&nbsp;
            # fcgiwrap is set up to listen on this host:port
            fastcgi_pass        unix:/var/run/git-backend-fcgi;
            fastcgi_param       SCRIPT_FILENAME     /usr/lib/git-core/git-http-backend;
            fastcgi_param       GIT_HTTP_EXPORT_ALL &quot;&quot;;
            fastcgi_param       GIT_PROJECT_ROOT    $git_root;
            fastcgi_param       PATH_INFO           $1;
            fastcgi_param       REMOTE_USER         $remote_user;
            include             fastcgi_params;
        }
&nbsp;
        location ~ ^/git-auth/write(/.*) {
            internal;
            auth_basic &quot;git-auth&quot;;
            auth_basic_user_file $git_project/.htpasswd-write;
&nbsp;
            # fcgiwrap is set up to listen on this host:port
            fastcgi_pass        unix:/var/run/git-backend-fcgi;
            fastcgi_param       SCRIPT_FILENAME     /usr/lib/git-core/git-http-backend;
            fastcgi_param       GIT_HTTP_EXPORT_ALL &quot;&quot;;
            fastcgi_param       GIT_PROJECT_ROOT    $git_root;
            fastcgi_param       PATH_INFO           $1;
            fastcgi_param       REMOTE_USER         $remote_user;
            include             fastcgi_params;
        }
&nbsp;
}</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2011/07/nginx-configure-gitosis-and-basic-http-auth-for-git-http-backend/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>[XEN] Change tap device mac address to prevent change of bridge&#8217;s</title>
		<link>http://adik.kiev.ua/blog/2011/05/xen-change-tap-device-mac-address-to-prevent-change-of-bridges/</link>
		<comments>http://adik.kiev.ua/blog/2011/05/xen-change-tap-device-mac-address-to-prevent-change-of-bridges/#comments</comments>
		<pubDate>Mon, 09 May 2011 15:08:17 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Xen]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=463</guid>
		<description><![CDATA[In XEN 4.0.1-2 package on Debian GNU/Linux 6.0.1 (squeeze): 1. Patch your /etc/xen/scripts/qemu-ifup file echo -c 'config qemu network with xen bridge for ' echo $* &#160; +ip link set $1 addr fe:ff:ff:ff:ff:ff ifconfig $1 0.0.0.0 up brctl addif $2 $1 2. Add /etc/xen/scripts/hotplugpath.sh SBINDIR=&#34;/usr/sbin&#34; BINDIR=&#34;/usr/bin&#34; LIBEXEC=&#34;/usr/lib/xen/bin&#34; LIBDIR=&#34;/usr/lib64&#34; SHAREDIR=&#34;/usr/share&#34; PRIVATE_BINDIR=&#34;/usr/lib64/xen/bin&#34; XENFIRMWAREDIR=&#34;/usr/lib/xen/boot&#34; XEN_CONFIG_DIR=&#34;/etc/xen&#34; XEN_SCRIPT_DIR=&#34;/etc/xen/scripts&#34; XEN_LOCK_DIR=&#34;/var/lock&#34; http://lists.xensource.com/archives/html/xen-devel/2010-12/msg01302.html]]></description>
			<content:encoded><![CDATA[<p>In XEN 4.0.1-2 package  on Debian GNU/Linux 6.0.1 (squeeze):</p>
<p>1. Patch your <span style="text-decoration: underline;">/etc/xen/scripts/qemu-ifup</span> file</p>

<div class="wp_syntax"><div class="code"><pre class="diff" style="font-family:monospace;"> echo -c 'config qemu network with xen bridge for '
 echo $*
&nbsp;
<span style="color: #00b000;">+ip link set $1 addr fe:ff:ff:ff:ff:ff</span>
 ifconfig $1 0.0.0.0 up
 brctl addif $2 $1</pre></div></div>

<p>2. Add <span style="text-decoration: underline;">/etc/xen/scripts/hotplugpath.sh</span></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">SBINDIR</span>=<span style="color: #ff0000;">&quot;/usr/sbin&quot;</span>
<span style="color: #007800;">BINDIR</span>=<span style="color: #ff0000;">&quot;/usr/bin&quot;</span>
<span style="color: #007800;">LIBEXEC</span>=<span style="color: #ff0000;">&quot;/usr/lib/xen/bin&quot;</span>
<span style="color: #007800;">LIBDIR</span>=<span style="color: #ff0000;">&quot;/usr/lib64&quot;</span>
<span style="color: #007800;">SHAREDIR</span>=<span style="color: #ff0000;">&quot;/usr/share&quot;</span>
<span style="color: #007800;">PRIVATE_BINDIR</span>=<span style="color: #ff0000;">&quot;/usr/lib64/xen/bin&quot;</span>
<span style="color: #007800;">XENFIRMWAREDIR</span>=<span style="color: #ff0000;">&quot;/usr/lib/xen/boot&quot;</span>
<span style="color: #007800;">XEN_CONFIG_DIR</span>=<span style="color: #ff0000;">&quot;/etc/xen&quot;</span>
<span style="color: #007800;">XEN_SCRIPT_DIR</span>=<span style="color: #ff0000;">&quot;/etc/xen/scripts&quot;</span>
<span style="color: #007800;">XEN_LOCK_DIR</span>=<span style="color: #ff0000;">&quot;/var/lock&quot;</span></pre></div></div>

<p><a href="http://lists.xensource.com/archives/html/xen-devel/2010-12/msg01302.html">http://lists.xensource.com/archives/html/xen-devel/2010-12/msg01302.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2011/05/xen-change-tap-device-mac-address-to-prevent-change-of-bridges/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nginx static files POST request 405 Method Not Allowed</title>
		<link>http://adik.kiev.ua/blog/2011/04/nginx-static-files-post-request-405-method-not-allowed/</link>
		<comments>http://adik.kiev.ua/blog/2011/04/nginx-static-files-post-request-405-method-not-allowed/#comments</comments>
		<pubDate>Thu, 07 Apr 2011 13:32:32 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=459</guid>
		<description><![CDATA[server { listen 80; ... error_page 405 = $uri; ... }]]></description>
			<content:encoded><![CDATA[<pre>
server {
   listen   80;
   ...

   error_page 405 = $uri;

   ...
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2011/04/nginx-static-files-post-request-405-method-not-allowed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Latest ruby enterprise edition builds with passenger for Ubuntu lucid</title>
		<link>http://adik.kiev.ua/blog/2011/03/latest-ruby-enterprise-edition-builds-with-passenger-for-ubuntu-lucid/</link>
		<comments>http://adik.kiev.ua/blog/2011/03/latest-ruby-enterprise-edition-builds-with-passenger-for-ubuntu-lucid/#comments</comments>
		<pubDate>Thu, 03 Mar 2011 14:55:45 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=457</guid>
		<description><![CDATA[https://launchpad.net/~smirnov-arkady/+archive/ruby-ee]]></description>
			<content:encoded><![CDATA[<p><a href="https://launchpad.net/~smirnov-arkady/+archive/ruby-ee">https://launchpad.net/~smirnov-arkady/+archive/ruby-ee</a></p>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2011/03/latest-ruby-enterprise-edition-builds-with-passenger-for-ubuntu-lucid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>xen xm console on lucid 10.04 DomU</title>
		<link>http://adik.kiev.ua/blog/2011/02/xen-xm-console-on-lucid-1004-domu/</link>
		<comments>http://adik.kiev.ua/blog/2011/02/xen-xm-console-on-lucid-1004-domu/#comments</comments>
		<pubDate>Sat, 12 Feb 2011 17:41:39 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[Xen]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=454</guid>
		<description><![CDATA[Add hvc0 console init: cp /etc/init/tty1.conf /etc/init/hvc0.conf sed -i 's/tty1/hvc0/' /etc/init/hvc0.conf in xen config file: extra = "console=hvc0"]]></description>
			<content:encoded><![CDATA[<p>Add hvc0 console init:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init<span style="color: #000000; font-weight: bold;">/</span>tty1.conf <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init<span style="color: #000000; font-weight: bold;">/</span>hvc0.conf
<span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-i</span> <span style="color: #ff0000;">'s/tty1/hvc0/'</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init<span style="color: #000000; font-weight: bold;">/</span>hvc0.conf</pre></div></div>

<p>in xen config file: </p>
<pre>
extra = "console=hvc0"
</pre>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2011/02/xen-xm-console-on-lucid-1004-domu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RaLink RT3090 Wireless 802.11n 1T/1R PCIe For HP ProBook 4320s 4520s</title>
		<link>http://adik.kiev.ua/blog/2011/01/ralink-rt3090-wireless-80211n-1t1r-pcie-for-hp-probook-4320s-4520s/</link>
		<comments>http://adik.kiev.ua/blog/2011/01/ralink-rt3090-wireless-80211n-1t1r-pcie-for-hp-probook-4320s-4520s/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 01:12:20 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=449</guid>
		<description><![CDATA[RaLink RT3090 Wireless 802.11n 1T/1R PCIe [1814:3090] &#160; Install drivers: https://launchpad.net/~smirnov-arkady/+archive/rt3090 1. Download kernel source RaLink RT3090 ( amd64 &#124; i386 ) 2. Download modaliases package ( amd64 &#124; i386 ) 3. Install by console sudo dpkg -i rt3090-kernel-source_2.4.0.4-0ubuntu0~ppa1_amd64.deb rt3090-modaliases_2.4.0.4-0ubuntu0~ppa1_amd64.deb or doubleclick and use Ubuntu Software Center &#160; To solve the problem with wireless reconnects [...]]]></description>
			<content:encoded><![CDATA[<p>RaLink RT3090 Wireless 802.11n 1T/1R PCIe [1814:3090]</p>
<p>&nbsp;</p>
<p><strong>Install drivers:</strong></p>
<p><a href="https://launchpad.net/~smirnov-arkady/+archive/rt3090">https://launchpad.net/~smirnov-arkady/+archive/rt3090</a></p>
<p>1. Download kernel source RaLink RT3090 ( <a href="https://launchpad.net/~smirnov-arkady/+archive/rt3090/+files/rt3090-kernel-source_2.4.0.4-0ubuntu0%7Eppa1_amd64.deb">amd64</a> | <a href="https://launchpad.net/~smirnov-arkady/+archive/rt3090/+files/rt3090-kernel-source_2.4.0.4-0ubuntu0%7Eppa1_i386.deb">i386</a> )</p>
<p>2. Download modaliases package ( <a href="https://launchpad.net/~smirnov-arkady/+archive/rt3090/+files/rt3090-modaliases_2.4.0.4-0ubuntu0%7Eppa1_amd64.deb">amd64</a> | <a href="https://launchpad.net/~smirnov-arkady/+archive/rt3090/+files/rt3090-modaliases_2.4.0.4-0ubuntu0%7Eppa1_i386.deb">i386</a> )</p>
<p>3. Install by console</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-i</span> rt3090-kernel-source_2.4.0.4-0ubuntu0~ppa1_amd64.deb rt3090-modaliases_2.4.0.4-0ubuntu0~ppa1_amd64.deb</pre></div></div>

<p>or doubleclick and use  Ubuntu Software Center</p>
<p>&nbsp;</p>
<p><strong>To solve the problem with wireless reconnects try to adjust smp affinity</strong><br />
<strong>for your card:</strong></p>
<p>1. Get IRQ number in the first column in /proc/interrupts for wlan or ra device</p>
<p style="padding-left: 30px;">$ cat /proc/interrupts | egrep &#8220;wlan|ra&#8221;</p>
<p>2. Dedicate our first CPU (CPU0) to handling the card interrupts</p>
<p style="padding-left: 30px;">$ echo 1 &gt; /proc/irq/ &lt; IRQ &gt; /smp_affinity</p>
<p>PS.  Working with rt2860sta driver too.<br />
PS.  Must have uninstalled the irqbalance package</p>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2011/01/ralink-rt3090-wireless-80211n-1t1r-pcie-for-hp-probook-4320s-4520s/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DomU in Xen 4.0 on Debian squeeze pvops kernel</title>
		<link>http://adik.kiev.ua/blog/2010/11/domu-in-xen-40-on-debian-squeeze-pvops-kernel/</link>
		<comments>http://adik.kiev.ua/blog/2010/11/domu-in-xen-40-on-debian-squeeze-pvops-kernel/#comments</comments>
		<pubDate>Sat, 20 Nov 2010 17:52:51 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Xen]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=442</guid>
		<description><![CDATA[Check if your kernel was built with: CONFIG_XEN_BLKDEV_FRONTEND=m CONFIG_XEN_NETDEV_FRONTEND=m Add modules to initrd (in DomU) echo &#34;xen-blkfront&#34; &#62;&#62; /etc/initramfs-tools/modules echo &#34;xen-netfront&#34; &#62;&#62; /etc/initramfs-tools/modules Update initrd (in DomU) update-initramfs -u -k all]]></description>
			<content:encoded><![CDATA[<p>Check if your kernel was built with:</p>
<pre>
CONFIG_XEN_BLKDEV_FRONTEND=m
CONFIG_XEN_NETDEV_FRONTEND=m
</pre>
<p>Add modules to initrd (in DomU)</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;xen-blkfront&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>initramfs-tools<span style="color: #000000; font-weight: bold;">/</span>modules
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;xen-netfront&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>initramfs-tools<span style="color: #000000; font-weight: bold;">/</span>modules</pre></div></div>

<p>Update initrd (in DomU)</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">update-initramfs <span style="color: #660033;">-u</span> <span style="color: #660033;">-k</span> all</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2010/11/domu-in-xen-40-on-debian-squeeze-pvops-kernel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[fix] CenterIM GTalk contacts blinking</title>
		<link>http://adik.kiev.ua/blog/2010/11/centerim-gtalk-contacts-blinking/</link>
		<comments>http://adik.kiev.ua/blog/2010/11/centerim-gtalk-contacts-blinking/#comments</comments>
		<pubDate>Mon, 15 Nov 2010 00:29:44 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[Linux-tips]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=435</guid>
		<description><![CDATA[diff -urNad centerim-4.22.9~/src/icqcontacts.cc centerim-4.22.9/src/icqcontacts.cc --- centerim-4.22.9~/src/icqcontacts.cc 2010-01-12 09:55:38.000000000 +0200 +++ centerim-4.22.9/src/icqcontacts.cc 2010-11-15 02:03:21.000000000 +0200 @@ -374,5 +374,5 @@ } - c-&#62;setgroupid(gid); + c-&#62;setgroupid(gid, false); }]]></description>
			<content:encoded><![CDATA[<pre>diff -urNad centerim-4.22.9~/src/icqcontacts.cc centerim-4.22.9/src/icqcontacts.cc
--- centerim-4.22.9~/src/icqcontacts.cc 2010-01-12 09:55:38.000000000 +0200
+++ centerim-4.22.9/src/icqcontacts.cc  2010-11-15 02:03:21.000000000 +0200
@@ -374,5 +374,5 @@

     }

-    c-&gt;setgroupid(gid);
+    c-&gt;setgroupid(gid, false);
 }</pre>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2010/11/centerim-gtalk-contacts-blinking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[debian #552439] drbd8 and linux-2.6.26  at lenny stable</title>
		<link>http://adik.kiev.ua/blog/2010/07/debian-552439-drbd8-and-linux-2626-at-lenny-stable/</link>
		<comments>http://adik.kiev.ua/blog/2010/07/debian-552439-drbd8-and-linux-2626-at-lenny-stable/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 14:18:27 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Xen]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=431</guid>
		<description><![CDATA[/usr/src/modules/drbd8/drbd/drbd_nl.c: In function ‘drbd_nl_init’: /usr/src/modules/drbd8/drbd/drbd_nl.c:2403: error: size of array ‘type name’ is negative /usr/src/modules/drbd8/drbd/drbd_nl.c:2409: warning: passing argument 3 of ‘cn_add_callback’ from incompatible pointer type ln -s /usr/src/linux-headers-`uname -r`/ /lib/modules/`uname -r`/source m-a -t build drbd8 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=552439]]></description>
			<content:encoded><![CDATA[<pre>
/usr/src/modules/drbd8/drbd/drbd_nl.c: In function ‘drbd_nl_init’:
/usr/src/modules/drbd8/drbd/drbd_nl.c:2403: error: size of array ‘type name’ is negative
/usr/src/modules/drbd8/drbd/drbd_nl.c:2409: warning: passing argument 3 of ‘cn_add_callback’ from incompatible pointer type
</pre>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ln</span> <span style="color: #660033;">-s</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>src<span style="color: #000000; font-weight: bold;">/</span>linux-headers-<span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">uname</span> -r<span style="color: #000000; font-weight: bold;">`/</span>  <span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>modules<span style="color: #000000; font-weight: bold;">/`</span><span style="color: #c20cb9; font-weight: bold;">uname</span> -r<span style="color: #000000; font-weight: bold;">`/</span><span style="color: #7a0874; font-weight: bold;">source</span>
m-a <span style="color: #660033;">-t</span> build drbd8</pre></div></div>

<p><a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=552439">http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=552439</a></p>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2010/07/debian-552439-drbd8-and-linux-2626-at-lenny-stable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(default-security-tips)</title>
		<link>http://adik.kiev.ua/blog/2010/05/default-security-tips/</link>
		<comments>http://adik.kiev.ua/blog/2010/05/default-security-tips/#comments</comments>
		<pubDate>Thu, 13 May 2010 12:20:45 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[Linux-tips]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=429</guid>
		<description><![CDATA[links: 20 Linux Server Hardening Security Tips Top 20 OpenSSH Server Best Security Practices Prevent From Using Or Reuse Same Old Passwords PAM на страже ваших компьютеров]]></description>
			<content:encoded><![CDATA[<p>links:</p>
<ul>
<li><a href="http://www.cyberciti.biz/tips/linux-security.html">20 Linux Server Hardening Security Tips</a></li>
<li><a href="http://www.cyberciti.biz/tips/linux-unix-bsd-openssh-server-best-practices.html">Top 20 OpenSSH Server Best Security Practices</a></li>
<li><a href="http://www.cyberciti.biz/tips/how-to-linux-prevent-the-reuse-of-old-passwords.html">Prevent From Using Or Reuse Same Old Passwords</a></li>
<li><a href="http://rus-linux.net/lib.php?name=/MyLDP/sec/pam.html">PAM на страже ваших компьютеров</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2010/05/default-security-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Настройка дополнительного домена для недоставленной почты</title>
		<link>http://adik.kiev.ua/blog/2010/01/postfix-bounces-domain/</link>
		<comments>http://adik.kiev.ua/blog/2010/01/postfix-bounces-domain/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 13:16:10 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[postfix]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=370</guid>
		<description><![CDATA[Проблема: Основной почтовый домен хостится на google app.  Автоматические отчеты отсылаются напрямую в googleapp .  Если gmail начал отклонять письма (не касается платных аккаунтов) на ваши служебные адреса (hostmaster, postmaster, root) &#8211; вы перестаните получать уведомления об ошибках, нотификации, ежедневные отчеты и тп.  Приведенная конфигурация касается только конфигураци для почтовых серверов расчитаных в основном  для [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Проблема: </strong> Основной почтовый домен хостится на google app.  Автоматические отчеты отсылаются напрямую в googleapp .  Если gmail начал отклонять письма (не касается платных аккаунтов) на ваши служебные адреса (hostmaster, postmaster, root) &#8211; вы перестаните получать уведомления об ошибках, нотификации, ежедневные отчеты и тп.  Приведенная конфигурация касается только конфигураци для почтовых серверов расчитаных в основном  для отправки почты  (lamp).  Для возможности архивирования и пересылки используем дополнительный relay.</p>
<p><strong>Решение:</strong></p>
<p>1.  Создаем вспомогательный домен c собвственным MX, SPF (к примеру:  <em>bounces.domain.ua</em>, <em>colo.domain.ua</em>).</p>
<p>2.  На серверах прописываем транспорт и направляем все ошибки (про доставленную почту и тп) через наш домен <em>bounces.domain.ua</em>.</p>
<p><strong>/etc/postfix/main.cf</strong></p>
<pre># Отчеты о недоставленой почте отправляем постмастеру
notify_classes = bounce,resource,software
double_bounce_sender = postmaster
bounce_notice_recipient = postmaster@bounces.domain.ua
#
# Всю почту from:&lt;&gt; отправляем через наш relay
empty_address_relayhost_maps_lookup_key = MAILER-DAEMON
sender_dependent_relayhost_maps = hash:/etc/postfix/sender_relay</pre>
<p><strong>/etc/postfix/sender_relay</strong></p>
<pre>MAILER-DAEMON   bounces.domain.ua</pre>
<p>3. В <strong>/etc/aliases</strong> перенаправляем всю почту для <em>root</em> на <em>root@colo.domain.ua</em>.</p>
<p>4.  В моем случае,  необходимо было всю  почту к <em>@bounces.domain.ua</em> перенаправлять к одному адресату, а на ящики <em>root@colo.domain.ua</em> и <em>cron@colo.domain.ua</em> к другим.  Остальное &gt; /dev/null.  Вот конфигурация вспомогательного почтового сервера:</p>
<pre># ---- Virtual domains for reposts ----
...........................[SKIPED].........................
virtual_alias_domains =  colo.domain.ua bounces.domain.ua
virtual_alias_maps = hash:/etc/postfix/virtual

# ---- Rewrite address ----
sender_canonical_maps = regexp:/etc/postfix/sender_canonical
recipient_canonical_maps = hash:/etc/postfix/recipient_canonical

# ---- Redefine default transport ----
default_transport = local

# ---- Relay all local transport to one email ----
local_recipient_maps =
luser_relay = null

# ---- Define normal smtp transport for some domain ----
transport_maps = hash:/etc/postfix/transport

# ---- Access only my network ----
smtpd_client_restrictions = permit_mynetworks, reject</pre>
<p><strong>/etc/postfix/virtual</strong></p>
<pre>@bounces.domain.ua			xxxx1@other-domain.com.ua
root@colo.domain.ua			xxxx2@other-domain.com.ua
cron@colo.domain.ua			xxxx3@other-domain.com.ua</pre>
<p><strong>/etc/postfix/sender_canonical</strong></p>
<pre>/^(.*)@(.*)$/		${1}@dsn.domain.ua</pre>
<p><strong>/etc/postfix/transport</strong></p>
<pre>@gmail.com				smtp:gmail.com
other-domain.com.ua			smtp:other-domain.com.ua</pre>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2010/01/postfix-bounces-domain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://adik.kiev.ua/blog/2009/12/365/</link>
		<comments>http://adik.kiev.ua/blog/2009/12/365/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 10:21:18 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=365</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/5jzh9U2qLTU&#038;hl=ru_RU&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/5jzh9U2qLTU&#038;hl=ru_RU&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2009/12/365/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Как добавить patch в собираемый deb пакет [Debian Maintainers]</title>
		<link>http://adik.kiev.ua/blog/2009/11/patch-for-build-deb-package/</link>
		<comments>http://adik.kiev.ua/blog/2009/11/patch-for-build-deb-package/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 00:24:27 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=317</guid>
		<description><![CDATA[При сборке пакетов, крайне не рекомендуется изменять исходный код. Если нам все-таки необходимо это сделать &#8211; пользуемся менеджерами патчей dpatch или quilt. Using DPatch 1. Устанавливаем dpatch apt-get install dpatch 2. В список зависимостей Build-Depends, который находится в debian/control, добавляем dpatch 3. Создаем папку: mkdir debian/patches 4. С помощью команды dpatch-edit-patch создаем наш патч. Утилита [...]]]></description>
			<content:encoded><![CDATA[<p>При сборке пакетов, крайне не рекомендуется изменять исходный код. Если нам все-таки необходимо это сделать &#8211; пользуемся менеджерами патчей <a href="http://packages.debian.org/dpatch">dpatch</a> или <a href="http://packages.debian.org/quilt">quilt</a>. </p>
<h2>Using DPatch</h2>
<p><strong>1.</strong> Устанавливаем <code>dpatch</code></p>

<div class="wp_syntax"><div class="code"><pre class="sh" style="font-family:monospace;">apt-get install dpatch</pre></div></div>

<p><strong>2.</strong> В список зависимостей <code>Build-Depends</code>, который находится в <code>debian/control</code>, добавляем <code>dpatch</code><br />
<strong>3.</strong> Создаем папку:</p>

<div class="wp_syntax"><div class="code"><pre class="sh" style="font-family:monospace;">mkdir debian/patches</pre></div></div>

<p><strong>4.</strong> С помощью  команды <code>dpatch-edit-patch</code> создаем наш патч. Утилита откроет консоль с копией исходников. Все сделаные изменения будут собраны в diff.</p>

<div class="wp_syntax"><div class="code"><pre class="sh" style="font-family:monospace;">dpatch-edit-patch 01_our_new_patch</pre></div></div>

<p><strong>5.</strong> Файл <code>debian/patches/00list</code> указывает порядок исполнения. Добавляем название нашего патча в список :</p>

<div class="wp_syntax"><div class="code"><pre class="sh" style="font-family:monospace;">echo 01_our_new_patch &gt;&gt; debian/patches/00list</pre></div></div>

<p><strong>6.</strong> В файл сборки <code>debian/rules</code> добавляем:</p>

<div class="wp_syntax"><div class="code"><pre class="make" style="font-family:monospace;"><span style="color: #666622; font-weight: bold;">include</span> <span style="color: #004400;">/</span>usr<span style="color: #004400;">/</span>share<span style="color: #004400;">/</span>dpatch<span style="color: #004400;">/</span>dpatch<span style="color: #004400;">.</span>make
<span style="color: #004400;">...</span>
build<span style="color: #004400;">:</span> build<span style="color: #004400;">-</span>stamp
build<span style="color: #004400;">-</span>stamp<span style="color: #004400;">:</span> patch<span style="color: #004400;">-</span>stamp
    <span style="color: #004400;">...</span>
    build stuff here
    <span style="color: #004400;">...</span>
clean<span style="color: #004400;">:</span> unpatch
    <span style="color: #004400;">...</span>
    clean stuff here
    <span style="color: #004400;">...</span>
<span style="color: #004400;">...</span></pre></div></div>

<p>original link: <a href="http://matrixhasu.altervista.org/index.php?view=use_dpatch">HowTo use dpatch</a></p>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2009/11/patch-for-build-deb-package/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux initrd boot scheme (initramfs-tools)</title>
		<link>http://adik.kiev.ua/blog/2009/11/initrd-boot-scheme/</link>
		<comments>http://adik.kiev.ua/blog/2009/11/initrd-boot-scheme/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 14:09:56 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[Linux-tips]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=326</guid>
		<description><![CDATA[After initrd image unpack and mount to / (rootfs, tmpfs): mount /sys and /proc init-top hook init-premount hook local-top hook local-premount hook mount realroot to /root local-bottom hook init-bottom hook move mount /sys to /root/sys move mount /proc to /root/proc exec run-init(klibc) delete rootfs contents overmount from /root to / chroot and chdir("/") exec /sbin/init]]></description>
			<content:encoded><![CDATA[<p>After initrd image unpack and mount to / (rootfs, tmpfs):</p>
<pre>
mount <strong>/sys</strong> and <strong>/proc</strong>
init-top hook
init-premount hook
    local-top hook
    local-premount hook
    mount <strong>realroot</strong> to<strong> /root</strong>
    local-bottom hook
init-bottom hook
move mount <strong>/sys</strong> to <strong>/root/sys</strong>
move mount <strong>/proc</strong> to <strong>/root/proc</strong>

exec <strong>run-init</strong>(klibc)
    delete rootfs contents
    overmount from <strong>/root</strong> to <strong>/</strong>
    chroot and chdir("/")
    exec <strong>/sbin/init</strong>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2009/11/initrd-boot-scheme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Storing your PHP sessions using memcached</title>
		<link>http://adik.kiev.ua/blog/2009/07/storing-your-php-sessions-using-memcached/</link>
		<comments>http://adik.kiev.ua/blog/2009/07/storing-your-php-sessions-using-memcached/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 13:23:59 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=287</guid>
		<description><![CDATA[apt-get install memcached apt-get install php5-memcache Be sure that /etc/php5/apache2/conf.d/memcache.ini contains this line : extension=memcache.so replace session.save_handler = files ; session.save_path = &#34;N;/path&#34; with session.save_handler = memcache ; change server:port to fit your needs... session.save_path=”tcp://127.0.0.1:11211?persistent=1&#38;weight=1&#38;timeout=1&#38;retry_interval=15″]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> memcached
<span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> php5-memcache</pre></div></div>

<p>Be sure that <em>/etc/php5/apache2/conf.d/memcache.ini</em> contains this line :</p>

<div class="wp_syntax"><div class="code"><pre class="ini" style="font-family:monospace;"><span style="color: #000099;">extension</span><span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;">memcache.so</span></pre></div></div>

<p>replace</p>

<div class="wp_syntax"><div class="code"><pre class="ini" style="font-family:monospace;">session.save_handler <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> files</span>
<span style="color: #666666; font-style: italic;">; session.save_path = &quot;N;/path&quot;</span></pre></div></div>

<p>with</p>

<div class="wp_syntax"><div class="code"><pre class="ini" style="font-family:monospace;">session.save_handler <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> memcache</span>
<span style="color: #666666; font-style: italic;">; change server:port to fit your needs...</span>
session.save_path<span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;">”tcp://127.0.0.1:11211?persistent=1&amp;weight=1&amp;timeout=1&amp;retry_interval=15″</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2009/07/storing-your-php-sessions-using-memcached/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generate password [bash]</title>
		<link>http://adik.kiev.ua/blog/2009/07/generate-password-bash/</link>
		<comments>http://adik.kiev.ua/blog/2009/07/generate-password-bash/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 12:40:12 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[Linux-tips]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=285</guid>
		<description><![CDATA[Add to ~/.bashrc genpasswd&#40;&#41; &#123; local l=$1 &#91; &#34;$l&#34; == &#34;&#34; &#93; &#38;&#38; l=20 tr -dc A-Za-z0-9_ &#60; /dev/urandom &#124; head -c ${l} &#124; xargs &#125; usage: genpasswd 16 or use # http://www.adel.nursat.kz/apg/download.shtml apg Top 20 OpenSSH Server Best Security Practice]]></description>
			<content:encoded><![CDATA[<p>Add to <i>~/.bashrc</i></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">genpasswd<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
	<span style="color: #7a0874; font-weight: bold;">local</span> <span style="color: #007800;">l</span>=<span style="color: #007800;">$1</span>
       	<span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$l</span>&quot;</span> == <span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #007800;">l</span>=<span style="color: #000000;">20</span>
      	<span style="color: #c20cb9; font-weight: bold;">tr</span> <span style="color: #660033;">-dc</span> A-Za-z0-<span style="color: #000000;">9</span>_ <span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>urandom <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">head</span> <span style="color: #660033;">-c</span> <span style="color: #800000;">${l}</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">xargs</span>
<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></div></div>

<p>usage:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">genpasswd <span style="color: #000000;">16</span></pre></div></div>

<p>or use</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># http://www.adel.nursat.kz/apg/download.shtml</span>
apg</pre></div></div>

<p><span id="more-285"></span></p>
<p><a href="http://www.cyberciti.biz/tips/linux-unix-bsd-openssh-server-best-practices.html">Top 20 OpenSSH Server Best Security Practice</a></p>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2009/07/generate-password-bash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RPM excluded man  pages</title>
		<link>http://adik.kiev.ua/blog/2009/07/rpm-excluded-man-doc-pages/</link>
		<comments>http://adik.kiev.ua/blog/2009/07/rpm-excluded-man-doc-pages/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 15:31:05 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[Linux-tips]]></category>
		<category><![CDATA[rpm]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=271</guid>
		<description><![CDATA[При установке rpm, если не хотите устанавливать документацию &#8211; создаем файл: /etc/rpm/macros.nodoc # Файлы описаные с помощью %doc в спеке: %_excludedocs 1 &#160; # Отключаются файлы, прописанные в спеке как %lang(&#60;locale&#62;) &#60;file&#62; : %_install_langs C:en:uk &#160; # Path to selinux file context patterns: %__file_context_path %&#123;nil&#125; Источник: ЖЖ]]></description>
			<content:encoded><![CDATA[<p>При установке rpm, если не хотите устанавливать документацию &#8211; создаем файл:</p>
<p><em>/etc/rpm/macros.nodoc</em></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># Файлы описаные с помощью %doc в спеке:</span>
<span style="color: #000000; font-weight: bold;">%</span>_excludedocs <span style="color: #000000;">1</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Отключаются файлы, прописанные в спеке как %lang(&lt;locale&gt;) &lt;file&gt; :</span>
<span style="color: #000000; font-weight: bold;">%</span>_install_langs C:en:uk
&nbsp;
<span style="color: #666666; font-style: italic;"># Path to selinux file context patterns:</span>
<span style="color: #000000; font-weight: bold;">%</span>__file_context_path <span style="color: #000000; font-weight: bold;">%</span><span style="color: #7a0874; font-weight: bold;">&#123;</span>nil<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></div></div>

<p><span id="more-271"></span><br />
Источник: <a href="http://andy-shev.livejournal.com/62258.html">ЖЖ</a></p>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2009/07/rpm-excluded-man-doc-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>uppercase in sh &#124; shell programming</title>
		<link>http://adik.kiev.ua/blog/2009/07/uppercase-in-sh-shell-programming/</link>
		<comments>http://adik.kiev.ua/blog/2009/07/uppercase-in-sh-shell-programming/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 12:33:52 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[Linux-tips]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=262</guid>
		<description><![CDATA[Convert variable data from lowercase to upper echo $VAR &#124; tr '[:upper:]' '[:lower:]' echo $VAR &#124; tr '[:lower:]' '[:upper:]']]></description>
			<content:encoded><![CDATA[<h2>Convert variable data from lowercase  to upper</h2>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #007800;">$VAR</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">tr</span> <span style="color: #ff0000;">'[:upper:]'</span> <span style="color: #ff0000;">'[:lower:]'</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #007800;">$VAR</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">tr</span> <span style="color: #ff0000;">'[:lower:]'</span> <span style="color: #ff0000;">'[:upper:]'</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2009/07/uppercase-in-sh-shell-programming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Электронная база технических паспортов жилых домов</title>
		<link>http://adik.kiev.ua/blog/2009/06/elektronnaya-baza-texnicheskix-pasportov-zhilyx-domov/</link>
		<comments>http://adik.kiev.ua/blog/2009/06/elektronnaya-baza-texnicheskix-pasportov-zhilyx-domov/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 07:43:08 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=260</guid>
		<description><![CDATA[http://www.municipal.kiev.ua/]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.municipal.kiev.ua/">http://www.municipal.kiev.ua/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2009/06/elektronnaya-baza-texnicheskix-pasportov-zhilyx-domov/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IP spoofing attack?!</title>
		<link>http://adik.kiev.ua/blog/2009/05/ip-spoofing-attack/</link>
		<comments>http://adik.kiev.ua/blog/2009/05/ip-spoofing-attack/#comments</comments>
		<pubDate>Tue, 12 May 2009 14:14:39 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=234</guid>
		<description><![CDATA[Problem: /! FAILSAFE /!  Tue May 12 15:15:53 +0300 2009 Status: 500 Internal Server Error IP spoofing attack?! HTTP_CLIENT_IP=&#8221;10.1.200.218&#8243; HTTP_X_FORWARDED_FOR=&#8221;217.117.64.2, 217.117.64.2&#8243; Decision: ( Rails 2.3 ) ActionController::Base.ip_spoofing_check = false Ruby on Rails 2.3 Release Notes ( Path ) forwarded_client_ip_with_test.patch ( READ ) https://rails.lighthouseapp.com/projects/8994/tickets/322 ( READ ) http://github.com/rails/rails/commit/0a4a5f3129a137fc357e8444a08b135f0ad4fbe8]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong></p>
<p>/! FAILSAFE /!  Tue May 12 15:15:53 +0300 2009<br />
Status: 500 Internal Server Error<br />
IP spoofing attack?!<br />
HTTP_CLIENT_IP=&#8221;10.1.200.218&#8243;<br />
HTTP_X_FORWARDED_FOR=&#8221;217.117.64.2, 217.117.64.2&#8243;</p>
<p><strong>Decision:</strong></p>
<p><em>( Rails 2.3 )</em><br />
ActionController::Base.ip_spoofing_check = false<br />
<a href="http://guides.rubyonrails.org/2_3_release_notes.html">Ruby on Rails 2.3 Release Notes</a></p>
<p><em>( Path )</em><a href="https://rails.lighthouseapp.com/attachments/25763/forwarded_client_ip_with_test.patch"><br />
forwarded_client_ip_with_test.patch</a></p>
<p><em>( READ )</em><br />
<a href="https://rails.lighthouseapp.com/projects/8994/tickets/322">https://rails.lighthouseapp.com/projects/8994/tickets/322</a></p>
<p><em>( READ )</em><br />
<a href="http://github.com/rails/rails/commit/0a4a5f3129a137fc357e8444a08b135f0ad4fbe8">http://github.com/rails/rails/commit/0a4a5f3129a137fc357e8444a08b135f0ad4fbe8</a></p>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2009/05/ip-spoofing-attack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>with_scope with scope</title>
		<link>http://adik.kiev.ua/blog/2009/05/with_scope-with-scope/</link>
		<comments>http://adik.kiev.ua/blog/2009/05/with_scope-with-scope/#comments</comments>
		<pubDate>Mon, 11 May 2009 14:37:30 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=232</guid>
		<description><![CDATA[http://errtheblog.com/posts/39-withscope-with-scope class Movie &#60; ActiveRecord::Base def self.with_playing with_scope :find =&#62; &#123; :conditions =&#62; &#91; â€˜state = ? AND visible = ?â€™, NOW_PLAYING, true &#93; &#125; do yield end end end class MovieController &#60; ApplicationController def director Movie.with_playing do @director = Movie.find_by_id&#40;params&#91;:movie_id&#93;&#41;.director end end end Not bad, but I do like having find_playing handle the yielding [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://errtheblog.com/posts/39-withscope-with-scope">http://errtheblog.com/posts/39-withscope-with-scope</a><br />
<span id="more-232"></span></p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#9966CC; font-weight:bold;">class</span> Movie <span style="color:#006600; font-weight:bold;">&lt;</span> <span style="color:#6666ff; font-weight:bold;">ActiveRecord::Base</span>
  <span style="color:#9966CC; font-weight:bold;">def</span> <span style="color:#0000FF; font-weight:bold;">self</span>.<span style="color:#9900CC;">with_playing</span> 
    with_scope <span style="color:#ff3333; font-weight:bold;">:find</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#006600; font-weight:bold;">&#123;</span> <span style="color:#ff3333; font-weight:bold;">:conditions</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#006600; font-weight:bold;">&#91;</span> â€˜state = ? <span style="color:#9966CC; font-weight:bold;">AND</span> visible = ?â€™, NOW_PLAYING, <span style="color:#0000FF; font-weight:bold;">true</span> <span style="color:#006600; font-weight:bold;">&#93;</span> <span style="color:#006600; font-weight:bold;">&#125;</span> <span style="color:#9966CC; font-weight:bold;">do</span> 
      <span style="color:#9966CC; font-weight:bold;">yield</span> 
    <span style="color:#9966CC; font-weight:bold;">end</span> 
  <span style="color:#9966CC; font-weight:bold;">end</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#9966CC; font-weight:bold;">class</span> MovieController <span style="color:#006600; font-weight:bold;">&lt;</span> ApplicationController 
  <span style="color:#9966CC; font-weight:bold;">def</span> director 
    Movie.<span style="color:#9900CC;">with_playing</span> <span style="color:#9966CC; font-weight:bold;">do</span> 
      <span style="color:#0066ff; font-weight:bold;">@director</span> = Movie.<span style="color:#9900CC;">find_by_id</span><span style="color:#006600; font-weight:bold;">&#40;</span>params<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:movie_id</span><span style="color:#006600; font-weight:bold;">&#93;</span><span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color:#9900CC;">director</span> 
    <span style="color:#9966CC; font-weight:bold;">end</span> 
  <span style="color:#9966CC; font-weight:bold;">end</span> 
<span style="color:#9966CC; font-weight:bold;">end</span></pre></div></div>

<p>Not bad, but I do like having <code>find_playing</code> handle the yielding for me to keep my controllers slim. What about this:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#9966CC; font-weight:bold;">class</span> Movie <span style="color:#006600; font-weight:bold;">&lt;</span> <span style="color:#6666ff; font-weight:bold;">ActiveRecord::Base</span>
  <span style="color:#9966CC; font-weight:bold;">def</span> <span style="color:#0000FF; font-weight:bold;">self</span>.<span style="color:#9900CC;">find_playing</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">*</span>args<span style="color:#006600; font-weight:bold;">&#41;</span>
    with_playing <span style="color:#9966CC; font-weight:bold;">do</span>
      find<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">*</span>args<span style="color:#006600; font-weight:bold;">&#41;</span>
    <span style="color:#9966CC; font-weight:bold;">end</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
  <span style="color:#9966CC; font-weight:bold;">def</span> <span style="color:#0000FF; font-weight:bold;">self</span>.<span style="color:#9900CC;">find_playing_by_id</span>
    with_playing <span style="color:#9966CC; font-weight:bold;">do</span>
      find_by_id<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">*</span>args<span style="color:#006600; font-weight:bold;">&#41;</span>
    <span style="color:#9966CC; font-weight:bold;">end</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
  <span style="color:#9966CC; font-weight:bold;">def</span> <span style="color:#0000FF; font-weight:bold;">self</span>.<span style="color:#9900CC;">with_playing</span> 
    with_scope <span style="color:#ff3333; font-weight:bold;">:find</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#006600; font-weight:bold;">&#123;</span> <span style="color:#ff3333; font-weight:bold;">:conditions</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#006600; font-weight:bold;">&#91;</span> â€˜state = ? <span style="color:#9966CC; font-weight:bold;">AND</span> visible = ?â€™, NOW_PLAYING, <span style="color:#0000FF; font-weight:bold;">true</span> <span style="color:#006600; font-weight:bold;">&#93;</span> <span style="color:#006600; font-weight:bold;">&#125;</span> <span style="color:#9966CC; font-weight:bold;">do</span> 
      <span style="color:#9966CC; font-weight:bold;">yield</span> 
    <span style="color:#9966CC; font-weight:bold;">end</span> 
  <span style="color:#9966CC; font-weight:bold;">end</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></div></div>

<p>That works, but if I do Dan’s <code>with_playing</code> in the controller I get access to all the <code>find_by_*</code> methods—not just ones I hardcode. That’s cool, and I want that in my model. So let’s add some <code>method_missing</code> into my <code>find_playing</code> lifestyle:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#9966CC; font-weight:bold;">def</span> <span style="color:#0000FF; font-weight:bold;">self</span>.<span style="color:#9900CC;">method_missing</span><span style="color:#006600; font-weight:bold;">&#40;</span>method, <span style="color:#006600; font-weight:bold;">*</span>args, <span style="color:#006600; font-weight:bold;">&amp;</span>block<span style="color:#006600; font-weight:bold;">&#41;</span>
  <span style="color:#9966CC; font-weight:bold;">if</span> method.<span style="color:#9900CC;">to_s</span> =~ <span style="color:#006600; font-weight:bold;">/</span>^find_<span style="color:#006600; font-weight:bold;">&#40;</span>all_<span style="color:#006600; font-weight:bold;">&#41;</span>?playing_by<span style="color:#006600; font-weight:bold;">/</span>
    with_playing <span style="color:#9966CC; font-weight:bold;">do</span>
      <span style="color:#9966CC; font-weight:bold;">super</span><span style="color:#006600; font-weight:bold;">&#40;</span>method.<span style="color:#9900CC;">to_s</span>.<span style="color:#CC0066; font-weight:bold;">sub</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">'playing_'</span>, <span style="color:#996600;">''</span><span style="color:#006600; font-weight:bold;">&#41;</span>, <span style="color:#006600; font-weight:bold;">*</span>args, <span style="color:#006600; font-weight:bold;">&amp;</span>block<span style="color:#006600; font-weight:bold;">&#41;</span>
    <span style="color:#9966CC; font-weight:bold;">end</span>
  <span style="color:#9966CC; font-weight:bold;">else</span>
    <span style="color:#9966CC; font-weight:bold;">super</span><span style="color:#006600; font-weight:bold;">&#40;</span>method, <span style="color:#006600; font-weight:bold;">*</span>args, <span style="color:#006600; font-weight:bold;">&amp;</span>block<span style="color:#006600; font-weight:bold;">&#41;</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></div></div>

<p># This will give us <code>find_playing_by_blah</code> and <code>find_all_playing_by_jlah</code>. Tricky.</p>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2009/05/with_scope-with-scope/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sphinx Search &#8211; ubuntu &#8211; package</title>
		<link>http://adik.kiev.ua/blog/2009/05/sphinx-search-ubuntu-package/</link>
		<comments>http://adik.kiev.ua/blog/2009/05/sphinx-search-ubuntu-package/#comments</comments>
		<pubDate>Fri, 01 May 2009 17:55:02 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=230</guid>
		<description><![CDATA[sudo apt-get install bzr-builddeb sudo bzr-buildpackage lp:pkg-sphinx sudo dpkg -i ../sphinxsearch_0.9.8-1_amd64.deb https://code.launchpad.net/~pkg-sphinx/pkg-sphinx/trunk]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> bzr-builddeb
<span style="color: #c20cb9; font-weight: bold;">sudo</span> bzr-buildpackage  <span style="color: #c20cb9; font-weight: bold;">lp</span>:pkg-sphinx
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-i</span> ..<span style="color: #000000; font-weight: bold;">/</span>sphinxsearch_0.9.8-<span style="color: #000000;">1</span>_amd64.deb</pre></div></div>

<p><a href="https://code.launchpad.net/~pkg-sphinx/pkg-sphinx/trunk">https://code.launchpad.net/~pkg-sphinx/pkg-sphinx/trunk</a></p>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2009/05/sphinx-search-ubuntu-package/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Шрифты and Ubuntu and Firefox and Tahoma</title>
		<link>http://adik.kiev.ua/blog/2009/04/shrifty-and-ubuntu-and-firefox-and-tahoma/</link>
		<comments>http://adik.kiev.ua/blog/2009/04/shrifty-and-ubuntu-and-firefox-and-tahoma/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 14:58:36 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[X11]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=221</guid>
		<description><![CDATA[mkdir ~/.fonts wget http://www.stchman.com/tools/MS_fonts/tahoma.zip unzip -d ~/.fonts tahoma.zip rm tahoma.zip Открываем &#8220;System -&#62; Параметры -&#62; внешний вид -&#62; шрифты&#8221;, везде выбираем &#8220;Tahoma , размер 8 + ставим галочку против &#8220;Монохромная отрисовка&#8221;. Файл ~/.fonts.conf &#60;?xml version=&#34;1.0&#34;?&#62; &#60;!DOCTYPE fontconfig SYSTEM &#34;fonts.dtd&#34;&#62; &#60;fontconfig&#62; &#160; &#60;!-- .fonts.conf release 6.3.23 ================================ LCD optimized 96 dpi &#34;Sharp'N'Clear&#34; font settings with emphasis [...]]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> ~<span style="color: #000000; font-weight: bold;">/</span>.fonts
<span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>www.stchman.com<span style="color: #000000; font-weight: bold;">/</span>tools<span style="color: #000000; font-weight: bold;">/</span>MS_fonts<span style="color: #000000; font-weight: bold;">/</span>tahoma.zip
<span style="color: #c20cb9; font-weight: bold;">unzip</span> <span style="color: #660033;">-d</span> ~<span style="color: #000000; font-weight: bold;">/</span>.fonts tahoma.zip
<span style="color: #c20cb9; font-weight: bold;">rm</span> tahoma.zip</pre></div></div>

<p>Открываем &#8220;System -&gt; Параметры -&gt; внешний вид -&gt; шрифты&#8221;, везде выбираем &#8220;Tahoma , размер 8  + ставим галочку против &#8220;Монохромная отрисовка&#8221;.</p>
<p><span id="more-221"></span></p>
<p>Файл <strong>~/.fonts.conf</strong></p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="color: #00bbdd;">&lt;!DOCTYPE fontconfig SYSTEM &quot;fonts.dtd&quot;&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;fontconfig<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     .fonts.conf</span>
<span style="color: #808080; font-style: italic;">     release 6.3.23</span>
<span style="color: #808080; font-style: italic;">     ================================</span>
<span style="color: #808080; font-style: italic;">     LCD optimized 96 dpi</span>
<span style="color: #808080; font-style: italic;">     &quot;Sharp'N'Clear&quot; font settings</span>
<span style="color: #808080; font-style: italic;">     with emphasis on 'msttcorefonts'</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     tested on Ubuntu GNU/Linux 5.10</span>
<span style="color: #808080; font-style: italic;">     ================================</span>
<span style="color: #808080; font-style: italic;">     by Obi Bok</span>
<span style="color: #808080; font-style: italic;">     Gmail: obibok</span>
<span style="color: #808080; font-style: italic;">     http://linuxtuneup.blogspot.com</span>
<span style="color: #808080; font-style: italic;">     ================================</span>
<span style="color: #808080; font-style: italic;">     Why was this conceived?</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     - some font families look better hinted by Byte Code Interpreter (BCI)</span>
<span style="color: #808080; font-style: italic;">       while other fonts look better hinted by Auto-Hinter</span>
<span style="color: #808080; font-style: italic;">     - hinting type affects italic and bold fonts differently</span>
<span style="color: #808080; font-style: italic;">     - antialiasing needs to be adjusted according to font families and sizes</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     Essentially, there is no one single rule that works for all fonts.</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     NOTE:</span>
<span style="color: #808080; font-style: italic;">     - Verdana @ 8pt doesn't render '2' and '6' right</span>
<span style="color: #808080; font-style: italic;">     - Arial shows 'Z' distorted in Firefox 1.5</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     Make font sizes match the dpi set in Xorg.</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     Increase or decrease this value if fonts are too small or too large</span>
<span style="color: #808080; font-style: italic;">     for your screen resolution.</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     FIXME: this only affects QT-based apps?</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;dpi&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>96<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     Enable anti-aliasing.</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     This only works for outline and scalable fonts.</span>
<span style="color: #808080; font-style: italic;">     Bitmap and PostScript fonts do not get anti-aliased.</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     FIXME: is this correct?</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;font&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;antialias&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>true<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     Set sub-pixel order if not detected.</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     &quot;X knows the sub pixel order already, and if this is enabled as well,</span>
<span style="color: #808080; font-style: italic;">     Freetype produces some very strange results. However, if you do still</span>
<span style="color: #808080; font-style: italic;">     have problems, consider (...) 'rgb' (the standard for LCD monitors),</span>
<span style="color: #808080; font-style: italic;">     'bgr' (unusual), 'vrgb' (vertical rgb, if you have a monitor that</span>
<span style="color: #808080; font-style: italic;">     has been rotated by 90 degrees[1]), 'vgbr' (as vrgb, but very rare).&quot;</span>
<span style="color: #808080; font-style: italic;">     &lt;http://www.linuxquestions.org/linux/answers/Hardware/</span>
<span style="color: #808080; font-style: italic;">     LCD_TFT_Monitor_Configuration_in_X_Org&gt;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     Find out your LCD's sub-pixel order:</span>
<span style="color: #808080; font-style: italic;">     &lt;http://grc.com/image/cleartype2c.gif&gt;</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;font&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;all&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;rgba&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>unknown<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;rgba&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>rgb<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     Sub-pixel hinting via BCI enabled by default if compiled in.</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     &quot;Whole-pixel anti-aliasing does not represent a useful solution for</span>
<span style="color: #808080; font-style: italic;">     improving small point-size type. (...) By 'borrowing' sub-pixels from</span>
<span style="color: #808080; font-style: italic;">     adjacent whole pixels, we can fine-tune the placement and width of typeface</span>
<span style="color: #808080; font-style: italic;">     features with three times more horizontal accuracy then ever before!&quot;</span>
<span style="color: #808080; font-style: italic;">     &lt;http://grc.com/ctwhat.htm&gt;</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     Disable anti-aliasing for select fonts based on size and style.</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     | font                  | WinXP | Linux |</span>
<span style="color: #808080; font-style: italic;">     =========================================</span>
<span style="color: #808080; font-style: italic;">     Andale Mono IPA            14      13</span>
<span style="color: #808080; font-style: italic;">     Arial                      12      13</span>
<span style="color: #808080; font-style: italic;">     Arial Black                12      -</span>
<span style="color: #808080; font-style: italic;">     Arial Narrow               14      13</span>
<span style="color: #808080; font-style: italic;">     Berling Antiqua            12      13</span>
<span style="color: #808080; font-style: italic;">     Book Antiqua               12      13</span>
<span style="color: #808080; font-style: italic;">     Bookdings                  0       ?</span>
<span style="color: #808080; font-style: italic;">     Bookman Old Style          22      13</span>
<span style="color: #808080; font-style: italic;">     Century Gothic             16      16</span>
<span style="color: #808080; font-style: italic;">     Comic Sans MS              11      9/11</span>
<span style="color: #808080; font-style: italic;">     Courier New                26      22</span>
<span style="color: #808080; font-style: italic;">     Franklin Gothic Medium     12      10/12</span>
<span style="color: #808080; font-style: italic;">     Frutiger Linotype          12      10/12</span>
<span style="color: #808080; font-style: italic;">     Garamond                   18      13/19</span>
<span style="color: #808080; font-style: italic;">     Georgia                    12      12/13</span>
<span style="color: #808080; font-style: italic;">     Impact                     16      0</span>
<span style="color: #808080; font-style: italic;">     Kartika                    12      16</span>
<span style="color: #808080; font-style: italic;">     Lucida Console             12      13</span>
<span style="color: #808080; font-style: italic;">     Lucida Sans Typewriter     12      12</span>
<span style="color: #808080; font-style: italic;">     Lucida Sans Unicode        12      10/13</span>
<span style="color: #808080; font-style: italic;">     Marlett                    ?       ?</span>
<span style="color: #808080; font-style: italic;">     Microsoft Sans Serif       12      12/13</span>
<span style="color: #808080; font-style: italic;">     Palatino Linotype          12      13</span>
<span style="color: #808080; font-style: italic;">     SylfaenARM                 -       13</span>
<span style="color: #808080; font-style: italic;">     Symbol                     12      ?</span>
<span style="color: #808080; font-style: italic;">     Tahoma                     12      12/13</span>
<span style="color: #808080; font-style: italic;">     Times New Roman            12      13</span>
<span style="color: #808080; font-style: italic;">     Trebuchet MS               12      12</span>
<span style="color: #808080; font-style: italic;">     Verdana                    12      12</span>
<span style="color: #808080; font-style: italic;">     Vrinda                     12      17</span>
<span style="color: #808080; font-style: italic;">     Webdings                   20      ?</span>
<span style="color: #808080; font-style: italic;">     Wingdings                  20      ?</span>
<span style="color: #808080; font-style: italic;">     =========================================</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     &quot;The relationship of pixels to points depends on the number of pixels</span>
<span style="color: #808080; font-style: italic;">     per inch, which is typically some 'standard' value corresponding to</span>
<span style="color: #808080; font-style: italic;">     default screen fonts. For example, MS Windows has two standard sets of</span>
<span style="color: #808080; font-style: italic;">     screen fonts initially designed for IBM display systems: 'small' (VGA)</span>
<span style="color: #808080; font-style: italic;">     and 'large' (8514/A). 'Small' fonts are 96 pixels per inch, 'large' are</span>
<span style="color: #808080; font-style: italic;">     120. Macintosh systems render type at a nominal 72 pixels per inch, i.e.</span>
<span style="color: #808080; font-style: italic;">     one pixel = one point. Some display systems using scalable screen fonts</span>
<span style="color: #808080; font-style: italic;">     allow fine tuning of pixels per inch to suit user preferences.&quot;</span>
<span style="color: #808080; font-style: italic;">     &lt;http://www.hpaa.com/css1/pxnpts.asp&gt;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     X pt * 96 dpi / 72 dpi = Y px</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     font group #1: normal roman anti-aliased above 10pt/13.4px</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;font&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Franklin Gothic Medium<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Frutiger Linotype<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #808080; font-style: italic;">&lt;!-- Lucida Sans Unicode has no italic and uses artificial oblique --&gt;</span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Lucida Sans Unicode<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;pixelsize&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>13.4<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;weight&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>medium<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;slant&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>roman<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;antialias&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     font group #2: normal roman anti-aliased above 11pt/14.7px</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     Must use 15px instead of 14.7px for this to work in QT-based apps</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;font&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #808080; font-style: italic;">&lt;!-- Comic Sans MS has no italic and uses artificial oblique --&gt;</span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Comic Sans MS<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;pixelsize&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>15<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;weight&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>medium<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;slant&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>roman<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;antialias&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     font group #3: normal roman anti-aliased above 12pt/16px</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     Must use at least 16.1px instead of 16px for this to work in Firefox</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;font&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Georgia<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Lucida Sans<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Lucida Sans Typewriter<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #808080; font-style: italic;">&lt;!-- Microsoft Sans Serif has no italic and uses artificial oblique --&gt;</span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Microsoft Sans Serif<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #808080; font-style: italic;">&lt;!-- Tahoma has no italic and uses artificial oblique --&gt;</span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Tahoma<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Trebuchet MS<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Verdana<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;pixelsize&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>16.1<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;weight&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>medium<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;slant&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>roman<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;antialias&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     font group #4: normal roman anti-aliased above 13pt/17.4px</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;font&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Arial<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Arial Narrow<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Berling Antiqua<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Book Antiqua<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Bookman Old Style<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Garamond<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #808080; font-style: italic;">&lt;!-- Lucida Console has no italic and uses artificial oblique --&gt;</span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Lucida Console<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Palatino Linotype<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>SylfaenARM<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Times New Roman<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;pixelsize&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>17.4<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;weight&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>medium<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;slant&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>roman<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;antialias&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     font group #5: normal roman anti-aliased above 16pt/21.4px</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;font&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Century Gothic<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Kartika<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;pixelsize&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>21.4<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;weight&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>medium<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;slant&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>roman<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;antialias&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     font group #6: normal roman anti-aliased above 17pt/23px</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;font&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Vrinda<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;pixelsize&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>23<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;weight&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>medium<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;slant&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>roman<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;antialias&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     font group #7: normal roman anti-aliased above 22pt/29.4px</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;font&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Courier New<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;pixelsize&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>29.4<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;weight&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>medium<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;slant&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>roman<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;antialias&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     font group #8: bold roman anti-aliased above 9pt/12px</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;font&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Georgia<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;pixelsize&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>12<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;weight&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;more&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>medium<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;slant&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>roman<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;antialias&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     font group #9: bold roman anti-aliased above 10pt/13.4px</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;font&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Tahoma<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Verdana<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;pixelsize&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>13.4<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;weight&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;more&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>medium<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;slant&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>roman<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;antialias&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     font group #10: bold roman anti-aliased above 12pt/16px</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;font&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Courier New<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;pixelsize&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>16<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;weight&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;more&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>medium<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;slant&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>roman<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;antialias&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>false<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     Enable FreeType Auto-Hinter for select fonts.</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     Auto-Hinter is disabled by default if Bytecode Interpreter was compiled in.</span>
<span style="color: #808080; font-style: italic;">     Some Linux &quot;native&quot; fonts look better hinted by Auto-Hinter,</span>
<span style="color: #808080; font-style: italic;">     usually in sizes 11pt-13pt; others look better hinted by BCI.</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     Set Auto-Hinter to full hinting style.</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     'slight' and 'medium' hinting often produce pixel discoloration.</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;font&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;hintstyle&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>hintfull<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     font group #11: hinted via Auto-Hinter</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;font&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Bitstream Charter<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Courier 10 Pitch<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>DejaVu Sans Condensed<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>DejaVu Serif Condensed<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>FreeMono<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>FreeSans<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>FreeSerif<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Luxi Mono<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Luxi Sans<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Luxi Serif<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>MgOpen Canonica<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>MgOpen Cosmetica<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>MgOpen Modata<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>MgOpen Moderna<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>URW Bookman L<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>URW Chancery L<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>URW Gothic L<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>URW Palladio L<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;autohint&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>true<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     font group #12: normal italic hinted via Auto-Hinter at 9-10pt</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     Arial hinted via BCI at 9pt has distorted 'y', at 10pt - '2'</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;font&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Arial<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;pixelsize&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;more_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>12<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;pixelsize&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>13.4<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;weight&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>medium<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;slant&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;not_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>roman<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;autohint&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>true<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     font group #13: normal italic hinted via Auto-Hinter at 12pt</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     This fixes distorted 'K'</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;font&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Book Antiqua<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;pixelsize&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>16<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;weight&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>medium<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;slant&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;not_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>roman<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;autohint&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>true<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     font group #14: normal italic hinted via Auto-Hinter at all sizes</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;font&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #808080; font-style: italic;">&lt;!-- 10, 11, 12 --&gt;</span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Frutiger Linotype<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #808080; font-style: italic;">&lt;!--  8-9: 'z', '2'; 10-15, 17, 19: 'z' --&gt;</span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Times New Roman<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #808080; font-style: italic;">&lt;!-- 9-10: 'N' 'Q'; 12: 'w', 'C', 'D', 'O', 'Q', 'R', '2', '9', '0' --&gt;</span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Verdana<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;weight&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>medium<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;slant&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;not_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>roman<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;autohint&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>true<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     Set minimum allowed size to avoid illegible fonts.</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #808080; font-style: italic;">&lt;!-- 7pt in QT-based apps --&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;size&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>7<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;size&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>7<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!-- 9.4px (7pt) in GTK-based apps --&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;pixelsize&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>9.4<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;pixelsize&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>9.4<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     TODO: Create rules limiting minimum sizes for these *bold* fonts:</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     Andale Mono | Andale Mono IPA</span>
<span style="color: #808080; font-style: italic;">     Arial</span>
<span style="color: #808080; font-style: italic;">     Arial Narrow</span>
<span style="color: #808080; font-style: italic;">     Berling Antiqua</span>
<span style="color: #808080; font-style: italic;">     Book Antiqua</span>
<span style="color: #808080; font-style: italic;">     Bookman Old Style</span>
<span style="color: #808080; font-style: italic;">     Century Gothic</span>
<span style="color: #808080; font-style: italic;">     Comic Sans MS</span>
<span style="color: #808080; font-style: italic;">     Courier New</span>
<span style="color: #808080; font-style: italic;">     Franklin Gothic Medium</span>
<span style="color: #808080; font-style: italic;">     Frutiger Linotype</span>
<span style="color: #808080; font-style: italic;">     Garamond</span>
<span style="color: #808080; font-style: italic;">     Georgia</span>
<span style="color: #808080; font-style: italic;">     Kartika</span>
<span style="color: #808080; font-style: italic;">     Lucida Console</span>
<span style="color: #808080; font-style: italic;">     Lucida Sans Typewriter</span>
<span style="color: #808080; font-style: italic;">     Lucida Sans Unicode</span>
<span style="color: #808080; font-style: italic;">     Microsoft Sans Serif</span>
<span style="color: #808080; font-style: italic;">     Palatino | Palatino Linotype</span>
<span style="color: #808080; font-style: italic;">     SylfaenARM</span>
<span style="color: #808080; font-style: italic;">     Tahoma</span>
<span style="color: #808080; font-style: italic;">     Times New Roman</span>
<span style="color: #808080; font-style: italic;">     Trebuchet MS</span>
<span style="color: #808080; font-style: italic;">     Verdana</span>
<span style="color: #808080; font-style: italic;">     Vrinda</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     font group #15: bold fonts no smaller than 10.7px (8pt)</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     FIXME: for Firefox and other GTK-based apps?</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;font&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Arial<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;pixelsize&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;less&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>10.7<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;weight&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;more&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>medium<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/const<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;pixelsize&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>10.7<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     Anti-alias fonts with &quot;fake&quot; styles.</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     FIXME: QT only? GTK? Firefox?</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #808080; font-style: italic;">&lt;!-- FIXME: dirty_hack(tm) - fontconfig reports syntax errors --&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;font&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;matrix&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;not_eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>0<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/double<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #808080; font-style: italic;">&lt;!-- another approach - no errors but freezes Firefox 1.5 --&gt;</span>
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">&lt;match target=&quot;font&quot;&gt;</span>
<span style="color: #808080; font-style: italic;"> &lt;test qual=&quot;any&quot; name=&quot;matrix&quot; compare=&quot;eq&quot;&gt;</span>
<span style="color: #808080; font-style: italic;">  &lt;name&gt;matrix&lt;/name&gt;</span>
<span style="color: #808080; font-style: italic;"> &lt;/test&gt;</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;antialias&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>true<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     Substitute unavailable and/or unwanted fonts.</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     Aliases will not work if the actual fonts are installed.</span>
<span style="color: #808080; font-style: italic;">     Replacing font family works in Firefox (FIXME: and other GTK-based apps?)</span>
<span style="color: #808080; font-style: italic;">     QT-based apps also need font foundry replaced.</span>
<span style="color: #808080; font-style: italic;">     Grouping fonts for substitution doesn't work in Firefox, so we need each</span>
<span style="color: #808080; font-style: italic;">     font family replaced individually.</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     sans-serif</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     &quot;If the font still has no generic name, add sans-serif&quot;</span>
<span style="color: #808080; font-style: italic;">     /etc/fonts.conf</span>
&nbsp;
<span style="color: #808080; font-style: italic;">     Therefore, we only substitute what we need.</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Bitstream Charter<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Arial<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Bitstream Vera Sans<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Arial<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>DejaVu Sans<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Arial<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>DejaVu Sans Condensed<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Arial<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>FreeSans<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Arial<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Helvetica<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Arial<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Lucida<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Arial<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #808080; font-style: italic;">&lt;!-- FIXME: may need to use &quot;Lucida Bright&quot; instead --&gt;</span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>LucidaBright<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Arial<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Lucida Bright<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Arial<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Luxi Sans<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Arial<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>MgOpen Cosmetica<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Arial<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>MgOpen Modata<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Arial<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>MgOpen Moderna<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Arial<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>System<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Arial<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>URW Gothic L<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Arial<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     FIXME: Verdana renders characters '2' and '6' slightly distorted</span>
<span style="color: #808080; font-style: italic;">            so it will be substituted with Arial.</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Verdana<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Arial<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     serif</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Bitstream Vera Serif<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Georgia<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>DejaVu Serif<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Georgia<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>DejaVu Serif Condensed<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Georgia<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>FreeSerif<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Georgia<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Luxi Serif<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Georgia<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>MgOpen Canonica<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Georgia<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>New Century Schoolbook<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Georgia<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>New York<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Georgia<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Palatino<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Georgia<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Times<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Georgia<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>URW Bookman L<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Georgia<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>URW Palladio L<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Georgia<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     monospace</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Andale Mono<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Courier New<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Bitstream Vera Sans Mono<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Courier New<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Courier<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Courier New<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>DejaVu Sans Mono<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Courier New<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Fixedsys<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Courier New<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>FreeMono<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Courier New<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #808080; font-style: italic;">&lt;!-- FIXME: Ubuntu Wiki uses &quot;Lucida Typewriter&quot; instead --&gt;</span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>LucidaTypewriter<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Courier New<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Lucida Typewriter<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Courier New<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Luxi Mono<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Courier New<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Monaco<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Courier New<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Terminal<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Courier New<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     cursive</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Apple Chancery<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Comic Sans MS<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Lucida Handwriting<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Comic Sans MS<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>URW Chancery L<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Comic Sans MS<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Zapf Chancery<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Comic Sans MS<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     fantasy</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Copperplate<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Impact<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Desdemona<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Impact<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Kino<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Impact<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;pattern&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;test</span> <span style="color: #000066;">qual</span>=<span style="color: #ff0000;">&quot;any&quot;</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">compare</span>=<span style="color: #ff0000;">&quot;eq&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Techno<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/test<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;family&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;prepend&quot;</span> <span style="color: #000066;">binding</span>=<span style="color: #ff0000;">&quot;same&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Impact<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/string<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">     Provide required aliases for standard names.</span>
<span style="color: #808080; font-style: italic;">--&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;alias<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>sans-serif<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;prefer<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Arial<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/prefer<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/alias<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;alias<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>serif<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;prefer<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Georgia<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/prefer<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/alias<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;alias<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>monospace<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;prefer<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Courier New<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/prefer<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/alias<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;alias<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>cursive<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;prefer<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Comic Sans MS<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/prefer<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/alias<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;alias<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>fantasy<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;prefer<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Impact<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/family<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/prefer<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/alias<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/fontconfig<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p><a href="http://warren.guy.net.au/docs/ubuntu-font-configuration.html">Configuring Fonts in Ubuntu Linux</a><br />
<a href="https://wiki.ubuntu.com/Fonts">https://wiki.ubuntu.com/Fonts</a><br />
<a href="http://wiki.archlinux.org/index.php/Xorg#Display_Size.2FDPI">http://wiki.archlinux.org/index.php/Xorg#Display_Size.2FDPI</a></p>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2009/04/shrifty-and-ubuntu-and-firefox-and-tahoma/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[ubuntu] netbeans line height</title>
		<link>http://adik.kiev.ua/blog/2009/04/netbeans-line-height/</link>
		<comments>http://adik.kiev.ua/blog/2009/04/netbeans-line-height/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 14:38:00 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=160</guid>
		<description><![CDATA[short solution: 1. Install sun-java6-jdk (not open-jdk) 2. /usr/bin/netbeans &#8211;jdkhome /usr/lib/jvm/java-6-sun links: Editor text wasting vertical space #Bug 146555 &#8211; Setting for &#8220;Line Height Correction&#8221; How to change line height in NetBeans’ editor]]></description>
			<content:encoded><![CDATA[<p><strong>short solution:</strong><br />
1. Install sun-java6-jdk (not open-jdk)<br />
2. /usr/bin/netbeans &#8211;jdkhome /usr/lib/jvm/java-6-sun</p>
<p><strong>links:</strong><br />
<a href="http://www.nabble.com/Editor-text-wasting-vertical-space-td20606100.html">Editor text wasting vertical space</a><br />
<a href="http://www.netbeans.org/issues/show_bug.cgi?id=146555">#Bug 146555 &#8211;  Setting for &#8220;Line Height Correction&#8221;</a><br />
<a href="http://justcheckingonall.wordpress.com/2008/12/26/change-line-height-in-netbeans/">How to change line height in NetBeans’ editor</a></p>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2009/04/netbeans-line-height/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>xen ubuntu console-kit-daemon</title>
		<link>http://adik.kiev.ua/blog/2009/03/xen-ubuntu-console-kit-daemon/</link>
		<comments>http://adik.kiev.ua/blog/2009/03/xen-ubuntu-console-kit-daemon/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 14:07:03 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Xen]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=217</guid>
		<description><![CDATA[При установке Ubuntu под Xen часто возникает ошибка: Mar 24 15:55:13 db console-kit-daemon[13251]: WARNING: Error waiting for native console 58 activation: Invalid argument Mar 24 15:55:13 db console-kit-daemon[13251]: WARNING: Error waiting for native console 8 activation: Invalid argument Mar 24 15:55:13 db console-kit-daemon[13251]: WARNING: Error waiting for native console 43 activation: Invalid argument Mar 24 [...]]]></description>
			<content:encoded><![CDATA[<p>При установке Ubuntu под Xen часто возникает ошибка:</p>
<pre>
Mar 24 15:55:13 db console-kit-daemon[13251]: WARNING: Error waiting for native console 58 activation: Invalid argument
Mar 24 15:55:13 db console-kit-daemon[13251]: WARNING: Error waiting for native console 8 activation: Invalid argument
Mar 24 15:55:13 db console-kit-daemon[13251]: WARNING: Error waiting for native console 43 activation: Invalid argument
Mar 24 15:55:13 db console-kit-daemon[13251]: WARNING: Error waiting for native console 47 activation: Invalid argument
Mar 24 15:55:13 db console-kit-daemon[13251]: WARNING: Error waiting for native console 45 activation: Invalid argument
Mar 24 15:55:13 db console-kit-daemon[13251]: WARNING: Error waiting for native console 12 activation: Invalid argument
</pre>
<p>лечится это так:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>dbus-<span style="color: #000000;">1</span><span style="color: #000000; font-weight: bold;">/</span>system.d<span style="color: #000000; font-weight: bold;">/</span>ConsoleKit.conf
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span>dbus-<span style="color: #000000;">1</span><span style="color: #000000; font-weight: bold;">/</span>system-services<span style="color: #000000; font-weight: bold;">/</span>org.freedesktop.ConsoleKit.service
invoke-rc.d dbus restart</pre></div></div>

<p>Незнаю, правильно это или нет, но, демон уже  не запускается при старте <img src='http://adik.kiev.ua/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2009/03/xen-ubuntu-console-kit-daemon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ubuntu [hardy/intrepid] bug #238755  &#8216;Account has expired&#8217; message when adding a new user, after &#8220;passwd -l root&#8221;</title>
		<link>http://adik.kiev.ua/blog/2009/03/ubuntu-hardyintrepid-bug-238755/</link>
		<comments>http://adik.kiev.ua/blog/2009/03/ubuntu-hardyintrepid-bug-238755/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 11:23:34 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[Linux-tips]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=212</guid>
		<description><![CDATA[&#8216;Account has expired&#8217; message when adding a new user, after &#8220;passwd -l root&#8221; This seems to be related to the use of &#8220;passwd -l root&#8221;. Until the Debian fix shows up in hardy, here is a workaround, thanks to Nicolas François: sudo passwd --unlock root sudo usermod --lock root]]></description>
			<content:encoded><![CDATA[<p><a href="https://bugs.launchpad.net/ubuntu/hardy/+source/shadow/+bug/238755">&#8216;Account has expired&#8217; message when adding a new user, after &#8220;passwd -l root&#8221;</a></p>
<p>This seems to be related to the use of &#8220;passwd -l root&#8221;.<br />
Until the Debian fix shows up in hardy, here is a workaround, thanks to Nicolas François:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">passwd</span> <span style="color: #660033;">--unlock</span> root
 <span style="color: #c20cb9; font-weight: bold;">sudo</span> usermod <span style="color: #660033;">--lock</span> root</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2009/03/ubuntu-hardyintrepid-bug-238755/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[ubuntu] wine и microsoft visio 2003</title>
		<link>http://adik.kiev.ua/blog/2009/03/ubuntu-wine-i-microsoft-visio-2003/</link>
		<comments>http://adik.kiev.ua/blog/2009/03/ubuntu-wine-i-microsoft-visio-2003/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 12:36:30 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[visio]]></category>
		<category><![CDATA[wine]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=195</guid>
		<description><![CDATA[1. Устанивливаем последний wine (Wine for Ubuntu and Ubuntu derivatives) sudo wget -q http://wine.budgetdedicated.com/apt/387EE263.gpg -O- &#124; sudo apt-key add - sudo wget http://wine.budgetdedicated.com/apt/sources.list.d/intrepid.list -O /etc/apt/sources.list.d/winehq.list sudo apt-get update sudo apt-get install wine 2. wget http://www.kegel.com/wine/winetricks sh winetricks corefonts vcrun6 sh winetricks wsh56 sh winetricks gecko msxml3 riched20 riched30 gdiplus 3. В терминале открываем winecfg. В [...]]]></description>
			<content:encoded><![CDATA[<p>1. Устанивливаем последний wine (<a href="http://www.winehq.org/download/deb">Wine for Ubuntu and Ubuntu derivatives</a>)</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #660033;">-q</span> http:<span style="color: #000000; font-weight: bold;">//</span>wine.budgetdedicated.com<span style="color: #000000; font-weight: bold;">/</span>apt<span style="color: #000000; font-weight: bold;">/</span>387EE263.gpg <span style="color: #660033;">-O-</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-key</span> add -
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>wine.budgetdedicated.com<span style="color: #000000; font-weight: bold;">/</span>apt<span style="color: #000000; font-weight: bold;">/</span>sources.list.d<span style="color: #000000; font-weight: bold;">/</span>intrepid.list <span style="color: #660033;">-O</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apt<span style="color: #000000; font-weight: bold;">/</span>sources.list.d<span style="color: #000000; font-weight: bold;">/</span>winehq.list
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #c20cb9; font-weight: bold;">wine</span></pre></div></div>

<p>2.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>www.kegel.com<span style="color: #000000; font-weight: bold;">/</span>wine<span style="color: #000000; font-weight: bold;">/</span>winetricks
<span style="color: #c20cb9; font-weight: bold;">sh</span> winetricks corefonts vcrun6
<span style="color: #c20cb9; font-weight: bold;">sh</span> winetricks wsh56
<span style="color: #c20cb9; font-weight: bold;">sh</span> winetricks gecko msxml3 riched20 riched30 gdiplus</pre></div></div>

<p><span id="more-195"></span></p>
<p>3. В терминале открываем <strong>winecfg</strong>. В закладке, для библиотеки <strong>gdiplus</strong> ставим значение <strong>“сторонняя(windows)”</strong> (“Native (Windows)”)</p>
<p><img class="aligncenter size-full wp-image-201" title="screenshot" src="http://adik.kiev.ua/blog/wp-content/uploads/2009/03/screenshot.png" alt="screenshot" width="413" height="569" /></p>
<p>3. Предлагаемые альтернативы для linux</p>
<ul>
<li> http://www.koffice.org/kivio/</li>
<li> http://www.xfig.org/</li>
<li> http://freshmeat.net/projects/dia/</li>
</ul>
<p>ccылки источники:</p>
<ul>
<li> <a href="http://jeremy.visser.name/2008/08/04/iopl-not-enabled-with-visio-2003-in-wine/">“IOPL not enabled” with Visio 2003 in Wine</a></li>
<li> <a href="http://no-names.biz/2008/06/12/visio-ubuntu-804/">Visio in Ubuntu 8.04</a></li>
<li><a href="http://o-noble.net/2009_01_22/visio-pod-wine/">Visio под Wine</a></li>
<li><a href="http://wiki.winehq.org/winetricks">winetricks</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2009/03/ubuntu-wine-i-microsoft-visio-2003/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copy files partition2partition</title>
		<link>http://adik.kiev.ua/blog/2009/03/copy-files-partition2partition/</link>
		<comments>http://adik.kiev.ua/blog/2009/03/copy-files-partition2partition/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 12:05:40 +0000</pubDate>
		<dc:creator>adik</dc:creator>
				<category><![CDATA[Технотрония]]></category>
		<category><![CDATA[Linux-tips]]></category>

		<guid isPermaLink="false">http://adik.kiev.ua/blog/?p=185</guid>
		<description><![CDATA[Mount point method: cd &#60;mount-point-source&#62; find . -xdev &#124; cpio -pm &#60;mount-point-dest&#62; Block device method: if ( size[device2] &#62;= size[device1] ) dd if=/block/device1 of=/block/device2 bs=4k Remote copy over ssh: ssh remote-host.com dd if=/block/source bs=4k &#124; dd of=/block/destination bs=4k]]></description>
			<content:encoded><![CDATA[<h2>Mount point method:</h2>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">&lt;</span>mount-point-source<span style="color: #000000; font-weight: bold;">&gt;</span>
<span style="color: #c20cb9; font-weight: bold;">find</span> . <span style="color: #660033;">-xdev</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">cpio</span> <span style="color: #660033;">-pm</span> <span style="color: #000000; font-weight: bold;">&lt;</span>mount-point-dest<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<h2>Block device method:</h2>
<p>if ( size[device2] &gt;= size[device1] )</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">dd</span> <span style="color: #007800;">if</span>=<span style="color: #000000; font-weight: bold;">/</span>block<span style="color: #000000; font-weight: bold;">/</span>device1 <span style="color: #007800;">of</span>=<span style="color: #000000; font-weight: bold;">/</span>block<span style="color: #000000; font-weight: bold;">/</span>device2 <span style="color: #007800;">bs</span>=4k</pre></div></div>

<h2>Remote copy over ssh:</h2>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ssh</span> remote-host.com <span style="color: #c20cb9; font-weight: bold;">dd</span> <span style="color: #007800;">if</span>=<span style="color: #000000; font-weight: bold;">/</span>block<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">source</span> <span style="color: #007800;">bs</span>=4k <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">dd</span> <span style="color: #007800;">of</span>=<span style="color: #000000; font-weight: bold;">/</span>block<span style="color: #000000; font-weight: bold;">/</span>destination <span style="color: #007800;">bs</span>=4k</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://adik.kiev.ua/blog/2009/03/copy-files-partition2partition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

