1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- This is the developer's manual for Aspell.
Copyright © 2002, 2003, 2004, 2006 Kevin Atkinson.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.1 or
any later version published by the Free Software Foundation; with no
Invariant Sections, no Front-Cover Texts and no Back-Cover Texts. A
copy of the license is included in the section entitled "GNU Free
Documentation License". -->
<!-- Created by GNU Texinfo 5.2, http://www.gnu.org/software/texinfo/ -->
<head>
<title>Aspell Developer’s Manual: Filter Modes</title>
<meta name="description" content="Aspell spell checker developer’s manual.">
<meta name="keywords" content="Aspell Developer’s Manual: Filter Modes">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="index.html#Top" rel="start" title="Top">
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
<link href="index.html#Top" rel="up" title="Top">
<link href="Data-Structures.html#Data-Structures" rel="next" title="Data Structures">
<link href="Filter-Interface.html#Filter-Interface" rel="prev" title="Filter Interface">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.smallquotation {font-size: smaller}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.indentedblock {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
div.smalldisplay {margin-left: 3.2em}
div.smallexample {margin-left: 3.2em}
div.smallindentedblock {margin-left: 3.2em; font-size: smaller}
div.smalllisp {margin-left: 3.2em}
kbd {font-style:oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: inherit; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: inherit; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.nocodebreak {white-space:nowrap}
span.nolinebreak {white-space:nowrap}
span.roman {font-family:serif; font-weight:normal}
span.sansserif {font-family:sans-serif; font-weight:normal}
ul.no-bullet {list-style: none}
table:not([class]), table:not([class]) th, table:not([class]) td {
padding: 2px 0.3em 2px 0.3em;
border: thin solid #D0D0D0;
border-collapse: collapse;
}
-->
</style>
<meta name=viewport content="width=device-width, initial-scale=1">
</head>
<body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<a name="Filter-Modes"></a>
<div class="header">
<p>
Next: <a href="Data-Structures.html#Data-Structures" accesskey="n" rel="next">Data Structures</a>, Previous: <a href="Filter-Interface.html#Filter-Interface" accesskey="p" rel="prev">Filter Interface</a>, Up: <a href="index.html#Top" accesskey="u" rel="up">Top</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>]</p>
</div>
<hr>
<a name="Filter-Modes-1"></a>
<h2 class="chapter">12 Filter Modes</h2>
<p>Filter modes are the preferred way to specify combinations of
filters which are used regularly and thus abbreviate Aspell’s
command line arguments.
</p>
<p>A new filter mode is specified by a file named like the filter
new mode and prefixed by <samp>.amf</samp> (Aspell Mode File). If such a file
is accessible by the path set via filter-path option Aspell
will try to load the contained mode specification.
</p>
<a name="Aspell-Mode-File"></a>
<h3 class="section">12.1 Aspell Mode File</h3>
<p>The first key in the made file has be the <code>mode</code> key.
It is checked against the mode name part of the .amf file.
If the <code>mode</code> key is missing mode file will be rejected.
</p>
<p>The same holds for the <code>aspell</code> key which specifies the
version(s) of Aspell which is(are) required by the filter.
</p>
<p>If these two keys are followed by at least one <code>magic</code> key
Aspell will be able to select the entire mode from extension and
if required from contents of the file to spell implicitly.
</p>
<p>The last key of the required keys is the <code>des[c[ription]]</code>
key. It gives a short description of the filter mode which will
displayed when type <code>aspell help</code>.
</p>
<p>The rest of the file consists of the keys <code>filter</code> and
<code>option</code> to load filters are set various options.
</p>
<a name="Version-Line"></a>
<h4 class="subsection">12.1.1 Version Line</h4>
<p>Each version line must start with <code>aspell</code> and be followed by a
version, optionally prefixed by a relational operator. The relation
operator can be one of ‘<’, ‘<=’, ‘=’, ‘>=’ or ’>’ for allowing Aspell
version with version number being lower, lower or equal, equal to,
greater or equal or greater than required version number,
respectfully. If the relation operator is omitted ‘=’ is assumed.
</p>
<a name="Magic-Line"></a>
<h4 class="subsection">12.1.2 Magic Line</h4>
<p>The magic line contains a description which requirements files
have to fulfill in order to implicitly activate the entire mode
at least one such line is required. Each magic line has the following
format:
</p><div class="example">
<pre class="example">MAGIC /<magic key>/<fileextension>[/<fileextension>]
</pre></div>
<p>The magic key consist of three ‘:’ separated fields.
The first two are byte counts the last is a regular expression.
The first byte count indicates the first byte the regular expression
will be applied to the second byte count indicates the number of
bytes to test against the regular expression.
</p>
<p>If mode selection should only occurred on basis of the listed file
extensions the magic key should consist of the “<noregex>” special
string.
</p>
<p>At least one <fileextension> is required per MAGIC line.
<fileextension> may not be empty and should not contain a leading ‘.’
as this is assumed implicitly.
</p>
<p>Multiple MAGIC lines are allowed. Modes may be extended limited by additional
<label>.amf files located in –filter-path
Thus file extensions may be prefixed by ‘+’ or ‘-’ to indicate that
the entire extension has to be added ore removed from this <magic key>
if neither is specified than a ‘+’ is assumed implicitly.
</p>
<a name="Description-Line"></a>
<h4 class="subsection">12.1.3 Description Line</h4>
<p>The required description line will be printed when typing
<code>aspell help</code>. Keep it as short as possible. Possible
abbreviations are <code>des</code> and <code>desc</code>.
</p>
<a name="Filter-and-Option-Lines"></a>
<h4 class="subsection">12.1.4 Filter and Option Lines</h4>
<p>The <code>filter</code> and <code>option</code> keys load filters and set filter
options.
</p>
<p>The value of the <code>filter</code> key is equal to the value of Aspell’s
<code>[add|rem]-filter</code> option.
</p>
<p>Each <code>option</code> line has the following format:
</p>
<div class="example">
<pre class="example"> OPTION <option> [<value>]
</pre></div>
<p>The format of the <option> and <value> is the same format as
found in the Aspell configuration file.
</p>
<hr>
<div class="header">
<p>
Next: <a href="Data-Structures.html#Data-Structures" accesskey="n" rel="next">Data Structures</a>, Previous: <a href="Filter-Interface.html#Filter-Interface" accesskey="p" rel="prev">Filter Interface</a>, Up: <a href="index.html#Top" accesskey="u" rel="up">Top</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>]</p>
</div>
</body>
</html>
|