Subversion-Projekte lars-tiefland.ci

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
776 lars 1
<!doctype html>
2
<title>CodeMirror: RPM changes mode</title>
3
<meta charset="utf-8" />
4
<link rel=stylesheet href="../../doc/docs.css">
5
<link rel="stylesheet" href="../../../lib/codemirror.css">
6
<script src="../../../lib/codemirror.js"></script>
7
<script src="changes.js"></script>
8
<link rel="stylesheet" href="../../../doc/docs.css">
9
<style type="text/css">
10
    .CodeMirror {
11
        border-top: 1px solid black;
12
        border-bottom: 1px solid black;
13
    }
14
</style>
15
<div id=nav>
16
    <a href="http://codemirror.net">
17
        <h1>CodeMirror</h1>
18
        <img id=logo src="../../../doc/logo.png">
19
    </a>
20
    <ul>
21
        <li>
22
            <a href="../../../index.html">Home</a>
23
            <li>
24
                <a href="../../../doc/manual.html">Manual</a>
25
                <li>
26
                    <a href="https://github.com/codemirror/codemirror">Code</a>
27
    </ul>
28
    <ul>
29
        <li>
30
            <a href="../../index.html">Language modes</a>
31
            <li>
32
                <a class=active href="#">RPM changes</a>
33
    </ul>
34
</div>
35
<article>
36
    <h2>RPM changes mode</h2>
37
    <div>
38
        <textarea id="code" name="code"> ------------------------------------------------------------------- Tue Oct 18 13:58:40 UTC 2011 - misterx@example.com - Update to r60.3 - Fixes bug in the reflect package * disallow Interface method on Value obtained via unexported name -------------------------------------------------------------------
39
            Thu Oct 6 08:14:24 UTC 2011 - misterx@example.com - Update to r60.2 - Fixes memory leak in certain map types ------------------------------------------------------------------- Wed Oct 5 14:34:10 UTC 2011 - misterx@example.com - Tweaks for
40
            gdb debugging - go.spec changes: - move %go_arch definition to %prep section - pass correct location of go specific gdb pretty printer and functions to cpp as HOST_EXTRA_CFLAGS macro - install go gdb functions & printer - gdb-printer.patch
41
            - patch linker (src/cmd/ld/dwarf.c) to emit correct location of go gdb functions and pretty printer </textarea>
42
    </div>
43
    <script>
44
        var editor = CodeMirror.fromTextArea(document.getElementById("code"),
45
        {
46
            mode:
47
            {
48
                name: "changes"
49
            },
50
            lineNumbers: true,
51
            indentUnit: 4
52
        });
53
    </script>
54
    <p>
55
        <strong>MIME types defined:</strong> <code>text/x-rpm-changes</code>.</p>
56
</article>