You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ps...@apache.org on 2011/02/01 00:20:12 UTC

svn commit: r1065848 - in /commons/proper/math/trunk/src/site/xdoc: changes.xml developers.xml index.xml

Author: psteitz
Date: Mon Jan 31 23:20:11 2011
New Revision: 1065848

URL: http://svn.apache.org/viewvc?rev=1065848&view=rev
Log:
Made reference to component name consistent.

Modified:
    commons/proper/math/trunk/src/site/xdoc/changes.xml
    commons/proper/math/trunk/src/site/xdoc/developers.xml
    commons/proper/math/trunk/src/site/xdoc/index.xml

Modified: commons/proper/math/trunk/src/site/xdoc/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/site/xdoc/changes.xml?rev=1065848&r1=1065847&r2=1065848&view=diff
==============================================================================
--- commons/proper/math/trunk/src/site/xdoc/changes.xml (original)
+++ commons/proper/math/trunk/src/site/xdoc/changes.xml Mon Jan 31 23:20:11 2011
@@ -105,7 +105,7 @@ The <action> type attribute can be add,u
         "CompositeFormat" is now a utility class ("private" constructor).
       </action>
       <action dev="erans" type="fix" issue="MATH-447">
-        By policy, all Commons-Math exceptions must inherit from class
+        By policy, all Commons Math exceptions must inherit from class
         "MathRuntimeException".
       </action>
       <action dev="erans" type="fix" issue="MATH-454">
@@ -270,7 +270,7 @@ The <action> type attribute can be add,u
       </action>
       <action dev="erans" type="add" issue="MATH-440">
         Created "MathUserException" class to convey cause of failure between
-        layers of user code separated by a layer of Commons-Math code. Deprecated
+        layers of user code separated by a layer of Commons Math code. Deprecated
         classes "FunctionEvaluationException", "MatrixVisitorException" and
         "DerivativeException".
       </action>
@@ -303,7 +303,7 @@ The <action> type attribute can be add,u
       <action dev="luc" type="fix" issue="MATH-415">
         Fixed lost cause in MathRuntimeException.createInternalError. Note that
         the message is still the default message for internal errors asking to
-        report a bug to commons-math JIRA tracker. In order to retrieve the
+        report a bug to Commons Math JIRA tracker. In order to retrieve the
         message from the root cause, one has to get the cause itself by getCause().
       </action>
       <action dev="psteitz" type="fix" issue="MATH-411">
@@ -684,7 +684,7 @@ rank transformations;
 Mersenne twister pseudo random number generator.
 This release is NOT source and binary compatible with earlier versions
 of Commons Math. Starting with version 2.0 of the library, the minimal
-version of the Java platform required to compile and use commons-math
+version of the Java platform required to compile and use Commons Math
 is Java 5.  Users are encouraged to upgrade to this version, as in addition
 to new features, this release includes numerous bug fixes.  Users of 
 Commons Math 1.0-1.2 should recompile their code against the 2.0 jar. 
@@ -1072,7 +1072,7 @@ are simply solved by adjusting the impor
       </action>
       <action dev="luc" type="update" >
         Starting with version 2.0 of the library, the minimal version of the Java
-        platform required to compile and use commons-math is Java 5. This version
+        platform required to compile and use Commons Math is Java 5. This version
         is widely deployed now on many systems. It brings new important features
         for specific mathematical developments, for example new functions (log10,
         cbrt, ulp, signum, cosh, sinh, tanh, hypot, expm1, log1p), autoboxing,
@@ -1268,7 +1268,7 @@ are simply solved by adjusting the impor
        include some new probability distributions, a Fraction class, new matrix
        and numerical utilities, and a PRNG pluggability framework making it
        possible to replace the JDK-supplied random number generator in
-       commons-math (and elsewhere) with alternative PRNG implementations.">
+       Commons Math (and elsewhere) with alternative PRNG implementations.">
       <action dev="psteitz" type="fix" issue="MATH-74">
         Made NewtonSolver derivative field transient and implemented readObject to
         initialize.

