]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Fix bad xlinks.
authorwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Tue, 19 Sep 2000 07:49:44 +0000 (07:49 +0000)
committerwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Tue, 19 Sep 2000 07:49:44 +0000 (07:49 +0000)
git-svn-id: https://svn.dealii.org/trunk@3334 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/doc/tutorial/chapter-1.elements/adaptivity.html
deal.II/doc/tutorial/chapter-1.elements/condense.html
deal.II/doc/tutorial/chapter-1.elements/index.html
deal.II/doc/tutorial/chapter-1.elements/matrix_generation.html
deal.II/doc/tutorial/chapter-1.elements/output.html
deal.II/doc/tutorial/chapter-1.elements/parameters.html
deal.II/doc/tutorial/chapter-1.elements/solve.html

index 98abc58e349232fb1a079cf23f38338a02596c87..0fe591e5ea47e7224b5141737ed17ff409a4fcff 100644 (file)
@@ -83,7 +83,7 @@ tries to approximate the error per cell by integration of the jump of the
 gradient of the solution along the faces of each cell.
 In theory this error estimator has quite a number of limitations. These 
 limitations as well as its implementation are described in 
-<a href="http://gaia.iwr.uni-heidelberg.de/~deal/doc/auto/kdoc/numerics/KellyErrorEstimator.html">
+<a href="../../auto/kdoc/numerics/KellyErrorEstimator.html">
 the documentation for the class <code>KellyErrorEstimator</code></a>.
 In daily use, however, this error estimator has shown itself to behave
 rather like Hamlet: It is laden with theoretical woes and sorrows,
@@ -116,7 +116,7 @@ and objects respectively:
       
   <li>in case your problem includes spatially varying coefficients,
       you may give that as well (but we will not discuss this here,
-      refer to the <a href="http://gaia.iwr.uni-heidelberg.de/~deal/doc/auto/kdoc/numerics/KellyErrorEstimator.html">
+      refer to the <a href="../../auto/kdoc/numerics/KellyErrorEstimator.html">
          <code>KellyErrorEstimator</code> class documentation</a>).
   </li>
 </ul>
index 7e5dd60d3fa1686a314c990896af03438f8acdb0..65062f35265a3dd101e96996a08302614fcfb7bb 100644 (file)
@@ -28,7 +28,7 @@ account when dealing with them.
 <p>
 The <acronym>deal.II</acronym> class 
 that has the ability to handle constraint matrices is called 
-<a href="http://gaia.iwr.uni-heidelberg.de/~deal/doc/auto/kdoc/dof/ConstraintMatrix.html"><code>ConstraintMatrix</code></a>. It provides all functions
+<a href="../../auto/kdoc/dof/ConstraintMatrix.html"><code>ConstraintMatrix</code></a>. It provides all functions
 necessary to condense hanging nodes into a matrix structure. 
 You will have to:
 <ol>
index a181b648fb0cd76f455d5025eec3733f1530f3d6..81b7c6241dbc3df0b4a01f47222e6586f70476fc 100644 (file)
@@ -23,7 +23,7 @@
 <h1>The deal.II Tutorial</h1>
 Your browser does not seem to understand frames. A version of this
 tutorial that does not use frames can be found at 
-<a href="toc.html">http://gaia.iwr.uni-heidelberg.de/~deal/doc/tutorial/chapter-1.elements/toc.html</a>.
+<a href="toc.html">../../tutorial/chapter-1.elements/toc.html</a>.
 </noframes>
 
 </html>
index ca2fb0aa553eecc9124f12d14bc1bb6d4b28c86c..f18c2dd3ed26e2fdf5bc873f68d23adcdb41c48c 100644 (file)
@@ -118,7 +118,7 @@ sparse_matrix.reinit (sparsity_pattern);
 
 <p>
 Vector operations are supplied by the class <code><a
-href="http://gaia.iwr.uni-heidelberg.de/~deal/doc/auto/kdoc/lac/Vector.html">Vector</a></code>.
+href="../../auto/kdoc/lac/Vector.html">Vector</a></code>.
 The first and most important operation on a vector is its
 initialization using <code>void Vector::reinit(const usigned int N,
 const bool fast=false)</code>, which resets the vector's size to
