Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. LibDOM -- an implementation of the W3C DOM
  2. ==========================================
  3.  
  4. Overview
  5. --------
  6.  
  7.   LibDOM is an implementation of the W3C DOM API in C.
  8.  
  9. Requirements
  10. ------------
  11.  
  12.   libdom requires the following tools:
  13.  
  14.     + A C99 capable C compiler
  15.     + GNU make or compatible
  16.     + Perl (for the testcases)
  17.  
  18.   LibDOM also requires the following libraries to be installed:
  19.  
  20.     +  LibParserUtils
  21.     +  LibWapcaplet
  22.  
  23. Compilation
  24. -----------
  25.  
  26.   If necessary, modify the toolchain settings in the Makefile.
  27.   Invoke make:
  28.                 $ make
  29.  
  30. Verification
  31. ------------
  32.  
  33.   To verify that the library is working, it is necessary to specify a
  34.   different makefile target than that used for normal compilation, thus:
  35.  
  36.                 $ make test
  37.  
  38. API documentation
  39. -----------------
  40.  
  41.   Currently, there is none. However, the code is well commented and the
  42.   public API may be found in the "include" directory. The testcase sources
  43.   may also be of use in working out how to use it.
  44.  
  45.