Changeset 8 for trunk

Show
Ignore:
Timestamp:
10/20/09 15:22:04 (16 years ago)
Author:
DanWilson
Message:

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

Location:
trunk/website
Files:
5 added
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/website/coldfusion.cfm

    r5 r8  
    1010 
    1111<div class="contentSection"> 
    12         <h1><strong><cfoutput>#application.downloads.mgcoldfusionbeta.title#</cfoutput></strong></h1> 
     12        <h1><strong><cfoutput>#application.downloads.mgcoldfusion3.title#</cfoutput></strong> is the best available version</h1> 
    1313</div><br /> 
    1414<div class="sectionNavigation"> 
    1515        <cfoutput> 
    16         [<a href="#application.downloads.mgcoldfusionbeta.url#">Download</a>] 
    17         [<a href="http://trac.model-glue.com">Report Bugs</a>] 
     16        [<a href="#application.downloads.mgcoldfusion3.url#">Download</a>] 
     17        [<a href="http://bugs.model-glue.com">Report Bugs</a>] 
    1818        [<a href="http://svn.model-glue.com">Source Code (SVN)</a>] 
    1919        </cfoutput> 
     
    2424        <div class="contentIcon"><img src="/images/mgTabletColdFusion.gif" /></div> 
    2525        <cfoutput> 
    26         <span class="contentNote">RC 1 Now Available!!!: - <a href="#application.downloads.mgcoldfusionbeta.url#">>Download</a></span> 
     26        <span class="contentNote">Model-Glue: <strong>"Gesture" Release</strong> (version #application.downloads.mgcoldfusion3.version#): <a href="#application.downloads.mgcoldfusion3.url#">Download</a></span> 
    2727        </cfoutput> 
    2828        <p> 
    29                 Model-Glue 3, code named "Gesture," is a return to Model-Glue's roots of dead-simple MVC+II development. 
     29                Model-Glue 3, code named "Gesture," is a return to Model-Glue's roots of dead-simple MVC+II development. The version 3.0 series is the most up to date, actively developed version of Model-Glue. 
    3030        </p> 
    3131        <p> 
    32                 The first Release Candidate is pretty well <a href="http://docs.model-glue.com">documented</a> , and largely ready for public consumption. There could be a last lingering bug or two, but we'll get those fixed up as soon as they are reported. 
    33         </p> 
     32                The MG 3.1 release continues the hard hitting, high productivity nature of Model-Glue.  Get yer 'Glue on with 3.1!</p> 
    3433</div> 
    3534<div class="contentSection"> 
    36         <h1>Model-Glue: <strong>"Unity" Release</strong></h1> 
     35        <h2>[Archive] Model-Glue: <strong>"Unity" Release</strong></h2> 
    3736</div><br /> 
    3837<div class="sectionNavigation"> 
    3938        <cfoutput> 
    40         [<a href="#application.downloads.mgcoldfusion.url#">Download</a>] 
     39        [<a href="#application.downloads.mgcoldfusion2.url#">Download</a>] 
    4140        </cfoutput> 
    4241        [<a href="http://docs.model-glue.com">Documentation</a>] 
     
    4847        <div class="contentIcon"><img src="/images/mgTabletColdFusion.gif" /></div> 
    4948        <cfoutput> 
    50         <span class="contentNote">Currently Available Version: #application.downloads.mgcoldfusion.version# - <a href="#application.downloads.mgcoldfusion.url#">Download</a></span> 
    51         </cfoutput> 
     49        <span class="contentNote">Last Updated Version: #application.downloads.mgcoldfusion2.version# - <a href="#application.downloads.mgcoldfusion2.url#">Download</a></span> 
    5250        <p> 
    53                 Model-Glue: ColdFusion is designed to make it easier to use object-oriented models to create HTML-based applications. 
     51                Model-Glue: ColdFusion is designed to make it easier to use object-oriented models to create HTML-based applications. The version 2 family is here for archive purposes only. For active development, <a href="#application.downloads.mgcoldfusion3.url#">download version 3</a>. 
    5452        </p> 
    5553        <p> 
    5654                It enforces Model-View-Controller design, eases implicit invocation, does repetitive work for you, and plays well with other open-source ColdFusion frameworks. 
    5755        </p> 
     56        </cfoutput> 
    5857</div> 
    5958<div class="contentSection"> 
  • trunk/website/include/dspHeader.cfm

    r5 r8  
    22 
    33<cfset application.downloads = structNew() /> 
    4 <cfset application.downloads.mgcoldfusion = structNew() /> 
    5 <cfset application.downloads.mgcoldfusion.title = "Model-Glue: ColdFusion" /> 
    6 <cfset application.downloads.mgcoldfusion.version = "2.0.304" /> 
    7 <cfset application.downloads.mgcoldfusion.url = "http://www.model-glue.com/downloads/Model-Glue_Unity_Final.zip" /> 
     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" /> 
    88 
    9 <cfset application.downloads.mgcoldfusionbeta = structNew() /> 
    10 <cfset application.downloads.mgcoldfusionbeta.title = "Model-Glue: Gesture RC1" /> 
    11 <cfset application.downloads.mgcoldfusionbeta.version = "3.0.164" /> 
    12 <cfset application.downloads.mgcoldfusionbeta.url = "http://www.model-glue.com/downloads/ModelGlue_3.0.164.RC1.zip" /> 
     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" /> 
    1313 
    1414<cfset application.downloads.mgflex = structNew() /> 
  • trunk/website/index.cfm

    r5 r8  
    2424        <h1><a href="/coldfusion.cfm">Model-Glue: ColdFusion</a></h1> 
    2525        <cfoutput> 
    26         <span class="contentNote">Currently Available Version: #application.downloads.mgcoldfusion.version# - <a href="#application.downloads.mgcoldfusion.url#">Download</a> <a href="/coldfusion.cfm">Learn More</a></span> 
    27         <br /><span class="contentNote">#application.downloads.mgcoldfusionbeta.title# - <a href="#application.downloads.mgcoldfusionbeta.url#">>Download</a> <a href="/coldfusion.cfm">Learn More</a></span> 
     26        <span class="contentNote">Currently Available Version: #application.downloads.mgcoldfusion3.version# - <a href="#application.downloads.mgcoldfusion3.url#">Download</a> <a href="/coldfusion.cfm">Learn More</a></span> 
    2827        </cfoutput> 
    2928        <p>