Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

picapica-org/jQuery.picadiff

Repository files navigation

jQuery.picadiff Build Status

About

A small widget for visualizing text reuse on two texts.

screenshot

Demo

Try the interactive demo!

Getting Started

Download the production version or the development version and the CSS file.

Dependencies are the diff_match_patch library and the Webfont Loader (which is optional).

In your web page:

  ...
  <link rel="stylesheet" type="text/css" href="css/jquery.picadiff-0.7.1.css"/>
</head>
<body>
...

  <div class="picadiff">
    <div class="picadiff-title">
      <div class="left">LeftTitle</div>
      <div class="right">RightTitle</div>
    </div>
    <div class="picadiff-content">
      <div class="left">Left content you want do diff</div>
      <div class="right">Right content you want do diff</div>
    </div>
  </div>


  <script src="jquery.js"></script>
  <script src="diff_match_patch.js"></script>
  <script src="webfont.js"></script>
  <script src="jquery.picadiff-0.7.1.min.js"></script> 
  <script>
      $(".picadiff").picadiff();
  </script>
  ...

Documentation

Options

You can add options when calling picadiff.

$(".picadiff").picadiff(options)

All these parameters are optional:

leftContainer : CSS identificator of the left container (default=".left")
rightContainer  : CSS identificator of the right container (default=".right")
contentContainer: CSS identificator of the content containers.
  Must be inside the right and left container (default=".picadiff-content")
leftContent : Content to diff as left side. Set this parameter if you don't
  want the widget to search for the content.
rightContent  : Content to diff as right side. Set this parameter if you don't
  want the widget to search for the content.
lineLength  : maxmimum number of chars per line (default=40)
timeout     : diff_match_patch timeout (default=0)
wrap        : if true lines will always wrap on lineLength. Ignoring words and wihtespaces (default=false)

All Versions

Javascript

CSS

Examples

An example can be found in /usage/index.html

Release History

v0.7.3

  • fix jquery.plugin registration

v0.7.2

  • updated demo
  • update package info

v0.7.1

  • renamed title to .picadiff-title
  • added options for character wrapping and line length
  • added and tested normalize_word function to diff_match_patch extension

v0.7.0

  • renamed project to jQuery.picadiff
  • added tests
  • js consists only of two scripts now
  • updated css class names
  • updated usage example
  • removed unused functions
  • removed html_entitiy_decode

v0.6.0

  • refactored to a yeoman app
  • removed backbone.js and underscore.js dependencies

v0.5.2

  • fixed issue #6: Identische Worte werden nicht gematcht

v0.5.1

  • fixed issue #5: Words do not match if one ends with a special character and the other does not

v0.5

  • set default diff_match_patch timeout to 0
  • added timeout property
  • using Webfont API is optional

v0.4

  • changed standard DOM structure
  • fixed issue #1: Special characters should be ignored from diff
  • fixed issue #2: Diff-Matches should be case-insensitive
  • fixed issue #3: Diff-Matches should be trimmed
  • fixed issue #4: Title elements with different height

v0.3

  • content can be submitted in options

v0.2

  • changed API to use jQuery
  • data is now read from structured html

About

A small widget for visualizing the diff of two texts.

Resources

License

Stars

Watchers

Forks

Packages

No packages published