home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 1999 April / APC443.iso / features / grpware / coldfus / coldfusi.exe / data1.cab / Examples / publish / viewmode / default.cfm
Encoding:
Text File  |  1998-10-08  |  1.6 KB  |  36 lines

  1. <!--- This is the default viewer for CF_ShowContent. --->
  2.  
  3. <!--- All object types' teasers look pretty much the
  4.     same... so we start with the same two items --->
  5. <CFOUTPUT><P>
  6. <DIV CLASS="HeadlineTeaser">#CurrObject.Headline#<BR></DIV>
  7. <DIV CLASS="TeaserTeaser">#CurrObject.Teaser#<BR></DIV>
  8.  
  9. <!--- Now we need to make a decision based on what kind 
  10.     of object we're dealing with. --->
  11.  
  12. <!--- If we're dealing with plain text... --->
  13. <CFIF CurrObject.ClassName IS 'News Item'>
  14.  
  15.     <DIV CLASS="LinkTeaser"><A HREF="viewfull.cfm?ObjectID=#CurrObject.ObjectID#">More Info</A></DIV>
  16.  
  17. <!--- If we're dealing with a binary object... --->
  18. <CFELSEIF CurrObject.ClassName IS 'File with Description'>
  19.  
  20.     <DIV CLASS="LinkTeaser"><A HREF="binarydata/#Replace(Replace(URLEncodedFormat(CurrObject.File),"%2E",".","ALL"),"+","%20","ALL")#">Download File</A></DIV>
  21.  
  22. <!--- If we're dealing with a hyperlink... --->
  23. <CFELSEIF CurrObject.ClassName IS 'Hyperlink'>
  24.  
  25.     <DIV CLASS="LinkTeaser"><A HREF="#CurrObject.HREF#">Go to page</A></DIV>
  26.  
  27. </CFIF>
  28.  
  29. <!--- If this page is being browsed in administrator
  30.     mode, little icons should be displayed which will
  31.     allow the user to edit/delete this object. --->
  32. <CFIF IsDefined("Cookie.PubAdminMode")>
  33.     <A HREF="admin/properties.cfm?ObjectID=#ObjectID#"><IMG SRC="open.gif" WIDTH=16 HEIGHT=14 BORDER=0 ALT="Open" ALIGN="TOP"></A> <A HREF="admin/deleteinstance.cfm?InstanceID=#InstanceID#" onClick="return confirm('This will delete this instance (the object will remain intact).\n\nSure you want to continue?')"><IMG SRC="delete.gif" WIDTH=15 HEIGHT=16 BORDER=0 ALT="Delete" ALIGN="TOP"></A>
  34. </CFIF>
  35.  
  36. </CFOUTPUT>