7
1
Fork 0
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
tdelibs/kjs
Michele Calgaro 05ee12e2df
Fixed more uncrustify's code formatting offending files.
vor 3 Jahren
..
CMakeLists.txt Use private linking for exported CMake targets. vor 4 Jahren
ChangeLog Revert automated changes vor 13 Jahren
DESIGN.ideas Revert automated changes vor 13 Jahren
Mainpage.dox Removed code formatting modelines. vor 4 Jahren
Makefile.am Additional kde to tde renaming vor 13 Jahren
README Rename KHTML and kiobuffer vor 11 Jahren
THANKS Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. vor 15 Jahren
array_instance.h Removed code formatting modelines. vor 4 Jahren
array_object.cpp Removed code formatting modelines. vor 4 Jahren
array_object.h Removed code formatting modelines. vor 4 Jahren
bool_object.cpp Removed code formatting modelines. vor 4 Jahren
bool_object.h Removed code formatting modelines. vor 4 Jahren
collector.cpp Removed code formatting modelines. vor 4 Jahren
collector.h Removed code formatting modelines. vor 4 Jahren
completion.h Removed code formatting modelines. vor 4 Jahren
configure.in.in Use the correct macros isnan, isinf for libc compatibility vor 4 Jahren
context.h Removed code formatting modelines. vor 4 Jahren
create_hash_table Fix FTBFS with GCC6 vor 8 Jahren
date_object.cpp Removed code formatting modelines. vor 4 Jahren
date_object.h Removed code formatting modelines. vor 4 Jahren
debugger.cpp Removed code formatting modelines. vor 4 Jahren
debugger.h Removed code formatting modelines. vor 4 Jahren
dtoa.cpp Fixed some uncrustify's code formatting offending files. vor 3 Jahren
dtoa.h Removed code formatting modelines. vor 4 Jahren
error_object.cpp Removed code formatting modelines. vor 4 Jahren
error_object.h Removed code formatting modelines. vor 4 Jahren
function.cpp Removed code formatting modelines. vor 4 Jahren
function.h Removed code formatting modelines. vor 4 Jahren
function_object.cpp Removed code formatting modelines. vor 4 Jahren
function_object.h Removed code formatting modelines. vor 4 Jahren
global.h.in Removed code formatting modelines. vor 4 Jahren
grammar.cpp Fixed some uncrustify's code formatting offending files. vor 3 Jahren
grammar.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. vor 15 Jahren
grammar.y Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. vor 15 Jahren
identifier.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. vor 15 Jahren
identifier.h Trinity Qt initial conversion vor 14 Jahren
internal.cpp Removed code formatting modelines. vor 4 Jahren
internal.h Removed code formatting modelines. vor 4 Jahren
interpreter.cpp Removed code formatting modelines. vor 4 Jahren
interpreter.h Removed code formatting modelines. vor 4 Jahren
keywords.table Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. vor 15 Jahren
kjs-devel-gdb Additional renaming of kde to tde vor 13 Jahren
lexer.cpp Removed code formatting modelines. vor 4 Jahren
lexer.h Removed code formatting modelines. vor 4 Jahren
libkjs.map Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. vor 15 Jahren
list.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. vor 15 Jahren
list.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. vor 15 Jahren
lookup.cpp Removed code formatting modelines. vor 4 Jahren
lookup.h Removed code formatting modelines. vor 4 Jahren
math_object.cpp Removed code formatting modelines. vor 4 Jahren
math_object.h Removed code formatting modelines. vor 4 Jahren
nodes.cpp Removed code formatting modelines. vor 4 Jahren
nodes.h Removed code formatting modelines. vor 4 Jahren
nodes2string.cpp Removed code formatting modelines. vor 4 Jahren
number_object.cpp Removed code formatting modelines. vor 4 Jahren
number_object.h Removed code formatting modelines. vor 4 Jahren
object.cpp Removed code formatting modelines. vor 4 Jahren
object.h Removed code formatting modelines. vor 4 Jahren
object_object.cpp Removed code formatting modelines. vor 4 Jahren
object_object.h Removed code formatting modelines. vor 4 Jahren
operations.cpp Removed code formatting modelines. vor 4 Jahren
operations.h Removed code formatting modelines. vor 4 Jahren
property_map.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. vor 15 Jahren
property_map.h Removed code formatting modelines. vor 4 Jahren
reference.cpp Removed code formatting modelines. vor 4 Jahren
reference.h Removed code formatting modelines. vor 4 Jahren
reference_list.cpp Removed code formatting modelines. vor 4 Jahren
reference_list.h Removed code formatting modelines. vor 4 Jahren
regexp.cpp Removed code formatting modelines. vor 4 Jahren
regexp.h Removed code formatting modelines. vor 4 Jahren
regexp_object.cpp Removed code formatting modelines. vor 4 Jahren
regexp_object.h Removed code formatting modelines. vor 4 Jahren
scope_chain.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. vor 15 Jahren
scope_chain.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. vor 15 Jahren
simple_number.h Removed code formatting modelines. vor 4 Jahren
string_object.cpp Fixed more uncrustify's code formatting offending files. vor 3 Jahren
string_object.h Removed code formatting modelines. vor 4 Jahren
test.js Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. vor 15 Jahren
testkjs.cpp Removed code formatting modelines. vor 4 Jahren
types.h Removed code formatting modelines. vor 4 Jahren
ustring.cpp Removed code formatting modelines. vor 4 Jahren
ustring.h Removed code formatting modelines. vor 4 Jahren
value.cpp Fixed some uncrustify's code formatting offending files. vor 3 Jahren
value.h Removed code formatting modelines. vor 4 Jahren

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>