* System stats

* Last callers rewritten using format and VM
* Some minor MCI stuff
This commit is contained in:
Bryan Ashby
2015-10-17 20:03:51 -06:00
parent d02d9e4a7c
commit 1c1f4394ca
15 changed files with 126 additions and 39 deletions

View File

@@ -163,6 +163,7 @@
/*
nua -> send sysop mail -> { active } -> matrix
-> you must active -> matrix
TODO: display PRINT before this (Obv/2)
*/
newUserApplication: {
art: NUA
@@ -367,23 +368,28 @@
}
}
}
fullLoginSequenceLoginArt: {
desc: Logging In
art: LOGIN
options: { pause: true }
next: fullLoginSequenceLastCallers
}
fullLoginSequenceLastCallers: {
desc: Last Callers
module: last_callers
art: LASTCALL
options: { pause: true }
next: fullLoginSequenceSysStats
next: fullLoginSequenceSysStats
}
fullLoginSequenceSysStats: {
desc: System Stats
art: SYSSTAT
options: { pause: true }
next: fullLoginSequenceUserStats
}
fullLoginSequenceUserStats: {
desc: User Stats
art: STATUS
options: { pause: true }
next: mainMenu
@@ -437,6 +443,10 @@
value: { command: "C" }
action: @menu:mainMenuUserConfig
}
{
value: { command: "S" }
action: @menu:mainMenuSystemStats
}
{
"value" : 1,
"action" : "@menu:mainMenu"
@@ -452,6 +462,10 @@
art: STATUS
options: { pause: true }
}
mainMenuSystemStats: {
art: SYSSTAT
options: { pause: true }
}
mainMenuUserConfig: {
module: @systemModule:user_config
art: CONFSCR
@@ -479,6 +493,12 @@
argName: termSize
}
}
actionKeys: [
{
keys: [ "escape" ]
action: @method:exitKeyPressed
}
]
}
}
}