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 2008/04/20 21:59:30 UTC

svn commit: r649962 - in /commons/sandbox/nabla/trunk/src/site: site.xml xdoc/internals.xml xdoc/usage.xml

Author: luc
Date: Sun Apr 20 12:59:28 2008
New Revision: 649962

URL: http://svn.apache.org/viewvc?rev=649962&view=rev
Log:
prepared skeleton documentation
this will be populated soon

Added:
    commons/sandbox/nabla/trunk/src/site/xdoc/internals.xml   (with props)
    commons/sandbox/nabla/trunk/src/site/xdoc/usage.xml   (with props)
Modified:
    commons/sandbox/nabla/trunk/src/site/site.xml

Modified: commons/sandbox/nabla/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/nabla/trunk/src/site/site.xml?rev=649962&r1=649961&r2=649962&view=diff
==============================================================================
--- commons/sandbox/nabla/trunk/src/site/site.xml (original)
+++ commons/sandbox/nabla/trunk/src/site/site.xml Sun Apr 20 12:59:28 2008
@@ -22,7 +22,9 @@
   </bannerRight>
   <body>
     <menu name="Nabla">
-      <item name="Overview" href="/index.html" />
+      <item name="Overview"  href="/index.html" />
+      <item name="Usage"     href="/usage.html" />
+      <item name="Internals" href="/internals.html" />
     </menu>
     <menu name="Development">
       <item name="Mailing Lists"           href="/mail-lists.html"/>

Added: commons/sandbox/nabla/trunk/src/site/xdoc/internals.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/nabla/trunk/src/site/xdoc/internals.xml?rev=649962&view=auto
==============================================================================
--- commons/sandbox/nabla/trunk/src/site/xdoc/internals.xml (added)
+++ commons/sandbox/nabla/trunk/src/site/xdoc/internals.xml Sun Apr 20 12:59:28 2008
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!--
+   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>Nabla Internals</title>
+  </properties>
+
+  <body>
+    <section name="Principles" href="principles">
+        <subsection name="Symbolic differentiation" href="symbolic-differentiation">
+        </subsection>
+        <subsection name="Validity" href="validity">
+        </subsection>
+        <subsection name="Virtual machine execution model" href="jvm">
+            <subsubsection name="Frame" href="frame">
+            </subsubsection>
+            <subsubsection name="Bytecode instructions" href="instructions">
+            </subsubsection>
+        </subsection>
+    </section>
+    <section name="Implementation" href="implementation">
+        <subsection name="Differential pairs" href="differential-pairs">
+        </subsection>
+        <subsection name="Bytecode transforms" href="bytecode-transforms">
+        </subsection>
+        <subsection name="Complete differentiation example" href="example">
+        </subsection>
+    </section>
+    <section name="Issues" href="issues">
+        <subsection name="Singularities handling" href="singularities">
+        </subsection>
+        <subsection name="Data flow and control flow analysis" href="flows-analysis">
+        </subsection>
+    </section>
+  </body>
+</document>

Propchange: commons/sandbox/nabla/trunk/src/site/xdoc/internals.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: commons/sandbox/nabla/trunk/src/site/xdoc/usage.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/nabla/trunk/src/site/xdoc/usage.xml?rev=649962&view=auto
==============================================================================
--- commons/sandbox/nabla/trunk/src/site/xdoc/usage.xml (added)
+++ commons/sandbox/nabla/trunk/src/site/xdoc/usage.xml Sun Apr 20 12:59:28 2008
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!--
+   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>Using Nabla</title>
+  </properties>
+
+  <body>
+    <section name="Public API" href="api">
+    </section>
+    <section name="Integration with commons math" href="commons-math">
+    </section>
+  </body>
+</document>

Propchange: commons/sandbox/nabla/trunk/src/site/xdoc/usage.xml
------------------------------------------------------------------------------
    svn:eol-style = native