yaml/yaml.yml

Sat, 24 Mar 2012 21:40:49 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 24 Mar 2012 21:40:49 +0100
changeset 414
fd611cde817f
permissions
-rw-r--r--

Introduce many changes to the buildconf and source code including:
(01) clean up, update, and partially update default config files,
(02) seems that Melware is unable to perform release engineering so
update chan_capi to new daily snapshot to solve echo problems,
(03) correct Asterisk inadequate hard coded gmime version check,
(04) force postgresql pthreads linkage to solve build problem,
(05) remove buggy hard coded LibXML configure definitions,
(06) remove local architecture specification to allow GCC
internal logic to determine proper CPU type instead,
(07) remove vendor sound install target causing uncontrolled
downloads and non RPM managed file installation,
(08) solve long outstanding bug in tcptls causing Asterisk
to ignore any intermediate CA certificate signatures,
(09) back out Digium engineering team's bright idea of replacing the
very portable and pervasive POSIX rand(1) with ast_random(), and
then not even implementing it causing all references to fail in
platforms not providing the very new POSIX.1-2008 mkdtemp(3)
function only distributed by BSD and some Linux,
(10) withdraw advanced linker symbol manipulations from SVR5 builds
until either Binutils supports hybrid versioned and anonymous
linker scripts or GCC stops hard coding versioned linker scripts,
(11) correct missing library linkage, some tailored to a specific OS,
(12) remove outdated logic for the no longer distributed gmime-config(1),
(13) remove local gmime buildconf hacks now that Asterisk has corrected
their own build configuration to almost portably support gmime,
(14) solve build problems relating to undetected LibXML paths,
(15) correct erroneous out of tree include definitions,
(16) improve some variable and comment naming,
(17) simplify sound language path hierarchy creation,
and correct australian english installation logic.

     1 %YAML 1.1   # Reference card
     2 ---
     3 Collection indicators:
     4      '? ' : Key indicator.
     5      ': ' : Value indicator.
     6      '- ' : Nested series entry indicator.
     7      ', ' : Separate in-line branch entries.
     8      '[]' : Surround in-line series branch.
     9      '{}' : Surround in-line keyed branch.
    10 Scalar indicators:
    11     '''' : Surround in-line unescaped scalar ('' escaped ').
    12      '"' : Surround in-line escaped scalar (see escape codes below).
    13      '|' : Block scalar indicator.
    14      '>' : Folded scalar indicator.
    15      '-' : Strip chomp modifier ('|-' or '>-').
    16      '+' : Keep chomp modifier ('|+' or '>+').
    17      1-9 : Explicit indentation modifier ('|1' or '>2').
    18          # Modifiers can be combined ('|2-', '>+1').
    19 Alias indicators:
    20      '&' : Anchor property.
    21      '*' : Alias indicator.
    22 Tag property: # Usually unspecified.
    23     none : Unspecified tag (automatically resolved by application).
    24    '!'   : Non-specific tag (by default, "!!map"/"!!seq"/"!!str").
    25    '!foo': Primary (by convention, means a local "!foo" tag).
    26   '!!foo': Secondary (by convention, means "tag:yaml.org,2002:foo").
    27  '!h!foo': Requires "%TAG !h! <prefix>" (and then means "<prefix>foo").
    28  '!<foo>': Verbatim tag (always means "foo").
    29 Document indicators:
    30     '%'  : Directive indicator.
    31    '---' : Document header.
    32    '...' : Document terminator.
    33 Misc indicators:
    34     ' #' : Throwaway comment indicator.
    35     '`@' : Both reserved for future use.
    36 Special keys:
    37     '='  : Default "value" mapping key.
    38     '<<' : Merge keys from another mapping.
    39 Core types: # Default automatic tags.
    40     '!!map' : [ Hash table, dictionary, mapping ]
    41     '!!seq' : [ List, array, tuple, vector, sequence ]
    42     '!!str' : Unicode string
    43 More types:
    44     '!!set' : { cherries, plums, apples }
    45    '!!omap' : [ one: 1, two: 2 ]
    46 Language Independent Scalar types:
    47     { ~, null }               : Null (no value).
    48     { 1234, 0x4D2, 02333 }    : [ Decimal int, Hexadecimal int, Octal int ]
    49     { 1_230.15, 12.3015e+02 } : [ Fixed float, Exponential float ]
    50     { .inf, -.Inf, .NAN }     : [ Infinity (float), Negative, Not a number ]
    51     { Y, true, Yes, ON  }     : Boolean true
    52     { n, FALSE, No, off }     : Boolean false
    53     ? !!binary >
    54         R0lG...BADS=
    55     : >-
    56         Base 64 binary value.
    57 Escape codes:
    58  Numeric   : { "\xXX": 8-bit, "\uXXXX": 16-bit, "\UXXXXXXXX": 32-bit }
    59  Protective: { "\\": '\', "\"": '"', "\ ": ' ', "\<TAB>": "<TAB>", "\^": '^' }
    60  C: { "\a": BEL, "\b": BS, "\f": FF, "\n": LF, "\r": CR, "\t": TAB, "\v": VTAB }
    61  Additional: { "\e": ESC, "\0": NUL, "\_": NBSP, "\N": NEL, "\L": LS, "\P": PS }
    62 ...

mercurial