-
Notifications
You must be signed in to change notification settings - Fork 22
/
index.html
145 lines (145 loc) · 4.6 KB
/
index.html
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Verdant</title>
<link rel="shortcut icon" href="icon.ico" type="image/vnd.microsoft.icon" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Bungee+Hairline&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./tutorial/index.css" type="text/css" />
</head>
<body>
<div id="nav">
<span
><img
src="./tutorial/images/GitHub-Mark-64px.png"
class="githubIcon"
alt="GitHub Icon" /></span
><a href="https://github.com/mkery/Verdant"
><code>github.com/mkery/Verdant</code></a
>
</div>
<div id="header">
<h1>Verdant</h1>
<p>
A version control tool for
<a href="https://jupyterlab.readthedocs.io/en/stable/">JupyterLab</a>
that automatically records the history of your experimentation while you
work.🌱
</p>
<div id="install">
To install: <code>jupyter labextension install verdant-history</code> or
search <code>verdant-history</code> under the extension manager tab in
JupyterLab 🌱
</div>
</div>
<div id="page-nav">
<div class="page-nav-title selected">Overview</div>
<div class="page-nav-title">
<a href="tutorial/tutorial.html">Getting Started Tutorial</a>
</div>
</div>
<div id="content">
<div class="center-row">
<div class="center">
<img
class="verdant-screenshot"
src="./tutorial/images/Screenshots/out.gif"
/>
</div>
<p class="caption">
Get the history of any cell or output using the
<b>version inspector</b> 🌿.
</p>
</div>
<div class="row">
<div class="col">
<img
class="verdant-screenshot"
src="./tutorial/images/Screenshots/history-file.png"
/>
</div>
<div class="col description">
<p>
🌿 Verdant automatically records the history of cells and outputs as
you work, stored in a compact <code>.ipyhistory</code> file
alongside your notebook.
</p>
</div>
</div>
<div class="row">
<div class="col">
<img
class="verdant-screenshot"
src="./tutorial/images/Screenshots/activity-map-overview.png"
/>
</div>
<div class="col description">
<p>
🌿 In the <b>activity pane</b>, a stream of activity live updates to
reflect your changes by date and time.
</p>
</div>
</div>
<div class="center-row">
<div class="center">
<img
class="verdant-screenshot"
src="./tutorial/images/Screenshots/minimap-detail.png"
/>
</div>
<p class="caption">
The <b>minimap</b> shows a tick for every cell in your notebook. The
bold ticks indicate where a change happened.
</p>
</div>
<div class="row">
<div class="col">
<img
class="verdant-screenshot"
src="./tutorial/images/Screenshots/ghost-book.png"
/>
</div>
<div class="col description">
<p>
🌿 Click on any row in the <b>activity pane</b> to open up a full
view of your notebook version at that point in time in a
<b>ghost book</b>. A <b>ghost book</b>
is a readonly view of your notebook version with diff highlighting
to show what content was changed in that version.
</p>
<p>
You can also diff to compare your <b>ghost book</b> side-by-side
with your current working notebook.
</p>
</div>
</div>
<div class="row">
<div class="col">
<img
class="verdant-screenshot"
src="./tutorial/images/Screenshots/search.png"
/>
</div>
<div class="col description">
<p>
🌿 Search for anything from past code, output, and markdown history.
</p>
</div>
</div>
</div>
<footer>
<a href="https://github.com/mkery/Verdant">Verdant</a> is licensed under
the MIT License and is maintained by
<a href="https://marybethkery.com/">Mary Beth Kery</a> at Carnegie Mellon
University <3
</footer>
</body>
</html>