-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #231 from lbl-srg/issue214_cxf
Trranslate CDL to CXF
- Loading branch information
Showing
173 changed files
with
39,412 additions
and
25,357 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,6 @@ modelica-json.log | |
/models | ||
/outputs | ||
/objects | ||
/cxf | ||
.nyc_output | ||
.DS_Store |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> | ||
<title>JSON Schema Viewer</title> | ||
|
||
<!-- Bootstrap --> | ||
<link href="https://fonts.googleapis.com/css?family=Open+Sans|PT+Sans" rel="stylesheet"> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="css/jsv.css"> | ||
<link rel="stylesheet" href="css/app.css"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/nprogress/0.2.0/nprogress.min.css"> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/nprogress/0.2.0/nprogress.min.js"></script> | ||
|
||
</head> | ||
<body> | ||
|
||
<!-- Nav/Toolbar --> | ||
<div class="btn-group" id="app-toolbar"> | ||
<button id="visualizeButton" type="button" class="btn btn-default"><span class="glyphicon glyphicon-eye-open"> </span> Visualize</button> | ||
<button id="sourceButton" type="button" class="btn btn-default"><span class="glyphicon glyphicon-align-left"> </span> Source</button> | ||
</div> | ||
|
||
<!-- JSV --> | ||
<div id="main-body"></div> | ||
|
||
<!-- Editor --> | ||
<div id="editor"> | ||
<pre id="json"></pre> | ||
</div> | ||
|
||
<div id="legend-container"> | ||
<div id="legend"> | ||
<h3 class="ui-mini">Legend</h3> | ||
<hr /> | ||
<div id="legend-items"> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
<script> | ||
NProgress.start(); | ||
</script> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script> | ||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.2.5/ace.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.2.5/mode-json.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.2.5/theme-chrome.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.15.0/lodash.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/tv4/1.2.7/tv4.min.js"></script> | ||
<script src="js/jsv.js"></script> | ||
<script src="js/ref-parser.min.js"></script> | ||
<script src="js/app.js"></script> | ||
<script type="text/javascript"> | ||
$.getJSON( "./schema-cxf.json", function( data ) { | ||
console.log(data); | ||
document.getElementById("json").innerHTML = JSON.stringify(data, null, 4) | ||
}); | ||
</script> | ||
<script> | ||
NProgress.done(); | ||
</script> | ||
</body> | ||
</html> | ||
|
Oops, something went wrong.