Module dedicated web page.
Project: http://git-wip-us.apache.org/repos/asf/commons-rng/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-rng/commit/9b33d8b4 Tree: http://git-wip-us.apache.org/repos/asf/commons-rng/tree/9b33d8b4 Diff: http://git-wip-us.apache.org/repos/asf/commons-rng/diff/9b33d8b4 Branch: refs/heads/multimodule Commit: 9b33d8b47cd6515ec35a391ed5cbd11465834b37 Parents: 568e74b Author: Gilles <[email protected]> Authored: Fri Nov 4 13:07:07 2016 +0100 Committer: Gilles <[email protected]> Committed: Fri Nov 4 13:07:07 2016 +0100 ---------------------------------------------------------------------- commons-rng-core/src/site/site.xml | 40 +++++++++++++++++++ commons-rng-core/src/site/xdoc/index.xml | 55 +++++++++++++++++++++++++++ 2 files changed, 95 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-rng/blob/9b33d8b4/commons-rng-core/src/site/site.xml ---------------------------------------------------------------------- diff --git a/commons-rng-core/src/site/site.xml b/commons-rng-core/src/site/site.xml new file mode 100644 index 0000000..93f5fca --- /dev/null +++ b/commons-rng-core/src/site/site.xml @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<project name="RNG"> + <bannerRight> + <name>Apache Commons RNG</name> + <src>/images/commons_rng.small.png</src> + <href>/index.html</href> + </bannerRight> + + <body> + <menu name="RNG Core"> + <item name="Overview" href="index.html"/> + <item name="Latest API docs (development)" + href="apidocs/index.html"/> + <item name="Javadoc (1.0 release)" + href="http://commons.apache.org/rng/client-api/javadocs/api-1.0/index.html"/> + </menu> + + <head> + <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"> + </script> + </head> + + </body> +</project> http://git-wip-us.apache.org/repos/asf/commons-rng/blob/9b33d8b4/commons-rng-core/src/site/xdoc/index.xml ---------------------------------------------------------------------- diff --git a/commons-rng-core/src/site/xdoc/index.xml b/commons-rng-core/src/site/xdoc/index.xml new file mode 100644 index 0000000..1600b22 --- /dev/null +++ b/commons-rng-core/src/site/xdoc/index.xml @@ -0,0 +1,55 @@ +<?xml version="1.0"?> + +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + +<document> + + <properties> + <title>Commons RNG Core</title> + </properties> + + <body> + + <section name="Apache Commons RNG: Random Numbers Generators" href="summary"> + <p> + Commons RNG provides implementations of pseudo-random numbers generators that are + either faster or of higher quality (and sometimes both) than <code>java.util.Random</code>. + </p> + + <p> + The "core" module contains pure Java implementations of algorithms that generate + pseudo-random sequences of numbers. + </p> + + <p> + <b> + This module is not intended for direct use by applications. + </b> + For instantiating a generator, application developers are advised to use the + factory methods provided by the "commons-rng-simple" module. + </p> + + <p> + The <a href="apidocs/index.html">Javadoc</a> is available for the benefit of + developers who would like to contribute to this library. + </p> + </section> + + </body> + +</document>
