Update copy & code to use the new name

openid
Marcin Kulik 11 years ago
parent 9dad3840fa
commit 3c4ac3666e

@ -1,12 +1,12 @@
# ascii.io [![Build Status](https://secure.travis-ci.org/sickill/ascii.io.png?branch=master)](http://travis-ci.org/sickill/ascii.io) # asciinema.org [![Build Status](https://secure.travis-ci.org/sickill/ascii.io.png?branch=master)](http://travis-ci.org/sickill/ascii.io)
ASCII.IO is the simplest way to record your terminal and share the recordings Asciinema is the simplest way to record your terminal and share the recordings
with your fellow geeks. Simply record and upload your terminal session with with your fellow geeks. Simply record and upload your terminal session with
single command, and ASCII.IO will play it back in your browser. single command, and Asciinema will play it back in your browser.
This is the source code of ascii.io website and JS player. If you're looking This is the source code of asciinema.org (formerly ascii.io) website and JS
for ascii.io terminal recorder go here: player. If you're looking for asciinema terminal recorder go here:
[sickill/ascii.io-cli](https://github.com/sickill/ascii.io-cli) [sickill/asciinema](https://github.com/sickill/asciinema)
## Setup instructions ## Setup instructions
@ -15,7 +15,7 @@ it on your local machine or setup your own instance for your organization.
### 1. Install dependencies ### 1. Install dependencies
ascii.io site is a Ruby on Rails application. You need to have following asciinema.org site is a Ruby on Rails application. You need to have following
dependencies installed: dependencies installed:
* Ruby 1.9.3+ (Ruby 2.0.0-p247 is recommended) * Ruby 1.9.3+ (Ruby 2.0.0-p247 is recommended)
@ -35,8 +35,8 @@ dependencies installed:
Clone git repository: Clone git repository:
$ git clone git://github.com/sickill/ascii.io.git $ git clone git://github.com/sickill/asciinema.org.git
$ cd ascii.io $ cd asciinema.org
### 3. Prepare database config file ### 3. Prepare database config file

@ -1,6 +1,6 @@
module ApplicationHelper module ApplicationHelper
def page_title def page_title
title = "ascii.io" title = "asciinema"
if @title if @title
title = "#{@title} - #{title}" title = "#{@title} - #{title}"

@ -1,5 +1,5 @@
class UserMailer < ActionMailer::Base class UserMailer < ActionMailer::Base
default :from => "ascii.io <hello@ascii.io>" default :from => "asciinema <hello@asciinema.org>"
helper :application helper :application
def new_comment_email(user, comment) def new_comment_email(user, comment)

@ -1,4 +1,4 @@
// ascii.io - embeddable player // asciinema.org - embeddable player
(function() { (function() {
function receiveSize(e) { function receiveSize(e) {

@ -2,12 +2,12 @@
# About # About
ASCII.IO is the simplest way to record your terminal and share the recordings Asciinema is the simplest way to record your terminal and share the recordings
with your fellow geeks. with your fellow geeks.
It's a free service built with open-source technologies (check the It's a free service built with open-source technologies (check the
[source](https://github.com/sickill/ascii.io) [source](https://github.com/sickill/asciinema.org)
[code](https://github.com/sickill/ascii.io-cli)) aiming to be a "go to" place [code](https://github.com/sickill/asciinema)) aiming to be a "go to" place
for everyone who want to share his terminal Voodoo. for everyone who want to share his terminal Voodoo.
## Parts ## Parts
@ -18,11 +18,11 @@ The service consists of two parts:
* This site with web based player * This site with web based player
Terminal recorder is a [Python Terminal recorder is a [Python
script](https://github.com/sickill/ascii.io-cli/blob/master/bin/asciiio) script](https://github.com/sickill/asciinema/blob/master/bin/asciinema)
that acts as a middleman that acts as a middleman
([pseudo-terminal](http://en.wikipedia.org/wiki/Pseudo_terminal) specifically) ([pseudo-terminal](http://en.wikipedia.org/wiki/Pseudo_terminal) specifically)
between your shell and your terminal, recording all terminal activity and between your shell and your terminal, recording all terminal activity and
uploading it to [ascii.io](http://ascii.io) site. uploading it to [asciinema.org](http://asciinema.org) site.
Web based player is a JavaScript implementation of Web based player is a JavaScript implementation of
[VT102 ANSI terminal](http://en.wikipedia.org/wiki/VT102), supporting most ANSI [VT102 ANSI terminal](http://en.wikipedia.org/wiki/VT102), supporting most ANSI
@ -31,17 +31,17 @@ control codes and sequences, all text attributes and
## Authors ## Authors
ASCII.IO was created by <a href="/~sickill">Marcin Kulik</a> with the help of Asciinema was created by <a href="/~sickill">Marcin Kulik</a> with the help of
[Michał Wróbel](https://github.com/sparrovv). [Michał Wróbel](https://github.com/sparrovv).
## Getting in touch ## Getting in touch
[twitter.com/asciiio](https://twitter.com/asciiio) | [twitter.com/asciinema](https://twitter.com/asciinema) |
[twitter.com/sickill](https://twitter.com/asciiio) [twitter.com/sickill](https://twitter.com/sickill)
## Contributing ## Contributing
[Source code](https://github.com/sickill/ascii.io) | [Source code](https://github.com/sickill/asciinema.org) |
[Issues](https://github.com/sickill/ascii.io/issues) [Issues](https://github.com/sickill/asciinema.org/issues)
<% end -%> <% end -%>

@ -4,8 +4,8 @@
See the list of available options with: See the list of available options with:
$ asciiio -h $ asciinema -h
usage: asciiio [-h] [-i] [-y] [-c <command>] [-t <title>] [action] usage: asciinema [-h] [-i] [-y] [-c <command>] [-t <title>] [action]
Asciicast recorder+uploader. Asciicast recorder+uploader.

@ -6,10 +6,10 @@
### Linux ### Linux
To install/update ascii.io recorder, open a terminal and run following To install/update asciinema recorder, open a terminal and run following
command: command:
$ curl -sL get.ascii.io | bash $ curl -sL get.asciinema.org | bash
### OSX (via Homebrew) ### OSX (via Homebrew)
@ -19,19 +19,19 @@ Install with:
Later update with: Later update with:
$ brew upgrade asciiio $ brew upgrade asciinema
### OSX (no Homebrew) ### OSX (no Homebrew)
If you don't use Homebrew then install/update with: If you don't use Homebrew then install/update with:
$ curl -sL get.ascii.io | bash $ curl -sL get.asciinema.org | bash
## 2. Record ## 2. Record
Open your terminal and run following command: Open your terminal and run following command:
$ asciiio $ asciinema
New shell instance will be opened and everything you'll do in it will be New shell instance will be opened and everything you'll do in it will be
recorded. When you're ready to upload simply exit the shell with `exit` recorded. When you're ready to upload simply exit the shell with `exit`
@ -39,10 +39,10 @@ command or just hit `<C-d>`.
## 3. Create profile (optional) ## 3. Create profile (optional)
If you want your recordings to be assigned to your ascii.io profile and to be If you want your recordings to be assigned to your asciinema profile and to be
able to edit/delete them run this and follow instructions: able to edit/delete them run this and follow instructions:
$ asciiio auth $ asciinema auth
If you skip this step now, you can always run above command later and all If you skip this step now, you can always run above command later and all
previously recorded asciicasts will get automatically assigned to your new previously recorded asciicasts will get automatically assigned to your new

@ -5,10 +5,10 @@ section#about.feature
em Record Your Terminal em Record Your Terminal
| Share it with no fuss | Share it with no fuss
p p
' ASCII.IO is the simplest way to record your terminal and share the ' Asciinema is the simplest way to record your terminal and share the
recordings with your fellow geeks. Simply record and upload your recordings with your fellow geeks. Simply record and upload your
terminal session with terminal session with
#{link_to 'a single command', docs_path(:record)}, and ASCII.IO will #{link_to 'a single command', docs_path(:record)}, and Asciinema will
play it back in your browser. play it back in your browser.
p p
= link_to '&raquo; Start Recording'.html_safe, docs_path(:record) = link_to '&raquo; Start Recording'.html_safe, docs_path(:record)

@ -17,7 +17,7 @@ html[lang="en"]
.wrapper .wrapper
h1 h1
a href="/" a href="/"
' ascii.io ' asciinema
span.cursor-block span.cursor-block
.navigation .navigation
= render :partial => 'layouts/navigation' = render :partial => 'layouts/navigation'

@ -5,4 +5,4 @@ Howdy!
<%= indented_text @comment.body, 4 %> <%= indented_text @comment.body, 4 %>
--- ---
http://ascii.io/ http://asciinema.org/

@ -25,7 +25,7 @@ bugfix:
production: production:
<<: *defaults <<: *defaults
EMAIL_HOST: "ascii.io" EMAIL_HOST: "asciinema.org"
test: test:
<<: *defaults <<: *defaults

Loading…
Cancel
Save