Skip to content

Commit c3b2321

Browse files
committed
OPEN - task 3: Add project for site templates
http://github.com/JavaMoney/JavaMoney.github.io/issues/issue/3
1 parent 04ce676 commit c3b2321

File tree

2 files changed

+326
-0
lines changed

2 files changed

+326
-0
lines changed

lib.html

Lines changed: 158 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,158 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>JavaMoney</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<meta name="description" content="">
8+
<meta name="author" content="">
9+
<meta name="keywords" content="">
10+
11+
<!-- Le styles -->
12+
<link href="/css/bootstrap.min.css" rel="stylesheet">
13+
<link href="/css/asciidoctor.css" rel="stylesheet">
14+
<link href="/css/base.css" rel="stylesheet">
15+
<link href="/css/bootstrap-responsive.min.css" rel="stylesheet">
16+
17+
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
18+
<!--[if lt IE 9]>
19+
<script src="/js/html5shiv.js"></script>
20+
<![endif]-->
21+
22+
<!-- Fav and touch icons -->
23+
<!--<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../assets/ico/apple-touch-icon-144-precomposed.png">
24+
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../assets/ico/apple-touch-icon-114-precomposed.png">
25+
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../assets/ico/apple-touch-icon-72-precomposed.png">
26+
<link rel="apple-touch-icon-precomposed" href="../assets/ico/apple-touch-icon-57-precomposed.png">-->
27+
<link rel="shortcut icon" href="favicon.ico">
28+
</head>
29+
<body>
30+
<div id="wrap">
31+
32+
<!-- Fixed navbar -->
33+
<div class="navbar navbar-fixed-top">
34+
<div class="navbar-inner">
35+
<div class="container">
36+
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
37+
<span class="icon-bar"></span>
38+
<span class="icon-bar"></span>
39+
<span class="icon-bar"></span>
40+
</button>
41+
<a class="brand" href="/">JavaMoney</a>
42+
<div class="nav-collapse collapse">
43+
<ul class="nav">
44+
<li><a href="/index.html">Home</a></li>
45+
<li><a href="about.html">About</a></li>
46+
<li><a href="http://github.com/JavaMoney/">View on GitHub</a></li>
47+
<li><a href="feed.xml">Subscribe</a></li>
48+
<li class="dropdown">
49+
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Modules <b class="caret"></b></a>
50+
<ul class="dropdown-menu">
51+
<li><a href="ri.html">Moneta (RI)</a></li>
52+
<li><a href="tck.html">TCK</a></li>
53+
<li><a href="lib.html">Library</a></li>
54+
<li class="divider"></li>
55+
<li class="nav-header">Specification</li>
56+
<li><a href="http://jcp.org/en/jsr/detail?id=354">JSR 354 Detail Page</a></li>
57+
<li><a href="https://javamoney.java.net/api/">JSR 354 API on Java.net</a></li>
58+
</ul>
59+
</li>
60+
</ul>
61+
</div><!--/.nav-collapse -->
62+
</div>
63+
</div>
64+
</div>
65+
<div class="container">
66+
<div class="page-header">
67+
<h1>Library</h1>
68+
</div>
69+
70+
<p><em>15 November 2013</em></p>
71+
72+
<p>
73+
<header>
74+
<h1>JavaMoney Library</h1>
75+
<h2>JavaMoney financial library, evolved from JSR 354 development.</h2>
76+
</header>
77+
78+
<section id="downloads" class="clearfix">
79+
<a href="https://github.com/JavaMoney/javamoney-lib/zipball/master" id="download-zip" class="button"><span>Download .zip</span></a>
80+
<a href="https://github.com/JavaMoney/javamoney-lib/tarball/master" id="download-tar-gz" class="button"><span>Download .tar.gz</span></a>
81+
<a href="https://github.com/JavaMoney/javamoney-lib" id="view-on-github" class="button"><span>View on GitHub</span></a>
82+
</section>
83+
84+
<hr>
85+
86+
<section id="main_content">
87+
<h3>
88+
<a name="welcome-to-the-javamoney-financial-library" class="anchor" href="#welcome-to-the-javamoney-financial-library"><span class="octicon octicon-link"></span></a>Welcome to the JavaMoney financial library.</h3>
89+
90+
<p>JavaMoney-lib is a financial library that is built upon JSR 354 (or compatible libraries). Whereas the JSR 354 API and reference implementation provides the fundamentals like monetary amounts, customizable currencies and interfaces for interoperation this library adds additional powerful APIs and SPIs that were implemented during JSR development as a proof of concept:</p>
91+
92+
<ul>
93+
<li>
94+
<strong>Currency Conversion</strong>, supporting multiple conversion data providers, direct and derived (chained) rates, current, as well as historic conversion. Also feed implementations from the European Central Bank (EZB) and the International Monetary Funds (IMF) were available, that support currency conversion back to 1995 for almost every ISO currency.</li>
95+
<li>
96+
<strong>Currency Services</strong>, provide a EE styled service, which allows querying currencies available and supports mapping between different currency naming schemes.</li>
97+
<li>
98+
<strong>Formatting</strong> provides an extendable formatting library that allows to define complex formatters, that can be configured in arbitrary ways using <code>LocalizationStyle</code> instances. Also available is a flexible Builder for creating arbitrary complex formatters and parsers based on an ordered set of arbitrary tokens.</li>
99+
<li>
100+
<strong>Region API</strong> provides a forest (a set of trees) of regions. This allows to model regional hierarchies in a more flexible and intuitive way, than adding all functionalities into <code>java.util.Locale</code>. By default the Unicode CLDR region tree, well as ISO countries defined by the 2- or 3-letter country code are available. Of course, the API is fully extendible, so customer related regions such as legal units, customer segments etc can be mapped easily to this API, also.</li>
101+
<li>
102+
<strong>Validity API</strong> This API provides a generic API for accessing historic validity information for arbitrary items, and for relationships between items. By default the API provides access to the historic relationship of currencies to countries using the Unicode CLDR data.</li>
103+
<li>
104+
<strong>common</strong> provides general functionality, such as an automatic data loader, which allows to update and locally cache arbitrary remote resources, and inform clients, if a new version of a resource was detected.</li>
105+
<li>
106+
<strong>calc</strong> finally provides a set of moentary calculations and formulas. The idea here is to provide a comprehensive set of algorithms and tools to perform complex financial mathematics. </li>
107+
<li>
108+
<strong>bundles</strong> finally provides the library in different flavors, targeting different execution environments:
109+
** <strong>se</strong> loading SPIs only using the JDK <code>ServiceLoader</code>.
110+
** <strong>se-cdi</strong> loading SPIs based on a Weld SE container.
111+
** <strong>ee</strong> loading SPIs based on CDI in a Java EE environment &gt;= EE6.</li>
112+
</ul><p>To use the library you simply have to add the Maven dependency to your project (tbd)</p>
113+
114+
<pre><code>&lt;dependency&gt;
115+
&lt;groupId&gt;org.javamoney.lib&lt;/groupId&gt;
116+
&lt;artifactId&gt;javamoney-${module}&lt;artifactId&gt;
117+
&lt;versionId&gt;the current version&lt;/version&gt;
118+
&lt;/dependency&gt;
119+
</code></pre>
120+
121+
<h3>
122+
<a name="authors-and-contributors" class="anchor" href="#authors-and-contributors"><span class="octicon octicon-link"></span></a>Authors and Contributors</h3>
123+
124+
<p>Different people have contributed to this project. During the development of JSR 354, <a href="https://github.com/atsticks" class="user-mention">@atsticks</a> and <a href="https://github.com/keilw" class="user-mention">@keilw</a> founded this project and were also the main contributors. Nevertheless everybody is really welcome to help us, to make this library more feasible and add features.</p>
125+
126+
<h3>
127+
<a name="javamoney-incubator" class="anchor" href="#javamoney-incubator"><span class="octicon octicon-link"></span></a>javamoney-incubator</h3>
128+
129+
<p>The javamoney incubator module is for testing out new features or modules before they enter the official javamoney library. This allows to gain experience and make components error prone and performant and enables a discussion of new features with a broader community.</p>
130+
131+
<h3>
132+
<a name="support-or-contact" class="anchor" href="#support-or-contact"><span class="octicon octicon-link"></span></a>Support or Contact</h3>
133+
134+
<p>Having trouble with Pages? Check out the documentation at http://tbd/pages or contact <a href="mailto:support@javamoney.org">support@javamoney.org</a>.</p>
135+
</section>
136+
</p>
137+
138+
<hr>
139+
140+
</div>
141+
<div id="push"></div>
142+
</div>
143+
144+
<div id="footer">
145+
<div class="container">
146+
<p class="muted credit">&copy; 2013 | Mixed with <a href="http://twitter.github.com/bootstrap/">Bootstrap v2.3.1</a> | Baked with <a href="http://jbake.org">JBake v2.2.0</a></p>
147+
</div>
148+
</div>
149+
150+
<!-- Le javascript
151+
================================================== -->
152+
<!-- Placed at the end of the document so the pages load faster -->
153+
<script src="/js/jquery-1.9.1.min.js"></script>
154+
<script src="/js/bootstrap.min.js"></script>
155+
<script src="/js/run_prettify.js"></script>
156+
157+
</body>
158+
</html>

