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 2012/11/28 07:41:29 UTC

svn commit: r1414544 [4/5] - in /continuum/site-publish: ./ css/ development/ images/ images/books/ images/screenshots/ js/ scripts/

Added: continuum/site-publish/js/jquery.lightbox.js
URL: http://svn.apache.org/viewvc/continuum/site-publish/js/jquery.lightbox.js?rev=1414544&view=auto
==============================================================================
--- continuum/site-publish/js/jquery.lightbox.js (added)
+++ continuum/site-publish/js/jquery.lightbox.js Wed Nov 28 06:41:18 2012
@@ -0,0 +1,442 @@
+/**
+ * jQuery Lightbox
+ * Version 0.5 - 11/29/2007
+ * @author Warren Krewenki
+ *
+ * Changes by:
+ * @author Krzysztof Kotowicz <koto at webworkers dot pl>:
+ *  - bugfix: multiple instances of Lightbox galleries allowed
+ *    (using opts variable instead of $.fn.lightbox.defaults)
+ *  - bugfix: use var for local variables in a few functions
+ *  - added support for navbarOnTop setting
+ *  - added support for displayTitle setting
+ *  - added support for slideNavBar setting (with slideNavBarSpeed)
+ *  - added support for displayHelp setting
+ *  - added support for fitToScreen setting (ported Lightbox VinDSL hack)
+ *    (see http://www.huddletogether.com/forum/comments.php?DiscussionID=307)
+ *  - plugin now uses jQuery.width() and jQuery.height()
+ *  - removed eval() calls
+ *  - removed destroyElement - uses jQuery.remove()
+ *  - use of prevLinkText, nextLinkText and help
+ *  - all strings are now placed in opts.strings to allow for customization/translation
+ *
+ * Based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
+ * Originally written to make use of the Prototype framework, and Script.acalo.us, now altered to use jQuery.
+ *
+ **/
+
+(function($){
+	var opts;
+
+	$.fn.lightbox = function(options){
+		// build main options
+		opts = $.extend({}, $.fn.lightbox.defaults, options);
+
+		// initalize the lightbox
+		$.fn.lightbox.initialize();
+		return this.each(function(){
+			$(this).click(function(){
+				$(this).lightbox.start(this);
+				return false;
+			});
+		});
+	};
+
+	// lightbox functions
+	$.fn.lightbox.initialize = function(){
+		$('#overlay').remove();
+		$('#lightbox').remove();
+		opts.inprogress = false;
+		var outerImage = '<div id="outerImageContainer"><div id="imageContainer"><img id="lightboxImage"><div id="hoverNav"><a href="javascript://" title="' + opts.strings.prevLinkTitle + '" id="prevLink"></a><a href="javascript://" id="nextLink" title="' + opts.strings.nextLinkTitle + '"></a></div><div id="loading"><a href="javascript://" id="loadingLink"><img src="'+opts.fileLoadingImage+'"></a></div></div></div>';
+		var imageData = '<div id="imageDataContainer" class="clearfix"><div id="imageData"><div id="imageDetails"><span id="caption"></span><span id="numberDisplay"></span></div><div id="bottomNav">'
+
+		if (opts.displayHelp)
+			imageData += '<span id="helpDisplay">' + opts.strings.help + '</span>';
+
+		imageData += '<a href="javascript://" id="bottomNavClose" title="' + opts.strings.closeTitle + '"><img src="'+opts.fileBottomNavCloseImage+'"></a></div></div></div>';
+
+		var string;
+
+		if (opts.navbarOnTop) {
+		  string = '<div id="overlay"></div><div id="lightbox">' + imageData + outerImage + '</div>';
+		  $("body").append(string);
+		  $("#imageDataContainer").addClass('ontop');
+		} else {
+		  string = '<div id="overlay"></div><div id="lightbox">' + outerImage + imageData + '</div>';
+		  $("body").append(string);
+		}
+
+		$("#overlay").click(function(){ $.fn.lightbox.end(); }).hide();
+		$("#lightbox").click(function(){ $.fn.lightbox.end();}).hide();
+		$("#loadingLink").click(function(){ $.fn.lightbox.end(); return false;});
+		$("#bottomNavClose").click(function(){ $.fn.lightbox.end(); return false; });
+		$('#outerImageContainer').width(opts.widthCurrent).height(opts.heightCurrent);
+		$('#imageDataContainer').width(opts.widthCurrent);
+	};
+
+	$.fn.lightbox.getPageSize = function(){
+		var xScroll, yScroll;
+
+		if (window.innerHeight && window.scrollMaxY) {
+			xScroll = window.innerWidth + window.scrollMaxX;
+			yScroll = window.innerHeight + window.scrollMaxY;
+		} else if (document.body.scrollHeight > document.body.offsetHeight){ // all but Explorer Mac
+			xScroll = document.body.scrollWidth;
+			yScroll = document.body.scrollHeight;
+		} else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari
+			xScroll = document.body.offsetWidth;
+			yScroll = document.body.offsetHeight;
+		}
+
+		var windowWidth, windowHeight;
+
+		if (self.innerHeight) { // all except Explorer
+			if(document.documentElement.clientWidth){
+				windowWidth = document.documentElement.clientWidth;
+			} else {
+				windowWidth = self.innerWidth;
+			}
+			windowHeight = self.innerHeight;
+		} else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode
+			windowWidth = document.documentElement.clientWidth;
+			windowHeight = document.documentElement.clientHeight;
+		} else if (document.body) { // other Explorers
+			windowWidth = document.body.clientWidth;
+			windowHeight = document.body.clientHeight;
+		}
+
+		// for small pages with total height less then height of the viewport
+		if(yScroll < windowHeight){
+			pageHeight = windowHeight;
+		} else {
+			pageHeight = yScroll;
+		}
+
+
+		// for small pages with total width less then width of the viewport
+		if(xScroll < windowWidth){
+			pageWidth = xScroll;
+		} else {
+			pageWidth = windowWidth;
+		}
+
+		var arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight);
+		return arrayPageSize;
+	};
+
+
+	$.fn.lightbox.getPageScroll = function(){
+		var xScroll, yScroll;
+
+		if (self.pageYOffset) {
+			yScroll = self.pageYOffset;
+			xScroll = self.pageXOffset;
+		} else if (document.documentElement && document.documentElement.scrollTop){  // Explorer 6 Strict
+			yScroll = document.documentElement.scrollTop;
+			xScroll = document.documentElement.scrollLeft;
+		} else if (document.body) {// all other Explorers
+			yScroll = document.body.scrollTop;
+			xScroll = document.body.scrollLeft;
+		}
+
+		var arrayPageScroll = new Array(xScroll,yScroll);
+		return arrayPageScroll;
+	};
+
+	$.fn.lightbox.pause = function(ms){
+		var date = new Date();
+		var curDate = null;
+		do{curDate = new Date();}
+		while( curDate - date < ms);
+	};
+
+	$.fn.lightbox.start = function(imageLink){
+
+		$("select, embed, object").hide();
+		var arrayPageSize = $.fn.lightbox.getPageSize();
+		$("#overlay").hide().css({width: '100%', height: arrayPageSize[1]+'px', opacity : opts.overlayOpacity}).fadeIn();
+		opts.imageArray = [];
+		imageNum = 0;
+
+		var anchors = document.getElementsByTagName( imageLink.tagName);
+
+		// if image is NOT part of a set..
+		if(!imageLink.rel || (imageLink.rel == '')){
+			// add single image to Lightbox.imageArray
+			opts.imageArray.push(new Array(imageLink.href, opts.displayTitle ? imageLink.title : ''));
+		} else {
+		// if image is part of a set..
+			$("a").each(function(){
+				if(this.href && (this.rel == imageLink.rel)){
+					opts.imageArray.push(new Array(this.href, opts.displayTitle ? this.title : ''));
+				}
+			})
+
+
+			for(i = 0; i < opts.imageArray.length; i++){
+				for(j = opts.imageArray.length-1; j>i; j--){
+					if(opts.imageArray[i][0] == opts.imageArray[j][0]){
+						opts.imageArray.splice(j,1);
+					}
+				}
+			}
+			while(opts.imageArray[imageNum][0] != imageLink.href) { imageNum++;}
+		}
+
+		// calculate top and left offset for the lightbox
+		var arrayPageScroll = $.fn.lightbox.getPageScroll();
+		var lightboxTop = arrayPageScroll[1] + (arrayPageSize[3] / 10);
+		var lightboxLeft = arrayPageScroll[0];
+		$('#lightbox').css({top: lightboxTop+'px', left: lightboxLeft+'px'}).show();
+
+
+		if (!opts.slideNavBar)
+			$('#imageData').hide();
+
+		$.fn.lightbox.changeImage(imageNum);
+
+	};
+
+	$.fn.lightbox.changeImage = function(imageNum){
+		if(opts.inprogress == false){
+			opts.inprogress = true;
+			opts.activeImage = imageNum;	// update global var
+
+			// hide elements during transition
+			$('#loading').show();
+			$('#lightboxImage').hide();
+			$('#hoverNav').hide();
+			$('#prevLink').hide();
+			$('#nextLink').hide();
+
+			if (opts.slideNavBar) { // delay preloading image until navbar will slide up
+				// $('#imageDataContainer').slideUp(opts.navBarSlideSpeed, $.fn.doChangeImage);
+				$('#imageDataContainer').hide();
+				$('#imageData').hide();
+				$.fn.doChangeImage();
+			} else {
+			    $.fn.doChangeImage();
+			}
+		}
+	};
+
+	$.fn.doChangeImage = function(){
+
+		imgPreloader = new Image();
+
+		// once image is preloaded, resize image container
+		imgPreloader.onload=function(){
+		    var newWidth = imgPreloader.width;
+		    var newHeight = imgPreloader.height;
+
+
+			if (opts.fitToScreen) {
+		        var arrayPageSize = $.fn.lightbox.getPageSize();
+				var ratio;
+				var initialPageWidth = arrayPageSize[2] - 2 * opts.borderSize;
+				var initialPageHeight = arrayPageSize[3] - 200;
+
+				if (imgPreloader.height > initialPageHeight)
+				{
+					newWidth = parseInt((initialPageHeight/imgPreloader.height) * imgPreloader.width);
+					newHeight = initialPageHeight;
+				}
+				else if (imgPreloader.width > initialPageWidth)
+				{
+					newHeight = parseInt((initialPageWidth/imgPreloader.width) * imgPreloader.height);
+					newWidth = initialPageWidth;
+				}
+			}
+
+			$('#lightboxImage').attr('src', opts.imageArray[opts.activeImage][0])
+							   .width(newWidth).height(newHeight);
+			$.fn.lightbox.resizeImageContainer(newWidth, newHeight);
+		}
+
+		imgPreloader.src = opts.imageArray[opts.activeImage][0];
+	}
+	
+	$.fn.lightbox.end = function(){
+		$.fn.lightbox.disableKeyboardNav();
+		$('#lightbox').hide();
+		$('#overlay').fadeOut();
+		$('select, object, embed').show();
+	};
+
+	$.fn.lightbox.preloadNeighborImages = function(){
+		if((opts.imageArray.length - 1) > opts.activeImage){
+			preloadNextImage = new Image();
+			preloadNextImage.src = opts.imageArray[opts.activeImage + 1][0];
+		}
+		if(opts.activeImage > 0){
+			preloadPrevImage = new Image();
+			preloadPrevImage.src = opts.imageArray[opts.activeImage - 1][0];
+		}
+	};
+
+	$.fn.lightbox.keyboardAction = function(e){
+		if (e == null) { // ie
+			var keycode = event.keyCode;
+			var escapeKey = 27;
+		} else { // mozilla
+			var keycode = e.keyCode;
+			var escapeKey = e.DOM_VK_ESCAPE;
+		}
+
+		var key = String.fromCharCode(keycode).toLowerCase();
+
+		if((key == 'x') || (key == 'o') || (key == 'c') || (keycode == escapeKey)){ // close lightbox
+			$.fn.lightbox.end();
+		} else if((key == 'p') || (keycode == 37)){ // display previous image
+			if(opts.activeImage != 0){
+				$.fn.lightbox.disableKeyboardNav();
+				$.fn.lightbox.changeImage(opts.activeImage - 1);
+			}
+		} else if((key == 'n') || (keycode == 39)){ // display next image
+			if(opts.activeImage != (opts.imageArray.length - 1)){
+				$.fn.lightbox.disableKeyboardNav();
+				$.fn.lightbox.changeImage(opts.activeImage + 1);
+			}
+		}
+	};
+
+	$.fn.lightbox.resizeImageContainer = function(imgWidth, imgHeight){
+		// get current width and height
+		opts.widthCurrent = document.getElementById('outerImageContainer').offsetWidth;
+		opts.heightCurrent = document.getElementById('outerImageContainer').offsetHeight;
+
+		// get new width and height
+		var widthNew = (imgWidth  + (opts.borderSize * 2));
+		var heightNew = (imgHeight  + (opts.borderSize * 2));
+
+		// scalars based on change from old to new
+		opts.xScale = ( widthNew / opts.widthCurrent) * 100;
+		opts.yScale = ( heightNew / opts.heightCurrent) * 100;
+
+		// calculate size difference between new and old image, and resize if necessary
+		wDiff = opts.widthCurrent - widthNew;
+		hDiff = opts.heightCurrent - heightNew;
+
+		$('#imageDataContainer').animate({width: widthNew},opts.resizeSpeed,'linear');
+		$('#outerImageContainer').animate({width: widthNew},opts.resizeSpeed,'linear',function(){
+			$('#outerImageContainer').animate({height: heightNew},opts.resizeSpeed,'linear',function(){
+				$.fn.lightbox.showImage();
+			});
+		});
+
+
+		// if new and old image are same size and no scaling transition is necessary,
+		// do a quick pause to prevent image flicker.
+		if((hDiff == 0) && (wDiff == 0)){
+			if (jQuery.browser.msie){ $.fn.lightbox.pause(250); } else { $.fn.lightbox.pause(100);}
+		}
+
+		$('#prevLink').height(imgHeight);
+		$('#nextLink').height(imgHeight);
+	};
+
+	$.fn.lightbox.showImage = function(){
+		$('#loading').hide();
+		$('#lightboxImage').fadeIn("fast");
+		$.fn.lightbox.updateDetails();
+		$.fn.lightbox.preloadNeighborImages();
+
+		opts.inprogress = false;
+	};
+
+	$.fn.lightbox.updateDetails = function(){
+
+		if(opts.imageArray[opts.activeImage][1]){
+			$('#caption').html(opts.imageArray[opts.activeImage][1]).show();
+		}
+
+		// if image is part of set display 'Image x of x'
+		if(opts.imageArray.length > 1){
+			var nav_html;
+
+			nav_html = opts.strings.image + (opts.activeImage + 1) + opts.strings.of + opts.imageArray.length;
+
+			// display previous / next text links
+			if ((opts.activeImage) > 0) {
+				nav_html = '<a title="' + opts.strings.prevLinkTitle + '" href="#" id="prevLinkText">' + opts.strings.prevLinkText + "</a>" + nav_html;
+			}
+
+			if ((opts.activeImage + 1) < opts.imageArray.length) {
+				nav_html += '<a title="' + opts.strings.nextLinkTitle + '" href="#" id="nextLinkText">' + opts.strings.nextLinkText + "</a>";
+			}
+
+			$('#numberDisplay').html(nav_html).show();
+		}
+
+		if (opts.slideNavBar) {
+		    $("#imageData").slideDown(opts.navBarSlideSpeed);
+		} else {
+			$("#imageData").show();
+		}
+
+		var arrayPageSize = $.fn.lightbox.getPageSize();
+		$('#overlay').height(arrayPageSize[1]);
+		$.fn.lightbox.updateNav();
+	};
+
+	$.fn.lightbox.updateNav = function(){
+		$('#hoverNav').show();
+
+		// if not first image in set, display prev image button
+		if(opts.activeImage != 0){
+			$('#prevLink,#prevLinkText').show().click(function(){
+				$.fn.lightbox.changeImage(opts.activeImage - 1); return false;
+			});
+		}
+
+		// if not last image in set, display next image button
+		if(opts.activeImage != (opts.imageArray.length - 1)){
+			$('#nextLink,#nextLinkText').show().click(function(){
+
+				$.fn.lightbox.changeImage(opts.activeImage +1); return false;
+			});
+		}
+
+		$.fn.lightbox.enableKeyboardNav();
+	};
+
+
+	$.fn.lightbox.enableKeyboardNav = function(){
+		document.onkeydown = $.fn.lightbox.keyboardAction;
+	};
+
+	$.fn.lightbox.disableKeyboardNav = function(){
+		document.onkeydown = '';
+	};
+
+	$.fn.lightbox.defaults = {
+		fileLoadingImage : 'images/loading.gif',
+		fileBottomNavCloseImage : 'images/closelabel.gif',
+		overlayOpacity : 0.8,
+		borderSize : 10,
+		imageArray : new Array,
+		activeImage : null,
+		inprogress : false,
+		resizeSpeed : 350,
+		widthCurrent: 250,
+		heightCurrent: 250,
+		xScale : 1,
+		yScale : 1,
+		displayTitle: true,
+		navbarOnTop: false,
+		slideNavBar: false, // slide nav bar up/down between image resizing transitions
+		navBarSlideSpeed: 350,
+		displayHelp: false,
+		strings : {
+			help: ' \u2190 / P - previous image\u00a0\u00a0\u00a0\u00a0\u2192 / N - next image\u00a0\u00a0\u00a0\u00a0ESC / X - close image gallery',
+			prevLinkTitle: 'previous image',
+			nextLinkTitle: 'next image',
+			prevLinkText:  '&laquo; Previous',
+			nextLinkText:  'Next &raquo;',
+			closeTitle: 'close image gallery',
+			image: 'Image ',
+			of: ' of '
+		},
+		fitToScreen: false		// resize images if they are bigger than window
+	};
+})(jQuery);
\ No newline at end of file

