Author: brett
Date: Sat Nov 10 22:02:45 2007
New Revision: 593848

URL: http://svn.apache.org/viewvc?rev=593848&view=rev
Log:
sample top level site for Archiva

Added:
    maven/archiva/site/pom.xml   (with props)
    maven/archiva/site/src/
    maven/archiva/site/src/site/
    maven/archiva/site/src/site/resources/
    maven/archiva/site/src/site/resources/css/
    maven/archiva/site/src/site/resources/css/site.css   (with props)
    maven/archiva/site/src/site/resources/images/
    maven/archiva/site/src/site/resources/images/archiva-logo-banner.jpg   
(with props)
    maven/archiva/site/src/site/resources/images/screenshot-plugin-details.png  
 (with props)
    maven/archiva/site/src/site/site.xml   (with props)
    maven/archiva/site/src/site/xdoc/
    maven/archiva/site/src/site/xdoc/index.xml   (with props)

Added: maven/archiva/site/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/archiva/site/pom.xml?rev=593848&view=auto
==============================================================================
--- maven/archiva/site/pom.xml (added)
+++ maven/archiva/site/pom.xml Sat Nov 10 22:02:45 2007
@@ -0,0 +1,107 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you 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 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>
+  <parent>
+    <groupId>org.apache.maven.archiva</groupId>
+    <artifactId>archiva-parent</artifactId>
+    <version>1</version>
+    <relativePath>../archiva-parent/pom.xml</relativePath>
+  </parent>
+  <name>Archiva</name>
+  <artifactId>archiva-site</artifactId>
+  <packaging>pom</packaging>
+  <version>1-SNAPSHOT</version>
+  <!-- TODO: required due to inheritence issues -->
+  <mailingLists>
+    <mailingList>
+      <name>Maven Archiva User List</name>
+      <subscribe>[EMAIL PROTECTED]</subscribe>
+      <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
+      <post>[EMAIL PROTECTED]</post>
+      
<archive>http://mail-archives.apache.org/mod_mbox/maven-archiva-users</archive>
+    </mailingList>
+    <mailingList>
+      <name>Maven Archiva Developer List</name>
+      <subscribe>[EMAIL PROTECTED]</subscribe>
+      <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
+      <post>[EMAIL PROTECTED]</post>
+      
<archive>http://mail-archives.apache.org/mod_mbox/maven-archiva-dev</archive>
+    </mailingList>
+    <mailingList>
+      <name>Maven Archiva Commits List</name>
+      <subscribe>[EMAIL PROTECTED]</subscribe>
+      <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
+      <post>[email protected]</post>
+      
<archive>http://mail-archives.apache.org/mod_mbox/maven-archiva-commits</archive>
+    </mailingList>
+    <mailingList>
+      <name>Maven Announcements List</name>
+      <post>[EMAIL PROTECTED]</post>
+      <subscribe>[EMAIL PROTECTED]</subscribe>
+      <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
+      
<archive>http://mail-archives.apache.org/mod_mbox/maven-announce/</archive>
+    </mailingList>
+    <mailingList>
+      <name>Maven Issues List</name>
+      <post>[EMAIL PROTECTED]</post>
+      <subscribe>[EMAIL PROTECTED]</subscribe>
+      <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
+      <archive>http://mail-archives.apache.org/mod_mbox/maven-issues/</archive>
+    </mailingList>
+    <mailingList>
+      <name>Maven Notifications List</name>
+      <post>[EMAIL PROTECTED]</post>
+      <subscribe>[EMAIL PROTECTED]</subscribe>
+      <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
+      
<archive>http://mail-archives.apache.org/mod_mbox/maven-notifications/</archive>
+    </mailingList>
+  </mailingLists>
+  <scm>
+    
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/archiva/site</connection>
+    
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/archiva/site</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/maven/archiva/site</url>
+  </scm>
+  <reporting>
+    <excludeDefaults>true</excludeDefaults>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+        <version>2.0.1</version>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>cim</report>
+              <report>mailing-lists</report>
+              <report>issue-tracking</report>
+              <report>license</report>
+              <report>project-team</report>
+              <report>scm</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>
+

