Multiple revisions 400508,400842-400843,400848

........
  r400508 | dlee | 2013-10-03 23:54:51 -0500 (Thu, 03 Oct 2013) | 1 line
  
  Corrected response class for stopPlayback
........
  r400842 | dlee | 2013-10-10 14:23:24 -0500 (Thu, 10 Oct 2013) | 1 line
  
  Correct some ARI wiki rendering errors
........
  r400843 | dlee | 2013-10-10 14:26:19 -0500 (Thu, 10 Oct 2013) | 1 line
  
  Updated /play resource docs. The playback of http: resources isn't implemented... yet
........
  r400848 | dlee | 2013-10-11 11:18:46 -0500 (Fri, 11 Oct 2013) | 5 lines
  
  Fix a stupid copy/paste error in ARI docs.
  
  Patches:
      ari-doc-patch.txt uploaded by jbigelow (license 5091)
........

Merged revisions 400508,400842-400843,400848 from http://svn.asterisk.org/svn/asterisk/branches/12


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@400852 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
David M. Lee
2013-10-11 16:36:00 +00:00
parent 07e2b1d028
commit 9234804a3b
10 changed files with 19 additions and 16 deletions

View File

@@ -179,7 +179,7 @@ struct ast_play_on_bridge_args {
/*! /*!
* \brief Start playback of media on a bridge. * \brief Start playback of media on a bridge.
* *
* The media URI may be any of a number of URI's. You may use http: and https: URI's, as well as sound: and recording: URI's. This operation creates a playback resource that can be used to control the playback of media (pause, rewind, fast forward, etc.) * The media URI may be any of a number of URI's. Currently sound: and recording: URI's are supported. This operation creates a playback resource that can be used to control the playback of media (pause, rewind, fast forward, etc.)
* *
* \param headers HTTP headers * \param headers HTTP headers
* \param args Swagger parameters * \param args Swagger parameters

View File

@@ -260,7 +260,7 @@ struct ast_play_on_channel_args {
/*! /*!
* \brief Start playback of media. * \brief Start playback of media.
* *
* The media URI may be any of a number of URI's. You may use http: and https: URI's, as well as sound: and recording: URI's. This operation creates a playback resource that can be used to control the playback of media (pause, rewind, fast forward, etc.) * The media URI may be any of a number of URI's. Currently sound: and recording: URI's are supported. This operation creates a playback resource that can be used to control the playback of media (pause, rewind, fast forward, etc.)
* *
* \param headers HTTP headers * \param headers HTTP headers
* \param args Swagger parameters * \param args Swagger parameters

View File

@@ -73,7 +73,7 @@ struct ast_control_playback_args {
const char *operation; const char *operation;
}; };
/*! /*!
* \brief Get a playback's details. * \brief Control a playback.
* *
* \param headers HTTP headers * \param headers HTTP headers
* \param args Swagger parameters * \param args Swagger parameters

View File

@@ -145,7 +145,7 @@ static void ast_ari_stop_playback_cb(
break; break;
default: default:
if (200 <= code && code <= 299) { if (200 <= code && code <= 299) {
is_valid = ast_ari_validate_playback( is_valid = ast_ari_validate_void(
response->message); response->message);
} else { } else {
ast_log(LOG_ERROR, "Invalid error response %d for /playback/{playbackId}\n", code); ast_log(LOG_ERROR, "Invalid error response %d for /playback/{playbackId}\n", code);

View File

@@ -13,26 +13,26 @@ h1. {{name_title}}
{anchor:{{nickname}}} {anchor:{{nickname}}}
h2. {{http_method}} {{wiki_path}} h2. {{http_method}} {{wiki_path}}
{{{summary}}}{{#wiki_notes}} {{{wiki_notes}}}{{/wiki_notes}} {{{wiki_summary}}}{{#wiki_notes}} {{{wiki_notes}}}{{/wiki_notes}}
{{#has_path_parameters}} {{#has_path_parameters}}
h3. Path parameters h3. Path parameters
{{#path_parameters}} {{#path_parameters}}
* {{name}}: {{data_type}}{{#default_value}} = {{default_value}}{{/default_value}} - {{description}} * {{name}}: {{data_type}}{{#default_value}} = {{default_value}}{{/default_value}} - {{{wiki_description}}}
{{/path_parameters}} {{/path_parameters}}
{{/has_path_parameters}} {{/has_path_parameters}}
{{#has_query_parameters}} {{#has_query_parameters}}
h3. Query parameters h3. Query parameters
{{#query_parameters}} {{#query_parameters}}
* {{name}}: {{data_type}}{{#default_value}} = {{default_value}}{{/default_value}} -{{#required}} *(required)*{{/required}} {{description}} * {{name}}: {{data_type}}{{#default_value}} = {{default_value}}{{/default_value}} -{{#required}} *(required)*{{/required}} {{{wiki_description}}}
{{/query_parameters}} {{/query_parameters}}
{{/has_query_parameters}} {{/has_query_parameters}}
{{#has_header_parameters}} {{#has_header_parameters}}
h3. Header parameters h3. Header parameters
{{#header_parameters}} {{#header_parameters}}
* {{name}}: {{data_type}}{{#default_value}} = {{default_value}}{{/default_value}} -{{#required}} *(required)*{{/required}} {{description}} * {{name}}: {{data_type}}{{#default_value}} = {{default_value}}{{/default_value}} -{{#required}} *(required)*{{/required}} {{{wiki_description}}}
{{/header_parameters}} {{/header_parameters}}
{{/has_header_parameters}} {{/has_header_parameters}}
{{#has_error_responses}} {{#has_error_responses}}

View File

@@ -187,6 +187,7 @@ class AsteriskProcessor(SwaggerPostProcessor):
operation.c_http_method = 'AST_HTTP_' + operation.http_method operation.c_http_method = 'AST_HTTP_' + operation.http_method
if not operation.summary.endswith("."): if not operation.summary.endswith("."):
raise SwaggerError("Summary should end with .", context) raise SwaggerError("Summary should end with .", context)
operation.wiki_summary = wikify(operation.summary or "")
operation.wiki_notes = wikify(operation.notes or "") operation.wiki_notes = wikify(operation.notes or "")
def process_parameter(self, parameter, context): def process_parameter(self, parameter, context):
@@ -202,10 +203,12 @@ class AsteriskProcessor(SwaggerPostProcessor):
parameter.c_space = '' parameter.c_space = ''
else: else:
parameter.c_space = ' ' parameter.c_space = ' '
parameter.wiki_description = wikify(parameter.description)
def process_model(self, model, context): def process_model(self, model, context):
model.description_dox = model.description.replace('\n', '\n * ') model.description_dox = model.description.replace('\n', '\n * ')
model.description_dox = re.sub(' *\n', '\n', model.description_dox) model.description_dox = re.sub(' *\n', '\n', model.description_dox)
model.wiki_description = wikify(model.description)
model.c_id = snakify(model.id) model.c_id = snakify(model.id)
return model return model

View File

@@ -6,15 +6,15 @@
h1. {{id}} h1. {{id}}
{{#extends}}Base type: [{{extends}}|#{{extends}}]{{/extends}} {{#extends}}Base type: [{{extends}}|#{{extends}}]{{/extends}}
{{#has_subtypes}}Subtypes:{{#subtypes}} [{{id}}|#{{id}}]{{/subtypes}}{{/has_subtypes}} {{#has_subtypes}}Subtypes:{{#subtypes}} [{{id}}|#{{id}}]{{/subtypes}}{{/has_subtypes}}
{{#description}} {{#wiki_description}}
{{{description}}} {{{wiki_description}}}
{{/description}} {{/wiki_description}}
{code:language=javascript|collapse=true} {code:language=javascript|collapse=true}
{{{model_json}}} {{{model_json}}}
{code} {code}
{{#properties}} {{#properties}}
* {{name}}: {{#type}}{{#is_primitive}}{{wiki_name}}{{/is_primitive}}{{^is_primitive}}[{{wiki_name}}|#{{singular_name}}]{{/is_primitive}}{{/type}}{{^required}} _(optional)_{{/required}}{{#description}} - {{{description}}}{{/description}} * {{name}}: {{#type}}{{#is_primitive}}{{wiki_name}}{{/is_primitive}}{{^is_primitive}}[{{wiki_name}}|#{{singular_name}}]{{/is_primitive}}{{/type}}{{^required}} _(optional)_{{/required}}{{#wiki_description}} - {{{wiki_description}}}{{/wiki_description}}
{{/properties}} {{/properties}}
{{/models}} {{/models}}

View File

@@ -278,7 +278,7 @@
{ {
"httpMethod": "POST", "httpMethod": "POST",
"summary": "Start playback of media on a bridge.", "summary": "Start playback of media on a bridge.",
"notes": "The media URI may be any of a number of URI's. You may use http: and https: URI's, as well as sound: and recording: URI's. This operation creates a playback resource that can be used to control the playback of media (pause, rewind, fast forward, etc.)", "notes": "The media URI may be any of a number of URI's. Currently sound: and recording: URI's are supported. This operation creates a playback resource that can be used to control the playback of media (pause, rewind, fast forward, etc.)",
"nickname": "playOnBridge", "nickname": "playOnBridge",
"responseClass": "Playback", "responseClass": "Playback",
"parameters": [ "parameters": [

View File

@@ -544,7 +544,7 @@
{ {
"httpMethod": "POST", "httpMethod": "POST",
"summary": "Start playback of media.", "summary": "Start playback of media.",
"notes": "The media URI may be any of a number of URI's. You may use http: and https: URI's, as well as sound: and recording: URI's. This operation creates a playback resource that can be used to control the playback of media (pause, rewind, fast forward, etc.)", "notes": "The media URI may be any of a number of URI's. Currently sound: and recording: URI's are supported. This operation creates a playback resource that can be used to control the playback of media (pause, rewind, fast forward, etc.)",
"nickname": "playOnChannel", "nickname": "playOnChannel",
"responseClass": "Playback", "responseClass": "Playback",
"parameters": [ "parameters": [

View File

@@ -31,7 +31,7 @@
"httpMethod": "DELETE", "httpMethod": "DELETE",
"summary": "Stop a playback.", "summary": "Stop a playback.",
"nickname": "stopPlayback", "nickname": "stopPlayback",
"responseClass": "Playback", "responseClass": "void",
"parameters": [ "parameters": [
{ {
"name": "playbackId", "name": "playbackId",
@@ -51,7 +51,7 @@
"operations": [ "operations": [
{ {
"httpMethod": "POST", "httpMethod": "POST",
"summary": "Get a playback's details.", "summary": "Control a playback.",
"nickname": "controlPlayback", "nickname": "controlPlayback",
"responseClass": "void", "responseClass": "void",
"parameters": [ "parameters": [