Skip to Content.
Sympa Menu

notify-dpml - svn commit: r1713 - in development/main/central/site: . src/docs/about/resources src/docs/guide src/docs/guide/setup src/docs/guide/transit/plugins src/docs/guide/transit/resources src/docs/products/transit src/docs/products/transit/000 src/docs/products/transit/000/setup src/docs/products/transit/SNAPSHOT src/docs/products/transit/concepts src/docs/products/transit/glossary src/docs/products/transit/overview src/docs/products/transit/technical src/resources/images/setup

notify-dpml AT lists.ibiblio.org

Subject: DPML Notify

List archive

Chronological Thread  
  • From: mcconnell AT netcompartner.com
  • To: notify-dpml AT lists.ibiblio.org
  • Subject: svn commit: r1713 - in development/main/central/site: . src/docs/about/resources src/docs/guide src/docs/guide/setup src/docs/guide/transit/plugins src/docs/guide/transit/resources src/docs/products/transit src/docs/products/transit/000 src/docs/products/transit/000/setup src/docs/products/transit/SNAPSHOT src/docs/products/transit/concepts src/docs/products/transit/glossary src/docs/products/transit/overview src/docs/products/transit/technical src/resources/images/setup
  • Date: Thu, 03 Feb 2005 18:59:17 +0100

Author: mcconnell
Date: Thu Feb 3 18:59:16 2005
New Revision: 1713

Added:
development/main/central/site/src/docs/about/resources/build.xml
development/main/central/site/src/docs/about/resources/checkout.xml
development/main/central/site/src/docs/products/transit/000/setup/
development/main/central/site/src/docs/products/transit/SNAPSHOT/
development/main/central/site/src/resources/images/setup/environment.png
(contents, props changed)
development/main/central/site/src/resources/images/setup/mycomputer.png
(contents, props changed)
development/main/central/site/src/resources/images/setup/path.png
(contents, props changed)
development/main/central/site/src/resources/images/setup/system.png
(contents, props changed)
Removed:
development/main/central/site/src/docs/guide/setup/
development/main/central/site/src/docs/guide/transit/plugins/
development/main/central/site/src/docs/guide/transit/resources/
development/main/central/site/src/docs/products/transit/concepts/
development/main/central/site/src/docs/products/transit/glossary/
development/main/central/site/src/docs/products/transit/guide.xml
development/main/central/site/src/docs/products/transit/overview/
development/main/central/site/src/docs/products/transit/technical/
Modified:
development/main/central/site/build.xml
development/main/central/site/src/docs/about/resources/navigation.xml
development/main/central/site/src/docs/guide/index.xml
development/main/central/site/src/docs/guide/navigation.xml
development/main/central/site/src/docs/products/transit/000/index.xml
development/main/central/site/src/docs/products/transit/000/navigation.xml
development/main/central/site/src/docs/products/transit/index.xml
development/main/central/site/src/docs/products/transit/navigation.xml
Log:
Prep the site for the release. Move install details down to Transit product.

Modified: development/main/central/site/build.xml
==============================================================================
--- development/main/central/site/build.xml (original)
+++ development/main/central/site/build.xml Thu Feb 3 18:59:16 2005
@@ -58,6 +58,7 @@
<x:filter key="dpml-metro" feature="api" token="METRO-JAVADOC-PATH"/>
<filter token="CENTRAL-SITE-GLOSSARY-PATH"
value="products/transit/glossary/index.html"/>
<filter token="CENTRAL-SITE-CONCEPTS-PATH"
value="products/transit/concepts/index.html"/>
+ <filter token="TRANSIT-SNAPSHOT-ID" value="SNAPSHOT"/>
<filter token="TRANSIT-BUILD-ID" value="000"/>
<filter token="TRANSIT-DEFAULT-ID" value="000"/>
</target>

