mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-08-06 01:35:04 +02:00
Add new scan pointers for mb/fb
This commit is contained in:
parent
ab6e097a4f
commit
136d21276c
7 changed files with 349 additions and 4 deletions
|
@ -1766,6 +1766,10 @@
|
|||
value: { command: "]" }
|
||||
action: @systemMethod:nextArea
|
||||
}
|
||||
{
|
||||
value: { command: "D" }
|
||||
action: @menu:messageAreaSetNewScanDate
|
||||
}
|
||||
{
|
||||
value: 1
|
||||
action: @menu:messageArea
|
||||
|
@ -1803,6 +1807,47 @@
|
|||
}
|
||||
}
|
||||
|
||||
messageAreaSetNewScanDate: {
|
||||
module: set_newscan_date
|
||||
desc: Message Base
|
||||
art: SETMNSDATE
|
||||
config: {
|
||||
target: message
|
||||
scanDateFormat: YYYYMMDD
|
||||
}
|
||||
form: {
|
||||
0: {
|
||||
mci: {
|
||||
ME1: {
|
||||
focus: true
|
||||
submit: true
|
||||
argName: scanDate
|
||||
maskPattern: "####/##/##"
|
||||
}
|
||||
SM2: {
|
||||
argName: targetSelection
|
||||
submit: false
|
||||
justify: right
|
||||
}
|
||||
}
|
||||
submit: {
|
||||
*: [
|
||||
{
|
||||
value: { scanDate: null }
|
||||
action: @method:scanDateSubmit
|
||||
}
|
||||
]
|
||||
}
|
||||
actionKeys: [
|
||||
{
|
||||
keys: [ "escape", "q", "shift + q" ]
|
||||
action: @systemMethod:prevMenu
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
messageAreaChangeCurrentArea: {
|
||||
// :TODO: rename this art to ACHANGE
|
||||
art: CHANGE
|
||||
|
@ -2493,9 +2538,49 @@
|
|||
value: { menuOption: "S" }
|
||||
action: @menu:fileBaseSearch
|
||||
}
|
||||
{
|
||||
value: { menuOption: "P" }
|
||||
action: @menu:fileBaseSetNewScanDate
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
fileBaseSetNewScanDate: {
|
||||
module: set_newscan_date
|
||||
desc: File Base
|
||||
art: SETFNSDATE
|
||||
config: {
|
||||
target: file
|
||||
scanDateFormat: YYYYMMDD
|
||||
}
|
||||
form: {
|
||||
0: {
|
||||
mci: {
|
||||
ME1: {
|
||||
focus: true
|
||||
submit: true
|
||||
argName: scanDate
|
||||
maskPattern: "####/##/##"
|
||||
}
|
||||
}
|
||||
submit: {
|
||||
*: [
|
||||
{
|
||||
value: { scanDate: null }
|
||||
action: @method:scanDateSubmit
|
||||
}
|
||||
]
|
||||
}
|
||||
actionKeys: [
|
||||
{
|
||||
keys: [ "escape", "q", "shift + q" ]
|
||||
action: @systemMethod:prevMenu
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fileBaseListEntries: {
|
||||
module: file_area_list
|
||||
desc: Browsing Files
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue