forked from weld/weld.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
155 lines (142 loc) · 4.9 KB
/
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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Weld - the Reference Implementation for CDI</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<style>
body {
padding-top: 60px;
}
</style>
<link href="/stylesheets/styles.css" rel="stylesheet" type="text/css">
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="/">
<img alt="Weld" class="weld-logo" src="/images/weld_icon_32x.png">
</a>
<ul class="nav">
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/roadmap">
Roadmap
</a>
</li>
<li>
<a href="/documentation">
Documentation
</a>
</li>
<li>
<a href="http://github.com/weld" target="_blank">
Source Code
</a>
</li>
<li>
<a href="/community">
Community
</a>
</li>
<li>
<a href="/download">
Download
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="span3"></div>
<div class="span6">
<img alt="Weld" class="weld-home-logo" src="/images/weld_logo_450x.png">
</div>
<div class="span3"></div>
</div>
<div class="hero-unit">
<p>Weld is the reference implementation for <a href="http://www.cdi-spec.org/" target="_blank">CDI: Contexts and Dependency Injection for the Java EE platform</a>. The CDI specification is a part of the Java EE platform, ie. any Java EE-compliant application server must provide support for CDI. Weld is integrated into many application servers, e.g. <a href="http://www.wildfly.org/" target="_blank">WildFly 8</a> and <a href="https://glassfish.java.net/" target="_blank">Oracle GlassFish 4.x</a>.</p>
<p>Weld is available under the <a href="http://www.apache.org/licenses/LICENSE-2.0.html" target="_blank">Apache License 2.0</a>.</p>
</div>
<div class="row">
<div class="span6">
<h2>Quick Links</h2>
<ul class="simple">
<li>
<p>
<i class="icon-github"></i>
Source code:
<a href="http://github.com/weld" target="_blank">
http://github.com/weld
</a>
</p>
</li>
<li>
<p>
<i class="icon-bug"></i>
Issue Tracker (JBoss JIRA):
<a href="https://jira.jboss.org/jira/browse/WELD" target="_blank">
https://jira.jboss.org/jira/browse/WELD
</a>
</p>
</li>
<li>
<p>
<i class="icon-book"></i>
Latest documentation:
<a href="http://docs.jboss.org/weld/reference/2.0.1.Final/en-US/" target="_blank">
http://docs.jboss.org/weld/reference/2.0.1.Final/en-US/
</a>
</p>
</li>
<li>
<p>
<i class="icon-comments"></i>
Discussions:
<a href="https://community.jboss.org/en/weld?view=discussions" target="_blank">
https://community.jboss.org/en/weld?view=discussions
</a>
</p>
</li>
</ul>
</div>
<div class="span6">
<h2>News</h2>
<ul class="simple">
<li>
<h3>
<a href="/news/2013/06/20/new-weld-site/">Weld has a new web site!</a>
</h3>
<p style="color: #666;">
<strong>2013-6-20: Martin Kouba</strong>
</p>
<p>
Weld has a new web site!
And it’s built with Awestruct.
...
</p>
</li>
</ul>
</div>
</div>
<hr>
<footer>
<p>
© 2013
<a href="www.redhat.com">
<img src="http://static.jboss.org/theme/images/common/redhat_logo.png">
</a>
</p>
</footer>
</div>
</body>
</html>