From: <tri...@us...> - 2007-08-16 16:56:30
|
Revision: 10 http://staticwiki.svn.sourceforge.net/staticwiki/?rev=10&view=rev Author: triathlon98 Date: 2007-08-16 09:56:25 -0700 (Thu, 16 Aug 2007) Log Message: ----------- Some site changes Modified Paths: -------------- trunk/src/site/site.xml trunk/src/site/wiki/index.wiki Added Paths: ----------- trunk/src/site/wiki/developers.wiki Removed Paths: ------------- trunk/src/site/resources/site.vm Deleted: trunk/src/site/resources/site.vm =================================================================== --- trunk/src/site/resources/site.vm 2007-08-16 12:16:17 UTC (rev 9) +++ trunk/src/site/resources/site.vm 2007-08-16 16:56:25 UTC (rev 10) @@ -1,369 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - -#macro ( link $href $name ) - #if ( ( $href.toLowerCase().startsWith("http") || $href.toLowerCase().startsWith("https") ) ) - <a href="$href" class="externalLink">$name</a> - #else - <a href="$href">$name</a> - #end -#end - -#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( "\\", "/" ) ) - #link( $currentItemHref $item.name ) - #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 - #link( $currentItemHref $item.name ) - #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 = $src.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 - #link( $currentItemHref $item.name ) - #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 - #if ( $menu.items && $menu.items.size() > 0 ) - <ul> - #foreach( $item in $menu.items ) - #menuItem( $item ) - #end - </ul> - #end - #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 = "yyyy-MM-dd" ) - #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 ) - #set ( $links = $decoration.body.links ) - - #if ( $datePosition.equalsIgnoreCase( "right" ) && $links && $links.size() > 0 ) - #set ( $prefix = " |" ) - #else - #set ( $prefix = "" ) - #end - - #if ( $datePosition.equalsIgnoreCase( $position ) ) - #if ( ( $datePosition.equalsIgnoreCase( "right" ) ) || ( $datePosition.equalsIgnoreCase( "bottom" ) ) ) - $prefix $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" ) ) ) - $prefix $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://maven.apache.org/" ) - #end - - #if( $item.name ) - #set ( $name = $item.name ) - #else - #set ( $name = $i18n.getString( "site-renderer", $locale, "template.builtby" ) ) - #set ( $name = "${name} Maven" ) - #end - - #if( $item.img ) - #set ( $img = $item.img ) - #else - #set ( $img = "images/logos/maven-feather.png" ) - #end - - <a href="$href" title="$name" class="poweredBy"> - #set ( $img = $PathTool.calculateLink( $img, $relativePath ) ) - #set ( $img = $img.replaceAll( "\\", "/" ) ) - <img alt="$name" src="$img" /> - </a> - #end - #if( $poweredBy.isEmpty() ) - <a href="http://maven.apache.org/" title="$i18n.getString( "site-renderer", $locale, "template.builtby" ) Maven" class="poweredBy"> - <img alt="$i18n.getString( "site-renderer", $locale, "template.builtby" ) Maven" src="$relativePath/images/logos/maven-feather.png"></img> - </a> - #end - #else - <a href="http://maven.apache.org/" title="$i18n.getString( "site-renderer", $locale, "template.builtby" ) Maven" class="poweredBy"> - <img alt="$i18n.getString( "site-renderer", $locale, "template.builtby" ) Maven" src="$relativePath/images/logos/maven-feather.png"></img> - </a> - #end -#end - -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <title>$title</title> - <style type="text/css" media="all"> - @import url("$relativePath/css/maven-base.css"); - @import url("$relativePath/css/maven-theme.css"); - @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 class="advert"> -<script type="text/javascript"><!-- -google_ad_client = "pub-3075143938601956"; -google_ad_width = 728; -google_ad_height = 90; -google_ad_format = "728x90_as"; -google_ad_type = "text_image"; -google_ad_channel =""; -google_color_border = "6699CC"; -google_color_bg = "003366"; -google_color_link = "FFFFFF"; -google_color_text = "AECCEB"; -google_color_url = "AECCEB"; -//--></script> -<script type="text/javascript" - src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> -</script> -</div> - <div id="contentBox"> - $bodyContent - </div> - </div> - <div class="clear"> - <hr/> - </div> - <div id="footer"> - <div class="xright">©#copyright()#publishDate( "bottom" $decoration.publishDate $decoration.version )</div> - <div class="clear"> - <hr/> - </div> - </div> - </body> -</html> \ No newline at end of file Modified: trunk/src/site/site.xml =================================================================== --- trunk/src/site/site.xml 2007-08-16 12:16:17 UTC (rev 9) +++ trunk/src/site/site.xml 2007-08-16 16:56:25 UTC (rev 10) @@ -3,16 +3,17 @@ <skin> <groupId>be.progs</groupId> <artifactId>maven-site-skin</artifactId> - <version>1.0-SNAPSHOT</version> + <version>1.0</version> </skin> + + <publishDate format="yyyy-MM-dd"/> + <bannerLeft> <name>staticwiki</name> <src>/images/logo.png</src> <href>http://www.staticwiki.org/</href> </bannerLeft> - <publishDate position="navigation-bottom" format="yyyy-MM-dd"/> - <body> <links> <item name="staticwiki" href="http://www.staticwiki.org/"/> Added: trunk/src/site/wiki/developers.wiki =================================================================== --- trunk/src/site/wiki/developers.wiki (rev 0) +++ trunk/src/site/wiki/developers.wiki 2007-08-16 16:56:25 UTC (rev 10) @@ -0,0 +1,13 @@ +h1. Developers information + +h2. maven targets, profiles, variables + +As the staticwiki site already uses staticwiki to generate its contents, some tricks have been applied to assure it all works. +To build the site, you have to use the following commands +{code} +mvn install +mvn -Dsite site +{code} + +The first (install) will build all modules, including the staticwiki-site-plugin. +The second target disables the staticwiki-site-plugin as module, but enables it as library for the [maven-site-plugin|http://maven.apache.org/plugins/maven-site-plugin/]. This way, circular dependencies are avoided. \ No newline at end of file Modified: trunk/src/site/wiki/index.wiki =================================================================== --- trunk/src/site/wiki/index.wiki 2007-08-16 12:16:17 UTC (rev 9) +++ trunk/src/site/wiki/index.wiki 2007-08-16 16:56:25 UTC (rev 10) @@ -1,9 +1,9 @@ +---- +*warning* this is highly preliminary information, the project (and especially the documentation) is in a very preliminary fase and will be improved soon. So do have a browse around, but definitely come back later to see how things evolve. +---- + h1. staticwiki ---- -*warning* this is highly preliminary information, the prject (and especially the documentation) is in a very preliminary fase wand will be improved soon. So do have a browse around, but definitely come back later to see how things evolve. ---- - staticwiki is a configurable java wiki renderer. he rendering is done in several passes to allow a lot of versatility. One of the features (hence the name) is that it can be combined with maven to generate a static site using wiki context. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |