diff options
Diffstat (limited to 'lib/erl_docgen')
| -rw-r--r-- | lib/erl_docgen/doc/src/notes.xml | 25 | ||||
| -rwxr-xr-x | lib/erl_docgen/priv/bin/codeline_preprocessing.escript | 2 | ||||
| -rwxr-xr-x | lib/erl_docgen/priv/bin/github_link.escript | 2 | ||||
| -rwxr-xr-x | lib/erl_docgen/priv/bin/xml_from_edoc.escript | 2 | ||||
| -rw-r--r-- | lib/erl_docgen/priv/xsl/db_man.xsl | 2 | ||||
| -rw-r--r-- | lib/erl_docgen/src/docgen_otp_specs.erl | 4 | ||||
| -rw-r--r-- | lib/erl_docgen/vsn.mk | 2 | 
7 files changed, 31 insertions, 8 deletions
| diff --git a/lib/erl_docgen/doc/src/notes.xml b/lib/erl_docgen/doc/src/notes.xml index f75d2af5c4..7a09b62351 100644 --- a/lib/erl_docgen/doc/src/notes.xml +++ b/lib/erl_docgen/doc/src/notes.xml @@ -4,7 +4,7 @@  <chapter>    <header>      <copyright> -      <year>2004</year><year>2017</year> +      <year>2004</year><year>2018</year>        <holder>Ericsson AB. All Rights Reserved.</holder>      </copyright>      <legalnotice> @@ -31,7 +31,28 @@    </header>    <p>This document describes the changes made to the <em>erl_docgen</em> application.</p> -  <section><title>Erl_Docgen 0.7.3</title> +  <section><title>Erl_Docgen 0.8</title> + +    <section><title>Improvements and New Features</title> +      <list> +        <item> +          <p> +	    Add a hoverable element to the titles in the html +	    documentation with a link to github where the +	    documentation can be edited.</p> +          <p> +	    Make the anchors in the html User's Guide and system +	    documentation use the title of the sections instead of a +	    generated id.</p> +          <p> +	    Own Id: OTP-14979</p> +        </item> +      </list> +    </section> + +</section> + +<section><title>Erl_Docgen 0.7.3</title>      <section><title>Fixed Bugs and Malfunctions</title>        <list> diff --git a/lib/erl_docgen/priv/bin/codeline_preprocessing.escript b/lib/erl_docgen/priv/bin/codeline_preprocessing.escript index 67966b79e6..ce9303f86e 100755 --- a/lib/erl_docgen/priv/bin/codeline_preprocessing.escript +++ b/lib/erl_docgen/priv/bin/codeline_preprocessing.escript @@ -2,7 +2,7 @@  %% -*- erlang -*-  %% %CopyrightBegin%  %% -%% Copyright Ericsson AB 2009-2016. All Rights Reserved. +%% Copyright Ericsson AB 2009-2018. All Rights Reserved.  %%  %% Licensed under the Apache License, Version 2.0 (the "License");  %% you may not use this file except in compliance with the License. diff --git a/lib/erl_docgen/priv/bin/github_link.escript b/lib/erl_docgen/priv/bin/github_link.escript index 1b36fca202..e0f5a2f471 100755 --- a/lib/erl_docgen/priv/bin/github_link.escript +++ b/lib/erl_docgen/priv/bin/github_link.escript @@ -2,7 +2,7 @@  %% -*- erlang -*-  %% %CopyrightBegin%  %% -%% Copyright Ericsson AB 2010-2016. All Rights Reserved. +%% Copyright Ericsson AB 2010-2018. All Rights Reserved.  %%  %% Licensed under the Apache License, Version 2.0 (the "License");  %% you may not use this file except in compliance with the License. diff --git a/lib/erl_docgen/priv/bin/xml_from_edoc.escript b/lib/erl_docgen/priv/bin/xml_from_edoc.escript index b0e3764fae..38e4f2d923 100755 --- a/lib/erl_docgen/priv/bin/xml_from_edoc.escript +++ b/lib/erl_docgen/priv/bin/xml_from_edoc.escript @@ -2,7 +2,7 @@  %% -*- erlang -*-  %% %CopyrightBegin%  %% -%% Copyright Ericsson AB 2010-2016. All Rights Reserved. +%% Copyright Ericsson AB 2010-2018. All Rights Reserved.  %%  %% Licensed under the Apache License, Version 2.0 (the "License");  %% you may not use this file except in compliance with the License. diff --git a/lib/erl_docgen/priv/xsl/db_man.xsl b/lib/erl_docgen/priv/xsl/db_man.xsl index a5ad7ed5ae..27b2bd4066 100644 --- a/lib/erl_docgen/priv/xsl/db_man.xsl +++ b/lib/erl_docgen/priv/xsl/db_man.xsl @@ -3,7 +3,7 @@       #       # %CopyrightBegin%       # -     # Copyright Ericsson AB 2009-2016. All Rights Reserved. +     # Copyright Ericsson AB 2009-2018. All Rights Reserved.       #       # Licensed under the Apache License, Version 2.0 (the "License");       # you may not use this file except in compliance with the License. diff --git a/lib/erl_docgen/src/docgen_otp_specs.erl b/lib/erl_docgen/src/docgen_otp_specs.erl index 9f2b401f93..311ec1471a 100644 --- a/lib/erl_docgen/src/docgen_otp_specs.erl +++ b/lib/erl_docgen/src/docgen_otp_specs.erl @@ -1,7 +1,7 @@  %%  %% %CopyrightBegin%  %% -%% Copyright Ericsson AB 1996-2017. All Rights Reserved. +%% Copyright Ericsson AB 1996-2018. All Rights Reserved.  %%  %% Licensed under the Apache License, Version 2.0 (the "License");  %% you may not use this file except in compliance with the License. @@ -658,6 +658,8 @@ ot_name(Es, T) ->                              {atom,0,list_to_atom(Atom)},T]};          "tuple" when T =:= [] ->              {type,0,tuple,any}; +        "map" when T =:= [] -> +            {type,0,map,any};          Atom ->              {type,0,list_to_atom(Atom),T}      end. diff --git a/lib/erl_docgen/vsn.mk b/lib/erl_docgen/vsn.mk index a556b73103..0b24604daa 100644 --- a/lib/erl_docgen/vsn.mk +++ b/lib/erl_docgen/vsn.mk @@ -1 +1 @@ -ERL_DOCGEN_VSN = 0.7.3 +ERL_DOCGEN_VSN = 0.8 | 
