No login page

Hello!

I’m trying to make my own plugin.

And I want to add a page that user can view without logining in admin console.

I viewed registration plugin and took sign-up.jsp as example.

I just set meta-tag “decorator” to “none” to my test page.

But it didn’t help. When I opened my page in browser, it took me to login page.

What am I doing wrong???

Here is me page:

<html>

<head>

<title>TITLE</title>

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

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

</head>

<body>

<div id=“jive-header”>

<table cellpadding=“0” cellspacing=“0” width=“100%” border=“0”>

<tbody>

<tr><td class=“drop-shadow”> getHeader</td></tr>

</tbody>

</table>

</div>

<div id=“jive-content”>

text!!!

</div>

</body>

</html>

I found solution!

In initializePlugin function I have to add:

AuthCheckFilter.addExclude(URL);

And in destroyPlugin:

AuthCheckFilter.removeExclude(URL);