index.html 2.1 KB

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