You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2009/08/09 14:05:05 UTC

svn commit: r802528 - in /commons/sandbox/nabla/trunk: ./ src/main/java/org/apache/commons/nabla/ src/main/java/org/apache/commons/nabla/algorithmic/ src/main/java/org/apache/commons/nabla/algorithmic/analysis/ src/main/java/org/apache/commons/nabla/al...

Author: luc
Date: Sun Aug  9 12:05:04 2009
New Revision: 802528

URL: http://svn.apache.org/viewvc?rev=802528&view=rev
Log:
added package.html files (and set up a checkstyle test for them)

Added:
    commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/analysis/package.html   (with props)
    commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/arithmetic/package.html   (with props)
    commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/functions/package.html   (with props)
    commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/instructions/package.html   (with props)
    commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/package.html   (with props)
    commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/trimming/package.html   (with props)
    commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/caching/package.html   (with props)
    commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/core/package.html   (with props)
    commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/package.html   (with props)
Modified:
    commons/sandbox/nabla/trunk/checkstyle.xml

Modified: commons/sandbox/nabla/trunk/checkstyle.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/nabla/trunk/checkstyle.xml?rev=802528&r1=802527&r2=802528&view=diff
==============================================================================
--- commons/sandbox/nabla/trunk/checkstyle.xml (original)
+++ commons/sandbox/nabla/trunk/checkstyle.xml Sun Aug  9 12:05:04 2009
@@ -19,6 +19,7 @@
                         "http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
 
 <module name="Checker">
+    <module name="PackageHtml"/>
     <module name="TreeWalker">
         <module name="AvoidStarImport"/>
         <module name="ConstantName"/>

Added: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/analysis/package.html
URL: http://svn.apache.org/viewvc/commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/analysis/package.html?rev=802528&view=auto
==============================================================================
--- commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/analysis/package.html (added)
+++ commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/analysis/package.html Sun Aug  9 12:05:04 2009
@@ -0,0 +1,20 @@
+<html>
+<!--
+   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.
+  -->
+    <!-- $Revision$ $Date$ -->
+    <body>Bytecode analysis and transformation package</body>
+</html>

Propchange: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/analysis/package.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/analysis/package.html
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/arithmetic/package.html
URL: http://svn.apache.org/viewvc/commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/arithmetic/package.html?rev=802528&view=auto
==============================================================================
--- commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/arithmetic/package.html (added)
+++ commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/arithmetic/package.html Sun Aug  9 12:05:04 2009
@@ -0,0 +1,20 @@
+<html>
+<!--
+   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.
+  -->
+    <!-- $Revision$ $Date$ -->
+    <body>Arithmetic operations transformers package</body>
+</html>

Propchange: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/arithmetic/package.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/arithmetic/package.html
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/functions/package.html
URL: http://svn.apache.org/viewvc/commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/functions/package.html?rev=802528&view=auto
==============================================================================
--- commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/functions/package.html (added)
+++ commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/functions/package.html Sun Aug  9 12:05:04 2009
@@ -0,0 +1,20 @@
+<html>
+<!--
+   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.
+  -->
+    <!-- $Revision$ $Date$ -->
+    <body>Mathematical functions transformers package</body>
+</html>

Propchange: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/functions/package.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/functions/package.html
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/instructions/package.html
URL: http://svn.apache.org/viewvc/commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/instructions/package.html?rev=802528&view=auto
==============================================================================
--- commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/instructions/package.html (added)
+++ commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/instructions/package.html Sun Aug  9 12:05:04 2009
@@ -0,0 +1,20 @@
+<html>
+<!--
+   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.
+  -->
+    <!-- $Revision$ $Date$ -->
+    <body>General instructions transformers package</body>
+</html>

Propchange: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/instructions/package.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/instructions/package.html
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/package.html
URL: http://svn.apache.org/viewvc/commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/package.html?rev=802528&view=auto
==============================================================================
--- commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/package.html (added)
+++ commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/package.html Sun Aug  9 12:05:04 2009
@@ -0,0 +1,20 @@
+<html>
+<!--
+   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.
+  -->
+    <!-- $Revision$ $Date$ -->
+    <body>Algorithmic differentiation package</body>
+</html>

Propchange: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/package.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/package.html
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/trimming/package.html
URL: http://svn.apache.org/viewvc/commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/trimming/package.html?rev=802528&view=auto
==============================================================================
--- commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/trimming/package.html (added)
+++ commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/trimming/package.html Sun Aug  9 12:05:04 2009
@@ -0,0 +1,20 @@
+<html>
+<!--
+   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.
+  -->
+    <!-- $Revision$ $Date$ -->
+    <body>Bytecode special constructs handling package</body>
+</html>

Propchange: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/trimming/package.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/algorithmic/trimming/package.html
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/caching/package.html
URL: http://svn.apache.org/viewvc/commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/caching/package.html?rev=802528&view=auto
==============================================================================
--- commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/caching/package.html (added)
+++ commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/caching/package.html Sun Aug  9 12:05:04 2009
@@ -0,0 +1,20 @@
+<html>
+<!--
+   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.
+  -->
+    <!-- $Revision$ $Date$ -->
+    <body>Caching of already differentiated functions package</body>
+</html>

Propchange: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/caching/package.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/caching/package.html
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/core/package.html
URL: http://svn.apache.org/viewvc/commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/core/package.html?rev=802528&view=auto
==============================================================================
--- commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/core/package.html (added)
+++ commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/core/package.html Sun Aug  9 12:05:04 2009
@@ -0,0 +1,20 @@
+<html>
+<!--
+   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.
+  -->
+    <!-- $Revision$ $Date$ -->
+    <body>Core public interfaces of the Apache commons-nabla library.</body>
+</html>

Propchange: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/core/package.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/core/package.html
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/package.html
URL: http://svn.apache.org/viewvc/commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/package.html?rev=802528&view=auto
==============================================================================
--- commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/package.html (added)
+++ commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/package.html Sun Aug  9 12:05:04 2009
@@ -0,0 +1,20 @@
+<html>
+<!--
+   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.
+  -->
+    <!-- $Revision$ $Date$ -->
+    <body>Top-level package of the Apache commons-nabla library.</body>
+</html>

Propchange: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/package.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/package.html
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision