mirror of https://gitee.com/bigwinds/arangodb
87 lines
3.1 KiB
HTML
87 lines
3.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Swagger UI</title>
|
|
<link href='css/typography.css' media='screen' rel='stylesheet' type='text/css'/>
|
|
<link href='css/reset.css' media='screen' rel='stylesheet' type='text/css'/>
|
|
<link href='css/screen.css' media='screen' rel='stylesheet' type='text/css'/>
|
|
<link href='css/reset.css' media='print' rel='stylesheet' type='text/css'/>
|
|
<link href='css/screen.css' media='print' rel='stylesheet' type='text/css'/>
|
|
<script type="text/javascript" src="lib/shred.bundle.js"></script>
|
|
<script src='lib/jquery-1.8.0.min.js' type='text/javascript'></script>
|
|
<script src='lib/jquery.slideto.min.js' type='text/javascript'></script>
|
|
<script src='lib/jquery.wiggle.min.js' type='text/javascript'></script>
|
|
<script src='lib/jquery.ba-bbq.min.js' type='text/javascript'></script>
|
|
<script src='lib/handlebars-2.0.0.js' type='text/javascript'></script>
|
|
<script src='lib/underscore-min.js' type='text/javascript'></script>
|
|
<script src='lib/backbone-min.js' type='text/javascript'></script>
|
|
<script src='lib/swagger-client.js' type='text/javascript'></script>
|
|
<script src='swagger-ui.js' type='text/javascript'></script>
|
|
<script src='lib/highlight.7.3.pack.js' type='text/javascript'></script>
|
|
<script src='lib/marked.js' type='text/javascript'></script>
|
|
|
|
<!-- enabling this will enable oauth2 implicit scope support -->
|
|
<script src='lib/swagger-oauth.js' type='text/javascript'></script>
|
|
<script type="text/javascript">
|
|
$(function () {
|
|
var url = window.location.href.replace("index.html", "swagger.json");
|
|
window.swaggerUi = new SwaggerUi({
|
|
url: url,
|
|
validatorUrl: null,
|
|
dom_id: "swagger-ui-container",
|
|
supportedSubmitMethods: ['get', 'post', 'put', 'delete', 'patch'],
|
|
onComplete: function(swaggerApi, swaggerUi){
|
|
$('pre code').each(function(i, e) {
|
|
hljs.highlightBlock(e)
|
|
});
|
|
},
|
|
onFailure: function(data) {
|
|
log("Unable to Load SwaggerUI");
|
|
},
|
|
docExpansion: "list",
|
|
sorter : "alpha"
|
|
});
|
|
|
|
function addApiKeyAuthorization() {
|
|
var key = $('#input_apiKey')[0].value;
|
|
log("key: " + key);
|
|
if(key && key.trim() != "") {
|
|
log("added key " + key);
|
|
window.authorizations.add("api_key", new ApiKeyAuthorization("api_key", key, "query"));
|
|
}
|
|
}
|
|
|
|
$('#input_apiKey').change(function() {
|
|
addApiKeyAuthorization();
|
|
});
|
|
|
|
window.swaggerUi.load();
|
|
});
|
|
</script>
|
|
<style>
|
|
.swagger-section {
|
|
background-color: white;
|
|
}
|
|
.swagger-section #api_info {
|
|
display: none;
|
|
}
|
|
.swagger-section #swagger-ui-container {
|
|
font-family: 'Open Sans', sans-serif !important;
|
|
max-width: initial;
|
|
margin: 1em 2em;
|
|
}
|
|
.swagger-section #message-bar {
|
|
position: absolute;
|
|
min-height: 0;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body class="swagger-section">
|
|
<div id="message-bar" class="swagger-ui-wrap"> </div>
|
|
<div id="swagger-ui-container" class="swagger-ui-wrap"></div>
|
|
</body>
|
|
</html> |