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

..03-May-2022-

include/H04-Nov-2021-16,76511,295

win32/H04-Nov-2021-3735

AUTHORSH A D04-Nov-2021208 65

CopyrightH A D04-Nov-20211.3 KiB2419

DOCBparser.cH A D04-Nov-20218.6 KiB306140

HTMLparser.cH A D04-Nov-2021208.7 KiB7,2885,080

HTMLtree.cH A D04-Nov-202132.6 KiB1,187747

READMEH A D04-Nov-20211.2 KiB4129

README.kitware.mdH A D04-Nov-2021508 129

SAX.cH A D04-Nov-20215.4 KiB181133

SAX2.cH A D04-Nov-202184.3 KiB3,0372,106

buf.cH A D04-Nov-202133.3 KiB1,352808

buf.hH A D04-Nov-20212.3 KiB7342

c14n.cH A D04-Nov-202169.1 KiB2,2351,288

catalog.cH A D04-Nov-202196.9 KiB3,8292,607

chvalid.cH A D04-Nov-202112 KiB337207

config.h.cmake.inH A D04-Nov-20218.2 KiB289195

debugXML.cH A D04-Nov-2021101.7 KiB3,4242,681

dict.cH A D04-Nov-202130.8 KiB1,299867

elfgcchack.hH A D04-Nov-2021656.3 KiB17,81916,232

enc.hH A D04-Nov-2021827 3315

encoding.cH A D04-Nov-2021142.5 KiB3,9792,972

entities.cH A D04-Nov-202131.3 KiB1,164781

error.cH A D04-Nov-202126.7 KiB999683

globals.cH A D04-Nov-202129.1 KiB1,127755

hash.cH A D04-Nov-202129.6 KiB1,147719

legacy.cH A D04-Nov-202137.9 KiB1,344667

libxml.hH A D04-Nov-20213.3 KiB13579

list.cH A D04-Nov-202115.9 KiB780405

nanoftp.cH A D04-Nov-202151.8 KiB2,1191,569

nanohttp.cH A D04-Nov-202147.4 KiB1,9001,380

parser.cH A D04-Nov-2021429.8 KiB15,55310,589

parserInternals.cH A D04-Nov-202161.5 KiB2,1651,345

pattern.cH A D04-Nov-202162.1 KiB2,6221,833

relaxng.cH A D04-Nov-2021359.6 KiB11,1028,552

save.hH A D04-Nov-20211,018 3719

schematron.cH A D04-Nov-202147.1 KiB1,7881,249

threads.cH A D04-Nov-202126.5 KiB1,050732

timsort.hH A D04-Nov-202113.8 KiB602434

tree.cH A D04-Nov-2021257 KiB10,1846,702

triodef.hH A D04-Nov-20216.8 KiB229168

trionan.cH A D04-Nov-202122.5 KiB915545

trionan.hH A D04-Nov-20212 KiB8529

uri.cH A D04-Nov-202165.2 KiB2,5621,582

valid.cH A D04-Nov-2021191 KiB7,1394,918

xinclude.cH A D04-Nov-202169 KiB2,6581,823

xlink.cH A D04-Nov-20214.5 KiB18489

xmlIO.cH A D04-Nov-2021103.3 KiB4,1242,512

xmlmemory.cH A D04-Nov-202126.5 KiB1,164786

xmlmodule.cH A D04-Nov-202110.6 KiB469240

xmlreader.cH A D04-Nov-2021166.5 KiB6,0344,096

xmlregexp.cH A D04-Nov-2021217.4 KiB8,2656,163

xmlsave.cH A D04-Nov-202178.6 KiB2,7251,847

xmlschemas.cH A D04-Nov-2021812.4 KiB29,17419,394

xmlschemastypes.cH A D04-Nov-2021176.3 KiB6,2774,572

xmlstring.cH A D04-Nov-202126.2 KiB1,051577

xmlunicode.cH A D04-Nov-202199.9 KiB3,1801,620

xmlwriter.cH A D04-Nov-2021122.1 KiB4,7393,173

xpath.cH A D04-Nov-2021399.9 KiB14,7369,902

xpointer.cH A D04-Nov-202175.4 KiB2,9701,912

xzlib.cH A D04-Nov-202124.2 KiB816638

README

1
2                  XML toolkit from the GNOME project
3
4Full documentation is available on-line at
5    http://xmlsoft.org/
6
7This code is released under the MIT Licence see the Copyright file.
8
9To build on an Unixised setup:
10   ./configure ; make ; make install
11   if the ./configure file does not exist, run ./autogen.sh instead.
12To build on Windows:
13   see instructions on win32/Readme.txt
14
15To assert build quality:
16   on an Unixised setup:
17      run make tests
18   otherwise:
19       There is 3 standalone tools runtest.c runsuite.c testapi.c, which
20       should compile as part of the build or as any application would.
21       Launch them from this directory to get results, runtest checks
22       the proper functioning of libxml2 main APIs while testapi does
23       a full coverage check. Report failures to the list.
24
25To report bugs, follow the instructions at:
26  http://xmlsoft.org/bugs.html
27
28A mailing-list xml@gnome.org is available, to subscribe:
29    http://mail.gnome.org/mailman/listinfo/xml
30
31The list archive is at:
32    http://mail.gnome.org/archives/xml/
33
34All technical answers asked privately will be automatically answered on
35the list and archived for public access unless privacy is explicitly
36required and justified.
37
38Daniel Veillard
39
40$Id$
41

README.kitware.md

1# libxml2 fork for VTK
2
3This branch contains changes required to embed libxml2 into VTK. This
4includes changes made primarily to the build system to allow it to be embedded
5into another source tree as well as a header to facilitate mangling of the
6symbols to avoid conflicts with other copies of the library within a single
7process.
8
9  * Ignore whitespace errors for VTK's commit checks.
10  * Integrate the CMake build with VTK's module system.
11  * Mangle all exported symbols to have a `vtklibxml2_` prefix.
12