<<O>> Difference Topic TWikiMergeDotPm (2 - 2006-04-01 - TWikiContributor) |
Package =TWiki::MergeSupport for merging strings | ||||||||
Changed: | ||||||||
< < | StaticMethod insDelMerge ($a,$b,$sep,$session,$info) | |||||||
> > | StaticMethod merge2 ($arev,$a,$brev,$b,$sep,$session,$info) | |||||||
Added: | ||||||||
> > |
| |||||||
Perform a merge of two versions of the same text, using
HTML tags to mark conflicts.
The granularity of the merge depends on the setting of $sep.
For example, if it is "\\n" , a line-by-line merge will be done.
Where conflicts exist, they are marked using HTML <del> and
<ins> tags. <del> marks content from $a while <ins>
marks content from $b.
Non-conflicting content (insertions from either set) are not
marked. | ||||||||
Changed: | ||||||||
< < | The plugins mergeHandler is called for each merge. | |||||||
> > | The plugins mergeHandler is called for each merge. | |||||||
Added: | ||||||||
> > | Call it like this:
$newText = TWiki::Merge::merge2( $oldrev, $old, $newrev, $new, '.*?\n', $session, $info ); | |||||||
Added: | ||||||||
> > | ||||||||
StaticMethod simpleMerge ($a,$b,$sep) -> \@arrPerform a merge of two versions of the same text, returning | ||||||||
Changed: | ||||||||
< < | and array of strings representing the blocks in the merged context | |||||||
> > | an array of strings representing the blocks in the merged context | |||||||
where each string starts with one of "+", "-" or " " depending on
whether it is an insertion, a deletion, or just text. Insertions
and deletions alway happen in pairs, as text taken in from either
version that does not replace text in the other version will simply
be accepted.
The granularity of the merge depends on the setting of $sep.
For example, if it is "\\n" , a line-by-line merge will be done.
$sep characters are retained in the outout. | ||||||||
Added: | ||||||||
> > |
StaticMethod merge3 ($arev,$a,$brev,$b,$crev,$c,$sep,$session, $info )
".*?\\n" , a line-by-line merge will be done.
Where conflicts exist, they are labeled using the provided revision
numbers.
The plugins mergeHandler is called for each merge.
Here's a little picture of a 3-way merge:
a <- ancestor
/ b c <- revisions
\ /
d <- merged result, returned.
call it like this:
my ( $ancestorMeta, $ancestorText ) = $store->readTopic( undef, $webName, $topic, $originalrev ); $newText = TWiki::Merge::merge3( $ancestorText, $prevText, $newText, $originalrev, $rev, "new", '.*?\n' ); | |||||||
<<O>> Difference Topic TWikiMergeDotPm (1 - 2006-02-01 - TWikiContributor) |
Package =TWiki::MergeSupport for merging stringsOn this page:
StaticMethod insDelMerge ($a,$b,$sep,$session,$info)Perform a merge of two versions of the same text, using HTML tags to mark conflicts. The granularity of the merge depends on the setting of $sep. For example, if it is"\\n" , a line-by-line merge will be done.
Where conflicts exist, they are marked using HTML <del> and
<ins> tags. <del> marks content from $a while <ins>
marks content from $b.
Non-conflicting content (insertions from either set) are not
marked.
The plugins mergeHandler is called for each merge.
StaticMethod simpleMerge ($a,$b,$sep) -> \@arrPerform a merge of two versions of the same text, returning and array of strings representing the blocks in the merged context where each string starts with one of "+", "-" or " " depending on whether it is an insertion, a deletion, or just text. Insertions and deletions alway happen in pairs, as text taken in from either version that does not replace text in the other version will simply be accepted. The granularity of the merge depends on the setting of $sep. For example, if it is"\\n" , a line-by-line merge will be done.
$sep characters are retained in the outout.
|
Revision r3 - 2007-01-16 - 04:12:00 - TWikiContributor | Edit |