Added: development/main/central/site/src/docs/about/resources/build.xml
==============================================================================
--- (empty file)
+++ development/main/central/site/src/docs/about/resources/build.xml Thu
Feb 3 18:59:16 2005
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<document>
+ <properties>
+ <author email="mcconnell AT dpml.net">Stephen McConnell</author>
+ <title>DPML Central</title>
+ </properties>
+
+ <body>
+ <section name="Building the Platform">
+
+ <subsection name="Build Procedure">
+
+ <p>
+The DPML platform has the four major product groups.
+To build respective products please incoke the follwing commands:
+ </p>
+
+<pre>
+$ cd main
+$ ant transit ... builds the transit diustribution and updates the
local installation
+$ ant magic ... builds the magic build system (requires transit)
+$ ant metro ... builds Metro (requires Magic)
+$ ant central ... builds site documentation (requires Metro)
+$ ant planet ... builds the facilities (requires Metro)
+</pre>
+
+<p>
+Please note that the Transit build will install the junit jar file
+under the .ant/lib directory if not available. In such a case the
+build will exit with a failed condition and a message requesting
+recommencement of the build. If you run transit target a second
+time the build will continue as normal.
+</p>
+
+ </subsection>
+
+ </section>
+ </body>
+</document>
+

Added: development/main/central/site/src/docs/about/resources/checkout.xml
==============================================================================
--- (empty file)
+++ development/main/central/site/src/docs/about/resources/checkout.xml Thu
Feb 3 18:59:16 2005
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<document>
+ <properties>
+ <author email="mcconnell AT dpml.net">Stephen McConnell</author>
+ <title>DPML Central</title>
+ </properties>
+
+ <body>
+ <section name="Building the Platform">
+
+ <p>
+ Before attempting to build the bootstrap build system please
+ install Apache Ant version 1.6.2 or later and SVN 1.0 or later.
+ </p>
+
+ <subsection name="SVN Checkout">
+
+ <p>
+ The following svn command will checkout the main development branch
+ of the DPML repository to a directory named 'main' (you can change
+ main to a locally preferred directory name).
+ </p>
+
+ <p>DO NOT USE THE DPML_HOME DIRECTORY FOR YOU DEVELOPMENT
CONTENT.</p>
+
+ <source>$ svn checkout
http://paris.dpml.net/svn/development/main</source>
+
+ <p>
+ The equivalent action in TortoiseSVN is shown below:
+ </p>
+
+ <img src="/images/setup/checkout.png"/>
+
+ </subsection>
+
+ </section>
+ </body>
+</document>
+

Modified:
development/main/central/site/src/docs/about/resources/navigation.xml
==============================================================================
--- development/main/central/site/src/docs/about/resources/navigation.xml
(original)
+++ development/main/central/site/src/docs/about/resources/navigation.xml
Thu Feb 3 18:59:16 2005
@@ -26,6 +26,8 @@
<item name="Mailing Lists" href="lists.html"/>
<item name="Issue Tracking" href="issues.html"/>
<item name="Code Management" href="svn.html"/>
+ <item name="Code Checkout" href="checkout.html"/>
+ <item name="Build Procedure" href="build.html"/>
</menu>
</body>


Modified: development/main/central/site/src/docs/guide/index.xml
==============================================================================
--- development/main/central/site/src/docs/guide/index.xml (original)
+++ development/main/central/site/src/docs/guide/index.xml Thu Feb 3
18:59:16 2005
@@ -35,10 +35,11 @@
and orderly startup and shutdown sequencing.
</li>

- <img src="/images/metro/composition.png" border="0"/>
-
</ol>

+ <p>
+ <img src="/images/metro/composition.png" border="0"/>
+ </p>

</section>
</body>

Modified: development/main/central/site/src/docs/guide/navigation.xml
==============================================================================
--- development/main/central/site/src/docs/guide/navigation.xml (original)
+++ development/main/central/site/src/docs/guide/navigation.xml Thu Feb 3
18:59:16 2005
@@ -25,7 +25,6 @@
<body>

<menu>
- <item name="Installation" href="setup/index.html"/>
<!--<item name="Quick Start" href="quick/index.html"/>-->
<!--<item name="Patterns" href="patterns/index.html"/>-->
<item name="Developing with Metro" href="metro/index.html"/>

Modified:
development/main/central/site/src/docs/products/transit/000/index.xml
==============================================================================
--- development/main/central/site/src/docs/products/transit/000/index.xml
(original)
+++ development/main/central/site/src/docs/products/transit/000/index.xml
Thu Feb 3 18:59:16 2005
@@ -29,8 +29,7 @@
</properties>

<body>
- <section name="Transit Resource Management System">
-
+ <section name="Transit Resource Management System - BUILD
@TRANSIT-DEFAULT-ID@">

<p>
Transit provides a flexible framework for dynamically

Modified:
development/main/central/site/src/docs/products/transit/000/navigation.xml
==============================================================================
---
development/main/central/site/src/docs/products/transit/000/navigation.xml
(original)
+++
development/main/central/site/src/docs/products/transit/000/navigation.xml
Thu Feb 3 18:59:16 2005
@@ -26,6 +26,7 @@
<body>

<menu>
+ <item name="Download" href="setup/index.html"/>
<item name="Product Overview" href="overview/index.html"/>
<item name="Product Specifications" href="technical/index.html"/>
<item name="Users Guide" href="guide.html"/>

Modified: development/main/central/site/src/docs/products/transit/index.xml
==============================================================================
--- development/main/central/site/src/docs/products/transit/index.xml
(original)
+++ development/main/central/site/src/docs/products/transit/index.xml Thu
Feb 3 18:59:16 2005
@@ -31,7 +31,6 @@
<body>
<section name="Transit Resource Management System">

-
<p>
Transit provides a flexible framework for dynamically
<a href="@TRANSIT-DEFAULT-ID@/overview/artifact.html">retrieving</a>
@@ -44,6 +43,12 @@
applications.
</p>

+ <p>
+ The @TRANSIT-DEFAULT-ID@ build is our latest <a
href="@TRANSIT-DEFAULT-ID@/index.html">production
+ release</a> of Transit. The <a
href="@TRANSIT-SNAPSHOT-ID@/index.html">@TRANSIT-SNAPSHOT-ID@</a>
+ contains documentation relating to the current development codebase.
+ </p>
+
<img src="/images/transit/repositories.png"/>

</section>

Modified:
development/main/central/site/src/docs/products/transit/navigation.xml
==============================================================================
--- development/main/central/site/src/docs/products/transit/navigation.xml
(original)
+++ development/main/central/site/src/docs/products/transit/navigation.xml
Thu Feb 3 18:59:16 2005
@@ -26,7 +26,8 @@
<body>

<menu>
- <item name="Build @TRANSIT-BUILD-ID@"
href="@TRANSIT-DEFAULT-ID@/index.html"/>
+ <item name="SNAPSHOT" href="@TRANSIT-SNAPSHOT-ID@/index.html"/>
+ <item name="Production Build @TRANSIT-BUILD-ID@"
href="@TRANSIT-DEFAULT-ID@/index.html"/>
</menu>

</body>

Added:
development/main/central/site/src/resources/images/setup/environment.png
==============================================================================
Binary file. No diff available.

Added: development/main/central/site/src/resources/images/setup/mycomputer.png
==============================================================================
Binary file. No diff available.

Added: development/main/central/site/src/resources/images/setup/path.png
==============================================================================
Binary file. No diff available.

Added: development/main/central/site/src/resources/images/setup/system.png
==============================================================================
Binary file. No diff available.



  • svn commit: r1713 - in development/main/central/site: . src/docs/about/resources src/docs/guide src/docs/guide/setup src/docs/guide/transit/plugins src/docs/guide/transit/resources src/docs/products/transit src/docs/products/transit/000 src/docs/products/transit/000/setup src/docs/products/transit/SNAPSHOT src/docs/products/transit/concepts src/docs/products/transit/glossary src/docs/products/transit/overview src/docs/products/transit/technical src/resources/images/setup, mcconnell, 02/03/2005

Archive powered by MHonArc 2.6.24.

Top of Page