Merge branch 'master' of ssh://numinibsd/git/base/enigma-bbs
This commit is contained in:
commit
9d55695533
Binary file not shown.
Binary file not shown.
|
@ -120,8 +120,46 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// :TODO: Prompt Yes/No for logoff confirm
|
||||||
|
fullLogoffSequence: {
|
||||||
|
desc: Logging Off
|
||||||
|
prompt: logoffConfirmation
|
||||||
|
submit: [
|
||||||
|
{
|
||||||
|
value: { promptValue: 0 }
|
||||||
|
action: @menu:fullLogoffSequencePreAd
|
||||||
|
}
|
||||||
|
{
|
||||||
|
value: { promptValue: 1 }
|
||||||
|
action: @systemMethod:prevMenu
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
fullLogoffSequencePreAd: {
|
||||||
|
art: PRELOGAD
|
||||||
|
desc: Logging Off
|
||||||
|
next: fullLogoffSequenceRandomBoardAd
|
||||||
|
options: {
|
||||||
|
cls: true
|
||||||
|
nextTimeout: 1500
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fullLogoffSequenceRandomBoardAd: {
|
||||||
|
art: OTHRBBS
|
||||||
|
desc: Logging Off
|
||||||
|
next: logoff
|
||||||
|
options: {
|
||||||
|
baudRate: 57600
|
||||||
|
pause: true
|
||||||
|
cls: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
logoff: {
|
logoff: {
|
||||||
art: LOGOFF
|
art: LOGOFF
|
||||||
|
desc: Logging Off
|
||||||
next: @systemMethod:logoff
|
next: @systemMethod:logoff
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
|
@ -230,7 +268,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//
|
||||||
// SSH specialization of NUA
|
// SSH specialization of NUA
|
||||||
|
// Canceling this form logs off vs falling back to matrix
|
||||||
|
//
|
||||||
newUserApplicationSsh: {
|
newUserApplicationSsh: {
|
||||||
art: NUA
|
art: NUA
|
||||||
fallback: logoff
|
fallback: logoff
|
||||||
|
@ -501,7 +542,7 @@
|
||||||
submit: [
|
submit: [
|
||||||
{
|
{
|
||||||
value: { command: "G" }
|
value: { command: "G" }
|
||||||
action: @menu:logoff
|
action: @menu:fullLogoffSequence
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
value: { command: "D" }
|
value: { command: "D" }
|
||||||
|
|
|
@ -32,6 +32,19 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
logoffConfirmation: {
|
||||||
|
art: LOGPMPT
|
||||||
|
mci: {
|
||||||
|
TM1: {
|
||||||
|
argName: promptValue
|
||||||
|
items: [ "yes", "no" ]
|
||||||
|
focus: true
|
||||||
|
hotKeys: { Y: 0, N: 1 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
"menuCommand" : {
|
"menuCommand" : {
|
||||||
art: MNUPRMT
|
art: MNUPRMT
|
||||||
"mci" : {
|
"mci" : {
|
||||||
|
|
Loading…
Reference in New Issue