You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2014/10/19 13:40:24 UTC

[47/78] [abbrv] [partial] ISIS-537 remove everything related to JQuery UI. It is not used anymore. It seems the datepicker was the only JQuery UI widget around

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/droppable/propagation.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/droppable/propagation.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/droppable/propagation.html
deleted file mode 100644
index a116755..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/droppable/propagation.html
+++ /dev/null
@@ -1,73 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Droppable - Prevent propagation</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.draggable.js"></script>
-	<script src="../../ui/jquery.ui.droppable.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	#draggable { width: 100px; height: 40px; padding: 0.5em; float: left; margin: 10px 10px 10px 0; }
-	#droppable, #droppable2 { width: 230px; height: 120px; padding: 0.5em; float: left; margin: 10px; }
-	#droppable-inner, #droppable2-inner { width: 170px; height: 60px; padding: 0.5em; float: left; margin: 10px; }
-	</style>
-	<script>
-	$(function() {
-		$( "#draggable" ).draggable();
-
-		$( "#droppable, #droppable-inner" ).droppable({
-			activeClass: "ui-state-hover",
-			hoverClass: "ui-state-active",
-			drop: function( event, ui ) {
-				$( this )
-					.addClass( "ui-state-highlight" )
-					.find( "> p" )
-						.html( "Dropped!" );
-				return false;
-			}
-		});
-
-		$( "#droppable2, #droppable2-inner" ).droppable({
-			greedy: true,
-			activeClass: "ui-state-hover",
-			hoverClass: "ui-state-active",
-			drop: function( event, ui ) {
-				$( this )
-					.addClass( "ui-state-highlight" )
-					.find( "> p" )
-						.html( "Dropped!" );
-			}
-		});
-	});
-	</script>
-</head>
-<body>
-
-<div id="draggable" class="ui-widget-content">
-	<p>Drag me to my target</p>
-</div>
-
-<div id="droppable" class="ui-widget-header">
-	<p>Outer droppable</p>
-	<div id="droppable-inner" class="ui-widget-header">
-		<p>Inner droppable (not greedy)</p>
-	</div>
-</div>
-
-<div id="droppable2" class="ui-widget-header">
-	<p>Outer droppable</p>
-	<div id="droppable2-inner" class="ui-widget-header">
-		<p>Inner droppable (greedy)</p>
-	</div>
-</div>
-
-<div class="demo-description">
-<p>When working with nested droppables &#8212; for example, you may have an editable directory structure displayed as a tree, with folder and document nodes &#8212; the <code>greedy</code> option set to true prevents event propagation when a draggable is dropped on a child node (droppable).</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/droppable/revert.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/droppable/revert.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/droppable/revert.html
deleted file mode 100644
index 2c2fb2c..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/droppable/revert.html
+++ /dev/null
@@ -1,54 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Droppable - Revert draggable position</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.draggable.js"></script>
-	<script src="../../ui/jquery.ui.droppable.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	#draggable, #draggable2 { width: 100px; height: 100px; padding: 0.5em; float: left; margin: 10px 10px 10px 0; }
-	#droppable { width: 150px; height: 150px; padding: 0.5em; float: left; margin: 10px; }
-	</style>
-	<script>
-	$(function() {
-		$( "#draggable" ).draggable({ revert: "valid" });
-		$( "#draggable2" ).draggable({ revert: "invalid" });
-
-		$( "#droppable" ).droppable({
-			activeClass: "ui-state-hover",
-			hoverClass: "ui-state-active",
-			drop: function( event, ui ) {
-				$( this )
-					.addClass( "ui-state-highlight" )
-					.find( "p" )
-						.html( "Dropped!" );
-			}
-		});
-	});
-	</script>
-</head>
-<body>
-
-<div id="draggable" class="ui-widget-content">
-	<p>I revert when I'm dropped</p>
-</div>
-
-<div id="draggable2" class="ui-widget-content">
-	<p>I revert when I'm not dropped</p>
-</div>
-
-<div id="droppable" class="ui-widget-header">
-	<p>Drop me here</p>
-</div>
-
-<div class="demo-description">
-<p>Return the draggable (or it's helper) to its original location when dragging stops with the boolean <code>revert</code> option set on the draggable.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/droppable/shopping-cart.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/droppable/shopping-cart.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/droppable/shopping-cart.html
deleted file mode 100644
index fe7d636..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/droppable/shopping-cart.html
+++ /dev/null
@@ -1,94 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Droppable - Shopping Cart Demo</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.draggable.js"></script>
-	<script src="../../ui/jquery.ui.droppable.js"></script>
-	<script src="../../ui/jquery.ui.sortable.js"></script>
-	<script src="../../ui/jquery.ui.accordion.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	h1 { padding: .2em; margin: 0; }
-	#products { float:left; width: 500px; margin-right: 2em; }
-	#cart { width: 200px; float: left; margin-top: 1em; }
-	/* style the list to maximize the droppable hitarea */
-	#cart ol { margin: 0; padding: 1em 0 1em 3em; }
-	</style>
-	<script>
-	$(function() {
-		$( "#catalog" ).accordion();
-		$( "#catalog li" ).draggable({
-			appendTo: "body",
-			helper: "clone"
-		});
-		$( "#cart ol" ).droppable({
-			activeClass: "ui-state-default",
-			hoverClass: "ui-state-hover",
-			accept: ":not(.ui-sortable-helper)",
-			drop: function( event, ui ) {
-				$( this ).find( ".placeholder" ).remove();
-				$( "<li></li>" ).text( ui.draggable.text() ).appendTo( this );
-			}
-		}).sortable({
-			items: "li:not(.placeholder)",
-			sort: function() {
-				// gets added unintentionally by droppable interacting with sortable
-				// using connectWithSortable fixes this, but doesn't allow you to customize active/hoverClass options
-				$( this ).removeClass( "ui-state-default" );
-			}
-		});
-	});
-	</script>
-</head>
-<body>
-
-<div id="products">
-	<h1 class="ui-widget-header">Products</h1>
-	<div id="catalog">
-		<h2><a href="#">T-Shirts</a></h2>
-		<div>
-			<ul>
-				<li>Lolcat Shirt</li>
-				<li>Cheezeburger Shirt</li>
-				<li>Buckit Shirt</li>
-			</ul>
-		</div>
-		<h2><a href="#">Bags</a></h2>
-		<div>
-			<ul>
-				<li>Zebra Striped</li>
-				<li>Black Leather</li>
-				<li>Alligator Leather</li>
-			</ul>
-		</div>
-		<h2><a href="#">Gadgets</a></h2>
-		<div>
-			<ul>
-				<li>iPhone</li>
-				<li>iPod</li>
-				<li>iPad</li>
-			</ul>
-		</div>
-	</div>
-</div>
-
-<div id="cart">
-	<h1 class="ui-widget-header">Shopping Cart</h1>
-	<div class="ui-widget-content">
-		<ol>
-			<li class="placeholder">Add your items here</li>
-		</ol>
-	</div>
-</div>
-
-<div class="demo-description">
-<p>Demonstrate how to use an accordion to structure products into a catalog and make use of drag and drop for adding them to a shopping cart, where they are sortable.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/droppable/visual-feedback.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/droppable/visual-feedback.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/droppable/visual-feedback.html
deleted file mode 100644
index 06b8325..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/droppable/visual-feedback.html
+++ /dev/null
@@ -1,72 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Droppable - Visual feedback</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.draggable.js"></script>
-	<script src="../../ui/jquery.ui.droppable.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	#draggable, #draggable2 { width: 90px; height: 90px; padding: 0.5em; float: left; margin: 10px 10px 10px 0; }
-	#droppable, #droppable2 { width: 120px; height: 120px; padding: 0.5em; float: left; margin: 10px; }
-	h3 { clear: left; }
-	</style>
-	<script>
-	$(function() {
-		$( "#draggable" ).draggable();
-		$( "#droppable" ).droppable({
-			hoverClass: "ui-state-active",
-			drop: function( event, ui ) {
-				$( this )
-					.addClass( "ui-state-highlight" )
-					.find( "p" )
-						.html( "Dropped!" );
-			}
-		});
-
-		$( "#draggable2" ).draggable();
-		$( "#droppable2" ).droppable({
-			accept: "#draggable2",
-			activeClass: "ui-state-hover",
-			drop: function( event, ui ) {
-				$( this )
-					.addClass( "ui-state-highlight" )
-					.find( "p" )
-						.html( "Dropped!" );
-			}
-		});
-	});
-	</script>
-</head>
-<body>
-
-<h3>Feedback on hover:</h3>
-
-<div id="draggable" class="ui-widget-content">
-	<p>Drag me to my target</p>
-</div>
-
-<div id="droppable" class="ui-widget-header">
-	<p>Drop here</p>
-</div>
-
-<h3>Feedback on activating draggable:</h3>
-
-<div id="draggable2" class="ui-widget-content">
-	<p>Drag me to my target</p>
-</div>
-
-<div id="droppable2" class="ui-widget-header">
-	<p>Drop here</p>
-</div>
-
-<div class="demo-description">
-<p>Change the droppable's appearance on hover, or when the droppable is active (an acceptable draggable is dropped on it).  Use the <code>hoverClass</code> or <code>activeClass</code> options to specify respective classes.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/effect/default.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/effect/default.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/effect/default.html
deleted file mode 100644
index 7c3d05f..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/effect/default.html
+++ /dev/null
@@ -1,102 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Effects - Effect demo</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.effect.js"></script>
-	<script src="../../ui/jquery.ui.effect-blind.js"></script>
-	<script src="../../ui/jquery.ui.effect-bounce.js"></script>
-	<script src="../../ui/jquery.ui.effect-clip.js"></script>
-	<script src="../../ui/jquery.ui.effect-drop.js"></script>
-	<script src="../../ui/jquery.ui.effect-explode.js"></script>
-	<script src="../../ui/jquery.ui.effect-fade.js"></script>
-	<script src="../../ui/jquery.ui.effect-fold.js"></script>
-	<script src="../../ui/jquery.ui.effect-highlight.js"></script>
-	<script src="../../ui/jquery.ui.effect-pulsate.js"></script>
-	<script src="../../ui/jquery.ui.effect-scale.js"></script>
-	<script src="../../ui/jquery.ui.effect-shake.js"></script>
-	<script src="../../ui/jquery.ui.effect-slide.js"></script>
-	<script src="../../ui/jquery.ui.effect-transfer.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-		.toggler { width: 500px; height: 200px; position: relative; }
-		#button { padding: .5em 1em; text-decoration: none; }
-		#effect { width: 240px; height: 135px; padding: 0.4em; position: relative; }
-		#effect h3 { margin: 0; padding: 0.4em; text-align: center; }
-		.ui-effects-transfer { border: 2px dotted gray; }
-	</style>
-	<script>
-	$(function() {
-		// run the currently selected effect
-		function runEffect() {
-			// get effect type from
-			var selectedEffect = $( "#effectTypes" ).val();
-
-			// most effect types need no options passed by default
-			var options = {};
-			// some effects have required parameters
-			if ( selectedEffect === "scale" ) {
-				options = { percent: 0 };
-			} else if ( selectedEffect === "transfer" ) {
-				options = { to: "#button", className: "ui-effects-transfer" };
-			} else if ( selectedEffect === "size" ) {
-				options = { to: { width: 200, height: 60 } };
-			}
-
-			// run the effect
-			$( "#effect" ).effect( selectedEffect, options, 500, callback );
-		};
-
-		// callback function to bring a hidden box back
-		function callback() {
-			setTimeout(function() {
-				$( "#effect" ).removeAttr( "style" ).hide().fadeIn();
-			}, 1000 );
-		};
-
-		// set effect from select menu value
-		$( "#button" ).click(function() {
-			runEffect();
-			return false;
-		});
-	});
-	</script>
-</head>
-<body>
-
-<div class="toggler">
-	<div id="effect" class="ui-widget-content ui-corner-all">
-		<h3 class="ui-widget-header ui-corner-all">Effect</h3>
-		<p>
-			Etiam libero neque, luctus a, eleifend nec, semper at, lorem. Sed pede. Nulla lorem metus, adipiscing ut, luctus sed, hendrerit vitae, mi.
-		</p>
-	</div>
-</div>
-
-<select name="effects" id="effectTypes">
-	<option value="blind">Blind</option>
-	<option value="bounce">Bounce</option>
-	<option value="clip">Clip</option>
-	<option value="drop">Drop</option>
-	<option value="explode">Explode</option>
-	<option value="fade">Fade</option>
-	<option value="fold">Fold</option>
-	<option value="highlight">Highlight</option>
-	<option value="puff">Puff</option>
-	<option value="pulsate">Pulsate</option>
-	<option value="scale">Scale</option>
-	<option value="shake">Shake</option>
-	<option value="size">Size</option>
-	<option value="slide">Slide</option>
-	<option value="transfer">Transfer</option>
-</select>
-
-<a href="#" id="button" class="ui-state-default ui-corner-all">Run Effect</a>
-
-<div class="demo-description">
-<p>Click the button above to show the effect.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/effect/easing.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/effect/easing.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/effect/easing.html
deleted file mode 100644
index 819351e..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/effect/easing.html
+++ /dev/null
@@ -1,102 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Effects - Easing demo</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.effect.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	.graph {
-		float: left;
-		margin-left: 10px;
-	}
-	</style>
-	<script>
-	$(function() {
-		if ( !$( "<canvas>" )[0].getContext ) {
-			$( "<div>" ).text(
-				"Your browser doesn't support canvas, which is required for this demo."
-			).appendTo( "#graphs" );
-			return;
-		}
-
-		var i = 0,
-			width = 100,
-			height = 100;
-
-		$.each( $.easing, function( name, impl ) {
-			var graph = $( "<div>" ).addClass( "graph" ).appendTo( "#graphs" ),
-				text = $( "<div>" ).text( ++i + ". " + name ).appendTo( graph ),
-				wrap = $( "<div>" ).appendTo( graph ).css( 'overflow', 'hidden' ),
-				canvas = $( "<canvas>" ).appendTo( wrap )[ 0 ];
-
-			canvas.width = width;
-			canvas.height = height;
-			var drawHeight = height * 0.8,
-				cradius = 10;
-				ctx = canvas.getContext( "2d" );
-			ctx.fillStyle = "black";
-
-			// draw background
-			ctx.beginPath();
-			ctx.moveTo( cradius, 0 );
-			ctx.quadraticCurveTo( 0, 0, 0, cradius );
-			ctx.lineTo( 0, height - cradius );
-			ctx.quadraticCurveTo( 0, height, cradius, height );
-			ctx.lineTo( width - cradius, height );
-			ctx.quadraticCurveTo( width, height, width, height - cradius );
-			ctx.lineTo( width, 0 );
-			ctx.lineTo( cradius, 0 );
-			ctx.fill();
-
-			// draw bottom line
-			ctx.strokeStyle = "#555";
-			ctx.beginPath();
-			ctx.moveTo( width * 0.1, drawHeight + .5 );
-			ctx.lineTo( width * 0.9, drawHeight + .5 );
-			ctx.stroke();
-
-			// draw top line
-			ctx.strokeStyle = "#555";
-			ctx.beginPath();
-			ctx.moveTo( width * 0.1, drawHeight * .3 - .5 );
-			ctx.lineTo( width * 0.9, drawHeight * .3 - .5 );
-			ctx.stroke();
-
-			// plot easing
-			ctx.strokeStyle = "white";
-			ctx.beginPath();
-			ctx.lineWidth = 2;
-			ctx.moveTo( width * 0.1, drawHeight );
-			$.each( new Array( width ), function( position ) {
-				var state = position / width,
-					val = impl( state, position, 0, 1, width );
-				ctx.lineTo( position * 0.8 + width * 0.1,
-					drawHeight - drawHeight * val * 0.7 );
-			});
-			ctx.stroke();
-
-			// animate on click
-			graph.click(function() {
-				wrap
-					.animate( { height: "hide" }, 2000, name )
-					.delay( 800 )
-					.animate( { height: "show" }, 2000, name );
-			});
-
-			graph.width( width ).height( height + text.height() + 10 );
-		});
-	});
-	</script>
-</head>
-<body>
-
-<div id="graphs"></div>
-
-<div class="demo-description">
-<p><strong>All easings provided by jQuery UI are drawn above, using a HTML canvas element</strong>. Click a diagram to see the easing in action.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/effect/index.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/effect/index.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/effect/index.html
deleted file mode 100644
index 5da6bc6..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/effect/index.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Effects Demos</title>
-</head>
-<body>
-
-<ul>
-	<li><a href="default.html">Effect showcase</a></li>
-	<li><a href="easing.html">Easing showcase</a></li>
-</ul>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/calendar.gif
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/calendar.gif b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/calendar.gif
deleted file mode 100644
index d0abaa7..0000000
Binary files a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/calendar.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/demo-config-on-tile.gif
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/demo-config-on-tile.gif b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/demo-config-on-tile.gif
deleted file mode 100644
index a96b5bf..0000000
Binary files a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/demo-config-on-tile.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/demo-config-on.gif
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/demo-config-on.gif b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/demo-config-on.gif
deleted file mode 100644
index e3b6d7c..0000000
Binary files a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/demo-config-on.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/demo-spindown-closed.gif
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/demo-spindown-closed.gif b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/demo-spindown-closed.gif
deleted file mode 100644
index ad4bd37..0000000
Binary files a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/demo-spindown-closed.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/demo-spindown-open.gif
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/demo-spindown-open.gif b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/demo-spindown-open.gif
deleted file mode 100644
index e1c60aa..0000000
Binary files a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/demo-spindown-open.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/icon-docs-info.gif
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/icon-docs-info.gif b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/icon-docs-info.gif
deleted file mode 100644
index ea6d2be..0000000
Binary files a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/icon-docs-info.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/pbar-ani.gif
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/pbar-ani.gif b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/pbar-ani.gif
deleted file mode 100644
index cb59a04..0000000
Binary files a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/images/pbar-ani.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/menu/default.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/menu/default.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/menu/default.html
deleted file mode 100644
index fcb93b8..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/menu/default.html
+++ /dev/null
@@ -1,67 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Menu - Default functionality</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.position.js"></script>
-	<script src="../../ui/jquery.ui.menu.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<script>
-	$(function() {
-		$( "#menu" ).menu();
-	});
-	</script>
-	<style>
-	.ui-menu { width: 150px; }
-	</style>
-</head>
-<body>
-
-<ul id="menu">
-	<li class="ui-state-disabled"><a href="#">Aberdeen</a></li>
-	<li><a href="#">Ada</a></li>
-	<li><a href="#">Adamsville</a></li>
-	<li><a href="#">Addyston</a></li>
-	<li>
-		<a href="#">Delphi</a>
-		<ul>
-			<li class="ui-state-disabled"><a href="#">Ada</a></li>
-			<li><a href="#">Saarland</a></li>
-			<li><a href="#">Salzburg</a></li>
-		</ul>
-	</li>
-	<li><a href="#">Saarland</a></li>
-	<li>
-		<a href="#">Salzburg</a>
-		<ul>
-			<li>
-				<a href="#">Delphi</a>
-				<ul>
-					<li><a href="#">Ada</a></li>
-					<li><a href="#">Saarland</a></li>
-					<li><a href="#">Salzburg</a></li>
-				</ul>
-			</li>
-			<li>
-				<a href="#">Delphi</a>
-				<ul>
-					<li><a href="#">Ada</a></li>
-					<li><a href="#">Saarland</a></li>
-					<li><a href="#">Salzburg</a></li>
-				</ul>
-			</li>
-			<li><a href="#">Perch</a></li>
-		</ul>
-	</li>
-	<li class="ui-state-disabled"><a href="#">Amesville</a></li>
-</ul>
-
-<div class="demo-description">
-<p>A menu with the default configuration, disabled items and nested menus. A list is transformed, adding theming, mouse and keyboard navigation support. Try to tab to the menu then use the cursor keys to navigate.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/menu/icons.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/menu/icons.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/menu/icons.html
deleted file mode 100644
index e928f42..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/menu/icons.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Menu - Icons</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.position.js"></script>
-	<script src="../../ui/jquery.ui.menu.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<script>
-	$(function() {
-		$( "#menu" ).menu();
-	});
-	</script>
-	<style>
-	.ui-menu { width: 150px; }
-	</style>
-</head>
-<body>
-
-<ul id="menu">
-	<li><a href="#"><span class="ui-icon ui-icon-disk"></span>Save</a></li>
-	<li><a href="#"><span class="ui-icon ui-icon-zoomin"></span>Zoom In</a></li>
-	<li><a href="#"><span class="ui-icon ui-icon-zoomout"></span>Zoom Out</a></li>
-	<li class="ui-state-disabled"><a href="#"><span class="ui-icon ui-icon-print"></span>Print...</a></li>
-	<li>
-		<a href="#">Playback</a>
-		<ul>
-			<li><a href="#"><span class="ui-icon ui-icon-seek-start"></span>Prev</a></li>
-			<li><a href="#"><span class="ui-icon ui-icon-stop"></span>Stop</a></li>
-			<li><a href="#"><span class="ui-icon ui-icon-play"></span>Play</a></li>
-			<li><a href="#"><span class="ui-icon ui-icon-seek-end"></span>Next</a></li>
-		</ul>
-	</li>
-</ul>
-
-<div class="demo-description">
-<p>A menu with the default configuration, showing how to use a menu with icons.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/menu/index.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/menu/index.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/menu/index.html
deleted file mode 100644
index 40e9e0b..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/menu/index.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Menu Demos</title>
-</head>
-<body>
-
-<ul>
-	<li><a href="default.html">Default functionality</a></li>
-	<li><a href="icons.html">Icons</a></li>
-</ul>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/cycler.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/cycler.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/cycler.html
deleted file mode 100644
index 7eef091..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/cycler.html
+++ /dev/null
@@ -1,107 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Position - Image Cycler</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.position.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	body {
-		margin: 0;
-	}
-	#container {
-		overflow: hidden;
-		position: relative;
-		height: 400px;
-	}
-
-	img {
-		position: absolute;
-	}
-	</style>
-	<script>
-	$(function() {
-		// TODO refactor into a widget and get rid of these plugin methods
-		$.fn.left = function( using ) {
-			return this.position({
-				my: "right middle",
-				at: "left+25 middle",
-				of: "#container",
-				collision: "none",
-				using: using
-			});
-		};
-		$.fn.right = function( using ) {
-			return this.position({
-				my: "left middle",
-				at: "right-25 middle",
-				of: "#container",
-				collision: "none",
-				using: using
-			});
-		};
-		$.fn.center = function( using ) {
-			return this.position({
-				my: "center middle",
-				at: "center middle",
-				of: "#container",
-				using: using
-			});
-		};
-
-		$( "img:eq(0)" ).left();
-		$( "img:eq(1)" ).center();
-		$( "img:eq(2)" ).right();
-
-		function animate( to ) {
-			$( this ).stop( true, false ).animate( to );
-		}
-		function next( event ) {
-			event.preventDefault();
-			$( "img:eq(2)" ).center( animate );
-			$( "img:eq(1)" ).left( animate )
-			$( "img:eq(0)" ).right().appendTo( "#container" );
-		}
-		function previous( event ) {
-			event.preventDefault();
-			$( "img:eq(0)" ).center( animate );
-			$( "img:eq(1)" ).right( animate );
-			$( "img:eq(2)" ).left().prependTo( "#container" );
-		}
-		$( "#previous" ).click( previous );
-		$( "#next" ).click( next );
-
-		$( "img" ).click(function( event ) {
-			$( "img" ).index( this ) === 0 ? previous( event ) : next( event );
-		});
-
-		$( window ).resize(function() {
-			$( "img:eq(0)" ).left( animate );
-			$( "img:eq(1)" ).center( animate );
-			$( "img:eq(2)" ).right( animate );
-		});
-	});
-	</script>
-</head>
-<body>
-
-<div id="container">
-	<img src="images/earth.jpg" width="458" height="308" alt="earth">
-	<img src="images/flight.jpg" width="512" height="307" alt="flight">
-	<img src="images/rocket.jpg" width="300" height="353" alt="rocket">
-
-	<a id="previous" href="#">Previous</a>
-	<a id="next" href="#">Next</a>
-</div>
-
-<div class="demo-description">
-<p>A photoviewer prototype using Position to place images at the center, left and right and cycle them.
-<br>Use the links at the top to cycle, or click on the images on the left and right.
-<br>Note how the images are repositioned when resizing the window.
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/default.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/default.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/default.html
deleted file mode 100644
index 8d6cca0..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/default.html
+++ /dev/null
@@ -1,137 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Position - Default functionality</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.draggable.js"></script>
-	<script src="../../ui/jquery.ui.position.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	#parent {
-		width: 60%;
-		height: 40px;
-		margin: 10px auto;
-		padding: 5px;
-		border: 1px solid #777;
-		background-color: #fbca93;
-		text-align: center;
-	}
-	.positionable {
-		position: absolute;
-		display: block;
-		right: 0;
-		bottom: 0;
-		background-color: #bcd5e6;
-		text-align: center;
-	}
-	#positionable1 {
-		width: 75px;
-		height: 75px;
-	}
-	#positionable2 {
-		width: 120px;
-		height: 40px;
-	}
-	select, input {
-		margin-left: 15px;
-	}
-	</style>
-	<script>
-	$(function() {
-		function position() {
-			$( ".positionable" ).position({
-				of: $( "#parent" ),
-				my: $( "#my_horizontal" ).val() + " " + $( "#my_vertical" ).val(),
-				at: $( "#at_horizontal" ).val() + " " + $( "#at_vertical" ).val(),
-				collision: $( "#collision_horizontal" ).val() + " " + $( "#collision_vertical" ).val()
-			});
-		}
-
-		$( ".positionable" ).css( "opacity", 0.5 );
-
-		$( "select, input" ).bind( "click keyup change", position );
-
-		$( "#parent" ).draggable({
-			drag: position
-		});
-
-		position();
-	});
-	</script>
-</head>
-<body>
-
-<div id="parent">
-	<p>
-	This is the position parent element.
-	</p>
-</div>
-
-<div class="positionable" id="positionable1">
-	<p>
-	to position
-	</p>
-</div>
-
-<div class="positionable" id="positionable2">
-	<p>
-	to position 2
-	</p>
-</div>
-
-<div style="padding: 20px; margin-top: 75px;">
-	position...
-	<div style="padding-bottom: 20px;">
-		<b>my:</b>
-		<select id="my_horizontal">
-			<option value="left">left</option>
-			<option value="center">center</option>
-			<option value="right">right</option>
-		</select>
-		<select id="my_vertical">
-			<option value="top">top</option>
-			<option value="middle">center</option>
-			<option value="bottom">bottom</option>
-		</select>
-	</div>
-	<div style="padding-bottom: 20px;">
-		<b>at:</b>
-		<select id="at_horizontal">
-			<option value="left">left</option>
-			<option value="center">center</option>
-			<option value="right">right</option>
-		</select>
-		<select id="at_vertical">
-			<option value="top">top</option>
-			<option value="middle">center</option>
-			<option value="bottom">bottom</option>
-		</select>
-	</div>
-	<div style="padding-bottom: 20px;">
-		<b>collision:</b>
-		<select id="collision_horizontal">
-			<option value="flip">flip</option>
-			<option value="fit">fit</option>
-			<option value="flipfit">flipfit</option>
-			<option value="none">none</option>
-		</select>
-		<select id="collision_vertical">
-			<option value="flip">flip</option>
-			<option value="fit">fit</option>
-			<option value="flipfit">flipfit</option>
-			<option value="none">none</option>
-		</select>
-	</div>
-</div>
-
-<div class="demo-description">
-<p>Use the form controls to configure the positioning, or drag the positioned element to modify its offset.
-<br>Drag around the parent element to see collision detection in action.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/images/earth.jpg
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/images/earth.jpg b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/images/earth.jpg
deleted file mode 100644
index e5477f7..0000000
Binary files a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/images/earth.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/images/flight.jpg
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/images/flight.jpg b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/images/flight.jpg
deleted file mode 100644
index 362bd1a..0000000
Binary files a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/images/flight.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/images/rocket.jpg
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/images/rocket.jpg b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/images/rocket.jpg
deleted file mode 100644
index 9c0495c..0000000
Binary files a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/images/rocket.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/index.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/index.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/index.html
deleted file mode 100644
index a7b7548..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/position/index.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Position Demo</title>
-</head>
-<body>
-
-<ul>
-	<li><a href="default.html">Default functionality</a></li>
-	<li><a href="cycler.html">Cycling images</a></li>
-</ul>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/progressbar/default.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/progressbar/default.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/progressbar/default.html
deleted file mode 100644
index 8f4dd53..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/progressbar/default.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Progressbar - Default functionality</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.progressbar.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<script>
-	$(function() {
-		$( "#progressbar" ).progressbar({
-			value: 37
-		});
-	});
-	</script>
-</head>
-<body>
-
-<div id="progressbar"></div>
-
-<div class="demo-description">
-<p>Default determinate progress bar.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/progressbar/images/pbar-ani.gif
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/progressbar/images/pbar-ani.gif b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/progressbar/images/pbar-ani.gif
deleted file mode 100644
index cb59a04..0000000
Binary files a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/progressbar/images/pbar-ani.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/progressbar/indeterminate.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/progressbar/indeterminate.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/progressbar/indeterminate.html
deleted file mode 100644
index 54e7c43..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/progressbar/indeterminate.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Progressbar - Indeterminate Value</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.progressbar.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<script>
-	$(function() {
-		$( "#progressbar" ).progressbar({
-			value: false
-		});
-		$( "button" ).on( "click", function( event ) {
-			var target = $( event.target ),
-				progressbar = $( "#progressbar" ),
-				progressbarValue = progressbar.find( ".ui-progressbar-value" );
-
-			if ( target.is( "#numButton" ) ) {
-				progressbar.progressbar( "option", {
-					value: Math.floor( Math.random() * 100 )
-				});
-			} else if ( target.is( "#colorButton" ) ) {
-				progressbarValue.css({
-					"background": '#' + Math.floor( Math.random() * 16777215 ).toString( 16 )
-				});
-			} else if ( target.is( "#falseButton" ) ) {
-				progressbar.progressbar( "option", "value", false );
-			}
-		});
-	});
-	</script>
-	<style>
-	#progressbar .ui-progressbar-value {
-		background-color: #ccc;
-	}
-	</style>
-</head>
-<body>
-
-<div id="progressbar"></div>
-<button id="numButton">Random Value - Determinate</button>
-<button id="falseButton">Indeterminate</button>
-<button id="colorButton">Random Color</button>
-
-<div class="demo-description">
-<p>Indeterminate progress bar and switching between determinate and indeterminate styles.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/progressbar/index.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/progressbar/index.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/progressbar/index.html
deleted file mode 100644
index cfc054a..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/progressbar/index.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Progressbar Demos</title>
-</head>
-<body>
-
-<ul>
-	<li><a href="default.html">Default functionality</a></li>
-	<li><a href="indeterminate.html">Indeterminate</a></li>
-	<li><a href="label.html">Custom Labels</a></li>
-</ul>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/progressbar/label.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/progressbar/label.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/progressbar/label.html
deleted file mode 100644
index 3e669ba..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/progressbar/label.html
+++ /dev/null
@@ -1,58 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Progressbar - Custom Label</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.progressbar.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	.progress-label {
-		float: left;
-		margin-left: 50%;
-		margin-top: 5px;
-		font-weight: bold;
-		text-shadow: 1px 1px 0 #fff;
-	}
-	</style>
-	<script>
-	$(function() {
-		var progressbar = $( "#progressbar" ),
-			progressLabel = $( ".progress-label" );
-
-		progressbar.progressbar({
-			value: false,
-			change: function() {
-				progressLabel.text( progressbar.progressbar( "value" ) + "%" );
-			},
-			complete: function() {
-				progressLabel.text( "Complete!" );
-			}
-		});
-
-		function progress() {
-			var val = progressbar.progressbar( "value" ) || 0;
-
-			progressbar.progressbar( "value", val + 1 );
-
-			if ( val < 99 ) {
-				setTimeout( progress, 100 );
-			}
-		}
-
-		setTimeout( progress, 3000 );
-	});
-	</script>
-</head>
-<body>
-
-<div id="progressbar"><div class="progress-label">Loading...</div></div>
-
-<div class="demo-description">
-<p>Custom updated label demo.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/animate.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/animate.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/animate.html
deleted file mode 100644
index c066be7..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/animate.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Resizable - Animate</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.resizable.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	#resizable { width: 150px; height: 150px; padding: 0.5em; }
-	#resizable h3 { text-align: center; margin: 0; }
-	.ui-resizable-helper { border: 1px dotted gray; }
-	</style>
-	<script>
-	$(function() {
-		$( "#resizable" ).resizable({
-			animate: true
-		});
-	});
-	</script>
-</head>
-<body>
-
-<div id="resizable" class="ui-widget-content">
-	<h3 class="ui-widget-header">Animate</h3>
-</div>
-
-<div class="demo-description">
-<p>Animate the resize action using the <code>animate</code> option (boolean). When this option is set to true, drag the outline to the desired location; the element animates to that size on drag stop.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/aspect-ratio.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/aspect-ratio.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/aspect-ratio.html
deleted file mode 100644
index f3f3501..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/aspect-ratio.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Resizable - Preserve aspect ratio</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.resizable.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	#resizable { width: 160px; height: 90px; padding: 0.5em; }
-	#resizable h3 { text-align: center; margin: 0; }
-	</style>
-	<script>
-	$(function() {
-		$( "#resizable" ).resizable({
-			aspectRatio: 16 / 9
-		});
-	});
-	</script>
-</head>
-<body>
-
-<div id="resizable" class="ui-widget-content">
-	<h3 class="ui-widget-header">Preserve aspect ratio</h3>
-</div>
-
-<div class="demo-description">
-<p>Maintain the existing aspect ratio or set a new one to constrain the proportions on resize. Set the <code>aspectRatio</code> option to true, and optionally pass in a new ratio (i.e., 4/3)</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/constrain-area.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/constrain-area.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/constrain-area.html
deleted file mode 100644
index a91c89b..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/constrain-area.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Resizable - Constrain resize area</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.resizable.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	#container { width: 300px; height: 300px; }
-	#container h3 { text-align: center; margin: 0; margin-bottom: 10px; }
-	#resizable { background-position: top left; width: 150px; height: 150px; }
-	#resizable, #container { padding: 0.5em; }
-	</style>
-	<script>
-	$(function() {
-		$( "#resizable" ).resizable({
-			containment: "#container"
-		});
-	});
-	</script>
-</head>
-<body>
-
-<div id="container" class="ui-widget-content">
-	<h3 class="ui-widget-header">Containment</h3>
-	<div id="resizable" class="ui-state-active">
-		<h3 class="ui-widget-header">Resizable</h3>
-	</div>
-</div>
-
-<div class="demo-description">
-<p>Define the boundaries of the resizable area. Use the <code>containment</code> option to specify a parent DOM element or a jQuery selector, like 'document.'</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/default.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/default.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/default.html
deleted file mode 100644
index c6875ee..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/default.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Resizable - Default functionality</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.resizable.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	#resizable { width: 150px; height: 150px; padding: 0.5em; }
-	#resizable h3 { text-align: center; margin: 0; }
-	</style>
-	<script>
-	$(function() {
-		$( "#resizable" ).resizable();
-	});
-	</script>
-</head>
-<body>
-
-<div id="resizable" class="ui-widget-content">
-	<h3 class="ui-widget-header">Resizable</h3>
-</div>
-
-<div class="demo-description">
-<p>Enable any DOM element to be resizable.  With the cursor grab the right or bottom border and drag to the desired width or height.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/delay-start.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/delay-start.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/delay-start.html
deleted file mode 100644
index a04cdd0..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/delay-start.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Resizable - Delay start</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.resizable.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	#resizable, #resizable2 { width: 150px; height: 150px; padding: 0.5em; }
-	#resizable h3, #resizable2 h3 { text-align: center; margin: 0; }
-	</style>
-	<script>
-	$(function() {
-		$( "#resizable" ).resizable({
-			delay: 1000
-		});
-
-		$( "#resizable2" ).resizable({
-			distance: 40
-		});
-	});
-	</script>
-</head>
-<body>
-
-<h3 class="docs">Time delay (ms):</h3>
-<div id="resizable" class="ui-widget-content">
-	<h3 class="ui-widget-header">Time</h3>
-</div>
-
-<h3 class="docs">Distance delay (px):</h3>
-<div id="resizable2" class="ui-widget-content">
-	<h3 class="ui-widget-header">Distance</h3>
-</div>
-
-<div class="demo-description">
-<p>Delay the start of resizng for a number of milliseconds with the <code>delay</code> option; prevent resizing until the cursor is held down and dragged a specifed number of pixels with the <code>distance</code> option.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/helper.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/helper.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/helper.html
deleted file mode 100644
index 24f4ad3..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/helper.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Resizable - Helper</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.resizable.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	#resizable { width: 150px; height: 150px; padding: 0.5em; }
-	#resizable h3 { text-align: center; margin: 0; }
-	.ui-resizable-helper { border: 2px dotted #00F; }
-	</style>
-	<script>
-	$(function() {
-		$( "#resizable" ).resizable({
-			helper: "ui-resizable-helper"
-		});
-	});
-	</script>
-</head>
-<body>
-
-<div id="resizable" class="ui-widget-content">
-	<h3 class="ui-widget-header">Helper</h3>
-</div>
-
-<div class="demo-description">
-<p>Display only an outline of the element while resizing by setting the <code>helper</code> option to a CSS class.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/index.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/index.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/index.html
deleted file mode 100644
index 7c626e2..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/index.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Resizable Demos</title>
-</head>
-<body>
-
-<ul>
-	<li><a href="default.html">Default functionality</a></li>
-	<li><a href="aspect-ratio.html">Preserve aspect ratio</a></li>
-	<li><a href="max-min.html">Maximum / minimum size</a></li>
-	<li><a href="constrain-area.html">Constrain resize area</a></li>
-	<li><a href="delay-start.html">Delay start</a></li>
-	<li><a href="snap-to-grid.html">Snap to grid</a></li>
-	<li><a href="visual-feedback.html">Visual feedback</a></li>
-	<li><a href="synchronous-resize.html">Synchronous resize</a></li>
-	<li><a href="animate.html">Animate</a></li>
-	<li><a href="helper.html">Resize Helper</a></li>
-	<li><a href="textarea.html">Textarea</a></li>
-</ul>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/max-min.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/max-min.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/max-min.html
deleted file mode 100644
index 1f30421..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/max-min.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Resizable - Maximum / minimum size</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.resizable.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	#resizable { width: 200px; height: 150px; padding: 5px; }
-	#resizable h3 { text-align: center; margin: 0; }
-	</style>
-	<script>
-	$(function() {
-		$( "#resizable" ).resizable({
-			maxHeight: 250,
-			maxWidth: 350,
-			minHeight: 150,
-			minWidth: 200
-		});
-	});
-	</script>
-</head>
-<body>
-
-<div id="resizable" class="ui-widget-content">
-	<h3 class="ui-widget-header">Resize larger / smaller</h3>
-</div>
-
-<div class="demo-description">
-<p>Limit the resizable element to a maximum or minimum height or width using the <code>maxHeight</code>, <code>maxWidth</code>, <code>minHeight</code>, and <code>minWidth</code> options.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/snap-to-grid.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/snap-to-grid.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/snap-to-grid.html
deleted file mode 100644
index 5d11ae7..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/snap-to-grid.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Resizable - Snap to grid</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.resizable.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	#resizable { width: 150px; height: 150px; padding: 0.5em; }
-	#resizable h3 { text-align: center; margin: 0; }
-	</style>
-	<script>
-	$(function() {
-		$( "#resizable" ).resizable({
-			grid: 50
-		});
-	});
-	</script>
-</head>
-<body>
-
-<div id="resizable" class="ui-widget-content">
-	<h3 class="ui-widget-header">Grid</h3>
-</div>
-
-<div class="demo-description">
-<p>Snap the resizable element to a grid.  Set the dimensions of grid cells (height and width in pixels) with the <code>grid</code> option.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/synchronous-resize.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/synchronous-resize.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/synchronous-resize.html
deleted file mode 100644
index 4f7f418..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/synchronous-resize.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Resizable - Synchronous resize</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.resizable.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	#resizable { background-position: top left; }
-	#resizable, #also { width: 150px; height: 120px; padding: 0.5em; }
-	#resizable h3, #also h3 { text-align: center; margin: 0; }
-	#also { margin-top: 1em; }
-	</style>
-	<script>
-	$(function() {
-		$( "#resizable" ).resizable({
-			alsoResize: "#also"
-		});
-		$( "#also" ).resizable();
-	});
-	</script>
-</head>
-<body>
-
-<div id="resizable" class="ui-widget-header">
-	<h3 class="ui-state-active">Resize</h3>
-</div>
-
-<div id="also" class="ui-widget-content">
-	<h3 class="ui-widget-header">will also resize</h3>
-</div>
-
-<div class="demo-description">
-<p>Resize multiple elements simultaneously by clicking and dragging the sides of one.  Pass a shared selector into the <code>alsoResize</code> option.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/textarea.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/textarea.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/textarea.html
deleted file mode 100644
index 8924450..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/textarea.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Resizable - Textarea</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.resizable.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	.ui-resizable-se {
-		bottom: 17px;
-	}
-	</style>
-	<script>
-	$(function() {
-		$( "#resizable" ).resizable({
-			handles: "se"
-		});
-	});
-	</script>
-</head>
-<body>
-
-<textarea id="resizable" rows="5" cols="20"></textarea>
-
-<div class="demo-description">
-<p>Display only an outline of the element while resizing by setting the <code>helper</code> option to a CSS class.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/visual-feedback.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/visual-feedback.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/visual-feedback.html
deleted file mode 100644
index ee182b2..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/resizable/visual-feedback.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Resizable - Visual feedback</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.resizable.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	#resizable { width: 150px; height: 150px; padding: 0.5em; }
-	#resizable h3 { text-align: center; margin: 0; }
-	.ui-resizable-ghost { border: 1px dotted gray; }
-	</style>
-	<script>
-	$(function() {
-		$( "#resizable" ).resizable({
-			ghost: true
-		});
-	});
-	</script>
-</head>
-<body>
-
-<div id="resizable" class="ui-widget-content">
-	<h3 class="ui-widget-header">Ghost</h3>
-</div>
-
-<div class="demo-description">
-<p>Instead of showing the actual element during resize, set the <code>ghost</code> option to true to show a semi-transparent part of the element.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/selectable/default.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/selectable/default.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/selectable/default.html
deleted file mode 100644
index e110423..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/selectable/default.html
+++ /dev/null
@@ -1,43 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Selectable - Default functionality</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.selectable.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-
-	<style>
-	#feedback { font-size: 1.4em; }
-	#selectable .ui-selecting { background: #FECA40; }
-	#selectable .ui-selected { background: #F39814; color: white; }
-	#selectable { list-style-type: none; margin: 0; padding: 0; width: 60%; }
-	#selectable li { margin: 3px; padding: 0.4em; font-size: 1.4em; height: 18px; }
-	</style>
-	<script>
-	$(function() {
-		$( "#selectable" ).selectable();
-	});
-	</script>
-</head>
-<body>
-
-<ol id="selectable">
-	<li class="ui-widget-content">Item 1</li>
-	<li class="ui-widget-content">Item 2</li>
-	<li class="ui-widget-content">Item 3</li>
-	<li class="ui-widget-content">Item 4</li>
-	<li class="ui-widget-content">Item 5</li>
-	<li class="ui-widget-content">Item 6</li>
-	<li class="ui-widget-content">Item 7</li>
-</ol>
-
-<div class="demo-description">
-<p>Enable a DOM element (or group of elements) to be selectable. Draw a box with your cursor to select items. Hold down the Ctrl key to make multiple non-adjacent selections. </p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/selectable/display-grid.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/selectable/display-grid.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/selectable/display-grid.html
deleted file mode 100644
index fc4fec6..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/selectable/display-grid.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Selectable - Display as grid</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.selectable.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-
-	<style>
-	#feedback { font-size: 1.4em; }
-	#selectable .ui-selecting { background: #FECA40; }
-	#selectable .ui-selected { background: #F39814; color: white; }
-	#selectable { list-style-type: none; margin: 0; padding: 0; width: 450px; }
-	#selectable li { margin: 3px; padding: 1px; float: left; width: 100px; height: 80px; font-size: 4em; text-align: center; }
-	</style>
-	<script>
-	$(function() {
-		$( "#selectable" ).selectable();
-	});
-	</script>
-</head>
-<body>
-
-<ol id="selectable">
-	<li class="ui-state-default">1</li>
-	<li class="ui-state-default">2</li>
-	<li class="ui-state-default">3</li>
-	<li class="ui-state-default">4</li>
-	<li class="ui-state-default">5</li>
-	<li class="ui-state-default">6</li>
-	<li class="ui-state-default">7</li>
-	<li class="ui-state-default">8</li>
-	<li class="ui-state-default">9</li>
-	<li class="ui-state-default">10</li>
-	<li class="ui-state-default">11</li>
-	<li class="ui-state-default">12</li>
-</ol>
-
-<div class="demo-description">
-<p>To arrange selectable items as a grid, give them identical dimensions and float them using CSS.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/selectable/index.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/selectable/index.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/selectable/index.html
deleted file mode 100644
index a82830c..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/selectable/index.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Selectable Demos</title>
-</head>
-<body>
-
-<ul>
-	<li><a href="default.html">Default functionality</a></li>
-	<li><a href="serialize.html">Serialize</a></li>
-	<li><a href="display-grid.html">Display as grid</a></li>
-</ul>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/selectable/serialize.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/selectable/serialize.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/selectable/serialize.html
deleted file mode 100644
index d70e314..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/selectable/serialize.html
+++ /dev/null
@@ -1,54 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Selectable - Serialize</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.selectable.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-
-	<style>
-	#feedback { font-size: 1.4em; }
-	#selectable .ui-selecting { background: #FECA40; }
-	#selectable .ui-selected { background: #F39814; color: white; }
-	#selectable { list-style-type: none; margin: 0; padding: 0; width: 60%; }
-	#selectable li { margin: 3px; padding: 0.4em; font-size: 1.4em; height: 18px; }
-	</style>
-	<script>
-	$(function() {
-		$( "#selectable" ).selectable({
-			stop: function() {
-				var result = $( "#select-result" ).empty();
-				$( ".ui-selected", this ).each(function() {
-					var index = $( "#selectable li" ).index( this );
-					result.append( " #" + ( index + 1 ) );
-				});
-			}
-		});
-	});
-	</script>
-</head>
-<body>
-
-<p id="feedback">
-<span>You've selected:</span> <span id="select-result">none</span>.
-</p>
-
-<ol id="selectable">
-	<li class="ui-widget-content">Item 1</li>
-	<li class="ui-widget-content">Item 2</li>
-	<li class="ui-widget-content">Item 3</li>
-	<li class="ui-widget-content">Item 4</li>
-	<li class="ui-widget-content">Item 5</li>
-	<li class="ui-widget-content">Item 6</li>
-</ol>
-
-<div class="demo-description">
-<p>Write a function that fires on the <code>stop</code> event to collect the index values of selected items.  Present values as feedback, or pass as a data string.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/slider/colorpicker.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/slider/colorpicker.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/slider/colorpicker.html
deleted file mode 100644
index e579b0e..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/slider/colorpicker.html
+++ /dev/null
@@ -1,87 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Slider - Colorpicker</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.slider.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	#red, #green, #blue {
-		float: left;
-		clear: left;
-		width: 300px;
-		margin: 15px;
-	}
-	#swatch {
-		width: 120px;
-		height: 100px;
-		margin-top: 18px;
-		margin-left: 350px;
-		background-image: none;
-	}
-	#red .ui-slider-range { background: #ef2929; }
-	#red .ui-slider-handle { border-color: #ef2929; }
-	#green .ui-slider-range { background: #8ae234; }
-	#green .ui-slider-handle { border-color: #8ae234; }
-	#blue .ui-slider-range { background: #729fcf; }
-	#blue .ui-slider-handle { border-color: #729fcf; }
-	</style>
-	<script>
-	function hexFromRGB(r, g, b) {
-		var hex = [
-			r.toString( 16 ),
-			g.toString( 16 ),
-			b.toString( 16 )
-		];
-		$.each( hex, function( nr, val ) {
-			if ( val.length === 1 ) {
-				hex[ nr ] = "0" + val;
-			}
-		});
-		return hex.join( "" ).toUpperCase();
-	}
-	function refreshSwatch() {
-		var red = $( "#red" ).slider( "value" ),
-			green = $( "#green" ).slider( "value" ),
-			blue = $( "#blue" ).slider( "value" ),
-			hex = hexFromRGB( red, green, blue );
-		$( "#swatch" ).css( "background-color", "#" + hex );
-	}
-	$(function() {
-		$( "#red, #green, #blue" ).slider({
-			orientation: "horizontal",
-			range: "min",
-			max: 255,
-			value: 127,
-			slide: refreshSwatch,
-			change: refreshSwatch
-		});
-		$( "#red" ).slider( "value", 255 );
-		$( "#green" ).slider( "value", 140 );
-		$( "#blue" ).slider( "value", 60 );
-	});
-	</script>
-</head>
-<body class="ui-widget-content" style="border:0;">
-
-<p class="ui-state-default ui-corner-all ui-helper-clearfix" style="padding:4px;">
-	<span class="ui-icon ui-icon-pencil" style="float:left; margin:-2px 5px 0 0;"></span>
-	Simple Colorpicker
-</p>
-
-<div id="red"></div>
-<div id="green"></div>
-<div id="blue"></div>
-
-<div id="swatch" class="ui-widget-content ui-corner-all"></div>
-
-<div class="demo-description">
-<p>Combine three sliders to create a simple RGB colorpicker.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/slider/default.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/slider/default.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/slider/default.html
deleted file mode 100644
index 17ee430..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/slider/default.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8" >
-	<title>jQuery UI Slider - Default functionality</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.slider.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<script>
-	$(function() {
-		$( "#slider" ).slider();
-	});
-	</script>
-</head>
-<body>
-
-<div id="slider"></div>
-
-<div class="demo-description">
-<p>The basic slider is horizontal and has a single handle that can be moved with the mouse or by using the arrow keys.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/slider/hotelrooms.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/slider/hotelrooms.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/slider/hotelrooms.html
deleted file mode 100644
index 0968dc4..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/slider/hotelrooms.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Slider - Slider bound to select</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.slider.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<script>
-	$(function() {
-		var select = $( "#minbeds" );
-		var slider = $( "<div id='slider'></div>" ).insertAfter( select ).slider({
-			min: 1,
-			max: 6,
-			range: "min",
-			value: select[ 0 ].selectedIndex + 1,
-			slide: function( event, ui ) {
-				select[ 0 ].selectedIndex = ui.value - 1;
-			}
-		});
-		$( "#minbeds" ).change(function() {
-			slider.slider( "value", this.selectedIndex + 1 );
-		});
-	});
-	</script>
-</head>
-<body>
-
-<form id="reservation">
-	<label for="minbeds">Minimum number of beds</label>
-	<select name="minbeds" id="minbeds">
-		<option>1</option>
-		<option>2</option>
-		<option>3</option>
-		<option>4</option>
-		<option>5</option>
-		<option>6</option>
-	</select>
-</form>
-
-<div class="demo-description">
-<p>How to bind a slider to an existing select element. The select stays visible to display the change. When the select is changed, the slider is updated, too.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/slider/index.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/slider/index.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/slider/index.html
deleted file mode 100644
index 2d05bb5..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/slider/index.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Slider Demos</title>
-</head>
-<body>
-
-<ul>
-	<li><a href="default.html">Default functionality</a></li>
-	<li><a href="steps.html">Snap to increments</a></li>
-	<li><a href="range.html">Range slider</a></li>
-	<li><a href="rangemin.html">Range with fixed minimum</a></li>
-	<li><a href="hotelrooms.html">Room reservation</a></li>
-	<li><a href="rangemax.html">Range with fixed maximum</a></li>
-	<li><a href="slider-vertical.html">Vertical slider</a></li>
-	<li><a href="range-vertical.html">Vertical range slider</a></li>
-	<li><a href="multiple-vertical.html">Multiple sliders</a></li>
-	<li><a href="colorpicker.html">Simple colorpicker</a></li>
-	<li><a href="side-scroll.html">Simple scrollbar</a></li>
-</ul>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/68e16273/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/slider/multiple-vertical.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/slider/multiple-vertical.html b/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/slider/multiple-vertical.html
deleted file mode 100644
index 6a0cf38..0000000
--- a/component/viewer/wicket/jquery-ui/jquery-ui-1.10.2.custom/development-bundle/demos/slider/multiple-vertical.html
+++ /dev/null
@@ -1,69 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Slider - Multiple sliders</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.mouse.js"></script>
-	<script src="../../ui/jquery.ui.slider.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	#eq span {
-		height:120px; float:left; margin:15px
-	}
-	</style>
-	<script>
-	$(function() {
-		// setup master volume
-		$( "#master" ).slider({
-			value: 60,
-			orientation: "horizontal",
-			range: "min",
-			animate: true
-		});
-		// setup graphic EQ
-		$( "#eq > span" ).each(function() {
-			// read initial values from markup and remove that
-			var value = parseInt( $( this ).text(), 10 );
-			$( this ).empty().slider({
-				value: value,
-				range: "min",
-				animate: true,
-				orientation: "vertical"
-			});
-		});
-	});
-	</script>
-</head>
-<body>
-
-<p class="ui-state-default ui-corner-all ui-helper-clearfix" style="padding:4px;">
-	<span class="ui-icon ui-icon-volume-on" style="float:left; margin:-2px 5px 0 0;"></span>
-	Master volume
-</p>
-
-<div id="master" style="width:260px; margin:15px;"></div>
-
-<p class="ui-state-default ui-corner-all" style="padding:4px;margin-top:4em;">
-	<span class="ui-icon ui-icon-signal" style="float:left; margin:-2px 5px 0 0;"></span>
-	Graphic EQ
-</p>
-
-<div id="eq">
-	<span>88</span>
-	<span>77</span>
-	<span>55</span>
-	<span>33</span>
-	<span>40</span>
-	<span>45</span>
-	<span>70</span>
-</div>
-
-<div class="demo-description">
-<p>Combine horizontal and vertical sliders, each with their own options, to create the UI for a music player.</p>
-</div>
-</body>
-</html>