Added: continuum/site-publish/known-issues.html
URL: http://svn.apache.org/viewvc/continuum/site-publish/known-issues.html?rev=1414544&view=auto
==============================================================================
--- continuum/site-publish/known-issues.html (added)
+++ continuum/site-publish/known-issues.html Wed Nov 28 06:41:18 2012
@@ -0,0 +1,246 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+    <title>Continuum - </title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+                                                    
+<script type="text/javascript">var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));</script>
+                                                        
+<script type="text/javascript">var pageTracker = _gat._getTracker("UA-140879-4");
+pageTracker._initData();
+pageTracker._trackPageview();</script>
+                    </head>
+  <body class="composite">
+    <div id="banner">
+                  <a href="" id="bannerLeft">
+    
+                                            <img src="images/continuum_logo_75.gif" alt="" />
+    
+            </a>
+                        <a href="http://www.apache.org/" id="bannerRight">
+    
+                                    <img src="http://www.apache.org/images/asf_logo_wide.png" alt="" />
+    
+            </a>
+            <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+    
+            <div class="xleft">
+          
+                <a href="http://www.apache.org/" class="externalLink">Apache</a>
+                &gt;
+      
+          Continuum
+                </div>
+            <div class="xright">      
+  
+
+  
+    
+  
+  
+    
+             Last Published: 18 Sep 2011
+            </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+    
+                   <h5>Main</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="index.html">Home</a>
+          </li>
+              
+    <li class="none">
+                    <a href="download.html">Download</a>
+          </li>
+              
+    <li class="none">
+                    <a href="change-log.html">Change Log</a>
+          </li>
+              
+    <li class="none">
+                    <a href="http://cwiki.apache.org/confluence/display/CONTINUUM/FAQ" class="externalLink">Users Wiki</a>
+          </li>
+              
+    <li class="none">
+                    <a href="articles.html">Articles</a>
+          </li>
+              
+    <li class="none">
+                    <a href="features.html">Features</a>
+          </li>
+              
+    <li class="none">
+                    <a href="http://vmbuild.apache.org/continuum/" class="externalLink">Live Demo</a>
+          </li>
+          </ul>
+              <h5>Community</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="community.html">Community Overview</a>
+          </li>
+              
+    <li class="none">
+                    <a href="guide-helping.html">How to Contribute</a>
+          </li>
+              
+    <li class="none">
+                    <a href="getting-help.html">Getting Help</a>
+          </li>
+              
+    <li class="none">
+                    <a href="issue-tracking.html">Issue Tracking</a>
+          </li>
+              
+    <li class="none">
+                    <a href="team-list.html">The Continuum Team</a>
+          </li>
+              
+    <li class="none">
+                    <a href="mail-lists.html">Mailing Lists</a>
+          </li>
+              
+    <li class="none">
+                    <a href="source-repository.html">Source Repository</a>
+          </li>
+              
+    <li class="none">
+                    <a href="license.html">License</a>
+          </li>
+          </ul>
+              <h5>Continuum Development</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="development/building.html">Build Continuum</a>
+          </li>
+              
+    <li class="none">
+                    <a href="development/debugging.html">Debugging Continuum</a>
+          </li>
+              
+    <li class="none">
+                    <a href="development/guide-continuum-development.html">Development Convention</a>
+          </li>
+              
+    <li class="none">
+                    <a href="development/release.html">Release Procedure</a>
+          </li>
+          </ul>
+              <h5>Project Documentation</h5>
+            <ul>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+        <li class="collapsed">
+                    <a href="project-info.html">Project Information</a>
+                </li>
+          </ul>
+                                           <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+    
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        <div class="section"><h2>Known Issues and Errata ------</h2>
+</div>
+<div class="section"><h2>Known Issues and Errata</h2>
+<div class="section"><h3>Continuum 1.3.8 (GA)</h3>
+<div class="section"><h4>Known Issues</h4>
+<ul><li>For a list of all JIRA issues reported against Continuum 1.3.8, click <a href="http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=true&amp;jqlQuery=project+%3D+CONTINUUM+AND+affectedVersion+%3D+%221.3.8%22+ORDER+BY+updated+DESC%2C+priority+DESC%2C+created+ASC" class="externalLink">here</a>.</li>
+</ul>
+</div>
+</div>
+<div class="section"><h3>Continuum 1.4.0 (Beta)</h3>
+<div class="section"><h4>Known Issues</h4>
+<p><a href="http://jira.codehaus.org/browse/CONTINUUM-2188" class="externalLink"> CONTINUUM-2188</a> has been partially implemented in this release. While the <i>Update Policy</i> field now appears in the Build Definition form, it is currently undocumented.</p>
+</div>
+</div>
+</div>
+
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2003-2011
+    
+          The Apache Software Foundation
+          
+  
+
+  
+    
+  
+  
+    
+   - <a href="http://continuum.apache.org/privacy-policy.html">Privacy Policy</a></div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Added: continuum/site-publish/license.html
URL: http://svn.apache.org/viewvc/continuum/site-publish/license.html?rev=1414544&view=auto
==============================================================================
--- continuum/site-publish/license.html (added)
+++ continuum/site-publish/license.html Wed Nov 28 06:41:18 2012
@@ -0,0 +1,464 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+    <title>Continuum - Project License</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+                                                    
+<script type="text/javascript">var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));</script>
+                                                        
+<script type="text/javascript">var pageTracker = _gat._getTracker("UA-140879-4");
+pageTracker._initData();
+pageTracker._trackPageview();</script>
+                    </head>
+  <body class="composite">
+    <div id="banner">
+                  <a href="" id="bannerLeft">
+    
+                                            <img src="images/continuum_logo_75.gif" alt="" />
+    
+            </a>
+                        <a href="http://www.apache.org/" id="bannerRight">
+    
+                                    <img src="http://www.apache.org/images/asf_logo_wide.png" alt="" />
+    
+            </a>
+            <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+    
+            <div class="xleft">
+          
+                <a href="http://www.apache.org/" class="externalLink">Apache</a>
+                &gt;
+      
+          Continuum
+                </div>
+            <div class="xright">      
+  
+
+  
+    
+  
+  
+    
+             Last Published: 18 Sep 2011
+            </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+    
+                   <h5>Main</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="index.html">Home</a>
+          </li>
+              
+    <li class="none">
+                    <a href="download.html">Download</a>
+          </li>
+              
+    <li class="none">
+                    <a href="change-log.html">Change Log</a>
+          </li>
+              
+    <li class="none">
+                    <a href="http://cwiki.apache.org/confluence/display/CONTINUUM/FAQ" class="externalLink">Users Wiki</a>
+          </li>
+              
+    <li class="none">
+                    <a href="articles.html">Articles</a>
+          </li>
+              
+    <li class="none">
+                    <a href="features.html">Features</a>
+          </li>
+              
+    <li class="none">
+                    <a href="http://vmbuild.apache.org/continuum/" class="externalLink">Live Demo</a>
+          </li>
+          </ul>
+              <h5>Community</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="community.html">Community Overview</a>
+          </li>
+              
+    <li class="none">
+                    <a href="guide-helping.html">How to Contribute</a>
+          </li>
+              
+    <li class="none">
+                    <a href="getting-help.html">Getting Help</a>
+          </li>
+              
+    <li class="none">
+                    <a href="issue-tracking.html">Issue Tracking</a>
+          </li>
+              
+    <li class="none">
+                    <a href="team-list.html">The Continuum Team</a>
+          </li>
+              
+    <li class="none">
+                    <a href="mail-lists.html">Mailing Lists</a>
+          </li>
+              
+    <li class="none">
+                    <a href="source-repository.html">Source Repository</a>
+          </li>
+              
+    <li class="none">
+              <strong>License</strong>
+        </li>
+          </ul>
+              <h5>Continuum Development</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="development/building.html">Build Continuum</a>
+          </li>
+              
+    <li class="none">
+                    <a href="development/debugging.html">Debugging Continuum</a>
+          </li>
+              
+    <li class="none">
+                    <a href="development/guide-continuum-development.html">Development Convention</a>
+          </li>
+              
+    <li class="none">
+                    <a href="development/release.html">Release Procedure</a>
+          </li>
+          </ul>
+              <h5>Project Documentation</h5>
+            <ul>
+              
+                
+              
+      
+            
+      
+            
+            
+            
+      
+            
+      
+              
+            <li class="expanded">
+                    <a href="project-info.html">Project Information</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="issue-tracking.html">Issue Tracking</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="mail-lists.html">Mailing Lists</a>
+          </li>
+                  
+    <li class="none">
+              <strong>Project License</strong>
+        </li>
+                  
+    <li class="none">
+                    <a href="team-list.html">Project Team</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="source-repository.html">Source Repository</a>
+          </li>
+              </ul>
+        </li>
+          </ul>
+                                           <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+    
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        <div class="section"><h2>Overview</h2>
+<p>Typically the licenses listed for the project are that of the project itself, and not of dependencies.</p>
+</div>
+<div class="section"><h2>Project License</h2>
+<div class="section"><h3>The Apache Software License, Version 2.0</h3>
+<div class="source"><pre>
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      &quot;License&quot; shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      &quot;Licensor&quot; shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      &quot;Legal Entity&quot; shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      &quot;control&quot; means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      &quot;Source&quot; form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      &quot;Object&quot; form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      &quot;Work&quot; shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      &quot;Derivative Works&quot; shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      &quot;Contribution&quot; shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, &quot;submitted&quot;
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as &quot;Not a Contribution.&quot;
+
+      &quot;Contributor&quot; shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same &quot;printed page&quot; as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
+   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 &quot;AS IS&quot; 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.
+</pre>
+</div>
+</div>
+</div>
+
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2003-2011
+    
+          The Apache Software Foundation
+          
+  
+
+  
+    
+  
+  
+    
+   - <a href="http://continuum.apache.org/privacy-policy.html">Privacy Policy</a></div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Added: continuum/site-publish/mail-lists.html
URL: http://svn.apache.org/viewvc/continuum/site-publish/mail-lists.html?rev=1414544&view=auto
==============================================================================
--- continuum/site-publish/mail-lists.html (added)
+++ continuum/site-publish/mail-lists.html Wed Nov 28 06:41:18 2012
@@ -0,0 +1,341 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+    <title>Continuum - Project Mailing Lists</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+                                                    
+<script type="text/javascript">var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));</script>
+                                                        
+<script type="text/javascript">var pageTracker = _gat._getTracker("UA-140879-4");
+pageTracker._initData();
+pageTracker._trackPageview();</script>
+                    </head>
+  <body class="composite">
+    <div id="banner">
+                  <a href="" id="bannerLeft">
+    
+                                            <img src="images/continuum_logo_75.gif" alt="" />
+    
+            </a>
+                        <a href="http://www.apache.org/" id="bannerRight">
+    
+                                    <img src="http://www.apache.org/images/asf_logo_wide.png" alt="" />
+    
+            </a>
+            <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+    
+            <div class="xleft">
+          
+                <a href="http://www.apache.org/" class="externalLink">Apache</a>
+                &gt;
+      
+          Continuum
+                </div>
+            <div class="xright">      
+  
+
+  
+    
+  
+  
+    
+             Last Published: 18 Sep 2011
+            </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+    
+                   <h5>Main</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="index.html">Home</a>
+          </li>
+              
+    <li class="none">
+                    <a href="download.html">Download</a>
+          </li>
+              
+    <li class="none">
+                    <a href="change-log.html">Change Log</a>
+          </li>
+              
+    <li class="none">
+                    <a href="http://cwiki.apache.org/confluence/display/CONTINUUM/FAQ" class="externalLink">Users Wiki</a>
+          </li>
+              
+    <li class="none">
+                    <a href="articles.html">Articles</a>
+          </li>
+              
+    <li class="none">
+                    <a href="features.html">Features</a>
+          </li>
+              
+    <li class="none">
+                    <a href="http://vmbuild.apache.org/continuum/" class="externalLink">Live Demo</a>
+          </li>
+          </ul>
+              <h5>Community</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="community.html">Community Overview</a>
+          </li>
+              
+    <li class="none">
+                    <a href="guide-helping.html">How to Contribute</a>
+          </li>
+              
+    <li class="none">
+                    <a href="getting-help.html">Getting Help</a>
+          </li>
+              
+    <li class="none">
+                    <a href="issue-tracking.html">Issue Tracking</a>
+          </li>
+              
+    <li class="none">
+                    <a href="team-list.html">The Continuum Team</a>
+          </li>
+              
+    <li class="none">
+              <strong>Mailing Lists</strong>
+        </li>
+              
+    <li class="none">
+                    <a href="source-repository.html">Source Repository</a>
+          </li>
+              
+    <li class="none">
+                    <a href="license.html">License</a>
+          </li>
+          </ul>
+              <h5>Continuum Development</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="development/building.html">Build Continuum</a>
+          </li>
+              
+    <li class="none">
+                    <a href="development/debugging.html">Debugging Continuum</a>
+          </li>
+              
+    <li class="none">
+                    <a href="development/guide-continuum-development.html">Development Convention</a>
+          </li>
+              
+    <li class="none">
+                    <a href="development/release.html">Release Procedure</a>
+          </li>
+          </ul>
+              <h5>Project Documentation</h5>
+            <ul>
+              
+                
+              
+      
+            
+            
+            
+      
+            
+      
+            
+      
+              
+            <li class="expanded">
+                    <a href="project-info.html">Project Information</a>
+                  <ul>
+                  
+    <li class="none">
+                    <a href="issue-tracking.html">Issue Tracking</a>
+          </li>
+                  
+    <li class="none">
+              <strong>Mailing Lists</strong>
+        </li>
+                  
+    <li class="none">
+                    <a href="license.html">Project License</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="team-list.html">Project Team</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="source-repository.html">Source Repository</a>
+          </li>
+              </ul>
+        </li>
+          </ul>
+                                           <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+    
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        <div class="section"><h2>Project Mailing Lists</h2>
+<p>These are the mailing lists that have been established for this project. For each list, there is a subscribe, unsubscribe, and an archive link.</p>
+<table class="bodyTable"><tr class="a"><th>Name</th>
+<th>Subscribe</th>
+<th>Unsubscribe</th>
+<th>Post</th>
+<th>Archive</th>
+<th>Other Archives</th>
+</tr>
+<tr class="b"><td>Continuum User List</td>
+<td><a class="externalLink" href="mailto:users-subscribe@continuum.apache.org">Subscribe</a></td>
+<td><a class="externalLink" href="mailto:users-unsubscribe@continuum.apache.org">Unsubscribe</a></td>
+<td><a class="externalLink" href="mailto:users@continuum.apache.org">Post</a></td>
+<td><a class="externalLink" href="http://mail-archives.apache.org/mod_mbox/maven-continuum-users/">mail-archives.apache.org</a></td>
+<td><a class="externalLink" href="http://www.mail-archive.com/continuum-users@maven.apache.org">www.mail-archive.com</a></td>
+</tr>
+<tr class="a"><td> </td>
+<td> </td>
+<td> </td>
+<td> </td>
+<td> </td>
+<td><a class="externalLink" href="http://www.nabble.com/Continuum---Users-f13868.html">www.nabble.com</a></td>
+</tr>
+<tr class="b"><td> </td>
+<td> </td>
+<td> </td>
+<td> </td>
+<td> </td>
+<td><a class="externalLink" href="http://continuum.markmail.org/">continuum.markmail.org</a></td>
+</tr>
+<tr class="a"><td>Continuum Development List</td>
+<td><a class="externalLink" href="mailto:dev-subscribe@continuum.apache.org">Subscribe</a></td>
+<td><a class="externalLink" href="mailto:dev-unsubscribe@continuum.apache.org">Unsubscribe</a></td>
+<td><a class="externalLink" href="mailto:dev@continuum.apache.org">Post</a></td>
+<td><a class="externalLink" href="http://mail-archives.apache.org/mod_mbox/maven-continuum-dev/">mail-archives.apache.org</a></td>
+<td><a class="externalLink" href="http://www.mail-archive.com/continuum-dev@maven.apache.org">www.mail-archive.com</a></td>
+</tr>
+<tr class="b"><td> </td>
+<td> </td>
+<td> </td>
+<td> </td>
+<td> </td>
+<td><a class="externalLink" href="http://www.nabble.com/Continuum---Dev-f13867.html">www.nabble.com</a></td>
+</tr>
+<tr class="a"><td> </td>
+<td> </td>
+<td> </td>
+<td> </td>
+<td> </td>
+<td><a class="externalLink" href="http://markmail.org/list/org.apache.continuum-dev">markmail.org</a></td>
+</tr>
+<tr class="b"><td>Continuum Commits List</td>
+<td><a class="externalLink" href="mailto:commits-subscribe@continuum.apache.org">Subscribe</a></td>
+<td><a class="externalLink" href="mailto:commits-unsubscribe@continuum.apache.org">Unsubscribe</a></td>
+<td>-</td>
+<td><a class="externalLink" href="http://mail-archives.apache.org/mod_mbox/maven-continuum-commits/">mail-archives.apache.org</a></td>
+<td><a class="externalLink" href="http://www.mail-archive.com/continuum-commits@maven.apache.org">www.mail-archive.com</a></td>
+</tr>
+<tr class="a"><td> </td>
+<td> </td>
+<td> </td>
+<td> </td>
+<td> </td>
+<td><a class="externalLink" href="http://markmail.org/list/org.apache.continuum-commits">markmail.org</a></td>
+</tr>
+<tr class="b"><td>Continuum Issues List</td>
+<td><a class="externalLink" href="mailto:issues-subscribe@continuum.apache.org">Subscribe</a></td>
+<td><a class="externalLink" href="mailto:issues-unsubscribe@continuum.apache.org">Unsubscribe</a></td>
+<td>-</td>
+<td><a class="externalLink" href="http://mail-archives.apache.org/mod_mbox/maven-continuum-issues/">mail-archives.apache.org</a></td>
+<td><a class="externalLink" href="http://www.mail-archive.com/continuum-issues@maven.apache.org">www.mail-archive.com</a></td>
+</tr>
+<tr class="a"><td> </td>
+<td> </td>
+<td> </td>
+<td> </td>
+<td> </td>
+<td><a class="externalLink" href="http://markmail.org/list/org.apache.continuum-issues">markmail.org</a></td>
+</tr>
+<tr class="b"><td> </td>
+<td> </td>
+<td> </td>
+<td> </td>
+<td> </td>
+<td><a class="externalLink" href="http://www.nabble.com/Continuum---Issues-f29618.html">www.nabble.com</a></td>
+</tr>
+</table>
+</div>
+
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2003-2011
+    
+          The Apache Software Foundation
+          
+  
+
+  
+    
+  
+  
+    
+   - <a href="http://continuum.apache.org/privacy-policy.html">Privacy Policy</a></div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Added: continuum/site-publish/privacy-policy.html
URL: http://svn.apache.org/viewvc/continuum/site-publish/privacy-policy.html?rev=1414544&view=auto
==============================================================================
--- continuum/site-publish/privacy-policy.html (added)
+++ continuum/site-publish/privacy-policy.html Wed Nov 28 06:41:18 2012
@@ -0,0 +1,244 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+    <title>Continuum - Privacy Policy</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+          <meta name="author" content="Vincent Siveton" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+                                                    
+<script type="text/javascript">var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));</script>
+                                                        
+<script type="text/javascript">var pageTracker = _gat._getTracker("UA-140879-4");
+pageTracker._initData();
+pageTracker._trackPageview();</script>
+                    </head>
+  <body class="composite">
+    <div id="banner">
+                  <a href="" id="bannerLeft">
+    
+                                            <img src="images/continuum_logo_75.gif" alt="" />
+    
+            </a>
+                        <a href="http://www.apache.org/" id="bannerRight">
+    
+                                    <img src="http://www.apache.org/images/asf_logo_wide.png" alt="" />
+    
+            </a>
+            <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+    
+            <div class="xleft">
+          
+                <a href="http://www.apache.org/" class="externalLink">Apache</a>
+                &gt;
+      
+          Continuum
+                </div>
+            <div class="xright">      
+  
+
+  
+    
+  
+  
+    
+             Last Published: 18 Sep 2011
+            </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+    
+                   <h5>Main</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="index.html">Home</a>
+          </li>
+              
+    <li class="none">
+                    <a href="download.html">Download</a>
+          </li>
+              
+    <li class="none">
+                    <a href="change-log.html">Change Log</a>
+          </li>
+              
+    <li class="none">
+                    <a href="http://cwiki.apache.org/confluence/display/CONTINUUM/FAQ" class="externalLink">Users Wiki</a>
+          </li>
+              
+    <li class="none">
+                    <a href="articles.html">Articles</a>
+          </li>
+              
+    <li class="none">
+                    <a href="features.html">Features</a>
+          </li>
+              
+    <li class="none">
+                    <a href="http://vmbuild.apache.org/continuum/" class="externalLink">Live Demo</a>
+          </li>
+          </ul>
+              <h5>Community</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="community.html">Community Overview</a>
+          </li>
+              
+    <li class="none">
+                    <a href="guide-helping.html">How to Contribute</a>
+          </li>
+              
+    <li class="none">
+                    <a href="getting-help.html">Getting Help</a>
+          </li>
+              
+    <li class="none">
+                    <a href="issue-tracking.html">Issue Tracking</a>
+          </li>
+              
+    <li class="none">
+                    <a href="team-list.html">The Continuum Team</a>
+          </li>
+              
+    <li class="none">
+                    <a href="mail-lists.html">Mailing Lists</a>
+          </li>
+              
+    <li class="none">
+                    <a href="source-repository.html">Source Repository</a>
+          </li>
+              
+    <li class="none">
+                    <a href="license.html">License</a>
+          </li>
+          </ul>
+              <h5>Continuum Development</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="development/building.html">Build Continuum</a>
+          </li>
+              
+    <li class="none">
+                    <a href="development/debugging.html">Debugging Continuum</a>
+          </li>
+              
+    <li class="none">
+                    <a href="development/guide-continuum-development.html">Development Convention</a>
+          </li>
+              
+    <li class="none">
+                    <a href="development/release.html">Release Procedure</a>
+          </li>
+          </ul>
+              <h5>Project Documentation</h5>
+            <ul>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+        <li class="collapsed">
+                    <a href="project-info.html">Project Information</a>
+                </li>
+          </ul>
+                                           <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+    
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        <div class="section"><h2>Privacy Policy</h2>
+<p>Information about your use of this website is collected using server access logs and a tracking cookie. The collected information consists of the following:</p>
+<ol type="1"><li>The IP address from which you access the website;</li>
+<li>The type of browser and operating system you use to access our site;</li>
+<li>The date and time you access our site;</li>
+<li>The pages you visit; and</li>
+<li>The addresses of pages from where you followed a link to our site.</li>
+</ol>
+<p>Part of this information is gathered using a tracking cookie set by the <a href="http://www.google.com/analytics/" class="externalLink">Google Analytics</a> service and handled by Google as described in their <a href="http://www.google.com/privacy.html" class="externalLink">privacy policy</a>. See your browser documentation for instructions on how to disable the cookie if you prefer not to share this data with Google.</p>
+<p>We use the gathered information to help us make our site more useful to visitors and to better understand how and when our site is used. We do not track or collect personally identifiable information or associate gathered data with any personally identifying information from other sources.</p>
+<p>By using this website, you consent to the collection of this data in the manner and for the purpose described above.</p>
+</div>
+
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2003-2011
+    
+          The Apache Software Foundation
+          
+  
+
+  
+    
+  
+  
+    
+   - <a href="http://continuum.apache.org/privacy-policy.html">Privacy Policy</a></div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Added: continuum/site-publish/project-info.html
URL: http://svn.apache.org/viewvc/continuum/site-publish/project-info.html?rev=1414544&view=auto
==============================================================================
--- continuum/site-publish/project-info.html (added)
+++ continuum/site-publish/project-info.html Wed Nov 28 06:41:18 2012
@@ -0,0 +1,277 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+    <title>Continuum - Project Information</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+                                                    
+<script type="text/javascript">var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));</script>
+                                                        
+<script type="text/javascript">var pageTracker = _gat._getTracker("UA-140879-4");
+pageTracker._initData();
+pageTracker._trackPageview();</script>
+                    </head>
+  <body class="composite">
+    <div id="banner">
+                  <a href="" id="bannerLeft">
+    
+                                            <img src="images/continuum_logo_75.gif" alt="" />
+    
+            </a>
+                        <a href="http://www.apache.org/" id="bannerRight">
+    
+                                    <img src="http://www.apache.org/images/asf_logo_wide.png" alt="" />
+    
+            </a>
+            <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+    
+            <div class="xleft">
+          
+                <a href="http://www.apache.org/" class="externalLink">Apache</a>
+                &gt;
+      
+          Continuum
+                </div>
+            <div class="xright">      
+  
+
+  
+    
+  
+  
+    
+             Last Published: 18 Sep 2011
+            </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+    
+                   <h5>Main</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="index.html">Home</a>
+          </li>
+              
+    <li class="none">
+                    <a href="download.html">Download</a>
+          </li>
+              
+    <li class="none">
+                    <a href="change-log.html">Change Log</a>
+          </li>
+              
+    <li class="none">
+                    <a href="http://cwiki.apache.org/confluence/display/CONTINUUM/FAQ" class="externalLink">Users Wiki</a>
+          </li>
+              
+    <li class="none">
+                    <a href="articles.html">Articles</a>
+          </li>
+              
+    <li class="none">
+                    <a href="features.html">Features</a>
+          </li>
+              
+    <li class="none">
+                    <a href="http://vmbuild.apache.org/continuum/" class="externalLink">Live Demo</a>
+          </li>
+          </ul>
+              <h5>Community</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="community.html">Community Overview</a>
+          </li>
+              
+    <li class="none">
+                    <a href="guide-helping.html">How to Contribute</a>
+          </li>
+              
+    <li class="none">
+                    <a href="getting-help.html">Getting Help</a>
+          </li>
+              
+    <li class="none">
+                    <a href="issue-tracking.html">Issue Tracking</a>
+          </li>
+              
+    <li class="none">
+                    <a href="team-list.html">The Continuum Team</a>
+          </li>
+              
+    <li class="none">
+                    <a href="mail-lists.html">Mailing Lists</a>
+          </li>
+              
+    <li class="none">
+                    <a href="source-repository.html">Source Repository</a>
+          </li>
+              
+    <li class="none">
+                    <a href="license.html">License</a>
+          </li>
+          </ul>
+              <h5>Continuum Development</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="development/building.html">Build Continuum</a>
+          </li>
+              
+    <li class="none">
+                    <a href="development/debugging.html">Debugging Continuum</a>
+          </li>
+              
+    <li class="none">
+                    <a href="development/guide-continuum-development.html">Development Convention</a>
+          </li>
+              
+    <li class="none">
+                    <a href="development/release.html">Release Procedure</a>
+          </li>
+          </ul>
+              <h5>Project Documentation</h5>
+            <ul>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+            <li class="expanded">
+              <strong>Project Information</strong>
+                <ul>
+                  
+    <li class="none">
+                    <a href="issue-tracking.html">Issue Tracking</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="mail-lists.html">Mailing Lists</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="license.html">Project License</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="team-list.html">Project Team</a>
+          </li>
+                  
+    <li class="none">
+                    <a href="source-repository.html">Source Repository</a>
+          </li>
+              </ul>
+        </li>
+          </ul>
+                                           <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+    
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        <div class="section"><h2>Project Information</h2>
+<p>This document provides an overview of the various documents and links that are part of this project's general information. All of this content is automatically generated by <a class="externalLink" href="http://maven.apache.org">Maven</a> on behalf of the project.</p>
+<div class="section"><h3>Overview</h3>
+<table class="bodyTable"><tr class="a"><th>Document</th>
+<th>Description</th>
+</tr>
+<tr class="b"><td><a href="issue-tracking.html">Issue Tracking</a></td>
+<td>This is a link to the issue management system for this project. Issues (bugs, features, change requests) can be created and queried using this link.</td>
+</tr>
+<tr class="a"><td><a href="mail-lists.html">Mailing Lists</a></td>
+<td>This document provides subscription and archive information for this project's mailing lists.</td>
+</tr>
+<tr class="b"><td><a href="license.html">Project License</a></td>
+<td>This is a link to the definitions of project licenses.</td>
+</tr>
+<tr class="a"><td><a href="team-list.html">Project Team</a></td>
+<td>This document provides information on the members of this project. These are the individuals who have contributed to the project in one form or another.</td>
+</tr>
+<tr class="b"><td><a href="source-repository.html">Source Repository</a></td>
+<td>This is a link to the online source repository that can be viewed via a web browser.</td>
+</tr>
+</table>
+</div>
+</div>
+
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2003-2011
+    
+          The Apache Software Foundation
+          
+  
+
+  
+    
+  
+  
+    
+   - <a href="http://continuum.apache.org/privacy-policy.html">Privacy Policy</a></div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>

