index.html 1.7 KB

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