Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-24 | Merge tag 'OTP_R16B03-1' | Magnus Lidén | |
The R16B03-1 release | |||
2014-01-24 | Prepare releaseOTP_R16B03-1 | Erlang/OTP | |
2014-01-21 | Merge branch 'maint' | Magnus Lidén | |
2014-01-21 | [xmerl] Fix problem with header of next XML document is in the buffer | Lars Thorsen | |
when using xmerl_sax_parser:stream/2 function. | |||
2014-01-21 | [xmerl] Fix bug in SAX parser when next doc start in the same buffer | Lars Thorsen | |
2013-12-10 | Merge tag 'OTP_R16B03' | Magnus Lidén | |
The R16B03 release Conflicts: lib/sasl/vsn.mk | |||
2013-12-09 | Prepare releaseOTP_R16B03 | Erlang/OTP | |
2013-11-06 | Merge branch 'maint' | Fredrik Gustafsson | |
2013-11-06 | Merge branch 'richcarl/xmerl-avoid-code-server-serialization/OTP-11463' into ↵ | Fredrik Gustafsson | |
maint * richcarl/xmerl-avoid-code-server-serialization/OTP-11463: Avoid serialization on code_server in xmerl:export() | |||
2013-11-05 | Merge branch 'maint' | Fredrik Gustafsson | |
2013-11-05 | Avoid serialization on code_server in xmerl:export() | Richard Carlsson | |
The inheritance mechanism in xmerl used to use 'catch apply(M,F,Args)' to try different modules M until one was found that had a function F/A. However, when M:F/A does not exist, apply/3 will trap to error_handler:undefined_function/3, which will call code:ensure_loaded(M), making a synchronous request to the code server process. If many processes tried to use xmerl:export() concurrently, they would get serialized waiting for the code server process. This patch uses erlang:function_exported/3 instead to check if M:F/A exists. If M exists, it should already have been loaded at that point due to the inheritance checking in the xmerl:callbacks/1 function. | |||
2013-11-04 | xmerl: Use context namespace declarations to resolve prefix node tests | Daniel White | |
Previously, a match would not be found if the namespace prefix in the XPath query was not contained in the original document. This allows the `namespace' option to provide a prefix that will be resolved to a namespace URI. See Section 2.3 of the XPath 1.0 specification for the behaviour of 'NCName:*' node tests. | |||
2013-11-04 | xmerl: Look up unknown prefixes in xmlContext when matching attributes | Daniel White | |
The core use case is a query where the original prefix in the scanned document is unknown (or varying). For example: xmerl_xpath:scan("//@ns:name", Doc, [{namespace, [{"ns", Uri}]}]) Previously, this would only return a result if the namespace prefix was an exact match. | |||
2013-11-04 | xmerl: Add tests for XPath queries that resolve the context namespace | Daniel White | |
Ensures that both the original namespace prefix and a namespace prefix provided to the xmlContext will both return the same sets of nodes. | |||
2013-10-14 | Merge branch 'maint' | Fredrik Gustafsson | |
2013-10-14 | Merge branch 'fenollp/treewide_remove_unexpected_0xff/OTP-11323' into maint | Fredrik Gustafsson | |
* fenollp/treewide_remove_unexpected_0xff/OTP-11323: Remove ^L characters hidden randomly in the code. Not those used in text files as delimiters. | |||
2013-09-17 | Merge tag 'OTP_R16B02' | Magnus Lidén | |
The R16B02 release Conflicts: lib/sasl/vsn.mk | |||
2013-09-16 | Prepare releaseOTP_R16B02 | Erlang/OTP | |
2013-09-12 | Remove ^L characters hidden randomly in the code. Not those used in text ↵ | Pierre Fenoll | |
files as delimiters. While working on a tool that processes Erlang code and testing it against this repo, I found out about those little sneaky 0xff. I thought it may be of help to other people build such tools to remove non-conforming-to-standard characters. | |||
2013-08-07 | Merge branch 'maint' | Fredrik Gustafsson | |
2013-08-06 | xmerl: fix typos | Fredrik Gustafsson | |
2013-04-19 | Convert XML files to UTF-8 | Hans Bolinder | |
2013-04-19 | Convert XML files to UTF-8, where needed | Hans Bolinder | |
2013-04-19 | Remove the "coding: utf-8" comment from all Erlang source files | Hans Bolinder | |
2013-02-22 | Update copyright years | Björn-Egil Dahlberg | |
2013-01-29 | Prepare releaseOTP_R16A_RELEASE_CANDIDATE | Erlang/OTP | |
2013-01-18 | Merge branch 'nox/enable-silent-rules/OTP-10726' | Björn-Egil Dahlberg | |
* nox/enable-silent-rules/OTP-10726: Implement ./otp_build configure --enable-silent-rules | |||
2013-01-15 | Implement ./otp_build configure --enable-silent-rules | Anthony Ramine | |
With silent rules, the output of make is less verbose and compilation warnings are easier to spot. Silent rules are disabled by default and can be disabled or enabled at will by make V=0 and make V=1. | |||
2013-01-09 | Prepare OTP files for Unicode as default encoding | Hans Bolinder | |
2013-01-09 | Fix some FOP warnings | Hans Bolinder | |
Examples overflowing the width of PDF pages have been fixed. The remaining warnings are due to table cells, and require more work. | |||
2012-08-31 | Update copyright years | Björn-Egil Dahlberg | |
2012-06-05 | Update to work with whitespace in exec path | Lukas Larsson | |
OTP-10106 OTP-10107 | |||
2012-04-25 | Update release notes | Erlang/OTP | |
2012-04-23 | Fix continuation bug in parse_default_decl_1/2 | Lars Thorsen | |
2012-04-01 | Prepare releaseOTP_R15B01 | Erlang/OTP | |
2012-03-30 | Update copyright years | Björn-Egil Dahlberg | |
2012-03-28 | [xmerl] Fix bug for comments in XSD files | Lars Thorsen | |
2012-03-28 | [xmerl] Fix error message and documentation bug | Lars Thorsen | |
2012-03-21 | Fix continuation error | Lars Thorsen | |
2012-03-21 | Remove unused file | Lars Thorsen | |
2012-01-13 | Add missing spaces in xmerl doc | Ricardo Catalinas Jiménez | |
2012-01-04 | xmerl: Ignore unused variable in xmerl_uri.erl | Björn-Egil Dahlberg | |
2011-12-13 | [xmerl] Remove trailing blanks | Lars Thorsen | |
OTP-9821 | |||
2011-12-13 | [xmerl] Fix bug in namespace handling for attributes | Lars Thorsen | |
The uniqueness check of attributes failed when the namespace_conformant flag was set to true. | |||
2011-12-12 | Prepare release | Erlang/OTP | |
2011-12-09 | Update copyright years | Björn-Egil Dahlberg | |
2011-12-05 | Fix misspelling of chosen | Tuncer Ayaz | |
2011-11-21 | Treat , as special in xmerl_xpath_scan. | Anneli Cuss | |
2011-11-11 | Fix character check of non-characters due to change in unicode module | Lars Thorsen | |
2011-11-11 | Fix bugs and add a flag to skip comments | Lars Thorsen | |
Add flag {comments, Flag} to xmerl_scan for filtering of comments. Default (true) is that xmlComment records are returned from the scanner and this flag should be set to false if one don't want comments in the output. Fix some bugs to get the test cases to run clean. |