-
Notifications
You must be signed in to change notification settings - Fork 5
/
workshoproposals.php
138 lines (125 loc) · 5.74 KB
/
workshoproposals.php
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
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<title>SANER 2018 - Campobasso, Italy</title>
<meta charset="utf-8">
<meta name="description" content="SANER 2018 - Campobasso, Italy">
<meta name="author" content="Angelo Parziale" />
<meta name="keywords" content="saner, html5, css3, campobasso, italy, molise" />
<!-- Bootstrap -->
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">
<!-- Bootstrap Core CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css" />
<!-- Icons/FontAwesome -->
<link rel="stylesheet" href="css/font-awesome.min.css" />
<!-- totop -->
<link rel="stylesheet" href="css/ui.totop.css" />
<!-- owl carusol -->
<link rel="stylesheet" href="css/owl.carousel.css" />
<!-- zetta menu -->
<link rel="stylesheet" href="css/zetta-menu.min.css" />
<!-- layerSlider -->
<link rel="stylesheet" href="css/layerslider.css" />
<!-- Animation -->
<link rel="stylesheet" href="css/animate.css" />
<!-- Customizable CSS -->
<link rel="stylesheet" href="css/style.css" />
<!-- FONTS -->
<link href='http://fonts.googleapis.com/css?family=Lato:300,400,700,900' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800' rel='stylesheet' type='text/css'>
<!-- Favicon -->
<link rel="shortcut icon" href="img/favicon/favicon-96x96.png">
<!-- HTML5 elements and media queries Support for IE8 : HTML5 shim and Respond.js -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<?php
require_once ('./utils/headerTopBar.php');
require_once ('./utils/navbar.php');
?>
<!-- Breadcrumbs -->
<?php
require_once ('./utils/breadcrumb.php');
?>
<!-- end Breadcrumbs -->
<!-- what-we-do -->
<section id="what-we-do" class="content">
<div class="container">
<div class="row">
<div class="col-md-12">
<p style="text-align: justify;">
We solicit proposals for workshops to be held in conjunction with the main conference. Workshops can be full or half day and should highlight a specific topic of interest related to software analysis, evolution, and reengineering. We encourage workshop organizers to include activities that provide their participants with a true workshop experience.
</p>
<br>
<strong>Evaluation Criteria</strong>
<p style="text-align: justify; margin-top: 15px;">
Submissions will be evaluated by at least three program committee members. The evaluation will focus on the novelty, originality, importance to the field, proper use of research methods, and presentation of the submissions. We strongly encourage authors to make available all data and software they use in their work, in order to allow for verification and replication of their results.
</p>
<br>
<strong>Submission instructions</strong>
<p style="text-align: justify; margin-top: 15px;">
Workshop proposals should include the following information, with a maximum of two pages in IEEE proceedings format:
</p>
<ul>
<li>Workshop title</li>
<li>Main contact for the workshop</li>
<li>Workshop organizers and contact information</li>
<li>Brief description of workshop topic and goals</li>
<li>Expected numbers of submissions and participants</li>
<li>Expected number of accepted papers</li>
<li>Draft workshop schedule including duration (full day or half day), format of sessions and discussions</li>
<li>Paper selection criteria and mechanism (<strong>Important note:</strong> SANER 2018 follows a full double-blind review process.)</li>
</ul>
<p style="text-align: justify;">
Please send your proposal via email to Takashi Kobayashi <a href="mailto:[email protected]">[email protected]</a>
</p>
<p style="text-align: justify;">
<br>
<strong>Important Dates</strong>
<ul>
<li>Proposal submission deadline: <del>September 30, 2017 AoE</del> October 5, 2017 AoE</li>
<li>Notifications: October 9, 2017</li>
</ul>
</p>
</div>
</div>
</div><!-- end of row -->
</section>
<!-- footer -->
<?php require_once ('./utils/footer.php') ?>
<!-- end footer -->
<!-- jQuery -->
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.easing.min.js"></script>
<script src="js/jquery.fitvids.js"></script>
<script src="js/owl.carousel.js"></script>
<script src="js/jquery.ui.totop.min.js"></script>
<script src="js/jquery.countTo.js"></script>
<script src="js/jquery.placeholder.js"></script>
<script src="js/jquery.parallax-1.1.3.js"></script>
<script src="js/greensock.js"></script>
<script src="js/layerslider.transitions.js"></script>
<script src="js/layerslider.kreaturamedia.jquery.js"></script>
<script src="js/importantDates.js"></script>
<script src="js/wow.min.js"></script>
<script src="js/main.js"></script>
<script>
jQuery("#layerslider").layerSlider({
responsive: false,
responsiveUnder: 1280,
layersContainer: 1280,
skin: 'noskin',
hoverPrevNext: false,
skinsPath: '../layerslider/skins/'
});
</script>
<script>
//Animation Wow.js
new WOW().init();
</script>
</body>
</html>