Device class equations
Device class equations are expressions that involve a mixture of device class operands and boolean logic operators.
Valid syntax includes the following operators:
Parentheses
The NOT operator represented by "!"
- The AND operator represented by "+"
- The OR operator represented by "/"
The order of operations when we parse an equation follows the normal boolean logic order of operations: parentheses, NOT, AND, OR. For example:
- android+smartphone
- worklight+(ios/android)
- (android/ios)+smartphone+!blackberry
This dynamic content spot only displays for android smartphones.
"modules": [{ "id" : "topnavoverlay", "prereqs": [{ "id":"wp_dynamicContentSpots_85" }], "contributions": [{ "type":"dyn-cs", "sub-contributions": [{ "type":"markup", "ref-id":"85theme_topNav", "uris": [{ "value":"res:/your/sample.html" "deviceClass": "android+smartphone" }] }] }] }] }
Where to use device equations
Clients can have multiple device classes assigned in a comma separated list. These device classes on a client are then used in the device equations to determine what resources to provide or logic to run.
Device class equations are currently used with the Resource Aggregator. Subcontributions using the device class attribute can now use equations to target resources to the device classes of the client that is accessing the resources.
MVC architecture for use in jsp's for loading dynamic spots based on client device classes.
Portal-if tag has a device class attribute that allows checking the client for a device equation.
Parent Device classesPrevious topic: Assigning device classes