Propchange: maven/archiva/site/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/archiva/site/src/site/resources/css/site.css
URL: 
http://svn.apache.org/viewvc/maven/archiva/site/src/site/resources/css/site.css?rev=593848&view=auto
==============================================================================
--- maven/archiva/site/src/site/resources/css/site.css (added)
+++ maven/archiva/site/src/site/resources/css/site.css Sat Nov 10 22:02:45 2007
@@ -0,0 +1,48 @@
+#leftColumn {
+  display: none !important
+}
+
+#bodyColumn {
+  margin-left: 1.5em
+}
+
+div#rhs {
+  float: right;
+  text-align: center;
+}
+
+div.section {
+  margin-right: 220px;
+}
+
+div.mainBox {
+  margin-left: auto;
+  margin-right: auto;
+  margin-top: 1em;
+  margin-bottom: 1em;
+  width: 75%;
+  background-color: #ccc;
+  padding: 0.4em;
+}
+
+div.mainBox p > a {
+  font-size: 1.5em;
+  color: black;
+}
+
+div.mainBox p > a:hover {
+  color: blue;
+}
+
+.bignumber {
+  float: left;
+  font-size: 5em;
+  color: white;
+  margin-right: 0.2em;
+}
+
+div#downloadBox {
+  display: none;
+  margin-top: 2em;
+}
+

Propchange: maven/archiva/site/src/site/resources/css/site.css
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/archiva/site/src/site/resources/images/archiva-logo-banner.jpg
URL: 
http://svn.apache.org/viewvc/maven/archiva/site/src/site/resources/images/archiva-logo-banner.jpg?rev=593848&view=auto
==============================================================================
Binary file - no diff available.

Propchange: maven/archiva/site/src/site/resources/images/archiva-logo-banner.jpg
------------------------------------------------------------------------------
    svn:mime-type = image/jpeg

Added: 
maven/archiva/site/src/site/resources/images/screenshot-plugin-details.png
URL: 
http://svn.apache.org/viewvc/maven/archiva/site/src/site/resources/images/screenshot-plugin-details.png?rev=593848&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
maven/archiva/site/src/site/resources/images/screenshot-plugin-details.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: maven/archiva/site/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/maven/archiva/site/src/site/site.xml?rev=593848&view=auto
==============================================================================
--- maven/archiva/site/src/site/site.xml (added)
+++ maven/archiva/site/src/site/site.xml Sat Nov 10 22:02:45 2007
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you 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>
+  <!-- TODO: inherited publish, banner, skin -->
+  <bannerLeft>
+    <name>Apache Maven</name>
+    <src>http://maven.apache.org/images/apache-maven-project-2.png</src>
+    <href>http://maven.apache.org/</href>
+  </bannerLeft>
+  <bannerRight>
+    <src>images/archiva-logo-banner.jpg</src>
+  </bannerRight>
+  <publishDate format="dd MMM yyyy" position="right" />
+  <skin>
+    <groupId>org.apache.maven.skins</groupId>
+    <artifactId>maven-stylus-skin</artifactId>
+  </skin>
+  <body>
+    <!-- TODO: inherited breadcrumbs, head, link menu -->
+    <breadcrumbs>
+      <item name="Apache" href="http://www.apache.org/"/>
+      <item name="Maven" href="http://maven.apache.org/"/>
+    </breadcrumbs>
+
+    <head>
+      <script src="http://www.google-analytics.com/urchin.js"; 
type="text/javascript">
+      </script>
+      <script type="text/javascript">
+        _uacct = "UA-140879-1";
+        urchinTracker();
+      </script>
+    </head>
+
+    <menu ref="reports" inherit="bottom"/>
+  </body>
+</project>