Added: continuum/site-publish/scripts/ant.bat
URL: http://svn.apache.org/viewvc/continuum/site-publish/scripts/ant.bat?rev=1414544&view=auto
==============================================================================
--- continuum/site-publish/scripts/ant.bat (added)
+++ continuum/site-publish/scripts/ant.bat Wed Nov 28 06:41:18 2012
@@ -0,0 +1,141 @@
+@echo off
+
+REM  Copyright 2001,2004-2005 The Apache Software Foundation
+REM
+REM  Licensed under the Apache License, Version 2.0 (the "License");
+REM  you may not use this file except in compliance with the License.
+REM  You may obtain a copy of the License at
+REM
+REM      http://www.apache.org/licenses/LICENSE-2.0
+REM
+REM  Unless required by applicable law or agreed to in writing, software
+REM  distributed under the License is distributed on an "AS IS" BASIS,
+REM  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+REM  See the License for the specific language governing permissions and
+REM  limitations under the License.
+
+if exist "%HOME%\antrc_pre.bat" call "%HOME%\antrc_pre.bat"
+
+if "%OS%"=="Windows_NT" @setlocal
+if "%OS%"=="WINNT" @setlocal
+
+set ERROR_CODE=0
+
+rem %~dp0 is expanded pathname of the current script under NT
+set DEFAULT_ANT_HOME=%~dp0..
+
+if "%ANT_HOME%"=="" set ANT_HOME=%DEFAULT_ANT_HOME%
+set DEFAULT_ANT_HOME=
+
+set _USE_CLASSPATH=yes
+
+rem Slurp the command line arguments. This loop allows for an unlimited number
+rem of arguments (up to the command line limit, anyway).
+set ANT_CMD_LINE_ARGS=%1
+if ""%1""=="""" goto doneStart
+shift
+:setupArgs
+if ""%1""=="""" goto doneStart
+if ""%1""==""-noclasspath"" goto clearclasspath
+set ANT_CMD_LINE_ARGS=%ANT_CMD_LINE_ARGS% %1
+shift
+goto setupArgs
+
+rem here is there is a -noclasspath in the options
+:clearclasspath
+set _USE_CLASSPATH=no
+shift
+goto setupArgs
+
+rem This label provides a place for the argument list loop to break out
+rem and for NT handling to skip to.
+
+:doneStart
+rem find ANT_HOME if it does not exist due to either an invalid value passed
+rem by the user or the %0 problem on Windows 9x
+if exist "%ANT_HOME%\lib\ant.jar" goto checkJava
+
+rem check for ant in Program Files
+if not exist "%ProgramFiles%\ant" goto checkSystemDrive
+set ANT_HOME=%ProgramFiles%\ant
+goto checkJava
+
+:checkSystemDrive
+rem check for ant in root directory of system drive
+if not exist %SystemDrive%\ant\lib\ant.jar goto checkCDrive
+set ANT_HOME=%SystemDrive%\ant
+goto checkJava
+
+:checkCDrive
+rem check for ant in C:\ant for Win9X users
+if not exist C:\ant\lib\ant.jar goto noAntHome
+set ANT_HOME=C:\ant
+goto checkJava
+
+:noAntHome
+echo ANT_HOME is set incorrectly or ant could not be located. Please set ANT_HOME.
+goto error
+
+:checkJava
+set _JAVACMD=%JAVACMD%
+
+if "%JAVA_HOME%" == "" goto noJavaHome
+if not exist "%JAVA_HOME%\bin\java.exe" goto noJavaHome
+if "%_JAVACMD%" == "" set _JAVACMD=%JAVA_HOME%\bin\java.exe
+goto checkJikes
+
+:noJavaHome
+if "%_JAVACMD%" == "" set _JAVACMD=java.exe
+
+:checkJikes
+if not "%JIKESPATH%"=="" goto runAntWithJikes
+
+:runAnt
+if "%_USE_CLASSPATH%"=="no" goto runAntNoClasspath
+if not "%CLASSPATH%"=="" goto runAntWithClasspath
+"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% %ANT_CMD_LINE_ARGS%
+goto end
+
+:runAntNoClasspath
+"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% %ANT_CMD_LINE_ARGS%
+goto end
+
+:runAntWithClasspath
+"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% -cp "%CLASSPATH%" %ANT_CMD_LINE_ARGS%
+goto end
+
+:runAntWithJikes
+if "%_USE_CLASSPATH%"=="no" goto runAntWithJikesNoClasspath
+if not "%CLASSPATH%"=="" goto runAntWithJikesAndClasspath
+
+:runAntWithJikesNoClasspath
+"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" "-Djikes.class.path=%JIKESPATH%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% %ANT_CMD_LINE_ARGS%
+goto end
+
+:runAntWithJikesAndClasspath
+"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" "-Djikes.class.path=%JIKESPATH%" org.apache.tools.ant.launch.Launcher %ANT_ARGS%  -cp "%CLASSPATH%" %ANT_CMD_LINE_ARGS%
+goto end
+
+:error
+if "%OS%"=="Windows_NT" @endlocal
+if "%OS%"=="WINNT" @endlocal
+set ERROR_CODE=1
+goto mainEnd
+
+:end
+if "%OS%"=="Windows_NT" goto endNT
+if "%OS%"=="WINNT" goto endNT
+set _JAVACMD=
+set ANT_CMD_LINE_ARGS=
+goto mainEnd
+
+:endNT
+if "%OS%"=="Windows_NT" @endlocal
+if "%OS%"=="WINNT" @endlocal
+
+:mainEnd
+if exist "%HOME%\antrc_post.bat" call "%HOME%\antrc_post.bat"
+
+if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
+
+exit /B %ERROR_CODE%

