Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zhuyadong/libdom
https://github.com/zhuyadong/libdom
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/zhuyadong/libdom
- Owner: zhuyadong
- License: mit
- Created: 2017-02-16T09:36:18.000Z (almost 8 years ago)
- Default Branch: css3
- Last Pushed: 2017-02-19T05:42:38.000Z (almost 8 years ago)
- Last Synced: 2024-11-10T02:26:32.701Z (2 months ago)
- Language: C
- Size: 2.01 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: COPYING
Awesome Lists containing this project
README
LibDOM -- an implementation of the W3C DOM
==========================================Overview
--------LibDOM is an implementation of the W3C DOM API in C.
Requirements
------------The library uses the Netsurf core buildsystem which must be available
(usually at the same level as the libsvg source)The PREFIX variable can be used to perform builds which do not install
to global system paths.libdom requires the following tools:
- A C99 capable C compiler
- GNU make or compatible
- Perl (for the testcases)LibDOM also requires the following libraries to be installed:
- LibParserUtils
- LibWapcaplet
- LibHubbubCompilation
-----------If necessary, modify the toolchain settings in the Makefile.
Invoke make:
make
The VARIANT variable allows builds for "release" (the default) and "debug"
e.g.make VARIANT=debug
Verification
------------To verify that the library is working, it is necessary to specify a
different makefile target than that used for normal compilation, thus:make test
API documentation
-----------------Currently, there is none. However, the code is well commented and the
public API may be found in the "include" directory. The testcase
sources may also be of use in working out how to use it.