diff options
author | Erlang/OTP <[email protected]> | 2011-03-14 18:18:42 +0100 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2011-03-14 18:18:42 +0100 |
commit | 91b2e57ea0e3ab794d4b57a12ef10205383525a5 (patch) | |
tree | a6f86f2dd5fba88e45d266f86e2bee0711c4d49e /lib/edoc/doc | |
parent | 34534ab6f713c9b835e40e72fc23de0dd781da08 (diff) | |
download | otp-91b2e57ea0e3ab794d4b57a12ef10205383525a5.tar.gz otp-91b2e57ea0e3ab794d4b57a12ef10205383525a5.tar.bz2 otp-91b2e57ea0e3ab794d4b57a12ef10205383525a5.zip |
Prepare releaseOTP_R14B02
Diffstat (limited to 'lib/edoc/doc')
-rw-r--r-- | lib/edoc/doc/src/notes.xml | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/lib/edoc/doc/src/notes.xml b/lib/edoc/doc/src/notes.xml index afcccf22b5..c18a126264 100644 --- a/lib/edoc/doc/src/notes.xml +++ b/lib/edoc/doc/src/notes.xml @@ -31,6 +31,61 @@ <p>This document describes the changes made to the EDoc application.</p> +<section><title>Edoc 0.7.7</title> + + <section><title>Fixed Bugs and Malfunctions</title> + <list> + <item> + <p> Add encoding when parsing Wiki text. EDoc used to + fail on strings such as "���". (Thanks to Richard + Carlsson.) </p> + <p> + Own Id: OTP-9109</p> + </item> + </list> + </section> + + + <section><title>Improvements and New Features</title> + <list> + <item> + <p> It is now possible to use Erlang specifications and + types in EDoc documentation. Erlang specifications and + types will be used unless there is also a function + specification (<c>@spec</c>) or a type alias + (<c>@type</c>) with the same name. In the current + implementation the placement of <c>-spec</c> matters: it + should be placed where the <c>@spec</c> would otherwise + have been placed. </p> + <p>Not all Erlang types are included in the + documentation, but only those exported by some + <c>export_type</c> declaration or used by some documented + Erlang specification (<c>-spec</c>). </p> + <p> There is currently no support for overloaded Erlang + specifications. </p> + <p> The syntax definitions of EDoc have been augmented to + cope with most of the Erlang types. (But we recommend + that Erlang types should be used instead.) </p> + <p> <c>edoc:read_source()</c> takes one new option, + <c>report_missing_types</c>. <c>edoc_layout:module()</c> + takes one new option, <c>pretty_printer</c>. </p> + <p> + Own Id: OTP-8525</p> + </item> + <item> + <p> The <c>edoc_lib</c> module is meant to be private, + but since it is referred to from other man pages it has + been included in the OTP documentation. The modifications + introduced in this ticket make all functions private + except those referred to from other pages. </p> + <p> + Own Id: OTP-9110</p> + </item> + </list> + </section> + +</section> + <section><title>Edoc 0.7.6.8</title> <section><title>Improvements and New Features</title> |