blob: 0219814395d62b39c0f08f84f5628d500f9fa5ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
<!DOCTYPE html><html><head><link rel="icon" href="./oclip.png">
<meta charset="utf-8"><title>OCLIP...industry first open platform for cli</title><style></style>
<script>
function redirectToConsole(){
window.location.href="http://"+ window.location.hostname + ":30261";
}
</script>
<style>
body {
margin: 0 1% 0;
background-color: black
}
.readme {
display: inline-block;
float: left;
margin: 3% 3% 0;
}
* {box-sizing:border-box}
.slideshow-container {
display: inline-block;
float: right;
max-width: 700px;
position: relative;
margin: 6% 3% 0;
}
.mySlides {
display: none;
}
</style>
</head>
<body onload="showSlides()" style="background-color: white;color: black">
<div class="readme">
<h2>Open Command-Line Interface Platform (OCLIP)</h2>
<p>Industry first open platform to orchestrate CLI by using an declarative model <a href="http://onap.readthedocs.io/en/latest/submodules/cli.git/docs/open_cli_schema_version_1_0.html#open-cli-schema-version-1-0" style="color: blue;">Open Command Specification (OCS)</a>.
<p>And for Cloud and Telco Operators, it provides Linux shell and Web Command Console to use those CLI.
<h3 >Web Command Console (WCC)</h3>
<p>Helps operator to access the command console over HTTP.
<a onclick="redirectToConsole();" style="color: blue;cursor: pointer">Click here !</a>
<h3>Linux Shell</h3>
<p>Helps operator to run CLI locally using Linux command shell.
<ol>
<li>To download, <a href="./oclip.zip">Click here !</a></li>
<li>Un-zip into folder /opt/oclip</li>
<li>Run /opt/oclip/install.sh</li>
</ol>
<p>For more details, either run <strong>oclip</strong> from Linux console or refer /opt/oclip/docs/README.md
<br>
<br>
<hr>
<a href="http://onap.readthedocs.io/en/latest/submodules/cli.git/docs/index.html" style="color: blue;">
<sub style="color: blue;"><strong> Manuals !!</strong></sub></a>
</div>
</body></html>
|