HBASE-5772 Unable to open the few links in http://hbase.apache.org/

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1325893 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2012-04-13 18:14:13 +00:00
parent 401c4ec014
commit 70109d07fc
2 changed files with 40 additions and 27 deletions

62
pom.xml
View File

@ -23,7 +23,15 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<!--To build a release I do this: <!--To build a release I do this:
$ mvn clean site install assembly:single -Prelease $ MAVEN_OPTS="-Xmx2g" mvn clean site install assembly:single -Prelease
To build the site:
$ MAVEN_OPTS="-Xmx2g" ~/bin/apache-maven-3.0.4/bin/mvn clean -DskipTests site
Use mvn3.
--> -->
<parent> <parent>
@ -324,6 +332,16 @@
can be overwritten here. --> can be overwritten here. -->
<pluginManagement> <pluginManagement>
<plugins> <plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>${maven.site.version}</version>
<configuration>
<inputEncoding>UTF-8</inputEncoding>
<outputEncoding>UTF-8</outputEncoding>
<templateFile>src/site/site.vm</templateFile>
</configuration>
</plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId> <artifactId>maven-release-plugin</artifactId>
@ -378,11 +396,6 @@
<redirectTestOutputToFile>${test.output.tofile}</redirectTestOutputToFile> <redirectTestOutputToFile>${test.output.tofile}</redirectTestOutputToFile>
</configuration> </configuration>
</plugin> </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>2.0.1</version>
</plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId> <artifactId>maven-failsafe-plugin</artifactId>
@ -606,7 +619,7 @@
<plugin> <plugin>
<groupId>com.agilejava.docbkx</groupId> <groupId>com.agilejava.docbkx</groupId>
<artifactId>docbkx-maven-plugin</artifactId> <artifactId>docbkx-maven-plugin</artifactId>
<version>2.0.13</version> <version>2.0.14</version>
<executions> <executions>
<execution> <execution>
<id>multipage</id> <id>multipage</id>
@ -619,7 +632,7 @@
<sectionAutolabelMaxDepth>100</sectionAutolabelMaxDepth> <sectionAutolabelMaxDepth>100</sectionAutolabelMaxDepth>
<sectionAutolabel>true</sectionAutolabel> <sectionAutolabel>true</sectionAutolabel>
<sectionLabelIncludesComponentLabel>true</sectionLabelIncludesComponentLabel> <sectionLabelIncludesComponentLabel>true</sectionLabelIncludesComponentLabel>
<targetDirectory>${basedir}/target/site/book/</targetDirectory> <targetDirectory>${basedir}/target/site/</targetDirectory>
<htmlStylesheet>../css/freebsd_docbook.css</htmlStylesheet> <htmlStylesheet>../css/freebsd_docbook.css</htmlStylesheet>
<htmlCustomization>src/docbkx/customization.xsl</htmlCustomization> <htmlCustomization>src/docbkx/customization.xsl</htmlCustomization>
<imgSrcPath>../images/</imgSrcPath> <imgSrcPath>../images/</imgSrcPath>
@ -957,6 +970,7 @@
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId> <artifactId>findbugs-maven-plugin</artifactId>
<version>${maven.findbugs.version}</version>
<configuration> <configuration>
<findbugsXmlOutput>true</findbugsXmlOutput> <findbugsXmlOutput>true</findbugsXmlOutput>
<xmlOutput>true</xmlOutput> <xmlOutput>true</xmlOutput>
@ -1003,6 +1017,9 @@
<thrift.version>0.8.0</thrift.version> <thrift.version>0.8.0</thrift.version>
<zookeeper.version>3.4.3</zookeeper.version> <zookeeper.version>3.4.3</zookeeper.version>
<hadoop-snappy.version>0.0.1-SNAPSHOT</hadoop-snappy.version> <hadoop-snappy.version>0.0.1-SNAPSHOT</hadoop-snappy.version>
<maven.site.version>3.0</maven.site.version>
<maven.javadoc.version>2.8.1</maven.javadoc.version>
<maven.findbugs.version>2.4.0</maven.findbugs.version>
<package.prefix>/usr</package.prefix> <package.prefix>/usr</package.prefix>
<package.conf.dir>/etc/hbase</package.conf.dir> <package.conf.dir>/etc/hbase</package.conf.dir>
@ -1371,9 +1388,11 @@
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-javadoc-plugin</artifactId> <artifactId>maven-javadoc-plugin</artifactId>
<version>2.6.1</version> <version>${maven.javadoc.version}</version>
<configuration> <configuration>
<docfilessubdirs>true</docfilessubdirs> <docfilessubdirs>true</docfilessubdirs>
<excludePackageNames>org.apache.hadoop.hbase.protobuf.generated.*:org.apache.hadoop.hbase.avro.generated.*:org.apache.hadoop.hbase.thrift.generated:org.apache.hadoop.hbase.rest.generated</excludePackageNames>
<maxmemory>2g</maxmemory>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
@ -2148,7 +2167,7 @@
<plugins> <plugins>
<plugin> <plugin>
<artifactId>maven-project-info-reports-plugin</artifactId> <artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.1.2</version> <version>2.4</version>
<reportSets> <reportSets>
<reportSet> <reportSet>
<reports> <reports>
@ -2162,22 +2181,16 @@
</reports> </reports>
</reportSet> </reportSet>
</reportSets> </reportSets>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>2.0.1</version>
<configuration>
<inputEncoding>UTF-8</inputEncoding>
<outputEncoding>UTF-8</outputEncoding>
<templateFile>src/site/site.vm</templateFile>
</configuration>
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-javadoc-plugin</artifactId> <artifactId>maven-javadoc-plugin</artifactId>
<version>2.6.1</version> <version>${maven.javadoc.version}</version>
<configuration> <configuration>
<docfilessubdirs>true</docfilessubdirs> <docfilessubdirs>true</docfilessubdirs>
<excludePackageNames>org.apache.hadoop.hbase.protobuf.generated.*:org.apache.hadoop.hbase.avro.generated.*:org.apache.hadoop.hbase.thrift.generated:org.apache.hadoop.hbase.rest.generated</excludePackageNames>
<debug>true</debug>
<maxmemory>2g</maxmemory>
<verbose>true</verbose>
</configuration> </configuration>
<reportSets> <reportSets>
<reportSet> <reportSet>
@ -2187,11 +2200,6 @@
</reports> </reports>
</reportSet> </reportSet>
</reportSets> </reportSets>
<!--
This is probably not needed, given the smallness of the HBase source code, but left here in case
<minmemory>128m</minmemory>
<maxmemory>1024m</maxmemory>
-->
</plugin> </plugin>
<!--Disabled for now. <!--Disabled for now.
<plugin> <plugin>
@ -2243,12 +2251,12 @@
<artifactId>maven-dependency-plugin</artifactId> <artifactId>maven-dependency-plugin</artifactId>
<version>2.1</version> <version>2.1</version>
</plugin> </plugin>
-->
<plugin> <plugin>
<groupId>org.apache.rat</groupId> <groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId> <artifactId>apache-rat-plugin</artifactId>
<version>0.8</version> <version>0.8</version>
</plugin> </plugin>
-->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId> <artifactId>maven-surefire-report-plugin</artifactId>

View File

@ -109,6 +109,11 @@ h4 {
background-repeat: repeat-x; background-repeat: repeat-x;
} }
.section {
padding-bottom: 0;
padding-top: 0;
}
/* /*
#leftColumn { #leftColumn {
display: none !important display: none !important