This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
set +o noclobber | |
# | |
# $1 = scanner device | |
# $2 = friendly name | |
# | |
# ============================================== | |
# resolution: dpi | |
# mode: color, grayscale and so on |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Name of the property. You can have multiple properties with completely | |
# different config blocks for different sections of your site. | |
# For example, you can have one property to handle comment submission and | |
# another one to handle posts. | |
comments: | |
# (*) REQUIRED | |
# | |
# Names of the fields the form is allowed to submit. If a field that is | |
# not here is part of the request, an error will be thrown. | |
allowedFields: ["comment", "name", "email", "website", "slug"] |