home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / iltitlecon.tcl < prev    next >
Text File  |  1996-05-29  |  2KB  |  72 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)iltitlecon.tcl    1.3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)iltitlecon.tcl    1.3   15 Feb 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "ilcongen.tcl"
  15.  
  16. Class IlTitleConGen : {IlConGen} {
  17.     constructor
  18.     method destructor
  19.     method generate
  20. }
  21.  
  22. constructor IlTitleConGen {class this name section} {
  23.     set this [IlConGen::constructor $class $this $name $section]
  24.     # Start constructor user section
  25.  
  26.     # this is not a type-tied generator, so adjust the type
  27.     # part of the template name
  28.     set version [[[[$this section] document] editor] version]
  29.     $this templatePath [m4_path_name etc il${version}doc.asc]
  30.  
  31.     # End constructor user section
  32.     return $this
  33. }
  34.  
  35. method IlTitleConGen::destructor {this} {
  36.     # Start destructor user section
  37.     # End destructor user section
  38.     $this IlConGen::destructor
  39. }
  40.  
  41. method IlTitleConGen::generate {this} {
  42.  
  43.     set titleFid [$this openAsc]
  44.  
  45.     if {$titleFid == ""} {
  46.         return
  47.     }
  48.  
  49.     # set department name here for the title page
  50.     set departmentName "<Department Name>"
  51.  
  52.     set header [TextSection new]
  53.     expand_file $header [$this templatePath]
  54.  
  55.     set classes [TextSection new]
  56.     set version [[[[$this section] document] editor] version]
  57.         set template [m4_path_name etc il${version}class.asc]
  58.     expand_file $classes $template
  59.  
  60.     # header and classes are positioned in title.con template
  61.  
  62.     set contents [TextSection new]
  63.         set template [m4_path_name etc il${version}title.asc]
  64.     expand_file $contents $template
  65.  
  66.     $contents write $titleFid
  67.     close $titleFid
  68. }
  69.  
  70. # Do not delete this line -- regeneration end marker
  71.  
  72.