home *** CD-ROM | disk | FTP | other *** search
/ World Wide Web Designer's Toolkit / WWW.ISO / progs / searrt / samp0003.txt < prev    next >
Text File  |  1995-12-28  |  2KB  |  141 lines

  1. // This files sets the value of variables which change how
  2. // pages are outputted.
  3.  
  4. VariableFileTitle:  Single Picture Per Row Table
  5.  
  6. VariableFileDescription:
  7. This layout causes each picture to occupy its own row
  8. in a table.  The table has multiple columns, that include
  9. the in-line image, the anchor file name, the file size,
  10. the name of the person in the photo, and a description of
  11. the photo.
  12.  
  13.  
  14. PageHeadTemplate:
  15. <TITLE>${PageTitle}</TITLE>
  16. <H1 ALIGN=CENTER>${PageLabel}</H1>
  17. <P>
  18. ${PageIntro}
  19. <P>
  20. <HR>
  21.  
  22.  
  23. PageIntro:
  24. Click on an image or highlighted text to follow a link.
  25.  
  26.  
  27. PageTitle:
  28. ${PageFullDOSFileName}
  29.  
  30.  
  31. PageLabel:
  32. ${PageFullDOSFileName}
  33.  
  34.  
  35. BodyTag:
  36. <BODY>
  37.  
  38.  
  39. PageBodyTemplate:
  40. ${BodyTag}
  41.  
  42.  
  43. //The value of ActualReturnLabel is set to PossibleReturnLabel
  44. //if and only if the page has a parent page, otherwise it's blank
  45. PageEndTemplate:
  46. ${ActualReturnLabel}
  47. <P>
  48. The the total size of files to download is ${TotalFileSizeInK}K.
  49. <P>
  50. <ADDRESS>${PageTitle}/${PersonFullName}/${EMailAddress}</ADDRESS>
  51. <P>
  52. </BODY>
  53.  
  54.  
  55. FileLeaderTemplate:
  56. <TABLE BORDER>
  57. <CAPTION>
  58. Picture File List
  59. </CAPTION>
  60. <TR>
  61.   <TH>Image
  62.   <TD>File
  63.   <TD>Size
  64.   <TD>Name
  65.   <TD>Description
  66. </TR>
  67.  
  68.  
  69. FileEntryTemplate:
  70. <TR>
  71.   <TH>
  72.     <A HREF="${AnchorFileName}">
  73.       ${ImageTag}
  74.     </A>
  75.   <TD>
  76.     <A HREF="${AnchorFileName}">
  77.       ${AnchorFileName}
  78.     </A>
  79.   <TD>
  80.     ${FileSizeInK}K
  81.   <TD>
  82.     ${ImageSubjectName}
  83.   <TD>
  84.     ${ImageDescription}
  85. </TR>
  86.  
  87.  
  88. FileTrailerTemplate:
  89. </TABLE>
  90.  
  91.  
  92. DirLeaderTemplate:
  93. <TABLE BORDER>
  94. <CAPTION>
  95. Page List
  96. </CAPTION>
  97. <TR>
  98.   <TH>Sample
  99.   <TD>Page Name
  100.   <TD>Size
  101. </TR>
  102.  
  103.  
  104. DirEntryTemplate:
  105. <TR>
  106.   <TH>
  107.     <A HREF="${AnchorFileName}">
  108.       ${ImageTag}
  109.     </A>
  110.   <TD>
  111.     <A HREF="${AnchorFileName}">
  112.       ${PageLabel}
  113.     </A>
  114.   <TD>
  115.     ${TotalFileSizeInK}K
  116. </TR>
  117.  
  118.  
  119. DirTrailerTemplate:
  120. </TABLE>
  121.  
  122.  
  123. //Note=> ParentPageLabel is expanded using the variables of the parent
  124. //       page not the page it's value appears in.
  125. ParentPageLabel:  ${PageLabel}
  126.  
  127. //The following appears at the end of a child page.
  128. //If the page has no parent this label does not appear.
  129. PossibleReturnLabel:
  130. <P><A HREF="${ParentPageAnchor}">Return to ${ParentPageLabel}</A>
  131.  
  132.  
  133. ImageTag:
  134. <IMG SRC="${ImageFileName}" WIDTH="${DisplayWidth}" HEIGHT="${DisplayHeight}">
  135.  
  136.  
  137. // The following field(s) are entirely optional
  138.  
  139. ImagePersonName:  N/A
  140. Description:  N/A
  141.