1
0
Fork 0
This commit is contained in:
Frank Celler 2012-02-08 10:43:42 +01:00
parent a161d9ebf7
commit 5cccbe44ba
3 changed files with 20 additions and 5 deletions

View File

@ -273,6 +273,7 @@ BUILT_SOURCES += \
DOXYGEN = \ DOXYGEN = \
Doxygen/js/bootstrap/modules.c \ Doxygen/js/bootstrap/modules.c \
Doxygen/js/bootstrap/print.c \
Doxygen/js/modules/graph.c \ Doxygen/js/modules/graph.c \
Doxygen/js/modules/jsunity.c \ Doxygen/js/modules/jsunity.c \
Doxygen/js/server/modules.c \ Doxygen/js/server/modules.c \

View File

@ -89,8 +89,10 @@
/// <ol> /// <ol>
/// <li>@ref DefineActionDefineAction "defineAction"</li> /// <li>@ref DefineActionDefineAction "defineAction"</li>
/// <li>@ref DefineActionDefineSystemAction "defineSystemAction"</li> /// <li>@ref DefineActionDefineSystemAction "defineSystemAction"</li>
/// <li>@ref JSF_actionResult "actionResult"</li> /// <li>@ref DefineActionActionResult "actionResult"</li>
/// <li>@ref JSF_actionError "actionError"</li> /// <li>@ref DefineActionActionError "actionError"</li>
/// <li>@ref DefineActionQueryResult "queryResult"</li>
/// <li>@ref DefineActionQueryReferences "queryReferences"</li>
/// </ol> /// </ol>
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
@ -112,11 +114,17 @@
/// @anchor DefineActionDefineSystemAction /// @anchor DefineActionDefineSystemAction
/// @copydetails JS_DefineSystemAction /// @copydetails JS_DefineSystemAction
/// ///
/// @anchor JSF_actionResult /// @anchor DefineActionActionResult
/// @copydetails JSF_actionResult /// @copydetails JSF_actionResult
/// ///
/// @anchor JSF_actionError /// @anchor DefineActionActionError
/// @copydetails JSF_actionError /// @copydetails JSF_actionError
///
/// @anchor DefineActionQueryResult
/// @copydetails JSF_queryResult
///
/// @anchor DefineActionQueryReferences
/// @copydetails JSF_queryReferences
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------

View File

@ -94,6 +94,8 @@ function queryResult (req, res, query) {
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
/// @brief returns a result of a query as references /// @brief returns a result of a query as references
/// ///
/// @FUN{queryReferences(@FA{req}, @FA{res}, @FA{query})}
///
/// The methods works like @FN{queryResult} but instead of the documents only /// The methods works like @FN{queryResult} but instead of the documents only
/// document identifiers are returned. /// document identifiers are returned.
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
@ -145,6 +147,8 @@ function queryReferences (req, res, query) {
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
/// @brief returns a result /// @brief returns a result
/// ///
/// @FUN{actionResult(@FA{req}, @FA{res}, @FA{code}, @FA{result})}
///
/// The functions returns a result object. @FA{code} is the status code /// The functions returns a result object. @FA{code} is the status code
/// to return. /// to return.
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
@ -163,9 +167,11 @@ function actionResult (req, res, code, result) {
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
/// @brief returns an error /// @brief returns an error
/// ///
/// @FUN{actionError(@FA{req}, @FA{res}, @FA{errorMessage})}
///
/// The functions returns an error message. The status code is 500 and the /// The functions returns an error message. The status code is 500 and the
/// returned object is an array with an attribute @LIT{error} containing /// returned object is an array with an attribute @LIT{error} containing
/// the error message. /// the error message @FA{errorMessage}.
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
function actionError (req, res, err) { function actionError (req, res, err) {