| Summary: | FreeBSD Handbook: Anti-Aliased Fonts: review | ||
|---|---|---|---|
| Product: | Documentation | Reporter: | olivier |
| Component: | Books & Articles | Assignee: | freebsd-doc (Nobody) <doc> |
| Status: | Closed Overcome By Events | ||
| Severity: | Affects Only Me | CC: | carlavilla |
| Priority: | --- | Keywords: | needs-qa |
| Version: | Latest | ||
| Hardware: | Any | ||
| OS: | Any | ||
| Bug Depends on: | |||
| Bug Blocks: | 263315 | ||
For bugs matching the following criteria: Status: In Progress Changed: (is less than) 2014-06-01 Reset to default assignee and clear in-progress tags. Mail being skipped (In reply to olivier from comment #0) Now 5.5.3 at <https://docs.freebsd.org/en/books/handbook/x11/#antialias> X.Org has improved considerably since 2013; what change, if any, is now appropriate? TIA |
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' 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.