-
Notifications
You must be signed in to change notification settings - Fork 4
/
systemService.cfc
35 lines (33 loc) · 999 Bytes
/
systemService.cfc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<cfcomponent>
<cffunction name="generateSiteMap" access="public" output="false" >
<cfset authors = EntityLoad('author' ) />
<cfset pages = EntityLoad('page' ) />
<cfset baseURL="http://www.learncfinaweek.com/" />
<cfsavecontent variable="xmlPage">
<cfoutput>
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.google.com/schemas/sitemap/0.90">
<url>
<loc>#baseURL#</loc>
<priority>0.5</priority>
</url>
<url>
<loc>#baseURL#contributors/</loc>
<priority>0.5</priority>
</url>
<url>
<loc>#baseURL#resources/</loc>
<priority>0.5</priority>
</url>
<cfloop array="#pages#" index="page">
<url>
<loc>#baseURL#week1/#page.getSEOURL()#/</loc>
<priority>0.5</priority>
</url>
</cfloop>
</urlset>
</cfoutput>
</cfsavecontent>
<cfset fileWrite(expandpath('/sitemap.xml'),trim(xmlPage)) />
</cffunction>
</cfcomponent>