[mud4j-commit] SF.net SVN: mud4j: [109] trunk/mud4j
Status: Pre-Alpha
Brought to you by:
mpurland
From: <mpu...@us...> - 2007-01-14 02:44:07
|
Revision: 109 http://mud4j.svn.sourceforge.net/mud4j/?rev=109&view=rev Author: mpurland Date: 2007-01-13 18:44:03 -0800 (Sat, 13 Jan 2007) Log Message: ----------- Update site for Maven 2.x. Modified Paths: -------------- trunk/mud4j/pom.xml Added Paths: ----------- trunk/mud4j/src/site/site.xml trunk/mud4j-core/src/site/site.xml trunk/mud4j-telnet/src/site/site.xml trunk/mud4j-web/src/site/site.xml Removed Paths: ------------- trunk/mud4j/settings.xml trunk/mud4j/src/site/xdoc/menu-activity.xml trunk/mud4j/src/site/xdoc/menu-autocodereview.xml trunk/mud4j/src/site/xdoc/menu-autotest.xml trunk/mud4j/src/site/xdoc/menu-reference.xml trunk/mud4j/src/site/xdoc/navigation-common-activity.xml trunk/mud4j/src/site/xdoc/navigation-common-docs.xml trunk/mud4j/src/site/xdoc/navigation-common-links.xml trunk/mud4j/src/site/xdoc/navigation-common-project-info.xml trunk/mud4j/src/site/xdoc/navigation-common-projects.xml trunk/mud4j/src/site/xdoc/navigation-common-reports.xml trunk/mud4j/src/site/xdoc/navigation.xml trunk/mud4j-core/src/site/xdoc/navigation.xml trunk/mud4j-telnet/src/site/xdoc/navigation.xml trunk/mud4j-web/src/site/xdoc/navigation.xml Modified: trunk/mud4j/pom.xml =================================================================== --- trunk/mud4j/pom.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/pom.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -10,11 +10,71 @@ <artifactId>mud4j-master</artifactId> <version>1.0-SNAPSHOT</version> + <url>http://mud4j.sf.net/</url> + <inceptionYear>2006</inceptionYear> + + <repositories> + <repository> + <id>Codehaus Snapshots</id> + <url>http://snapshots.repository.codehaus.org/</url> + <snapshots> + <enabled>true</enabled> + </snapshots> + <releases> + <enabled>false</enabled> + </releases> + </repository> + </repositories> + <pluginRepositories> + <pluginRepository> + <id>Codehaus Snapshots</id> + <url>http://snapshots.repository.codehaus.org/</url> + <snapshots> + <enabled>true</enabled> + </snapshots> + <releases> + <enabled>false</enabled> + </releases> + </pluginRepository> + </pluginRepositories> + + <licenses> + <license> + <name>Apache 2</name> + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> + <distribution>repo</distribution> + <comments>A business-friendly OSS license</comments> + </license> + </licenses> + + <organization> + <name>mud4j</name> + <url>http://sourceforge.net/projects/mud4j</url> + </organization> + <description> A framework for MUD and game servers to sedparate logic into domain tiers. This will separate business logic and features of creating a game server and also let dependent projects focus on game domain logic and content. </description> + <distributionManagement> + <site> + <id>mud4j.website</id> + <name>mud4j Website</name> + <url> + scp://shell.sourceforge.net/home/groups/m/mu/mud4j/htdocs/</url> + </site> + </distributionManagement> + + <scm> + <connection> + scm:svn:https://svn.sourceforge.net/svnroot/mud4j</connection> + <developerConnection> + scm:svn:https://svn.sourceforge.net/svnroot/mud4j</developerConnection> + <tag>HEAD</tag> + <url>http://mud4j.svn.sourceforge.net/viewvc/mud4j/trunk/</url> + </scm> + <!-- any mailing lists for the project --> <mailingLists> <mailingList> @@ -53,16 +113,83 @@ </mailingList> </mailingLists> - <!-- Dependencies --> - <dependencies> - </dependencies> + <!-- Developers/Contributors for this project --> + <developers> + <developer> + <name>Matthew Purland</name> + <id>mpurland</id> + <roles> + <role>Founder</role> + <role>Developer</role> + </roles> + <timezone>-6</timezone> + <email>mpu...@us...</email> + </developer> + </developers> + <contributors/> <modules> <module>../mud4j-core</module> <module>../mud4j-telnet</module> <module>../mud4j-web</module> </modules> - + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-project-info-reports-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jxr-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-changes-plugin</artifactId> + <reportSets> + <reportSet> + <reports> + <report>changes-report</report> + </reports> + </reportSet> + </reportSets> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + </plugin> + <!-- <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-changelog-plugin</artifactId> + </plugin> --> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>cobertura-maven-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-site-plugin</artifactId> + <configuration> + + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-report-plugin</artifactId> + </plugin> + <!-- Last report --> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>dashboard-maven-plugin</artifactId> + <version>1.0-SNAPSHOT</version> + </plugin> + </plugins> + </reporting> + <build> <plugins> <plugin> @@ -73,6 +200,12 @@ <target>1.5</target> </configuration> </plugin> + <plugin> + <artifactId>maven-plugin-plugin</artifactId> + <configuration> + <goalPrefix>dashboard-report</goalPrefix> + </configuration> + </plugin> </plugins> <defaultGoal>jar</defaultGoal> <sourceDirectory>src/java</sourceDirectory> Deleted: trunk/mud4j/settings.xml =================================================================== Copied: trunk/mud4j/src/site/site.xml (from rev 106, trunk/mud4j/src/site/xdoc/navigation.xml) =================================================================== --- trunk/mud4j/src/site/site.xml (rev 0) +++ trunk/mud4j/src/site/site.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="UTF-8"?> +<site> + <body> + <links> + <item name="Repository" + href="http://mud4j.svn.sourceforge.net/viewvc/mud4j/trunk/"/> + <item name="Dashboard" href="dashboard-report.html"/> + </links> + + <menu name="Projects"> + <item name="mud4j Overview" href="http://mud4j.sf.net/index.html"/> + <item name="mud4j-core" + href="http://mud4j.sf.net/projects/mud4j-core/index.html"/> + <item name="mud4j-telnet" + href="http://mud4j.sf.net/projects/mud4j-telnet/index.html"/> + <item name="mud4j-web" + href="http://mud4j.sf.net/projects/mud4j-web/index.html"/> + </menu> + + <!-- Documentation for mud4j project, cannot use common because this + is not a real component --> + <menu name="Developer Docs"> + <item name="Design Considerations" href="design-considerations.html"/> + <item name="Ideas" href="ideas.html"/> + </menu> + + <menu name="Project Info"> + <item name="Mailing Lists" href="/mail-lists.html"/> + <item name="Project Team" href="/team-list.html"/> + <item name="Dependencies" href="/dependencies.html"/> + <item name="Source Repository" href="/source-repository.html"/> + <item name="Issue Tracking" href="/issue-tracking.html"/> + </menu> + + </body> +</site> \ No newline at end of file Deleted: trunk/mud4j/src/site/xdoc/menu-activity.xml =================================================================== --- trunk/mud4j/src/site/xdoc/menu-activity.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/src/site/xdoc/menu-activity.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,18 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<document> - <properties> - <title>Development Activity</title> - <author email="mpu...@us...">Matthew Purland</author> - </properties> - - <!-- An optional head, the description is used for the sitemap. --> - <head> - <meta name="keywords" content="mud4j development activity"/> - <meta name="description" content="mud4j development activity"/> - </head> - - <body> - <p>Choose a submenu option.</p> - </body> -</document> \ No newline at end of file Deleted: trunk/mud4j/src/site/xdoc/menu-autocodereview.xml =================================================================== --- trunk/mud4j/src/site/xdoc/menu-autocodereview.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/src/site/xdoc/menu-autocodereview.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,18 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<document> - <properties> - <title>Automated Code Reviews</title> - <author email="mpu...@us...">Matthew Purland</author> - </properties> - - <!-- An optional head, the description is used for the sitemap. --> - <head> - <meta name="keywords" content="mud4j automated code reviews"/> - <meta name="description" content="mud4j automated code reviews"/> - </head> - - <body> - <p>Choose a submenu option.</p> - </body> -</document> \ No newline at end of file Deleted: trunk/mud4j/src/site/xdoc/menu-autotest.xml =================================================================== --- trunk/mud4j/src/site/xdoc/menu-autotest.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/src/site/xdoc/menu-autotest.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,20 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<document> - <properties> - <title>Automated Unit Tests</title> - <author email="mpu...@us...">Matthew Purland</author> - </properties> - - <!-- An optional head, the description is used for the sitemap. --> - <head> - <meta name="keywords" content="mud4j automated unit tests"/> - <meta name="description" content="mud4j automated unit tests"/> - </head> - - <body> - - <p>Choose a submenu option.</p> - - </body> -</document> \ No newline at end of file Deleted: trunk/mud4j/src/site/xdoc/menu-reference.xml =================================================================== --- trunk/mud4j/src/site/xdoc/menu-reference.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/src/site/xdoc/menu-reference.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,20 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<document> - <properties> - <title>Developer Reference Information</title> - <author email="mpu...@us...">Matthew Purland</author> - </properties> - - <!-- An optional head, the description is used for the sitemap. --> - <head> - <meta name="keywords" content="mud4j developer reference information"/> - <meta name="description" content="mud4j developer reference information"/> - </head> - - <body> - - <p>Choose a submenu option.</p> - - </body> -</document> \ No newline at end of file Deleted: trunk/mud4j/src/site/xdoc/navigation-common-activity.xml =================================================================== --- trunk/mud4j/src/site/xdoc/navigation-common-activity.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/src/site/xdoc/navigation-common-activity.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,6 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<menu name="Activity"> - <item name="Change Log" href="/changelog-report.html"/> - <item name="Developer Activity" href="/developer-activity-report.html"/> - <item name="File Activity" href="/file-activity-report.html"/> -</menu> \ No newline at end of file Deleted: trunk/mud4j/src/site/xdoc/navigation-common-docs.xml =================================================================== --- trunk/mud4j/src/site/xdoc/navigation-common-docs.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/src/site/xdoc/navigation-common-docs.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<menu name="Developer Docs"> - <item name="Ideas" href="/ideas.html"/> - <item name="Tasks" href="/task-list.html"/> - <item name="JavaDocs" href="apidocs/index.html" target="_blank"/> - <item name="Source Xref" href="xref/index.html" target="_blank"/> - <item name="Test Xref" href="xref-test/index.html" target="_blank"/> -</menu> \ No newline at end of file Deleted: trunk/mud4j/src/site/xdoc/navigation-common-links.xml =================================================================== --- trunk/mud4j/src/site/xdoc/navigation-common-links.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/src/site/xdoc/navigation-common-links.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,7 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<links> - <item name="Repository" href="http://mud4j.svn.sourceforge.net/viewvc/mud4j/trunk/"/> - <item name="Dashboard" href="dashboard-report.html"/> - <item name="Dependencies" href="dependencies.html"/> - <item name="Dependency Convergence" href="dependency-convergence-report.html" /> -</links> Deleted: trunk/mud4j/src/site/xdoc/navigation-common-project-info.xml =================================================================== --- trunk/mud4j/src/site/xdoc/navigation-common-project-info.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/src/site/xdoc/navigation-common-project-info.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<menu name="Project Info"> - <item name="Mailing Lists" href="/mail-lists.html"/> - <item name="Project Team" href="/team-list.html"/> - <item name="Dependencies" href="/dependencies.html"/> - <item name="Source Repository" href="/scm-usage.html"/> - <item name="Issue Tracking" href="/issue-tracking.html"/> -</menu> \ No newline at end of file Deleted: trunk/mud4j/src/site/xdoc/navigation-common-projects.xml =================================================================== --- trunk/mud4j/src/site/xdoc/navigation-common-projects.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/src/site/xdoc/navigation-common-projects.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,7 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<menu name="Projects"> - <item name="mud4j Overview" href="http://mud4j.sf.net/index.html"/> - <item name="mud4j-core" href="http://mud4j.sf.net/projects/mud4j-core/index.html"/> - <item name="mud4j-telnet" href="http://mud4j.sf.net/projects/mud4j-telnet/index.html"/> - <item name="mud4j-web" href="http://mud4j.sf.net/projects/mud4j-web/index.html"/> -</menu> Deleted: trunk/mud4j/src/site/xdoc/navigation-common-reports.xml =================================================================== --- trunk/mud4j/src/site/xdoc/navigation-common-reports.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/src/site/xdoc/navigation-common-reports.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<menu name="Reports"> - <item name="Compile Output" href="java-compiler-output-report.html"/> - <item name="JavaDoc Output" href="javadoc.html"/> - <item name="JavaDoc Warnings" href="javadoc-warnings-report.html"/> - <item name="FindBugs" href="findbugs-report.html"/> - <item name="Checkstyle" href="checkstyle/index.html"/> - <item name="PMD" href="pmd-report.html"/> - <item name="Simian" href="simian-report.html"/> - <item name="Metrics" href="jdepend-report.html"/> - <item name="Link Check" href="linkcheck.html"/> - - <item name="Unit Tests" href="junit-report.html"/> - <item name="Test Coverage" href="cobertura/index.html" target="_blank"/> - <item name="Coverage Violation" href="cobertura/cobertura-check.html"/> - -</menu> \ No newline at end of file Deleted: trunk/mud4j/src/site/xdoc/navigation.xml =================================================================== --- trunk/mud4j/src/site/xdoc/navigation.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j/src/site/xdoc/navigation.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,36 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<!DOCTYPE document [ - <!ENTITY links SYSTEM "file:src/site/xdoc/navigation-common-links.xml" > - <!ENTITY projects SYSTEM "file:src/site/xdoc/navigation-common-projects.xml" > - <!ENTITY project-info SYSTEM "file:src/site/xdoc/navigation-common-project-info.xml" > - <!ENTITY activity SYSTEM "file:src/site/xdoc/navigation-common-activity.xml" > -]> - -<project name="mud4j" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://maven.apache.org/maven-navigation-1.0.xsd"> - <title>mud4j</title> - - <body> - &links; - - <sitemap/> - - &projects; - <!-- Documentation for mud4j project, cannot use common because this - is not a real component --> - <menu name="Developer Docs"> - <item name="Design Considerations" href="design-considerations.html"/> - <item name="Ideas" href="ideas.html"/> - </menu> - &activity; - <!-- Project reports --> - <menu name="Reports"> - <item name="Tasks" href="task-list.html"/> - <item name="Link Check" href="linkcheck.html"/> - </menu> - &project-info; - - <!-- Google search --> - <search /> - </body> -</project> Copied: trunk/mud4j-core/src/site/site.xml (from rev 106, trunk/mud4j-core/src/site/xdoc/navigation.xml) =================================================================== --- trunk/mud4j-core/src/site/site.xml (rev 0) +++ trunk/mud4j-core/src/site/site.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<site> + <body> + <links> + <item name="Repository" + href="http://mud4j.svn.sourceforge.net/viewvc/mud4j/trunk/"/> + <item name="Dashboard" href="dashboard-report.html"/> + </links> + <menu name="Projects"> + <item name="mud4j Overview" href="http://mud4j.sf.net/index.html"/> + <item name="mud4j-core" + href="http://mud4j.sf.net/projects/mud4j-core/index.html"/> + <item name="mud4j-telnet" + href="http://mud4j.sf.net/projects/mud4j-telnet/index.html"/> + <item name="mud4j-web" + href="http://mud4j.sf.net/projects/mud4j-web/index.html"/> + </menu> + + <!-- Documentation for mud4j project, cannot use common because this + is not a real component --> + <menu name="Developer Docs"> + <item name="Javadoc API" href="apidocs/index.html" target="_blank" /> + <item name="Design Considerations" href="/design-considerations.html"/> + <item name="Ideas" href="/ideas.html"/> + </menu> + + <menu name="Reports"> + <item name="Checkstyle" href="checkstyle.html"/> + <item name="Unit Tests" href="surefire-report.html"/> + <item name="Test Coverage" href="cobertura/index.html" + target="_blank"/> + <item name="Source Xref" href="xref/index.html" target="_blank"/> + <item name="Test Xref" href="xref-test/index.html" target="_blank"/> + </menu> + + <menu name="Project Info"> + <item name="Mailing Lists" href="/mail-lists.html"/> + <item name="Project Team" href="/team-list.html"/> + <item name="Dependencies" href="/dependencies.html"/> + <item name="Source Repository" href="/source-repository.html"/> + <item name="Issue Tracking" href="/issue-tracking.html"/> + </menu> + + </body> +</site> \ No newline at end of file Deleted: trunk/mud4j-core/src/site/xdoc/navigation.xml =================================================================== --- trunk/mud4j-core/src/site/xdoc/navigation.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j-core/src/site/xdoc/navigation.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,29 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<!DOCTYPE document [ - <!ENTITY links SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-links.xml" > - <!ENTITY projects SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-projects.xml" > - <!ENTITY docs SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-docs.xml" > - <!ENTITY project-info SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-project-info.xml" > - <!ENTITY activity SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-activity.xml" > - <!ENTITY reports SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-reports.xml" > -]> - -<project name="mud4j-core" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://maven.apache.org/maven-navigation-1.0.xsd"> - <title>mud4j-core</title> - - <body> - &links; - - <sitemap/> - - &projects; - &docs; - &activity; - &reports; - &project-info; - - <!-- Google search --> - <search /> - </body> -</project> \ No newline at end of file Copied: trunk/mud4j-telnet/src/site/site.xml (from rev 106, trunk/mud4j-telnet/src/site/xdoc/navigation.xml) =================================================================== --- trunk/mud4j-telnet/src/site/site.xml (rev 0) +++ trunk/mud4j-telnet/src/site/site.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<site> + <body> + <links> + <item name="Repository" + href="http://mud4j.svn.sourceforge.net/viewvc/mud4j/trunk/"/> + <item name="Dashboard" href="dashboard-report.html"/> + </links> + <menu name="Projects"> + <item name="mud4j Overview" href="http://mud4j.sf.net/index.html"/> + <item name="mud4j-core" + href="http://mud4j.sf.net/projects/mud4j-core/index.html"/> + <item name="mud4j-telnet" + href="http://mud4j.sf.net/projects/mud4j-telnet/index.html"/> + <item name="mud4j-web" + href="http://mud4j.sf.net/projects/mud4j-web/index.html"/> + </menu> + + <!-- Documentation for mud4j project, cannot use common because this + is not a real component --> + <menu name="Developer Docs"> + <item name="Javadoc API" href="apidocs/index.html" target="_blank" /> + <item name="Design Considerations" href="/design-considerations.html"/> + <item name="Ideas" href="/ideas.html"/> + </menu> + + <menu name="Reports"> + <item name="Checkstyle" href="checkstyle.html"/> + <item name="Unit Tests" href="surefire-report.html"/> + <item name="Test Coverage" href="cobertura/index.html" + target="_blank"/> + <item name="Source Xref" href="xref/index.html" target="_blank"/> + <item name="Test Xref" href="xref-test/index.html" target="_blank"/> + </menu> + + <menu name="Project Info"> + <item name="Mailing Lists" href="/mail-lists.html"/> + <item name="Project Team" href="/team-list.html"/> + <item name="Dependencies" href="/dependencies.html"/> + <item name="Source Repository" href="/source-repository.html"/> + <item name="Issue Tracking" href="/issue-tracking.html"/> + </menu> + + </body> +</site> \ No newline at end of file Deleted: trunk/mud4j-telnet/src/site/xdoc/navigation.xml =================================================================== --- trunk/mud4j-telnet/src/site/xdoc/navigation.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j-telnet/src/site/xdoc/navigation.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,29 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<!DOCTYPE document [ - <!ENTITY links SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-links.xml" > - <!ENTITY projects SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-projects.xml" > - <!ENTITY docs SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-docs.xml" > - <!ENTITY project-info SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-project-info.xml" > - <!ENTITY activity SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-activity.xml" > - <!ENTITY reports SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-reports.xml" > -]> - -<project name="mud4j-telnet" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://maven.apache.org/maven-navigation-1.0.xsd"> - <title>mud4j-telnet</title> - - <body> - &links; - - <sitemap/> - - &projects; - &docs; - &activity; - &reports; - &project-info; - - <!-- Google search --> - <search /> - </body> -</project> \ No newline at end of file Copied: trunk/mud4j-web/src/site/site.xml (from rev 106, trunk/mud4j-web/src/site/xdoc/navigation.xml) =================================================================== --- trunk/mud4j-web/src/site/site.xml (rev 0) +++ trunk/mud4j-web/src/site/site.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<site> + <body> + <links> + <item name="Repository" + href="http://mud4j.svn.sourceforge.net/viewvc/mud4j/trunk/"/> + <item name="Dashboard" href="dashboard-report.html"/> + </links> + <menu name="Projects"> + <item name="mud4j Overview" href="http://mud4j.sf.net/index.html"/> + <item name="mud4j-core" + href="http://mud4j.sf.net/projects/mud4j-core/index.html"/> + <item name="mud4j-telnet" + href="http://mud4j.sf.net/projects/mud4j-telnet/index.html"/> + <item name="mud4j-web" + href="http://mud4j.sf.net/projects/mud4j-web/index.html"/> + </menu> + + <!-- Documentation for mud4j project, cannot use common because this + is not a real component --> + <menu name="Developer Docs"> + <item name="Javadoc API" href="apidocs/index.html" target="_blank" /> + <item name="Design Considerations" href="/design-considerations.html"/> + <item name="Ideas" href="/ideas.html"/> + </menu> + + <menu name="Reports"> + <item name="Checkstyle" href="checkstyle.html"/> + <item name="Unit Tests" href="surefire-report.html"/> + <item name="Test Coverage" href="cobertura/index.html" + target="_blank"/> + <item name="Source Xref" href="xref/index.html" target="_blank"/> + <item name="Test Xref" href="xref-test/index.html" target="_blank"/> + </menu> + + <menu name="Project Info"> + <item name="Mailing Lists" href="/mail-lists.html"/> + <item name="Project Team" href="/team-list.html"/> + <item name="Dependencies" href="/dependencies.html"/> + <item name="Source Repository" href="/source-repository.html"/> + <item name="Issue Tracking" href="/issue-tracking.html"/> + </menu> + + </body> +</site> \ No newline at end of file Deleted: trunk/mud4j-web/src/site/xdoc/navigation.xml =================================================================== --- trunk/mud4j-web/src/site/xdoc/navigation.xml 2007-01-14 00:43:24 UTC (rev 108) +++ trunk/mud4j-web/src/site/xdoc/navigation.xml 2007-01-14 02:44:03 UTC (rev 109) @@ -1,29 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<!DOCTYPE document [ - <!ENTITY links SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-links.xml" > - <!ENTITY projects SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-projects.xml" > - <!ENTITY docs SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-docs.xml" > - <!ENTITY project-info SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-project-info.xml" > - <!ENTITY activity SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-activity.xml" > - <!ENTITY reports SYSTEM "file:../mud4j/src/site/xdoc/navigation-common-reports.xml" > -]> - -<project name="mud4j-web" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://maven.apache.org/maven-navigation-1.0.xsd"> - <title>mud4j-web</title> - - <body> - &links; - - <sitemap/> - - &projects; - &docs; - &activity; - &reports; - &project-info; - - <!-- Google search --> - <search /> - </body> -</project> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |