Modifying the Admin Console

Hi Guys,

Just trying to add a JSP page to the admin console, I currently can add a tab to the users section using this example i found.

<adminconsole>

<tab id=“tab-users”>

<sidebar id=“sidebar-users”>

<item id=“test” name=“test”

url=“users-test.jsp”

description=“test” />

</sidebar>

</tab>

</adminconsole>

What do i need to do in order to make a tab appear the in server tab under the server settings menu. I was looking through the souce of the admin console and did not come across any HTML that links to the above example eg, tab-users etc. So im unsure how to link the new tab test to the server settings menu.

Best

Mark

Found this exampe which worked in the server settings menu.

<adminconsole>

<tab id=“tab-server”>

<sidebar id=“sidebar-server-settings”>

<item id=“my-plugin” name=“My Plugin Admin”

url=“WebBot.jsp”

description=“Click to administer settings for my plugin” />

</sidebar>

</tab>

</adminconsole>

Can anybody explain now how i point to the jsp page?

best

Mark

Got it working,

The build file automatically builds the web.xml which i was having trouble with.

Best

Mark