You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@forrest.apache.org by cr...@apache.org on 2004/03/11 07:46:42 UTC

svn commit: rev 9350 - in xml/forrest/trunk: scratchpad/forrestbot2/core scratchpad/forrestbot2/webapp scratchpad/forrestbot2/webapp/src/webapp/WEB-INF src/core/context/resources/stylesheets src/core/context/skins/common/xslt/html src/core/fresh-site tools/dtdconverters

Author: crossley
Date: Wed Mar 10 22:46:41 2004
New Revision: 9350

Modified:
   xml/forrest/trunk/scratchpad/forrestbot2/core/build.xml
   xml/forrest/trunk/scratchpad/forrestbot2/core/deploy.xml
   xml/forrest/trunk/scratchpad/forrestbot2/core/getsrc.xml
   xml/forrest/trunk/scratchpad/forrestbot2/core/notify.xml
   xml/forrest/trunk/scratchpad/forrestbot2/webapp/maven.xml
   xml/forrest/trunk/scratchpad/forrestbot2/webapp/src/webapp/WEB-INF/struts-tiles.xml
   xml/forrest/trunk/src/core/context/resources/stylesheets/dtdx2flat.xsl
   xml/forrest/trunk/src/core/context/skins/common/xslt/html/pathutils.xsl
   xml/forrest/trunk/src/core/context/skins/common/xslt/html/split.xsl
   xml/forrest/trunk/src/core/fresh-site/forrest-targets.xml
   xml/forrest/trunk/tools/dtdconverters/dtdx2dtd.xsl
Log:
Add missing xml declarations.


Modified: xml/forrest/trunk/scratchpad/forrestbot2/core/build.xml
==============================================================================
--- xml/forrest/trunk/scratchpad/forrestbot2/core/build.xml	(original)
+++ xml/forrest/trunk/scratchpad/forrestbot2/core/build.xml	Wed Mar 10 22:46:41 2004
@@ -1,3 +1,4 @@
+<?xml version="1.0"?>
 <project name="build">
 
   <property name="build.work-dir"         location="work/${ant.project.name}"/>

Modified: xml/forrest/trunk/scratchpad/forrestbot2/core/deploy.xml
==============================================================================
--- xml/forrest/trunk/scratchpad/forrestbot2/core/deploy.xml	(original)
+++ xml/forrest/trunk/scratchpad/forrestbot2/core/deploy.xml	Wed Mar 10 22:46:41 2004
@@ -1,3 +1,4 @@
+<?xml version="1.0"?>
 <project name="deploy">
 
   <property name="deploy.local.dir" location="sites/${ant.project.name}"/>

Modified: xml/forrest/trunk/scratchpad/forrestbot2/core/getsrc.xml
==============================================================================
--- xml/forrest/trunk/scratchpad/forrestbot2/core/getsrc.xml	(original)
+++ xml/forrest/trunk/scratchpad/forrestbot2/core/getsrc.xml	Wed Mar 10 22:46:41 2004
@@ -1,3 +1,4 @@
+<?xml version="1.0"?>
 <project name="getsrc">
 
   <!-- default values -->

Modified: xml/forrest/trunk/scratchpad/forrestbot2/core/notify.xml
==============================================================================
--- xml/forrest/trunk/scratchpad/forrestbot2/core/notify.xml	(original)
+++ xml/forrest/trunk/scratchpad/forrestbot2/core/notify.xml	Wed Mar 10 22:46:41 2004
@@ -1,3 +1,4 @@
+<?xml version="1.0"?>
 <project name="notify">
 
   <!-- default values -->

Modified: xml/forrest/trunk/scratchpad/forrestbot2/webapp/maven.xml
==============================================================================
--- xml/forrest/trunk/scratchpad/forrestbot2/webapp/maven.xml	(original)
+++ xml/forrest/trunk/scratchpad/forrestbot2/webapp/maven.xml	Wed Mar 10 22:46:41 2004
@@ -1,6 +1,7 @@
+<?xml version="1.0"?>
 <project
   default="war"
   xmlns:j="jelly:core"
   xmlns:u="jelly:util">
 