ri.html

Lines changed: 168 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,168 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>JavaMoney</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<meta name="description" content="">
8+
<meta name="author" content="">
9+
<meta name="keywords" content="">
10+
11+
<!-- Le styles -->
12+
<link href="/css/bootstrap.min.css" rel="stylesheet">
13+
<link href="/css/asciidoctor.css" rel="stylesheet">
14+
<link href="/css/base.css" rel="stylesheet">
15+
<link href="/css/bootstrap-responsive.min.css" rel="stylesheet">
16+
17+
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
18+
<!--[if lt IE 9]>
19+
<script src="/js/html5shiv.js"></script>
20+
<![endif]-->
21+
22+
<!-- Fav and touch icons -->
23+
<!--<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../assets/ico/apple-touch-icon-144-precomposed.png">
24+
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../assets/ico/apple-touch-icon-114-precomposed.png">
25+
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../assets/ico/apple-touch-icon-72-precomposed.png">
26+
<link rel="apple-touch-icon-precomposed" href="../assets/ico/apple-touch-icon-57-precomposed.png">-->
27+
<link rel="shortcut icon" href="favicon.ico">
28+
</head>
29+
<body>
30+
<div id="wrap">
31+
32+
<!-- Fixed navbar -->
33+
<div class="navbar navbar-fixed-top">
34+
<div class="navbar-inner">
35+
<div class="container">
36+
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
37+
<span class="icon-bar"></span>
38+
<span class="icon-bar"></span>
39+
<span class="icon-bar"></span>
40+
</button>
41+
<a class="brand" href="/">JavaMoney</a>
42+
<div class="nav-collapse collapse">
43+
<ul class="nav">
44+
<li><a href="/index.html">Home</a></li>
45+
<li><a href="about.html">About</a></li>
46+
<li><a href="http://github.com/JavaMoney/">View on GitHub</a></li>
47+
<li><a href="feed.xml">Subscribe</a></li>
48+
<li class="dropdown">
49+
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Modules <b class="caret"></b></a>
50+
<ul class="dropdown-menu">
51+
<li><a href="ri.html">Moneta (RI)</a></li>
52+
<li><a href="tck.html">TCK</a></li>
53+
<li><a href="lib.html">Library</a></li>
54+
<li class="divider"></li>
55+
<li class="nav-header">Specification</li>
56+
<li><a href="http://jcp.org/en/jsr/detail?id=354">JSR 354 Detail Page</a></li>
57+
<li><a href="https://javamoney.java.net/api/">JSR 354 API on Java.net</a></li>
58+
</ul>
59+
</li>
60+
</ul>
61+
</div><!--/.nav-collapse -->
62+
</div>
63+
</div>
64+
</div>
65+
<div class="container">
66+
<div class="page-header">
67+
<h1>Moneta</h1>
68+
</div>
69+
70+
<p><em>15 November 2013</em></p>
71+
72+
<p>
73+
<h1>JSR 354 RI</h1>
74+
<h2>Reference Implementation of JSR 354</h2>
75+
76+
<section id="downloads" class="clearfix">
77+
<a href="https://github.com/JavaMoney/jsr354-ri/zipball/master"
78+
id="download-zip" class="button"><span>Download .zip</span></a> <a
79+
href="https://github.com/JavaMoney/jsr354-ri/tarball/master"
80+
id="download-tar-gz" class="button"><span>Download .tar.gz</span></a>
81+
<a href="https://github.com/JavaMoney/jsr354-ri" id="view-on-github"
82+
class="button"><span>View on GitHub</span></a>
83+
</section>
84+
85+
<hr>
86+
87+
<section id="main_content">
88+
<h3>
89+
<a name="welcome-to-moneta---the-jsr-354-reference-implementation"
90+
class="anchor"
91+
href="#welcome-to-moneta---the-jsr-354-reference-implementation"><span
92+
class="octicon octicon-link"></span></a>Welcome to Moneta - the JSR 354
93+
reference implementation
94+
</h3>
95+
96+
<p>This module implements JSR 354 Money &amp; Currency. Hereby
97+
basically implementations of amounts, currency and roundings are
98+
provided. You can access the RI by adding the following Maven
99+
dependencies:</p>
100+
101+
<pre>
102+
<code>&lt;dependency&gt;
103+
&lt;groupId&gt;org.javamoney.ri&lt;/groupId&gt;
104+
&lt;artifactId&gt;jsr-354-ri&lt;/artifactId&gt;
105+
&lt;version&gt;0.8-SNAPSHOT&lt;/version&gt;
106+
&lt;/dependency&gt;
107+
</code>
108+
</pre>
109+
110+
<p>Nevertheless we highly recommend you to depend on the Javamoney
111+
OSS library to be used, due to the following reasons:</p>
112+
113+
<ul>
114+
<li>the RI only contains a very small, minimalistic subset of
115+
features.</li>
116+
<li>The JavaMoney project contains additional functionalities,
117+
such as ** currency conversion, ** currency management and **
118+
rounding and formatting features, ** regions and validite4s support
119+
** bundles for different runtime environments</li>
120+
</ul>
121+
122+
<h3>
123+
<a name="authors-and-contributors" class="anchor"
124+
href="#authors-and-contributors"><span
125+
class="octicon octicon-link"></span></a>Authors and Contributors
126+
</h3>
127+
128+
<p>
129+
Different people have contributed to this project. During the
130+
development of JSR 354, <a href="https://github.com/atsticks"
131+
class="user-mention">@atsticks</a> and <a
132+
href="https://github.com/keilw" class="user-mention">@keilw</a>
133+
founded this project and were also the main contributors.
134+
</p>
135+
136+
<h3>
137+
<a name="support-or-contact" class="anchor" href="#support-or-contact"><span
138+
class="octicon octicon-link"></span></a>Support or Contact
139+
</h3>
140+
141+
<p>
142+
Having trouble with Pages? Check out the documentation at
143+
http://tbd/pages or contact <a href="mailto:support@javamoney.org">support@javamoney.org</a>.
144+
</p>
145+
</section>
146+
</p>
147+
148+
<hr>
149+
150+
</div>
151+
<div id="push"></div>
152+
</div>
153+
154+
<div id="footer">
155+
<div class="container">
156+
<p class="muted credit">&copy; 2013 | Mixed with <a href="http://twitter.github.com/bootstrap/">Bootstrap v2.3.1</a> | Baked with <a href="http://jbake.org">JBake v2.2.0</a></p>
157+
</div>
158+
</div>
159+
160+
<!-- Le javascript
161+
================================================== -->
162+
<!-- Placed at the end of the document so the pages load faster -->
163+
<script src="/js/jquery-1.9.1.min.js"></script>
164+
<script src="/js/bootstrap.min.js"></script>
165+
<script src="/js/run_prettify.js"></script>
166+
167+
</body>
168+
</html>

0 commit comments

Comments
 (0)