Changeset 5207:dc54d31493a2 for doc

Show
Ignore:
Timestamp:
2007-09-05 00:07:00 (15 months ago)
Author:
Rocco Rutte <pdmef@…>
Branch:
HEAD
Message:

Manual: make sure <screen/> contents in shorter than 80 chars

Otherwise conversion to plain text may cause line breaks rendering
examples syntacially invalid (closes #2185).

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • doc/manual.xml.head

    r5206 r5207  
    50935093 
    50945094<screen> 
    5095 -   1 [text/plain, 7bit, 1K]             /tmp/mutt-euler-8082-0 &lt;no description&gt; 
    5096     2 [applica/x-gunzip, base64, 422K]  ~/src/mutt-0.85.tar.gz &lt;no description&gt; 
     5095- 1 [text/plain, 7bit, 1K]           /tmp/mutt-euler-8082-0 &lt;no description&gt; 
     5096  2 [applica/x-gunzip, base64, 422K] ~/src/mutt-0.85.tar.gz &lt;no description&gt; 
    50975097</screen> 
    50985098 
     
    51775177In order to handle various MIME types that Mutt can not handle 
    51785178internally, Mutt parses a series of external configuration files to 
    5179 find an external handler.  The default search string for these files 
    5180 is a colon delimited list set to 
     5179find an external handler. The default search string for these files 
     5180is a colon delimited list containing the following files: 
     5181 
     5182<orderedlist> 
     5183<listitem><para><literal>&dollar;HOME/.mailcap</literal></para></listitem> 
     5184<listitem><para><literal>&dollar;PKGDATADIR/mailcap</literal></para></listitem> 
     5185<listitem><para><literal>&dollar;SYSCONFDIR/mailcap</literal></para></listitem> 
     5186<listitem><para><literal>/etc/mailcap</literal></para></listitem> 
     5187<listitem><para><literal>/usr/etc/mailcap</literal></para></listitem> 
     5188<listitem><para><literal>/usr/local/etc/mailcap</literal></para></listitem> 
     5189</orderedlist> 
     5190 
     5191where <literal>&dollar;HOME</literal> is your home directory. The 
     5192<literal>&dollar;PKGDATADIR</literal> and the 
     5193<literal>&dollar;SYSCONFDIR</literal> directories depend on where mutt 
     5194is installed: the former is the default for shared data, the 
     5195latter for system configuration files. 
     5196</para> 
     5197 
     5198<para> 
     5199The default search path can be obtained by running the following 
     5200command: 
     5201</para> 
    51815202 
    51825203<screen> 
    5183 ${HOME}/.mailcap:/usr/local/share/mutt/mailcap:/etc/mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap 
     5204mutt -nF /dev/null -Q mailcap_path 
    51845205</screen> 
    5185  
    5186 where <literal>&dollar;HOME</literal> is your home directory. 
    5187 </para> 
    51885206 
    51895207<para> 
     
    56785696 
    56795697<screen> 
    5680 auto_view text/html application/x-gunzip application/postscript image/gif application/x-tar-gz 
     5698auto_view text/html application/x-gunzip &bsol; 
     5699  application/postscript image/gif application/x-tar-gz 
    56815700</screen> 
    56825701 
     
    56895708<screen> 
    56905709text/html;      lynx -dump %s; copiousoutput; nametemplate=%s.html 
    5691 image/*;        anytopnm %s | pnmscale -xsize 80 -ysize 50 | ppmtopgm | pgmtopbm | pbmtoascii ; copiousoutput 
     5710image/*;        anytopnm %s | pnmscale -xsize 80 -ysize 50 | ppmtopgm | &bsol; 
     5711                pgmtopbm | pbmtoascii ; copiousoutput 
    56925712application/x-gunzip;   gzcat; copiousoutput 
    56935713application/x-tar-gz; gunzip -c %s | tar -tf - ; copiousoutput