• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H03-May-2022-343282

include/H03-May-2022-3,6252,649

libltdl/H07-May-2022-45,76035,846

libsee/H03-May-2022-45,28235,661

shell/H03-May-2022-4,9503,782

ssp/H03-May-2022-1,5591,209

AUTHORSH A D26-Apr-2009105 63

COPYINGH A D26-Apr-20092.6 KiB5851

ChangeLogH A D26-Apr-200923 21

INSTALLH A D26-Apr-20097.6 KiB183143

Makefile.amH A D26-Apr-2009776 2921

Makefile.inH A D03-May-202219.7 KiB646569

NEWSH A D26-Apr-200910.2 KiB193183

READMEH A D26-Apr-20091.3 KiB3625

TODOH A D26-Apr-20091.8 KiB5245

aclocal.m4H A D26-Apr-2009338.3 KiB9,8128,777

compileH A D26-Apr-20093.6 KiB14379

config.guessH A D26-Apr-200943.8 KiB1,5271,315

config.subH A D26-Apr-200932.6 KiB1,6591,514

configureH A D03-May-2022650.6 KiB23,72119,563

configure.acH A D26-Apr-200917.5 KiB614534

depcompH A D26-Apr-200917.4 KiB590375

install-shH A D26-Apr-200913.3 KiB520344

ltmain.shH A D26-Apr-2009220 KiB7,8816,022

missingH A D26-Apr-200910.9 KiB368275

test1.cH A D26-Apr-20091.3 KiB5128

README

1
2Welcome to SEE (Simple ECMAScript Engine).
3
4SEE is a library that provides an ECMAScript (JavaScript) run-time
5environment.
6
7Running configure and compiling in the normal way should provide
8the library 'libsee.a' and a test application, 'see-shell'.  I
9strongly recommend that you have Boehm-gc installed (it's a garbage
10collector library) otherwise see-shell just uses the non-free'ing
11malloc().  Run configure with the '--help' argument to see switches
12on how to configure it for boehm-gc.
13
14Documentation for development using the SEE library can be found in
15doc/USAGE.html.  The 'see-shell' program doubles as an example and
16demonstration of how the library is intended to be used.
17
18I hope you find this library useful. Please send bug reports back to me
19via <leonard@users.sourceforge.net>. New releases of SEE will be announced
20at <http://freshmeat.net/projects/see/> and made available at
21<http://www.adaptive-enterprises.com.au/~d/software/see/>.
22
23The subversion repository for SEE is available at
24svn://svn.adaptive-enterprises.com.au/repos/see/
25
26David Leonard, 2004.
27
28Directory organisation:
29  doc/		- Documentation
30  libsee/	- Library source
31  include/see	- Public header files
32  shell/	- Demo/test program 'see-shell'
33  ssp/          - Demo HTTP server that runs server-side Javascript
34
35
36