Author: desruisseaux
Date: Mon Dec 17 07:49:07 2012
New Revision: 1422777
URL: http://svn.apache.org/viewvc?rev=1422777&view=rev
Log:
Documentation formatting (no code change).
Modified:
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/AbstractEnvelope.java
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/Envelope2D.java
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/GeneralEnvelope.java
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/measure/AngleFormat.java
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/AbstractName.java
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/DefaultInternationalString.java
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/DefaultNameFactory.java
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/ResourceInternationalString.java
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/SimpleInternationalString.java
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/package-info.java
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/xml/NilObject.java
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/xml/XLink.java
sis/branches/JDK7/src/main/javadoc/stylesheet.css
Modified:
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/AbstractEnvelope.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/AbstractEnvelope.java?rev=1422777&r1=1422776&r2=1422777&view=diff
==============================================================================
---
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/AbstractEnvelope.java
(original)
+++
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/AbstractEnvelope.java
Mon Dec 17 07:49:07 2012
@@ -71,7 +71,7 @@ import java.util.Objects;
* envelopes crossing the anti-meridian, like the red box below (the green box
is the usual case).
* The default implementation of methods listed in the right column can handle
such cases.
*
- * <center><table class="compact"><tr><td>
+ * <table class="compact" align="center"><tr><td>
* <img src="doc-files/AntiMeridian.png">
* </td><td>
* Supported methods:
@@ -84,7 +84,7 @@ import java.util.Objects;
* <li>{@link #contains(Envelope, boolean)}</li>
* <li>{@link #intersects(Envelope, boolean)}</li>
* </ul>
- * </td></tr></table></center>
+ * </td></tr></table>
*
* {@section Note on positive and negative zeros}
* The IEEE 754 standard defines two different values for positive zero and
negative zero.
Modified:
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/Envelope2D.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/Envelope2D.java?rev=1422777&r1=1422776&r2=1422777&view=diff
==============================================================================
---
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/Envelope2D.java
(original)
+++
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/Envelope2D.java
Mon Dec 17 07:49:07 2012
@@ -69,7 +69,7 @@ import static org.apache.sis.geometry.Ab
* {@linkplain #height height} field values. The default implementation of
methods listed in the
* right column can handle such cases.
*
- * <center><table class="compact"><tr><td>
+ * <table class="compact" align="center"><tr><td>
* <img src="doc-files/AntiMeridian.png">
* </td><td>
* Supported methods:
@@ -87,7 +87,7 @@ import static org.apache.sis.geometry.Ab
* <li>{@link #add(Rectangle2D)}</li>
* <li>{@link #add(double,double)}</li>
* </ul>
- * </td></tr></table></center>
+ * </td></tr></table>
*
* The {@link #getMinX()}, {@link #getMinY()}, {@link #getMaxX()}, {@link
#getMaxY()},
* {@link #getCenterX()}, {@link #getCenterY()}, {@link #getWidth()} and
{@link #getHeight()}
Modified:
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/GeneralEnvelope.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/GeneralEnvelope.java?rev=1422777&r1=1422776&r2=1422777&view=diff
==============================================================================
---
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/GeneralEnvelope.java
(original)
+++
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/GeneralEnvelope.java
Mon Dec 17 07:49:07 2012
@@ -68,7 +68,7 @@ import static org.apache.sis.math.MathFu
* envelopes crossing the anti-meridian, like the red box below (the green box
is the usual case).
* The default implementation of methods listed in the right column can handle
such cases.
*
- * <center><table class="compact"><tr><td>
+ * <table class="compact" align="center"><tr><td>
* <img src="doc-files/AntiMeridian.png">
* </td><td>
* Supported methods:
@@ -85,7 +85,7 @@ import static org.apache.sis.math.MathFu
* <li>{@link #add(Envelope)}</li>
* <li>{@link #add(DirectPosition)}</li>
* </ul>
- * </td></tr></table></center>
+ * </td></tr></table>
*
* @author Martin Desruisseaux (IRD, Geomatys)
* @author Johann Sorel (Geomatys)
Modified:
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/measure/AngleFormat.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/measure/AngleFormat.java?rev=1422777&r1=1422776&r2=1422777&view=diff
==============================================================================
---
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/measure/AngleFormat.java
(original)
+++
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/measure/AngleFormat.java
Mon Dec 17 07:49:07 2012
@@ -51,7 +51,7 @@ import java.util.Objects;
* Parses and formats angles according a specified pattern. The pattern is a
string
* containing any characters, with a special meaning for the following
characters:
*
- * <blockquote><table class="sis">
+ * <table class="sis">
* <tr><th>Symbol</th><th>Meaning</th></tr>
* <tr><td>{@code D}</td><td>The integer part of degrees</td></tr>
* <tr><td>{@code d}</td><td>The fractional part of degrees</td></tr>
@@ -61,7 +61,7 @@ import java.util.Objects;
* <tr><td>{@code s}</td><td>The fractional part of seconds</td></tr>
* <tr><td>{@code #}</td><td>Fraction digits shown only if non-zero</td></tr>
* <tr><td>{@code .}</td><td>The decimal separator</td></tr>
- * </table></blockquote>
+ * </table>
*
* Upper-case letters {@code D}, {@code M} and {@code S} stand for the integer
parts of degrees,
* minutes and seconds respectively. They shall appear in this order. For
example {@code M'D} is
@@ -87,7 +87,7 @@ import java.util.Objects;
*
* <p>The following table gives some pattern examples:</p>
*
- * <blockquote><table class="sis">
+ * <table class="sis">
* <tr><th>Pattern </th> <th>Example </th></tr>
* <tr><td>{@code DD°MMâ²SSâ³ }</td> <td>48°30â²00â³ </td></tr>
* <tr><td>{@code DD°MMⲠ}</td> <td>48°30Ⲡ</td></tr>
@@ -95,7 +95,7 @@ import java.util.Objects;
* <tr><td>{@code DD.### }</td> <td>48.5 </td></tr>
* <tr><td>{@code DDMM }</td> <td>4830 </td></tr>
* <tr><td>{@code DDMMSS }</td> <td>483000 </td></tr>
- * </table></blockquote>
+ * </table>
*
* @author Martin Desruisseaux (MPO, IRD, Geomatys)
* @since 0.3 (derived from geotk-1.0)
Modified:
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/AbstractName.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/AbstractName.java?rev=1422777&r1=1422776&r2=1422777&view=diff
==============================================================================
---
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/AbstractName.java
(original)
+++
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/AbstractName.java
Mon Dec 17 07:49:07 2012
@@ -34,7 +34,7 @@ import java.util.Objects;
/**
- * A sequence of identifiers rooted within the context of a {@linkplain
DefaultNameSpace namespace}.
+ * Base class for sequence of identifiers rooted within the context of a
{@linkplain DefaultNameSpace namespace}.
* Names are <em>immutable</em>. They may be {@linkplain
#toFullyQualifiedName() fully qualified}
* like {@code "org.opengis.util.Record"}, or they may be relative to a
{@linkplain #scope() scope}
* like {@code "util.Record"} in the {@code "org.opengis"} scope.
Modified:
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/DefaultInternationalString.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/DefaultInternationalString.java?rev=1422777&r1=1422776&r2=1422777&view=diff
==============================================================================
---
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/DefaultInternationalString.java
(original)
+++
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/DefaultInternationalString.java
Mon Dec 17 07:49:07 2012
@@ -38,9 +38,9 @@ import java.util.Objects;
/**
- * An {@linkplain InternationalString international string} using a
{@linkplain Map map}
- * of strings for different {@linkplain Locale locales}. Strings for new
locales can be
- * {@linkplain #add(Locale, String) added}, but existing strings can not be
removed or modified.
+ * An international string using a {@linkplain Map map} of strings for
different locales.
+ * Strings for new locales can be {@linkplain #add(Locale, String) added},
+ * but existing strings can not be removed or modified.
* This behavior is a compromise between making constructions easier, and
being suitable for
* use in immutable objects.
*
@@ -79,7 +79,7 @@ public class DefaultInternationalString
* Creates an international string initialized with the given string.
* Additional localized strings can been added using one of {@link #add
add(â¦)} methods.
* The string specified to this constructor is the one that will be
returned if no localized
- * string is found for the {@link Locale} argument in a call to {@link
#toString(Locale)}.
+ * string is found for the {@code Locale} argument in a call to {@link
#toString(Locale)}.
*
* @param string The string in no specific locale, or {@code null} if none.
*/
@@ -152,9 +152,8 @@ public class DefaultInternationalString
/**
* Adds a string for the given property key. This is a convenience method
for constructing an
- * {@code DefaultInternationalString} during iteration through the
- * {@linkplain java.util.Map.Entry entries} in a {@link Map}. It infers
the {@link Locale}
- * from the property {@code key}, using the following steps:
+ * {@code DefaultInternationalString} during iteration through the entries
in a {@link Map}.
+ * It infers the {@code Locale} from the property {@code key}, using the
following steps:
*
* <ul>
* <li>If the {@code key} does not start with the specified {@code
prefix}, then
Modified:
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/DefaultNameFactory.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/DefaultNameFactory.java?rev=1422777&r1=1422776&r2=1422777&view=diff
==============================================================================
---
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/DefaultNameFactory.java
(original)
+++
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/DefaultNameFactory.java
Mon Dec 17 07:49:07 2012
@@ -61,7 +61,6 @@ import static org.apache.sis.util.iso.De
*
* <ul>
* <li>{@link #parseGenericName(NameSpace, CharSequence)}</li>
- * <li>{@link #toArray(Object)} â SIS extension, not in GeoAPI
interface</li>
* </ul>
*
* @author Martin Desruisseaux (Geomatys)
Modified:
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/ResourceInternationalString.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/ResourceInternationalString.java?rev=1422777&r1=1422776&r2=1422777&view=diff
==============================================================================
---
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/ResourceInternationalString.java
(original)
+++
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/ResourceInternationalString.java
Mon Dec 17 07:49:07 2012
@@ -22,7 +22,6 @@ import java.util.Properties;
import java.util.ResourceBundle;
import java.util.MissingResourceException;
import net.jcip.annotations.Immutable;
-import org.opengis.util.InternationalString;
import static org.apache.sis.util.ArgumentChecks.ensureNonNull;
@@ -31,9 +30,9 @@ import java.util.Objects;
/**
- * An {@linkplain InternationalString international string} backed by a
{@linkplain ResourceBundle
- * resource bundle}. A resource bundle can be a Java class or a {@linkplain
Properties properties}
- * file, one for each language. The constructor expects the fully qualified
class name of the base
+ * An international string backed by a {@linkplain ResourceBundle resource
bundle}.
+ * A resource bundle can be a Java class or a {@linkplain Properties
properties} file,
+ * one for each language. The constructor expects the fully qualified class
name of the base
* resource bundle (the one used when no resource was found in the client's
language). The appropriate
* resource bundle is loaded at runtime for the client's language by looking
for a class or a
* properties file with the right suffix, for example {@code "_en"} for
English or {@code "_fr"}
Modified:
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/SimpleInternationalString.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/SimpleInternationalString.java?rev=1422777&r1=1422776&r2=1422777&view=diff
==============================================================================
---
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/SimpleInternationalString.java
(original)
+++
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/SimpleInternationalString.java
Mon Dec 17 07:49:07 2012
@@ -22,7 +22,6 @@ import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.util.Locale;
import net.jcip.annotations.Immutable;
-import org.opengis.util.InternationalString;
import static org.apache.sis.util.ArgumentChecks.ensureNonNull;
@@ -31,12 +30,12 @@ import java.util.Objects;
/**
- * An {@linkplain InternationalString international string} consisting of a
single string
- * for all {@linkplain Locale locales}. For such a particular case, this
implementation is
- * more effective than other implementations provided in this package.
+ * An international string consisting of a single string for all locales.
+ * For such a particular case, this implementation is more effective than
+ * other implementations provided in this package.
*
* {@section Instantiation}
- * If the characters sequence to wrap is known to be a {@link String}
instance, then
+ * If the characters sequence to wrap is known to be a {@code String}
instance, then
* the {@link #SimpleInternationalString(String)} constructor is okay.
Otherwise use
* the {@link Types#toInternationalString(CharSequence)} method.
*
@@ -54,7 +53,7 @@ public class SimpleInternationalString e
/**
* Creates a new instance from the given string. If the type of the text
- * to wrap is the more generic {@link CharSequence} interface, then use
+ * to wrap is the more generic {@code CharSequence} interface, then use
* the {@link Types#toInternationalString(CharSequence)} method instead.
*
* @param text The string for all locales.
Modified:
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/package-info.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/package-info.java?rev=1422777&r1=1422776&r2=1422777&view=diff
==============================================================================
---
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/package-info.java
(original)
+++
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/iso/package-info.java
Mon Dec 17 07:49:07 2012
@@ -48,7 +48,7 @@
* in the {@code "org.opengis"} scope). The illustration below shows all
possible constructions
* for {@code "org.opengis.util.Record"}:
*
- * <blockquote><table border="1" cellpadding="15"><tr><td><table border="0"
cellspacing="0">
+ * <blockquote><table class="compact"><tr><td><table class="compact">
* <tr>
* <th align="right">org</th>
* <th>.</th><th>opengis</th>
@@ -66,7 +66,7 @@
* <td bgcolor="palegoldenrod" colspan="5"><font size="-1">{@linkplain
org.apache.sis.util.iso.DefaultScopedName#tail() tail}</font></td>
* <td rowspan="2"></td>
* <td rowspan="2" bgcolor="beige" align="left">{@linkplain
org.apache.sis.util.iso.DefaultNameSpace#isGlobal() global}</td>
- * <td rowspan="2" bgcolor="beige" align="right">{@literal {"org",
"opengis", "util", "Record"}}</td>
+ * <td rowspan="2" bgcolor="beige" align="right">{@code {"org", "opengis",
"util", "Record"}}</td>
* <td rowspan="2"></td>
* <td rowspan="2">{@link org.apache.sis.util.iso.DefaultScopedName
ScopedName}</td>
* </tr>
@@ -81,8 +81,8 @@
* <td bgcolor="palegoldenrod" colspan="1"><font
size="-1">head</font></td><td></td>
* <td bgcolor="palegoldenrod" colspan="3"><font size="-1">tail</font></td>
* <td rowspan="2"></td>
- * <td rowspan="2" bgcolor="beige" align="left">{@literal "org"}</td>
- * <td rowspan="2" bgcolor="beige" align="right">{@literal {"opengis",
"util", "Record"}}</td>
+ * <td rowspan="2" bgcolor="beige" align="left">{@code "org"}</td>
+ * <td rowspan="2" bgcolor="beige" align="right">{@code {"opengis",
"util", "Record"}}</td>
* <td rowspan="2"></td>
* <td rowspan="2">{@code ScopedName}</td>
* </tr>
@@ -97,8 +97,8 @@
* <td bgcolor="palegoldenrod" colspan="1"><font
size="-1">head</font></td><td></td>
* <td bgcolor="palegoldenrod" colspan="1"><font size="-1">tail</font></td>
* <td rowspan="2"></td>
- * <td rowspan="2" bgcolor="beige" align="left">{@literal
"org.opengis"}</td>
- * <td rowspan="2" bgcolor="beige" align="right">{@literal {"util",
"Record"}}</td>
+ * <td rowspan="2" bgcolor="beige" align="left">{@code "org.opengis"}</td>
+ * <td rowspan="2" bgcolor="beige" align="right">{@code {"util",
"Record"}}</td>
* <td rowspan="2"></td>
* <td rowspan="2">{@code ScopedName}</td>
* </tr>
@@ -112,8 +112,8 @@
* <td bgcolor="palegoldenrod" colspan="5" rowspan="2"><font
size="-1">scope</font></td><td rowspan="2"></td>
* <td bgcolor="palegoldenrod" colspan="1"><font size="-1">head</font></td>
* <td rowspan="2"></td>
- * <td rowspan="2" bgcolor="beige" align="left">{@literal
"org.opengis.util"}</td>
- * <td rowspan="2" bgcolor="beige" align="right">{@literal {"Record"}}</td>
+ * <td rowspan="2" bgcolor="beige" align="left">{@code
"org.opengis.util"}</td>
+ * <td rowspan="2" bgcolor="beige" align="right">{@code {"Record"}}</td>
* <td rowspan="2"></td>
* <td rowspan="2">{@link org.apache.sis.util.iso.DefaultLocalName
LocalName}</td>
* </tr>
Modified:
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/xml/NilObject.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/xml/NilObject.java?rev=1422777&r1=1422776&r2=1422777&view=diff
==============================================================================
---
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/xml/NilObject.java
(original)
+++
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/xml/NilObject.java
Mon Dec 17 07:49:07 2012
@@ -32,7 +32,7 @@ package org.apache.sis.xml;
* shows a {@code CI_Citation}Â fragment with an ordinary {@code CI_Series}
element on the left side,
* and an unknown {@code CI_Series} element on the right side:</p>
*
- * <blockquote><table class="sis" border="1"><tr>
+ * <table class="sis"><tr>
* <th>Normal {@code Series} element</th>
* <th>Unknown {@code Series} element</th>
* </tr><tr><td>
@@ -51,7 +51,7 @@ package org.apache.sis.xml;
* <gmd:series nilReason="unknown"/>
* </gmd:CI_Citation>
* }
- * </td></tr></table></blockquote>
+ * </td></tr></table>
*
* If the {@code CI_Series} element was completely omitted, then {@link
org.opengis.metadata.citation.Citation#getSeries()}
* method would return {@code null} in Apache SIS implementation. But since a
{@code nilReason} is provided,
Modified:
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/xml/XLink.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/xml/XLink.java?rev=1422777&r1=1422776&r2=1422777&view=diff
==============================================================================
--- sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/xml/XLink.java
(original)
+++ sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/xml/XLink.java
Mon Dec 17 07:49:07 2012
@@ -44,7 +44,7 @@ import java.util.Objects;
* of whether a value is required (R) or optional (O)
* (Source: <a href="http://www.w3.org/TR/xlink/">W3C</a>):
*
- * <blockquote><table class="sis">
+ * <table class="sis">
* <tr>
* <th>Â </th>
* <th width="14%">{@link XLink.Type#SIMPLE simple}</th>
@@ -64,7 +64,7 @@ import java.util.Objects;
* <tr align="center"><td><b>{@link #getLabel() label}</b></td>
<td>Â </td><td>Â </td><td>O</td><td>Â </td><td>O</td><td>Â </td></tr>
* <tr align="center"><td><b>{@link #getFrom() from}</b></td>
<td>Â </td><td>Â </td><td>Â </td><td>O</td><td>Â </td><td>Â </td></tr>
* <tr align="center"><td><b>{@link #getTo() to}</b></td>
<td>Â </td><td>Â </td><td>Â </td><td>O</td><td>Â </td><td>Â </td></tr>
- * </table></blockquote>
+ * </table>
*
* When {@code xlink} attributes are found at unmarshalling time instead of an
object definition,
* those attributes are given to the {@link
ReferenceResolver#resolve(MarshalContext, Class, XLink)}
Modified: sis/branches/JDK7/src/main/javadoc/stylesheet.css
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/src/main/javadoc/stylesheet.css?rev=1422777&r1=1422776&r2=1422777&view=diff
==============================================================================
--- sis/branches/JDK7/src/main/javadoc/stylesheet.css (original)
+++ sis/branches/JDK7/src/main/javadoc/stylesheet.css Mon Dec 17 07:49:07 2012
@@ -10,8 +10,7 @@
* a light background color and a header with a darker background color. The
header
* also have a little bit more space, and a border is drawn around the table.
*/
-.contentContainer .description table.sis,
-.contentContainer .details table.sis,
+.contentContainer .block table.sis,
.contentContainer ul.blockList ul.blockList li.blockList table.sis
{
background-color: #F4F8FF;
@@ -20,12 +19,11 @@
border-width: 1pt;
border-spacing: 0pt;
margin: 12pt 0 12pt 0;
- padding: 0;
+ padding: 0pt;
width: auto;
}
-.contentContainer .description table.sis tr th,
-.contentContainer .details table.sis tr th
+.contentContainer .block table.sis tr th
{
background-color: #B9DCFF;
border-bottom-color: Black;
@@ -34,8 +32,7 @@
padding: 3pt;
}
-.contentContainer .description table.sis tr td,
-.contentContainer .details table.sis tr td,
+.contentContainer .block table.sis tr td,
.contentContainer ul.blockList li.blockList table.sis td
{
padding: 1.5pt 9pt;
@@ -45,23 +42,20 @@
/*
* Optionally add a line or column separator.
*/
-.contentContainer .description table.sis tr th.hsep,
-.contentContainer .details table.sis tr th.hsep
+.contentContainer .block table.sis tr th.hsep
{
border-top-width: 1pt;
border-top-style: solid;
}
-.contentContainer .description table.sis tr th.sep,
-.contentContainer .details table.sis tr th.sep
+.contentContainer .block table.sis tr th.sep
{
border-left-width: 1pt;
border-left-style: solid;
border-left-color: #819AB2;
}
-.contentContainer .description table.sis tr td.sep,
-.contentContainer .details table.sis tr td.sep
+.contentContainer .block table.sis tr td.sep
{
border-left-width: 1pt;
border-left-style: solid;
@@ -70,16 +64,17 @@
/*
* Table without vertical space between rows and a little bit of space between
columns.
- * Other properties are left to their default values. In particular, there is
no border.
+ * This table has no border.
*/
-.contentContainer .description table.compact,
-.contentContainer .details table.compact
+.contentContainer .block table.compact
{
+ width: auto;
+ border: none;
border-spacing: 0pt;
+ padding: 0pt;
}
-.contentContainer .description table.compact tr td,
-.contentContainer .details table.compact tr td
+.contentContainer .block table.compact tr td
{
padding-top: 0pt;
padding-bottom: 0pt;
@@ -87,16 +82,14 @@
padding-left: 3pt;
}
-.contentContainer .description table.compact tr td.onright,
-.contentContainer .details table.compact tr td.onright
+.contentContainer .block table.compact tr td.onright
{
padding-right: 1pt;
text-align: right;
font-weight: normal;
}
-.contentContainer .description table.compact tr td.onleft,
-.contentContainer .details table.compact tr td.onleft
+.contentContainer .block table.compact tr td.onleft
{
padding-left: 1pt;
text-align: left;