You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by br...@apache.org on 2006/12/01 02:47:29 UTC

svn commit: r481127 - in /maven/continuum/trunk/design/white-site: ./ src/ src/site/ src/site/resources/ src/site/resources/images/ src/site/xdoc/ src/site/xdoc/admin/

Author: brett
Date: Thu Nov 30 17:47:26 2006
New Revision: 481127

URL: http://svn.apache.org/viewvc?view=rev&rev=481127
Log:
Create the new white site

Added:
    maven/continuum/trunk/design/white-site/   (with props)
    maven/continuum/trunk/design/white-site/pom.xml   (with props)
    maven/continuum/trunk/design/white-site/src/
    maven/continuum/trunk/design/white-site/src/site/
    maven/continuum/trunk/design/white-site/src/site/resources/
    maven/continuum/trunk/design/white-site/src/site/resources/images/
    maven/continuum/trunk/design/white-site/src/site/resources/images/continuum_logo_75.gif
      - copied unchanged from r481059, maven/continuum/trunk/continuum-webapp/src/main/webapp/images/continuum_logo_75.gif
    maven/continuum/trunk/design/white-site/src/site/site.xml   (with props)
    maven/continuum/trunk/design/white-site/src/site/xdoc/
    maven/continuum/trunk/design/white-site/src/site/xdoc/admin/
    maven/continuum/trunk/design/white-site/src/site/xdoc/admin/appearance.xml   (with props)
    maven/continuum/trunk/design/white-site/src/site/xdoc/admin/edit-company-pom.xml   (with props)
    maven/continuum/trunk/design/white-site/src/site/xdoc/admin/settings.xml   (with props)
    maven/continuum/trunk/design/white-site/src/site/xdoc/index.xml   (with props)

Propchange: maven/continuum/trunk/design/white-site/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Thu Nov 30 17:47:26 2006
@@ -0,0 +1,3 @@
+*.iml
+*.ipr
+*.iws

Added: maven/continuum/trunk/design/white-site/pom.xml
URL: http://svn.apache.org/viewvc/maven/continuum/trunk/design/white-site/pom.xml?view=auto&rev=481127
==============================================================================
--- maven/continuum/trunk/design/white-site/pom.xml (added)
+++ maven/continuum/trunk/design/white-site/pom.xml Thu Nov 30 17:47:26 2006
@@ -0,0 +1,14 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.maven.continuum</groupId>
+  <artifactId>white-site</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>pom</packaging>
+  <distributionManagement>
+    <site>
+      <id>apache.website</id>
+      <url>scp://people.apache.org/home/brett/public_html/continuum-white-site</url>
+    </site>
+  </distributionManagement>
+</project>

Propchange: maven/continuum/trunk/design/white-site/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/continuum/trunk/design/white-site/src/site/site.xml
URL: http://svn.apache.org/viewvc/maven/continuum/trunk/design/white-site/src/site/site.xml?view=auto&rev=481127
==============================================================================
--- maven/continuum/trunk/design/white-site/src/site/site.xml (added)
+++ maven/continuum/trunk/design/white-site/src/site/site.xml Thu Nov 30 17:47:26 2006
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  ~ Copyright 2005-2006 The Apache Software Foundation.
+  ~
+  ~ 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.
+  -->
+<project name="Continuum">
+  <bannerLeft>
+    <src>images/continuum_logo_75.gif</src>
+  </bannerLeft>
+  <bannerRight>
+    <src>http://www.apache.org/images/asf_logo_wide.gif</src>
+  </bannerRight>
+  <skin>
+    <groupId>org.apache.maven.skins</groupId>
+    <artifactId>maven-application-skin</artifactId>
+  </skin>
+  <publishDate position="none"/>
+  <body>
+    <breadcrumbs>
+      <item name="Login/Register" href="/admin/login.html"/>
+    </breadcrumbs>
+    <links>
+      <item name="Continuum" href="http://maven.apache.org/continuum/"/>
+      <item name="Maven" href="http://maven.apache.org/"/>
+      <item name="Apache" href="http://www.apache.org/"/>
+    </links>
+    <menu name="Projects">
+      <item name="Project Group Summary" href="/index.html"/>
+      <!-- TODO: this should just be 'add project', and have a simple first page that can figure out what to do -->
+      <item name="Add Maven 2.x Project" href="/add-maven-2.html" />
+      <item name="Add Maven 1.x Project" href="/add-maven-1.html" />
+      <item name="Add Ant Project" href="/add-ant.html" />
+      <item name="Add Other Project" href="/add-other.html" />
+    </menu>
+    <menu name="Administration">
+      <item name="Settings" href="/admin/settings.html" />
+      <item name="Appearance" href="/admin/appearance.html" />
+      <item name="Schedules" href="/admin/schedules.html"/>
+      <item name="Users" href="" /> <!-- TODO: link in to p-sec white site -->
+    </menu>
+    <menu name="Legend">
+      <!-- Legend goes here -->
+    </menu>
+  </body>
+</project>

