notify-dpml AT lists.ibiblio.org
Subject: DPML Notify
List archive
r1957 - in trunk: central/apis/src/docs/index/junit central/site/etc/docs central/site/src/docs main
- From: mcconnell at BerliOS <mcconnell AT mail.berlios.de>
- To: notify-dpml AT lists.ibiblio.org
- Subject: r1957 - in trunk: central/apis/src/docs/index/junit central/site/etc/docs central/site/src/docs main
- Date: Mon, 9 Apr 2007 18:59:15 +0200
Author: mcconnell
Date: 2007-04-09 18:59:13 +0200 (Mon, 09 Apr 2007)
New Revision: 1957
Added:
trunk/central/site/src/docs/404.xml
Modified:
trunk/central/apis/src/docs/index/junit/navigation.xml
trunk/central/site/etc/docs/.htaccess
trunk/main/README.TXT
Log:
1. correction to api docus (wrong link on junit apis)
2. addition of a 404 page
Modified: trunk/central/apis/src/docs/index/junit/navigation.xml
===================================================================
--- trunk/central/apis/src/docs/index/junit/navigation.xml 2007-04-09
15:00:13 UTC (rev 1956)
+++ trunk/central/apis/src/docs/index/junit/navigation.xml 2007-04-09
16:59:13 UTC (rev 1957)
@@ -25,8 +25,8 @@
<body>
<menu>
- <item name="4.2" href="http://api.dpml.net/juint/4.2/index.html"/>
- <item name="3.8.1" href="http://api.dpml.net/juint/3.8.1/index.html"/>
+ <item name="4.2" href="http://api.dpml.net/junit/4.2/index.html"/>
+ <item name="3.8.1" href="http://api.dpml.net/junit/3.8.1/index.html"/>
</menu>
</body>
Modified: trunk/central/site/etc/docs/.htaccess
===================================================================
--- trunk/central/site/etc/docs/.htaccess 2007-04-09 15:00:13 UTC (rev
1956)
+++ trunk/central/site/etc/docs/.htaccess 2007-04-09 16:59:13 UTC (rev
1957)
@@ -31,4 +31,9 @@
RedirectMatch ^/api/dpml/2005* http://api.dpml.net/dpml/@VERSION@/index.html
RedirectMatch ^/api/dpml/SNAPSHOT*
http://api.dpml.net/dpml/@VERSION@/index.html
RedirectMatch ^/api/dpml/1.0.0-RC*
http://api.dpml.net/dpml/@VERSION@/index.html
-RedirectMatch ^/api/checkstyle/index.html
http://api.dpml.net/checkstyle/4.1/index.html
\ No newline at end of file
+RedirectMatch ^/api/checkstyle/index.html
http://api.dpml.net/checkstyle/4.1/index.html
+RedirectMatch http://www.dpml.net/transit/* http://www.dpml.net/util/transit
+RedirectMatch http://dpml.net/transit/* http://www.dpml.net/util/transit
+RedirectMatch http://www.dpml.net/depot/* http://www.dpml.net/util/depot
+RedirectMatch http://dpml.net/depot/* http://www.dpml.net/util/depot
+
Added: trunk/central/site/src/docs/404.xml
===================================================================
--- trunk/central/site/src/docs/404.xml 2007-04-09 15:00:13 UTC (rev 1956)
+++ trunk/central/site/src/docs/404.xml 2007-04-09 16:59:13 UTC (rev 1957)
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<document>
+ <properties>
+ <author email="mcconnell AT dpml.net">Stephen McConnell</author>
+ <title>DPML Component Management Solutions - Error: 404</title>
+ <description>Intelligent Component Management Solutions for
Java.</description>
+ <keywords>DPML, build, runtime, management, components, soa, java,
composition</keywords>
+ </properties>
+
+ <body>
+
+ <section name="Unknown Resource Reference (404)">
+
+ <p>
+ The requested page was not found. If you believe this is an error
please
+ post an email to the <a
href="http://www.dpml.net/about/resources/lists.html">DPML support</a>
+ mailing list.
+ </p>
+
+ </section>
+
+ </body>
+
+</document>
+
Modified: trunk/main/README.TXT
===================================================================
--- trunk/main/README.TXT 2007-04-09 15:00:13 UTC (rev 1956)
+++ trunk/main/README.TXT 2007-04-09 16:59:13 UTC (rev 1957)
@@ -1,36 +1,49 @@
-
-DPML PLatform Installation README.
+DPML Platform Installation README.
----------------------------------
-The DPML Platform distribution archive contains a complete development
-and runtime installation. The distribute archive contains a single
-directory named 'dpml'. After unpacking the archive, move the dpml
-directory to your prefered install location.
+The DPML SDK distribution comes in three flavours:
+ 1. a automatic installer for Windows
+ 2. an alternative zip file for a windows installation
+ 3. a tar.gz file for nix installation
+
+If your not using the Windows installer then you will need to unpack the
+archive in your preferred location. This result in the creation of a
+single directory named 'dpml'.
+
To complete the installation:
- 1. define the DPML_HOME environment variable
+ 1. define the DPML_HOME environment variable pointing to the
+ 'dpml' directory
- 2. include the share/bin directory into your system path
+ 2. add the [the-dpml-home-path]/share/bin directory into
+ your system path
-To verify your installation you should be able to list the current
-Transit resource configuration using the following command:
+To verify your installation you can validate the installed Metro version
+using the following command:
- $ transit info
+ $ metro -version
Win32 users can install the Station as a NT service by executing the
-install-DPML-SCM.bat command file. Following installation you can start
-the station manually using the following command:
+install-DPML-SCM.bat command file (note that this is automatically
+installed as a manually activated service by the Windows installer).
+After installation you can start the station manually using the
+following command:
$ net start dpml
-The equivalent functionality on unix platforms is achived using the
-station commands within machine startup and shutdown scripts.
+Alternatively, Windows users can modify the DPML service settings using
+the Control Panel / Administrative Tools / Service control panel.
+The equivalent functionality on UNIX platforms is achieved using the
+station commands within machine start-up and shutdown scripts.
+
$ station startup
$ station shutdown
-If you encounter any problems please post a note to the DPML support list.
+If you encounter any problems please consult relevant online documentation
+and/or post a note to the DPML support list.
http://www.dpml.net/about/resources/lists.html
+Stephen McConnell, DPML
- r1957 - in trunk: central/apis/src/docs/index/junit central/site/etc/docs central/site/src/docs main, mcconnell at BerliOS, 04/09/2007
Archive powered by MHonArc 2.6.24.