From bf774eaa59db068accb5ef4629aad4d30cb65871 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Mon, 25 Nov 2013 06:49:47 +0000 Subject: Renamed to CLI Demo. --- index.html | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'index.html') diff --git a/index.html b/index.html index d11df07..8be8e99 100644 --- a/index.html +++ b/index.html @@ -2,12 +2,12 @@ - Terminal Animation + CLI Demo - + - + -

Terminal Animation

+

CLI Demo

Overview

@@ -37,17 +37,17 @@ dbus misc postfix rsyslog yum $ -Copy and paste the content of the terminal into a <div class="terminal-animation"> in an HTML page. Mark the parts that are manually typed with <span class="terminal-animation-input">. +Copy and paste the content of the terminal into a <div class="cli-demo"> in an HTML page. Mark the parts that are manually typed with <span class="cli-demo-input">.
 <html>
 <head> ... </head>
 <body>
 
-<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
@@ -63,12 +63,12 @@ Include the JS and CSS files in the header and execute the plugin:
 
 <html>
 <head>
-    <link href="css/terminal-animation.css" rel="stylesheet" type="text/css"/>
+    <link href="css/cli-demo.css" rel="stylesheet" type="text/css"/>
     <script src="http://code.jquery.com/jquery.js"></script>
-    <script src="js/terminal-animation.js"></script>
+    <script src="js/cli-demo.js"></script>
     <script>
 $(function() {
-    $(".terminal-animation").terminal_animation();
+    $(".cli-demo").cli_demo();
 });
     </script>
 </head>
@@ -80,10 +80,10 @@ $(function() {
 
 Result:
 
-
$ ls /usr/lib +
$ ls /usr/lib anaconda-runtime games locale rpm sendmail.postfix ConsoleKit gcc python2.6 sendmail yum-plugins -$ ls /var/lib +$ ls /var/lib alternatives dhclient nfs random-seed stateless authconfig games plymouth rhsm udev cs logrotate.status polkit-1 rpm up2date @@ -99,7 +99,7 @@ $

Repository

-git://fedorapeople.org/home/fedora/edewata/public_git/pki.git
+git://fedorapeople.org/home/fedora/edewata/public_git/cli-demo.git
 
-- cgit