-
Notifications
You must be signed in to change notification settings - Fork 0
/
committees.wae
128 lines (112 loc) · 4.6 KB
/
committees.wae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
module committees
import leftsidebar
import rightsidebar
site
committees.html: main
end
def css(url, media)
link(rel="stylesheet", href=url, type="text/css", media=media);
end
def parTitle(title)
h1.title title;
end
def par
div.entry {
yield;
}
end
def section(title)
parTitle(title);
par yield;
end
def allcommittees
section("LDTA Committees") {
h2 "Program Committee" ;
ul {
li { a(href="http://www.win.tue.nl/~andova/") "Suzana Andova";
echo ", Eindhoven University of Technology, The Netherlands (co-chair)"; }
li { a(href="http://www.ii.uib.no/~anya/") "Anya Helene Bagge" ;
echo ", University of Bergen, Norway" ; }
li { a(href="http://plasse.hanyang.ac.kr/~doh") "Kyung-Goo Doh";
echo ", Hanyang University, Ansan, South Korea" ; }
li { a(href="http://cs.ua.edu/~gray/") "Jeff Gray";
echo ", University of Alabama, USA"; }
li { a(href="http://cs.lth.se/gorel_hedin") "Görel Hedin";
echo ", Lund University, Sweden"; }
li { a(href="http://people.inf.elte.hu/hz/index_eng.html") "Zoltán Horváth";
echo ", Eötvös Loránd University, Budapest, Hungary"; }
li { a(href="http://research.nii.ac.jp/~hu") "Zhenjiang Hu";
echo ", National Institute of Informatics, Japan"; }
li { a(href="http://www.inf.puc-rio.br/~roberto/") "Roberto Ierusalimschy";
echo ", Pontifícia Universidade Católica do Rio de Janeiro, Brazil";}
li { a(href="http://trese.cs.utwente.nl/~kurtev") "Ivan Kurtev";
echo ", University of Twente, The Netherlands"; }
li { a(href="http://lpm.uni-mb.si/mernik/") "Marjan Mernik";
echo ", University of Maribor, Slovenia"; }
li { a(href="http://www.inf.usi.ch/nystrom/") "Nate Nystrom";
echo ", University of Lugano, Switzerland"; }
li { a(href="http://di.uminho.pt/~jas/") "João Saraiva";
echo ", Universidade do Minho, Braga, Portugal"; }
li { a(href="http://www.lsv.ens-cachan.fr/~schmitz/") "Sylvain Schmitz";
echo ", Ecole Normale Supérieure de Cachan, France"; }
li { a(href="http://www.comp.mq.edu.au/~asloane/") "Tony Sloane";
echo ", Macquarie University, Australia (co-chair)"; }
li { a(href="http://students.cis.uab.edu/tairasr/") "Robert Tairas";
echo ", Inria, France"; }
li { a(href="http://tratt.net/laurie/") "Laurence Tratt";
echo ", King's College London, UK"; }
li { a(href="http://grammarware.net") "Vadim Zaytsev";
echo ", Centre for Mathematics & Computer Science, The Netherlands"; }
}
h2 "Organizing Committee";
ul {
li { a(href="http://www.ii.uib.no/~anya/") "Anya Helene Bagge" ;
echo ", University of Bergen, Norway" ; }
li { a(href="http://phoenix.inria.fr/balland") "Emilie Balland";
echo ", INRIA, France"; }
}
h2 "Steering Committee";
ul {
li { a(href="http://www.win.tue.nl/~mvdbrand/") "Mark van den Brand";
echo ", Eindhoven University of Technology, The Netherlands"; }
li { a(href="http://cs.lth.se/gorel_hedin") "Görel Hedin";
echo ", Lund University, Sweden"; }
li { a(href="http://www.comp.mq.edu.au/~asloane/") "Tony Sloane";
echo ", Macquarie University, Australia"; }
li { a(href="http://www.cs.umn.edu/~evw") "Eric Van Wyk";
echo ", University of Minnesota, United States"; }
}
}
end
def main
html(xmlns='http://www.w3.org/1999/xhtml) {
head {
title "LDTA";
meta(http-equiv="content-type", content="text/html; charset=utf-8");
meta(name="keywords", content="Programming Debugging Language Descriptions Parsing Parsers Term Rewriting Attribute Grammars Functional Programming Debugging Model Driven Engineering Formal Methods Meta Programming");
meta(name="description", content="The International Workshop on Language Descriptions Tools and Applications");
meta(name="language", content="NL");
css("./style.css", "screen");
comment "Design by Free CSS Templates\nhttp://www.freecsstemplates.org\nReleased for free under a Creative Commons Attribution 2.5 License\n\nName : Compressed \nDescription: A three-column, fixed-width template fit for 1024x768 screen resolutions.\nVersion : 1.0\nReleased : 20080524";
}
body {
div#logo h1.logo "Workshop on Language Descriptions, Tools, and Applications";
div#page {
div.sidebar#sidebar1 {
br;
previous;
}
div#content div.bgtop div.bgbtm div.post allcommittees();
div.sidebar#sidebar2 {
br;
relatedLinks;
}
}
div(style="clear: both;") {
br;
div#footer p.legal "©2007 All Rights Reserved.
Design by <a(href="http://www.freecsstemplates.org/") "Free CSS Templates">";
}
}
}
end