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 2013/05/17 09:58:50 UTC

[45/51] [partial] ISIS-407: @RenderedAsDayBefore annotation

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/sortable/index.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/sortable/index.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/sortable/index.html
deleted file mode 100644
index 66b0b5c..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/sortable/index.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Sortable Demos</title>
-</head>
-<body>
-
-<ul>
-	<li><a href="default.html">Default functionality</a></li>
-	<li><a href="placeholder.html">Drop placeholder</a></li>
-	<li><a href="connect-lists.html">Connect lists</a></li>
-	<li><a href="connect-lists-through-tabs.html">Connect lists through tabs</a></li>
-	<li><a href="empty-lists.html">Handle empty lists</a></li>
-	<li><a href="items.html">Include / exclude items</a></li>
-	<li><a href="delay-start.html">Delay start</a></li>
-	<li><a href="display-grid.html">Display as grid</a></li>
-	<li><a href="portlets.html">Portlets</a></li>
-</ul>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/sortable/items.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/sortable/items.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/sortable/items.html
deleted file mode 100644
index bdb0e02..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/sortable/items.html
+++ /dev/null
@@ -1,64 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Sortable - Include / exclude items</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.sortable.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	#sortable1, #sortable2 { list-style-type: none; margin: 0; padding: 0; zoom: 1; }
-	#sortable1 li, #sortable2 li { margin: 0 5px 5px 5px; padding: 3px; width: 90%; }
-	</style>
-	<script>
-	$(function() {
-		$( "#sortable1" ).sortable({
-			items: "li:not(.ui-state-disabled)"
-		});
-
-		$( "#sortable2" ).sortable({
-			cancel: ".ui-state-disabled"
-		});
-
-		$( "#sortable1 li, #sortable2 li" ).disableSelection();
-	});
-	</script>
-</head>
-<body>
-
-<h3 class="docs">Specify which items are sortable:</h3>
-
-<ul id="sortable1">
-	<li class="ui-state-default">Item 1</li>
-	<li class="ui-state-default ui-state-disabled">(I'm not sortable or a drop target)</li>
-	<li class="ui-state-default ui-state-disabled">(I'm not sortable or a drop target)</li>
-	<li class="ui-state-default">Item 4</li>
-</ul>
-
-<h3 class="docs">Cancel sorting (but keep as drop targets):</h3>
-
-<ul id="sortable2">
-	<li class="ui-state-default">Item 1</li>
-	<li class="ui-state-default ui-state-disabled">(I'm not sortable)</li>
-	<li class="ui-state-default ui-state-disabled">(I'm not sortable)</li>
-	<li class="ui-state-default">Item 4</li>
-</ul>
-
-<div class="demo-description">
-<p>
-	Specify which items are eligible to sort by passing a jQuery selector into
-	the <code>items</code> option. Items excluded from this option are not
-	sortable, nor are they valid targets for sortable items.
-</p>
-<p>
-	To only prevent sorting on certain items, pass a jQuery selector into the
-	<code>cancel</code> option. Cancelled items remain valid sort targets for
-	others.
-</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/sortable/placeholder.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/sortable/placeholder.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/sortable/placeholder.html
deleted file mode 100644
index 95a843f..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/sortable/placeholder.html
+++ /dev/null
@@ -1,50 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Sortable - Drop placeholder</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.sortable.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	#sortable { list-style-type: none; margin: 0; padding: 0; width: 60%; }
-	#sortable li { margin: 0 5px 5px 5px; padding: 5px; font-size: 1.2em; height: 1.5em; }
-	html>body #sortable li { height: 1.5em; line-height: 1.2em; }
-	.ui-state-highlight { height: 1.5em; line-height: 1.2em; }
-	</style>
-	<script>
-	$(function() {
-		$( "#sortable" ).sortable({
-			placeholder: "ui-state-highlight"
-		});
-		$( "#sortable" ).disableSelection();
-	});
-	</script>
-</head>
-<body>
-
-<ul id="sortable">
-	<li class="ui-state-default">Item 1</li>
-	<li class="ui-state-default">Item 2</li>
-	<li class="ui-state-default">Item 3</li>
-	<li class="ui-state-default">Item 4</li>
-	<li class="ui-state-default">Item 5</li>
-	<li class="ui-state-default">Item 6</li>
-	<li class="ui-state-default">Item 7</li>
-</ul>
-
-<div class="demo-description">
-<p>
-	When dragging a sortable item to a new location, other items will make room
-	for the that item by shifting to allow white space between them. Pass a
-	class into the <code>placeholder</code> option to style that space to
-	be visible.  Use the boolean <code>forcePlaceholderSize</code> option
-	to set dimensions on the placeholder.
-</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/sortable/portlets.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/sortable/portlets.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/sortable/portlets.html
deleted file mode 100644
index 5a3f2b6..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/sortable/portlets.html
+++ /dev/null
@@ -1,91 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Sortable - Portlets</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.sortable.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	body { min-width: 520px; }
-	.column { width: 170px; float: left; padding-bottom: 100px; }
-	.portlet { margin: 0 1em 1em 0; }
-	.portlet-header { margin: 0.3em; padding-bottom: 4px; padding-left: 0.2em; }
-	.portlet-header .ui-icon { float: right; }
-	.portlet-content { padding: 0.4em; }
-	.ui-sortable-placeholder { border: 1px dotted black; visibility: visible !important; height: 50px !important; }
-	.ui-sortable-placeholder * { visibility: hidden; }
-	</style>
-	<script>
-	$(function() {
-		$( ".column" ).sortable({
-			connectWith: ".column"
-		});
-
-		$( ".portlet" ).addClass( "ui-widget ui-widget-content ui-helper-clearfix ui-corner-all" )
-			.find( ".portlet-header" )
-				.addClass( "ui-widget-header ui-corner-all" )
-				.prepend( "<span class='ui-icon ui-icon-minusthick'></span>")
-				.end()
-			.find( ".portlet-content" );
-
-		$( ".portlet-header .ui-icon" ).click(function() {
-			$( this ).toggleClass( "ui-icon-minusthick" ).toggleClass( "ui-icon-plusthick" );
-			$( this ).parents( ".portlet:first" ).find( ".portlet-content" ).toggle();
-		});
-
-		$( ".column" ).disableSelection();
-	});
-	</script>
-</head>
-<body>
-
-<div class="column">
-
-	<div class="portlet">
-		<div class="portlet-header">Feeds</div>
-		<div class="portlet-content">Lorem ipsum dolor sit amet, consectetuer adipiscing elit</div>
-	</div>
-
-	<div class="portlet">
-		<div class="portlet-header">News</div>
-		<div class="portlet-content">Lorem ipsum dolor sit amet, consectetuer adipiscing elit</div>
-	</div>
-
-</div>
-
-<div class="column">
-
-	<div class="portlet">
-		<div class="portlet-header">Shopping</div>
-		<div class="portlet-content">Lorem ipsum dolor sit amet, consectetuer adipiscing elit</div>
-	</div>
-
-</div>
-
-<div class="column">
-
-	<div class="portlet">
-		<div class="portlet-header">Links</div>
-		<div class="portlet-content">Lorem ipsum dolor sit amet, consectetuer adipiscing elit</div>
-	</div>
-
-	<div class="portlet">
-		<div class="portlet-header">Images</div>
-		<div class="portlet-content">Lorem ipsum dolor sit amet, consectetuer adipiscing elit</div>
-	</div>
-
-</div>
-
-<div class="demo-description">
-<p>
-	Enable portlets (styled divs) as sortables and use the <code>connectWith</code>
-	option to allow sorting between columns.
-</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/currency.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/currency.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/currency.html
deleted file mode 100644
index 0686d37..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/currency.html
+++ /dev/null
@@ -1,52 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Spinner - Currency</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../external/jquery.mousewheel.js"></script>
-	<script src="../../external/globalize.js"></script>
-	<script src="../../external/globalize.culture.de-DE.js"></script>
-	<script src="../../external/globalize.culture.ja-JP.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.button.js"></script>
-	<script src="../../ui/jquery.ui.spinner.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<script>
-	$(function() {
-		$( "#currency" ).change(function() {
-			$( "#spinner" ).spinner( "option", "culture", $( this ).val() );
-		});
-
-		$( "#spinner" ).spinner({
-			min: 5,
-			max: 2500,
-			step: 25,
-			start: 1000,
-			numberFormat: "C"
-		});
-	});
-	</script>
-</head>
-<body>
-
-<p>
-	<label for="currency">Currency to donate</label>
-	<select id="currency" name="currency">
-		<option value="en-US">US $</option>
-		<option value="de-DE">EUR €</option>
-		<option value="ja-JP">YEN ¥</option>
-	</select>
-</p>
-<p>
-	<label for="spinner">Amount to donate:</label>
-	<input id="spinner" name="spinner" value="5">
-</p>
-
-<div class="demo-description">
-<p>Example of a donation form, with currency selection and amount spinner.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/decimal.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/decimal.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/decimal.html
deleted file mode 100644
index b48442a..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/decimal.html
+++ /dev/null
@@ -1,56 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Spinner - Decimal</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../external/jquery.mousewheel.js"></script>
-	<script src="../../external/globalize.js"></script>
-	<script src="../../external/globalize.culture.de-DE.js"></script>
-	<script src="../../external/globalize.culture.ja-JP.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.button.js"></script>
-	<script src="../../ui/jquery.ui.spinner.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<script>
-	$(function() {
-		$( "#spinner" ).spinner({
-			step: 0.01,
-			numberFormat: "n"
-		});
-
-		$( "#culture" ).change(function() {
-			var current = $( "#spinner" ).spinner( "value" );
-			Globalize.culture( $(this).val() );
-			$( "#spinner" ).spinner( "value", current );
-		});
-	});
-	</script>
-</head>
-<body>
-
-<p>
-	<label for="spinner">Decimal spinner:</label>
-	<input id="spinner" name="spinner" value="5.06">
-</p>
-<p>
-	<label for="culture">Select a culture to use for formatting:</label>
-	<select id="culture">
-		<option value="en-EN" selected="selected">English</option>
-		<option value="de-DE">German</option>
-		<option value="ja-JP">Japanese</option>
-	</select>
-</p>
-
-<div class="demo-description">
-<p>
-	Example of a decimal spinner. Step is set to 0.01.
-	<br>The code handling the culture change reads the current spinner value,
-	then changes the culture, then sets the value again, resulting in an updated
-	formatting, based on the new culture.
-</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/default.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/default.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/default.html
deleted file mode 100644
index 5093e86..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/default.html
+++ /dev/null
@@ -1,64 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Spinner - Default functionality</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../external/jquery.mousewheel.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.button.js"></script>
-	<script src="../../ui/jquery.ui.spinner.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<script>
-	$(function() {
-		var spinner = $( "#spinner" ).spinner();
-
-		$( "#disable" ).click(function() {
-			if ( spinner.spinner( "option", "disabled" ) ) {
-				spinner.spinner( "enable" );
-			} else {
-				spinner.spinner( "disable" );
-			}
-		});
-		$( "#destroy" ).click(function() {
-			if ( spinner.data( "ui-spinner" ) ) {
-				spinner.spinner( "destroy" );
-			} else {
-				spinner.spinner();
-			}
-		});
-		$( "#getvalue" ).click(function() {
-			alert( spinner.spinner( "value" ) );
-		});
-		$( "#setvalue" ).click(function() {
-			spinner.spinner( "value", 5 );
-		});
-
-		$( "button" ).button();
-	});
-	</script>
-</head>
-<body>
-
-<p>
-	<label for="spinner">Select a value:</label>
-	<input id="spinner" name="value">
-</p>
-
-<p>
-	<button id="disable">Toggle disable/enable</button>
-	<button id="destroy">Toggle widget</button>
-</p>
-
-<p>
-	<button id="getvalue">Get value</button>
-	<button id="setvalue">Set value to 5</button>
-</p>
-
-<div class="demo-description">
-<p>Default spinner.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/index.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/index.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/index.html
deleted file mode 100644
index f3c74d0..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/index.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Spinner Demos</title>
-</head>
-<body>
-
-<ul>
-	<li><a href="default.html">Default functionality</a></li>
-	<li><a href="decimal.html">Decimal</a></li>
-	<li><a href="currency.html">Currency</a></li>
-	<li><a href="latlong.html">Map</a></li>
-	<li><a href="time.html">Time</a></li>
-	<li><a href="overflow.html">Overflow</a></li>
-</ul>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/latlong.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/latlong.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/latlong.html
deleted file mode 100644
index 14c8601..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/latlong.html
+++ /dev/null
@@ -1,57 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Spinner - Map</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="http://maps.google.com/maps/api/js?sensor=false"></script>
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../external/jquery.mousewheel.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.button.js"></script>
-	<script src="../../ui/jquery.ui.spinner.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<script>
-	$(function() {
-		function latlong() {
-			return new google.maps.LatLng( $("#lat").val(), $("#lng").val() );
-		}
-		function position() {
-			map.setCenter( latlong() );
-		}
-		$( "#lat, #lng" ).spinner({
-			step: .001,
-			change: position,
-			stop: position
-		});
-
-		var map = new google.maps.Map( $("#map")[0], {
-			zoom: 8,
-			center: latlong(),
-			mapTypeId: google.maps.MapTypeId.ROADMAP
-		});
-	});
-	</script>
-	<style>
-	#map {
-		width:500px;
-		height:500px;
-	}
-	</style>
-</head>
-<body>
-
-<label for="lat">Latitude</label>
-<input id="lat" name="lat" value="44.797">
-<br>
-<label for="lng">Longitude</label>
-<input id="lng" name="lng" value="-93.278">
-
-<div id="map"></div>
-
-<div class="demo-description">
-<p>Google Maps integration, using spinners to change latidude and longitude.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/overflow.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/overflow.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/overflow.html
deleted file mode 100644
index d46e660..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/overflow.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Spinner - Overflow</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../external/jquery.mousewheel.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.button.js"></script>
-	<script src="../../ui/jquery.ui.spinner.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<script>
-	$(function() {
-		$( "#spinner" ).spinner({
-			spin: function( event, ui ) {
-				if ( ui.value > 10 ) {
-					$( this ).spinner( "value", -10 );
-					return false;
-				} else if ( ui.value < -10 ) {
-					$( this ).spinner( "value", 10 );
-					return false;
-				}
-			}
-		});
-	});
-	</script>
-</head>
-<body>
-
-<p>
-	<label for="spinner">Select a value:</label>
-	<input id="spinner" name="value" />
-</p>
-
-<div class="demo-description">
-<p>
-Overflowing spinner restricted to a range of -10 to 10.
-For anything above 10, it'll overflow to -10, and the other way round.
-</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/time.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/time.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/time.html
deleted file mode 100644
index d31dbf2..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/spinner/time.html
+++ /dev/null
@@ -1,74 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Spinner - Time</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../external/jquery.mousewheel.js"></script>
-	<script src="../../external/globalize.js"></script>
-	<script src="../../external/globalize.culture.de-DE.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.button.js"></script>
-	<script src="../../ui/jquery.ui.spinner.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<script>
-	$.widget( "ui.timespinner", $.ui.spinner, {
-		options: {
-			// seconds
-			step: 60 * 1000,
-			// hours
-			page: 60
-		},
-
-		_parse: function( value ) {
-			if ( typeof value === "string" ) {
-				// already a timestamp
-				if ( Number( value ) == value ) {
-					return Number( value );
-				}
-				return +Globalize.parseDate( value );
-			}
-			return value;
-		},
-
-		_format: function( value ) {
-			return Globalize.format( new Date(value), "t" );
-		}
-	});
-
-	$(function() {
-		$( "#spinner" ).timespinner();
-
-		$( "#culture" ).change(function() {
-			var current = $( "#spinner" ).timespinner( "value" );
-			Globalize.culture( $(this).val() );
-			$( "#spinner" ).timespinner( "value", current );
-		});
-	});
-	</script>
-</head>
-<body>
-
-<p>
-	<label for="spinner">Time spinner:</label>
-	<input id="spinner" name="spinner" value="08:30 PM">
-</p>
-<p>
-	<label for="culture">Select a culture to use for formatting:</label>
-	<select id="culture">
-		<option value="en-EN" selected="selected">English</option>
-		<option value="de-DE">German</option>
-	</select>
-</p>
-
-<div class="demo-description">
-<p>
-	A custom widget extending spinner. Use the Globalization plugin to parse and output
-	a timestamp, with custom step and page options. Cursor up/down spins minutes, page up/down
-	spins hours.
-</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/ajax.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/ajax.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/ajax.html
deleted file mode 100644
index dd25fc0..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/ajax.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Tabs - Content via Ajax</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.tabs.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<script>
-	$(function() {
-		$( "#tabs" ).tabs({
-			beforeLoad: function( event, ui ) {
-				ui.jqXHR.error(function() {
-					ui.panel.html(
-						"Couldn't load this tab. We'll try to fix this as soon as possible. " +
-						"If this wouldn't be a demo." );
-				});
-			}
-		});
-	});
-	</script>
-</head>
-<body>
-
-<div id="tabs">
-	<ul>
-		<li><a href="#tabs-1">Preloaded</a></li>
-		<li><a href="ajax/content1.html">Tab 1</a></li>
-		<li><a href="ajax/content2.html">Tab 2</a></li>
-		<li><a href="ajax/content3-slow.php">Tab 3 (slow)</a></li>
-		<li><a href="ajax/content4-broken.php">Tab 4 (broken)</a></li>
-	</ul>
-	<div id="tabs-1">
-		<p>Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus. Curabitur nec arcu. Donec sollicitudin mi sit amet mauris. Nam elementum quam ullamcorper ante. Etiam aliquet massa et lorem. Mauris dapibus lacus auctor risus. Aenean tempor ullamcorper leo. Vivamus sed magna quis ligula eleifend adipiscing. Duis orci. Aliquam sodales tortor vitae ipsum. Aliquam nulla. Duis aliquam molestie erat. Ut et mauris vel pede varius sollicitudin. Sed ut dolor nec orci tincidunt interdum. Phasellus ipsum. Nunc tristique tempus lectus.</p>
-	</div>
-</div>
-
-<div class="demo-description">
-<p>Fetch external content via Ajax for the tabs by setting an href value in the tab links.  While the Ajax request is waiting for a response, the tab label changes to say "Loading...", then returns to the normal label once loaded.</p>
-<p>Tabs 3 and 4 demonstrate slow-loading and broken AJAX tabs, and how to handle serverside errors in those cases. Note: These two require a webserver to interpret PHP. They won't work from the filesystem.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/ajax/content1.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/ajax/content1.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/ajax/content1.html
deleted file mode 100644
index 472bdfb..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/ajax/content1.html
+++ /dev/null
@@ -1,4 +0,0 @@
-<p><strong>This content was loaded via ajax.</strong></p>
-<p>Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus. Curabitur nec arcu. Donec sollicitudin mi sit amet mauris. Nam elementum quam ullamcorper ante. Etiam aliquet massa et lorem. Mauris dapibus lacus auctor risus. Aenean tempor ullamcorper leo. Vivamus sed magna quis ligula eleifend adipiscing. Duis orci. Aliquam sodales tortor vitae ipsum. Aliquam nulla. Duis aliquam molestie erat. Ut et mauris vel pede varius sollicitudin. Sed ut dolor nec orci tincidunt interdum. Phasellus ipsum. Nunc tristique tempus lectus.</p>
-<p>Mauris vitae ante. Curabitur augue. Nulla purus nibh, lobortis ut, feugiat at, aliquam id, purus. Sed venenatis, lorem venenatis volutpat commodo, purus quam lacinia justo, mattis interdum pede pede a odio. Fusce nibh. Morbi nisl mauris, dapibus in, tristique eget, accumsan et, pede. Donec mauris risus, pulvinar ut, faucibus eu, mollis in, nunc. In augue massa, commodo a, cursus vehicula, varius eu, dui. Suspendisse sodales suscipit lorem. Morbi malesuada, eros quis condimentum dignissim, lectus nibh tristique urna, non bibendum diam massa vel risus. Morbi suscipit. Proin egestas, eros at scelerisque scelerisque, dolor lacus fringilla lacus, ut ullamcorper mi magna at quam. Aliquam sed elit. Aliquam turpis purus, congue quis, iaculis id, ullamcorper sit amet, justo. Maecenas sed mauris. Proin magna justo, interdum in, tincidunt eu, viverra eu, turpis. Suspendisse mollis. In magna. Phasellus pellentesque, urna pellentesque convallis pellentesque, augue sem blandit pede, at rhoncus
  libero nisl a odio.</p>
-<p>Sed vitae nibh non magna semper tempor. Duis dolor. Nam congue laoreet arcu. Fusce lobortis enim quis ligula. Maecenas commodo odio id mi. Maecenas scelerisque tellus eu odio. Etiam dolor purus, lacinia a, imperdiet in, aliquam et, eros. In pellentesque. Nullam ac massa. Integer et turpis. Ut quam augue, congue non, imperdiet id, eleifend ac, nisi. Etiam ac arcu. Cras iaculis accumsan erat. Nullam vulputate sapien nec nisi pretium rhoncus. Aliquam a nibh. Vivamus est ante, fermentum a, tincidunt ut, imperdiet nec, velit. Aenean non tortor. Sed nec mauris eget tellus condimentum rutrum.</p>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/ajax/content2.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/ajax/content2.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/ajax/content2.html
deleted file mode 100644
index 18b03e4..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/ajax/content2.html
+++ /dev/null
@@ -1,4 +0,0 @@
-<p><strong>This other content was loaded via ajax.</strong></p>
-<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean nec turpis justo, et facilisis ligula. In congue interdum odio, a scelerisque eros posuere ac. Aenean massa tellus, dictum sit amet laoreet ut, aliquam in orci. Duis eu aliquam ligula. Nullam vel placerat ligula. Fusce venenatis viverra dictum. Phasellus dui dolor, imperdiet in sodales at, mattis sed libero. Morbi ac ipsum ligula. Quisque suscipit dui vel diam pretium nec cursus lacus malesuada. Donec sollicitudin, eros eget dignissim mollis, risus leo feugiat tellus, vel posuere nisl ipsum eu erat. Quisque posuere lacinia imperdiet. Quisque nunc leo, elementum quis ultricies et, vehicula sit amet turpis. Nullam sed nunc nec nibh condimentum mattis. Quisque sed ligula sit amet nisi ultricies bibendum eget id nisi.</p>
-<p>Proin ut erat vel nunc tincidunt commodo. Curabitur feugiat, nisi et vehicula viverra, nisl orci eleifend arcu, sed blandit lectus nisl quis nisi. In hac habitasse platea dictumst. In hac habitasse platea dictumst. Aenean rutrum gravida velit ac imperdiet. Integer vitae arcu risus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin tincidunt orci at leo egestas porta. Vivamus ac augue et enim bibendum hendrerit ut id urna. Donec sollicitudin pulvinar turpis vitae scelerisque. Etiam tempor porttitor est sed blandit. Phasellus varius consequat leo eget tincidunt. Aliquam ac dui lectus. In et consectetur orci. Duis posuere nulla ac turpis faucibus vestibulum. Sed ut velit et dolor rhoncus dapibus. Sed sit amet pellentesque est.</p>
-<p>Nam in volutpat orci. Morbi sit amet orci in erat egestas dignissim. Etiam mi sapien, tempus sed iaculis a, adipiscing quis tellus. Suspendisse potenti. Nam malesuada tristique vestibulum. In tempor tellus dignissim neque consectetur eu vestibulum nisl pellentesque. Phasellus ultrices cursus velit, id aliquam nisl fringilla quis. Cras varius elit sed urna ultrices congue. Sed ornare odio sed velit pellentesque id varius nisl sodales. Sed auctor ligula egestas mi pharetra ut consectetur erat pharetra.</p>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/ajax/content3-slow.php
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/ajax/content3-slow.php b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/ajax/content3-slow.php
deleted file mode 100644
index 7ad43ec..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/ajax/content3-slow.php
+++ /dev/null
@@ -1,7 +0,0 @@
-<?php
-sleep(1);
-?>
-<p><strong>This content was loaded via ajax, though it took a second.</strong></p>
-<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean nec turpis justo, et facilisis ligula. In congue interdum odio, a scelerisque eros posuere ac. Aenean massa tellus, dictum sit amet laoreet ut, aliquam in orci. Duis eu aliquam ligula. Nullam vel placerat ligula. Fusce venenatis viverra dictum. Phasellus dui dolor, imperdiet in sodales at, mattis sed libero. Morbi ac ipsum ligula. Quisque suscipit dui vel diam pretium nec cursus lacus malesuada. Donec sollicitudin, eros eget dignissim mollis, risus leo feugiat tellus, vel posuere nisl ipsum eu erat. Quisque posuere lacinia imperdiet. Quisque nunc leo, elementum quis ultricies et, vehicula sit amet turpis. Nullam sed nunc nec nibh condimentum mattis. Quisque sed ligula sit amet nisi ultricies bibendum eget id nisi.</p>
-<p>Proin ut erat vel nunc tincidunt commodo. Curabitur feugiat, nisi et vehicula viverra, nisl orci eleifend arcu, sed blandit lectus nisl quis nisi. In hac habitasse platea dictumst. In hac habitasse platea dictumst. Aenean rutrum gravida velit ac imperdiet. Integer vitae arcu risus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin tincidunt orci at leo egestas porta. Vivamus ac augue et enim bibendum hendrerit ut id urna. Donec sollicitudin pulvinar turpis vitae scelerisque. Etiam tempor porttitor est sed blandit. Phasellus varius consequat leo eget tincidunt. Aliquam ac dui lectus. In et consectetur orci. Duis posuere nulla ac turpis faucibus vestibulum. Sed ut velit et dolor rhoncus dapibus. Sed sit amet pellentesque est.</p>
-<p>Nam in volutpat orci. Morbi sit amet orci in erat egestas dignissim. Etiam mi sapien, tempus sed iaculis a, adipiscing quis tellus. Suspendisse potenti. Nam malesuada tristique vestibulum. In tempor tellus dignissim neque consectetur eu vestibulum nisl pellentesque. Phasellus ultrices cursus velit, id aliquam nisl fringilla quis. Cras varius elit sed urna ultrices congue. Sed ornare odio sed velit pellentesque id varius nisl sodales. Sed auctor ligula egestas mi pharetra ut consectetur erat pharetra.</p>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/ajax/content4-broken.php
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/ajax/content4-broken.php b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/ajax/content4-broken.php
deleted file mode 100644
index 55ea2fe..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/ajax/content4-broken.php
+++ /dev/null
@@ -1,3 +0,0 @@
-<?php 
-header("HTTP/1.0 404 Not Found");
-?>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/bottom.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/bottom.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/bottom.html
deleted file mode 100644
index 0a4caea..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/bottom.html
+++ /dev/null
@@ -1,58 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Tabs - Tabs at bottom</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.tabs.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<script>
-	$(function() {
-		$( "#tabs" ).tabs();
-
-		// fix the classes
-		$( ".tabs-bottom .ui-tabs-nav, .tabs-bottom .ui-tabs-nav > *" )
-			.removeClass( "ui-corner-all ui-corner-top" )
-			.addClass( "ui-corner-bottom" );
-
-		// move the nav to the bottom
-		$( ".tabs-bottom .ui-tabs-nav" ).appendTo( ".tabs-bottom" );
-	});
-	</script>
-	<style>
-	/* force a height so the tabs don't jump as content height changes */
-	#tabs .tabs-spacer { float: left; height: 200px; }
-	.tabs-bottom .ui-tabs-nav { clear: left; padding: 0 .2em .2em .2em; }
-	.tabs-bottom .ui-tabs-nav li { top: auto; bottom: 0; margin: 0 .2em 1px 0; border-bottom: auto; border-top: 0; }
-	.tabs-bottom .ui-tabs-nav li.ui-tabs-active { margin-top: -1px; padding-top: 1px; }
-	</style>
-</head>
-<body>
-
-<div id="tabs" class="tabs-bottom">
-	<ul>
-		<li><a href="#tabs-1">Nunc tincidunt</a></li>
-		<li><a href="#tabs-2">Proin dolor</a></li>
-		<li><a href="#tabs-3">Aenean lacinia</a></li>
-	</ul>
-	<div class="tabs-spacer"></div>
-	<div id="tabs-1">
-		<p>Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus. Curabitur nec arcu. Donec sollicitudin mi sit amet mauris. Nam elementum quam ullamcorper ante. Etiam aliquet massa et lorem. Mauris dapibus lacus auctor risus. Aenean tempor ullamcorper leo. Vivamus sed magna quis ligula eleifend adipiscing. Duis orci. Aliquam sodales tortor vitae ipsum. Aliquam nulla. Duis aliquam molestie erat. Ut et mauris vel pede varius sollicitudin. Sed ut dolor nec orci tincidunt interdum. Phasellus ipsum. Nunc tristique tempus lectus.</p>
-	</div>
-	<div id="tabs-2">
-		<p>Morbi tincidunt, dui sit amet facilisis feugiat, odio metus gravida ante, ut pharetra massa metus id nunc. Duis scelerisque molestie turpis. Sed fringilla, massa eget luctus malesuada, metus eros molestie lectus, ut tempus eros massa ut dolor. Aenean aliquet fringilla sem. Suspendisse sed ligula in ligula suscipit aliquam. Praesent in eros vestibulum mi adipiscing adipiscing. Morbi facilisis. Curabitur ornare consequat nunc. Aenean vel metus. Ut posuere viverra nulla. Aliquam erat volutpat. Pellentesque convallis. Maecenas feugiat, tellus pellentesque pretium posuere, felis lorem euismod felis, eu ornare leo nisi vel felis. Mauris consectetur tortor et purus.</p>
-	</div>
-	<div id="tabs-3">
-		<p>Mauris eleifend est et turpis. Duis id erat. Suspendisse potenti. Aliquam vulputate, pede vel vehicula accumsan, mi neque rutrum erat, eu congue orci lorem eget lorem. Vestibulum non ante. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Fusce sodales. Quisque eu urna vel enim commodo pellentesque. Praesent eu risus hendrerit ligula tempus pretium. Curabitur lorem enim, pretium nec, feugiat nec, luctus a, lacus.</p>
-		<p>Duis cursus. Maecenas ligula eros, blandit nec, pharetra at, semper at, magna. Nullam ac lacus. Nulla facilisi. Praesent viverra justo vitae neque. Praesent blandit adipiscing velit. Suspendisse potenti. Donec mattis, pede vel pharetra blandit, magna ligula faucibus eros, id euismod lacus dolor eget odio. Nam scelerisque. Donec non libero sed nulla mattis commodo. Ut sagittis. Donec nisi lectus, feugiat porttitor, tempor ac, tempor vitae, pede. Aenean vehicula velit eu tellus interdum rutrum. Maecenas commodo. Pellentesque nec elit. Fusce in lacus. Vivamus a libero vitae lectus hendrerit hendrerit.</p>
-	</div>
-</div>
-
-<div class="demo-description">
-<p>With some additional CSS (for positioning) and JS (to put the right classes on elements) the tabs can be placed below their content.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/collapsible.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/collapsible.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/collapsible.html
deleted file mode 100644
index 3cb9b7c..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/collapsible.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Tabs - Collapse content</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.tabs.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<script>
-	$(function() {
-		$( "#tabs" ).tabs({
-			collapsible: true
-		});
-	});
-	</script>
-</head>
-<body>
-
-<div id="tabs">
-	<ul>
-		<li><a href="#tabs-1">Nunc tincidunt</a></li>
-		<li><a href="#tabs-2">Proin dolor</a></li>
-		<li><a href="#tabs-3">Aenean lacinia</a></li>
-	</ul>
-	<div id="tabs-1">
-		<p><strong>Click this tab again to close the content pane.</strong></p>
-		<p>Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus. Curabitur nec arcu. Donec sollicitudin mi sit amet mauris. Nam elementum quam ullamcorper ante. Etiam aliquet massa et lorem. Mauris dapibus lacus auctor risus. Aenean tempor ullamcorper leo. Vivamus sed magna quis ligula eleifend adipiscing. Duis orci. Aliquam sodales tortor vitae ipsum. Aliquam nulla. Duis aliquam molestie erat. Ut et mauris vel pede varius sollicitudin. Sed ut dolor nec orci tincidunt interdum. Phasellus ipsum. Nunc tristique tempus lectus.</p>
-	</div>
-	<div id="tabs-2">
-		<p><strong>Click this tab again to close the content pane.</strong></p>
-		<p>Morbi tincidunt, dui sit amet facilisis feugiat, odio metus gravida ante, ut pharetra massa metus id nunc. Duis scelerisque molestie turpis. Sed fringilla, massa eget luctus malesuada, metus eros molestie lectus, ut tempus eros massa ut dolor. Aenean aliquet fringilla sem. Suspendisse sed ligula in ligula suscipit aliquam. Praesent in eros vestibulum mi adipiscing adipiscing. Morbi facilisis. Curabitur ornare consequat nunc. Aenean vel metus. Ut posuere viverra nulla. Aliquam erat volutpat. Pellentesque convallis. Maecenas feugiat, tellus pellentesque pretium posuere, felis lorem euismod felis, eu ornare leo nisi vel felis. Mauris consectetur tortor et purus.</p>
-	</div>
-	<div id="tabs-3">
-		<p><strong>Click this tab again to close the content pane.</strong></p>
-		<p>Duis cursus. Maecenas ligula eros, blandit nec, pharetra at, semper at, magna. Nullam ac lacus. Nulla facilisi. Praesent viverra justo vitae neque. Praesent blandit adipiscing velit. Suspendisse potenti. Donec mattis, pede vel pharetra blandit, magna ligula faucibus eros, id euismod lacus dolor eget odio. Nam scelerisque. Donec non libero sed nulla mattis commodo. Ut sagittis. Donec nisi lectus, feugiat porttitor, tempor ac, tempor vitae, pede. Aenean vehicula velit eu tellus interdum rutrum. Maecenas commodo. Pellentesque nec elit. Fusce in lacus. Vivamus a libero vitae lectus hendrerit hendrerit.</p>
-	</div>
-</div>
-
-<div class="demo-description">
-<p>Click the selected tab to toggle its content closed/open.  To enable this functionality, set the <code>collapsible</code> option to true.</p>
-<pre><code>collapsible: true
-</code></pre>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/default.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/default.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/default.html
deleted file mode 100644
index 0b31e45..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/default.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Tabs - 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.tabs.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<script>
-	$(function() {
-		$( "#tabs" ).tabs();
-	});
-	</script>
-</head>
-<body>
-
-<div id="tabs">
-	<ul>
-		<li><a href="#tabs-1">Nunc tincidunt</a></li>
-		<li><a href="#tabs-2">Proin dolor</a></li>
-		<li><a href="#tabs-3">Aenean lacinia</a></li>
-	</ul>
-	<div id="tabs-1">
-		<p>Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus. Curabitur nec arcu. Donec sollicitudin mi sit amet mauris. Nam elementum quam ullamcorper ante. Etiam aliquet massa et lorem. Mauris dapibus lacus auctor risus. Aenean tempor ullamcorper leo. Vivamus sed magna quis ligula eleifend adipiscing. Duis orci. Aliquam sodales tortor vitae ipsum. Aliquam nulla. Duis aliquam molestie erat. Ut et mauris vel pede varius sollicitudin. Sed ut dolor nec orci tincidunt interdum. Phasellus ipsum. Nunc tristique tempus lectus.</p>
-	</div>
-	<div id="tabs-2">
-		<p>Morbi tincidunt, dui sit amet facilisis feugiat, odio metus gravida ante, ut pharetra massa metus id nunc. Duis scelerisque molestie turpis. Sed fringilla, massa eget luctus malesuada, metus eros molestie lectus, ut tempus eros massa ut dolor. Aenean aliquet fringilla sem. Suspendisse sed ligula in ligula suscipit aliquam. Praesent in eros vestibulum mi adipiscing adipiscing. Morbi facilisis. Curabitur ornare consequat nunc. Aenean vel metus. Ut posuere viverra nulla. Aliquam erat volutpat. Pellentesque convallis. Maecenas feugiat, tellus pellentesque pretium posuere, felis lorem euismod felis, eu ornare leo nisi vel felis. Mauris consectetur tortor et purus.</p>
-	</div>
-	<div id="tabs-3">
-		<p>Mauris eleifend est et turpis. Duis id erat. Suspendisse potenti. Aliquam vulputate, pede vel vehicula accumsan, mi neque rutrum erat, eu congue orci lorem eget lorem. Vestibulum non ante. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Fusce sodales. Quisque eu urna vel enim commodo pellentesque. Praesent eu risus hendrerit ligula tempus pretium. Curabitur lorem enim, pretium nec, feugiat nec, luctus a, lacus.</p>
-		<p>Duis cursus. Maecenas ligula eros, blandit nec, pharetra at, semper at, magna. Nullam ac lacus. Nulla facilisi. Praesent viverra justo vitae neque. Praesent blandit adipiscing velit. Suspendisse potenti. Donec mattis, pede vel pharetra blandit, magna ligula faucibus eros, id euismod lacus dolor eget odio. Nam scelerisque. Donec non libero sed nulla mattis commodo. Ut sagittis. Donec nisi lectus, feugiat porttitor, tempor ac, tempor vitae, pede. Aenean vehicula velit eu tellus interdum rutrum. Maecenas commodo. Pellentesque nec elit. Fusce in lacus. Vivamus a libero vitae lectus hendrerit hendrerit.</p>
-	</div>
-</div>
-
-<div class="demo-description">
-<p>Click tabs to swap between content that is broken into logical sections.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/index.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/index.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/index.html
deleted file mode 100644
index 779dfd2..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/index.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Tabs Demos</title>
-</head>
-<body>
-
-<ul>
-	<li><a href="default.html">Default functionality</a></li>
-	<li><a href="ajax.html">Content via Ajax</a></li>
-	<li><a href="mouseover.html">Open on mouseover</a></li>
-	<li><a href="collapsible.html">Collapse content</a></li>
-	<li><a href="sortable.html">Sortable</a></li>
-	<li><a href="manipulation.html">Simple manipulation</a></li>
-	<li><a href="bottom.html">Tabs below content</a></li>
-</ul>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/manipulation.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/manipulation.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/manipulation.html
deleted file mode 100644
index efcf011..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/manipulation.html
+++ /dev/null
@@ -1,122 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Tabs - Simple manipulation</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-	<script src="../../jquery-1.9.1.js"></script>
-	<script src="../../ui/jquery.ui.position.js"></script>
-	<script src="../../ui/jquery.ui.core.js"></script>
-	<script src="../../ui/jquery.ui.widget.js"></script>
-	<script src="../../ui/jquery.ui.button.js"></script>
-	<script src="../../ui/jquery.ui.tabs.js"></script>
-	<script src="../../ui/jquery.ui.dialog.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	#dialog label, #dialog input { display:block; }
-	#dialog label { margin-top: 0.5em; }
-	#dialog input, #dialog textarea { width: 95%; }
-	#tabs { margin-top: 1em; }
-	#tabs li .ui-icon-close { float: left; margin: 0.4em 0.2em 0 0; cursor: pointer; }
-	#add_tab { cursor: pointer; }
-	</style>
-	<script>
-	$(function() {
-		var tabTitle = $( "#tab_title" ),
-			tabContent = $( "#tab_content" ),
-			tabTemplate = "<li><a href='#{href}'>#{label}</a> <span class='ui-icon ui-icon-close' role='presentation'>Remove Tab</span></li>",
-			tabCounter = 2;
-
-		var tabs = $( "#tabs" ).tabs();
-
-		// modal dialog init: custom buttons and a "close" callback reseting the form inside
-		var dialog = $( "#dialog" ).dialog({
-			autoOpen: false,
-			modal: true,
-			buttons: {
-				Add: function() {
-					addTab();
-					$( this ).dialog( "close" );
-				},
-				Cancel: function() {
-					$( this ).dialog( "close" );
-				}
-			},
-			close: function() {
-				form[ 0 ].reset();
-			}
-		});
-
-		// addTab form: calls addTab function on submit and closes the dialog
-		var form = dialog.find( "form" ).submit(function( event ) {
-			addTab();
-			dialog.dialog( "close" );
-			event.preventDefault();
-		});
-
-		// actual addTab function: adds new tab using the input from the form above
-		function addTab() {
-			var label = tabTitle.val() || "Tab " + tabCounter,
-				id = "tabs-" + tabCounter,
-				li = $( tabTemplate.replace( /#\{href\}/g, "#" + id ).replace( /#\{label\}/g, label ) ),
-				tabContentHtml = tabContent.val() || "Tab " + tabCounter + " content.";
-
-			tabs.find( ".ui-tabs-nav" ).append( li );
-			tabs.append( "<div id='" + id + "'><p>" + tabContentHtml + "</p></div>" );
-			tabs.tabs( "refresh" );
-			tabCounter++;
-		}
-
-		// addTab button: just opens the dialog
-		$( "#add_tab" )
-			.button()
-			.click(function() {
-				dialog.dialog( "open" );
-			});
-
-		// close icon: removing the tab on click
-		tabs.delegate( "span.ui-icon-close", "click", function() {
-			var panelId = $( this ).closest( "li" ).remove().attr( "aria-controls" );
-			$( "#" + panelId ).remove();
-			tabs.tabs( "refresh" );
-		});
-
-		tabs.bind( "keyup", function( event ) {
-			if ( event.altKey && event.keyCode === $.ui.keyCode.BACKSPACE ) {
-				var panelId = tabs.find( ".ui-tabs-active" ).remove().attr( "aria-controls" );
-				$( "#" + panelId ).remove();
-				tabs.tabs( "refresh" );
-			}
-		});
-	});
-	</script>
-</head>
-<body>
-
-<div id="dialog" title="Tab data">
-	<form>
-		<fieldset class="ui-helper-reset">
-			<label for="tab_title">Title</label>
-			<input type="text" name="tab_title" id="tab_title" value="" class="ui-widget-content ui-corner-all" />
-			<label for="tab_content">Content</label>
-			<textarea name="tab_content" id="tab_content" class="ui-widget-content ui-corner-all"></textarea>
-		</fieldset>
-	</form>
-</div>
-
-<button id="add_tab">Add Tab</button>
-
-<div id="tabs">
-	<ul>
-		<li><a href="#tabs-1">Nunc tincidunt</a> <span class="ui-icon ui-icon-close" role="presentation">Remove Tab</span></li>
-	</ul>
-	<div id="tabs-1">
-		<p>Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus. Curabitur nec arcu. Donec sollicitudin mi sit amet mauris. Nam elementum quam ullamcorper ante. Etiam aliquet massa et lorem. Mauris dapibus lacus auctor risus. Aenean tempor ullamcorper leo. Vivamus sed magna quis ligula eleifend adipiscing. Duis orci. Aliquam sodales tortor vitae ipsum. Aliquam nulla. Duis aliquam molestie erat. Ut et mauris vel pede varius sollicitudin. Sed ut dolor nec orci tincidunt interdum. Phasellus ipsum. Nunc tristique tempus lectus.</p>
-	</div>
-</div>
-
-<div class="demo-description">
-<p>Simple tabs adding and removing.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/mouseover.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/mouseover.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/mouseover.html
deleted file mode 100644
index 9b67781..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/mouseover.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Tabs - Open on mouseover</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.tabs.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<script>
-	$(function() {
-		$( "#tabs" ).tabs({
-			event: "mouseover"
-		});
-	});
-	</script>
-</head>
-<body>
-
-<div id="tabs">
-	<ul>
-		<li><a href="#tabs-1">Nunc tincidunt</a></li>
-		<li><a href="#tabs-2">Proin dolor</a></li>
-		<li><a href="#tabs-3">Aenean lacinia</a></li>
-	</ul>
-	<div id="tabs-1">
-		<p>Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus. Curabitur nec arcu. Donec sollicitudin mi sit amet mauris. Nam elementum quam ullamcorper ante. Etiam aliquet massa et lorem. Mauris dapibus lacus auctor risus. Aenean tempor ullamcorper leo. Vivamus sed magna quis ligula eleifend adipiscing. Duis orci. Aliquam sodales tortor vitae ipsum. Aliquam nulla. Duis aliquam molestie erat. Ut et mauris vel pede varius sollicitudin. Sed ut dolor nec orci tincidunt interdum. Phasellus ipsum. Nunc tristique tempus lectus.</p>
-	</div>
-	<div id="tabs-2">
-		<p>Morbi tincidunt, dui sit amet facilisis feugiat, odio metus gravida ante, ut pharetra massa metus id nunc. Duis scelerisque molestie turpis. Sed fringilla, massa eget luctus malesuada, metus eros molestie lectus, ut tempus eros massa ut dolor. Aenean aliquet fringilla sem. Suspendisse sed ligula in ligula suscipit aliquam. Praesent in eros vestibulum mi adipiscing adipiscing. Morbi facilisis. Curabitur ornare consequat nunc. Aenean vel metus. Ut posuere viverra nulla. Aliquam erat volutpat. Pellentesque convallis. Maecenas feugiat, tellus pellentesque pretium posuere, felis lorem euismod felis, eu ornare leo nisi vel felis. Mauris consectetur tortor et purus.</p>
-	</div>
-	<div id="tabs-3">
-		<p>Mauris eleifend est et turpis. Duis id erat. Suspendisse potenti. Aliquam vulputate, pede vel vehicula accumsan, mi neque rutrum erat, eu congue orci lorem eget lorem. Vestibulum non ante. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Fusce sodales. Quisque eu urna vel enim commodo pellentesque. Praesent eu risus hendrerit ligula tempus pretium. Curabitur lorem enim, pretium nec, feugiat nec, luctus a, lacus.</p>
-		<p>Duis cursus. Maecenas ligula eros, blandit nec, pharetra at, semper at, magna. Nullam ac lacus. Nulla facilisi. Praesent viverra justo vitae neque. Praesent blandit adipiscing velit. Suspendisse potenti. Donec mattis, pede vel pharetra blandit, magna ligula faucibus eros, id euismod lacus dolor eget odio. Nam scelerisque. Donec non libero sed nulla mattis commodo. Ut sagittis. Donec nisi lectus, feugiat porttitor, tempor ac, tempor vitae, pede. Aenean vehicula velit eu tellus interdum rutrum. Maecenas commodo. Pellentesque nec elit. Fusce in lacus. Vivamus a libero vitae lectus hendrerit hendrerit.</p>
-	</div>
-</div>
-
-<div class="demo-description">
-<p>Toggle sections open/closed on mouseover with the <code>event</code> option. The default value for event is "click."</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/sortable.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/sortable.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/sortable.html
deleted file mode 100644
index 0091e58..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/sortable.html
+++ /dev/null
@@ -1,51 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Tabs - Sortable</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.sortable.js"></script>
-	<script src="../../ui/jquery.ui.tabs.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<script>
-	$(function() {
-		var tabs = $( "#tabs" ).tabs();
-		tabs.find( ".ui-tabs-nav" ).sortable({
-			axis: "x",
-			stop: function() {
-				tabs.tabs( "refresh" );
-			}
-		});
-	});
-	</script>
-</head>
-<body>
-
-<div id="tabs">
-	<ul>
-		<li><a href="#tabs-1">Nunc tincidunt</a></li>
-		<li><a href="#tabs-2">Proin dolor</a></li>
-		<li><a href="#tabs-3">Aenean lacinia</a></li>
-	</ul>
-	<div id="tabs-1">
-		<p>Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus. Curabitur nec arcu. Donec sollicitudin mi sit amet mauris. Nam elementum quam ullamcorper ante. Etiam aliquet massa et lorem. Mauris dapibus lacus auctor risus. Aenean tempor ullamcorper leo. Vivamus sed magna quis ligula eleifend adipiscing. Duis orci. Aliquam sodales tortor vitae ipsum. Aliquam nulla. Duis aliquam molestie erat. Ut et mauris vel pede varius sollicitudin. Sed ut dolor nec orci tincidunt interdum. Phasellus ipsum. Nunc tristique tempus lectus.</p>
-	</div>
-	<div id="tabs-2">
-		<p>Morbi tincidunt, dui sit amet facilisis feugiat, odio metus gravida ante, ut pharetra massa metus id nunc. Duis scelerisque molestie turpis. Sed fringilla, massa eget luctus malesuada, metus eros molestie lectus, ut tempus eros massa ut dolor. Aenean aliquet fringilla sem. Suspendisse sed ligula in ligula suscipit aliquam. Praesent in eros vestibulum mi adipiscing adipiscing. Morbi facilisis. Curabitur ornare consequat nunc. Aenean vel metus. Ut posuere viverra nulla. Aliquam erat volutpat. Pellentesque convallis. Maecenas feugiat, tellus pellentesque pretium posuere, felis lorem euismod felis, eu ornare leo nisi vel felis. Mauris consectetur tortor et purus.</p>
-	</div>
-	<div id="tabs-3">
-		<p>Mauris eleifend est et turpis. Duis id erat. Suspendisse potenti. Aliquam vulputate, pede vel vehicula accumsan, mi neque rutrum erat, eu congue orci lorem eget lorem. Vestibulum non ante. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Fusce sodales. Quisque eu urna vel enim commodo pellentesque. Praesent eu risus hendrerit ligula tempus pretium. Curabitur lorem enim, pretium nec, feugiat nec, luctus a, lacus.</p>
-		<p>Duis cursus. Maecenas ligula eros, blandit nec, pharetra at, semper at, magna. Nullam ac lacus. Nulla facilisi. Praesent viverra justo vitae neque. Praesent blandit adipiscing velit. Suspendisse potenti. Donec mattis, pede vel pharetra blandit, magna ligula faucibus eros, id euismod lacus dolor eget odio. Nam scelerisque. Donec non libero sed nulla mattis commodo. Ut sagittis. Donec nisi lectus, feugiat porttitor, tempor ac, tempor vitae, pede. Aenean vehicula velit eu tellus interdum rutrum. Maecenas commodo. Pellentesque nec elit. Fusce in lacus. Vivamus a libero vitae lectus hendrerit hendrerit.</p>
-	</div>
-</div>
-
-<div class="demo-description">
-<p>Drag the tabs above to re-order them.</p>
-<p>Making tabs sortable is as simple as calling <code>.sortable()</code> on the <code>.ui-tabs-nav</code> element.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/vertical.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/vertical.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/vertical.html
deleted file mode 100644
index b121557..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tabs/vertical.html
+++ /dev/null
@@ -1,54 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Tabs - Vertical Tabs 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.tabs.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<script>
-	$(function() {
-		$( "#tabs" ).tabs().addClass( "ui-tabs-vertical ui-helper-clearfix" );
-		$( "#tabs li" ).removeClass( "ui-corner-top" ).addClass( "ui-corner-left" );
-	});
-	</script>
-	<style>
-	.ui-tabs-vertical { width: 55em; }
-	.ui-tabs-vertical .ui-tabs-nav { padding: .2em .1em .2em .2em; float: left; width: 12em; }
-	.ui-tabs-vertical .ui-tabs-nav li { clear: left; width: 100%; border-bottom-width: 1px !important; border-right-width: 0 !important; margin: 0 -1px .2em 0; }
-	.ui-tabs-vertical .ui-tabs-nav li a { display:block; }
-	.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active { padding-bottom: 0; padding-right: .1em; border-right-width: 1px; border-right-width: 1px; }
-	.ui-tabs-vertical .ui-tabs-panel { padding: 1em; float: right; width: 40em;}
-	</style>
-</head>
-<body>
-
-<div id="tabs">
-	<ul>
-		<li><a href="#tabs-1">Nunc tincidunt</a></li>
-		<li><a href="#tabs-2">Proin dolor</a></li>
-		<li><a href="#tabs-3">Aenean lacinia</a></li>
-	</ul>
-	<div id="tabs-1">
-		<h2>Content heading 1</h2>
-		<p>Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus. Curabitur nec arcu. Donec sollicitudin mi sit amet mauris. Nam elementum quam ullamcorper ante. Etiam aliquet massa et lorem. Mauris dapibus lacus auctor risus. Aenean tempor ullamcorper leo. Vivamus sed magna quis ligula eleifend adipiscing. Duis orci. Aliquam sodales tortor vitae ipsum. Aliquam nulla. Duis aliquam molestie erat. Ut et mauris vel pede varius sollicitudin. Sed ut dolor nec orci tincidunt interdum. Phasellus ipsum. Nunc tristique tempus lectus.</p>
-	</div>
-	<div id="tabs-2">
-		<h2>Content heading 2</h2>
-		<p>Morbi tincidunt, dui sit amet facilisis feugiat, odio metus gravida ante, ut pharetra massa metus id nunc. Duis scelerisque molestie turpis. Sed fringilla, massa eget luctus malesuada, metus eros molestie lectus, ut tempus eros massa ut dolor. Aenean aliquet fringilla sem. Suspendisse sed ligula in ligula suscipit aliquam. Praesent in eros vestibulum mi adipiscing adipiscing. Morbi facilisis. Curabitur ornare consequat nunc. Aenean vel metus. Ut posuere viverra nulla. Aliquam erat volutpat. Pellentesque convallis. Maecenas feugiat, tellus pellentesque pretium posuere, felis lorem euismod felis, eu ornare leo nisi vel felis. Mauris consectetur tortor et purus.</p>
-	</div>
-	<div id="tabs-3">
-		<h2>Content heading 3</h2>
-		<p>Mauris eleifend est et turpis. Duis id erat. Suspendisse potenti. Aliquam vulputate, pede vel vehicula accumsan, mi neque rutrum erat, eu congue orci lorem eget lorem. Vestibulum non ante. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Fusce sodales. Quisque eu urna vel enim commodo pellentesque. Praesent eu risus hendrerit ligula tempus pretium. Curabitur lorem enim, pretium nec, feugiat nec, luctus a, lacus.</p>
-		<p>Duis cursus. Maecenas ligula eros, blandit nec, pharetra at, semper at, magna. Nullam ac lacus. Nulla facilisi. Praesent viverra justo vitae neque. Praesent blandit adipiscing velit. Suspendisse potenti. Donec mattis, pede vel pharetra blandit, magna ligula faucibus eros, id euismod lacus dolor eget odio. Nam scelerisque. Donec non libero sed nulla mattis commodo. Ut sagittis. Donec nisi lectus, feugiat porttitor, tempor ac, tempor vitae, pede. Aenean vehicula velit eu tellus interdum rutrum. Maecenas commodo. Pellentesque nec elit. Fusce in lacus. Vivamus a libero vitae lectus hendrerit hendrerit.</p>
-	</div>
-</div>
-
-<div class="demo-description">
-<p>Click tabs to swap between content that is broken into logical sections.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/ajax/content1.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/ajax/content1.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/ajax/content1.html
deleted file mode 100644
index a1401b2..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/ajax/content1.html
+++ /dev/null
@@ -1 +0,0 @@
-<p><strong>This content was loaded via ajax.</strong></p>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/ajax/content2.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/ajax/content2.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/ajax/content2.html
deleted file mode 100644
index f4132d7..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/ajax/content2.html
+++ /dev/null
@@ -1 +0,0 @@
-<p><strong>This other content was loaded via ajax.</strong></p>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/custom-animation.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/custom-animation.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/custom-animation.html
deleted file mode 100644
index 46126d5..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/custom-animation.html
+++ /dev/null
@@ -1,54 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Tooltip - Custom animation 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.position.js"></script>
-	<script src="../../ui/jquery.ui.tooltip.js"></script>
-	<script src="../../ui/jquery.ui.effect.js"></script>
-	<script src="../../ui/jquery.ui.effect-explode.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<script>
-	$(function() {
-		$( "#show-option" ).tooltip({
-			show: {
-				effect: "slideDown",
-				delay: 250
-			}
-		});
-		$( "#hide-option" ).tooltip({
-			hide: {
-				effect: "explode",
-				delay: 250
-			}
-		});
-		$( "#open-event" ).tooltip({
-			show: null,
-			position: {
-				my: "left top",
-				at: "left bottom"
-			},
-			open: function( event, ui ) {
-				ui.tooltip.animate({ top: ui.tooltip.position().top + 10 }, "fast" );
-			}
-		});
-	});
-	</script>
-</head>
-<body>
-
-<p>There are various ways to customize the animation of a tooltip.</p>
-<p>You can use the <a id="show-option" href="http://jqueryui.com/demos/tooltip/#option-show" title="slide down on show">show</a> and
-<a id="hide-option" href="http://jqueryui.com/demos/tooltip/#option-hide" title="explode on hide">hide</a> options.</p>
-<p>You can also use the <a id="open-event" href="http://jqueryui.com/demos/tooltip/#event-open" title="move down on show">open event</a>.</p>
-
-<div class="demo-description">
-<p>This demo shows how to customize animations using the show and hide options,
-as well as the open event.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/custom-content.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/custom-content.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/custom-content.html
deleted file mode 100644
index c24a939..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/custom-content.html
+++ /dev/null
@@ -1,83 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Tooltip - Custom content</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.tooltip.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	.photo {
-		width: 300px;
-		text-align: center;
-	}
-	.photo .ui-widget-header {
-		margin: 1em 0;
-	}
-	.map {
-		width: 350px;
-		height: 350px;
-	}
-	.ui-tooltip {
-		max-width: 350px;
-	}
-	</style>
-	<script>
-	$(function() {
-		$( document ).tooltip({
-			items: "img, [data-geo], [title]",
-			content: function() {
-				var element = $( this );
-				if ( element.is( "[data-geo]" ) ) {
-					var text = element.text();
-					return "<img class='map' alt='" + text +
-						"' src='http://maps.google.com/maps/api/staticmap?" +
-						"zoom=11&size=350x350&maptype=terrain&sensor=false&center=" +
-						text + "'>";
-				}
-				if ( element.is( "[title]" ) ) {
-					return element.attr( "title" );
-				}
-				if ( element.is( "img" ) ) {
-					return element.attr( "alt" );
-				}
-			}
-		});
-	});
-	</script>
-</head>
-<body>
-
-<div class="ui-widget photo">
-	<div class="ui-widget-header ui-corner-all">
-		<h2>St. Stephen's Cathedral</h2>
-		<h3><a href="http://maps.google.com/maps?q=vienna,+austria&amp;z=11" data-geo>Vienna, Austria</a></h3>
-	</div>
-	<a href="http://en.wikipedia.org/wiki/File:Wien_Stefansdom_DSC02656.JPG">
-		<img src="images/st-stephens.jpg" alt="St. Stephen's Cathedral" class="ui-corner-all">
-	</a>
-</div>
-
-<div class="ui-widget photo">
-	<div class="ui-widget-header ui-corner-all">
-		<h2>Tower Bridge</h2>
-		<h3><a href="http://maps.google.com/maps?q=london,+england&amp;z=11" data-geo>London, England</a></h3>
-	</div>
-	<a href="http://en.wikipedia.org/wiki/File:Tower_bridge_London_Twilight_-_November_2006.jpg">
-		<img src="images/tower-bridge.jpg" alt="Tower Bridge" class="ui-corner-all">
-	</a>
-</div>
-
-<p>All images are part of <a href="http://commons.wikimedia.org/wiki/Main_Page">Wikimedia Commons</a>
-and are licensed under <a href="http://creativecommons.org/licenses/by-sa/3.0/deed.en" title="Creative Commons Attribution-ShareAlike 3.0">CC BY-SA 3.0</a> by the copyright holder.</p>
-
-<div class="demo-description">
-<p>Shows how to combine different event delegated tooltips into a single instance, by customizing the items and content options.</p>
-<p>We realize you may want to interact with the map tooltips. This is a planned feature for a future version.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/custom-style.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/custom-style.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/custom-style.html
deleted file mode 100644
index 3e2a56a..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/custom-style.html
+++ /dev/null
@@ -1,95 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Tooltip - Custom Styling</title>
-	<link rel="stylesheet" href="../../themes/base/jquery.ui.tooltip.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.tooltip.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<script>
-	$(function() {
-		$( document ).tooltip({
-			position: {
-				my: "center bottom-20",
-				at: "center top",
-				using: function( position, feedback ) {
-					$( this ).css( position );
-					$( "<div>" )
-						.addClass( "arrow" )
-						.addClass( feedback.vertical )
-						.addClass( feedback.horizontal )
-						.appendTo( this );
-				}
-			}
-		});
-	});
-	</script>
-	<style>
-	.ui-tooltip, .arrow:after {
-		background: black;
-		border: 2px solid white;
-	}
-	.ui-tooltip {
-		padding: 10px 20px;
-		color: white;
-		border-radius: 20px;
-		font: bold 14px "Helvetica Neue", Sans-Serif;
-		text-transform: uppercase;
-		box-shadow: 0 0 7px black;
-	}
-	.arrow {
-		width: 70px;
-		height: 16px;
-		overflow: hidden;
-		position: absolute;
-		left: 50%;
-		margin-left: -35px;
-		bottom: -16px;
-	}
-	.arrow.top {
-		top: -16px;
-		bottom: auto;
-	}
-	.arrow.left {
-		left: 20%;
-	}
-	.arrow:after {
-		content: "";
-		position: absolute;
-		left: 20px;
-		top: -20px;
-		width: 25px;
-		height: 25px;
-		box-shadow: 6px 5px 9px -9px black;
-		-webkit-transform: rotate(45deg);
-		-moz-transform: rotate(45deg);
-		-ms-transform: rotate(45deg);
-		-o-transform: rotate(45deg);
-		tranform: rotate(45deg);
-	}
-	.arrow.top:after {
-		bottom: -20px;
-		top: auto;
-	}
-	</style>
-</head>
-<body>
-
-<p><a href="#" title="That's what this widget is">Tooltips</a> can be attached to any element. When you hover
-the element with your mouse, the title attribute is displayed in a little box next to the element, just like a native tooltip.</p>
-<p>But as it's not a native tooltip, it can be styled. Any themes built with
-<a href="http://themeroller.com" title="ThemeRoller: jQuery UI's theme builder application">ThemeRoller</a>
-will also style tooltips accordingly.</p>
-<p>Tooltips are also useful for form elements, to show some additional information in the context of each field.</p>
-<p><label for="age">Your age:</label> <input id="age" title="We ask for your age only for statistical purposes."></p>
-<p>Hover the field to see the tooltip.</p>
-
-<div class="demo-description">
-<p>Hover the links above or use the tab key to cycle the focus on each element.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/default.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/default.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/default.html
deleted file mode 100644
index a07533b..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/default.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Tooltip - 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.tooltip.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<script>
-	$(function() {
-		$( document ).tooltip();
-	});
-	</script>
-	<style>
-	label {
-		display: inline-block;
-		width: 5em;
-	}
-	</style>
-</head>
-<body>
-
-<p><a href="#" title="That's what this widget is">Tooltips</a> can be attached to any element. When you hover
-the element with your mouse, the title attribute is displayed in a little box next to the element, just like a native tooltip.</p>
-<p>But as it's not a native tooltip, it can be styled. Any themes built with
-<a href="http://themeroller.com" title="ThemeRoller: jQuery UI's theme builder application">ThemeRoller</a>
-will also style tooltips accordingly.</p>
-<p>Tooltips are also useful for form elements, to show some additional information in the context of each field.</p>
-<p><label for="age">Your age:</label><input id="age" title="We ask for your age only for statistical purposes."></p>
-<p>Hover the field to see the tooltip.</p>
-
-<div class="demo-description">
-<p>Hover the links above or use the tab key to cycle the focus on each element.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/forms.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/forms.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/forms.html
deleted file mode 100644
index a5ce77f..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/forms.html
+++ /dev/null
@@ -1,65 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Tooltip - Forms</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.tooltip.js"></script>
-	<script src="../../ui/jquery.ui.button.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	label {
-		display: inline-block; width: 5em;
-	}
-	fieldset div {
-		margin-bottom: 2em;
-	}
-	fieldset .help {
-		display: inline-block;
-	}
-	.ui-tooltip {
-		width: 210px;
-	}
-	</style>
-	<script>
-	$(function() {
-		var tooltips = $( "[title]" ).tooltip();
-		$( "<button>" )
-			.text( "Show help" )
-			.button()
-			.click(function() {
-				tooltips.tooltip( "open" );
-			})
-			.insertAfter( "form" );
-	});
-	</script>
-</head>
-<body>
-
-<form>
-	<fieldset>
-		<div>
-			<label for="firstname">Firstname</label>
-			<input id="firstname" name="firstname" title="Please provide your firstname.">
-		</div>
-		<div>
-			<label for="lastname">Lastname</label>
-			<input id="lastname" name="lastname" title="Please provide also your lastname.">
-		</div>
-		<div>
-			<label for="address">Address</label>
-			<input id="address" name="address" title="Your home or work address.">
-		</div>
-	</fieldset>
-</form>
-
-<div class="demo-description">
-<p>Use the button below to display the help texts, or just focus or mouseover the indivdual inputs.</p>
-<p>A fixed width is defined in CSS to make the tooltips look consistent when displayed all at once.</p>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/images/st-stephens.jpg
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/images/st-stephens.jpg b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/images/st-stephens.jpg
deleted file mode 100644
index 30fc36d..0000000
Binary files a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/images/st-stephens.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/images/tower-bridge.jpg
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/images/tower-bridge.jpg b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/images/tower-bridge.jpg
deleted file mode 100644
index d1e14d6..0000000
Binary files a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/images/tower-bridge.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/index.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/index.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/index.html
deleted file mode 100644
index cebedd0..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/index.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Tooltip Demos</title>
-</head>
-<body>
-
-<ul>
-	<li><a href="default.html">Default functionality</a></li>
-	<li><a href="custom-style.html">Custom style with arrow</a></li>
-	<li><a href="forms.html">Forms with tooltips</a></li>
-	<li><a href="tracking.html">Track the mouse</a></li>
-	<li><a href="custom-animation.html">Custom animation</a></li>
-	<li><a href="custom-content.html">Custom content</a></li>
-	<li><a href="video-player.html">Video Player</a></li>
-</ul>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/isis/blob/1e7d0919/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/tracking.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/tracking.html b/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/tracking.html
deleted file mode 100644
index 48e683e..0000000
--- a/component/viewer/wicket/jquery-ui-1.10.2.custom/development-bundle/demos/tooltip/tracking.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-	<meta charset="utf-8">
-	<title>jQuery UI Tooltip - Track the mouse</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.tooltip.js"></script>
-	<link rel="stylesheet" href="../demos.css">
-	<style>
-	label {
-		display: inline-block;
-		width: 5em;
-	}
-	</style>
-	<script>
-	$(function() {
-		$( document ).tooltip({
-			track: true
-		});
-	});
-	</script>
-</head>
-<body>
-
-<p><a href="#" title="That's what this widget is">Tooltips</a> can be attached to any element. When you hover
-the element with your mouse, the title attribute is displayed in a little box next to the element, just like a native tooltip.</p>
-<p>But as it's not a native tooltip, it can be styled. Any themes built with
-<a href="http://themeroller.com" title="ThemeRoller: jQuery UI's theme builder application">ThemeRoller</a>
-will also style tooltips accordingly.</p>
-<p>Tooltips are also useful for form elements, to show some additional information in the context of each field.</p>
-<p><label for="age">Your age:</label><input id="age" title="We ask for your age only for statistical purposes."></p>
-<p>Hover the field to see the tooltip.</p>
-
-<div class="demo-description">
-<p>Here the tooltips are positioned relative to the mouse, and follow the mouse while it moves above the element.</p>
-</div>
-</body>
-</html>