diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-04-03 06:46:19 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-04-03 06:50:53 +0200 |
commit | 657198e01d44c20610ea7b007dfeb7608a5996c6 (patch) | |
tree | a1f8e0958ffa2e0e8b4383ec00e2ee45da7fd8d8 /doc/ons2019/index.html | |
parent | 838fc2ffe26f06cb11455145b7e73c452e85c15d (diff) |
Publish the presentation for ONS 2019
It highlights the reuse of OPNFV frameworks from infrastructure
verification to e2e network service testing [1].
[1] http://testresults.opnfv.org/functest/ons2019/
Change-Id: Icc3d99329f01b68a2bf8639708abbf9415036414
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'doc/ons2019/index.html')
-rw-r--r-- | doc/ons2019/index.html | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/doc/ons2019/index.html b/doc/ons2019/index.html new file mode 100644 index 00000000..3931b7f4 --- /dev/null +++ b/doc/ons2019/index.html @@ -0,0 +1,52 @@ +<html> +<head> +<title>From Infra to E2E testing</title> +<meta name="author" content="Cédric Ollivier"> +<meta name="viewport" + content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> +<link rel="stylesheet" href="../reveal.js/css/reveal.css"> +<link rel="stylesheet" href="../reveal.js/css/theme/white.css"> +<link rel="stylesheet" href="../reveal.js/lib/css/zenburn.css"> +<script> +var link = document.createElement( 'link' ); +link.rel = 'stylesheet'; +link.type = 'text/css'; +link.href = window.location.search.match( /print-pdf/gi ) ? '../reveal.js/css/print/pdf.css' : '../reveal.js/css/print/paper.css'; +document.getElementsByTagName( 'head' )[0].appendChild( link ); +</script> +</head> +<body> + <div class="reveal"> + <div class="slides"> + <section data-markdown="ons2019.md" data-separator="^\n\n\n" + data-separator-vertical="^\n\n" data-separator-notes="^Note:"></section> + </div> + </div> + <script src="../reveal.js/lib/js/head.min.js"></script> + <script src="../reveal.js/js/reveal.js"></script> + <script> + Reveal.initialize({ + dependencies : [ { + src : '../reveal.js/plugin/markdown/marked.js', + condition : function() { + return !!document.querySelector('[data-markdown]'); + } + }, { + src : '../reveal.js/plugin/markdown/markdown.js', + condition : function() { + return !!document.querySelector('[data-markdown]'); + } + }, { + src: '../reveal.js/plugin/highlight/highlight.js', + async: true, + callback: function() { + hljs.initHighlightingOnLoad(); + } + }, { + src: '../reveal.js/plugin/notes/notes.js', + async: true + } ] + }); + </script> +</body> +</html> |