2016-01-11 14:45:24 +00:00
<div class="modal fade" id="download-modal" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span>×</span></button>
<h4 class="modal-title" id="myModalLabel">Download this recording</h4>
</div>
<div class="modal-body">
<p>
<% if page.can_replay_in_terminal? %>
2016-01-11 15:36:55 +00:00
You can download this recording in <a href="https://github.com/asciinema/asciinema/blob/master/doc/asciicast-v1.md">asciicast format</a>, as a .json file.
2016-01-11 14:45:24 +00:00
<% else %>
You can download this recording as a .json file.
<% end %>
</p>
2017-02-14 13:28:04 +00:00
<a href="<%= asciicast_url(format: :json, dl: true) %>" class="btn btn-primary" download="<%= page.asciicast_download_filename %>" rel="nofollow">Download</a>
2016-01-11 14:45:24 +00:00
<% if page.can_replay_in_terminal? %>
<h2>Replay in terminal</h2>
<p>
You can replay this recording in your terminal with <code>asciinema play</code> command:
</p>
<pre><code>asciinema play <%= page.asciicast_download_filename %></code></pre>
<p>
If you don't have asciinema cli installed then <a href="https://asciinema.org/docs/installation">see installation instructions</a>.
</p>
<hr>
<% end %>
<h2>Use with stand-alone player on your website</h2>
<p>
2016-01-11 15:19:08 +00:00
Download asciinema player from <a href="https://github.com/asciinema/asciinema-player/releases">player's releases page</a> (you only need <code>.js</code> and <code>.css</code> file), then use it like this:
2016-01-11 14:45:24 +00:00
</p>
<pre><code><html>
<head>
<link rel="stylesheet" type="text/css" href="/asciinema-player.css" />
</head>
<body>
2016-10-02 10:20:52 +00:00
<asciinema-player src="/<%= page.asciicast_download_filename %>" cols="<%= page.asciicast_width %>" rows="<%= page.asciicast_height %>"></asciinema-player>
...
<script src="/asciinema-player.js"></script>
2016-01-11 14:45:24 +00:00
</body>
</html></code></pre>
<p>See <a href="https://github.com/asciinema/asciinema-player">asciinema player README</a> for full usage instructions.</p>
</div>
</div>
</div>
</div>