Annotation of pettastic/html/ss1/flashgallery.html, revision 1.1

1.1     ! nick        1: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
        !             2: <!--
        !             3: Developed by Reality Software | www.realitysoftware.ca
        !             4: Released by Flash Gallery | www.flash-gallery.org
        !             5: Note: This is a free application distributed under the Creative Commons Attribution 3.0 license,
        !             6: which means you can use it in any way you want provided you keep our links intact.
        !             7: Don't want our links in the script? You can support this project by purchasing a paid
        !             8: version: www.flash-gallery.org/buy.html
        !             9: -->
        !            10: <html xmlns="http://www.w3.org/1999/xhtml">
        !            11: <head>
        !            12: <style type="text/css">
        !            13: body {background-color:#DDDDDD;}
        !            14: </style>
        !            15: <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
        !            16: <title>Flash Gallery</title>
        !            17: 
        !            18: <!-- Location of javascript. -->
        !            19: <script language="javascript" type="text/javascript" src="swfobject.js" ></script>
        !            20: 
        !            21: </head>
        !            22: 
        !            23: <body>
        !            24: 
        !            25: <!-- Div that contains gallery. -->
        !            26: <div id="gallery">
        !            27: <h1>No flash player!</h1>
        !            28: <p>It looks like you don't have flash player installed. <a href="http://www.macromedia.com/go/getflashplayer" >Click here</a> to go to Macromedia download page.</p>
        !            29: </div>
        !            30: 
        !            31: <!-- Script that embeds gallery. -->
        !            32: <script language="javascript" type="text/javascript">
        !            33: var so = new SWFObject("flashgallery.swf", "gallery", "800", "600", "8"); // Location of SWF file. You can change gallery width and height here (using pixels or percents).
        !            34: so.addParam("quality", "high");
        !            35: so.addParam("allowFullScreen", "true");
        !            36: so.addParam("wmode", "transparent");
        !            37: so.addVariable("content_path","img"); // Location of a folder with JPG and PNG files (relative to php script).
        !            38: so.addVariable("color_path","default.xml"); // Location of XML file with settings.
        !            39: so.addVariable("script_path","flashgallery.php"); // Location of PHP script.
        !            40: so.write("gallery");
        !            41: </script>
        !            42: 
        !            43: <br/>
        !            44: 
        !            45: <!-- 
        !            46: Please place this link anywhere on the page that uses Flash Gallery.
        !            47: You can style it anyway you want, but do not change or delete it.
        !            48: Read the license! Thanks. :-)
        !            49: -->
        !            50: Powered by <a href="http://www.flash-gallery.org">Flash Gallery</a>
        !            51: 
        !            52: </body>
        !            53: </html>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>