#use wml::debian::basic title="近日開催されるイベント" #use wml::debian::languages #words and phrases to translate このページでは、コミュニティー周辺のイベントの一覧を紹介します。 (もしあれば)そのイベントへの Debian の関わりについても触れます。 いずれかのイベントを手伝っていただける方は、 そのイベントの主催者にメールして下さい。 また、そのイベントの企画に興味があるのに主催者が記載されていない場合や、 追加のイベントについてお知らせいただける場合は、 <events@debian.org> に電子メールを送ってください。

このページはまだ作成中です。あらゆるコメントや提案などは大歓迎します。 イベント 過去のイベント なし sub get_event_list { my ( $path, $number, $current_dir ) = @_; $str=""; $over=""; $current=""; $unknown=""; opendir(DIR, "$current_dir/$path"); @files = grep { /^\d+.*.wml$/ && -f "$current_dir/$path/$_" } readdir(DIR); @files = sort @files; closedir DIR; $count = 0; foreach (@files) { $count++; open(FILE, "<$path/$_") || open(FILE, "<$current_dir/$path/$_"); if ( /(\d+.*).wml/ ) { $base = $1; } $title = ''; $when = ''; $where = ''; $desc = ''; $past = ''; foreach $line () { if ($line =~ /^(.*)<\/define-tag>$/) { $title = $1; } elsif ($line =~ /^#use wml::debian::past_event$/) { $past = 'yes'; } elsif ($line =~ /^#use wml::debian::event$/) { $past = 'no'; } elsif ($line =~ /^(.*)<\/define-tag>$/) { $when = $1; } elsif ($line =~ /^(.*)<\/define-tag>$/) { $where = $1; } elsif ($line =~ /^(.*)<\/define-tag>$/) { $desc = $1; } if ($title && $when && $where) { $str1 = "[$when]$title ($where)\n"; } elsif ($title && $when) { $str1 = "[$when]$title\n"; } if ($past && $title && $when && $where ) { last; } } if ( $past eq "yes" ) { $over .= $str1; } elsif ( $past eq "no" ) { $current .= $str1; } else { $unknown .= $str1; } close FILE; if ($count eq $number) { last; } } close DIR; if ( $over eq "" && $current eq "" && $unknown eq "" ) { $str = "$path - []
"; } else { $str = ""; if ( $current ne "" ) { $str .= "

$path 年の

$current
"; } if ( $over ne "" ) { $str .= "$path 年 -
"; } if ( $unknown ne "" ) { $str .= "

$path Unknown (indicates bug)

$unknown
"; } } return $str; }

<:= get_event_list ('2000', '0', '$(ENGLISHDIR)/events' ) :> <:= get_event_list ('1999', '0', '$(ENGLISHDIR)/events' ) :> <:= get_event_list ('1998', '0', '$(ENGLISHDIR)/events' ) :> <:= languages() :> #use wml::debian::footer