-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.old.html
140 lines (98 loc) · 4.59 KB
/
index.old.html
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Let's fix file uploading</title>
<link rel="shortcut icon" href="/assets/img/favicon.ico">
<link href="/assets/bootstrap/css/bootstrap.css" rel="stylesheet" media="screen">
<link href="/assets/css/main.css" rel="stylesheet" type="text/css" />
<link href="//kvz.github.io/on-the-githubs/css/on-the-githubs.min.css" rel="stylesheet" />
<link href="http://feeds.feedburner.com/tusio" type="application/rss+xml" rel="alternate" title="Posts">
</head>
<body>
<a target="_blank" href="https://github.com/tus"><img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
<div class="container-narrow">
<div class="masthead">
<ul class="nav nav-pills pull-right">
<li class=""><a href="/index.html">Home</a></li>
<li class=""><a href="/about.html">About</a></li>
<li class=""><a href="/blog.html">Blog</a></li>
<li class=""><a href="/demo.html">Demo</a></li>
<li class=""><a href="/protocols/resumable-upload.html">Protocol</a></li>
<li class=""><a href="/implementations.html">Implementations</a></li>
</ul>
<h3 class="muted logo"><a href="/">tus</a></h3>
</div>
<hr>
<div class="jumbotron">
<h1>Let's fix file uploading</h1>
<p class="lead">
It's 2013, and adding reliable file uploading to your app is still too
damn hard. tus is an open source project dedicated to create the best
file uploading protocol, server and clients.
</p>
<div class="input-append control-group">
<form action="http://transloadit.us1.list-manage1.com/subscribe/post?u=98e560c614f2baaf47237f500&id=37aafbe5c1" method="post">
<input name="EMAIL" class="input-xlarge" type="email" placeholder="your email"/>
<input name="SOURCE" type="hidden" value="tus.io"/>
<button class="btn btn-success">Keep me posted</button>
</form>
</div>
<p>
No spam, just updates regarding tus development.
</p>
</div>
<hr>
<div class="row-fluid marketing">
<div class="span6">
<h4>Slow Wi-Fi? Poor mobile reception?</h4>
<p>No matter the situation, tus makes
every attempt to receive and resume your uploads.</p>
<h4>HTML5, iOS, Android</h4>
<p>Tus will provide you with native clients to provide a great user
experience on all plattforms.</p>
<h4>Huge files? No problem.</h4>
<p>Forget about file size limits, tus aims to let you upload even
terabyte sized files.</p>
</div>
<div class="span6">
<h4>Everybody Hates Waiting</h4>
<p>tus accelerates uploads by utilizing multiple tcp connections per upload.</p>
<h4>Your Files, Your Storage</h4>
<p>tus delivers your files straight to your
server, Amazon S3 bucket, or any other supported service.</p>
<h4>Open Source</h4>
<p>tus is open source. You can run on it on your own servers, and
modify the source.
</p>
</div>
</div>
<hr>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-3306079-17']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="/assets/bootstrap/js/bootstrap.js"></script>
<script src="//kvz.github.io/on-the-githubs/js/jquery.on-the-githubs.min.js"></script>
<script src="/assets/js/jquery-file-upload/js/vendor/jquery.ui.widget.js"></script>
<script src="/assets/js/jquery-file-upload/js/jquery.fileupload.js"></script>
<script src="/assets/js/jquery.tus.js"></script>
<script type="text/javascript">
window.tusdEndpoint = '';
</script>
<script type="text/javascript">
$('.on-the-githubs').onthegithubs();
// If you use bootstrap and want to enable tooltips:
$('a[rel]').tooltip();
</script>
<script src="/assets/js/upload-demo.js"></script>
</body>
</html>