comparison .cms/lib/codemirror/mode/rpm/changes/index.html @ 0:78edf6b517a0 draft

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