PyukiWiki CVS Commit
pyuki****@lists*****
2012年 1月 28日 (土) 00:44:53 JST
Index: PyukiWiki-Devel/lib/Algorithm/Diff.pm diff -u PyukiWiki-Devel/lib/Algorithm/Diff.pm:1.404 PyukiWiki-Devel/lib/Algorithm/Diff.pm:1.405 --- PyukiWiki-Devel/lib/Algorithm/Diff.pm:1.404 Fri Jan 27 03:04:26 2012 +++ PyukiWiki-Devel/lib/Algorithm/Diff.pm Sat Jan 28 00:44:53 2012 @@ -2,25 +2,25 @@ # Diff.pm - This is PyukiWiki, yet another Wiki clone. # from YukiWiki # -# $Id: Diff.pm,v 1.404 2012/01/26 18:04:26 papu Exp $ +# $Id: Diff.pm,v 1.405 2012/01/27 15:44:53 papu Exp $ # # "Algorithm::Diff" version 1.1901 $$ -# Ned Konz, perl (at) bike-nomad (dot) com -# Mark-Jason Dominus, mjd-perl-diff (at) plover (dot) com +# Ned Konz, <perl (at) bike-nomad (dot) com> +# Mark-Jason Dominus, <mjd-perl-diff (at) plover (dot) com> # -# Copyright (C) 2004 by Nekyo. -# Copyright (C) 2006 PyukiWiki Developers Team +# Copyright (C) 2004-2012 by Nekyo. +# Copyright (C) 2006-2012 PyukiWiki Developers Team # License: GPL v2 or (at your option) any later version # http://nekyo.qp.land.to/ -# http://pyukiwiki.sourceforge.jp/ -# +# http://pyukiwiki.$text{SOURCEFORGE_JP_DOMAIN}/ + # Based on YukiWiki http://www.hyuki.com/yukiwiki/ -# Powerd by PukiWiki http://pukiwiki.sourceforge.jp/ +# Powerd by PukiWiki http://pyukiwiki.$text{SOURCEFORGE_JP_DOMAIN}/ # # This program is free software; you can redistribute it and/or # modify it under the same terms as Perl itself. # Return Code:UNIX=LF/Windows=CR+LF/Mac=CR -# 1TAB=4Spaces Japanese Code=EUC +# 1TAB=4Spaces English Code=Ascii ###################################################################### package Algorithm::Diff; @@ -32,7 +32,7 @@ @ISA = qw(Exporter); @EXPORT = qw(); @EXPORT_OK = qw(LCS diff traverse_sequences); -$VERSION = sprintf('%d.%02d', (q$Revision: 1.404 $ =~ /\d+/g)); +$VERSION = sprintf('%d.%02d', (q$Revision: 1.405 $ =~ /\d+/g)); # McIlroy-Hunt diff algorithm # Adapted from the Smalltalk code of Mario I. Wolczko, <mario (at) wolczko (dot) com>