From 257e4ba694bac6b8ba058c287b2052462ccb56e9 Mon Sep 17 00:00:00 2001 From: mcmlxxix <> Date: Mon, 4 May 2009 19:01:24 +0000 Subject: [PATCH] generic help file parser for loading text based help files. (TODO) --- exec/load/helpfile.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 exec/load/helpfile.js diff --git a/exec/load/helpfile.js b/exec/load/helpfile.js new file mode 100644 index 0000000000..95a2d33df7 --- /dev/null +++ b/exec/load/helpfile.js @@ -0,0 +1,13 @@ +function HelpFile(helpfile) +{ + this.file=new File(helpfile); + this.help=function(section) + { + //TODO: display section help + } + this.load=function() + { + //TODO: parse help information from a single help file divided into sections + } + this.load(); +} -- GitLab