Added: continuum/site-publish/security.html
URL: http://svn.apache.org/viewvc/continuum/site-publish/security.html?rev=1414544&view=auto
==============================================================================
--- continuum/site-publish/security.html (added)
+++ continuum/site-publish/security.html Wed Nov 28 06:41:18 2012
@@ -0,0 +1,250 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+
+
+
+
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+    <title>Continuum - Security Vulnerabilities</title>
+    <style type="text/css" media="all">
+      @import url("./css/maven-base.css");
+      @import url("./css/maven-theme.css");
+      @import url("./css/site.css");
+    </style>
+    <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
+        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+                                                    
+<script type="text/javascript">var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));</script>
+                                                        
+<script type="text/javascript">var pageTracker = _gat._getTracker("UA-140879-4");
+pageTracker._initData();
+pageTracker._trackPageview();</script>
+                    </head>
+  <body class="composite">
+    <div id="banner">
+                  <a href="" id="bannerLeft">
+    
+                                            <img src="images/continuum_logo_75.gif" alt="" />
+    
+            </a>
+                        <a href="http://www.apache.org/" id="bannerRight">
+    
+                                    <img src="http://www.apache.org/images/asf_logo_wide.png" alt="" />
+    
+            </a>
+            <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="breadcrumbs">
+          
+  
+
+  
+    
+  
+  
+    
+            <div class="xleft">
+          
+                <a href="http://www.apache.org/" class="externalLink">Apache</a>
+                &gt;
+      
+          Continuum
+                </div>
+            <div class="xright">      
+  
+
+  
+    
+  
+  
+    
+             Last Published: 18 Sep 2011
+            </div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+    <div id="leftColumn">
+      <div id="navcolumn">
+           
+  
+
+  
+    
+  
+  
+    
+                   <h5>Main</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="index.html">Home</a>
+          </li>
+              
+    <li class="none">
+                    <a href="download.html">Download</a>
+          </li>
+              
+    <li class="none">
+                    <a href="change-log.html">Change Log</a>
+          </li>
+              
+    <li class="none">
+                    <a href="http://cwiki.apache.org/confluence/display/CONTINUUM/FAQ" class="externalLink">Users Wiki</a>
+          </li>
+              
+    <li class="none">
+                    <a href="articles.html">Articles</a>
+          </li>
+              
+    <li class="none">
+                    <a href="features.html">Features</a>
+          </li>
+              
+    <li class="none">
+                    <a href="http://vmbuild.apache.org/continuum/" class="externalLink">Live Demo</a>
+          </li>
+          </ul>
+              <h5>Community</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="community.html">Community Overview</a>
+          </li>
+              
+    <li class="none">
+                    <a href="guide-helping.html">How to Contribute</a>
+          </li>
+              
+    <li class="none">
+                    <a href="getting-help.html">Getting Help</a>
+          </li>
+              
+    <li class="none">
+                    <a href="issue-tracking.html">Issue Tracking</a>
+          </li>
+              
+    <li class="none">
+                    <a href="team-list.html">The Continuum Team</a>
+          </li>
+              
+    <li class="none">
+                    <a href="mail-lists.html">Mailing Lists</a>
+          </li>
+              
+    <li class="none">
+                    <a href="source-repository.html">Source Repository</a>
+          </li>
+              
+    <li class="none">
+                    <a href="license.html">License</a>
+          </li>
+          </ul>
+              <h5>Continuum Development</h5>
+            <ul>
+              
+    <li class="none">
+                    <a href="development/building.html">Build Continuum</a>
+          </li>
+              
+    <li class="none">
+                    <a href="development/debugging.html">Debugging Continuum</a>
+          </li>
+              
+    <li class="none">
+                    <a href="development/guide-continuum-development.html">Development Convention</a>
+          </li>
+              
+    <li class="none">
+                    <a href="development/release.html">Release Procedure</a>
+          </li>
+          </ul>
+              <h5>Project Documentation</h5>
+            <ul>
+              
+                
+              
+      
+            
+      
+            
+      
+            
+      
+            
+      
+              
+        <li class="collapsed">
+                    <a href="project-info.html">Project Information</a>
+                </li>
+          </ul>
+                                           <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+            <img alt="Built by Maven" src="./images/logos/maven-feather.png"></img>
+          </a>
+                       
+  
+
+  
+    
+  
+  
+    
+        </div>
+    </div>
+    <div id="bodyColumn">
+      <div id="contentBox">
+        <div class="section"><h2>Security Vulnerabilities</h2>
+<p>Please note that binary patches are not produced for individual vulnerabilities. To obtain the binary fix for a particular vulnerability you should upgrade to an Apache Continuum version where that vulnerability has been fixed.</p>
+<div class="section"><h3>CVE-2011-0533: Apache Continuum cross-site scripting vulnerability</h3>
+<p>A request that included a specially crafted request parameter could be used to inject arbitrary HTML or Javascript into the Continuum user management page and project details pages. This fix is available in version <a href="./download.html"> 1.3.7</a> of Apache Continuum. All users must upgrade to this version (or higher).</p>
+<p>Versions Affected:</p>
+<ul><li>Continuum 1.3.6</li>
+<li>Continuum 1.4.0 (Beta)</li>
+<li>The unsupported versions Continuum 1.1 - 1.2.3.1 are also affected.</li>
+</ul>
+</div>
+<div class="section"><h3>CVE-2010-3449: Apache Continuum CSRF vulnerability</h3>
+<p>Apache Continuum doesn't check which form sends credentials. An attacker can create a specially crafted page and force Continuum administrators to view it and change their credentials. To fix this, a referrer check was added to the security interceptor for all secured actions. A prompt for the administrator's password when changing a user account was also set in place. This fix is available in version <a href="./download.html"> 1.3.7</a> of Apache Continuum. All users must upgrade to this version (or higher).</p>
+<p>Versions Affected:</p>
+<ul><li>Continuum 1.3.6</li>
+<li>Continuum 1.4.0 (Beta)</li>
+<li>The unsupported versions Continuum 1.1 - 1.2.3.1 are also affected.</li>
+</ul>
+</div>
+</div>
+
+      </div>
+    </div>
+    <div class="clear">
+      <hr/>
+    </div>
+    <div id="footer">
+      <div class="xright">&#169;  
+          2003-2011
+    
+          The Apache Software Foundation
+          
+  
+
+  
+    
+  
+  
+    
+   - <a href="http://continuum.apache.org/privacy-policy.html">Privacy Policy</a></div>
+      <div class="clear">
+        <hr/>
+      </div>
+    </div>
+  </body>
+</html>