summaryrefslogtreecommitdiffstats
path: root/index.html
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2013-11-25 06:49:47 +0000
committerEndi S. Dewata <edewata@redhat.com>2013-11-25 06:49:47 +0000
commitbf774eaa59db068accb5ef4629aad4d30cb65871 (patch)
tree8a3035c1d0e4da842c5c28de4b38e418b2d61105 /index.html
parent28545042084a2f4212b2d97c267a267aae47d55f (diff)
downloadcli-demo-bf774eaa59db068accb5ef4629aad4d30cb65871.tar.gz
cli-demo-bf774eaa59db068accb5ef4629aad4d30cb65871.tar.xz
cli-demo-bf774eaa59db068accb5ef4629aad4d30cb65871.zip
Renamed to CLI Demo.
Diffstat (limited to 'index.html')
-rw-r--r--index.html26
1 files changed, 13 insertions, 13 deletions
diff --git a/index.html b/index.html
index d11df07..8be8e99 100644
--- a/index.html
+++ b/index.html
@@ -2,12 +2,12 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <title>Terminal Animation</title>
+ <title>CLI Demo</title>
<link href="https://google-code-prettify.googlecode.com/svn/trunk/styles/sunburst.css" rel="stylesheet" type="text/css" />
- <link href="css/terminal-animation.css" rel="stylesheet" type="text/css" />
+ <link href="css/cli-demo.css" rel="stylesheet" type="text/css" />
<script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script>
<script src="http://code.jquery.com/jquery.js"></script>
- <script src="js/terminal-animation.js"></script>
+ <script src="js/cli-demo.js"></script>
<script src="js/init.js"></script>
<style>
body {
@@ -16,7 +16,7 @@ body {
</style>
</head>
<body>
-<h1>Terminal Animation</h1>
+<h1>CLI Demo</h1>
<h2>Overview</h2>
@@ -37,17 +37,17 @@ dbus misc postfix rsyslog yum
$
</pre>
-Copy and paste the content of the terminal into a &lt;div class="terminal-animation"&gt; in an HTML page. Mark the parts that are manually typed with &lt;span class="terminal-animation-input"&gt;.
+Copy and paste the content of the terminal into a &lt;div class="cli-demo"&gt; in an HTML page. Mark the parts that are manually typed with &lt;span class="cli-demo-input"&gt;.
<pre class="prettyprint" style="width: 700px; margin: 1em 0px;">
&lt;html&gt;
&lt;head&gt; ... &lt;/head&gt;
&lt;body&gt;
-&lt;div class="terminal-animation"&gt;$ &lt;span class="terminal-animation-input"&gt;ls /usr/lib&lt;/span&gt;
+&lt;div class="cli-demo"&gt;$ &lt;span class="cli-demo-input"&gt;ls /usr/lib&lt;/span&gt;
anaconda-runtime games locale rpm sendmail.postfix
ConsoleKit gcc python2.6 sendmail yum-plugins
-$ &lt;span class="terminal-animation-input"&gt;ls /var/lib&lt;/span&gt;
+$ &lt;span class="cli-demo-input"&gt;ls /var/lib&lt;/span&gt;
alternatives dhclient nfs random-seed stateless
authconfig games plymouth rhsm udev
cs logrotate.status polkit-1 rpm up2date
@@ -63,12 +63,12 @@ Include the JS and CSS files in the header and execute the plugin:
<pre class="prettyprint" style="width: 700px; margin: 1em 0px;">
&lt;html&gt;
&lt;head&gt;
- &lt;link href="css/terminal-animation.css" rel="stylesheet" type="text/css"/&gt;
+ &lt;link href="css/cli-demo.css" rel="stylesheet" type="text/css"/&gt;
&lt;script src="http://code.jquery.com/jquery.js"&gt;&lt;/script&gt;
- &lt;script src="js/terminal-animation.js"&gt;&lt;/script&gt;
+ &lt;script src="js/cli-demo.js"&gt;&lt;/script&gt;
&lt;script&gt;
$(function() {
- $(".terminal-animation").terminal_animation();
+ $(".cli-demo").cli_demo();
});
&lt;/script&gt;
&lt;/head&gt;
@@ -80,10 +80,10 @@ $(function() {
Result:
-<div class="terminal-animation">$ <span class="terminal-animation-input">ls /usr/lib</span>
+<div class="cli-demo">$ <span class="cli-demo-input">ls /usr/lib</span>
anaconda-runtime games locale rpm sendmail.postfix
ConsoleKit gcc python2.6 sendmail yum-plugins
-$ <span class="terminal-animation-input">ls /var/lib</span>
+$ <span class="cli-demo-input">ls /var/lib</span>
alternatives dhclient nfs random-seed stateless
authconfig games plymouth rhsm udev
cs logrotate.status polkit-1 rpm up2date
@@ -99,7 +99,7 @@ $ </div>
<h2>Repository</h2>
<pre>
-git://fedorapeople.org/home/fedora/edewata/public_git/pki.git
+git://fedorapeople.org/home/fedora/edewata/public_git/cli-demo.git
</pre>
</body>