gecko-dev/extensions/xmlterm
cvshook%sicking.cc 3a9a287253 Bug 344050: Kill nsITextContent and move the methods to nsIContent. r/sr=jst 2006-07-19 04:36:36 +00:00
..
base Bug 344050: Kill nsITextContent and move the methods to nsIContent. r/sr=jst 2006-07-19 04:36:36 +00:00
build Adding MOZILLA_INTERNAL_API to internal makefiles, bug 288626, rs=darin 2005-04-04 18:38:19 +00:00
config Bug 236613: change to MPL/LGPL/GPL tri-license. 2004-04-18 22:14:17 +00:00
distrib
doc Bug 236613: change to MPL/LGPL/GPL tri-license. 2004-08-25 23:02:50 +00:00
geckoterm Bug 236613: change to MPL/LGPL/GPL tri-license. 2004-04-18 22:14:17 +00:00
lineterm Bug 236613: change to MPL/LGPL/GPL tri-license. 2004-04-18 22:14:17 +00:00
linetest Bug 236613: change to MPL/LGPL/GPL tri-license. 2004-04-18 22:14:17 +00:00
scripts Bug 236613: change to MPL/LGPL/GPL tri-license. 2004-04-18 22:14:17 +00:00
tests Bug 236613: change to MPL/LGPL/GPL tri-license. 2004-04-18 22:14:17 +00:00
ui Don't set window.location or document.location in chrome code; set 2005-05-24 04:12:30 +00:00
.cvsignore
INSTALL
Makefile.in Bug 236613: change to MPL/LGPL/GPL tri-license. 2004-04-18 22:14:17 +00:00
README
UUID.txt --NOT PART OF DEFAULT BUILD-- 2001-09-07 21:33:32 +00:00
jar.mn --NOT PART OF DEFAULT BUILD-- 2001-12-28 22:39:45 +00:00

README

xmlterm --- A graphical command line interface
==============================================

An early prototype of XMLterm, an XTERM-like terminal program implemented
using the open source Mozilla layout engine, is now available to tinker
with. XMLterm aims to add graphical and hypertext capabilities to the XTERM
command line interface, while maintaining backwards compatibility.

The basic design philosophy of XMLterm is that the user interface is a dynamic
XML document. The user and the computer interact by taking turns at appending
to this XML document. The plain text content of the XML document, i.e.,
excluding any markup, corresponds to the plain text that would be displayed by
a plain XTERM. The markup in the XML document is used to add graphical and
hypertext features. XMLterm uses the Mozilla layout engine to display the XML
document.

XMLterm is an open source project in its early stages. Comments and
contributions are welcome!

R. Saravanan   <svn@xmlterm.org>
7 Mar 2000     <http://xmlterm.org>
==========

QUICK SET-UP INSTRUCTIONS (Linux/Solaris)
-----------------------------------------

If you have already built mozilla from the source, then type the following
commands in the "mozilla" directory to build XMLterm:

a) configure --with-extensions=xmlterm <other-configure-options>
b) cd extensions/xmlterm
c) make

[Skip step (b) for a fresh build of mozilla from the source tarball]

To execute XMLterm, type one of the following commands in
the mozilla/dist/bin directory:

   ./xmlterm
  OR
   ./mozilla -chrome chrome://xmlterm/content/xmlterm.xul

NOTES:

 1. See the INSTALL file for detailed configuration/installation instructions.

 2. See the file doc/INSTALL.xmlterm for binary installation instructions.

 3. Check the XMLterm web site <http://xmlterm.org> for updates.

===========================================================================
DOCUMENTATION

 a. There is a README file in each directory that provides some basic
    information.

 b. The file "base/README" provides a brief overview of the XMLterm code
    architecture.

 c. The header files (*.idl, *.h) have comments describing class methods
    and member variables in JAVADOC format. Look at them before delving
    into the *.cpp files

===========================================================================
FILES:

  INSTALL        installation instructions
  README         this file
  UUID.txt       list of UUIDs used by XMLterm

The main subdirectories of the "xmlterm" directory are:

  base/          base source code for XMLterm libraries
  config/        make rules for stand-alone mode
  dist/          holds include and library file for stand-alone LineTerm only
  doc/           some documentation
  geckoterm/     lightweight XMLterm executable
  linetest/      stand-alone line terminal testing executables
  scripts/       XMLterm scripts (xls, xcat, ...)
  tests/         XMLterm test programs (HelloWorld pagelet, ...)
  ui/            user interface/chrome files

--