reactos/reactos/lib/kjs
Gé van Geldorp 4221b60000 - Centralize definition of version resource
- Give DLLs a high version number, so installers won't overwrite them

svn path=/trunk/; revision=11297
2004-10-16 20:27:43 +00:00
..
am Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
am.opt Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
docs Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
examples Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
include Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
jsas Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
jsc Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
jsdas Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
jswrap Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
ksrc - Fix the "use of cast expressions as lvalues is deprecated" warning. 2004-05-29 21:21:06 +00:00
micros Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
projects Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
src Added missing .cvsignore files. 2004-01-28 21:56:36 +00:00
.cvsignore Added missing .cvsignore files. 2004-01-28 21:56:36 +00:00
acconfig.h Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
aclocal.m4 Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
AUTHORS Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
ChangeLog Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
config.cache Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
config.log Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
configure.in Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
COPYING Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
INSTALL Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
jsconfig.h.in Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
Kernel_Javascript_Support.html Added usage document. 2004-01-10 21:04:49 +00:00
kjs.def Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
kjs.rc - Centralize definition of version resource 2004-10-16 20:27:43 +00:00
kjsinit.js Blight pointed out that I was missing some regs from the end of the trap frame. 2004-05-22 01:55:31 +00:00
ltmain.sh Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
makefile Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
Makefile.am Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
Makefile.in Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
Makefile.orig Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
MODIFICATIONS Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
NEWS Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
README Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
stamp-h Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
stamp-h.in Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
THANKS Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00
TODO Added kjs -- The kernel javascript system. 2004-01-10 20:38:18 +00:00

		      NGS JavaScript Interpreter
		      ==========================

Welcome to the NGS JavaScript interpreter.  The NGS JavaScript is a
GPL free interpreter for the JavaScript language.  The JavaScript
language is an interpreted C-like language, developed by Netscape et
al.

The NGS JavaScript interpreter is free software; you can redistribute
it and/or modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Library General Public License for more details.

You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
USA


* Design Goals

This implementation is not 100% compatible with the JavaScript
language, found from the Netscape's WWW browsers and servers.  To
achieve the following design goals, some shortcuts have been taken in
the implementation, as compared to the Netscape's implementation.

This implementation is designed to be:

- re-entrant

  the interpreter can be safely used in multi-threaded environments

- extendible

  the interpreter API allows user-defined commands and classes, and it
  allows reading and setting language's global variables

- fast

  the JavaScript code is compiled to byte-code that is executed by a
  virtual machine

- programmable

  it should be easy to implement large projects with the language


* WWW Home Page and Additional Information

The WWW home page of the NGS JavaScript interpreter is at URL:

	http://www.ngs.fi/js/

The home page contains up-to-date information about the interpreter,
its development, releases, documentation, etc.

Please note that the current version, js-0.2.0 is a work in progress.
It contains bugs and many features are still unimplemented.

Comments, suggestions, bug reports and fixes, feature wishes, etc. are
welcome.

	Markku Rossi <mtr@ngs.fi>