Skip to content

Commit

Permalink
Adding and testing docson
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Meems committed Feb 18, 2019
1 parent 5beb0a1 commit 401b5a6
Show file tree
Hide file tree
Showing 26 changed files with 68,016 additions and 0 deletions.
570 changes: 570 additions & 0 deletions docs/package-lock.json

Large diffs are not rendered by default.

480 changes: 480 additions & 0 deletions docs/source/_static/docson/css/docson.css

Large diffs are not rendered by default.

606 changes: 606 additions & 0 deletions docs/source/_static/docson/docson.js

Large diffs are not rendered by default.

50 changes: 50 additions & 0 deletions docs/source/_static/docson/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<!DOCTYPE html>
<!--
~ Copyright 2013 Laurent Bovet <laurent.bovet@windmaster.ch>
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/docson.css">
<style>
body {
font-family: verdana, helvetica;
}

#form {
display: none;
}

#form input[type=text] {
border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
}

.embedded {
margin: 0px;
padding: 0px;
}
</style>
</head>
<body>
<div id="form">
Please enter a schema URL:
<input type="text" id="url" size="60">
</div>
<div id="doc"></div>
<script src="./js/webpage.js"></script>
</body>
</html>

0 comments on commit 401b5a6

Please sign in to comment.