annotate docs/ResultsSpecificationDocument.tex @ 1680:ba4187ad3857

Updated the Results Specification to reflect node name changes. Also added extra fields to handle pre/post/during extra comments
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Tue, 07 Apr 2015 13:10:50 +0100
parents
children 375410a5571d
rev   line source
nickjillings@1680 1 \documentclass{article}
nickjillings@1680 2
nickjillings@1680 3 \usepackage[margin=2cm]{geometry}
nickjillings@1680 4 \usepackage{listings}
nickjillings@1680 5 \usepackage{color}
nickjillings@1680 6
nickjillings@1680 7 \begin{document}
nickjillings@1680 8
nickjillings@1680 9 \large APE Browser Tool - Results Specification Document
nickjillings@1680 10
nickjillings@1680 11 \section{Introduction}
nickjillings@1680 12 This document outlines the return XML document structure to hold the results from the Browser Evaluation Tool, specifically for the APE Interface.
nickjillings@1680 13
nickjillings@1680 14 \section{Root}
nickjillings@1680 15 The root of the document is \texttt{BrowserEvaluationResult}.
nickjillings@1680 16
nickjillings@1680 17 \section{AudioElement}
nickjillings@1680 18 A 1st level node, this contains the results for a specific audioElement.
nickjillings@1680 19
nickjillings@1680 20 \subsection{Attributes}
nickjillings@1680 21 Has the following attributes, depending on the variables set in the Project Specification.
nickjillings@1680 22 \begin{itemize}
nickjillings@1680 23 \item \texttt{id} - Mandatory. This returns the ID of the track in question. This is either the value passed in from the project specification, or calculated based on the position in the list. For instance, in the automatic system, the first test sample has ID 0, the second ID 1 and so forth. The value passed in from the project specification can either be a string or a Number.
nickjillings@1680 24 \item \texttt{url} - Mandatory. Returns the full URL given incase of errors or for later checking.
nickjillings@1680 25 \end{itemize}
nickjillings@1680 26
nickjillings@1680 27 \subsection{Value}
nickjillings@1680 28 One of these elements per track, containing the value between 0 and 100 relating the user rating of the track. This is a mandatory element.
nickjillings@1680 29
nickjillings@1680 30 \subsection{Comment}
nickjillings@1680 31 One of these elements per track, containing any commenting data from the interface text boxes. Has the two following child nodes.
nickjillings@1680 32 \begin{itemize}
nickjillings@1680 33 \item \texttt{Question} - Returns the text next to the comment box
nickjillings@1680 34 \item \texttt{Response} - Returns the text in the comment box
nickjillings@1680 35 \end{itemize}
nickjillings@1680 36
nickjillings@1680 37 \section{PreTest and PostTest}
nickjillings@1680 38 A 1st level node, contains the response to any pre-test questions given in the project specification. These are stored in the same Comment node as outlined in the above audioElement.
nickjillings@1680 39
nickjillings@1680 40 The PostTest is a 1st level node and contains the response to any post-test questions given in the project specification.
nickjillings@1680 41
nickjillings@1680 42 \section{Session Data}
nickjillings@1680 43 This will contain any captured session data. Currently not implemented but here for future referencing.
nickjillings@1680 44
nickjillings@1680 45 \section{Globals}
nickjillings@1680 46 Contains any comment boxes which were specified in the APE project specification with the comment ID, comment text and the comment results.
nickjillings@1680 47
nickjillings@1680 48 \end{document}