forked from errai/errai.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
659 lines (576 loc) · 24.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
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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Errai Framework</title>
<!-- bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-responsive.min.css">
<!-- Parallax slider stylesheet -->
<link rel="stylesheet" href="css/cslider.css">
<!-- Theme: black -->
<link rel="stylesheet" href="css/black.css">
<!-- Lightbox gallery -->
<link rel="stylesheet" href="css/prettyPhoto.css" type="text/css" media="screen">
<!-- Syntax highlighting theme -->
<link rel="stylesheet" href="css/rainbow-syntax-colors.css" type="text/css">
<!-- Meta -->
<meta name="description" content="Errai: Type-safe web applications in pure Java">
<meta name="author" content="Errai Team">
<!-- Favicon -->
<link rel="Shortcut Icon" href="http://errai.github.io/images/errai16.png">
<!-- HTML5 for older browsers -->
<script src="js/modernizr-1.6.min.js"></script>
<!-- Device viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Google Feeds API -->
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script>
google.load("feeds", "1");
function OnLoad() {
var feedControl = new google.feeds.FeedControl();
feedControl.addFeed("http://errai-blog.blogspot.com/feeds/posts/default", "Latest Posts");
feedControl.draw(document.getElementById("feed"));
}
google.setOnLoadCallback(OnLoad);
</script>
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-43022356-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = 'https://ssl.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<svg id="body-svg"></svg>
<div class="container navbar navbar-inverse">
<div class="navbar-inner">
<a class="btn btn-navbar" data-target=".nav-collapse" data-toggle="collapse">
<span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a>
<div class="nav-collapse collapse">
<ul class="nav pull-left">
<li class=""><a href=""><img src="images/icons/errai.png" style="height:24px">Errai</a>
<li class=""><a href="getting-started/index.html" onClick="_gaq.push(['_trackEvent', 'Click', 'Guide', 'Getting Started']);">Get Started</a>
</li>
<li class=""><a href="http://docs.jboss.org/errai/latest/errai/reference/html_single/">Learn</a>
</li>
<li class=""><a href="#Community">Contribute</a>
</li>
</ul>
<ul class="nav pull-right">
<li><a href="http://errai-blog.blogspot.ca/">Blog</a></li>
</ul>
</div>
</div>
</div>
<div class="container" id="main-container">
<!-- Header -->
<header>
<!-- Slider & Product area -->
<section id="teaser">
<!-- Slider -->
<div id="da-slider" class="da-slider">
<a href="https://github.com/errai/errai"><img style="position: absolute; top: 0; right: 0; border: 0; z-index: 100" src="images/forkme.png" alt="Fork me on GitHub"></a>
<div class="da-slide">
<br><br>
<h2>
<b>Errai:</b> Type-safe web apps in pure Java
</h2>
<br>
<div class="da-img">
<img src="images/errai_logo.png" style="padding-top: 30px" alt="Errai Icon" class="hidden-phone" />
</div>
</div>
<div class="da-slide">
<br><br>
<h2>Flexible HTML5 Templating</h2>
<pre data-language=html>
<div class="customer">
<input id="name" type="text" placeholder="Your Name">
<input id="phone" type="tel" placeholder="Phone Number">
<button id="saveButton">Save</button>
</div>
</pre>
</div>
<div class="da-slide">
<br><br>
<h2>Simple DOM Element Injection and Binding</h2>
<pre data-language=java>
@Templated @Page
public class CustomerForm extends Composite {
@Inject @DataField TextBox name;
@Inject @DataField TextBox phone;
@Inject @DataField Button saveButton;
@EventHandler("saveButton")
public void onSave(ClickEvent event) {
...
}
}
</pre>
</div>
<div class="da-slide">
<br><br>
<h2>Bidirectional Model ↔ UI Binding</h2>
<pre data-language=java>
@Templated @Page
public class CustomerForm extends Composite {
@Inject @Model Customer customer;
@Inject @Bound @DataField TextBox name;
@Inject @Bound @DataField TextBox phone;
@Inject @DataField Button saveButton;
@EventHandler("saveButton")
public void onSave(ClickEvent event) {
//customer already reflects form contents (two-way data binding)
sendCustomerToServer(customer);
}
}
</pre>
</div>
<div class="da-slide">
<br><br>
<h2>Choice of JAX-RS or Bus RPC</h2>
<pre data-language=java>
@Path("/customers")
public interface CustomerEndpoint {
@GET
public long create(Customer customer);
}
or
@Remote
public interface CustomerEndpoint {
public long create(Customer customer);
}
</pre>
</div>
<div class="da-slide">
<br><br>
<h2>Typesafe RPC Client</h2>
<pre data-language=java>
@Templated @Page
public class CustomerForm extends Composite {
@Inject
Caller<CustomerEndpoint> customerEndpoint;
private void sendCustomerToServer(Customer customer) {
RemoteCallback remoteCallback = ...
customerEndpoint.call(remoteCallback).create(customer);
}
}
</pre>
</div>
<div class="da-slide">
<br><br>
<h2>Bookmarkable Page Navigation</h2>
<pre data-language=java>
@Templated
public class MainMenu extends Composite {
@Inject @DataField
private TransitionAnchor<CustomerForm> customerForm;
...
}
</pre>
</div>
<div class="da-slide">
<br>
<h2>Typesafe Distributed Events</h2>
<pre data-language=java>
@Stateless
public class CustomerEndpointImpl implements CustomerEndpoint {
@Inject @New
private Event<Customer> customerEvent;
public long create(Customer customer) {
// fire an event on the server
customerEvent.fire(customer);
}
}
@Templated
public class CustomerList extends Composite {
// and simply observe the event on the client
private void onNewCustomer(@Observes @New Customer customer) {...}
}
</pre>
</div>
<div class="da-slide">
<br><br>
<h2>Integrated with Mobile hardware</h2>
<pre data-language=java>
@Templated @Page
public class CustomerForm extends Composite {
@Inject
private Camera camera;
private void onBatteryLow(@Observes BatteryLowEvent event) {
...
}
}
</pre>
</div>
<div class="da-slide">
<br><br>
<h2>Client-side JPA For Offline Storage</h2>
<pre data-language=java>
@Templated @Page
public class CustomerForm extends Composite {
@Inject
private EntityManager em;
public void save(Customer customer) {
em.merge(customer);
em.flush();
}
}
</pre>
</div>
</div>
</section>
<!-- Tagline -->
<section id="tagline">
<h2 class="hidden-phone">
Build your next generation <b>web app</b> now!
</h2>
<a class="btn btn-large btn-success" href="https://github.com/errai/errai-tutorial/archive/master.zip" target="_blank" onClick="_gaq.push(['_trackEvent', 'Downloads', 'Demo', 'Getting Started']);">Download Now</a>
</section>
</header>
<div class="clear"></div>
<!-- Content -->
<div class="content">
<section id="content" class="row-fluid text-center">
<div class="span3 content-box">
<img src="images/icons/html5.png" alt="HTML5 templates">
<h3>HTML5 Templates</h3>
<p>Create standard-conform HTML5 templates or use existing HTML and CSS files to design your applications. Cleanly separate layout and logic.</p>
</div>
<div class="span3 content-box">
<img src="images/icons/cog.png" alt="Share Code">
<h3>Shared Code</h3>
<p>Share code between the client and the server. Reuse your data model, validation and business logic in the
browser. Don't repeat yourself!</p>
</div>
<div class="span3 content-box">
<img src="images/icons/lcd.png" alt="Boilerplate-free">
<h3>Boilerplate-free API</h3>
<p>Leverage Errai's typesafe and declarative programming model. It's simple and powerful. No browser plugin required. Errai is based on <a href="http://www.gwtproject.org/">GWT</a>.</p>
</div>
<div class="span3 content-box">
<img src="images/icons/bulb.png" alt="Open Source">
<h3>Open Source</h3>
<p>Join the Errai open source community! Errai is developed under the Apache License, Version 2.0.</p>
</div>
</section>
<div class="release-summary">
<div class="row-fluid">
<div class="span3 title">
Latest Releases
</div>
<div class="span3">
<div class="version-primary">3.2.3.Final</div> <div class="details">Requires GWT 2.7+ and targets Java EE7 (i.e. Wildfly 8+)</div>
</div>
<div class="span6 details" style="float:right">
<p>Latest stable release of Errai<br> Recommended for new projects
<a class="btn btn-success" href="getting-started/index.html" onClick="_gaq.push(['_trackEvent', 'Click', 'Guide', 'Getting Started']);">Get Started</a>
</p>
<p><a href="https://github.com/errai/errai/tree/3.2.3.Final">Source</a>
| <a href="http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.jboss.errai%22%20AND%20v%3A%223.2.3.Final%22">Binaries</a>
| <a href="https://issues.jboss.org/issues/?jql=fixVersion%20%3D%20%223.2.3.Final%22%20AND%20project%20%3D%20ERRAI">Release notes</a>
| <a href="https://community.jboss.org/en/errai?view=discussions">Forums</a>
| <a href="http://docs.jboss.org/errai/3.2.3.Final/errai/reference/html_single/">Docs</a>
</p>
</div>
</div>
<hr>
<div class="row-fluid muted">
<div class="span3 offset3 version-other">
3.1.2.Final
</div>
<div class="span6 details">
<p>Upgrade any older production systems to this release.</p>
<p><a href="https://github.com/errai/errai/tree/3.1.2.Final">Source</a>
| <a href="http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.jboss.errai%22%20AND%20v%3A%223.1.2.Final%22">Binaries</a>
| <a href="https://issues.jboss.org/issues/?jql=fixVersion%20%3D%20%223.1.2.Final%22%20AND%20project%20%3D%20ERRAI">Release notes</a>
| <a href="https://community.jboss.org/en/errai?view=discussions">Forums</a>
| <a href="http://docs.jboss.org/errai/3.1.2.Final/errai/reference/html_single/">Docs</a>
</p>
</div>
</div>
<div class="row-fluid muted">
<div class="span3 offset3 version-other">
4.0.0-SNAPSHOT
</div>
<div class="span6 details">
<p>Live on the bleeding edge with up-to-the-minute features and fixes delivered continuously.</p>
<p><a href="https://github.com/errai/errai/tree/master">Source</a>
| <a href="https://repository.jboss.org/nexus/index.html#nexus-search;gav~org.jboss.errai~~4.0.0-SNAPSHOT~~">Binaries</a>
| <a href="https://issues.jboss.org/issues/?jql=project%20%3D%20ERRAI">Known Issues</a>
| <a href="https://community.jboss.org/en/errai?view=discussions">Forums</a>
| <a href="http://docs.jboss.org/errai/latest/errai/reference/html_single/">Docs</a>
| <a href="https://hudson.jboss.org/hudson/job/Errai/">CI Build</a>
</p>
</div>
</div>
</div>
<div class="html5-summary">
<div class="row-fluid content-box">
<h3 style="padding-left:10px">HTML5 UIs!</h3>
<p>
In Errai, we use standard HTML and CSS for UI layout. Take an HTML file directly from your designer or brand team and use it in your application. No need to battle merge conflicts when bringing in design changes. The HTML files just serve as templates. All client-side logic is in companion Java classes that provide access to the fields in the templates. Check out this simple HTML form for filing complaints.
</p>
<div class="span6 row-fluid complaint-form" style="margin-left:0px; margin-right:25px">
<h5>ComplaintForm.html</h5>
<pre data-language=html class="code-snippet-full" style="min-width:455px">
<div class="complaint">
<input id="name" type="text" placeholder="Full Name">
<input id="email" type="email" placeholder="[email protected]">
<textarea id="text" placeholder="How can we help?"></textarea>
<button id="saveButton">Save</button>
</div></pre>
<pre data-language=html class="code-snippet-short">
<div class="complaint">
<input id="name" placeholder="Full Name">
<input id="email" type="email">
<textarea id="text"></textarea>
<button id="saveButton">Save</button>
</div></pre>
<p style="padding-left:0px">
Attaching an event handler requires just a single annotation. Two-way data binding ensures that the model object and the UI fields are automatically kept in sync. Errai also comes with built-in page navigation support that allows transitioning between pages using bookmarkable URLs, all verified at compile time! Learn more about Errai UI
<a href="http://docs.jboss.org/errai/3.2.3.Final/errai/reference/html_single/#sid-51806600">here</a>.
</p>
</div>
<div class="span5 row-fluid" style="margin-left:0px">
<h5>ComplaintForm.java</h5>
<pre data-language=java class="code-snippet-full">
@Templated @Page
public class ComplaintForm extends Composite {
@Inject @Model Complaint complaint;
@Inject @Bound @DataField TextBox name;
@Inject @Bound @DataField TextBox email;
@Inject @Bound @DataField TextArea text;
@Inject @DataField Button saveButton;
@EventHandler("saveButton")
public void onSave(ClickEvent event) {
sendComplaintToServer(complaint);
}
} </pre>
<pre data-language=java class="code-snippet-short">
@Templated @Page
public class ComplaintForm
extends Composite {
@Inject @Model Complaint complaint;
@Inject @Bound @DataField TextBox name;
@Inject @Bound @DataField TextBox email;
@Inject @Bound @DataField TextArea text;
@Inject @DataField Button saveButton;
@EventHandler("saveButton")
public void onSave(ClickEvent event) {
sendComplaintToServer(complaint);
}
} </pre>
</div>
</div>
</div>
<div class="html5-summary">
<div class="row-fluid content-box">
<h3 style="padding-left:10px">Java EE in the Browser!</h3>
<p>
Errai brings Java EE to the browser. Leveraging the GWT compiler, Errai enables you to reuse existing Java EE code on the client. Simply persist your entities into the browser's local storage using JPA and keep them in sync with the server using our data sync module. Observe and fire CDI events on the client and exchange events between the client and server. Learn all about Errai's Java EE features <a href="http://docs.jboss.org/errai/3.2.3.Final/errai/reference/html_single/">here</a>.
</p>
<div class="span5 row-fluid jpa" style="margin-left:0px; margin-right:10px;">
<h5>JPA in the Browser</h5>
<pre data-language=java class="code-snippet jpa">
@Templated @Page
public class CustomerForm extends Composite {
@Inject
private EntityManager em;
public void save(Customer customer) {
em.merge(customer);
em.flush();
}
} </pre>
</div>
<div class="span7 row-fluid" style="margin-left:0px;min-width:340x">
<h5>CDI in the Browser</h5>
<div>
<pre data-language=java class="code-snippet cdi">
@ApplicationScoped
public class CustomerPresenter {
@Inject @New
private Event<Customer> customerEvent;
public long create(Customer customer) {
customerEvent.fire(customer);
}
} </pre>
<pre data-language=java class="code-snippet-full" style="min-width:475px">
@Templated
public class CustomerList extends Composite {
private void onNewCustomer(@Observes @New Customer customer) {}
} </pre>
<pre data-language=java class="code-snippet-short">
@Templated
public class CustomerList extends Composite
{
void onNew(@Observes @New Customer c) {}
} </pre>
</div>
</div>
<div class="span5 row-fluid content-box jaxrs" style="margin-left:0px; margin-right:10px; border-top: 1px solid #ccc">
<h5>JAX-RS Integration</h5>
<p style="padding-left:0px">Construct type safe REST calls using JAX-RS annotations on shared interfaces. Let Errai handle the required communication and serialization logic.</p>
<br>
<pre data-language=java class="code-snippet jaxrs" style="padding-top:5px;">
@Path("/customers")
public interface CustomerEndpoint {
@GET
public long create(Customer customer);
} </pre>
</div>
<div class="span6 row-fluid customer-form" style="margin-left:0px">
<pre data-language=java class="code-snippet-full" style="margin-top:19px; min-width:485px">
@Templated @Page
public class CustomerForm extends Composite {
@Inject
Caller<CustomerEndpoint> customerEndpoint;
private void sendCustomerToServer(Customer customer) {
RemoteCallback remoteCallback = ...
customerEndpoint.call(remoteCallback).create(customer);
}
} </pre>
<pre data-language=java class="code-snippet-short">
@Templated @Page
public class CustomerForm extends Composite
{
@Inject
Caller<CustomerEndpoint> caller;
void sendToServer(Customer customer) {
RemoteCallback callback = ...
caller.call(callback).create(customer);
}
} </pre>
</div>
</div>
</div>
<div class="row-fluid block video-block">
<div class="span4 content-box">
<h3 class="video-box-title">Watch the quick tour video →</h3>
<p class="subtitle">Your first steps with Errai</p>
<p>You can build a To-do List application with HTML 5 and Errai UI templates in minutes.</p>
<p>Get the source code of this example from <a href="https://github.com/errai/errai/tree/master/errai-demos/errai-jpa-demo-todo-list">GitHub</a>.</p>
</div>
<div class="span8 flex-video widescreen vimeo">
<iframe src="http://player.vimeo.com/video/55454764" frameborder="0" webkitAllowFullScreen mozallowfullscreen
allowFullScreen></iframe>
</div>
</div>
<div class="row-fluid block video-block">
<div class="span4 content-box">
<h3 class="video-box-title">Watch our GWT.create 2013 session →</h3>
<p class="subtitle">Learn more about Errai</p>
<p>Rich HTML5 Web Apps: Typesafe Edition</p>
<p>Get the source code shown in this presentation from <a href="https://github.com/errai/errai-tutorial">GitHub</a>
</div>
<div class="span8 flex-video widescreen">
<iframe src="http://www.youtube.com/embed/X1FyZVsjulg" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<div class="row-fluid block video-block">
<div class="span4 content-box">
<h3 class="video-box-title">Watch our JavaOne 2012 session →</h3>
<p class="subtitle">Learn more about Errai</p>
<p>Taming the Spaghetti: Rich Web Application with Errai.</p>
<p></p>
</div>
<div class="span8 flex-video widescreen">
<iframe src="http://www.youtube.com/embed/rz2X667Wk_4" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</div>
<!-- Footer -->
<footer>
<div id="howto-panels">
<p>
Follow our <a class="howto-link" href="http://docs.jboss.org/errai/latest/errai/reference/html_single/#sid-54493220">step-by-step guide</a> and make your first
Errai project!
</p>
</div>
<div id="large-footer" class="row-fluid">
<div class="span4 footer-box">
<div class="footer-box-inner">
<h5><a id="Community" style="color:#000000">Community</a></h5>
<h6>We love pull requests!</h6>
<p>Looking for a fun, open community project to get involved in? Well look no further than Errai! We
love when somebody with a great idea puts it into code and hashes out the details with us. We've got a
long track record of working with community contributors to get their great work into the framework.
Everybody wins!</p>
<p>
<a class="footer-link" href="http://github.com/errai/errai">Fork the code on Github</a> and get started today!
</p>
<h6>Join the Conversation</h6>
<p>
Not ready to fork & modify just yet? No problem! Let's talk!
<ul>
<li><a class="footer-link" href="https://community.jboss.org/en/errai?view=discussions">Community forum</a>
– get unstuck
<li><a class="footer-link" href="https://lists.jboss.org/mailman/listinfo/errai-dev">errai-dev</a>
– discuss big changes
<li><a class="footer-link" href="irc://irc.freenode.net/errai">#errai on freenode.net</a>
– chat on IRC
<li><a class="footer-link" href="http://jira.jboss.org/browse/ERRAI">Issue Tracker</a>
– report & track issues
</ul>
<a href="https://twitter.com/share" class="twitter-share-button">Tweet</a>
<div class="g-plusone" data-size="medium" data-annotation="inline" data-width="300"></div>
</div>
</div>
<div class="span4 footer-box">
<div class="footer-box-inner">
<h5>Latest tweets</h5>
<a class="twitter-timeline" href="https://twitter.com/jbosserrai" data-widget-id="349985295057436672">Tweets
by @jbosserrai</a>
</div>
</div>
<div class="span4 footer-box">
<div class="footer-box-inner">
<h5>Blog</h5>
<div id = "feed"></div>
</div>
<div class="footer-box-inner">
<h5>About</h5>
<p>
Errai is a project of the <a class="footer-link" href="http://www.jboss.org">JBoss Community</a>, and is
distributed under the <a class="footer-link" href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache
License version 2.0.</a>
</p>
</div>
</div>
</div>
</footer>
</div>
<br class="spacer">
<div class="container">
<div class="row-fluid">
<div class="span12 text-center">
<a href="http://www.redhat.com/"><img src="images/redhat_logo.png" style="padding-right: 10px"></a>
<a href="http://www.jboss.org/"><img src="images/jboss_redhat_branding.png" alt="JBoss Community"></a>
</div>
</div>
</div>
<br class="spacer">
<!-- Twitter share button -->
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<!-- Google +1 button -->
<script type="text/javascript">
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
<script src="js/jquery-1.7.1.min.js" type="text/javascript"></script>
<script src="js/jquery.cslider.js" type="text/javascript"></script>
<script src="js/jquery.prettyPhoto.js" type="text/javascript"></script>
<script src="js/common.js" type="text/javascript"></script>
<script src="js/rainbow.js" type="text/javascript"></script>
<script src="js/rainbow-java.js" type="text/javascript"></script>
<script src="js/rainbow-html.js" type="text/javascript"></script>
</body>
</html>