Propchange: maven/continuum/trunk/design/white-site/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/continuum/trunk/design/white-site/src/site/xdoc/admin/appearance.xml
URL: http://svn.apache.org/viewvc/maven/continuum/trunk/design/white-site/src/site/xdoc/admin/appearance.xml?view=auto&rev=481127
==============================================================================
--- maven/continuum/trunk/design/white-site/src/site/xdoc/admin/appearance.xml (added)
+++ maven/continuum/trunk/design/white-site/src/site/xdoc/admin/appearance.xml Thu Nov 30 17:47:26 2006
@@ -0,0 +1,70 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  ~ Copyright 2005-2006 The Apache Software Foundation.
+  ~
+  ~ 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.
+  -->
+
+<document>
+  <properties>
+    <title>Continuum</title>
+  </properties>
+  <body>
+    <h1>Appearance</h1>
+
+    <h2>Company Details</h2>
+
+    <p>
+      Enter the details of the company super POM below. If it exists, the organization name, URL and logo will be read
+      from it.
+    </p>
+    <form action="../index.html">
+    <table>
+      <tr>
+        <th>Group ID</th>
+        <td><input type="text" /></td>
+      </tr>
+      <tr>
+        <th>Artifact ID</th>
+        <td><input type="text" /></td>
+      </tr>
+      <tr>
+        <td></td>
+        <td><input type="submit" value="Save" /></td>
+      </tr>
+    </table>
+    <div style="float: right"><p><a href="edit-company-pom.html">Edit Company POM</a></p></div>
+    <h3>POM Information</h3>
+    <table>
+      <tr>
+        <th>Name</th>
+        <td>Apache Software Foundation</td>
+      </tr>
+      <tr>
+        <th>URL</th>
+        <td><a href="http://www.apache.org">
+          <code>http://www.apache.org</code>
+        </a></td>
+      </tr>
+      <tr>
+        <th>Logo URL</th>
+        <td>
+          <code>http://www.apache.org/images/asf_logo_wide.gif</code>
+        </td>
+      </tr>
+    </table>
+    </form>
+
+  </body>
+</document>
+

