summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2010-11-11 08:19:30 +0100
committerYorhel <git@yorhel.nl>2010-11-11 08:19:30 +0100
commite66795761de0ad7b1544b8737926982e7e55898c (patch)
tree9fe77361bbad18c5bbe0ef67a0fa2f0f1bc5c40d
parent2422a658efc1947f77620d3f5f3a3dbca8e842b3 (diff)
Replaced Algorithm::Diff::XS with Algorithm::Diff::Fast
This module is cleaner, faster and has less dependencies. (didn't exist yet at the time I first implemented the revision diffs)
-rw-r--r--ChangeLog1
-rw-r--r--README2
-rw-r--r--lib/VNDB/Util/CommonHTML.pm2
3 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 6d3e1bf8..0fc877d5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,7 @@
- dbVNGet() with random ordering
- dbRevisionGet() (in most cases)
- Removed (p###) from release resolution information
+ - Replaced Algorithm::Diff::XS with Algorithm::Diff::Fast
- Bugfix: delete/update all references when deleting a user
2.12 - 2010-11-03
diff --git a/README b/README
index 37a40019..c63a08bb 100644
--- a/README
+++ b/README
@@ -19,7 +19,7 @@ Requirements
(perl 5.10 core modules are not listed.)
util/vndb.pl:
- Algorithm::Diff::XS
+ Algorithm::Diff::Fast
CGI::Minimal (required by YAWF)
CGI::Cookie::XS (required by YAWF)
DBI
diff --git a/lib/VNDB/Util/CommonHTML.pm b/lib/VNDB/Util/CommonHTML.pm
index be56e4a8..23b5b391 100644
--- a/lib/VNDB/Util/CommonHTML.pm
+++ b/lib/VNDB/Util/CommonHTML.pm
@@ -5,7 +5,7 @@ use strict;
use warnings;
use YAWF ':html', 'xml_escape';
use Exporter 'import';
-use Algorithm::Diff::XS 'compact_diff';
+use Algorithm::Diff::Fast 'compact_diff';
use VNDB::Func;
use Encode 'encode_utf8', 'decode_utf8';
use POSIX 'ceil';