index 37ae82a5028b31f5233131fce4accb3a8db84853..d5a7664f5b0dadd488b9c25bbb24032266c5a41a 100644 (file)
@@ -386,15 +386,21 @@ to be plotted.
 
 <p>The limitations of the gnuplot data format have been well described
 in the 
-<a href="http://gaia.iwr.uni-heidelberg.de/~deal/doc/auto/kdoc/basic/DataOut.html">
-<code>DataOut</code> class description</a>:
+<a href="../../auto/kdoc/base/DataOutBase.html">
+<code>DataOutBase</code> class description</a>:
 </p>
 <blockquote>
 <p>
-This format is somewhat restricted to coninuous data and to finite elements of first order only. The reason for the first restriction is that it takes nodal values and can
-therefore only work if a finite element has degrees of freedom in the vertices of each cell. This is not the case for discontinuous elements. The second restriction is only a
-problem of quality of output: you actually can print quadratic or higher order elements using this style, but you will only see the contour of each cell with the bounding lines of
-each cell being straight lines. You won't see the structure of the solution in the interior of a cell nor on the lines bounding it. 
+This format is somewhat restricted to coninuous data and to finite
+elements of first order only. The reason for the first restriction is
+that it takes nodal values and can therefore only work if a finite
+element has degrees of freedom in the vertices of each cell. This is
+not the case for discontinuous elements. The second restriction is
+only a problem of quality of output: you actually can print quadratic
+or higher order elements using this style, but you will only see the
+contour of each cell with the bounding lines of each cell being
+straight lines. You won't see the structure of the solution in the
+interior of a cell nor on the lines bounding it.
 </p>
 </blockquote>
 
@@ -403,8 +409,8 @@ each cell being straight lines. You won't see the structure of the solution in t
 <p>The limitations mentioned above can to some extent be remedied,
 and that is why there is also an option for high quality output.
 For how this is done, we quote (again) the 
-<a href="http://gaia.iwr.uni-heidelberg.de/~deal/doc/auto/kdoc/basic/DataOut.html">
-<code>DataOut</code> class description</a>:
+<a href="../../auto/kdoc/base/DataOutBase.html">
+<code>DataOutBase</code> class description</a>:
 </p>
 
 <blockquote>
index 174b428554a948d2a4de0b71c0e701a5d189afec..8e28423d491bc91bad5bb7cebf9b3583f4cc4c61 100644 (file)
@@ -130,7 +130,7 @@ and retrieve their values. The values are stored in the strings
 <code>zeldovich_solver</code> and <code>sunyaev_solver</code>.
 Please note that in order to stick to the essentials this example 
 violates the 
-<a href="http://gaia.iwr.uni-heidelberg.de/~deal/doc/auto/kdoc/base/ParameterHandler.html">
+<a href="../../auto/kdoc/base/ParameterHandler.html">
 recommended style for parameter declaration</a>.
 </p>
 
@@ -305,7 +305,7 @@ value encountered last of the parameter in question is used.
 <span class="example">Example:</span>
 We read parameters successively
 from three different sources. This example was taken from
-the <a href="http://gaia.iwr.uni-heidelberg.de/~deal/doc/auto/kdoc/base/ParameterHandler.html"><code>ParameterHandler</code> class documentation</a>.
+the <a href="../../auto/kdoc/base/ParameterHandler.html"><code>ParameterHandler</code> class documentation</a>.
 </p>
 
 <pre class="example">
index e0c92a2d07be364e7fda9d9a67758621763cbd94..23bbd929f7221234b93aea7df7319752576e2d67 100644 (file)
@@ -326,7 +326,7 @@ A number too small can seriously affect its performance, but a number
 too large will also increase the required computing time. This number is
 contained in the <code>AdditionalData</code> structure with a default of 30. 
 This solver is rather special, and for a detailed explanation you should
-<a href="http://gaia.iwr.uni-heidelberg.de/~deal/doc/auto/kdoc/lac/SolverGMRES.html">take a look at the detailed description of the <code>SolverGMRES</code>
+<a href="../../auto/kdoc/lac/SolverGMRES.html">take a look at the detailed description of the <code>SolverGMRES</code>
 class</a>.
 </p>
 

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.