You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Timothy Pearson
91f3b7f8f8
|
13 years ago | |
---|---|---|
.. | ||
CMakeLists.txt | 13 years ago | |
ChangeLog | 14 years ago | |
DESIGN.ideas | 14 years ago | |
Mainpage.dox | 13 years ago | |
Makefile.am | 13 years ago | |
README | 15 years ago | |
THANKS | 15 years ago | |
array_instance.h | 15 years ago | |
array_object.cpp | 15 years ago | |
array_object.h | 15 years ago | |
bool_object.cpp | 15 years ago | |
bool_object.h | 15 years ago | |
collector.cpp | 14 years ago | |
collector.h | 15 years ago | |
completion.h | 15 years ago | |
configure.in.in | 14 years ago | |
context.h | 15 years ago | |
create_hash_table | 14 years ago | |
date_object.cpp | 13 years ago | |
date_object.h | 15 years ago | |
debugger.cpp | 15 years ago | |
debugger.h | 15 years ago | |
dtoa.cpp | 14 years ago | |
dtoa.h | 15 years ago | |
error_object.cpp | 15 years ago | |
error_object.h | 15 years ago | |
function.cpp | 14 years ago | |
function.h | 15 years ago | |
function_object.cpp | 15 years ago | |
function_object.h | 15 years ago | |
global.h.in | 13 years ago | |
grammar.cpp | 14 years ago | |
grammar.h | 15 years ago | |
grammar.y | 15 years ago | |
identifier.cpp | 15 years ago | |
identifier.h | 14 years ago | |
internal.cpp | 13 years ago | |
internal.h | 14 years ago | |
interpreter.cpp | 15 years ago | |
interpreter.h | 14 years ago | |
keywords.table | 15 years ago | |
kjs-devel-gdb | 13 years ago | |
lexer.cpp | 13 years ago | |
lexer.h | 13 years ago | |
libkjs.map | 15 years ago | |
list.cpp | 15 years ago | |
list.h | 15 years ago | |
lookup.cpp | 14 years ago | |
lookup.h | 14 years ago | |
math_object.cpp | 15 years ago | |
math_object.h | 15 years ago | |
nodes.cpp | 14 years ago | |
nodes.h | 15 years ago | |
nodes2string.cpp | 15 years ago | |
number_object.cpp | 14 years ago | |
number_object.h | 15 years ago | |
object.cpp | 14 years ago | |
object.h | 14 years ago | |
object_object.cpp | 14 years ago | |
object_object.h | 15 years ago | |
operations.cpp | 15 years ago | |
operations.h | 15 years ago | |
property_map.cpp | 15 years ago | |
property_map.h | 15 years ago | |
reference.cpp | 14 years ago | |
reference.h | 15 years ago | |
reference_list.cpp | 15 years ago | |
reference_list.h | 15 years ago | |
regexp.cpp | 13 years ago | |
regexp.h | 15 years ago | |
regexp_object.cpp | 13 years ago | |
regexp_object.h | 15 years ago | |
scope_chain.cpp | 15 years ago | |
scope_chain.h | 15 years ago | |
simple_number.h | 14 years ago | |
string_object.cpp | 14 years ago | |
string_object.h | 15 years ago | |
test.js | 15 years ago | |
testkjs.cpp | 15 years ago | |
types.h | 15 years ago | |
ustring.cpp | 13 years ago | |
ustring.h | 13 years ago | |
value.cpp | 15 years ago | |
value.h | 15 years ago |
README
This library provides an ECMAScript compatible interpreter. The ECMA standard is based on well known scripting languages such as Netscape's JavaScript and Microsoft's JScript. I'm currently pursuing to be compliant with Edition 3 of ECMA-262. Postscript and pdf versions of the standard are available at: http://www.ecma-international.org/publications/files/ecma-st/Ecma-262.pdf for PDF and http://www.ecma-international.org/publications/standards/Ecma-262.htm for the standard page. About 95% of the required features should be covered by now. Note that this number covers the core language elements only. Features like the famous roll-over buttons on the www are NOT part of the standard. Those extensions are added via a module loaded dynamically by the KHTML Widget. I'll provide some examples of how to extend this library for various needs at a later point in time. Feel free to contact me via mail if you have any questions on how to provide scripting capabilities for your application. A debugger is being worked on. Bug reports, patches or feedback of any kind is very welcome. Harri Porten <porten@kde.org>