Configuring the Proposals for Elements
There are many cases where elements have a relaxed content model and can accept a large
number of child elements. For example, the DITA list item element (li)
accepts more than 60 child elements. Oxygen XML Editor includes support to allow the
content architect to put some constraints on the possible elements or attributes, or to impose
some best practices in the way content is edited.
For an example of a specific use-case, suppose that you want restrict DITA list item elements
(li) to only accept paragraph elements (p). In this case,
the Content Completion Assistant should not offer any other element
other than a paragraph (p) when a list item (li) is inserted
into a document. It would also be helpful if the required child element (p)
was automatically inserted whenever a list item (li) is inserted.
One method of changing the content model is to alter the element definition in the associated schema (XML Schema, DTD, RelaxNG), but this may be quite complicated in some cases. Fortunately, Oxygen XML Editor offers a simple, alternative method of using a configuration file to customize the content completion proposals for each element.
Setting up the Content Completion Configuration File
- Create a new resources folder (if it does not already exist) in the frameworks directory for the particular document type (for example, OXYGEN_INSTALL_DIR/frameworks/dita/resources).
- Open the Preferences dialog box and go to Document Type Association. Select the particular document type, click the Edit button, and in the Classpath tab add a link to that resources folder (if it does not already exist).
- Create a new configuration file or edit an existing one.
- To easily create a new configuration file, you can use the Content Completion Configuration file template that is included in Oxygen XML Editor (). The file template includes details about how each element and attribute is used in the configuration file.
- If a configuration file (cc_config.xml) already exists for the particular document type (in the resources folder), you can modify this existing file.
- Make the appropriate changes to your custom configuration file.
- Save the file in the resources folder for the particular document type, using the fixed name: cc_config.xml (for example, OXYGEN_INSTALL_DIR/frameworks/dita/resources/cc_config.xml).
- Restart the application and open an XML document. In the Content Completion
Assistant you should see your customizations.Tip: In some cases, you can simply use the
Refresh (F5) action to test your customizations,
without having to restart the application.
Configuring Elements or Attributes that are Proposed for Each Element
For the purposes of customizing the elements or attributes that are proposed for each
individual element, the configuration file (cc_config.xml) uses
elementProposals elements. This element allows you to customize or filter
the child elements and attributes for an element.
Elements:
elementProposals element:path- A path within the document that matches the element that will have its content completion proposals changed. For example,"title"matches all thetitleelements in the document, while"chapter/title"matches only thetitleelements that are direct children of thechapterelement.Note: If this attribute is missing, the customization will apply to the proposals for all elements. You can intentionally omit this attribute and usepossibleElementsorrejectElementsto specify or restrict elements for an entire framework.For example, suppose that in your DITA documents, you want to restrict your users from using image elements (image) because you do not want images to be included in your output. The configuration file should look like this:<elementProposals rejectElements="image" />
Since the
pathattribute is missing, the specified element will be filtered out from the proposals for the entire framework.insertElements- A space-separated sequence of child element names. Each time the element specified in thepathattribute is inserted into the document, these child elements will also be inserted in the order that they are listed. For example,insertElements="b i"will insert exactly onebelement, followed by anielement. An empty value ("") means that no child elements should be inserted.Note: If this attribute is missing, the default required child elements will be inserted, as specified in the associated schema for the document.possibleElements- A space-separated list of element names that will be shown in the content completion list when invoked inside an element that is specified in thepathattribute. For example,"bold italic codeph ph"means that the Content Completion Assistant will contain these four elements when invoked on the element specified in thepathattribute. The following other possible values are also supported:- NONE - There will be no proposals in the content completion list.
- ALL - All the possible elements specified in the associated schema will be presented in the content completion list. This is also the default behavior if this attribute is missing.
- INSERTED - The proposals will be the same list of elements that are
defined in the
insertElementsattribute.
rejectElements- A space-separated list of element names that will be filtered out from the list of proposals that are presented in the content completion list. Each time the element specified in thepathattribute is inserted into the document, the list of proposals in the Content Completion Assistant will include the entries that are defined in the associated schema, minus the elements specified in this attribute.
Attributes:
elementProposals element:path- A path within the document that matches the element that will have its attribute proposals changed. For example,"title"matches all thetitleelements in the document, while"chapter/title"matches only thetitleelements that are direct children of thechapterelement.Note: If this attribute is missing, the customization will apply to the proposals for all elements. You can intentionally omit this attribute and usepossibleAttributesorrejectAttributesto specify or restrict attributes for an entire framework.For example, suppose that you only want to allow a limited set of attributes in a customized framework. The configuration file should look like this:
<elementProposals possibleAttributes=" id domains href scope format type conref props keyref class"/>
Since the
pathattribute is missing, this applies to the entire framework and only the specified attributes will be proposed.insertAttributes- A space-separated sequence of attribute names that will be inserted along with the element.possibleAttributes- A space-separated list of attribute names that will be shown in the content completion list when invoked inside an element that is specified in thepathattribute.rejectAttributes- A space-separated list of attribute names that will be filtered out from the list of proposals that are presented in the content completion list. Each time the element specified in thepathattribute is inserted into the document, the list of proposals in the Content Completion Assistant will include the entries that are defined in the associated schema, minus the attributes specified in this attribute.
Other Important Notes About the Configuration File
- By default, the element names that do not have a namespace prefix are considered from
no-namespace. Consider declaring the namespace mapping on the root of the
configuration file and prefixing the element names from the
elementPathandmodelattributes. - This configuration file only affects the content completion assistance, not validation.
- To test the effects of your changes, you should restart the application, although in
some cases, you can simply use the
Refresh (F5) action to test your
customizations. - When an XML element from the document is matched against a list of configured
elementProposals, the first one in sequence takes precedence. Therefore, make sure you place the more specificelementProposals(those with a longer path) first in your configuration file. - Regular expression patterns can be used in the following attributes:
possibleElements,rejectElements,possibleAttributes, andrejectAttributes. For example,code*,*block,con*ref,_*. - Only simple recursion cases are detected and avoided by the editor, and logged to the
console. Therefore, if complex
elementProposalspatterns are defined, you should avoid infinite recursions.
Examples: Configuring the Element Proposals
-
Example 1: Automatically Insert Elements
Suppose that you want to automatically insert a paragraph element (
p) whenever a DITA ordered list item element (ol/li) is inserted, and also to not allow any other element besides a paragraph inside the ordered list items.To achieve this, the configuration file should include the following:<elementProposals path="ol/li" insertElements="p" possibleElements="_INSERTED_"/>
-
Example 2: Insert Complex Element Structure
For a more complex example, suppose that you want to insert a complex structure whenever a DITA
prologelement is inserted.For instance, if you need to insert the following structure insideprologelements:<prolog> <author></author> <metadata> <keywords> <keyword></keyword> <keyword></keyword> </keywords> </metadata> </prolog>The configuration file should include the following:<elementProposals path="prolog" insertElements="author metadata"/> <elementProposals path="prolog/metadata" insertElements="keywords"/> <elementProposals path="prolog/metadata/keywords" insertElements="keyword, keyword"/>
-
Example 3: Limit Possible Elements
Suppose that you also want to limit the proposals for thekeywordselement to only allow the user to insertaudienceorkeywordelements. The configuration file should include the following:<elementProposals path="prolog/metadata" insertElements="keywords" possibleElements="audience keywords"/>
Suppose that you want to simply restrict your users from insertingimageelements inside DITA list item elements (li), but still propose all the other elements that are defined in the associated schema. The configuration file should look like this:<elementProposals path="li" rejectElements="image" />
Examples: Configuring the Attributes Proposals
- Example 1: Automatically Insert AttributesSuppose that you want to insert an
idattribute (with an empty value) whenever a DITA list item element (li) is inserted. The configuration file should include the following:<elementProposals path="li" insertAttributes="id"/>
- Example 2: Limit Possible AttributesSuppose that you also want to limit the number of choices for attributes that are presented to the user whenever a DITA list item element (
li) is inserted. The configuration file should look like this:<elementProposals path="li" insertAttributes="id" possibleAttributes="id product platform audience"/>
Suppose that you want to simply restrict your users from insertingconrefattributes inside DITA topics (topicelement), but still propose all the other attributes that are defined in the associated schema. The configuration file should look like this:<elementProposals path="topic" rejectAttributes="conref" />