root/trunk/website/sites.cfm @ 38

Revision 31, 4.6 kB (checked in by DanWilson, 15 years ago)

Adding new site on sites page for Jeff Gladnick

Line 
1<cfsilent>
2        <cfset page.title = "The Model-Glue Framework" />
3
4        <!--- Ray's hack to avoid a DB. Yes, this is the suck. --->
5        <cfset sites = queryNew("title,url,description")>
6        <cfsavecontent variable="data">
7challengewave.com@http://challengewave.com@ChallengeWave is a tool helping businesses reduce health care cost, worker compensation cost and keep employees engaged in their own health
8groups.adobe.com@http://groups.adobe.com@The Adobe Groups site is a worldwide user group management system built with ColdFusion 9, Model-Glue and ColdSpring
9cfsnippets.org@http://www.cfsnippets.org@This site is an online interface to a public SnipEx server for use with CFEclipse. Once you have registered and verified your account you will be able to upload your own code snippets that will be shared on our public server. By registering you will also be able to create your own custom server by subscribing only to the libraries that you are interested in. You don't have to register to use this service, you can simply plug the server URL listed here into CFEclipse to begin using the libraries and snippets hosted here.
10cfelipse.org@http://www.cfeclipse.org@The official site for CFEclipse development.
11Hobbs@http://www.hobbs.co.uk/@Leading UK Brand of women's fashion.
12mp3salad@http://www.mp3salad.com@A service that uses Google's search API to easily find, listen and download music.
13iRovr@http://www.irovr.com@iRovr is a unique social experience developed exclusively for the iPhone. Members can blog, share photos, bookmark urls and link to YouTube videos by sending emails to POP aliases created specifically for their account. With iRovr, you can broadcast your digital lifestyle without even having to log into the site in the device's browser. If you do not have access to an iPhone we suggest you visit using Safari 3 Beta for Mac and Windows to get the next best feeling for how the site looks and feels on the device.
14Colorado Way Of Life@http://www.coloradowayoflife.com@Colorado Way Of Life is a Google Maps mash-up that allows visitors to contribute to a public map of Colorado activities.
15Noriega Furniture@http://www.noriegafurniture.com@http://www.noriegafurniture.com is a fully functional shopping cart application with content management facility.
16Stavanger2008@http://www.stavanger2008.com@In 2008 Stavanger (norway) will be the European Capital of Culture. This is his official web site.
17Mainstreet Lender@http://www.msl.com/@Mainstreet Lender is a corporate website for a small business lender. Pretty basic website, but intended to be a foundation for more advanced features in the future. Built with ModelGlue 2 on CF7, SQL Server back end with some Spry and YUI sprinkled throughout.
18Ave Maria School of Law@http://www.avemarialaw.edu@Ann Arbor, MI Law School
19BPO Pros@http://bpoprosonline.com@MI based Realtor
20OrientXpress Jewels@http://www.orientxpressjewels.com/@Colored gemstones and jewelry.
21whichfranchise Australia@http://www.whichfranchise.net.au/@Franchise and Franchising Resources in Australia
22calozzio.com@http://www.calozzio.com/@l'Arte di Ricevere
23Great Dental Websites@http://www.greatdentalwebsites.com@A model-glue based application that allows Dentists to create and maintain their own fully featured dental websites.  We have lots of dentists using it, all run from the same model-glue application.  Facebook integration, twitter integration, etc,etc,etc.  It's a pretty mature app, and it was all possible due to the simplicity and beauty of model glue!
24        </cfsavecontent>
25        <cfset data = trim(data)>
26        <cfloop index="line" list="#data#" delimiters="#chr(13)##chr(10)#">
27                <cfset site = listFirst(line,"@")>
28                <cfset theurl = listGetAt(line,2,"@")>
29                <cfset desc = listLast(line,"@")>
30                <cfset queryAddRow(sites)>
31                <cfset querySetCell(sites, "title", site)>
32                <cfset querySetCell(sites, "url", theurl)>
33                <cfset querySetCell(sites, "description", desc)>
34        </cfloop>
35</cfsilent>
36
37<cfinclude template="include/dspHeader.cfm" />
38
39<div class="body">
40
41<h1>Model-Glue: Sites</h1>
42
43<p>
44Below is a list of sites using the Model-Glue framework. If you do not see your site listed below, please
45contact <a href="http://www.coldfusionjedi.com">Raymond Camden</a>.
46</p>
47
48<cfoutput query="sites">
49<div class="contentSection">
50        <h1><a href="#url#">#title# (#url#)</a></h1>
51        <p>
52        #description#
53        </p>
54</div>
55</cfoutput>
56
57<!---
58<div class="sectionNavigation">
59        <cfoutput>
60        [<a href="#application.downloads.mgcoldfusion.url#">Download</a>]
61        </cfoutput>
62        [<a href="http://docs.model-glue.com">Documentation</a>]
63        [<a href="http://trac.model-glue.com">Report Bugs</a>]
64        [<a href="http://svn.model-glue.com">Source Code (SVN)</a>]
65</div>
66--->
67
68
69</div>
70
71<cfinclude template="include/dspFooter.cfm" />
Note: See TracBrowser for help on using the browser.