From: Yuuki YAMAGATA <yar-3@ops.dti.ne.jp>
Subject: [hns-users:00551] 予定のソート
Date: Wed, 29 Mar 2000 18:23:13 +0900 (JST)
> hnsの予定のソートなんですが
> ・04/02(日) 2000-2200 電気グルーヴSP(viewsic)
> ・04/02(日) 1800-2230 WGP第2戦 マレーシアGP(BS1)
> というように並んでしまいます。
>
> 同日の予定の場合は、記載順に並んでいます。
>
> これをASCII順でいいのでソートしてあったらうれしいなあ、
> と思うのですがいかがでしょうか?
あとでhns-currentにcommitしたいと思いますが、とりあえずパッチです。
public_html/diary/lib/HNS/PIM/Schedule.pmに当ててください。
--- Schedule.pm-orig Wed Mar 29 21:06:02 2000
+++ Schedule.pm Wed Mar 29 21:09:39 2000
@@ -222,7 +222,8 @@
if ($self->error){
$html .= $self->error;
}
- for (sort {$a->{date} <=> $b->{date}} @{$self->contents}){
+ for (sort { $a->{date} <=> $b->{date} ||
+ $a->{content} cmp $b->{content} } @{$self->contents}){
next unless $now_date <= $_->{date} && # now and future
$until_date > $_->{date}; # until next month
last if ++$cnt > $MaxNum; # less than equal $MaxNum
---------------------------------
川上 正人 / masato@orange.co.jp
Orange System Hiroshima