Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-11-15 | Prepare release | Erlang/OTP | |
2017-11-09 | eldap: Repair Makefile | Hans Nilsson | |
2016-03-14 | Prepare release | Erlang/OTP | |
2016-02-25 | eldap: step vsn.mk | Hans Nilsson | |
2016-02-25 | eldap: fix error found by dialyzer | Hans Nilsson | |
2016-02-25 | Merge branch 'hans/eldap/unbind/OTP-13327' into maint | Hans Nilsson | |
Conflicts: lib/eldap/src/eldap.erl | |||
2016-02-22 | eldap: experimental impl of controls in LDAPMessage | Hans Nilsson | |
2016-02-22 | eldap: referral resultCode | Hans Nilsson | |
2016-02-19 | eldap: unbindRequest | Hans Nilsson | |
2015-06-23 | Prepare release | Erlang/OTP | |
2015-06-18 | Change license text to APLv2 | Bruce Yinhe | |
2015-05-20 | Merge branch 'jeffweiss/fix_eldap_timeout_documentation' | Henrik Nord | |
* jeffweiss/fix_eldap_timeout_documentation: Correct module in eldap timeout docs | |||
2015-05-13 | Revert "Prepare release" | Henrik Nord | |
This reverts commit e09dd66dc4d89c62ddfd8c19791f9678d5d787c6. | |||
2015-05-12 | Prepare release | Erlang/OTP | |
2015-05-11 | eldap: Remove doc man.3 warning | Hans Nilsson | |
2015-05-11 | Merge branch 'hans/eldap/cuddle_test_cases' | Hans Nilsson | |
* hans/eldap/cuddle_test_cases: eldap: Test suite uppdated to new time handling | |||
2015-05-09 | Correct module in eldap timeout docs | jeffweiss | |
Prior to this commit, the `eldap` documentation for the timeouts of `search/2` and `start_tls/3` referenced `erl_tar:open/2` instead of `eldap:open/2`. The relative link was correct, only the link label mistakenly pointed to `erl_tar`. This error was introduced in e9a97c3cfd7615e3efd0cbf1632a78b868fda49c. This commit corrects that mistake. | |||
2015-05-07 | eldap: update vsn.mk to 1.2 | Hans Nilsson | |
2015-05-06 | eldap: Test suite uppdated to new time handling | Hans Nilsson | |
2015-04-01 | Merge tag 'OTP-17.5' | Henrik Nord | |
=== OTP-17.5 === Changed Applications: - asn1-3.0.4 - common_test-1.10 - compiler-5.0.4 - crypto-3.5 - debugger-4.0.3 - dialyzer-2.7.4 - diameter-1.9 - eldap-1.1.1 - erts-6.4 - hipe-3.11.3 - inets-5.10.6 - kernel-3.2 - mnesia-4.12.5 - observer-2.0.4 - os_mon-2.3.1 - public_key-0.23 - runtime_tools-1.8.16 - ssh-3.2 - ssl-6.0 - stdlib-2.4 - syntax_tools-1.6.18 - test_server-3.8 - tools-2.7.2 - wx-1.3.3 Unchanged Applications: - cosEvent-2.1.15 - cosEventDomain-1.1.14 - cosFileTransfer-1.1.16 - cosNotification-1.1.21 - cosProperty-1.1.17 - cosTime-1.1.14 - cosTransactions-1.2.14 - edoc-0.7.16 - erl_docgen-0.3.7 - erl_interface-3.7.20 - et-1.5 - eunit-2.2.9 - gs-1.5.16 - ic-4.3.6 - jinterface-1.5.12 - megaco-3.17.3 - odbc-2.10.22 - orber-3.7.1 - ose-1.0.2 - otp_mibs-1.0.10 - parsetools-2.0.12 - percept-0.8.10 - reltool-0.6.6 - sasl-2.4.1 - snmp-5.1.1 - typer-0.9.8 - webtool-0.8.10 - xmerl-1.3.7 Conflicts: OTP_VERSION erts/vsn.mk lib/ssl/vsn.mk | |||
2015-03-31 | Prepare release | Erlang/OTP | |
2015-03-18 | Merge branch 'maint' | Zandra Hird | |
2015-03-18 | Merge branch 'jeffweiss/fix_eldap_doc_infinity_typo' into maint | Zandra Hird | |
* jeffweiss/fix_eldap_doc_infinity_typo: fix `infinity` typo in eldap docs | |||
2015-03-16 | Merge branch 'maint' | Hans Nilsson | |
2015-03-16 | eldap: uppdate version in vsn.mk | Hans Nilsson | |
2015-03-11 | fix `infinity` typo in eldap docs | jeffweiss | |
Prior to this commit the eldap docs mistakenly referenced an atom of `inifinity` for a possible timeout value. This commit corrects the timeout value to `infinity`. | |||
2015-02-18 | Merge branch 'maint' | Zandra Hird | |
2015-02-07 | Correctly process anon_auth option for eldap:open() | Steven Danna | |
Previously, it was impossible to set anon_auth to true. Making it difficult to anonymously bind: 1> {ok, Conn} = eldap:open(["localhost"], [{anon_auth, true}]). {ok,<0.34.0>} 2> eldap:simple_bind(Conn, "", ""). {error,anonymous_auth} With this change: 1> {ok, Conn} = eldap:open(["localhost"], [{anon_auth, true}]). {ok,<0.34.0>} 2> eldap:simple_bind(Conn, "", ""). ok NB: Users could previously work around this by calling simple_bind as follows: eldap:simple_bind(Conn, anon, anon) | |||
2014-12-19 | Merge branch 'maint' | Hans Nilsson | |
2014-12-19 | eldap: fix merge conflict | Hans Nilsson | |
2014-12-17 | eldap: Remove trailing white space. | Hans Nilsson | |
2014-12-17 | eldap: Test cases for a few return values (open, close) | Hans Nilsson | |
2014-12-17 | eldap: updated eldap:close in tests | Hans Nilsson | |
2014-12-17 | eldap: Makes close/1 return as documented. | Hans Nilsson | |
2014-12-17 | eldap: Corrects SSL over IPv6 test. | Hans Nilsson | |
2014-12-17 | eldap: Removes eldap_misc_SUITE that is now included in eldap_basic_SUITE. | Hans Nilsson | |
2014-12-17 | eldap: Add encode/decode tests. | Hans Nilsson | |
2014-12-17 | eldap: Merge eldap_connections_SUITE into eldab_basic_SUITE | Hans Nilsson | |
2014-12-17 | eldap: Adds ssl to connections test suite | Hans Nilsson | |
2014-12-17 | eldap: Updates basic test suite | Hans Nilsson | |
- Splits one large testcase into smaller ones. - Makes tests independent - Adds some tests. | |||
2014-12-12 | Merge branch 'maint' | Hans Nilsson | |
2014-12-12 | Merge branch 'hans/eldap/doc_fixes/OTP-12354' into maint | Hans Nilsson | |
2014-12-12 | Merge branch 'maint' | Marcus Arendt | |
2014-12-12 | add missing release notes | Marcus Arendt | |
2014-12-08 | eldap: Clarifies documentation for start_tls and search | Hans Nilsson | |
2014-11-28 | Merge branch 'maint' | Hans Nilsson | |
* maint: eldap: Fix timeout missing in ssl:connect | |||
2014-11-27 | eldap: Fix timeout missing in ssl:connect | Hans Nilsson | |
2014-11-03 | Merge branch 'danielwhite/eldap-password-modify/OTP-12282' | Marcus Arendt | |
* danielwhite/eldap-password-modify/OTP-12282: eldap: Add support for modifying passwords | |||
2014-10-30 | eldap: vsn.mk updated. | Hans Nilsson | |
2014-10-30 | eldap: extensibleMatch added. | Hans Nilsson | |