Import exactly the files of the teapot-2.3.0 distribution

This commit is contained in:
Glen Whitney 2019-07-22 13:32:33 -07:00
parent 360b88936b
commit f8a60447d6
68 changed files with 20367 additions and 0 deletions

198
doc/.latex2html-init Normal file
View file

@ -0,0 +1,198 @@
#LaTeX2HTML Version 96.1 : dot.latex2html-init
#
### Command Line Argument Defaults #######################################
$MAX_SPLIT_DEPTH = 5; # Stop making separate files at this depth
$MAX_LINK_DEPTH = 4; # Stop showing child nodes at this depth
$NOLATEX = 0; # 1 = do not pass unknown environments to Latex
$EXTERNAL_IMAGES = 0; # 1 = leave the images outside the document
$ASCII_MODE = 0; # 1 = do not use any icons or internal images
$LOCAL_ICONS = 1;
# 1 = use links to external postscript images rather than inlined bitmap
# images.
$PS_IMAGES = 0;
$TITLE = "fteapot manual"; # The default is "No Title"
$DESTDIR = 'html'; # Put the result in this directory
# When this is set, the generated HTML files will be placed in the
# current directory. If set to 0 the default behaviour is to create (or reuse)
# another file directory.
$NO_SUBDIR = 0;
# Supply your own string if you don't like the default <Name> <Date>
$ADDRESS = "";
$NO_NAVIGATION = 0; # 1 = do not put a navigation panel at the top of each page
# Put navigation links at the top of each page. If the page exceeds
# $WORDS_IN_PAGE number of words then put one at the bottom of the page.
$AUTO_NAVIGATION = 1;
# Put a link to the index page in the navigation panel
$INDEX_IN_NAVIGATION = 0;
# Put a link to the table of contents in the navigation panel
$CONTENTS_IN_NAVIGATION = 1;
# Put a link to the next logical page in the navigation panel
$NEXT_PAGE_IN_NAVIGATION = 1;
# Put a link to the previous logical page in the navigation panel
$PREVIOUS_PAGE_IN_NAVIGATION = 1;
$INFO = 1; # 0 = do not make a "About this document..." section
# Reuse images generated during previous runs
$REUSE = 2;
# When this is 1, the section numbers are shown. The section numbers should
# then match those that would have bee produced by LaTeX.
# The correct section numbers are obtained from the $FILE.aux file generated
# by LaTeX.
# Hiding the seciton numbers encourages use of particular sections
# as standalone documents. In this case the cross reference to a section
# is shown using the default symbol rather than the section number.
$SHOW_SECTION_NUMBERS = 0;
### Other global variables ###############################################
$CHILDLINE = "<BR> <HR>\n";
# This is the line width measured in pixels and it is used to right justify
# equations and equation arrays;
$LINE_WIDTH = 500;
# Used in conjunction with AUTO_NAVIGATION
$WORDS_IN_PAGE = 300;
# Affects ONLY the way accents are processed
$default_language = 'english';
# The value of this variable determines how many words to use in each
# title that is added to the navigation panel (see below)
#
$WORDS_IN_NAVIGATION_PANEL_TITLES = 5;
# This number will determine the size of the equations, special characters,
# and anything which will be converted into an inlined image
# *except* "image generating environments" such as "figure", "table"
# or "minipage".
# Effective values are those greater than 0.
# Sensible values are between 0.1 - 4.
$MATH_SCALE_FACTOR = 2;
# This number will determine the size of
# image generating environments such as "figure", "table" or "minipage".
# Effective values are those greater than 0.
# Sensible values are between 0.1 - 4.
$FIGURE_SCALE_FACTOR = 2;
# If this is set then intermediate files are left for later inspection.
# This includes $$_images.tex and $$_images.log created during image
# conversion.
# Caution: Intermediate files can be *enormous*.
$DEBUG = 0;
# If both of the following two variables are set then the "Up" button
# of the navigation panel in the first node/page of a converted document
# will point to $EXTERNAL_UP_LINK. $EXTERNAL_UP_TITLE should be set
# to some text which describes this external link.
$EXTERNAL_UP_LINK = "";
$EXTERNAL_UP_TITLE = "";
# If this is set then the resulting HTML will look marginally better if viewed
# with Netscape.
$NETSCAPE_HTML = 0;
# Valid paper sizes are "letter", "legal", "a4","a3","a2" and "a0"
# Paper sizes has no effect other than in the time it takes to create inlined
# images and in whether large images can be created at all ie
# - larger paper sizes *MAY* help with large image problems
# - smaller paper sizes are quicker to handle
$PAPERSIZE = "a5";
# Replace "english" with another language in order to tell LaTeX2HTML that you
# want some generated section titles (eg "Table of Contents" or "References")
# to appear in a different language. Currently only "english" and "french"
# is supported but it is very easy to add your own. See the example in the
# file "latex2html.config"
$TITLES_LANGUAGE = "english";
### Navigation Panel ##########################################################
#
# The navigation panel is constructed out of buttons and section titles.
# These can be configured in any combination with arbitrary text and
# HTML tags interspersed between them.
# The buttons available are:
# $PREVIOUS - points to the previous section
# $UP - points up to the "parent" section
# $NEXT - points to the next section
# $NEXT_GROUP - points to the next "group" section
# $PREVIOUS_GROUP - points to the previous "group" section
# $CONTENTS - points to the contents page if there is one
# $INDEX - points to the index page if there is one
#
# If the corresponding section exists the button will contain an
# active link to that section. If the corresponding section does
# not exist the button will be inactive.
#
# Also for each of the $PREVIOUS $UP $NEXT $NEXT_GROUP and $PREVIOUS_GROUP
# buttons there are equivalent $PREVIOUS_TITLE, $UP_TITLE, etc variables
# which contain the titles of their corresponding sections.
# Each title is empty if there is no corresponding section.
#
# The subroutine below constructs the navigation panels in each page.
# Feel free to mix and match buttons, titles, your own text, your logos,
# and arbitrary HTML (the "." is the Perl concatenation operator).
sub top_navigation_panel {
# Now add a few buttons with a space between them
"<FONT SIZE=6>&nbsp; $PREVIOUS &nbsp; $UP &nbsp; $NEXT &nbsp; - &nbsp; $CONTENTS &nbsp; $INDEX &nbsp; $CUSTOM_BUTTONS</FONT>" .
#"<BR>\n" . # Line break
# ... and the ``previous'' title
#($PREVIOUS_TITLE ? "<B>&lt;&lt;</B> $PREVIOUS_TITLE\n" : undef) .
# Similarly with the ``up'' title ...
#($UP_TITLE ? "<B>^</B> $UP_TITLE <B>^</B>\n" : undef) .
# If ``next'' section exists, add its title to the navigation panel
#($NEXT_TITLE ? "$NEXT_TITLE <B>&gt;&gt;</B>\n" : undef)
# Line Break, horizontal rule (3-d dividing line) and new paragraph
#"<BR>\n"
""
}
sub bot_navigation_panel {
# Start with a horizontal rule (3-d dividing line)
#"<HR>".
# Now add a few buttons with a space between them
"<FONT SIZE=6>&nbsp; $PREVIOUS &nbsp; $UP &nbsp; $NEXT &nbsp; - &nbsp; $CONTENTS &nbsp; $INDEX &nbsp; $CUSTOM_BUTTONS</FONT>" .
"<BR>\n" . # Line break
# ... and the ``previous'' title
($PREVIOUS_TITLE ? "<B>&lt;&lt;</B> $PREVIOUS_TITLE\n" : undef) .
# Similarly with the ``up'' title ...
($UP_TITLE ? "<B>^</B> $UP_TITLE <B>^</B>\n" : undef) .
# If ``next'' section exists, add its title to the navigation panel
($NEXT_TITLE ? "$NEXT_TITLE <B>&gt;&gt;</B>\n" : undef)
}
1; # This must be the last line

