No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
tdelibs/kjs
Michele Calgaro 05ee12e2df
Fixed more uncrustify's code formatting offending files.
hace 3 años
..
CMakeLists.txt Use private linking for exported CMake targets. hace 4 años
ChangeLog Revert automated changes hace 13 años
DESIGN.ideas Revert automated changes hace 13 años
Mainpage.dox Removed code formatting modelines. hace 4 años
Makefile.am Additional kde to tde renaming hace 13 años
README Rename KHTML and kiobuffer hace 11 años
THANKS Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. hace 15 años
array_instance.h Removed code formatting modelines. hace 4 años
array_object.cpp Removed code formatting modelines. hace 4 años
array_object.h Removed code formatting modelines. hace 4 años
bool_object.cpp Removed code formatting modelines. hace 4 años
bool_object.h Removed code formatting modelines. hace 4 años
collector.cpp Removed code formatting modelines. hace 4 años
collector.h Removed code formatting modelines. hace 4 años
completion.h Removed code formatting modelines. hace 4 años
configure.in.in Use the correct macros isnan, isinf for libc compatibility hace 4 años
context.h Removed code formatting modelines. hace 4 años
create_hash_table Fix FTBFS with GCC6 hace 8 años
date_object.cpp Removed code formatting modelines. hace 4 años
date_object.h Removed code formatting modelines. hace 4 años
debugger.cpp Removed code formatting modelines. hace 4 años
debugger.h Removed code formatting modelines. hace 4 años
dtoa.cpp Fixed some uncrustify's code formatting offending files. hace 3 años
dtoa.h Removed code formatting modelines. hace 4 años
error_object.cpp Removed code formatting modelines. hace 4 años
error_object.h Removed code formatting modelines. hace 4 años
function.cpp Removed code formatting modelines. hace 4 años
function.h Removed code formatting modelines. hace 4 años
function_object.cpp Removed code formatting modelines. hace 4 años
function_object.h Removed code formatting modelines. hace 4 años
global.h.in Removed code formatting modelines. hace 4 años
grammar.cpp Fixed some uncrustify's code formatting offending files. hace 3 años
grammar.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. hace 15 años
grammar.y Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. hace 15 años
identifier.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. hace 15 años
identifier.h Trinity Qt initial conversion hace 14 años
internal.cpp Removed code formatting modelines. hace 4 años
internal.h Removed code formatting modelines. hace 4 años
interpreter.cpp Removed code formatting modelines. hace 4 años
interpreter.h Removed code formatting modelines. hace 4 años
keywords.table Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. hace 15 años
kjs-devel-gdb Additional renaming of kde to tde hace 13 años
lexer.cpp Removed code formatting modelines. hace 4 años
lexer.h Removed code formatting modelines. hace 4 años
libkjs.map Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. hace 15 años
list.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. hace 15 años
list.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. hace 15 años
lookup.cpp Removed code formatting modelines. hace 4 años
lookup.h Removed code formatting modelines. hace 4 años
math_object.cpp Removed code formatting modelines. hace 4 años
math_object.h Removed code formatting modelines. hace 4 años
nodes.cpp Removed code formatting modelines. hace 4 años
nodes.h Removed code formatting modelines. hace 4 años
nodes2string.cpp Removed code formatting modelines. hace 4 años
number_object.cpp Removed code formatting modelines. hace 4 años
number_object.h Removed code formatting modelines. hace 4 años
object.cpp Removed code formatting modelines. hace 4 años
object.h Removed code formatting modelines. hace 4 años
object_object.cpp Removed code formatting modelines. hace 4 años
object_object.h Removed code formatting modelines. hace 4 años
operations.cpp Removed code formatting modelines. hace 4 años
operations.h Removed code formatting modelines. hace 4 años
property_map.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. hace 15 años
property_map.h Removed code formatting modelines. hace 4 años
reference.cpp Removed code formatting modelines. hace 4 años
reference.h Removed code formatting modelines. hace 4 años
reference_list.cpp Removed code formatting modelines. hace 4 años
reference_list.h Removed code formatting modelines. hace 4 años
regexp.cpp Removed code formatting modelines. hace 4 años
regexp.h Removed code formatting modelines. hace 4 años
regexp_object.cpp Removed code formatting modelines. hace 4 años
regexp_object.h Removed code formatting modelines. hace 4 años
scope_chain.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. hace 15 años
scope_chain.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. hace 15 años
simple_number.h Removed code formatting modelines. hace 4 años
string_object.cpp Fixed more uncrustify's code formatting offending files. hace 3 años
string_object.h Removed code formatting modelines. hace 4 años
test.js Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. hace 15 años
testkjs.cpp Removed code formatting modelines. hace 4 años
types.h Removed code formatting modelines. hace 4 años
ustring.cpp Removed code formatting modelines. hace 4 años
ustring.h Removed code formatting modelines. hace 4 años
value.cpp Fixed some uncrustify's code formatting offending files. hace 3 años
value.h Removed code formatting modelines. hace 4 años

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 TDEHTML 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>