|
|
|
|
|||
|
Homecoming 2000 Sept. 21 to 24 Thursday, September 21,
7 p.m.: Friday, September 22 Saturday, September 23 Saturday, September 23 Sunday, September 24 Faculty of Engineering and Computer Science The Goldie and Joe Raymer Endowment Applications are called for the Goldie and Joe Raymer Award from both undergraduate and graduate students in the Faculty of Engineering and Computer Science. The Goldie and Joe Raymer Award was established with an endowment by the Raymer family to support exchange visits of students between the Faculty and Technion-Israel Institute of Technology. The Raymer Family has long-standing associations with both institutions, and believes that learning, scholarship, respect for diversity and leadership in promoting peace and understanding can be fostered through international exchanges. The support will start in the winter term of the year 2001 for a Concordia student to visit Technion, and then will alternate each year between students of Technion visiting Concordia and vice versa, when merited. An amount of $6,250 will be made available annually to cover in part air travel, tuition, accommodation and living expenses. Applications must be made by letter, accompanied by a CV, transcripts, a statement of purpose and other relevant documents. Candidates will be selected according to academic merit, extracurricular achievement and an ability to represent Concordia at Technion as a cultural ambassador. Applications should be sent by mail or in person, no later than Friday, September 29, 2000, to: Dr. Osama Moselhi, Executive Advisor to the Dean, Graduate Programs and Research, Office of the Dean, Faculty of Engineering and Computer Science, 1455 de Maisonneuve Blvd. West, LB 1007-3, H3G 1M8. Campus Recreation SGW: Victoria
Gym, 1820 de Maisonneuve Blvd. W., 848-3860 Loyola:
Athletics Complex, 7200 Sherbrooke St. W., 848-3858 Open house: September 11 - 16 |
|
Copyright 2000, Concordia University |
#!/usr/bin/perl -wT # # footer.cgi -- create "next" and "previous" links for Thursday Report articles. # # 2000/10/10 Rich Lafferty -- initial version # 2001/03/14 Rich Lafferty -- account for entities in REQUEST_URI (and output entities # while we're at it) # # Use: include at bottom of each Thursday Report article. For example: # # #!/usr/bin/perl -wT # # footer.cgi -- create "next" and "previous" links for Thursday Report articles. # # 2000/10/10 Rich Lafferty -- initial version # 2001/03/14 Rich Lafferty -- account for entities in REQUEST_URI (and output entities # while we're at it) # # Use: include at bottom of each Thursday Report article. For example: # # # # We assume that articles are found in directories of form NN-XXXXX/index.shtml where # NN is a two-digit number (padded with initial zeros if necessary) indicating # the position of the article in the issue (with article 01 being first), # and XXXXX being text suggesting the subject of the article. ## use strict; use CGI qw(:standard); use URI::Escape; sub aindex ($@) { my $grep_for = shift; my @grep_in = @_; for my $i (0 .. $#grep_in) { return $i if $grep_in[$i] eq $grep_for; } } print header(); my $uri = uri_unescape($ENV{REQUEST_URI}); $uri =~ m|(.*?)/[^/]+/[^/]*$|; my $issue = $1; $uri =~ m|([^/]+)/[^/]*$|; my $article = $1; opendir(ISSUE, $ENV{DOCUMENT_ROOT} . $issue) or die "Can't open dir $issue: $!"; my @issuedir; { my @tmpdir; while (my $dir = readdir(ISSUE)) { push @tmpdir, $dir if $dir =~ /^\d\d-/; } @issuedir = sort @tmpdir; } closedir ISSUE; my $aindex = aindex($article, @issuedir); my $prevlink; if ($aindex == 0) { $prevlink = uri_escape($issue); } else { $prevlink = uri_escape("$issue/" . $issuedir[$aindex - 1]); } my $nextlink; if ($aindex == $#issuedir) { $nextlink = uri_escape($issue); } else { $nextlink = uri_escape("$issue/" . $issuedir[$aindex + 1]); } print <<__EOT__;
-- |
Concordia's
Thursday Report
|
-- | -- |
© Copyright 2000 Concordia University |
-- |
Concordia's
Thursday Report
|
-- | -- |
© Copyright 2000 Concordia University |