home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / WebObjectsDoc_HTML / DynamicElements / RepetitionEx1.wo / RepetitionEx1.wod < prev    next >
Encoding:
Text File  |  1996-03-08  |  470 b   |  15 lines

  1. // Navigation bar at top of page
  2. NAVLISTEXAMPLE: NavListExample {}; 
  3.  
  4. // Declares the example element
  5. COUNTRY: WORepetition {list=featuredTours; item=country};
  6. COUNTRYNAME: WOString {value=country.name};
  7. TOURS: WORepetition {list=country.tours; item=tour};
  8. ANCHOR: WOHyperlink {action=displayInfoForTour};
  9. ANCHORNAME: WOString {value=tour};
  10.  
  11.  
  12. // The component that lets you view the source code of the example
  13. SHOWSOURCE: CodeViewer {componentName = "RepetitionEx1"}; 
  14.  
  15.