root/trunk/website/index.cfm @ 47

Revision 46, 4.8 kB (checked in by danwilson, 13 years ago)

Updating site with extra files

Line 
1<cfsilent>
2        <cfset page.title = "The Model-Glue Framework" />
3        <cfset Subdomain = listFirst( CGI.HTTP_HOST, ".") />
4</cfsilent>
5
6<cfinclude template="include/dspHeader.cfm" />
7
8<div class="body">
9
10<h1>Model-Glue</h1>
11<cfif Subdomain IS "docs" OR Subdomain IS "bugs">
12<h2>Note:</h2>
13<h4 style="background-color: #ff9999; padding: 3em 1em">In keeping up with the times, we've moved the <a href="http://github.com/modelglue">documentation and the bug tracker over to GitHub</a>. Please update your bookmarks.</h4>
14<hr>
15</cfif>
16<p>
17        The Model-Glue family of frameworks support Web application developers by making the construction of Object-Oriented Web and Rich Internet Applications a straightforward process.
18</p>
19<p>
20        Through a simple implementation of Implicit Invocation and Model-View-Controller, they allow applications to be well organized without sacrificing flexibility.
21</p>
22<p>
23        For a short list of web sites running Model-Glue, please visit our <a href="sites.cfm">sites</a> page.
24        Contact <a href="http://www.coldfusionjedi.com/">Raymond Camden</a> to have your site added to the list.
25</p>
26
27<div class="contentSection">
28        <div class="contentIcon"><a href="/coldfusion.cfm"><img src="/images/mgTabletColdFusion.gif" /></a></div>
29        <h1><a href="/coldfusion.cfm">Model-Glue: ColdFusion</a></h1>
30        <cfoutput>
31        <h4>Currently Available Version: #application.downloads.mgcoldfusion3.version# - <a href="#application.downloads.mgcoldfusion3.url#">Download</a> <a href="/coldfusion.cfm">Learn More</a></h4>
32        <h4>Available Now:  #application.downloads.mgcoldfusion3beta.title# #application.downloads.mgcoldfusion3beta.version# - <a href="#application.downloads.mgcoldfusion3beta.url#">Download</a></h4>
33        </cfoutput>
34        <p>
35                Model-Glue: ColdFusion is designed to make it easier to use object-oriented models to create HTML-based applications.
36        </p>
37        <p>
38                It enforces Model-View-Controller design, eases implicit invocation, does repetitive work for you, and plays well with other open-source ColdFusion frameworks.
39        </p>
40        <p>
41                <strong>New:</strong> <a href="/wallpaper.cfm">Download Model-Glue wallpaper</a>
42        </p>
43</div>
44<div class="contentSection">
45        <h2><strong>Web Based Training for Model-Glue 3.1</h2>
46        <p>
47        <a href="training.cfm">Free self-paced training course</a></strong> is newly available!</a>
48        </p>
49</div>
50<div class="contentSection">
51        <h2>Model-Glue is:</h2>
52       
53        <ol>
54        <li>Unobtrusive.  <p>It's designed to be easy to use, letting you focus on business problems and user interface, not framework hoops.</p></li>
55       
56        <li>Enabling.  <p>It builds on ColdFusion as a productivity tool for writing Web applications.</p></li>
57       
58        <li>Strong but Simple.  <p>Model-Glue is based on Model View Controller and Implicit Invocation - but not at all complicated.</p></li>
59       
60        <li>Open.  <p>All code is released under the Apache Software License 2.0, meaning that it's free to download, use, and alter.</p></li>
61       
62        <li>Compatible.  <p>Model-Glue is lightweight enough to play well with others: it works with Model frameworks like Tartan and ColdSpring as well as Object/Relational Mapping frameworks like Reactor and Transfer.</p></li>
63       
64        </ol>
65       
66        <h2>What People Say About Model-Glue:</h2>
67        <br />
68        <em>Model-Glue is the best thing for ColdFusion since the cfquery tag. It relieves me of worrying about application organization and lets me focus on what matters - the business requirements of the application.</em>
69        <div class="contentNote">Raymond Camden, VP of Technology for roundpeg</div>
70       
71        <br />
72        <em>Model-Glue:Unity, by helping to eliminate a lot of tedious and redundant tasks, has allowed me to code more efficiently than I ever could have imagined.</em>
73        <div class="contentNote">Scott Stroz, Senior Web Developer, AboutWeb, LLC</div>
74        <br />
75        <em>Model-Glue has enabled me to quit building infrastructure and start solving my clients' problems. I Sniff The Glue!</em>
76        <div class="contentNote">Jared Rypka-Hauer, Adobe Community Experts</div>
77        <br />
78       
79        <em>Model-Glue is more gooder!</em>
80        <div class="contentNote">Anonymously yelled at CFUnited 2005</div>
81</div>
82
83<!---<div class="contentSection">
84        <div class="contentIcon"><a href="/flex.cfm"><img src="/images/mgTabletFlex.gif" /></a></div>
85        <h1><a href="/flex.cfm">Model-Glue: Flex</a></h1>
86        <cfoutput>
87        <span class="contentNote">Currently Available Version: #application.downloads.mgflex.version# - <a href="#application.downloads.mgflex.url#">Download</a> <a href="/flex.cfm">Learn More</a></span>
88        </cfoutput>
89        <p>
90                Model-Glue: Flex brings implicit invocation, Model-View-Controller design, and cleaner, less repetitive integration with backend services to Flex 2.0 and AIR applications.
91        </p>
92        <p>
93                It shuns repetitive, boilerplate code in favor of helper classes and expressive APIs.
94        </p>
95</div>--->
96
97</div>
98
99<cfinclude template="include/dspFooter.cfm" />
Note: See TracBrowser for help on using the browser.