Skip to Content.
Sympa Menu

notify-dpml - r1605 - in trunk/central/site: . src/docs/depot src/docs/depot/tutorials src/docs/depot/tutorials/simple

notify-dpml AT lists.ibiblio.org

Subject: DPML Notify

List archive

Chronological Thread  
  • From: mcconnell at BerliOS <mcconnell AT mail.berlios.de>
  • To: notify-dpml AT lists.ibiblio.org
  • Subject: r1605 - in trunk/central/site: . src/docs/depot src/docs/depot/tutorials src/docs/depot/tutorials/simple
  • Date: Wed, 19 Jul 2006 19:56:56 +0200

Author: mcconnell
Date: 2006-07-19 19:56:28 +0200 (Wed, 19 Jul 2006)
New Revision: 1605

Added:
trunk/central/site/src/docs/depot/tutorials/
trunk/central/site/src/docs/depot/tutorials/index.xml
trunk/central/site/src/docs/depot/tutorials/navigation.xml
trunk/central/site/src/docs/depot/tutorials/simple/
trunk/central/site/src/docs/depot/tutorials/simple/filters.xml
trunk/central/site/src/docs/depot/tutorials/simple/index.xml
trunk/central/site/src/docs/depot/tutorials/simple/navigation.xml
trunk/central/site/src/docs/depot/tutorials/simple/properties.xml
trunk/central/site/src/docs/depot/tutorials/simple/symbolic.xml
Modified:
trunk/central/site/build.xml
trunk/central/site/src/docs/depot/navigation.xml
Log:
initial content dealing with development tooling

Modified: trunk/central/site/build.xml
===================================================================
--- trunk/central/site/build.xml 2006-07-19 17:26:57 UTC (rev 1604)
+++ trunk/central/site/build.xml 2006-07-19 17:56:28 UTC (rev 1605)
@@ -7,7 +7,23 @@
<transit:import uri="local:template:dpml/tools/standard"/>

<target name="prepare" depends="standard.prepare">
-
+
+ <!-- tooling tutorial build content -->
+
+ <!--
+ <x:property name="tooling.dir" feature="basedir"
ref="dpmlx/tutorials/tooling"/>
+ <property name="simple.build.dir" location="${tooling.dir}/simple"/>
+ <property name="local.simple.build.docs.dir"
location="target/docs/depot/tutorials/simple/build"/>
+ <mkdir dir="${local.simple.build.docs.dir}"/>
+ <copy toDir="${local.simple.build.docs.dir}" flatten="true">
+ <fileset dir="${simple.build.dir}">
+ <include name="*.*"/>
+ </fileset>
+ </copy>
+ -->
+
+ <!-- component tutorial build content -->
+
<x:property name="components.dir" feature="basedir"
ref="dpmlx/tutorials/components"/>

<property name="hello.src.dir" location="${components.dir}/hello"/>

Modified: trunk/central/site/src/docs/depot/navigation.xml
===================================================================
--- trunk/central/site/src/docs/depot/navigation.xml 2006-07-19 17:26:57
UTC (rev 1604)
+++ trunk/central/site/src/docs/depot/navigation.xml 2006-07-19 17:56:28
UTC (rev 1605)
@@ -26,6 +26,7 @@

<menu>
<item name="Overview" href="concepts/index.html"/>
+ <item name="Tutorials" href="tutorials/index.html"/>
<item name="Library Directive" href="library/index.html"/>
<item name="Ant Builder" href="tools/index.html"/>
<item name="Ant Tasks" href="tasks/index.html"/>

Added: trunk/central/site/src/docs/depot/tutorials/index.xml
===================================================================
--- trunk/central/site/src/docs/depot/tutorials/index.xml 2006-07-19
17:26:57 UTC (rev 1604)
+++ trunk/central/site/src/docs/depot/tutorials/index.xml 2006-07-19
17:56:28 UTC (rev 1605)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<document>
+ <properties>
+ <author email="mcconnell AT osm.net">Stephen McConnell</author>
+ <title>Component Development Strategies</title>
+ </properties>
+
+ <body>
+
+ <section name="Development Tooling Tutorial">
+
+ <p>
+ The development tooling tutorial is focused on the the overall
management
+ of project and module defintions and the role that these defintions
play
+ in the managmement of multi-project builds.
+ </p>
+
+ <subsection name="Tutorial Index">
+
+ <table>
+ <tr>
+ <td width="15%"><a href="simple/index.html">Getting
Started</a></td>
+ <td width="60%">
+ collection of tutorials dealing with the declaration of an
initial project
+ and the usage of common functionality related to property and
filter declarations
+ (including the usage of symbolic references).
+ </td>
+ <td/>
+ </tr>
+ </table>
+
+ </subsection>
+
+ </section>
+
+ </body>
+</document>
+

