Accepting means allowing a file to be dropped into an instance.
This accept-1
file type is only intended to be used on
.Accept
files.
An accept-1
file can be configured via string attributes named
placeholder-N
, where N is any valid placeholder: [0..255].
The attribute values must be a space separated lists of app methods. There are 2 special values:
.Image
- currently only the built-in image-1
app implements it, and.None
- which can not be implemented.Built-in methods you will likely want to use:
.Inline
,.Request
,.Page
.You can also use user-defined methods, like .foo
. User defined methods start
with a dot followed by a lower-case letter. This allows you to create
applications that only allow one to drop specific file types - those that
implement that interface.
0
Note that placeholder 0 is a special placeholder in that it is treated as a hidden placeholder. This is the place where to store hidden files. Thus, it makes no sense to define accept rules for it, and it is recommended you do not define any.
Open it in your browser to validate it.
{
"title": "",
"link": "",
"type": "accept-1",
"statusCode": 0,
"attr": {}
}
{
"title": "",
"link": "",
"type": "accept-1",
"statusCode": 0,
"attr": {
"placeholder-1 string": ""
}
}
{
"title": "",
"link": "",
"type": "accept-1",
"statusCode": 0,
"attr": {
"placeholder-1 string": ".Page"
}
}
{
"title": "",
"link": "",
"type": "accept-1",
"statusCode": 0,
"attr": {
"placeholder-1 string": ".Image"
}
}
{
"title": "",
"link": "",
"type": "accept-1",
"statusCode": 0,
"attr": {
"placeholder-1 string": ".Inline"
}
}
{
"title": "",
"link": "",
"type": "accept-1",
"statusCode": 0,
"attr": {
"placeholder-1 string": ".Inline .Request"
}
}
{
"title": "",
"link": "",
"type": "accept-1",
"statusCode": 0,
"attr": {
"placeholder-1 string": ".Inline",
"placeholder-2 string": ".Inline"
}
}
.Request