Propchange: maven/continuum/trunk/design/white-site/src/site/xdoc/admin/appearance.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/continuum/trunk/design/white-site/src/site/xdoc/admin/edit-company-pom.xml
URL: http://svn.apache.org/viewvc/maven/continuum/trunk/design/white-site/src/site/xdoc/admin/edit-company-pom.xml?view=auto&rev=481127
==============================================================================
--- maven/continuum/trunk/design/white-site/src/site/xdoc/admin/edit-company-pom.xml (added)
+++ maven/continuum/trunk/design/white-site/src/site/xdoc/admin/edit-company-pom.xml Thu Nov 30 17:47:26 2006
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  ~ Copyright 2005-2006 The Apache Software Foundation.
+  ~
+  ~ 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.
+  -->
+
+<document>
+  <properties>
+    <title>Continuum</title>
+  </properties>
+  <body>
+    <h1>Edit Company POM</h1>
+    <form action="appearance.html">
+    <table>
+      <tr>
+        <th>Group ID</th>
+        <td><input type="text" /></td>
+      </tr>
+      <tr>
+        <th>Artifact ID</th>
+        <td><input type="text" /></td>
+      </tr>
+      <tr>
+        <th>Version</th>
+        <td>2 <i>(The version will automatically be incremented when you save this form)</i></td>
+      </tr>
+      <tr>
+        <td></td>
+        <td><h2>Organization</h2></td>
+      </tr>
+      <tr>
+        <th>Name</th>
+        <td><input type="text" size="40" /></td>
+      </tr>
+      <tr>
+        <th>URL</th>
+        <td><input type="text" size="70" /></td>
+      </tr>
+      <tr>
+        <th>Logo URL</th>
+        <td><input type="text" size="70"/></td>
+      </tr>
+      <tr>
+        <td></td>
+        <td><input type="submit" value="Save" /></td>
+      </tr>
+    </table>
+    </form>
+  </body>
+</document>
+

Propchange: maven/continuum/trunk/design/white-site/src/site/xdoc/admin/edit-company-pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/continuum/trunk/design/white-site/src/site/xdoc/admin/settings.xml
URL: http://svn.apache.org/viewvc/maven/continuum/trunk/design/white-site/src/site/xdoc/admin/settings.xml?view=auto&rev=481127
==============================================================================
--- maven/continuum/trunk/design/white-site/src/site/xdoc/admin/settings.xml (added)
+++ maven/continuum/trunk/design/white-site/src/site/xdoc/admin/settings.xml Thu Nov 30 17:47:26 2006
@@ -0,0 +1,59 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  ~ Copyright 2005-2006 The Apache Software Foundation.
+  ~
+  ~ 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.
+  -->
+
+<document>
+  <properties>
+    <title>Continuum</title>
+  </properties>
+  <body>
+    <h1>Settings</h1>
+
+    <form action="../index.html">
+    <table>
+      <tr>
+        <th>Working Directory</th>
+        <td><input type="text" size="100" /><br/>
+          Enter the working directory of the Continuum web application
+        </td>
+      </tr>
+      <tr>
+        <th>Build Output Directory</th>
+        <td><input type="text" size="100" /><br/>
+          Enter the build output directory of the Continuum web application
+        </td>
+      </tr>
+      <tr>
+        <th>Deployment Repository Directory</th>
+        <td><input type="text" size="100" /><br/>
+          Enter the deployment repository directory of the Continuum web application
+        </td>
+      </tr>
+      <tr>
+        <th>Base URL</th>
+        <td><input type="text" size="100" /><br/>
+          Enter the base URL for the Continuum web application
+        </td>
+      </tr>
+      <tr>
+        <td></td>
+        <td><input type="submit" value="Save" /></td>
+      </tr>
+    </table>
+    </form>
+  </body>
+</document>
+

Propchange: maven/continuum/trunk/design/white-site/src/site/xdoc/admin/settings.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/continuum/trunk/design/white-site/src/site/xdoc/index.xml
URL: http://svn.apache.org/viewvc/maven/continuum/trunk/design/white-site/src/site/xdoc/index.xml?view=auto&rev=481127
==============================================================================
--- maven/continuum/trunk/design/white-site/src/site/xdoc/index.xml (added)
+++ maven/continuum/trunk/design/white-site/src/site/xdoc/index.xml Thu Nov 30 17:47:26 2006
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  ~ Copyright 2005-2006 The Apache Software Foundation.
+  ~
+  ~ 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.
+  -->
+
+<document>
+  <properties>
+    <title>Continuum</title>
+  </properties>
+  <body>
+    <h1>TODO...</h1>
+
+  </body>
+</document>
+

Propchange: maven/continuum/trunk/design/white-site/src/site/xdoc/index.xml
------------------------------------------------------------------------------
    svn:eol-style = native