Added: trunk/central/site/src/docs/depot/tutorials/navigation.xml
===================================================================
--- trunk/central/site/src/docs/depot/tutorials/navigation.xml 2006-07-19
17:26:57 UTC (rev 1604)
+++ trunk/central/site/src/docs/depot/tutorials/navigation.xml 2006-07-19
17:56:28 UTC (rev 1605)
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ Copyright 2005 Stephen McConnell
+
+ 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.dpml.net/central/about/legal/
+
+ 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.
+-->
+
+<project>
+
+ <title>Magic Training Programme</title>
+
+ <body>
+
+ <menu>
+ <item name="Getting Started" href="simple/index.html"/>
+ </menu>
+
+ </body>
+
+</project>

Added: trunk/central/site/src/docs/depot/tutorials/simple/filters.xml
===================================================================
--- trunk/central/site/src/docs/depot/tutorials/simple/filters.xml
2006-07-19 17:26:57 UTC (rev 1604)
+++ trunk/central/site/src/docs/depot/tutorials/simple/filters.xml
2006-07-19 17:56:28 UTC (rev 1605)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<document>
+ <properties>
+ <author email="mcconnell AT osm.net">Stephen McConnell</author>
+ <title>Development Tooling</title>
+ </properties>
+
+ <body>
+
+ <section name="Using Global Filters">
+
+ </section>
+
+ </body>
+</document>
+

Added: trunk/central/site/src/docs/depot/tutorials/simple/index.xml
===================================================================
--- trunk/central/site/src/docs/depot/tutorials/simple/index.xml
2006-07-19 17:26:57 UTC (rev 1604)
+++ trunk/central/site/src/docs/depot/tutorials/simple/index.xml
2006-07-19 17:56:28 UTC (rev 1605)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<document>
+ <properties>
+ <author email="mcconnell AT osm.net">Stephen McConnell</author>
+ <title>Development Tooling</title>
+ </properties>
+
+ <body>
+
+ <section name="Definining a Project">
+
+ </section>
+
+ </body>
+</document>
+

Added: trunk/central/site/src/docs/depot/tutorials/simple/navigation.xml
===================================================================
--- trunk/central/site/src/docs/depot/tutorials/simple/navigation.xml
2006-07-19 17:26:57 UTC (rev 1604)
+++ trunk/central/site/src/docs/depot/tutorials/simple/navigation.xml
2006-07-19 17:56:28 UTC (rev 1605)
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ Copyright 2005 Stephen McConnell
+
+ 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.dpml.net/central/about/legal/
+
+ 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.
+-->
+
+<project>
+
+ <title>Magic Training Programme</title>
+
+ <body>
+
+ <menu>
+ <item name="General Properties" href="properties.html"/>
+ <item name="Symbolic References" href="symbolic.html"/>
+ <item name="Global Filters" href="filters.html"/>
+ </menu>
+
+ </body>
+
+</project>

Added: trunk/central/site/src/docs/depot/tutorials/simple/properties.xml
===================================================================
--- trunk/central/site/src/docs/depot/tutorials/simple/properties.xml
2006-07-19 17:26:57 UTC (rev 1604)
+++ trunk/central/site/src/docs/depot/tutorials/simple/properties.xml
2006-07-19 17:56:28 UTC (rev 1605)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<document>
+ <properties>
+ <author email="mcconnell AT osm.net">Stephen McConnell</author>
+ <title>Development Tooling</title>
+ </properties>
+
+ <body>
+
+ <section name="Adding Properties">
+
+ </section>
+
+ </body>
+</document>
+

Added: trunk/central/site/src/docs/depot/tutorials/simple/symbolic.xml
===================================================================
--- trunk/central/site/src/docs/depot/tutorials/simple/symbolic.xml
2006-07-19 17:26:57 UTC (rev 1604)
+++ trunk/central/site/src/docs/depot/tutorials/simple/symbolic.xml
2006-07-19 17:56:28 UTC (rev 1605)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<document>
+ <properties>
+ <author email="mcconnell AT osm.net">Stephen McConnell</author>
+ <title>Development Tooling</title>
+ </properties>
+
+ <body>
+
+ <section name="Using Symbolic References">
+
+ </section>
+
+ </body>
+</document>
+




  • r1605 - in trunk/central/site: . src/docs/depot src/docs/depot/tutorials src/docs/depot/tutorials/simple, mcconnell at BerliOS, 07/19/2006

Archive powered by MHonArc 2.6.24.

Top of Page