readme.txt 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. Diff module - http://drupal.org/project/diff
  2. ============================================
  3. Diff enhances usage of node revisions by adding the following features:
  4. - Diff between node revisions on the 'Revisions' tab to view all the changes
  5. between any two revisions of a node.
  6. - Highlight changes inline while viewing a node to quickly see color-coded
  7. additions, changes, and deletions.
  8. - Preview changes as a diff before updating a node.
  9. It is also an API to compare any entities although this functionality is not
  10. exposed by the core Diff module.
  11. REQUIREMENTS
  12. ------------
  13. Drupal 7.x
  14. INSTALLATION
  15. ------------
  16. 1. Place the Diff module into your modules directory.
  17. This is normally the "sites/all/modules" directory.
  18. 2. Go to admin/build/modules. Enable the module.
  19. The Diff modules is found in the Other section.
  20. Read more about installing modules at http://drupal.org/node/70151
  21. See the configuration section below.
  22. UPGRADING
  23. ---------
  24. Any updates should be automatic. Just remember to run update.php!
  25. CONFIGURATION
  26. -------------
  27. Unlike the earlier version, the module now has a lot of configurable settings.
  28. Global settings can be found under Configuration > Content > Diff
  29. i.e. http://www.example.com/admin/config/content/diff
  30. Entity specific settings would be listed under the entities settings. This
  31. module only handles Node revisioning functionality, and these are detailed
  32. below.
  33. 1) Node revisioning settings
  34. Diff needs to be configured to be used with specific node types on your site.
  35. To enable any of Diff's options on a content type's settings page.
  36. e.g. http://www.example.com/admin/structure/types/manage/page
  37. a) Diff options
  38. Under "Compare revisions", enable the settings that you want;
  39. i) "Show View changes button on node edit form" adds a new "Preview" like
  40. submit button to node editing pages. This shows a diff preview.
  41. ii) "Enable the Revisions page for this content type" adds the revisioning
  42. tab to content. This allows users to compare between various revisions
  43. that they have access to.
  44. iii) "Standard comparison preview" option allows you to control how the most
  45. current revision is show on the revision comparision page.
  46. b) Publishing options
  47. It is strongly advised that you also enable the automatic creation of
  48. revisions on any content types you want to use this with. If you do not do
  49. this, chances are there will be limited revisioning information available to
  50. compare.
  51. Under "Publishing options", enable "Create new revision".
  52. 2) Field revisioning settings
  53. Global settings per field type can be found here:
  54. http://www.example.com/admin/config/content/diff/fields
  55. "Show field title" toggles field title visibility on the comparison page.
  56. "Markdown callback" is the callback used to render the field when viewing the
  57. page in the "Marked down" page view.
  58. "Line counter" is an optional. This shows the approximate line number where
  59. the change occurred. This is an approximate counter only.
  60. Other fields add additional settings here.
  61. 3) Entity revisioning settings
  62. Global configurable settings limited to node entities.
  63. a) Show entity label header
  64. This provides a field like title for the entity label field.
  65. i.e. For nodes, this provides a header for the node's title.
  66. b) Treat diff pages as administrative
  67. By default, the revisioning pages are administrative, i.e. they will use the
  68. administration theme. You can block this by unchecking this option.
  69. 4) Global settings
  70. A small number of new features have been added to the 7.x-3.x branch, these
  71. include the ability to change the leading and trailing lines in the comparison,
  72. a new CSS theme for the diff pages, new JScript options for the revisioning
  73. selection form and options to help prevent cross operating systems in relation
  74. to line endings.
  75. http://www.example.com/admin/config/content/diff
  76. Technical
  77. ---------
  78. - Diff compares the raw data, not the filtered output, making it easier to see
  79. changes to HTML entities, etc.
  80. - The diff engine itself is a GPL'ed php diff engine from phpwiki.
  81. API
  82. ---
  83. See diff.api.php
  84. Maintainers
  85. -----------
  86. - realityloop (Brian Gilbert)
  87. - Alan D. (Alan Davison)
  88. - dww (Derek Wright)
  89. - moshe (Moshe Weitzman)
  90. - rötzi (Julian)
  91. - yhahn (Young Hahn)