Implemented FELIX-2202
Update Events plugin to JQuery UI

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@923242 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/webconsole-plugins/event/src/main/resources/res/events.html b/webconsole-plugins/event/src/main/resources/res/events.html
new file mode 100644
index 0000000..e721a3d
--- /dev/null
+++ b/webconsole-plugins/event/src/main/resources/res/events.html
@@ -0,0 +1,37 @@
+<script type="text/javascript" src="${pluginRoot}/res/ui/events.js"></script>

+<script type="text/javascript">

+var i18n = {

+	displayTimeline: '${displayTimeline}',

+	displayList    : '${displayList}'

+}

+</script>

+

+<!-- status line -->

+<p class="statline">&nbsp;</p>

+

+<!-- table caption -->

+<div class="ui-widget-header ui-corner-top buttonGroup">

+	<button id="switch">${displayTimeline}</button>

+	<button id="clear">${clear}</button>

+	<button id="reload">${reload}</button>

+</div>

+

+<!-- table -->

+<table id="eventsTable" class="tablesorter nicetable">

+	<thead>

+		<tr>

+			<th class="col_Received">${received}</th>

+			<th class="col_Topic">${topic}</th>

+			<th class="col_Props">${properties}</th>

+		</tr>

+	</thead>

+	<tbody>

+		<tr>

+			<td>&nbsp;</td>

+			<td>&nbsp;</td>

+			<td>&nbsp;</td>

+		</tr>

+	</tbody>

+</table>

+

+<div id="timeline" class="ui-helper-hidden">&nbsp;</div>