[LOGBack-dev] svn commit: r160 - in logback/topLevel/trunk: . src src/site src/site/xdocTemplates
noreply.seb at qos.ch
noreply.seb at qos.ch
Wed Jul 19 20:32:27 CEST 2006
Author: seb
Date: Wed Jul 19 20:32:26 2006
New Revision: 160
Added:
logback/topLevel/trunk/pom.xml
logback/topLevel/trunk/src/
logback/topLevel/trunk/src/site/
logback/topLevel/trunk/src/site/site.xml
logback/topLevel/trunk/src/site/xdocTemplates/
logback/topLevel/trunk/src/site/xdocTemplates/bugreport.xml
logback/topLevel/trunk/src/site/xdocTemplates/download.xml
logback/topLevel/trunk/src/site/xdocTemplates/index.xml
logback/topLevel/trunk/src/site/xdocTemplates/mailinglist.xml
logback/topLevel/trunk/src/site/xdocTemplates/news.xml
Modified:
logback/topLevel/trunk/ (props changed)
Log:
first version of topLevel site; build with maven + skin
Added: logback/topLevel/trunk/pom.xml
==============================================================================
--- (empty file)
+++ logback/topLevel/trunk/pom.xml Wed Jul 19 20:32:26 2006
@@ -0,0 +1,64 @@
+<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>ch.qos.logback</groupId>
+ <artifactId>lb-mainSite</artifactId>
+ <packaging>jar</packaging>
+ <version>0.1-SNAPSHOT</version>
+ <name>LOGBack Main</name>
+
+ <url>http://logback.qos.ch</url>
+
+ <organization>
+ <name>QOS.ch</name>
+ <url>http://www.qos.ch</url>
+ </organization>
+
+
+ <build>
+
+ <resources>
+ <resource>
+ <directory>src/site/xdocTemplates</directory>
+ <!--
+ We're saving filtered xdocs in a temporary folder
+ and telling the site plug in to get the xdocs there.
+ -->
+ <targetPath>generated-site</targetPath>
+ <filtering>true</filtering>
+ </resource>
+ </resources>
+ </build>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-site-plugin</artifactId>
+ <configuration>
+ <xdocDirectory>
+ ${project.build.outputDirectory}/generated-site
+ </xdocDirectory>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>
+ maven-project-info-reports-plugin
+ </artifactId>
+ <reportSets>
+ <reportSet>
+ <reports>
+ <report>index</report>
+ </reports>
+ </reportSet>
+ </reportSets>
+ </plugin>
+ </plugins>
+ </reporting>
+
+</project>
\ No newline at end of file
Added: logback/topLevel/trunk/src/site/site.xml
==============================================================================
--- (empty file)
+++ logback/topLevel/trunk/src/site/site.xml Wed Jul 19 20:32:26 2006
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<project name="LOGBack Main Site">
+
+ <skin>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>lb-skin</artifactId>
+ <version>0.1-SNAPSHOT</version>
+ </skin>
+
+ <publishDate position="navigation-bottom" format="dd-MM-yyyy"/>
+
+ <bannerLeft>
+ <name>${project.name}</name>
+ <src>/images/logos/lblogo.jpg</src>
+ </bannerLeft>
+
+ <body>
+ <links>
+ <item name="Core Module" href="http://logback.qos.ch/core" />
+ <item name="Classic Module" href="http://logback.qos.ch/classic/"/>
+ <item name="Access Module" href="http://logback.qos.ch/access/"/>
+ </links>
+
+ <menu name="${project.name}">
+ <item name="Introduction" href="index.html"/>
+ <item name="News" href="news.html" />
+ <item name="Download" href="download.html" />
+ <item name="Mailing Lists" href="mailinglist.html" />
+ <item name="Bug Report" href="bugreport.html"/>
+ </menu>
+ </body>
+</project>
\ No newline at end of file
Added: logback/topLevel/trunk/src/site/xdocTemplates/bugreport.xml
==============================================================================
--- (empty file)
+++ logback/topLevel/trunk/src/site/xdocTemplates/bugreport.xml Wed Jul 19 20:32:26 2006
@@ -0,0 +1,14 @@
+<?xml version="1.0"?>
+<document>
+
+<body>
+<h2>Bug reporting
+</h2>
+
+
+<p>No bug tracking system is defined yet. Please check back at a later date.</p>
+
+
+
+</body>
+</document>
\ No newline at end of file
Added: logback/topLevel/trunk/src/site/xdocTemplates/download.xml
==============================================================================
--- (empty file)
+++ logback/topLevel/trunk/src/site/xdocTemplates/download.xml Wed Jul 19 20:32:26 2006
@@ -0,0 +1,32 @@
+<?xml version="1.0"?>
+<document>
+
+ <properties>
+ <author email="ceki at qos ddoott ch ">Ceki Gulcu</author>
+ <title>${pom.name} download</title>
+ </properties>
+
+ <body>
+ <h2>Download links</h2>
+
+ <p>
+ LOGBack Modules can be downloaded by visiting their specific
+ download pages:
+ </p>
+
+ <p>
+ <a href="core/download.html">Core Module download page</a>
+ </p>
+ <p>
+ <a href="classic/download.html">
+ Classic Module download page
+ </a>
+ </p>
+ <p>
+ <a href="access/download.html">
+ Access Module download page
+ </a>
+ </p>
+
+ </body>
+</document>
Added: logback/topLevel/trunk/src/site/xdocTemplates/index.xml
==============================================================================
--- (empty file)
+++ logback/topLevel/trunk/src/site/xdocTemplates/index.xml Wed Jul 19 20:32:26 2006
@@ -0,0 +1,42 @@
+<?xml version="1.0"?>
+<document>
+
+ <properties>
+ <author email="ceki at qos ddoott ch ">Ceki Gulcu</author>
+ <title>${pom.name} download</title>
+ </properties>
+
+ <body>
+
+ <h2>LOGBack Project</h2>
+ <p>
+ LOGBack is intended as a successor to the popular log4j
+ project. It was also designed by Ceki G�lc�, the founder of
+ the log4j project. It builds upon exerience gained in
+ building industrial-strength logging systems going back as
+ far as 1999.
+ </p>
+ <p>
+ LOGBack's basic architecture is sufficiently generic so as
+ to apply under different circumstances. At present time,
+ LOGBack is divided into three modules, Core, Classic and
+ Access.
+ </p>
+ <p>
+ The Core module lays the groundwork for the other two
+ modules. The Classic module can be assimilated to an
+ improved version of log4j. LOGBack Classic natively
+ implements the
+ <a href="http://www.slf4j.org">SLF4J API</a>
+ so that you can readily switch back and forth between
+ LOGBack and other logging systems such as log4j or JDK14
+ Logging.
+
+ The Access module integrates with Servlet containers to
+ provide HTPP-access log functionality. Note that you can
+ easily build your own modules on top of the Core module.
+ </p>
+ <p>Please stay tuned for further updates on this web-page.</p>
+
+ </body>
+</document>
Added: logback/topLevel/trunk/src/site/xdocTemplates/mailinglist.xml
==============================================================================
--- (empty file)
+++ logback/topLevel/trunk/src/site/xdocTemplates/mailinglist.xml Wed Jul 19 20:32:26 2006
@@ -0,0 +1,127 @@
+<?xml version="1.0"?>
+<document>
+
+ <properties>
+ <author email="ceki at qos ddoott ch ">Ceki Gulcu</author>
+ <title>${pom.name} download</title>
+ </properties>
+
+ <body>
+ <h2>Project Mailing Lists</h2>
+
+ <p>
+ A mailing list is an electronic discussion forum that anyone
+ can subscribe to. When someone sends an email message to the
+ mailing list, a copy of that message is broadcast to
+ everyone who is subscribed to that mailing list. Mailing
+ lists provide a simple and effective communication
+ mechanism. With potentially thousands of subscribers, there
+ is a common set of etiquette guidelines that you should
+ observe. Please keep on reading.
+ </p>
+ <h3>Respect the mailing list type</h3>
+ <p>
+ The "User" lists where you can send questions and comments
+ about configuration, setup, usage and other "user" types of
+ questions. The "Developer" lists where you can send
+ questions and comments about the actual software source code
+ and general "development" types of questions.
+ </p>
+ <p>
+ Some questions are appropriate for posting on both the
+ "user" and the "developer" lists. In this case, pick one and
+ only one. Do not cross post.
+ </p>
+ <p>
+ Please do your best to ensure that you are not sending HTML
+ or "Stylelized" email to the list. If you are using Outlook
+ or Outlook Express or Eudora, chances are that you are
+ sending HTML email by default. There is usually a setting
+ that will allow you to send "Plain Text" email.
+ </p>
+
+
+ <table class="bodyTable">
+ <tr class="a">
+ <th>Name</th>
+ <th>Subscribe</th>
+ <th>Unsubscribe</th>
+ <th>Post</th>
+ <th>Archive</th>
+ </tr>
+ <tr class="b">
+ <td>LOGBack Announce List</td>
+ <td>
+ <a
+ href="http://qos.ch/mailman/listinfo/logback-announce">
+ Subscribe
+ </a>
+ </td>
+ <td>
+ <a
+ href="http://qos.ch/mailman/options/logback-announce">
+ Unsubscribe
+ </a>
+ </td>
+ <td>
+ <a href="mailto:logback-announce at qos.ch">Post</a>
+ </td>
+ <td>
+ <a
+ href="http://www.qos.ch/pipermail/logback-announce/">
+ www.qos.ch
+ </a>
+ </td>
+ </tr>
+ <tr class="a">
+ <td>LOGBack User List</td>
+ <td>
+ <a
+ href="http://qos.ch/mailman/listinfo/logback-user">
+ Subscribe
+ </a>
+ </td>
+ <td>
+ <a
+ href="http://qos.ch/mailman/options/logback-user">
+ Unsubscribe
+ </a>
+ </td>
+ <td>
+ <a href="mailto:logback-user at qos.ch">Post</a>
+ </td>
+ <td>
+ <a
+ href="http://www.qos.ch/pipermail/logback-user/">
+ www.qos.ch
+ </a>
+ </td>
+ </tr>
+ <tr class="b">
+ <td>LOGBack Dev List</td>
+ <td>
+ <a
+ href="http://qos.ch/mailman/listinfo/logback-dev">
+ Subscribe
+ </a>
+ </td>
+ <td>
+ <a
+ href="http://qos.ch/mailman/options/logback-dev">
+ Unsubscribe
+ </a>
+ </td>
+ <td>
+ <a href="mailto:logback-dev at qos.ch">Post</a>
+ </td>
+ <td>
+ <a
+ href="http://www.qos.ch/pipermail/logback-dev/">
+ www.qos.ch
+ </a>
+ </td>
+ </tr>
+ </table>
+ </div>
+ </body>
+</document>
Added: logback/topLevel/trunk/src/site/xdocTemplates/news.xml
==============================================================================
--- (empty file)
+++ logback/topLevel/trunk/src/site/xdocTemplates/news.xml Wed Jul 19 20:32:26 2006
@@ -0,0 +1,36 @@
+<?xml version="1.0"?>
+<document>
+
+ <properties>
+ <author email="ceki at qos ddoott ch ">Ceki Gulcu</author>
+ <title>${pom.name} download</title>
+ </properties>
+
+ <body>
+ <h2>LOGBack News</h2>
+
+ <p>Here are the last news about the project.</p>
+
+ <h3>July 20th, 2006 - 0.1 SNAPSHOT version available</h3>
+ <p>
+ A first snapshot 0.1 version of all three modules of LOGBack
+ is now available.
+ </p>
+ <p>
+ The archives containing source code and binaries of all
+ modules are downloadable from the corresponding download
+ pages.
+ </p>
+
+ <hr width="50%" align="center" />
+
+ <h3>February 9th, 2006 - LOGBack web-site goes live</h3>
+ <p>
+ The LOGBack web-site goes live on the 9th of February. At
+ its present state, it is pretty primitive but updates will
+ follow.
+ </p>
+
+
+ </body>
+</document>
More information about the logback-dev
mailing list