root/trunk/website/forums/admin/stats.cfm @ 5

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

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

RevLine 
[5]1<cfsetting enablecfoutputonly=true>
2<!---
3        Name         : stats.cfm
4        Author       : Raymond Camden
5        Created      : July 5, 2004
6        Last Updated : August 30, 2005
7        History      : Removed mappings, abstracted stats (rkc 8/27/05)
8                                   Moved out charts for BD (rkc 8/30/05)
9        Purpose          :
10--->
11
12<cfset charts = true>
13<cfif server.coldfusion.productname is "BlueDragon">
14        <cfset charts = false>
15</cfif>
16
17<cfmodule template="../tags/layout.cfm" templatename="admin" title="Galleon Stats">
18
19<cfinclude template="gen_stats.cfm">
20
21<cfif charts>
22        <cfinclude template="stats_charts.cfm">
23<cfelse>
24        <cfoutput>
25        Sorry, CFCHART is not available in BlueDragon.
26        </cfoutput>
27</cfif>
28
29</cfmodule>
30
31<cfsetting enablecfoutputonly=false>
Note: See TracBrowser for help on using the browser.