~ubuntu-branches/ubuntu/trusty/erlang/trusty

« back to all changes in this revision

Viewing changes to lib/dialyzer/test/r9c_tests_SUITE_data/src/asn1/notes_history.sgml

  • Committer: Bazaar Package Importer
  • Author(s): Clint Byrum
  • Date: 2011-05-05 15:48:43 UTC
  • mfrom: (3.5.13 sid)
  • Revision ID: james.westby@ubuntu.com-20110505154843-0om6ekzg6m7ugj27
Tags: 1:14.b.2-dfsg-3ubuntu1
* Merge from debian unstable.  Remaining changes:
  - Drop libwxgtk2.8-dev build dependency. Wx isn't in main, and not
    supposed to.
  - Drop erlang-wx binary.
  - Drop erlang-wx dependency from -megaco, -common-test, and -reltool, they
    do not really need wx. Also drop it from -debugger; the GUI needs wx,
    but it apparently has CLI bits as well, and is also needed by -megaco,
    so let's keep the package for now.
  - debian/patches/series: Do what I meant, and enable build-options.patch
    instead.
* Additional changes:
  - Drop erlang-wx from -et
* Dropped Changes:
  - patches/pcre-crash.patch: CVE-2008-2371: outer level option with
    alternatives caused crash. (Applied Upstream)
  - fix for ssl certificate verification in newSSL: 
    ssl_cacertfile_fix.patch (Applied Upstream)
  - debian/patches/series: Enable native.patch again, to get stripped beam
    files and reduce the package size again. (build-options is what
    actually accomplished this)
  - Remove build-options.patch on advice from upstream and because it caused
    odd build failures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!doctype chapter PUBLIC "-//Stork//DTD chapter//EN">
 
2
<!-- 
 
3
 ``The contents of this file are subject to the Erlang Public License,
 
4
 Version 1.1, (the "License"); you may not use this file except in
 
5
 compliance with the License. You should have received a copy of the
 
6
 Erlang Public License along with this software. If not, it can be
 
7
 retrieved via the world wide web at http://www.erlang.org/.
 
8
 
 
9
 Software distributed under the License is distributed on an "AS IS"
 
10
 basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
 
11
 the License for the specific language governing rights and limitations
 
12
 under the License.
 
13
 
 
14
 The Initial Developer of the Original Code is Ericsson Utvecklings AB.
 
15
 Portions created by Ericsson are Copyright 1999, Ericsson Utvecklings
 
16
 AB. All Rights Reserved.''
 
17
 
 
18
     $Id: notes_history.sgml,v 1.1 2008/12/17 09:53:31 mikpe Exp $
 
19
-->
 
20
<chapter>
 
21
  <header>
 
22
    <title>ASN1 Release Notes (Old)</title>
 
23
    <prepared>Kenneth Lundin</prepared>
 
24
    <responsible>Kenneth Lundin</responsible>
 
25
    <docno></docno>
 
26
    <approved>Kenneth Lundin</approved>
 
27
    <checked>Kenneth Lundin</checked>
 
28
    <date>98-02-02</date>
 
29
    <rev>A</rev>
 
30
    <file>notes_history.sgml</file>
 
31
  </header>
 
32
  
 
33
  <p>This document describes the changes made to old versions of the <c>asn1</c> application.
 
34
 
 
35
  <section>
 
36
    <title>ASN1 0.8.1</title>
 
37
    <p>This is the first release of the ASN1 application. This version is released
 
38
      for beta-testing. Some functionality will be added until the 1.0 version is
 
39
      released. A list of missing features and restrictions can be found in the
 
40
      chapter below.
 
41
    
 
42
    <section>
 
43
      <title>Missing features and other restrictions</title>
 
44
      <list>
 
45
        <item> 
 
46
          <p>The encoding rules BER and PER (aligned) is supported. <em>PER (unaligned) 
 
47
              IS NOT SUPPORTED</em>.
 
48
        <item> 
 
49
          <p>NOT SUPPORTED types <c>ANY</c> and <c>ANY DEFINED BY</c> 
 
50
            (is not in the standard any more).
 
51
        <item> 
 
52
          <p>NOT SUPPORTED types <c>EXTERNAL</c> and <c>EMBEDDED-PDV</c>. 
 
53
        <item> 
 
54
          <p>NOT SUPPORTED type <c>REAL</c> (planned to  be implemented). 
 
55
        <item> 
 
56
          <p>The code generation support for value definitions in the ASN.1 notation is very limited
 
57
            (planned to be enhanced).
 
58
        <item>
 
59
          <p>The support for constraints is limited to:
 
60
          <list>
 
61
            <item><p>
 
62
                SizeConstraint  SIZE(X)
 
63
            <item><p>
 
64
                SingleValue     (1)
 
65
            <item><p>
 
66
                ValueRange      (X..Y)
 
67
            <item><p>
 
68
                PermittedAlpabet FROM (but not for BMPString and UniversalString when generating PER).
 
69
          </list>
 
70
          <p>Complex expressions in constraints is not supported (planned to be extended).
 
71
        <item> 
 
72
          <p>The current version of the compiler has very limited error checking:
 
73
            <list>
 
74
            <item><p>Stops at first syntax error.
 
75
            <item><p>Does not stop when a reference to an undefined type is found , 
 
76
                but prints an error message. Compilation of the generated 
 
77
                Erlang module will then fail.
 
78
            <item><p>A whole number of other semantical controls is currently missing. This
 
79
                means that the compiler will give little or bad help to detect what's wrong
 
80
                with an ASN.1 specification, but will mostly work very well when the
 
81
                ASN.1 specification is correct.
 
82
          </list>
 
83
        <item> 
 
84
          <p>The maximum INTEGER supported in this version is a signed 64 bit integer. This
 
85
            limitation is probably quite reasonable. (Planned to be extended).
 
86
        <item> 
 
87
          <p>Only AUTOMATIC TAGS supported for PER.
 
88
        <item> 
 
89
          <p>Only EXPLICIT and IMPLICIT TAGS supported for BER.
 
90
        <item> 
 
91
          <p>The compiler supports decoding of BER-data with indefinite length but it is 
 
92
            not possible to produce data with indefinite length with the encoder. 
 
93
      </list>
 
94
    </section>
 
95
          
 
96
  </section>
 
97
</chapter>
 
98
 
 
99
 
 
100