Hello,
is there a posibility to force a User to accept special company policies before using confluence? Something like the What's new Pop-up, but without the close-option.
thx
Fernando
Update: I've written a simple plugin to display terms and conditions when an editor is invoked, as in my use case I only need contributors to accept Ts and Cs. This is better than the solution below, as you can't continue editing without accepting, and it doesn't waste screen real estate. Walking the floors I noticed that many people never bothered accepting.
You will need to edit the Ts & Cs text, then deploy. Code here: https://bitbucket.org/jamieechlin/confluence-ts-and-cs-plugin. It will require maven to build.
Older solution below:
We use the following code in the announcement banner, which makes people acknowledge Ts&Cs every 30 days. You could change the 30 to 30000 if you wanted it to be a one-off. It's a bit hacky but has kept various compliance depts of my back. You need jquery.cookie.js which you can find on the interwebs.
<script type="text/javascript" language="javascript" src="/confluence/includes/js/jquery.cookie.js"></script> <div id="idiotBanner" style="display:none"> <table style="width: 100%;border: 2px solid #FF0000" cellpadding="2"> <tr> <td> <h3 style="text-align:center">Important Information </h3> <p style="text-align:center">Because unrestricted wiki pages are visible to all **** users, please make sure that all pages/spaces are <a href="http://****/Confluence+Acceptable+Usage+and+how+to+permission+pages+appropriately"> restricted to appropriate user groups</a>. Access to sensitive information (e.g. login credentials, privileged information) should be strictly controlled and those pages restricted to blah blah blah. </p> <p style="text-align:center"><a href="#" onclick="hideIdiotBanner()">Acknowledge and dismiss</a></p> </td> </tr> </table> </div> <script type="text/javascript" language="javascript"> jQuery(document).ready(function() { if (jQuery.cookie('hideIdiotBanner') != 'true') { jQuery('#idiotBanner').show(); } }); function hideIdiotBanner() { jQuery.cookie("hideIdiotBanner", "true", { expires: 30, path: '/confluence' }); jQuery('#idiotBanner').hide(); } </script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If I told you the story of why I had to do this, you'd be surprised I hadn't thought up a much worse name ;-)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Don't forget to tell your users about the behaviour and contents of your cookie storage if you want to avoid prosecution in the EU! :-p
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's not accessible to the public but good point! <searches for the Atlassian policy on same ;-) >
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.