• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1;
2; SANE Backend specification file
3;
4; It's basically emacs-lisp --- so ";" indicates comment to end of line.
5; All syntactic elements are keyword tokens, followed by a string or
6;  keyword argument, as specified.
7;
8; ":backend" *must* be specified.
9; All other information is optional (but what good is the file without it?).
10;
11
12:backend "matsushita"             ; name of backend
13:version "1.0-7 (unmaintained)"   ; version of backend
14:manpage "sane-matsushita"        ; name of manpage
15:url "http://www.zago.net/sane"    ; backend's web page
16
17:devicetype :scanner              ; start of a list of devices....
18
19:mfg "Panasonic"                  ; name a manufacturer
20:url "http://www.panasonic.com/"
21
22:model "KV-SS25"
23:interface "SCSI"
24:status :complete
25
26:model "KV-SS25D"
27:interface "SCSI"
28:status :complete
29
30:model "KV-SS50"
31:interface "SCSI"
32:status :untested
33
34:model "KV-SS55"
35:interface "SCSI"
36:status :untested
37
38:model "KV-SS50EX"
39:interface "SCSI"
40:status :untested
41
42:model "KV-SS55EX"
43:interface "SCSI"
44:status :minimal
45:comment "no color, no high resolution, no automatic cropping"
46
47:model "KV-SS850"
48:interface "SCSI"
49:status :untested
50
51:model "KV-SS855"
52:interface "SCSI"
53:status :untested
54
55:model "KV-S2025C"
56:interface "SCSI"
57:status :minimal
58:comment "no color, no high resolution, no automatic cropping"
59
60:model "KV-S2045C"
61:interface "SCSI"
62:status :minimal
63:comment "no color, no high resolution, no automatic cropping"
64
65:model "KV-S2065L"
66:interface "SCSI"
67:status :minimal
68:comment "no color, no high resolution, no automatic cropping"
69
70; :comment and :url specifiers are optional after :mfg, :model, :desc,
71;  and at the top-level.
72