Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "Alfresco comes with a property called policy.content.update.ignoreEmpty
, which controls the execution behavior of a rule."
A block of code is set as follows:
<config evaluator="string-compare" condition="Advanced Search"> <advanced-search> <content-types> <type name="custom:pressrelease" /> </content-types> <custom-properties> <meta-data type="custom:pressrelease" property="custom:PRDate" /> <meta-data aspect="custom:CustomerDetails" property="custom:CustomerName" /> <meta-data aspect="custom:CustomerDetails" property="custom:NewCustomer" /> </custom-properties> </advanced-search> </config>
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
<property name="custom:CustomerName"> <title>Customer Name</title> <type>d:text</type> <protected>false</protected> <mandatory>false</mandatory> <multiple>false</multiple> <index enabled="true"> <atomic>false</atomic> <stored>false</stored> <tokenised>true</tokenised> </index> <constraints> <constraint ref="custom:name_length"/> </constraints> </property>
Any command-line input or output is written as follows:
export -user admin -pwd admin -s workspace://SpacesStore –path /companyhome -verbose Intranet.acp
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "Select the More Actions | View Details link to view the Details page of the space."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.