From 8ecc40900ffd8c6dab0d8c6fdc36eb28f1df8904 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sat, 13 Apr 2013 13:59:18 -0500 Subject: regenerate docs --- hexes.html | 13 ++++++------- info.html | 6 +++--- ios.html | 6 ++++++ 3 files changed, 15 insertions(+), 10 deletions(-) diff --git a/hexes.html b/hexes.html index bd9be72..f9d2844 100644 --- a/hexes.html +++ b/hexes.html @@ -18,7 +18,6 @@
  • Enum Keypress - Keys that can be returned by Term::read.
  • Implementation for Term
  • Implementation of Drop for Term
  • -
  • Function Term - Creates a new Term instance.
  • @@ -48,6 +47,12 @@

    Implementation for Term

    +
    +

    Method new

    +
    fn new() -> Term
    +

    Creates a new Term instance.

    +

    This can be used to manipulate the terminal for full screen applications.

    +

    Method clear

    fn clear(&mut self)
    @@ -137,11 +142,5 @@
    fn finalize(&self)
    -
    -

    Function Term

    -
    fn Term() -> Term
    -

    Creates a new Term instance.

    -

    This can be used to manipulate the terminal for full screen applications.

    -
    diff --git a/info.html b/info.html index 64d9f2b..7a5ed22 100644 --- a/info.html +++ b/info.html @@ -146,18 +146,18 @@

    Function escape

    -
    fn escape(name: &str) -> ~str
    +
    fn escape(name: &str) -> Option<~str>

    The terminal escape corresponding to the name terminfo capability.

    Function escape1

    -
    fn escape1(name: &str, p1: int) -> ~str
    +
    fn escape1(name: &str, p1: int) -> Option<~str>

    The terminal escape corresponding to the name terminfo capability.

    This capability must take one parameter, which should be passed as p1.

    Function escape2

    -
    fn escape2(name: &str, p1: int, p2: int) -> ~str
    +
    fn escape2(name: &str, p1: int, p2: int) -> Option<~str>

    The terminal escape corresponding to the name terminfo capability.

    This capability must take two parameters, which should be passed as p1 and p2.

    diff --git a/ios.html b/ios.html index 660e89f..45f98ad 100644 --- a/ios.html +++ b/ios.html @@ -20,6 +20,7 @@
  • Function echo - Change the echo mode of the terminal.
  • Function preserve - Run a block of code, restoring the terminal state when the block ends.
  • Function raw - Put the terminal into raw mode.
  • +
  • Function size - Returns the size of the terminal, as (columns, rows).
  • @@ -53,5 +54,10 @@

    Put the terminal into raw mode.

    This is like cbreak mode, except that control characters (like ^C) are not translated into signals.

    +
    +

    Function size

    +
    fn size() -> (uint, uint)
    +

    Returns the size of the terminal, as (columns, rows).

    +
    -- cgit v1.2.3