<!--
   Copyright 2004 Gunn Software Ltd. http://www.gunnsoft.com.au/

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
 -->
<sites>

	<!-- where is the tapestry applicaiton running from, and where are the resources going to be saved to? -->
	<site url="http://localhost:8080/GunnSoft/site" dest="C:\website">
	
		<!-- static content suitible for direct copy from the file system -->
		<resource source="C:\sitesource\images" dest="images" excludes="CVS"/>	
		<resource source="C:\sitesource\css" dest="css" excludes="CVS"/>
		<resource source="C:\sitesource\scripts" dest="scripts" excludes="CVS"/>
		<resource source="C:\somewhereelse\TapestryPublisher" dest="/TapestryPublisher" excludes="CVS,.project,.classpath,.settings,*.class,*.jardesc"/>
		
		<!-- dynamic tapestry pages. these will be saved into their respective html files and links to them will be translated to the html version. -->
		<pages>
			<page name="Home" dest="/index.html"/>
			<page name="About" dest="/About.html"/>
			<page name="Services" dest="/Services.html"/>
			<page name="Products" dest="/Products.html"/>
			<page name="Contact" dest="/Contact.html"/>
			<page name="TapestryPublisher.Home" dest="/TapestryPublisher/index.html"/>
		</pages>
		
		<!-- the tapestry application references these relatively, i want to reference them virtually -->
		<pathTranslations>
			<path relative="scripts/" virtual="/scripts/"/>
			<path relative="css/" virtual="/css/"/>
			<path relative="images/" virtual="/images/"/>
		</pathTranslations>
	
	</site>
	
</sites>