View file

@ -0,0 +1,43 @@
From michael@moria.de Mon Jan 26 11:41:49 2009
Return-path: <michael@moria.de>
Envelope-to: info@syntax-k.de
Delivery-date: Mon, 26 Jan 2009 11:42:30 +0100
Received: from [194.97.106.210] (helo=fangorn.moria.de)
by mercenary.garni.ch with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32)
(Exim 4.67)
(envelope-from <michael@moria.de>)
id 1LROv8-0007ub-Oi
for info@syntax-k.de; Mon, 26 Jan 2009 11:42:30 +0100
Received: from michael by fangorn.moria.de with local (ID michael) (Exim 4.69 #20)
id 1LROub-0002Gz-Ge
for info@syntax-k.de; Mon, 26 Jan 2009 11:41:49 +0100
Date: Mon, 26 Jan 2009 11:41:49 +0100
To: info@syntax-k.de
Subject: Re: Ein neues Leben =?iso-8859-1?Q?f=FCr?= Teapot
References: <200901260214.44366.info@syntax-k.de>
In-Reply-To: <200901260214.44366.info@syntax-k.de>
User-Agent: Heirloom mailx 12.1 6/15/06
MIME-Version: 1.0
Content-Type: text/plain;
charset=iso-8859-1
Content-Transfer-Encoding: 8bit
Message-Id: <E1LROub-0002Gz-Ge@fangorn.moria.de>
From: Michael Haardt <michael@moria.de>
X-Spam-Level: --
X-Spam-Status: NO, score=-2.5, required=7.0
X-Antivirus-Scanner: Clean mail. You should still use a local antivirus program.
X-Length: 1754
X-UID: 1
> Ich war auf der Suche nach einer einfachen Tabellenkalkulation, die
> universell (also auch embedded, per SSH usw.) eingesetzt werden kann.
> Entdeckt habe ich Teapot, das dank Curses-UI wahrlich universell ist. Um
> es aber auf grafischen Systemen bequemer benutzen zu können, habe ich
> einfach mal ein GTK+-Frontend dafür geschrieben.
Klingt ganz nett, aber ich mache nichts mehr an Teapot und GTK ist mir
ein zu veraenderliches Ding, um mich auf fremde Patches zu verlassen.
Magst Du teapot als Projekt uebernehmen? Ich wuerde es unter GPL gerne
an jemand abgeben, der am Code arbeitet.
Michael

BIN
doc/contents.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 223 B

BIN
doc/next.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 B

BIN
doc/next_g.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 188 B

BIN
doc/prev.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 223 B

BIN
doc/prev_g.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 212 B

6417
doc/teapot.lyx Normal file

File diff suppressed because it is too large Load diff

BIN
doc/up.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 172 B

BIN
doc/up_g.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 169 B