Restrict access to spell checking

If you need to limit access to spell checking for maps and topics, you must create a new access right.

About this task

The CCMS does not include an access right for spell checking. By default, the action is available for all users. If you want to limit the roles or groups who can confirm the spelling of words within topics and maps, you must create a new method in the accessrights.xml configuration file.

The new method applies to both CCMS Web and CCMS Desktop.

Procedure

  1. Check out and open accessrights.xml.
  2. Add the new method.
    <method name="Spellcheck" type="front-end" hide-when-disabled="true">
    	<!-- determines if a notification email should be sent when this action is taken -->
    	<notify enabled="false"/>
    	<!-- To be enabled or runnable the condition set must return true -->
    	<!-- possible operator are any (One of the condition must match)-->
    	<conditionset operator="any">
    		<condition>
    			<!-- Object on which action is taken -->
    			<current>
    				<type name="topic">
    					<statuses>
    						<status>Authoring:*</status>
    					</statuses>
    				</type>
    				<type name="map">
    					<statuses>
    						<status>Authoring:*</status>
    					</statuses>
    				</type>
    			</current>
    			<!-- Action user must be in this list -->
    			<users>
    				<roles/>
    				<groups>
    					<group name="Everyone"/>
    				</groups>
    			</users>
    		</condition>
    	</conditionset>
    </method>
    Important:
    • The method must have the name Spellcheck, as shown.
    • The method must only specify the Authoring cycle, as shown.
  3. Specify the role and groups you want to have the ability to check the spelling for each object.
  4. Save and check in accessrights.xml.
  5. Refresh the Web Server and instruct users to restart CCMS Desktop.