File: frames-txt.html

package info (click to toggle)
htmlgen 2.2.2-12.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,840 kB
  • ctags: 1,480
  • sloc: python: 4,518; makefile: 93
file content (22 lines) | stat: -rw-r--r-- 965 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

<h3>DESIGN</h3>

      <P>An individual web page can be broken up into multiple panes
      called frames. The definition of this subdivision is done by the
      FRAMESET element and thus the Frameset class. A simple document
      file is used to contain the Frameset and it's contents. HTMLgen
      provides the FramesetDocument class for this purpose. The
      characteristics of each frame are specified in the FRAME
      element. Typically the frame just points to a source file for
      it's display contents. Each frame has a name declared by which
      it may be refered to by other Href tags using a target
      attribute.

      <P>The resulting heirarchy looks like this:
      <UL><LI>FramesetDocument object contains one
          <UL><LI>Frameset object which contains two or more 
              <UL><LI>Frame objects each pointing to an HTML file.
                <LI>or other Frameset objects
              </UL>
          </UL>
      </UL>