root/trunk/website/include/dspHeader.cfm @ 8

Revision 8, 4.7 kB (checked in by DanWilson, 16 years ago)

Last updates from the model-glue.com before we try to move it

RevLine 
[5]1<cfsilent>
2
3<cfset application.downloads = structNew() />
[8]4<cfset application.downloads.mgcoldfusion2 = structNew() />
5<cfset application.downloads.mgcoldfusion2.title = "Model-Glue: ColdFusion" />
6<cfset application.downloads.mgcoldfusion2.version = "2.0.304" />
7<cfset application.downloads.mgcoldfusion2.url = "http://www.model-glue.com/downloads/Model-Glue_Unity_Final.zip" />
[5]8
[8]9<cfset application.downloads.mgcoldfusion3 = structNew() />
10<cfset application.downloads.mgcoldfusion3.title = "Model-Glue: 3.1" />
11<cfset application.downloads.mgcoldfusion3.version = "3.1.185" />
12<cfset application.downloads.mgcoldfusion3.url = "http://www.model-glue.com/downloads/ModelGlue_3.1.185.zip" />
[5]13
14<cfset application.downloads.mgflex = structNew() />
15<cfset application.downloads.mgflex.title = "Model-Glue: Flex" />
16<cfset application.downloads.mgflex.version = "Alpha 1" />
17<cfset application.downloads.mgflex.url = "http://www.model-glue.com/downloads/modelglueflex_0.0.zip" />
18       
19<cfinclude template="incDetermineMode.cfm" />
20
21</cfsilent><cfoutput>
22<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
23<html>
24<head>
25        <cfif request.mashed.mode eq "blog">
26                <title>#htmlEditFormat(application.blog.getProperty("blogTitle"))##additionalTitle#</title>
27        <cfelseif request.mashed.mode eq "galleon">
28                <title>#attributes.title#</title>
29        <cfelse>
30                <title>The Model-Glue Framework</title>
31        </cfif>
32       
33        <!--- RBB 6/23/05: Push crawlers to follow links, but only index content on individual entry pages --->
34        <cfif isDefined("url.mode") and url.mode is "entry">
35        <!--- index entry page --->
36        <meta name="robots" content="index,follow" />
37        <cfelse>
38        <!--- don't index other pages --->
39        <meta name="robots" content="noindex,follow" />   
40        </cfif>
41
42        <cfif request.mashed.mode eq "blog">
43                <meta name="title" content="#application.blog.getProperty("blogTitle")##additionalTitle#" />
44                <meta content="text/html; charset=UTF-8" http-equiv="content-type" />
45                <meta name="description" content="#application.blog.getProperty("blogDescription")##additionalTitle#" />
46                <meta name="keywords" content="#application.blog.getProperty("blogKeywords")#" />
47        </cfif>
48       
49        <link rel="stylesheet" href="#request.mashed.css#/style.css" type="text/css" />
50        <link rel="stylesheet" href="#request.mashed.css#/modelglue.css" type="text/css" />
51
52        <script type="text/javascript" src="#request.mashed.js#/sm-iepng.js" defer="defer" charset="ISO-8859-1"></script>
53       
54        <!--- For Firefox --->
55        <cfif request.mashed.mode eq "blog">
56                <link rel="alternate" type="application/rss+xml" title="RSS" href="#application.rooturl#/rss.cfm?mode=full" />
57       
58                <script type="text/javascript">
59                function launchComment(id) {
60                        cWin = window.open("#application.rooturl#/addcomment.cfm?id="+id,"cWin","width=550,height=700,menubar=yes,personalbar=no,dependent=true,directories=no,status=yes,toolbar=no,scrollbars=yes,resizable=yes");
61                }
62                function launchTrackback(id) {
63                        cWin = window.open("#application.rooturl#/trackbacks.cfm?id="+id,"cWin","width=550,height=500,menubar=yes,personalbar=no,dependent=true,directories=no,status=yes,toolbar=no,scrollbars=yes,resizable=yes");
64                }
65                </script>
66        </cfif>
67       
68        <cfif request.mashed.mode eq "galleon">
69        <cfif isDefined("request.conference")>
70    <link rel="alternate" type="application/rss+xml" title="#request.conference.name# RSS" href="#application.galleon.settings.rooturl#rss.cfm?conferenceid=#request.conference.id#">
71    </cfif>
72        </cfif>
73</head>
74
75<body onload="if(top != self) top.location.replace(self.location.href);">
76
77<div id="page">
78
79        <div id="top">
80                <h2><a href="" title="Home" alt="Home"><img src="/images/mgLogoTrans.png" sm:iepng="true" /></a></h2>
81
82                <div id="navMenu">
83                        <ul>
84                        <li><a href="/" class="current">home</a></li>
85                        <li><a href="/coldfusion.cfm">coldfusion</a></li>
86                        <li><a href="/flex.cfm">flex</a></li>
87                        <li><a href="/blog">blog</a></li>
88                        <li><a href="http://groups.google.com/group/model-glue">google group</a></li>
89                        <li><a href="/forums">forums</a></li>
90                        <!---
91                        <li><a href="http://docs.model-glue.com">documentation</a></li>
92                        <li><a href="http://trac.model-glue.com">bugs</a></li>
93                        --->
94                        </ul>
95                </div>
96        </div>
97               
98        <div id="content">
99       
100       
101                <div id="blogText">
102<!---
103                <div style="border:2px Solid ##999;background:##EAEAEA;padding:5px;margin-bottom:10px">
104<span style="color:##F00;font-weight:bold;font-size:16px">Help Joe Fight Multiple Sclerosis!</span>
105<br /><div style="margin-top:5px"><a href="http://www.nationalmssociety.org/site/TR?px=3903375&pg=personal&fr_id=5520">Sponsor Joe Rinehart as he rides a bike 200 miles in two days in the 2007 MS150 bike ride.</a></div>
106</div>
107--->
108</cfoutput>     
Note: See TracBrowser for help on using the browser.