2002-03-20 22:47:37 +00:00
|
|
|
;
|
|
|
|
; SANE Backend specification file
|
|
|
|
;
|
|
|
|
; It's basically emacs-lisp --- so ";" indicates comment to end of line.
|
|
|
|
; All syntactic elements are keyword tokens, followed by a string or
|
|
|
|
; keyword argument, as specified.
|
|
|
|
;
|
|
|
|
; ":backend" *must* be specified.
|
|
|
|
; All other information is optional (but what good is the file without it?).
|
|
|
|
;
|
2002-07-21 18:38:34 +00:00
|
|
|
; See doc/descriptions.txt for details.
|
2002-03-20 22:47:37 +00:00
|
|
|
|
|
|
|
:backend "template" ; name of backend
|
2003-06-19 14:29:29 +00:00
|
|
|
:version "0.42" ; version of backend (or "unmaintained")
|
2002-03-20 22:47:37 +00:00
|
|
|
:manpage "sane-template" ; name of manpage (if it exists)
|
|
|
|
:url "http://www.luser.com/temp/" ; backend's web page
|
2002-07-21 18:38:34 +00:00
|
|
|
:url "http://www.luser.com/b/" ; another backend webpage
|
2017-05-27 05:27:22 +00:00
|
|
|
:comment "This backend supports only the USB and SCSI models"
|
2002-07-21 18:38:34 +00:00
|
|
|
; comment about the backend
|
2002-03-20 22:47:37 +00:00
|
|
|
|
|
|
|
:devicetype :scanner ; start of a list of devices....
|
|
|
|
; other types: :stillcam, :vidcam,
|
|
|
|
; :meta, :api
|
|
|
|
|
|
|
|
:mfg "TemPlate" ; name a manufacturer
|
2002-07-21 18:38:34 +00:00
|
|
|
:url "http://www.template.com/" ; manufacturer's URL
|
|
|
|
:url "http://www.template.de/" ; another manufacturer URL
|
|
|
|
:comment "TemPlate scanners are sometimes labeled \"TMP\""
|
|
|
|
; comment about the manufacturer
|
|
|
|
|
2002-03-20 22:47:37 +00:00
|
|
|
:model "Templ Z" ; name models for above-specified mfg.
|
2003-06-19 14:29:29 +00:00
|
|
|
:status :untested ; :minimal, :basic, :good, :complete
|
|
|
|
; :untested, or :unsupported
|
2002-03-20 22:47:37 +00:00
|
|
|
:interface "SCSI" ; interface type of the device:
|
|
|
|
; "SCSI", "USB", "Parport (EPP)",
|
|
|
|
; "Parport (SPP)", "Parport (ECP)",
|
2003-06-19 14:29:29 +00:00
|
|
|
; "Serial port", "IEEE-1394", "JetDirect",
|
|
|
|
; or "Proprietary".
|
2006-01-10 23:00:17 +00:00
|
|
|
:usbid "0x1234" "0x4321" ; Vendor and product ids of an USB device
|
2002-07-21 18:38:34 +00:00
|
|
|
:url "http://www.tmp.com/z.html" ; model's URL
|
|
|
|
:comment "With Z-Axis scrolling" ; comment about the model
|
|
|
|
|
2002-03-20 22:47:37 +00:00
|
|
|
:model "Templ ZS"
|
|
|
|
:interface "USB"
|
2006-01-10 23:00:17 +00:00
|
|
|
:usbid "0x1234" "0x4322"
|
2002-07-21 18:38:34 +00:00
|
|
|
:status :unsupported
|
|
|
|
:comment "No support yet, but we have docs."
|
|
|
|
|
2002-03-20 22:47:37 +00:00
|
|
|
:model "Templ ZQ"
|
2002-07-21 18:38:34 +00:00
|
|
|
:interface "USB"
|
2006-01-10 23:00:17 +00:00
|
|
|
:usbid "0x1234" "0x4323"
|
2003-06-19 14:29:29 +00:00
|
|
|
:status :minimal
|
2002-07-21 18:38:34 +00:00
|
|
|
|
|
|
|
:model "Templ ZY"
|
|
|
|
:interface "SCSI"
|
2003-06-19 14:29:29 +00:00
|
|
|
:status :basic
|
2002-07-21 18:38:34 +00:00
|
|
|
|
|
|
|
:model "Templ ZZ"
|
|
|
|
:interface "SCSI"
|
2003-06-19 14:29:29 +00:00
|
|
|
:status :good
|
2002-03-20 22:47:37 +00:00
|
|
|
|
|
|
|
:mfg "ArmorPlate" ; another manufacturer...
|
|
|
|
:url "http://www.armorplate.com/"
|
2002-07-21 18:38:34 +00:00
|
|
|
|
2002-03-20 22:47:37 +00:00
|
|
|
:model "AmplScan II"
|
|
|
|
:interface "SCSI"
|
2003-06-19 14:29:29 +00:00
|
|
|
:status :complete
|
2002-03-20 22:47:37 +00:00
|
|
|
:comment "AmplScan *II*, not AmplScan!"
|
|
|
|
|
|
|
|
:devicetype :api ; specify a different type
|
|
|
|
:desc "Interface to FrObYz API" ; describe a non-hardware device
|
2002-07-21 18:38:34 +00:00
|
|
|
:comment "Only FrObYz version 2.0 is supported!"
|
2002-03-20 22:47:37 +00:00
|
|
|
|
|
|
|
; :comment and :url specifiers are optional after :mfg, :model, :desc,
|
|
|
|
; and at the top-level.
|
|
|
|
|
2002-07-21 18:38:34 +00:00
|
|
|
; :status specifier is optional after :model and at the top-level
|