|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | 03-May-2022 | - |
| doc/ | H | 03-May-2022 | - | 343 | 282 |
| include/ | H | 03-May-2022 | - | 3,625 | 2,649 |
| libltdl/ | H | 07-May-2022 | - | 45,760 | 35,846 |
| libsee/ | H | 03-May-2022 | - | 45,282 | 35,661 |
| shell/ | H | 03-May-2022 | - | 4,950 | 3,782 |
| ssp/ | H | 03-May-2022 | - | 1,559 | 1,209 |
| AUTHORS | H A D | 26-Apr-2009 | 105 | 6 | 3 |
| COPYING | H A D | 26-Apr-2009 | 2.6 KiB | 58 | 51 |
| ChangeLog | H A D | 26-Apr-2009 | 23 | 2 | 1 |
| INSTALL | H A D | 26-Apr-2009 | 7.6 KiB | 183 | 143 |
| Makefile.am | H A D | 26-Apr-2009 | 776 | 29 | 21 |
| Makefile.in | H A D | 03-May-2022 | 19.7 KiB | 646 | 569 |
| NEWS | H A D | 26-Apr-2009 | 10.2 KiB | 193 | 183 |
| README | H A D | 26-Apr-2009 | 1.3 KiB | 36 | 25 |
| TODO | H A D | 26-Apr-2009 | 1.8 KiB | 52 | 45 |
| aclocal.m4 | H A D | 26-Apr-2009 | 338.3 KiB | 9,812 | 8,777 |
| compile | H A D | 26-Apr-2009 | 3.6 KiB | 143 | 79 |
| config.guess | H A D | 26-Apr-2009 | 43.8 KiB | 1,527 | 1,315 |
| config.sub | H A D | 26-Apr-2009 | 32.6 KiB | 1,659 | 1,514 |
| configure | H A D | 03-May-2022 | 650.6 KiB | 23,721 | 19,563 |
| configure.ac | H A D | 26-Apr-2009 | 17.5 KiB | 614 | 534 |
| depcomp | H A D | 26-Apr-2009 | 17.4 KiB | 590 | 375 |
| install-sh | H A D | 26-Apr-2009 | 13.3 KiB | 520 | 344 |
| ltmain.sh | H A D | 26-Apr-2009 | 220 KiB | 7,881 | 6,022 |
| missing | H A D | 26-Apr-2009 | 10.9 KiB | 368 | 275 |
| test1.c | H A D | 26-Apr-2009 | 1.3 KiB | 51 | 28 |
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