-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add nbdiff-web-export to export a diff inside a rendered HTML
Example of usage: nbdiff ./nbdime/webapp/testnotebooks/remote.ipynb ./nbdime/webapp/testnotebooks/base.ipynb --out diff_with_base.json --include-base nbdiff-web-export diff_with_base.json ./nbdime/webapp/static/nbdime.js > ./diff.html Open diff.html in your browser of choice
- Loading branch information
Showing
7 changed files
with
115 additions
and
4 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
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,58 @@ | ||
import sys | ||
import os | ||
|
||
from jinja2 import FileSystemLoader, Environment | ||
|
||
from ..args import ( | ||
ConfigBackedParser, | ||
add_generic_args) | ||
|
||
here = os.path.abspath(os.path.dirname(__file__)) | ||
static_path = os.path.join(here, 'static') | ||
template_path = os.path.join(here, 'templates') | ||
|
||
|
||
def build_arg_parser(): | ||
""" | ||
Creates an argument parser for the diff tool, that also lets the | ||
user specify a port and displays a help message. | ||
""" | ||
description = 'Difftool for Nbdime.' | ||
parser = ConfigBackedParser( | ||
description=description, | ||
add_help=True | ||
) | ||
add_generic_args(parser) | ||
parser.add_argument( | ||
"filename", help="Base with diff json.", | ||
nargs='?', | ||
) | ||
parser.add_argument( | ||
"nbdime_url", help="URL to nbdime.js", | ||
nargs='?', | ||
default="nbdime.js" | ||
) | ||
return parser | ||
|
||
|
||
def main_export(opts): | ||
env = Environment(loader=FileSystemLoader([template_path]), autoescape=False) | ||
|
||
with open(opts.filename, mode='r') as f: | ||
data = f.read() | ||
template = env.get_template("diffembedded.html") | ||
rendered = template.render( | ||
data=data, | ||
nbdime_url=opts.nbdime_url) | ||
print(rendered) | ||
|
||
|
||
def main(args=None): | ||
if args is None: | ||
args = sys.argv[1:] | ||
opts = build_arg_parser().parse_args(args) | ||
return main_export(opts) | ||
|
||
|
||
if __name__ == "__main__": | ||
sys.exit(main()) |
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,38 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<meta charset="utf-8"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
|
||
<title>nbdime - diff and merge your Jupyter notebooks</title> | ||
|
||
</head> | ||
|
||
|
||
<!-- TODO: make nbdime.init() setup the forms/input user interface? --> | ||
|
||
<body> | ||
|
||
<div id="nbdime-header" class="nbdime-Diff"> | ||
<h3>Notebook Diff</h3> | ||
<script id='diff-and-base' type="application/json">{{ data|tojson|safe }}</script> | ||
<div id="nbdime-header-buttonrow"> | ||
<input id="nbdime-hide-unchanged" type="checkbox"><label for="cbox1">Hide unchanged cells</label></input> | ||
<button id="nbdime-trust" style="display: none">Trust outputs</button> | ||
<button id="nbdime-close" type="checkbox" style="display: none">Close tool</button> | ||
<button id="nbdime-export" type="checkbox" style="display: none">Export diff</button> | ||
</div> | ||
<div id=nbdime-header-banner> | ||
<span id="nbdime-header-base">Base</span> | ||
<span id="nbdime-header-remote">Remote</span> | ||
</div> | ||
</div> <!-- ndime-header --> | ||
|
||
<div id="nbdime-root" class="nbdime-root"> | ||
</div> | ||
|
||
<script src="{{ nbdime_url }}"></script> | ||
<noscript>Nbdime relies on javascript for diff/merge views!</noscript> | ||
</body> | ||
</html> |
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