Just installed Codestriker 1.9.1 (FreeBSD 6.1, Apache 2.2, MySQL 4.1.14,
Subversion 1.1, worked right out the box) - great tool!
 
I'm creating topics directly from Subversion. One problem I've noticed
immediately
is that file list in a topic is not sorted by filename. Instead, files
are listed in some
semi-sorted order defined by Subversion. I couldn't find any
configuration options
that would trigger file sorting. Did I miss something?

Patching the code to sort by filename was rather trivial: in
lib\Codestriker\FileParser\Parser.pm,
insert just before the first return:

    # Sort the diff chunks by filename, then old linenumber
    @diffs = sort { $a->{filename} cmp $b->{filename} ||
$a->{old_linenumber} <=> $b->{old_linenumber} } @diffs;
 
Would it make sense to make this a configurable feature?

-- Vlad


-------------------------------------------------------
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid7521&bid$8729&dat1642
_______________________________________________
Codestriker-user mailing list
Codestriker-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/codestriker-user

Reply via email to