Propchange: maven/archiva/site/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: maven/archiva/site/src/site/xdoc/index.xml
URL: 
http://svn.apache.org/viewvc/maven/archiva/site/src/site/xdoc/index.xml?rev=593848&view=auto
==============================================================================
--- maven/archiva/site/src/site/xdoc/index.xml (added)
+++ maven/archiva/site/src/site/xdoc/index.xml Sat Nov 10 22:02:45 2007
@@ -0,0 +1,130 @@
+<?xml version="1.0"?>
+<document>
+  <properties>
+    <title>The Build Artifact Repository Manager</title>
+    <author email="[EMAIL PROTECTED]">Brett Porter</author>
+  </properties>
+  <body>
+    <div id="rhs">
+      <p>
+        <img src="images/screenshot-plugin-details.png" width="200" 
height="127" style="border: 1px solid silver; margin-left: 0.25em; 
margin-bottom: 0.25em" alt="" /><br/>
+        Project Information
+      </p>
+      <!-- TODO: other shots -->
+      <p>
+        <img src="images/screenshot-plugin-details.png" width="200" 
height="127" style="border: 1px solid silver; margin-left: 0.25em; 
margin-bottom: 0.25em" alt="" /><br/>
+        Search
+      </p>
+    </div>
+    <section name="Archiva: The Build Artifact Repository Manager">
+      <p>
+         Archiva is a build artifact repository manager for use with
+         build tools such as <a href="http://maven.apache.org";>Maven</a>,
+         <a href="http://maven.apache.org/continuum/";>Continuum</a>,
+         and <a href="http://ant.apache.org/";>ANT</a>.
+      </p>
+
+      <p>
+        With Archiva, you can share artifacts with other developers and manage 
the associated
+        security required, aggregate (proxy) content from remote artifact 
repositories, visualise
+        your artifact utilisation with search, browse and reporting, and 
perform routine
+        maintenance on your repositories.
+      </p>
+
+      <div class="mainBox">
+        <span class="bignumber">1</span>
+
+        <p>
+          <!-- TODO -->
+          <a href="#">Take a look around</a>
+        </p>
+        <p>
+          Try out the live demo, or take a look at the screenshots in the 
feature walkthrough.
+        </p>
+        <br style="clear: left" />
+      </div>
+      <div class="mainBox" 
onmouseover="document.getElementById('downloadBox').style.display='block';" 
onmouseout="document.getElementById('downloadBox').style.display='none';">
+        <span class="bignumber">2</span>
+
+        <p>
+          <a href="download.html">Download Archiva</a>
+        </p>
+        <p>
+          <!-- TODO: use velocity and proprty -->
+          Download the latest release (1.0-beta-3; released 1 Nov 2007)
+        </p>
+        <div id="downloadBox">
+          <table>
+            <tr>
+              <th> </th>
+              <th>Mirrors</th>
+              <th>Checksum</th>
+              <th>Signature</th>
+            </tr>
+            <tr>
+              <td>Archiva 1.0-beta-3 Standalone</td>
+              <td><a 
href="http://www.apache.org/dyn/closer.cgi/maven/binaries/apache-archiva-1.0-beta-3-bin.tar.gz";>tar.gz</a></td>
+              <td><a 
href="http://www.apache.org/dist/maven/binaries/apache-archiva-1.0-beta-3-bin.tar.gz.md5";>md5</a></td>
+              <td><a 
href="http://www.apache.org/dist/maven/binaries/apache-archiva-1.0-beta-3-bin.tar.gz.asc";>asc</a></td>
+            </tr>
+            <tr>
+              <td>Archiva 1.0-beta-3 WAR</td>
+              <td><a 
href="http://www.apache.org/dyn/closer.cgi/maven/binaries/apache-archiva-1.0-beta-3.war";>war</a></td>
+              <td><a 
href="http://www.apache.org/dist/maven/binaries/apache-archiva-1.0-beta-3.war.md5";>md5</a></td>
+              <td><a 
href="http://www.apache.org/dist/maven/binaries/apache-archiva-1.0-beta-3.war.asc";>asc</a></td>
+            </tr>
+            <tr>
+              <td>Archiva 1.0-beta-3 Documentation</td>
+              <td><a 
href="http://www.apache.org/dyn/closer.cgi/maven/binaries/apache-archiva-1.0-beta-3-docs.zip";>docs
 zip</a></td>
+              <td><a 
href="http://www.apache.org/dist/maven/binaries/apache-archiva-1.0-beta-3-docs.zip.md5";>md5</a></td>
+              <td><a 
href="http://www.apache.org/dist/maven/binaries/apache-archiva-1.0-beta-3-docs.zip.asc";>asc</a></td>
+            </tr>
+            <tr>
+              <td>Archiva 1.0-beta-3 Sources</td>
+              <td><a 
href="http://www.apache.org/dyn/closer.cgi/maven/source/apache-archiva-1.0-beta-3-src.zip";>source
 zip</a></td>
+              <td><a 
href="http://www.apache.org/dist/maven/source/apache-archiva-1.0-beta-3-src.zip.md5";>md5</a></td>
+              <td><a 
href="http://www.apache.org/dist/maven/source/apache-archiva-1.0-beta-3-src.zip.asc";>asc</a></td>
+            </tr>
+          </table> 
+        </div>
+        <br style="clear: left" />
+      </div>
+      <div class="mainBox">
+        <span class="bignumber">3</span>
+
+        <p>
+          <!-- TODO -->
+          <a href="#">Take it for a test drive</a>
+        </p>
+        <p>
+          Use the simple out of the box configuration and quick start guide to 
try it for yourself.
+        </p>
+        <br style="clear: left" />
+      </div>
+      <div class="mainBox">
+        <span class="bignumber">4</span>
+
+        <p>
+          <!-- TODO -->
+          <a href="#">Learn more</a>
+        </p>
+        <p>
+          Read the users guide and reference documentation to get the most out 
of your new repository manager.
+        </p>
+        <br style="clear: left" />
+      </div>
+      <div class="mainBox">
+        <span class="bignumber">5</span>
+
+        <p>
+          <!-- TODO -->
+          <a href="#">Get involved</a>
+        </p>
+        <p>
+          Get support from the mailing lists and wiki, file issues, and even 
get involved in the development.
+        </p>
+        <br style="clear: left" />
+      </div>
+    </section>
+  </body>
+</document>

Propchange: maven/archiva/site/src/site/xdoc/index.xml
------------------------------------------------------------------------------
    svn:eol-style = native


Reply via email to