You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by cr...@apache.org on 2005/11/10 03:35:04 UTC

svn commit: r332205 - in /forrest/trunk/plugins/org.apache.forrest.plugin.input.listLocations: resources/schema/catalog.xcat resources/schema/locations-v11.dtd status.xml

Author: crossley
Date: Wed Nov  9 18:34:59 2005
New Revision: 332205

URL: http://svn.apache.org/viewcvs?rev=332205&view=rev
Log:
DTD v1.1 enables notes to have links.

Added:
    forrest/trunk/plugins/org.apache.forrest.plugin.input.listLocations/resources/schema/locations-v11.dtd   (with props)
Modified:
    forrest/trunk/plugins/org.apache.forrest.plugin.input.listLocations/resources/schema/catalog.xcat
    forrest/trunk/plugins/org.apache.forrest.plugin.input.listLocations/status.xml

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.input.listLocations/resources/schema/catalog.xcat
URL: http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.input.listLocations/resources/schema/catalog.xcat?rev=332205&r1=332204&r2=332205&view=diff
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.input.listLocations/resources/schema/catalog.xcat (original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.input.listLocations/resources/schema/catalog.xcat Wed Nov  9 18:34:59 2005
@@ -1,6 +1,6 @@
 <?xml version="1.0"?>
 <!--
-  Copyright 2002-2004 The Apache Software Foundation or its licensors,
+  Copyright 2002-2005 The Apache Software Foundation or its licensors,
   as applicable.
 
   Licensed under the Apache License, Version 2.0 (the "License");
@@ -24,5 +24,8 @@
 
 <public publicId="-//Apache Forrest//DTD Locations V1.0//EN"
         uri="locations-v10.dtd"/>
+
+<public publicId="-//Apache Forrest//DTD Locations V1.1//EN"
+        uri="locations-v11.dtd"/>
 
 </catalog>

Added: forrest/trunk/plugins/org.apache.forrest.plugin.input.listLocations/resources/schema/locations-v11.dtd
URL: http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.input.listLocations/resources/schema/locations-v11.dtd?rev=332205&view=auto
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.input.listLocations/resources/schema/locations-v11.dtd (added)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.input.listLocations/resources/schema/locations-v11.dtd Wed Nov  9 18:34:59 2005
@@ -0,0 +1,56 @@
+<!--
+  Copyright 2002-2005 The Apache Software Foundation or its licensors,
+  as applicable.
+
+  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.
+-->
+<!-- ===================================================================
+
+     Apache Forrest - Locations DTD (Version 1.1)
+
+PURPOSE: Simple list of locations.
+
+TYPICAL INVOCATION:
+
+  <!DOCTYPE locations PUBLIC
+       "-//Apache Forrest//DTD Locations Vx.y//EN"
+       "locations-v10.dtd">
+
+  where
+
+    x := major version
+    y := minor version
+
+==================================================================== -->
+
+<!ELEMENT locations (introduction?, location+)>
+<!ATTLIST locations
+  title CDATA #IMPLIED
+>
+<!ELEMENT introduction (#PCDATA)>
+<!ELEMENT location (id, title, place, url?, notes?)>
+<!ELEMENT id (#PCDATA)>
+<!ELEMENT title (#PCDATA)>
+<!ELEMENT place (#PCDATA)>
+<!ELEMENT url (#PCDATA)>
+<!ELEMENT notes (note+)>
+<!ELEMENT note (#PCDATA | a)*>
+<!ELEMENT a (#PCDATA)>
+<!ATTLIST a
+  href CDATA #REQUIRED
+  title CDATA #IMPLIED
+>
+
+<!-- =============================================================== -->
+<!-- End of DTD -->
+<!-- =============================================================== -->

Propchange: forrest/trunk/plugins/org.apache.forrest.plugin.input.listLocations/resources/schema/locations-v11.dtd
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: forrest/trunk/plugins/org.apache.forrest.plugin.input.listLocations/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.input.listLocations/status.xml?rev=332205&r1=332204&r2=332205&view=diff
==============================================================================
--- forrest/trunk/plugins/org.apache.forrest.plugin.input.listLocations/status.xml (original)
+++ forrest/trunk/plugins/org.apache.forrest.plugin.input.listLocations/status.xml Wed Nov  9 18:34:59 2005
@@ -36,8 +36,11 @@
   <changes>
     <!-- Add new releases here -->
     <release version="0.1" date="unreleased">
+      <action dev="DC" type="update" context="core">
+        DTD v1.1 enables notes to have links.
+      </action>
       <action dev="DC" type="add" context="core">
-        Added external DTD.
+        Added external DTD v1.0
       </action>
       <action dev="DC" type="add" context="core">
         Initial plugin code.