aboutsummaryrefslogtreecommitdiffstats
path: root/3rd_party/static/swagger/endpoint.html
diff options
context:
space:
mode:
authorxudan <xudan16@huawei.com>2018-07-06 05:16:40 -0400
committerxudan <xudan16@huawei.com>2018-07-06 05:21:42 -0400
commitb3e40f026d655501bfa581452c447784604ecb05 (patch)
tree406f8bfc1abc1b33f98153d03abd34ef7b0e2fe9 /3rd_party/static/swagger/endpoint.html
parentb1b0ea32d1a296c7d055c5391261dcad6be48c63 (diff)
Move all web portal code to the new repo dovetail-webportal
This is only the first step to simply copy the file here. There still need some more work to make sure all work well. All the changes will be submitted with other patches to make it easily to review. JIRA: DOVETAIL-671 Change-Id: I64d32a9df562184166b6199e2719f298687d1a0a Signed-off-by: xudan <xudan16@huawei.com>
Diffstat (limited to '3rd_party/static/swagger/endpoint.html')
-rw-r--r--3rd_party/static/swagger/endpoint.html77
1 files changed, 77 insertions, 0 deletions
diff --git a/3rd_party/static/swagger/endpoint.html b/3rd_party/static/swagger/endpoint.html
new file mode 100644
index 0000000..4ae3bde
--- /dev/null
+++ b/3rd_party/static/swagger/endpoint.html
@@ -0,0 +1,77 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>Api Docs for {{path}}</title>
+ <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
+ <style>
+ body {margin-top: 60px;}
+ </style>
+ </head>
+ <body>
+ <nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
+ <div class="container">
+ <div class="navbar-header">
+ <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
+ <span class="sr-only">Toggle navigation</span>
+ <span class="icon-bar"></span>
+ <span class="icon-bar"></span>
+ <span class="icon-bar"></span>
+ </button>
+ </div>
+ <!-- Collect the nav links, forms, and other content for toggling -->
+ <div class="collapse navbar-collapse navbar-ex1-collapse">
+ <ul class="nav navbar-nav">
+ {% for operation in operations %}
+ <li><a href="#{{operation.method}}">{{operation.method}}</a></li>
+ {% endfor %}
+ </ul>
+ </div><!-- /.navbar-collapse -->
+ </div><!-- /.container -->
+ </nav>
+ <div class="container">
+ <div class="row">
+ <div class="col-lg-12">
+ <h1>{{path}}</h1>
+ <p class='lead'>{{description if description != None}}</p>
+ </div>
+ <div class="col-lg-12">
+ {% for operation in operations %}
+ <div class="panel panel-success" id='{{operation.method}}'>
+ <div class="panel-heading">
+ <h3 class="panel-title">{{operation.method}}</h3>
+ <p>{{operation.summary if operation.summary != None}}</p>
+ </div>
+ <div class="panel-body">
+ {% if operation.parameters %}
+ <h4>Parameters</h4>
+ <dl>
+ {% for parameter in operation.parameters %}
+ <dt>
+ {{parameter.name}}
+ {% if parameter.description %}
+ - {{parameter.description}}
+ {% endif %}
+ </dt>
+ <dd>Type: {{parameter.dataType}}</dd>
+ <dd>Allow Multiple: {{parameter.allowMultiple}}</dd>
+ <dd>Required: {{parameter.required}}</dd>
+ {% endfor %}
+ </dl>
+ {% endif %}
+ {% if operation.notes %}
+ <p><strong>Implementation notes</strong>: {{operation.notes}}</p>
+ {% endif %}
+ {% if operation.responseClass %}
+ <p><strong>Response Class</strong>: {{operation.responseClass}}</p>
+ {% endif %}
+ </div>
+ </div>
+ {% endfor %}
+ </div>
+ </div><!-- /.container -->
+ <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
+ <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
+ </body>
+</html>