Author: ceki Date: Wed Aug 16 22:13:35 2006 New Revision: 622 Added: slf4j/trunk/slf4j-skin/ slf4j/trunk/slf4j-skin/pom.xml slf4j/trunk/slf4j-skin/src/ slf4j/trunk/slf4j-skin/src/main/ slf4j/trunk/slf4j-skin/src/main/resources/ slf4j/trunk/slf4j-skin/src/main/resources/META-INF/ slf4j/trunk/slf4j-skin/src/main/resources/META-INF/maven/ slf4j/trunk/slf4j-skin/src/main/resources/META-INF/maven/site.vm slf4j/trunk/slf4j-skin/src/main/resources/css/ slf4j/trunk/slf4j-skin/src/main/resources/css/site.css slf4j/trunk/slf4j-skin/src/main/resources/images/ slf4j/trunk/slf4j-skin/src/main/resources/images/logos/ slf4j/trunk/slf4j-skin/src/main/resources/images/logos/qosLogo.png (contents, props changed) slf4j/trunk/slf4j-skin/src/main/resources/images/logos/slf4j-logo.jpg (contents, props changed) slf4j/trunk/slf4j-skin/src/main/resources/images/logos/valid-html401.png (contents, props changed) Log: added required skin
Added: slf4j/trunk/slf4j-skin/pom.xml ============================================================================== --- (empty file) +++ slf4j/trunk/slf4j-skin/pom.xml Wed Aug 16 22:13:35 2006 @@ -0,0 +1,28 @@ +<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"> + + <parent> + <groupId>org.slf4j</groupId> + <artifactId>slf4j</artifactId> + <version>1.1.0</version> + </parent> + + <modelVersion>4.0.0</modelVersion> + + <groupId>org.slf4j</groupId> + <artifactId>slf4j-skin</artifactId> + <version>${parent.version}</version> + <packaging>jar</packaging> + <name>SLF4J Website Skin</name> + + <organization> + <name>slf4j.org</name> + <url>http://www.slf4j.org</url> + </organization> + + + <build> + </build> + +</project> \ No newline at end of file Added: slf4j/trunk/slf4j-skin/src/main/resources/META-INF/maven/site.vm ============================================================================== --- (empty file) +++ slf4j/trunk/slf4j-skin/src/main/resources/META-INF/maven/site.vm Wed Aug 16 22:13:35 2006 @@ -0,0 +1,333 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +#macro ( banner $banner $id ) + #if ( $banner ) + #if( $banner.href ) + <a href="$banner.href" id="$id"> + #else + <span id="$id"> + #end + + #if( $banner.src ) + #set ( $src = $banner.src ) + #if ( ! ( $src.toLowerCase().startsWith("http") || $src.toLowerCase().startsWith("https") ) ) + #set ( $src = $PathTool.calculateLink( $src, $relativePath ) ) + #set ( $src = $src.replaceAll( "\\", "/" ) ) + #end + #if ( $banner.alt ) + #set ( $alt = $banner.alt ) + #else + #set ( $alt = "" ) + #end + <img src="$src" alt="$alt" /> + #else + $banner.name + #end + + #if( $banner.href ) + </a> + #else + </span> + #end + #end +#end + +#macro ( links $links ) + #set ( $counter = 0 ) + #foreach( $item in $links ) + #set ( $counter = $counter + 1 ) + #set ( $currentItemHref = $PathTool.calculateLink( $item.href, $relativePath ) ) + #set ( $currentItemHref = $currentItemHref.replaceAll( "\\", "/" ) ) + <a href="$currentItemHref">$item.name</a> + #if ( $links.size() > $counter ) + | + #end + #end +#end + +#macro ( breadcrumbs $breadcrumbs ) + #set ( $counter = 0 ) + #foreach( $item in $breadcrumbs ) + #set ( $counter = $counter + 1 ) + #set ( $currentItemHref = $PathTool.calculateLink( $item.href, $relativePath ) ) + #set ( $currentItemHref = $currentItemHref.replaceAll( "\\", "/" ) ) + + #if ( $currentItemHref == $alignedFileName || $currentItemHref == "" ) + $item.name + #else + <a href="$currentItemHref">$item.name</a> + #end + #if ( $breadcrumbs.size() > $counter ) + > + #end + #end +#end + +#macro ( displayTree $display $item ) + #if ( $item && $item.items && $item.items.size() > 0 ) + #foreach( $subitem in $item.items ) + #set ( $subitemHref = $PathTool.calculateLink( $subitem.href, $relativePath ) ) + #set ( $subitemHref = $subitemHref.replaceAll( "\\", "/" ) ) + + #if ( $alignedFileName == $subitemHref ) + #set ( $display = true ) + #end + + #displayTree( $display $subitem ) + #end + #end +#end + +#macro ( menuItem $item ) + #set ( $collapse = "none" ) + #set ( $currentItemHref = $PathTool.calculateLink( $item.href, $relativePath ) ) + #set ( $currentItemHref = $currentItemHref.replaceAll( "\\", "/" ) ) + + #if ( $item && $item.items && $item.items.size() > 0 ) + #if ( $item.collapse == false ) + #set ( $collapse = "expanded" ) + #else + ## By default collapsed + #set ( $collapse = "collapsed" ) + #end + + #set ( $display = false ) + #displayTree( $display $item ) + + #if ( $alignedFileName == $currentItemHref || $display ) + #set ( $collapse = "expanded" ) + #end + #end + <li class="$collapse"> + #if ( $item.img ) + #if ( ! ( $item.img.toLowerCase().startsWith("http") || $item.img.toLowerCase().startsWith("https") ) ) + #set ( $src = $PathTool.calculateLink( $item.img, $relativePath ) ) + #set ( $src = $item.img.replaceAll( "\\", "/" ) ) + <img src="$src"/> + #else + <img src="$item.img" align="absbottom" style="border-width: 0"/> + #end + #end + #if ( $alignedFileName == $currentItemHref ) + <strong>$item.name</strong> + #else + <a href="$currentItemHref">$item.name</a> + #end + #if ( $item && $item.items && $item.items.size() > 0 ) + #if ( $collapse == "expanded" ) + <ul> + #foreach( $subitem in $item.items ) + #menuItem( $subitem ) + #end + </ul> + #end + #end + </li> +#end + +#macro ( mainMenu $menus ) + #foreach( $menu in $menus ) + #if ( $menu.name ) + <h5>$menu.name</h5> + #end + <ul> + #foreach( $item in $menu.items ) + #menuItem( $item ) + #end + </ul> + #end +#end + +#macro ( copyright ) + #if ( $project ) + #set ( $currentYear = ${currentDate.year} + 1900 ) + + #if ( ${project.inceptionYear} && ( ${project.inceptionYear} != ${currentYear.toString()} ) ) + ${project.inceptionYear}-${currentYear} + #else + ${currentYear} + #end + + #if ( ${project.organization} && ${project.organization.name} ) + ${project.organization.name} + #end + #end +#end + +#macro ( publishDate $position $publishDate $version ) + #if ( $publishDate && $publishDate.format ) + #set ( $format = $publishDate.format ) + #else + #set ( $format = "MM/dd/yyyy" ) + #end + + $dateFormat.applyPattern( $format ) + + #set ( $dateToday = $dateFormat.format( $currentDate ) ) + + #if ( $publishDate && $publishDate.position ) + #set ( $datePosition = $publishDate.position ) + #else + #set ( $datePosition = "left" ) + #end + + #if ( $version ) + #if ( $version.position ) + #set ( $versionPosition = $version.position ) + #else + #set ( $versionPosition = "left" ) + #end + #end + + #set ( $breadcrumbs = $decoration.body.breadcrumbs ) + + #if ( $datePosition.equalsIgnoreCase( $position ) ) + #if ( ( $datePosition.equalsIgnoreCase( "right" ) ) || ( $datePosition.equalsIgnoreCase( "bottom" ) ) ) + | $i18n.getString( "site-renderer", $locale, "template.lastpublished" ): $dateToday + #if ( $versionPosition.equalsIgnoreCase( $position ) ) + | $i18n.getString( "site-renderer", $locale, "template.version" ): ${project.version} + #end + #elseif ( ( $datePosition.equalsIgnoreCase( "navigation-bottom" ) ) || ( $datePosition.equalsIgnoreCase( "navigation-top" ) ) ) + <div id="lastPublished"> + $i18n.getString( "site-renderer", $locale, "template.lastpublished" ): $dateToday + #if ( $versionPosition.equalsIgnoreCase( $position ) ) + | $i18n.getString( "site-renderer", $locale, "template.version" ): ${project.version} + #end + </div> + #elseif ( $datePosition.equalsIgnoreCase("left") ) + <div class="xleft"> + $i18n.getString( "site-renderer", $locale, "template.lastpublished" ): $dateToday + #if ( $versionPosition.equalsIgnoreCase( $position ) ) + | $i18n.getString( "site-renderer", $locale, "template.version" ): ${project.version} + #end + #if ( $breadcrumbs && $breadcrumbs.size() > 0 ) + | #breadcrumbs( $breadcrumbs ) + #end + </div> + #end + #elseif ( $versionPosition.equalsIgnoreCase( $position ) ) + #if ( ( $versionPosition.equalsIgnoreCase( "right" ) ) || ( $versionPosition.equalsIgnoreCase( "bottom" ) ) ) + | $i18n.getString( "site-renderer", $locale, "template.version" ): ${project.version} + #elseif ( ( $versionPosition.equalsIgnoreCase( "navigation-bottom" ) ) || ( $versionPosition.equalsIgnoreCase( "navigation-top" ) ) ) + <div id="lastPublished"> + $i18n.getString( "site-renderer", $locale, "template.version" ): ${project.version} + </div> + #elseif ( $versionPosition.equalsIgnoreCase("left") ) + <div class="xleft"> + $i18n.getString( "site-renderer", $locale, "template.version" ): ${project.version} + #if ( $breadcrumbs && $breadcrumbs.size() > 0 ) + | #breadcrumbs( $breadcrumbs ) + #end + </div> + #end + #elseif ( $position.equalsIgnoreCase( "left" ) ) + #if ( $breadcrumbs && $breadcrumbs.size() > 0 ) + <div class="xleft"> + #breadcrumbs( $breadcrumbs ) + </div> + #end + #end +#end + +#macro ( poweredByLogo $poweredBy ) + #if( $poweredBy ) + #foreach ($item in $poweredBy) + #if( $item.href ) + #set ( $href = $PathTool.calculateLink( $item.href, $relativePath ) ) + #set ( $href = $href.replaceAll( "\\", "/" ) ) + #else + #set ( $href="http://www.qos.ch/" ) + #end + + #if( $item.name ) + #set ( $name = $item.name ) + #else + #set ( $name = $i18n.getString( "site-renderer", $locale, "template.builtby" ) ) + #set ( $name = "${name}" ) + #end + + #if( $item.img ) + #set ( $img = $item.img ) + #else + #set ( $img = "images/logos/qosLogo.png" ) + #end + + <a href="$href" title="$name" id="poweredBy"> + #set ( $img = $PathTool.calculateLink( $img, $relativePath ) ) + #set ( $img = $img.replaceAll( "\\", "/" ) ) + <img alt="$name" src="$img" /> + </a> + #end + #if( $poweredBy.isEmpty() ) + <a href="http://www.qos.ch/" title="QOS.ch" id="poweredBy"> + <img alt="QOS.ch" src="$relativePath/images/logos/qosLogo.png"></img> + </a> + #end + #else + <a href="http://www.qos.ch/" title="QOS.ch" id="poweredBy"> + <img alt="QOS.ch" src="$relativePath/images/logos/qosLogo.png"></img> + </a> + #end +#end + +<html> + <head> + <title>$title</title> + <style type="text/css" media="all"> + @import url("$relativePath/css/site.css"); + </style> + <link rel="stylesheet" href="$relativePath/css/print.css" type="text/css" media="print" /> + #foreach( $author in $authors ) + <meta name="author" content="$author" /> + #end + <meta http-equiv="Content-Type" content="text/html; charset=${outputEncoding}" /> + #if ( $decoration.body.head ) + #foreach( $item in $decoration.body.head.getChildren() ) + #if ( $item.name == "script" ) + $item.toUnescapedString() + #else + $item.toString() + #end + #end + #end + </head> + <body class="composite"> + <div id="banner"> + #banner( $decoration.bannerLeft "bannerLeft" ) + #banner( $decoration.bannerRight "bannerRight" ) + <div class="clear"> + <hr/> + </div> + </div> + <div id="breadcrumbs"> + #publishDate( "left" $decoration.publishDate $decoration.version ) + <div class="xright">#links( $decoration.body.links )#publishDate( "right" $decoration.publishDate $decoration.version )</div> + <div class="clear"> + <hr/> + </div> + </div> + <div id="leftColumn"> + <div id="navcolumn"> + #publishDate( "navigation-top" $decoration.publishDate $decoration.version ) + #mainMenu( $decoration.body.menus ) + #poweredByLogo( $decoration.poweredBy ) + #publishDate( "navigation-bottom" $decoration.publishDate $decoration.version ) + </div> + </div> + <div id="bodyColumn"> + <div id="contentBox"> + $bodyContent + </div> + </div> + <div class="clear"> + <hr/> + </div> + <div id="footer"> + <div class="xleft"> + ©#copyright()#publishDate( "bottom" $decoration.publishDate $decoration.version )</div> + <div class="clear"> + <hr/> + </div> + </div> + </body> +</html> Added: slf4j/trunk/slf4j-skin/src/main/resources/css/site.css ============================================================================== --- (empty file) +++ slf4j/trunk/slf4j-skin/src/main/resources/css/site.css Wed Aug 16 22:13:35 2006 @@ -0,0 +1,366 @@ +/* + Logback CSS Theme for Maven 2, from LB-Skin +*/ +body { + margin: 0px; + padding: 0px 0px 10px 0px; +} + +img { + border: none; +} + +acronym { + cursor: help; + border-bottom: 1px dotted #feb; +} + +div.clear { + clear: both; + visibility: hidden; +} + +div.clear hr { + display: none; +} + +body,td,select,input,li { + font-family: Verdana, Helvetica, Arial, sans-serif; + font-size: 13px; +} + +code { + font-family: Courier, monospace; + font-size: 13px; +} + +a { + text-decoration: none; +} + +a:link { + color: navy; + /*color:#36a;*/ +} + +a:visited { /*color:#47a;*/ + color: navy; +} + +a:active,a:hover { /*color:#69c;*/ + color: navy; + text-decoration: underline; +} + +#legend li.externalLink { + background: url(../images/external.png) left top no-repeat; + padding-left: 18px; +} + +a.externalLink,a.externalLink:link,a.externalLink:visited,a.externalLink:active,a.externalLink:hover + { + background: url(../images/external.png) right center no-repeat; + padding-right: 18px; +} + +#legend li.newWindow { + background: url(../images/newwindow.png) left top no-repeat; + padding-left: 18px; +} + +a.newWindow,a.newWindow:link,a.newWindow:visited,a.newWindow:active,a.newWindow:hover + { + background: url(../images/newwindow.png) right center no-repeat; + padding-right: 18px; +} + +h2 { + padding: 2px 2px 1px 0px; + border: 0px solid #999; + color: navy; + /*background-color: #ddd;*/ /*background-color: rgb(144,223,144);*/ + background-color: white; + font-weight: 900; + font-size: x-large; +} + +h3 { + padding: 2px 2px 2px 0px; + border: 0px solid #aaa; + /*color: #900;*/ + color: navy; + /*background-color: #eee;*/ + background-color: white; + font-weight: normal; + font-size: large; +} + +h4 { + padding: 2px 2px 2px 0px; + border: 0px solid #bbb; + /*color: #900;*/ + color: navy; + background-color: white; + font-weight: normal; + font-size: large; +} + +h5 { + padding: 2px 2px 2px 3px; + color: #900; + font-size: normal; +} + +p { + line-height: 1.3em; + font-size: small; +} + +#bannerLeft,#bannerRight { + font-size: xx-large; + font-weight: bold; +} + +#bannerLeft img,#bannerRight img { + margin: 0px; +} + +.xleft,#bannerLeft img { + float: left; + text-shadow: #7CFC00; +} + +.xright,#bannerRight img { + float: right; + text-shadow: #7CFC00; +} + +#breadcrumbs { + padding: 3px 10px 3px 10px; + font-size: small; + border: 1px solid #663300; + /*border-bottom: 1px solid #aaa; + /* background-color: #ccc; lime; + border-color: #663300;*/ + background-color: #ffd0a0; + max-width: 77em; +} + +#leftColumn { + margin: 10px 0 0 5px; + border: 1px solid #999; + /*background-color: #eee;*/ /*background-color: rgb(144,223,144);*/ + background-color: #ddd; + width: 15em; /* was: 170/190 */ + float: left; + overflow: auto; +} + +#navcolumn h5 { + margin: 0; + font-size: small; + border-bottom: 1px solid #aaaaaa; + padding-top: 2px; + color: #000; +} + +#bodyColumn { + max-width: 60em; + margin-right: 1.5em; + margin-left: 217px; /*was: 197*/ +} + +#legend { + padding: 8px 0 8px 0; +} + +#navcolumn ul { + padding: 8px 4px 0 8px; + margin: 5px; + padding: 0; + font-size: medium; + /*font-weight:bold;*/ +} + +#navcolumn li { + line-height: 150%; + list-style-type: none; + background-image: none; + background-repeat: no-repeat; + background-position: 0 0.4em; + padding-left: 16px; + list-style-position: outside; + font-size: smaller; + /*background: #EEEEEE; + padding-left: 2ex; + border-top: 0px solid #AAAAAA; + border-right: 1px solid #AAAAAA; + border-bottom:1px solid #AAAAAA; + border-left: 1px solid #AAAAAA; */ +} + +#navcolumn img { + margin-top: 10px; + margin-bottom: 3px; +} + +#lastPublished { + font-size: x-small; +} + +strong { + color: navy; + text-decoration: underline; + font-weight: bold +} + +table { + padding: 0px; + width: 100%; + margin-left: -2px; + margin-right: -2px; +} + +table.bodyTable th { + color: white; + background-color: #bbb; + text-align: left; + font-weight: bold; +} + +table.bodyTable th,table.bodyTable td { + font-size: 1em; +} + +table.bodyTable tr.a { + background-color: #ddd; +} + +table.bodyTable tr.b { + background-color: #eee; +} + +.source { + border-top: 1px solid #DDDDDD; + border-bottom: 1px solid #DDDDDD; + background:#eee; + font-family: Courier, "MS Courier New", Prestige, Everson Monocourrier, monospace; + padding-bottom: 0.5ex; + padding-top: 0.5ex; + padding-left: 1ex; + white-space: pre; + width: 60em; + +} + +.source pre { + margin: 0px; + padding: 0px; +} + +.navSectionHead { + font-weight: bold; + font-size: x-small; +} + +.section { + padding: 4px; +} + +#footer { + padding: 3px 10px 3px 10px; + font-size: x-small; +} + +dl { + padding: 4px 4px 4px 6px; + border: 1px solid #aaa; + background-color: #ffc; +} + +dt { + color: #900; +} + +#organizationLogo img,#projectLogo img,#projectLogo span { + margin: 8px; +} + +#banner { + padding: 0px; + border-bottom: 1px solid #fff; +} + +#banner img { + border: none; +} + +#poweredBy { + text-align: center; +} + +#poweredBy img { + display: block; + margin: 20px 0 20px 17px; + border: none; + width: 90px; + height: 30px; +} + +.errormark,.warningmark,.donemark,.infomark { + background: url(../images/icon_error_sml.gif) no-repeat; +} + +.warningmark { + background-image: url(../images/icon_warning_sml.gif); +} + +.donemark { + background-image: url(../images/icon_success_sml.gif); +} + +.infomark { + background-image: url(../images/icon_info_sml.gif); +} + +/* + + Logback documentation styles + +*/ +.author { + text-align: left; + font-weight: bold; +} + +.definition { + padding-left: 5px; + padding-right: 5px; + margin: 5px 50px 5px 50px; + text-align: justify; + background-color: #E6E64C; +} + +.deftitle { + font-weight: bold; +} + +.progWord{ + font-family: Courier, monospace; +} + +.green { + color: green; +} +.blue { + color: blue; +} + +.redBold { + color: red; + font-weight: bold; +} +.greenBold { + color: green; + font-weight: bold; +} \ No newline at end of file Added: slf4j/trunk/slf4j-skin/src/main/resources/images/logos/qosLogo.png ============================================================================== Binary file. No diff available. Added: slf4j/trunk/slf4j-skin/src/main/resources/images/logos/slf4j-logo.jpg ============================================================================== Binary file. No diff available. Added: slf4j/trunk/slf4j-skin/src/main/resources/images/logos/valid-html401.png ============================================================================== Binary file. No diff available. _______________________________________________ dev mailing list [email protected] http://slf4j.org/mailman/listinfo/dev
