- Feb 21, 2008
-
-
Alberto Massari authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@629886 13f79535-47bb-0310-9956-ffa450edef68
-
Alberto Massari authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@629868 13f79535-47bb-0310-9956-ffa450edef68
-
Alberto Massari authored
inet_addr was called directly (isntead of using wrap_inet_addr) leading to a dependency of the binary on ws2_32.dll git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@629840 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 20, 2008
-
-
Alberto Massari authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@629424 13f79535-47bb-0310-9956-ffa450edef68
-
Alberto Massari authored
Check for the callback pointer to be valid before each call, as a callback could be resetting it (XERCESC-1781) git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@629419 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 13, 2008
-
-
Boris Kolpackov authored
Make sure the base type was provided when trying to resolve the schema grammar (addition to the previous fix) (XERCESC-1777) git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@627295 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 12, 2008
-
-
Boris Kolpackov authored
In restriction checking, when looking for a declaration of a base element, use the schema grammar corresponding to the type this element is declared in (XERCESC-1777) git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@620798 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 05, 2008
-
-
Alberto Massari authored
SchemaInfo now makes a copy of the targetNSUri to avoid pointing to deleted memory if the corresponding SchemaGrammar gets deleted early; the schema URL is now replicated inside the constructor instead of relying on the caller to pass a duplicated string git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@618681 13f79535-47bb-0310-9956-ffa450edef68
-
- Jan 22, 2008
-
-
Alberto Massari authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@614272 13f79535-47bb-0310-9956-ffa450edef68
-
Alberto Massari authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@614270 13f79535-47bb-0310-9956-ffa450edef68
-
Alberto Massari authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@614259 13f79535-47bb-0310-9956-ffa450edef68
-
Alberto Massari authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@614235 13f79535-47bb-0310-9956-ffa450edef68
-
Alberto Massari authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@614188 13f79535-47bb-0310-9956-ffa450edef68
-
Alberto Massari authored
'make dist' didn't include extra files needed by tests; builddir variable can be undefined on some autoconf versions git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@614182 13f79535-47bb-0310-9956-ffa450edef68
-
Alberto Massari authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@614181 13f79535-47bb-0310-9956-ffa450edef68
-
- Jan 21, 2008
-
-
David Abram Cargill authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@613903 13f79535-47bb-0310-9956-ffa450edef68
-
- Jan 16, 2008
-
-
Alberto Massari authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@612452 13f79535-47bb-0310-9956-ffa450edef68
-
- Jan 10, 2008
-
-
Alberto Massari authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@610726 13f79535-47bb-0310-9956-ffa450edef68
-
- Jan 08, 2008
-
-
Alberto Massari authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@609971 13f79535-47bb-0310-9956-ffa450edef68
-
Alberto Massari authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@609904 13f79535-47bb-0310-9956-ffa450edef68
-
- Jan 07, 2008
-
-
Alberto Massari authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@609601 13f79535-47bb-0310-9956-ffa450edef68
-
Alberto Massari authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@609572 13f79535-47bb-0310-9956-ffa450edef68
-
- Jan 04, 2008
-
-
Alberto Massari authored
- If the URI contains several non-ASCII characters, the optimistic allocation (len*3) could run out of space (as each non-ASCII char would be replaced by at least 2 UTF-8 bytes, and each of them by 3 characters) -> use an XMLBuffer that can grow past the initial allocation - the static buffers used by printf were 2 bytes long, but sprintf would also write the NULL terminator - the converted UTF-8 string was converted partially, as the loop used the length of the original string instead of the length of the UTF-8 string - each UTF-8 byte was assumed to be a signed byte, but XMLByte is unsigned; so the b<0 test was never true (and why add 256 to the signed value to make it positive? the new number would be different) and the next text was accessing a static array of 128 items with indexes between 0 and 255 git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@608951 13f79535-47bb-0310-9956-ffa450edef68
-
Alberto Massari authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@608930 13f79535-47bb-0310-9956-ffa450edef68
-
- Jan 03, 2008
-
-
Alberto Massari authored
Removed autoconf-generated files from SVN (use the reconf script to generate them after getting the sources from SVN) git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@608555 13f79535-47bb-0310-9956-ffa450edef68
-
- Dec 20, 2007
-
-
Alberto Massari authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@605828 13f79535-47bb-0310-9956-ffa450edef68
-
Alberto Massari authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@605820 13f79535-47bb-0310-9956-ffa450edef68
-
- Dec 17, 2007
-
-
David Abram Cargill authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@604927 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 21, 2007
-
-
Alberto Massari authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@597129 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 12, 2007
-
-
David Abram Cargill authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@594002 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 05, 2007
-
-
James David Berry authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@592195 13f79535-47bb-0310-9956-ffa450edef68
-
James David Berry authored
Set ICU_CXXFLAGS for all files, not just the ICU transcoder, so that special cased code for ICU such as that in RangeToken.cpp, will not break for lack of these flags. git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@592193 13f79535-47bb-0310-9956-ffa450edef68
-
James David Berry authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@592189 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 09, 2007
-
-
David Abram Cargill authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@583166 13f79535-47bb-0310-9956-ffa450edef68
-
- Oct 08, 2007
-
-
David Abram Cargill authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@582791 13f79535-47bb-0310-9956-ffa450edef68
-
- Sep 20, 2007
-
-
David Abram Cargill authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@577837 13f79535-47bb-0310-9956-ffa450edef68
-
- Sep 19, 2007
-
-
David Abram Cargill authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@577322 13f79535-47bb-0310-9956-ffa450edef68
-
- Sep 13, 2007
-
-
David Abram Cargill authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@575387 13f79535-47bb-0310-9956-ffa450edef68
-
David Abram Cargill authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@575245 13f79535-47bb-0310-9956-ffa450edef68
-
- Sep 12, 2007
-
-
Alberto Massari authored
git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@575030 13f79535-47bb-0310-9956-ffa450edef68
-