Changeset a45a7bc
- Timestamp:
- 01/20/2007 07:54:30 PM (16 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, ken/inkscape-core-mods, krejzi/svn, lazarus, nosym, perl-modules, plabs/python-mods, qt5new, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/soup3, xry111/test-20220226
- Children:
- c60dae5b
- Parents:
- 52fb8cf
- Location:
- introduction
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
introduction/important/locale-issues.xml
r52fb8cf ra45a7bc 260 260 translated manual pages in UTF-8 encoding (e.g., Shadow, already dealt 261 261 with), or manual pages in languages not in the table. Not all BLFS packages 262 have been audited for conformance with the requirements put in LFS. If you 263 find a manual page installed by any of BLFS packages that is obviously in 264 the wrong encoding, please remove or convert it as needed, and report this 265 to BLFS team as a bug.</para> 262 have been audited for conformance with the requirements put in LFS (the 263 large majority have been checked, and fixes placed in the book for packages 264 known to install non-conforming manual pages). If you find a manual page 265 installed by any of BLFS packages that is obviously in the wrong encoding, 266 please remove or convert it as needed, and report this to BLFS team as a 267 bug.</para> 268 269 <para>You can easily check your system for any non-conforming manual pages 270 by copying the following short shell script to some accessible location, 271 272 <screen><literal>#!/bin/sh 273 # Begin checkman.sh 274 # Usage: find /usr/share/man -type f | xargs checkman.sh 275 for a in "$@" 276 do 277 # echo "Checking $a..." 278 # Pure-ASCII manual page (possibly except comments) is OK 279 grep -v '.\\"' "$a" | iconv -f US-ASCII -t US-ASCII >/dev/null 2>&1 && continue 280 # Non-UTF-8 manual page is OK 281 iconv -f UTF-8 -t UTF-8 "$a" >/dev/null 2>&1 || continue 282 # If we got here, we found UTF-8 manual page, bad. 283 echo "UTF-8 manual page: $a" >&2 284 done 285 # End checkman.sh 286 </literal></screen> 287 288 and then issuing the following command (modify the command below if the 289 <command>checkman.sh</command> script is not in your <envar>PATH</envar> 290 environment variable):</para> 291 292 <screen><userinput>find /usr/share/man -type f | xargs checkman.sh</userinput></screen> 293 294 <para>Note that if you have manual pages installed in any location other 295 than <filename class='directory'>/usr/share/man</filename> (e.g., 296 <filename class='directory'>/usr/local/share/man</filename>), you must 297 modify the above command to include this additional location.</para> 266 298 267 299 </sect2> -
introduction/welcome/changelog.xml
r52fb8cf ra45a7bc 46 46 <itemizedlist> 47 47 <listitem> 48 <para>[randy] - Added a shell script and additional information 49 about UTF-8 manual pages to the Locale Related Issues page.</para> 50 </listitem> 51 <listitem> 48 52 <para>[randy] - Moved the CM-Super type1ec.sty file from the 49 53 texmf-local directory structure to the texmf structure.</para>
Note:
See TracChangeset
for help on using the changeset viewer.