|
From: <kin...@us...> - 2003-11-11 23:28:41
|
Update of /cvsroot/teem/teem/src/bin
In directory sc8-pr-cvs1:/tmp/cvs-serv31081
Modified Files:
talkweb.c
Log Message:
improved usage info
Index: talkweb.c
===================================================================
RCS file: /cvsroot/teem/teem/src/bin/talkweb.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** talkweb.c 11 Nov 2003 07:53:45 -0000 1.2
--- talkweb.c 11 Nov 2003 23:28:38 -0000 1.3
***************
*** 25,29 ****
#include <teem/nrrd.h>
! #define TKWB "webtalk"
#define TKWB_TAG_TOC 0
--- 25,29 ----
#include <teem/nrrd.h>
! #define TKWB "talkweb"
#define TKWB_TAG_TOC 0
***************
*** 38,42 ****
#define TKWB_TAG_MAX 7
! char *tkwbInfo = ("Generates HTML pages from slide images and text");
int tkwbArrayIncr = 16;
--- 38,59 ----
#define TKWB_TAG_MAX 7
! char *tkwbInfo =
! ("Generates HTML pages from slide images and text. "
! "This program takes multiple inputs: a template for the table of contents "
! "that will become \"index.html\" (\"-i\"), a template for the pages "
! "generated for each slide e.g. \"slide000.html\" (\"-t\"), and a script "
! "text file that contains all the information that will go into the slide "
! "pages. The format of this file is:\n "
! "\t\t- Seperator line indicating slide transitions, e.g. \"-------------\"\n "
! "\t\t- Title of first slide (one line)\n "
! "\t\t- Filename for image to put on first slide (one line)\n "
! "\t\t- Body of HTML text to put with the slide image (multiple lines)\n "
! "\t\t- Seperator\n "
! "followed by information for the second slide, and so forth. Textual "
! "subtitutions are performed in the template files, according to the "
! "replacement tags (\"-r\", see below). Within the slide pages, navigation "
! "arrows are based on remaining command-line options."
! );
!
int tkwbArrayIncr = 16;
|