docs/183002: Fix instructions in "6.5.3. Anti-Aliased Fonts" regarding local.conf
Olivier Cochard-Labbe
olivier at cochard.me
Tue Oct 15 19:10:01 UTC 2013
>Number: 183002
>Category: docs
>Synopsis: Fix instructions in "6.5.3. Anti-Aliased Fonts" regarding local.conf
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: freebsd-doc
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: doc-bug
>Submitter-Id: current-users
>Arrival-Date: Tue Oct 15 19:10:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator: Olivier Cochard-Labbe
>Release: 10.0
>Organization:
>Environment:
FreeBSD laptop.bsdrp.net 10.0-ALPHA5 FreeBSD 10.0-ALPHA5 #8 r256200: Fri Oct 11 21:03:30 CEST 2013 root at laptop.bsdrp.net:/usr/obj/usr/local/BSDRP/BSDRPcur/FreeBSD/src/sys/PROD amd64
>Description:
Handbook chapter "6.5.3. Anti-Aliased Fonts" have this indication:
"Certain fonts, such as Helvetica, may have a problem when anti-aliased. Usually this manifests itself as a font that seems cut in half vertically. At worst, it may cause applications to crash. To avoid this, consider adding the following to local.conf:
<match target="pattern" name="family">
<test qual="any" name="family">
<string>Helvetica</string>
</test>
<edit name="family" mode="assign">
<string>sans-serif</string>
</edit>
</match> "
Then I've create this local.conf file:
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="pattern" name="family">
<test qual="any" name="family">
<string>Helvetica</string>
</test>
<edit name="family" mode="assign">
<string>sans-serif</string>
</edit>
</match>
</fontconfig>
But now I've got lot's of warning when I start xorg softwares:
Fontconfig error: "local.conf", line 11: invalid attribute 'name'
>How-To-Repeat:
>Fix:
Just replace this line:
<match target="pattern" name="family">
by this one:
<match target="pattern">
fix the warning messsage.
I beleive all "match target" line of this chapter should be updated too.
>Release-Note:
>Audit-Trail:
>Unformatted:
More information about the freebsd-doc
mailing list