What is the simplest way to call a custom Alfresco repository JavaScript extension from a content rule?
A. Create a new custom action that calls my script, and bundle both the custom script and the custom action into an AMP.
B. Add the script to Data Dictionary/Scripts, then use the "Execute a Script" action to call it from the rule.
C. Add a function called "executeAction" to the JavaScript and place it on the classpath. Alfresco Content Services will add it as a rule action.
D. Upload the script to the folder on which the rule action is applied, and name it "ruleScript" so Alfresco Content Services can find it.
Which type of constraint can be used to put a limit on the numeric value that can be stored in a property when designing a content model?
A. LENGTH
B. REGEX
C. MINMAX
D. LIST
E. MAX
How can we modify what data is shown in each row of the Alfresco Share document library, using the supported extension points?
A. Define and use a new metadata template in share-config-custom.xml
B. Customize the FreeMarket template that is used to render the document library
C. Update the JavaScript used to create the document library using the YUI libraries.
D. Clone all the document library components, and make the required changes.
A repository web script is defined with the URL `/myco/hello-world' in its descriptor document and requires user authentication. Which of the following URLs can be used through Share to access the web script in the context of the logged-in user?
A. http://server/share/proxy/myco/hello-world
B. http://server/share/alfresco/myco/hello-world
C. http://server/share/myco/hello-world
D. http://server/share/proxy/alfresco/myco/hello-world
What does the JavaScript ScriptNode API expression "node.assocs" do?
A. Returns a complete read only list of all associations.
B. Returns the list of all associations which can be changes and modified.
C. Returns the list of child associations which are read only.
D. Returns the list of child associations which can be changes and modified.
When are Alfresco-specific database tables created within the database?
A. On the first login by the "admin" user.
B. Prior to installing Alfresco Content Services.
C. During the initial startup of the Alfresco Content Services repository.
D. During installation before the application server starts.
You want to execute a query in Alfresco Full-Text Search that returns only nodes with a custom text property my:property that exactly matches 1000. Which query would be correct?
A. The correct query is: my:property:1000
B. The correct query is: =my:property:1000
C. The correct query is: !my:property:1000
D. The correct query is: ~my:property:1000
How many workflow execution tokens are created initially when a "Review and Approve" out of the box workflow is started?
A. One for "Review" and one for "Approve".
B. One per user task.
C. One per user within an assigned group.
D. One.
Which JavaScript file, provided in the `js' directory inside the Share web application, defines commonly-used client-side utility functions?
A. common.js
B. util.js
C. slingshot.js
D. alfresco.js
Which Alfresco Java Public API service can be used to inspect the currently loaded content models?
A. NodeService
B. DictionaryService
C. ContentService
D. ModuleService