1
0
Fork 0

Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel

This commit is contained in:
Frank Celler 2013-03-27 15:34:21 +01:00
commit fe8ab5fa8c
2 changed files with 8 additions and 8 deletions

View File

@ -92,22 +92,22 @@ If you define a route like described above, you have the option to match parts o
Furthermore you can describe your API by chaining the following methods onto your path definition. With the provided information, Foxx will generate a nice documentation for you. Some of the methods additionally will check certain properties of the request. Furthermore you can describe your API by chaining the following methods onto your path definition. With the provided information, Foxx will generate a nice documentation for you. Some of the methods additionally will check certain properties of the request.
#### Describing a pathParam #### Describing a pathParam
/// @fn JSF_foxx_RequestContext_pathParam @copydetails JSF_foxx_RequestContext_pathParam
#### Describing a queryParam #### Describing a queryParam
/// @fn JSF_foxx_RequestContext_queryParam @copydetails JSF_foxx_RequestContext_queryParam
### Documenting the nickname of a route ### Documenting the nickname of a route
/// @fn JSF_foxx_RequestContext_nickname @copydetails JSF_foxx_RequestContext_nickname
### Documenting the summary of a route ### Documenting the summary of a route
/// @fn JSF_foxx_RequestContext_summary @copydetails JSF_foxx_RequestContext_summary
### Documenting the notes of a route ### Documenting the notes of a route
/// @fn JSF_foxx_RequestContext_notes @copydetails JSF_foxx_RequestContext_notes
### Documenting the error response of a route ### Documenting the error response of a route
/// @fn JSF_foxx_RequestContext_errorResponse @copydetails JSF_foxx_RequestContext_errorResponse
### Before and After Hooks ### Before and After Hooks

View File

@ -431,7 +431,7 @@ _.extend(RequestContext.prototype, {
/// ///
/// You can also provide a description of this parameter. /// You can also provide a description of this parameter.
/// ///
/// @EXAMPLE: /// @EXAMPLES
/// app.get("/foxx/:id", function { /// app.get("/foxx/:id", function {
/// // Do something /// // Do something
/// }).pathParam("id", { /// }).pathParam("id", {
@ -472,7 +472,7 @@ _.extend(RequestContext.prototype, {
/// You can also provide a description of this parameter, if it is required and /// You can also provide a description of this parameter, if it is required and
/// if you can provide the parameter multiple times. /// if you can provide the parameter multiple times.
/// ///
/// @EXAMPLE: /// @EXAMPLES
/// app.get("/foxx", function { /// app.get("/foxx", function {
/// // Do something /// // Do something
/// }).queryParam("id", { /// }).queryParam("id", {