root/trunk/website/sites.cfm @ 8

Revision 5, 3.8 kB (checked in by DanWilson, 17 years ago)

Initial Commit Of ModelGlue? Website (upgrade to blogcfc 511)

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">
7cfsnippets.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.
8cfelipse.org@http://www.cfeclipse.org@The official site for CFEclipse development.
9Hobbs@http://www.hobbs.co.uk/@Leading UK Brand of women's fashion.
10mp3salad@http://www.mp3salad.com@A service that uses Google's search API to easily find, listen and download music.
11iRovr@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.
12Colorado 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.
13Noriega Furniture@http://www.noriegafurniture.com@http://www.noriegafurniture.com is a fully functional shopping cart application with content management facility.
14Stavanger2008@http://www.stavanger2008.com@In 2008 Stavanger (norway) will be the European Capital of Culture. This is his official web site.
15Mainstreet 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.
16Ave Maria School of Law@http://www.avemarialaw.edu@Ann Arbor, MI Law School
17BPO Pros@http://bpoprosonline.com@MI based Realtor
18OrientXpress Jewels@http://www.orientxpressjewels.com/@Colored gemstones and jewelry.
19whichfranchise Australia@http://www.whichfranchise.net.au/@Franchise and Franchising Resources in Australia
20        </cfsavecontent>
21        <cfset data = trim(data)>
22        <cfloop index="line" list="#data#" delimiters="#chr(13)##chr(10)#">
23                <cfset site = listFirst(line,"@")>
24                <cfset theurl = listGetAt(line,2,"@")>
25                <cfset desc = listLast(line,"@")>
26                <cfset queryAddRow(sites)>
27                <cfset querySetCell(sites, "title", site)>
28                <cfset querySetCell(sites, "url", theurl)>
29                <cfset querySetCell(sites, "description", desc)>
30        </cfloop>
31</cfsilent>
32
33<cfinclude template="include/dspHeader.cfm" />
34
35<div class="body">
36
37<h1>Model-Glue: Sites</h1>
38
39<p>
40Below is a list of sites using the Model-Glue framework. If you do not see your site listed below, please
41contact <a href="http://www.coldfusionjedi.com">Raymond Camden</a>.
42</p>
43
44<cfoutput query="sites">
45<div class="contentSection">
46        <h1><a href="#url#">#title# (#url#)</a></h1>
47        <p>
48        #description#
49        </p>
50</div>
51</cfoutput>
52
53<!---
54<div class="sectionNavigation">
55        <cfoutput>
56        [<a href="#application.downloads.mgcoldfusion.url#">Download</a>]
57        </cfoutput>
58        [<a href="http://docs.model-glue.com">Documentation</a>]
59        [<a href="http://trac.model-glue.com">Report Bugs</a>]
60        [<a href="http://svn.model-glue.com">Source Code (SVN)</a>]
61</div>
62--->
63
64
65</div>
66
67<cfinclude template="include/dspFooter.cfm" />
Note: See TracBrowser for help on using the browser.