Modified: commons/proper/math/trunk/src/site/xdoc/developers.xml
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/site/xdoc/developers.xml?rev=1065848&r1=1065847&r2=1065848&view=diff
==============================================================================
--- commons/proper/math/trunk/src/site/xdoc/developers.xml (original)
+++ commons/proper/math/trunk/src/site/xdoc/developers.xml Mon Jan 31 23:20:11 2011
@@ -48,25 +48,25 @@
             <a href="proposal.html">proposal</a> upon which the project is 
             founded.
         </li>
-        <li>Download the commons math source code.  Follow the instructions
+        <li>Download the Commons Math source code.  Follow the instructions
         under the heading "Anonymous Subversion" on the
         <a href="http://www.apache.org/dev/version-control.html">Apache version
          control page</a>  (Also have a look at the 
         <a href="http://wiki.apache.org/commons/UsingSVN">Commons wiki
-        svn page </a>) to check out the commons math code base from Subversion.
-        The svn url for the current development sources of commons-math
+        svn page </a>) to check out the Commons Math code base from Subversion.
+        The svn url for the current development sources of Commons Math
         is 
 <source>https://svn.apache.org/repos/asf/commons/proper/math/trunk</source>
         </li>
-        <li>Like most commons components, commons-math uses Apache Maven as our
+        <li>Like most commons components, Commons Math uses Apache Maven as our
             build tool. We now use Maven 2 as our primary build platform (what
             we use to cut releases, for continuous integration builds, and for
             development).  The sources can also be built using Ant (a working 
             Ant build.xml is included in the top level project directory). 
-            To build commons math using Maven 2, you can follow the instructions for
+            To build Commons Math using Maven 2, you can follow the instructions for
             <a href="http://maven.apache.org/run-maven/index.html">Building a
             project with Maven 2</a>. Launch Maven from the top-level directory
-            in the checkout of commons-math trunk. No special setup is required,
+            in the checkout of Commons Math trunk. No special setup is required,
             except that currently to build the site (i.e. to execute Maven's
             "site" goal), you may need to increase the default memory allocation
             (e.g. <code>export MAVEN_OPTS=-Xmx512m</code>) before launching
@@ -106,7 +106,7 @@
     <p><strong>Contributing ideas and code</strong></p>
     <p>
      Follow the steps below when making suggestions for additions or
-     enhancements to commons-math. This will make it easier for the community
+     enhancements to Commons Math. This will make it easier for the community
      to comment on your ideas and for the committers to keep track of them. 
      Thanks in advance!
      <ol>
@@ -149,7 +149,7 @@
    </subsection>
    <subsection name='Coding Style'>
     <p>
-     Commons-math follows <a href="http://java.sun.com/docs/codeconv/">Code
+     Commons Math follows <a href="http://java.sun.com/docs/codeconv/">Code
      Conventions for the Java Programming Language</a>. As part of the maven
      build process, style checking is performed using the Checkstyle plugin,
      using the properties specified in <code>checkstyle.xml</code>.

Modified: commons/proper/math/trunk/src/site/xdoc/index.xml
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/site/xdoc/index.xml?rev=1065848&r1=1065847&r2=1065848&view=diff
==============================================================================
--- commons/proper/math/trunk/src/site/xdoc/index.xml (original)
+++ commons/proper/math/trunk/src/site/xdoc/index.xml Mon Jan 31 23:20:11 2011
@@ -21,12 +21,12 @@
 <document>
 
  <properties>
-  <title>Commons-Math: The Apache Commons Mathematics Library</title>
+  <title>Commons Math: The Apache Commons Mathematics Library</title>
  </properties>
 
  <body>
 
-  <section name="Commons-Math: The Apache Commons Mathematics Library" href="summary">
+  <section name="Commons Math: The Apache Commons Mathematics Library" href="summary">
    <p>
     Commons Math is a library of lightweight, self-contained
     mathematics and statistics components addressing the most common