Is there any chance to force editor to write log when they save the page?

Shyu Wei September 3, 2015

Is there any chance to force editor to write log when they save the page?

We want record all change comment.

4 answers

1 vote
Davin Studer
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 10, 2015

What if you did something like this. You could add it to the custom html section in confluence admin, or to the page decorator.

<script type="text/javascript">
AJS.toInit(function(){
	AJS.$('#rte-button-publish').click(function(e){
		var comment = AJS.$('#versionComment').val();
		var inEditMode = AJS.$('body').hasClass('contenteditor') ? true : false;

		if(comment === '' && inEditMode) {
			e.preventDefault();
 
			var dialog = new AJS.Dialog({
				width:400, 
				height:200, 
				id:"comment-required", 
				closeOnOutsideClick: false
			});			
			dialog.addHeader("Comment Required");
			dialog.addPanel("Panel 1", "<p>You must enter a comment to save the page.</p>", "panel-body");			
			dialog.addButton("Ok", function (dialog) {
				dialog.remove();
			});			
			dialog.gotoPage(0);
			dialog.gotoPanel(0);
			dialog.show();
		}
	});
});
</script>
0 votes
Shyu Wei September 9, 2015

Hi, Our version is 5.6.5

0 votes
Davin Studer
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 8, 2015

What version are you on?

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
September 3, 2015

No, you can't do that.  It goes against the principles of "just get on and write" that Atlassian want for Confluence too, so you'll never see it in the core product.  I don't think there's any add-on to provide it either.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events