<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="Untitled6.xslt"?>

<!-- This file is part of a XML Photo Gallery, conformed to a xml schema. A XSLT stylesheet transforms the XML files into a HTML document, CSS/JavaScript files are aimed at displaying in a web browser adding design and functionality.
-->

<!--
Gallery xml document written by Ricardo Cedeño Montaña 2007/2008 Bremen Germany 
Inspired on Philip Guo's Photo gallery.
Last update 05.2008: new document model to simplify the structure.
Document model in XML using XML Schema -->

<!--  You can use, transform and distribute this file for it is free. Release under GNU license -->

<!--  http://pktweb.com, http://drnn1076.pktweb.com -->

<images xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="gallerydrnn.xsd">
	<galleryFolder folder="myFolder"/>
	<galleryName>myGalleryName </galleryName>
		<!-- For each picture you want to show in your gallery should be a <image>... -->
	<image>
		<name>File name(.jpg, .gif, .png)</name>
		<dimensions width="000" height="000"/>
		<date>2008-06-27</date>
		<title>A Title</title>
		<description>a description what you want to say about your picture</description>
	</image>
	
</images>
