-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.php
373 lines (319 loc) · 15.6 KB
/
index.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
<!DOCTYPE HTML >
<html lang="en">
<head>
<title >WebFTS - Simplifying power </title >
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="img/ico/favicon.png">
<meta name="description" content="" />
<meta name="keywords" content="" />
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-theme.min.css" rel="stylesheet">
<link href="css/justified-nav.css" rel="stylesheet">
<link href="css/validation.css" rel="stylesheet">
<script src="js/jquery.min.js"></script>
<script src="js/jquery.validate.min.js"></script>
</head>
<!-- <link href="assets/css/bootstrap-responsive.css" rel="stylesheet"> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1, maximun-scale=1, user-scalable=no">
<!-- <link href="css/justified-nav.css" rel="stylesheet"> -->
<link href="css/validation.css" rel="stylesheet" >
<!-- custom slideshow styles -->
<link rel="stylesheet" type="text/css" href="css/carousel styles/custom-carousel.css">
<!-- General Site tour styles -->
<link href="site-tour/introJs/introjs.css" rel="stylesheet">
<!-- custom site-tour styles -->
<link rel="stylesheet" type="text/css" href="css/site-tour-styles/custom-site-tour.css">
<!-- custom nav-bar styles -->
<link rel="stylesheet" type="text/css" href="/css/nav-bar-custom/nav-bar-custom.css">
<!--Parallax scripts start-->
<script type="text/javascript" src='paraFiles/js/jquery.stellar.min.js'></script>
<script type="text/javascript" src='paraFiles/js/waypoints.js'></script>
<script type="text/javascript" src='paraFiles/js/jquery.easing.1.3.js'></script>
<script type="text/javascript" src='paraFiles/js/main.js'></script>
<!--Parallax scripts ends-->
<!-- Scroll to top -->
<script type="text/javascript" src='/site-tour/scroll-to-top.js'></script>
<script type="text/javascript" src='/js/disableScalability.js'></script>
<!-- JQuery -->
<script src="js/jquery.min.js"></script>
<script src="js/jquery.validate.min.js"></script>
<!-- Browser Compatibility styles -->
<link rel="stylesheet" href="/paraFiles/css/base.css"/>
<!-- Browser Compatibility starts to apply different stylesheets-->
<script type="text/javascript">
var nAgt = navigator.userAgent;
var browserName = navigator.appName;
var nameOffset,verOffset,ix;
// In Firefox, the true version is after "Firefox"
if ((verOffset=nAgt.indexOf("Firefox"))!=-1) {
browserName = "Firefox";
}
// In Chrome, the true version is after "Chrome"
else if ((verOffset=nAgt.indexOf("Chrome"))!=-1) {
browserName = "Chrome";
}
// In Safari, the true version is after "Safari" or after "Version"
else if ((verOffset=nAgt.indexOf("Safari"))!=-1) {
browserName = "Safari";
}
// In MSIE, the true version is after "MSIE" in userAgent
else if ((verOffset=nAgt.indexOf("MSIE"))!=-1) {
browserName = "Microsoft Internet Explorer";
}
// In most other browsers, "name/version" is at the end of userAgent
else if ( (nameOffset=nAgt.lastIndexOf(' ')+1) <
(verOffset=nAgt.lastIndexOf('/')) )
{
browserName = nAgt.substring(nameOffset,verOffset);
fullVersion = nAgt.substring(verOffset+1);
if (browserName.toLowerCase()==browserName.toUpperCase()) {
browserName = navigator.appName;
}
}
/*
In Opera, the true version is after "Opera" or after "Version"
else if ((verOffset=nAgt.indexOf("Opera"))!=-1) {
browserName = "Opera";
}
*/
// document.write(browserName);
if (browserName == 'Firefox') {
document.write("<link rel='stylesheet' href='paraFiles/css/diffBrsStyles/FirefoxDiff.css' type='text/css'>");
}
else if (browserName == 'Chrome'){
document.write("<link rel='stylesheet' href='paraFiles/css/diffBrsStyles/ChromeDiff.css' type='text/css'>");
}
else if (browserName == 'Safari'){
document.write("<link rel='stylesheet' href='paraFiles/css/diffBrsStyles/SafariDiff.css' type='text/css'>");
}
else if (browserName == 'Microsoft Internet Explorer') {
document.write("<link rel='stylesheet' href='paraFiles/css/diffBrsStyles/IEDiff.css' type='text/css'>");
}
else{
document.write("<link rel='stylesheet' href='paraFiles/css/styles.css' type='text/css'>");
}
</script>
<!-- Browser Compatibility ends-->
<!-- rss feed -->
<script type="text/javascript" src="js/lib/FeedEk-2.0.2-patched/FeedEk.js"></script>
<script src="js/ftsHelper.js"></script>
<script>
$( document ).ready(function() {
$('#divRss').FeedEk({
FeedUrl : 'http://fts3-service.web.cern.ch/rss.xml',
MaxCount : 3,
ShowDesc : false,
ShowPubDate: true,
TitleLinkTarget: '_blank',
});
if(!sessionStorage.ftsRestEndpoint)
getConfig();
});
</script>
</head>
<body>
<div class='container-top-outer'
data-step="1"
data-intro="<h3><strong>Here is the main navigation bar!</strong></h3><h4><br/>
You can easily submit your file jobs to different endpoints,
manage your jobs and see details about them!</h4>
</br>
For your convinience, during the tour you could either use the <strong>next/back</strong> buttons or your arrow buttons on your keyboard!"
data-position='bottom-middle-aligned'>
<div class="container-top-inner" >
<div class="row">
<script>
$(function(){
$("#userAuth").load("userAuth.php");
});
</script>
<div id="userAuth"></div>
</div>
<div class="masthead">
<h3 class="text-muted">WebFTS <small><em>Simplifying power</em></small></h3>
<ul class="nav nav-justified" >
<li class="active"
data-step="2"
data-intro="<h3><strong>Home:</strong></h3><h4>Kept informed always! Learn first all the recent WebFTS news!</h4>"
data-position='bottom'>
<a href="#"><i class="glyphicon glyphicon-home"></i> Home</a>
</li>
<li data-step="4"
data-intro="<h3><strong>Check your submitted jobs:</strong></h3><h4>Check in real time the progress of your transferred jobs!<strong></br>Explore the 'Submit a transfer' page</strong></h4>"
data-position='bottom'>
<a href="transmissions.php"><i class="glyphicon glyphicon-tasks"></i> My jobs</a>
</li>
<li data-step="3"
data-intro="<h3><strong>Start from here:</strong></h3><h4>Do you have a valid certificate on your browser? Submit your transfer more quickly and easily than ever, only by defining the endpoints of your choice for each particular transfer!</h4>"
data-position='bottom'>
<a href="submit.php"><i class="glyphicon glyphicon-chevron-left"></i><i class="glyphicon glyphicon-chevron-right"></i> Submit a transfer</a>
</li>
</ul>
</div>
</div>
<img src="paraFiles/img/shadow-bottom.png" alt=' ' class='divider' >
</div>
<!--Parallax scrolling starts-->
<div class="container-central">
<div class='main border-element'>
<div class='slide' id='slide1' data-slide='1' data-stellar-background-ratio='1'>
<div class='container-fluid border-element'>
<div class='row-fluid border-element' id='main-area-slide1'>
<div class='col-md-4 col-md-offset-1 col-sm-4 col-sm-offset-1 col-sm-4 col-sm-offset-1 ' id='front-left-block'>
<div class="news-title">
<span class='glyphicon glyphicon-ok-sign'></span> News<br/>
</div>
<div id="divRss" class="jumbotron-fluid" ></div>
<div class='jumbotron-fluid' id='readMore'>
<a class="btn btn-info btn-responsive" onclick="window.open(this.href,'_blank');return false;" href="http://fts.web.cern.ch/sites/fts.web.cern.ch/themes/fts-webpage/releases-jekyll/releases/index.html"><strong>Read more...</strong></a>
</div>
<br/>
<div>
<p class="text">Please report any issues to the FTS3 <a onclick="window.open(this.href,'_blank');return false;" href="mailto:[email protected]">support</a> </p>
</div>
</div>
<div class='col-md-6 col-sm-6 center-left-block col-md-offset-1 col-sm-offset-1 text-center' id='front-right-block'>
<div class="carousel-cust-container border-element">
<div id="this-carousel-id" class="carousel slide c-fade"><!-- class of slide for animation -->
<div class="carousel-inner">
<div class="item active">
<img src="img/slideshow/1FTS.png" rel="nofollow" target="_blank" title="" class="vglnk" alt=" " />
<div class="carousel-caption">
<p><h3>Many millions of files transferred across continents daily</h3></p>
</div>
</div>
<div class="item">
<img src="img/slideshow/2.png" rel="nofollow" target="_blank" title="" class="vglnk" alt=" " />
<div class="carousel-caption">
<p><h3>Around 15 Petabytes of data transferred each month!</h3></p>
</div>
</div>
<div class="item">
<img src="img/slideshow/4_logo_cern_450x300.png" rel="nofollow" target="_blank" title="" class="vglnk" alt="" />
<div class="carousel-caption">
<p><h3>European Organisation for Nuclear Research</h3></p>
</div>
</div>
<div class="item">
<img src="img/slideshow/3.png" rel="nofollow" target="_blank" title="" class="vglnk" alt="" />
<div class="carousel-caption">
<p><h3>CERN</h3></p>
</div>
</div>
</div><!-- /.carousel-inner -->
<!--Next and Previous controls below
href values must reference the id for this carousel -->
<!--
<a class="carousel-control left" href="#this-carousel-id" data-slide="prev">‹</a>
<a class="carousel-control right" href="#this-carousel-id" data-slide="next">›</a>
-->
</div><!-- /.carousel -->
</div><!-- carousel-cust-container-->
</div>
</div>
</div>
<div class="container-fluid border-element">
<div class='row-fluid sticky-bottom border-element' id="pointer">
<div class='col-md-4 col-md-offset-4 col-sm-4 col-sm-offset-4 runew-label-1 wobble-vertical'>
<span>Are you new ?<br/>Click here!</span>
</div>
<p class='col-md-4 col-md-offset-4 col-sm-4 col-sm-offset-4 button' data-slide='2' title=' ' style='text-align: center'></p>
</div>
</div>
<div class="poweredBy-text">
<h5>WebFTS is powered by FTS3. CERN - EUDAT, 2014</h5>
</div>
</div>
<!-- Start of Slide-2 -->
<div class='slide' id='slide2' data-slide='2' data-stellar-background-ratio='0.7'>
<div class='row'>
<div class='col-md-6 col-md-offset-1 col-sm-6 col-sm-offset-1 '>
<div class='row info-block-desc-dark' id='info-block-desc-dark-fixed'>
<div class='info-block-header-desc'>
<p>What is WebFTS? </p>
</div>
<div class='info-block-desc'>
<p>WebFTS is a file transfer and management solution which allows users to invoke reliable, managed data transfers on distributed infrastructures.<br/><br/> Created following simplicity and efficiency criteria, WebFTS allows the user to access and interact with multiple storage elements. Their content becomes browsable and different filters can be applied to get a set of files to be transferred. Transfers can be invoked and capabilities are provided for checking the detailed status of the different transfers and resubmitting any of them with only one click.<br/><br/> The “transfer engine” used is FTS3, the service responsible for distributing the majority of LHC data across WLCG infrastructure. This provides WebFTS with reliable, multi-protocol (gridftp, srm, http, xrootd), adaptively optimised data transfers</p>
</div>
</div>
</div>
</div>
<div class="container-fluid border-element">
<div class='row-fluid sticky-bottom-continue border-element'>
<div class='col-md-4 col-md-offset-4 col-sm-4 col-sm-offset-4' id='continue-label'>
<p>Continue...</p>
</div>
<p class='col-md-4 col-md-offset-4 col-sm-4 col-sm-offset-4 button' id="pointer" data-slide='3' title=' ' style='text-align: center'></p>
</div>
</div>
</div>
<!-- End of Slide-2 -->
<!-- Start of Slide-3 -->
<div class='slide' id='slide3' data-slide='3' data-stellar-background-ratio='0.7'>
<div class='row'>
<div class='col-md-6 col-md-offset-5 col-sm-6 col-sm-offset-5 '>
<div class='row info-block-black'>
<div class="info-block-header-desc">
<p>Who can transfer files through WebFTS?<br/><br/></p>
</div>
<div class="info-block-desc">
<p><strong>Everybody</strong> who has a valid certificate installed in his/her browser!<br/><br/>Supported browsers are <strong>Chrome </strong> and <strong>Firefox </strong>. Supported platforms are <strong> Linux</strong>, <strong>OsX</strong> and <strong>Windows</strong>.<br/>The authentication with the <strong>Grid Storage Elements (SE)</strong> is done based on certificates.</p>
</div>
</div>
</div>
</div>
<div class="container-fluid border-element">
<div class='row-fluid sticky-bottom-continue border-element'>
<div class='col-md-4 col-md-offset-4 col-sm-4 col-sm-offset-4 border-element' id='continue-label-earth'>
<p>Continue...</p>
</div>
<p class='col-md-4 col-md-offset-4 col-sm-4 col-sm-offset-4 button' id="pointer" data-slide='4' title='' style='text-align: center'></p>
</div>
</div>
</div>
<!--End of Slide-3-->
<!-- Start of Slide-4 -->
<div class='slide' id='slide4' data-slide='4' data-stellar-background-ratio='0.7'>
<div class='row-fluid'>
<div class='col-md-5 col-md-offset-1 col-sm-5 col-sm-offset-1 '>
<div class='row-fluid info-block-desc-dark' id='info-block-desc-dark-sl4'>
<div class="info-block-header-desc">
<p>Is it difficult? <br/>How to start?<br/></p>
</div>
<p class="info-block-desc">
Since you have a valid certificate in your browser, start with submitting a transfer!
<br/>
You need help? Take a virtual tour by clicking here!
<br/>
</p>
</div>
<div class='row-fluid'>
<p class='col-md-4 col-md-offset-9 col-sm-4 col-sm-offset-9 jumbotron border-element ' id="pointer">
<a class="btn btn-primary btn-lg back-to-top" href="#" href='javascript:void(0);' id="startTourButton"><strong>Take a tour!</strong></a>
</p>
</div>
</div>
</div>
</div>
<!--End of Slide-4-->
</div><!--End of main -->
</div> <!--End of container-central-->
<!--Parallax scrolling ends -->
<!-- multi - Site tour script starts -->
<script type="text/javascript" src="site-tour/introJs/intro.js"></script>
<script type="text/javascript">
document.getElementById('startTourButton').onclick = function() {
introJs().start();
};
</script>
<!-- Multi - Site tour script ends -->
<!-- Carousel js call starts-->
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<script>
$(document).ready(function(){
$('.carousel').carousel();
});
</script>
<!-- Carousel js call ends-->
</body>
</html>