-
Notifications
You must be signed in to change notification settings - Fork 14
/
old-index.html
101 lines (88 loc) · 3.06 KB
/
old-index.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
---
layout: default
title: Infinitest
---
<body>
<div class="container">
<div class="row" id="logo">
<div class="span8">
<img src="/assets/img/logo.png" alt="Infinitest">
</div>
<div class="span4">
<p class="lead first">
Infinitest is a Continuous Testing plugin for Eclipse and IntelliJ.
Each time a change is made on the source code, Infinitest runs all the tests
that might fail because of these changes.
</p>
<p class="lead">
<strong>That's it, it's so simple!</strong>
</p>
<p class="lead">
You love TDD? You'll love Infinitest. You prefer "Test Last", take a shot too, you might fall in love as
well!
</p>
</div>
</div>
<div class="row">
<div class="span4 text-center">
<p class="lead">« I'm an Eclipse adept »</p>
<p>
Use this update site:
</p>
<div class="input-append">
<input type="text" value="http://infinitest.github.io">
<button id="update_site" class="btn" data-clipboard-text="http://infinitest.github.io">
<i id="copy_icon" class="icon-share"></i>
</button>
</div>
<p>
Or drag & drop this image<br>
<a href='http://marketplace.eclipse.org/marketplace-client-intro?mpc_install=1124'
title='Drag and drop into a running Eclipse Indigo workspace to install Infinitest'>
<img width="63" height="25" src='/assets/img/installbutton.png'/></a><br>
to a running Eclipse.
</p>
</div>
<div class="span4 text-center">
<p class="lead">« I'm an IntelliJ fan »</p>
<p>
Search for Infinitest in the Plugin Manager.
</p>
</div>
<div class="span4 text-center">
<p class="lead">« Where's the manual? »</p>
<p><a href="doc/user_guide.html" class="btn btn-success">Follow me »</a></p>
</div>
</div>
</div>
<footer>
<div class="row">
<nav class="span3">
<h4>PARTICIPATE</h4>
<a title="YourKit Java Profiler" href="https://github.com/infinitest/infinitest">Project on GitHub</a>
</nav>
<nav class="span3">
<h4>CREDITS</h4>
<a href="http://www.yourkit.com/java/profiler/index.jsp"><img width="132" height="43" src="/assets/img/yourkit.png"/></a> is kindly supporting Infinitest open source project with its full-featured Java Profiler
</nav>
</div>
</footer>
<script src="/assets/js/ZeroClipboard.min.js" type="text/javascript"></script>
<script>
var clip = new ZeroClipboard(document.getElementById("update_site"));
clip.on('mouseover', function () {
this.className = 'btn btn-success'
document.getElementById("copy_icon").className = 'icon-share icon-white';
});
clip.on('mouseout', function () {
this.className = 'btn'
document.getElementById("copy_icon").className = 'icon-share';
});
clip.on('mousedown', function () {
document.getElementById("copy_icon").className = 'icon-share';
});
clip.on('mouseup', function () {
document.getElementById("copy_icon").className = 'icon-share icon-white';
});
</script>
</body>