-</project>
\ No newline at end of file
+</project>

Modified: xml/forrest/trunk/scratchpad/forrestbot2/webapp/src/webapp/WEB-INF/struts-tiles.xml
==============================================================================
--- xml/forrest/trunk/scratchpad/forrestbot2/webapp/src/webapp/WEB-INF/struts-tiles.xml	(original)
+++ xml/forrest/trunk/scratchpad/forrestbot2/webapp/src/webapp/WEB-INF/struts-tiles.xml	Wed Mar 10 22:46:41 2004
@@ -1,3 +1,4 @@
+<?xml version="1.0"?>
 <!DOCTYPE tiles-definitions PUBLIC "-//Apache Software Foundation//DTD Tiles Configuration//EN" "http://jakarta.apache.org/struts/dtds/tiles-config.dtd">
 <tiles-definitions>
     <definition name="summary" path="/common/layout.jsp">

Modified: xml/forrest/trunk/src/core/context/resources/stylesheets/dtdx2flat.xsl
==============================================================================
--- xml/forrest/trunk/src/core/context/resources/stylesheets/dtdx2flat.xsl	(original)
+++ xml/forrest/trunk/src/core/context/resources/stylesheets/dtdx2flat.xsl	Wed Mar 10 22:46:41 2004
@@ -1,3 +1,4 @@
+<?xml version="1.0"?>
 <xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform' version='1.0'>
 
  <xsl:template match='/'>

Modified: xml/forrest/trunk/src/core/context/skins/common/xslt/html/pathutils.xsl
==============================================================================
--- xml/forrest/trunk/src/core/context/skins/common/xslt/html/pathutils.xsl	(original)
+++ xml/forrest/trunk/src/core/context/skins/common/xslt/html/pathutils.xsl	Wed Mar 10 22:46:41 2004
@@ -1,3 +1,4 @@
+<?xml version="1.0"?>
 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <!--
 PathUtils.xsl

Modified: xml/forrest/trunk/src/core/context/skins/common/xslt/html/split.xsl
==============================================================================
--- xml/forrest/trunk/src/core/context/skins/common/xslt/html/split.xsl	(original)
+++ xml/forrest/trunk/src/core/context/skins/common/xslt/html/split.xsl	Wed Mar 10 22:46:41 2004
@@ -1,3 +1,4 @@
+<?xml version="1.0"?>
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 
 <!--

Modified: xml/forrest/trunk/src/core/fresh-site/forrest-targets.xml
==============================================================================
--- xml/forrest/trunk/src/core/fresh-site/forrest-targets.xml	(original)
+++ xml/forrest/trunk/src/core/fresh-site/forrest-targets.xml	Wed Mar 10 22:46:41 2004
@@ -1,3 +1,4 @@
+<?xml version="1.0"?>
 <!--
 This build.xml import contains Forrest targets for Ant 1.6.
 See the forrest-targets.ent file in this same dir for more info.
@@ -20,4 +21,4 @@
 
 <project name="forrest" default="dist" basedir="."  >
     &forrest-targets;
-</project>
\ No newline at end of file
+</project>

Modified: xml/forrest/trunk/tools/dtdconverters/dtdx2dtd.xsl
==============================================================================
--- xml/forrest/trunk/tools/dtdconverters/dtdx2dtd.xsl	(original)
+++ xml/forrest/trunk/tools/dtdconverters/dtdx2dtd.xsl	Wed Mar 10 22:46:41 2004
@@ -1,3 +1,4 @@
+<?xml version="1.0"?>
 <!-- $Id: dtdx2dtd.xsl,v 1.2 2003/12/11 05:14:52 crossley Exp $ -->
 <xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform' version='1.0'>