source: sipes/modules_contrib/diff/readme.txt @ c43ea01

stableversion-3.0
Last change on this file since c43ea01 was 177a560, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego el directorio de modulos contribuidos de drupal

  • Propiedad mode establecida a 100644
File size: 1.3 KB
Línea 
1
2Diff 2.x for Drupal 6.x
3-----------------------
4Diff enhances usage of node revisions by adding the following features:
5
6- diff between node revisions on the 'Revisions' tab to view all the changes
7  between any two revisions of a node
8- highlight changes inline while viewing a node to quickly see color-coded
9  additions, changes, and deletions
10- preview changes as a diff before updating a node
11
12
13Installation
14------------
15Diff can be installed like any other Drupal module -- place it in
16the modules directory for your site and enable it on the `admin/build/modules`
17page.
18
19Diff needs to be configured to be used with specific node types on your site.
20Enable any of diff's options on a content type's settings page (e.g.
21`admin/content/node-type/page`).
22
23
24Technical
25---------
26- Diff compares the raw data, not the filtered output, making it easier to see
27changes to HTML entities, etc.
28- The diff engine itself is a GPL'ed php diff engine from phpwiki.
29
30API
31---
32This module offers `hook_diff()` which modules may use to inject their changes
33into the presentation of the diff. For example, this is used by
34`content.diff.inc` (see CCK), `upload.inc`, and `taxonomy.inc`.
35
36Maintainers
37-----------
38- dww (Derek Wright)
39- moshe (Moshe Weitzman)
40- rötzi (Julian)
41- yhahn (Young Hahn)
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.