Skip to content
This repository was archived by the owner on Sep 5, 2023. It is now read-only.

Commit 9c7a5a8

Browse files
glassfishrobotmskdeepak-oracle
glassfishrobot
authored andcommitted
Basic content for website
0 parents  commit 9c7a5a8

File tree

10 files changed

+1169
-0
lines changed

10 files changed

+1169
-0
lines changed

CONTRIBUTING.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
3+
---
4+
5+
# Source Code Submissions
6+
We welcome your contributions and look forward to collaborating with you. We can only accept source code repository
7+
submissions from users who have signed and returned the Oracle
8+
Contributor Agreement. You will find details and the agreement to sign at this OTN web page:
9+
[Oracle Contributor Agreement](http://www.oracle.com/technetwork/community/oca-486395.html).
10+
11+
# Other Contributions
12+
For all project Submissions other than source code repository contributions, the following also applies: Oracle does
13+
not claim ownership of Your Submissions. However, in order to fulfill
14+
the purposes of this project, You must give Oracle and all Users
15+
the right to post, access, discuss, use, publish, disseminate, and refine
16+
Your Submissions.
17+
18+
In legalese: *You hereby grant to Oracle and all
19+
Users a royalty-free, perpetual, irrevocable, worldwide, non-exclusive,
20+
and fully sub-licensable right and license, under Your intellectual
21+
property rights, to reproduce, modify, adapt, publish, translate, create
22+
derivative works from, distribute, perform, display, and use Your
23+
Submissions (in whole or part) and to incorporate or implement them in
24+
other works in any form, media, or technology now known or later
25+
developed, all subject to the obligation to retain any copyright notices
26+
included in Your Submissions. All Users, Oracle, and their
27+
sublicensees are responsible for any modifications they make to the
28+
Submissions of others.*
29+
30+
Copyright © 2017 Oracle and/or its affiliates. All rights reserved.

LICENSE.md

+761
Large diffs are not rendered by default.

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# About
2+
3+
Welcome to the javaserverfaces-spec project.
4+
5+
6+
7+
# IMPORTANT!
8+
9+
* By contributing to this project, you are agreeing to the terms of use described in [CONTRIBUTING.md](./CONTRIBUTING.md)
10+

_config.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
theme: jekyll-theme-architect
2+
3+
title: [javaserverfaces-spec]
4+
description: [GlassFish's Implementation for JavaServer(TM) Faces]
5+
6+
# sidebar links url
7+
links:
8+
source: https://github.com/javaee/javaserverfaces-spec
9+
#download:
10+
#mailinglist:
11+
#javadocs:
12+
#docs:
13+
#faq:
14+
#mailinglist:
15+
#hide_issuetracker: true #set explicitly to 'true' if you don't want to have the issue tracker link displayed
16+

_layouts/default.html

+102
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset='utf-8'>
5+
<meta http-equiv="X-UA-Compatible" content="chrome=1">
6+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
7+
<!--link href="https://fonts.googleapis.com/css?family=Open+Sans" rel='stylesheet' type='text/css'-->
8+
<link href="https://fonts.googleapis.com/css?family=Mukta+Vaani:200,300,400,600,800" rel="stylesheet">
9+
<link rel="stylesheet" href="{{ '/assets/css/style.css?' | relative_url }}" media="screen" type="text/css">
10+
<link rel="stylesheet" href="{{ '/assets/css/print.css' | relative_url }}" media="print" type="text/css">
11+
12+
<!--[if lt IE 9]>
13+
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
14+
<![endif]-->
15+
16+
<title>{{ site.title | default: site.github.repository_name }}</title>
17+
</head>
18+
19+
<body>
20+
<header>
21+
<div class="inner">
22+
<a href="{{ '/' | absolute_url }}">
23+
<h1>{{ site.title | default: site.github.repository_name }}</h1>
24+
</a>
25+
<h2>{{ site.description | default: site.github.project_tagline }}</h2>
26+
{% if site.github.is_project_page %}
27+
<a href="{{ '/' | absolute_url }}" class="button"></a>
28+
{% endif %}
29+
</div>
30+
</header>
31+
32+
<div id="content-wrapper">
33+
<div class="inner clearfix">
34+
<section id="main-content">
35+
{{ content }}
36+
37+
</section>
38+
39+
<aside id="sidebar">
40+
41+
<hr/>
42+
43+
<div class="moveright">
44+
{% if site.links.source %}
45+
<h2><a href="{{ site.links.source }}"><p>Sources</p></a></h2>
46+
{% endif %}
47+
48+
{% if site.links.javadocs %}
49+
<h2><a href="{{ site.links.javadocs }}"><p>APIs</p></a></h2>
50+
{% endif %}
51+
52+
{% if site.links.docs %}
53+
<h2><a href="{{ site.links.docs }}"><p>Documentatation</p></a></h2>
54+
{% endif %}
55+
56+
{% if site.links.faq %}
57+
<h2><a href="{{ site.links.faq }}"><p>FAQ</p></a></h2>
58+
{% endif %}
59+
60+
{% if site.links.download %}
61+
<h2><a href="{{ site.links.download }}"><p>Download</p></a></h2>
62+
{% endif %}
63+
64+
{% if site.links.hide_issuetracker != true %}
65+
<h2><a href="{{ site.github.issues_url }}"><p>Issue Tracker</p></a></h2>
66+
{% endif %}
67+
68+
{% if site.links.mailinglist %}
69+
<h2><a href="{{ site.links.mailinglist }}"><p>Mailing List</p></a></h2>
70+
{% endif %}
71+
72+
<h2><a href="CONTRIBUTING"><p>Contribute</p></a></h2>
73+
74+
<h2><a href="LICENSE"><p>License</p></a></h2>
75+
</div>
76+
77+
<hr/>
78+
79+
<div class="sponsor">
80+
<p>Sponsored by<a href="http://www.oracle.com" class="oraclelogo"></a></p>
81+
</div>
82+
83+
</aside>
84+
</div>
85+
</div>
86+
87+
<div class="footer"><a id="copyright" class="oracle" href="https://www.oracle.com/legal/copyright.html">&copy; Oracle</a> | By contributing to this project, you are agreeing to the terms of use described <a href="CONTRIBUTING">here</a>.</div>
88+
89+
{% if site.google_analytics %}
90+
<script type="text/javascript">
91+
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
92+
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
93+
</script>
94+
<script type="text/javascript">
95+
try {
96+
var pageTracker = _gat._getTracker("{{ site.google_analytics }}");
97+
pageTracker._trackPageview();
98+
} catch(err) {}
99+
</script>
100+
{% endif %}
101+
</body>
102+
</html>

assets/css/print.scss

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
---
3+
4+
@import "{{ site.theme }}";
5+
h1 {
6+
font-size: 1.8em;
7+
}
8+

0 commit comments

Comments
 (0)