Building a plugin to show a jsp wihout admin console decorator

Hi,

I am writing a plugin which has a jsp on openfire version 3.4 alpha 1, and I am trying to access this jsp in the browser. The jsp always comes up with the admin console decorator whereas the plugins intent is to provide a custom view to the user.

How do we disble the decorator to this jsp alone. I have attempted to add a meta tag in the jsp as below as per the documentation:

<html><head> <meta name=“decorator” content=“none” /> </head>…</head>

But the admin consoles side bar and tabs are still to be seen.

Thanks in advance.

Bit late, but in case it helps anyone:

<head>

<title>Title</title>

<meta name=“pageID” content=“my-edit-form”/>

<meta name=“decorator” content=“none”/>

<link rel=“stylesheet” type=“text/css” href="/style/global.css">

</head>