summaryrefslogtreecommitdiff
path: root/ACEXML/README
diff options
context:
space:
mode:
Diffstat (limited to 'ACEXML/README')
-rw-r--r--ACEXML/README17
1 files changed, 0 insertions, 17 deletions
diff --git a/ACEXML/README b/ACEXML/README
deleted file mode 100644
index 1e65588029e..00000000000
--- a/ACEXML/README
+++ /dev/null
@@ -1,17 +0,0 @@
-$Id$
-
-ACE XML PARSER Framework README file
-
-* Character set
-
-ACE XML only deal with pure unicode encoding. I.e., ACE XML
-does not care about language specific encoding information.
-
-* SAX - The Simple API for XML
-
-ACE XML Parser interfaces follows the the design of SAX 2.0, which is
-a public domain specification for Java. The major difference between
-ACE XML Parser interfaces and SAX is that we added an reference of
-ACEXML_Env to every SAX method to accomodate platforms/compilers that
-don't support C++ exceptions. SAX is defined by David Megginson
-<david@megginson.com>