• 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 "teco1"                  ; name of backend
13:version "1.0-10 (unmaintained)"  ; version of backend
14:manpage "sane-teco1"             ; name of manpage (if it exists)
15:url "http://www.zago.net/sane/#teco"    ; backend's web page
16
17:devicetype :scanner              ; start of a list of devices....
18                                  ; other types:  :stillcam, :vidcam,
19                                  ;               :meta, :api
20
21:mfg "Relisys"
22:url "http://www.relisys.com/"
23:url "http://www.tecoimage.com.tw/"
24
25:model "RELI 2412"
26:interface "SCSI"
27:comment "sub model VM3530+"
28:status :complete
29
30:model "AVEC 2400"
31:interface "SCSI"
32:comment "sub model VM3520"
33:status :complete
34
35:model "RELI 4830"
36:interface "SCSI"
37:comment "sub model VM4542"
38:status :good
39
40:model "AVEC 2412"
41:comment "sub model VM3520+"
42:interface "SCSI"
43:status :complete
44
45:model "AVEC 4800"
46:comment "sub model VM4530"
47:interface "SCSI"
48:status :untested
49
50:model "AVEC 4816"
51:comment "sub model VM4530+"
52:interface "SCSI"
53:status :untested
54
55:model "RELI DS6"
56:comment "sub model VM3420"
57:interface "SCSI"
58:status :untested
59
60:model "RELI DS15"
61:comment "sub model VM3440"
62:interface "SCSI"
63:status :untested
64
65:model "RELI 2400"
66:comment "sub model VM3530"
67:interface "SCSI"
68:status :untested
69
70:model "RELI 4816"
71:comment "sub model VM4540"
72:interface "SCSI"
73:status :complete
74
75:model "RELI 9600"
76:comment "sub model VM6530"
77:interface "SCSI"
78:status :untested
79
80:model "RELI 9612"
81:comment "sub model VM6530*"
82:interface "SCSI"
83:status :untested
84
85:model "RELI 9624"
86:comment "sub model VM6530+"
87:interface "SCSI"
88:status :untested
89
90:model "RELI 9630"
91:comment "sub model VM6540"
92:interface "SCSI"
93:status :untested
94
95:mfg "Actown"
96:model "ACT Scan I 30"
97:comment "sub model VM3520A"
98:interface "SCSI"
99:status :untested
100
101:mfg "Dextra"
102
103:model "DF-600P"
104:comment "sub model VM3510"
105:interface "SCSI"
106:status :good
107
108:model "DF-1200T+"
109:comment "sub model VM3530+"
110:interface "SCSI"
111:status :untested
112
113:model "DF-4830T"
114:comment "sub model VM4542"
115:interface "SCSI"
116:status :untested
117
118:model "DF-9624"
119:comment "sub model VM6530+"
120:interface "SCSI"
121:status :untested
122
123; :comment and :url specifiers are optional after :mfg, :model, :desc,
124;  and at the top-level.
125