You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chukwa.apache.org by ey...@apache.org on 2011/12/18 04:11:03 UTC

svn commit: r1220328 - in /incubator/chukwa/trunk: ./ script/pig/ src/main/java/org/apache/hadoop/chukwa/ src/main/java/org/apache/hadoop/chukwa/datastore/ src/main/java/org/apache/hadoop/chukwa/extraction/engine/ src/main/java/org/apache/hadoop/chukwa...

Author: eyang
Date: Sun Dec 18 03:11:03 2011
New Revision: 1220328

URL: http://svn.apache.org/viewvc?rev=1220328&view=rev
Log:
CHUKWA-620. Updated code analysis and license check in build structure. (Eric Yang)

Modified:
    incubator/chukwa/trunk/CHANGES.txt
    incubator/chukwa/trunk/pom.xml
    incubator/chukwa/trunk/script/pig/ClusterSummary.pig
    incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/ChukwaArchiveKey.java
    incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/datastore/ChukwaHBaseStore.java
    incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/extraction/engine/ChukwaRecordKey.java
    incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/hicc/bean/Series.java
    incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/hicc/rest/MetricsController.java
    incubator/chukwa/trunk/src/main/web/hicc/WEB-INF/jetty.xml
    incubator/chukwa/trunk/src/main/web/hicc/WEB-INF/web.xml
    incubator/chukwa/trunk/src/main/web/hicc/jsp/help.jsp
    incubator/chukwa/trunk/src/packages/tarball/all.xml
    incubator/chukwa/trunk/src/site/apt/Quick_Start_Guide.apt
    incubator/chukwa/trunk/src/site/apt/releasenotes.apt
    incubator/chukwa/trunk/src/site/site.xml

Modified: incubator/chukwa/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/chukwa/trunk/CHANGES.txt?rev=1220328&r1=1220327&r2=1220328&view=diff
==============================================================================
--- incubator/chukwa/trunk/CHANGES.txt (original)
+++ incubator/chukwa/trunk/CHANGES.txt Sun Dec 18 03:11:03 2011
@@ -36,6 +36,8 @@ Trunk (unreleased changes)
 
   IMPROVEMENTS
 
+    CHUKWA-620. Updated code analysis and license check in build structure. (Eric Yang)
+
     CHUKWA-618. Added HICC programming guide. (Eric Yang)
 
     CHUKWA-522. Added HICC User guide. (Eric Yang)

Modified: incubator/chukwa/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/chukwa/trunk/pom.xml?rev=1220328&r1=1220327&r2=1220328&view=diff
==============================================================================
--- incubator/chukwa/trunk/pom.xml (original)
+++ incubator/chukwa/trunk/pom.xml Sun Dec 18 03:11:03 2011
@@ -636,6 +636,59 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <version>0.7</version>
+                <executions>
+                    <execution>
+                        <phase>verify</phase>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <numUnapprovedLicenses>0</numUnapprovedLicenses>
+                    <excludes>
+                        <!-- notice files -->
+                        <exclude>CHANGES.txt</exclude>
+                        <!-- generated files -->
+                        <exclude>bin/VERSION</exclude>
+                        <exclude>**/target/**</exclude>
+                        <exclude>**/.classpath</exclude>
+                        <exclude>**/.project</exclude>
+                        <exclude>**/.settings/**</exclude>
+                        <exclude>conf/**</exclude>
+<!--                        <exclude>lib/**</exclude>-->
+                        <exclude>src/main/web/hicc/descriptors/**</exclude>
+                        <exclude>src/main/web/hicc/views/**</exclude>
+                        <exclude>contrib/chukwa-pig/src/java/org/apache/hadoop/chukwa/ChukwaStorage.java</exclude>
+                        <!-- Test samples -->
+                        <exclude>src/test/resources/Hadoop18JobHistoryLog.txt</exclude>
+                        <exclude>src/test/resources/TestJobLog.txt</exclude>
+                        <exclude>test/samples/ClientTrace.log</exclude>
+                        <exclude>test/samples/Iostat.log</exclude>
+                        <exclude>test/samples/JobHistory.log</exclude>
+                        <!-- bsd/gpl dual licensed files -->
+                        <exclude>src/main/web/hicc/js/jquery-*</exclude>
+                        <exclude>lib/jersey-bundle-LICENSE</exclude>
+                        <!-- MIT licensed files -->
+                        <exclude>src/main/web/hicc/css/**</exclude>
+                        <exclude>src/main/web/hicc/js/**</exclude>
+                        <exclude>src/main/web/hicc/lib/timeline/**</exclude>
+                        <exclude>lib/agent.dict</exclude>
+                        <exclude>lib/collector.dict</exclude>
+                        <exclude>lib/confspellcheck-LICENSE</exclude>
+                        <exclude>lib/confspellcheck-README</exclude>
+                        <exclude>lib/html-filter-LICENSE</exclude>
+                        <exclude>lib/json-LICENSE.txt</exclude>
+                        <exclude>lib/json-README.txt</exclude>
+                        <exclude>lib/jsr311-api-1.0-LICENSE</exclude>
+                        <exclude>lib/license-prefuse.txt</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 
@@ -683,6 +736,31 @@
     <reporting>
       <plugins>
         <plugin>
+            <artifactId>maven-jxr-plugin</artifactId>
+        </plugin>
+        <plugin>
+            <artifactId>maven-pmd-plugin</artifactId>
+            <reportSets>
+                <reportSet>
+                    <reports>
+                        <report>pmd</report>
+                            <report>cpd</report>
+                        </reports>
+                    </reportSet>
+            </reportSets>
+            <configuration>
+                <targetJdk>1.5</targetJdk>
+            </configuration>
+        </plugin>
+        <plugin>
+            <groupId>org.codehaus.mojo</groupId>
+            <artifactId>findbugs-maven-plugin</artifactId>
+            <configuration>
+                <threshold>Normal</threshold>
+                <effort>Max</effort>
+            </configuration>
+        </plugin>
+        <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-project-info-reports-plugin</artifactId>
           <version>2.4</version>

Modified: incubator/chukwa/trunk/script/pig/ClusterSummary.pig
URL: http://svn.apache.org/viewvc/incubator/chukwa/trunk/script/pig/ClusterSummary.pig?rev=1220328&r1=1220327&r2=1220328&view=diff
==============================================================================
--- incubator/chukwa/trunk/script/pig/ClusterSummary.pig (original)
+++ incubator/chukwa/trunk/script/pig/ClusterSummary.pig Sun Dec 18 03:11:03 2011
@@ -1,3 +1,20 @@
+/*
+ * 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.
+ */
 %default START '1234567890';
 SystemMetrics = load 'hbase://SystemMetrics' USING org.apache.pig.backend.hadoop.hbase.HBaseStorage('tags:cluster cpu:combined cpu:idle cpu:sys cpu:user disk:ReadBytes disk:Reads disk:WriteBytes disk:Writes system:LoadAverage.1 memory:FreePercent memory:UsedPercent network:RxBytes network:RxDropped network:RxErrors network:RxPackets network:TxBytes network:TxCollisions network:TxErrors network:TxPackets','-loadKey -gt $START -caster Utf8StorageConverter') AS (rowKey, cluster, cpuCombined, cpuIdle, cpuSys, cpuUser, diskReadBytes, diskReads, diskWriteBytes, diskWrites, LoadAverage, memoryFreePercent, memoryUsedPercent, networkRxBytes, networkRxDropped, networkRxErrors, networkRxPackets, networkTxBytes, networkTxCollisions, networkTxErrors, networkTxPackets);
 CleanseBuffer = foreach SystemMetrics generate REGEX_EXTRACT($0,'^\\d+',0) as time, cluster, cpuCombined, cpuIdle, cpuSys, cpuUser, diskReadBytes, diskReads, diskWriteBytes, diskWrites, LoadAverage, memoryFreePercent, memoryUsedPercent, networkRxBytes, networkRxDropped, networkRxErrors, networkRxPackets, networkTxBytes, networkTxCollisions, networkTxErrors, networkTxPackets;

Modified: incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/ChukwaArchiveKey.java
URL: http://svn.apache.org/viewvc/incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/ChukwaArchiveKey.java?rev=1220328&r1=1220327&r2=1220328&view=diff
==============================================================================
--- incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/ChukwaArchiveKey.java (original)
+++ incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/ChukwaArchiveKey.java Sun Dec 18 03:11:03 2011
@@ -1,3 +1,20 @@
+/*
+ * 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.
+ */
 // File generated by hadoop record compiler. Do not edit.
 package org.apache.hadoop.chukwa;
 

Modified: incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/datastore/ChukwaHBaseStore.java
URL: http://svn.apache.org/viewvc/incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/datastore/ChukwaHBaseStore.java?rev=1220328&r1=1220327&r2=1220328&view=diff
==============================================================================
--- incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/datastore/ChukwaHBaseStore.java (original)
+++ incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/datastore/ChukwaHBaseStore.java Sun Dec 18 03:11:03 2011
@@ -1,3 +1,20 @@
+/*
+ * 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.
+ */
 package org.apache.hadoop.chukwa.datastore;
 
 import java.util.ArrayList;

Modified: incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/extraction/engine/ChukwaRecordKey.java
URL: http://svn.apache.org/viewvc/incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/extraction/engine/ChukwaRecordKey.java?rev=1220328&r1=1220327&r2=1220328&view=diff
==============================================================================
--- incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/extraction/engine/ChukwaRecordKey.java (original)
+++ incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/extraction/engine/ChukwaRecordKey.java Sun Dec 18 03:11:03 2011
@@ -1,4 +1,21 @@
 // File generated by hadoop record compiler. Do not edit.
+/*
+ * 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.
+ */
 package org.apache.hadoop.chukwa.extraction.engine;
 
 

Modified: incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/hicc/bean/Series.java
URL: http://svn.apache.org/viewvc/incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/hicc/bean/Series.java?rev=1220328&r1=1220327&r2=1220328&view=diff
==============================================================================
--- incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/hicc/bean/Series.java (original)
+++ incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/hicc/bean/Series.java Sun Dec 18 03:11:03 2011
@@ -1,3 +1,20 @@
+/*
+ * 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.
+ */
 package org.apache.hadoop.chukwa.hicc.bean;
 
 import java.util.ArrayList;

Modified: incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/hicc/rest/MetricsController.java
URL: http://svn.apache.org/viewvc/incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/hicc/rest/MetricsController.java?rev=1220328&r1=1220327&r2=1220328&view=diff
==============================================================================
--- incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/hicc/rest/MetricsController.java (original)
+++ incubator/chukwa/trunk/src/main/java/org/apache/hadoop/chukwa/hicc/rest/MetricsController.java Sun Dec 18 03:11:03 2011
@@ -1,3 +1,20 @@
+/*
+ * 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.
+ */
 package org.apache.hadoop.chukwa.hicc.rest;
 
 import java.text.ParseException;

Modified: incubator/chukwa/trunk/src/main/web/hicc/WEB-INF/jetty.xml
URL: http://svn.apache.org/viewvc/incubator/chukwa/trunk/src/main/web/hicc/WEB-INF/jetty.xml?rev=1220328&r1=1220327&r2=1220328&view=diff
==============================================================================
--- incubator/chukwa/trunk/src/main/web/hicc/WEB-INF/jetty.xml (original)
+++ incubator/chukwa/trunk/src/main/web/hicc/WEB-INF/jetty.xml Sun Dec 18 03:11:03 2011
@@ -1,4 +1,21 @@
 <?xml version="1.0"?>
+<!--
+ 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.
+-->
+
 <!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://jetty.mortbay.org/configure.dtd">
 
 <!-- =============================================================== -->

Modified: incubator/chukwa/trunk/src/main/web/hicc/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/incubator/chukwa/trunk/src/main/web/hicc/WEB-INF/web.xml?rev=1220328&r1=1220327&r2=1220328&view=diff
==============================================================================
--- incubator/chukwa/trunk/src/main/web/hicc/WEB-INF/web.xml (original)
+++ incubator/chukwa/trunk/src/main/web/hicc/WEB-INF/web.xml Sun Dec 18 03:11:03 2011
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+ 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.
+-->
 
 <web-app xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

Modified: incubator/chukwa/trunk/src/main/web/hicc/jsp/help.jsp
URL: http://svn.apache.org/viewvc/incubator/chukwa/trunk/src/main/web/hicc/jsp/help.jsp?rev=1220328&r1=1220327&r2=1220328&view=diff
==============================================================================
--- incubator/chukwa/trunk/src/main/web/hicc/jsp/help.jsp (original)
+++ incubator/chukwa/trunk/src/main/web/hicc/jsp/help.jsp Sun Dec 18 03:11:03 2011
@@ -1,3 +1,22 @@
+<%
+/*
+ * 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.
+ */
+%>
 <html>
 <head>
 <link href="css/default.css" rel="stylesheet" type="text/css">
@@ -26,4 +45,4 @@ You can type in normal English time stri
 </li>
 </ul>
 </body>
-</html>
\ No newline at end of file
+</html>

Modified: incubator/chukwa/trunk/src/packages/tarball/all.xml
URL: http://svn.apache.org/viewvc/incubator/chukwa/trunk/src/packages/tarball/all.xml?rev=1220328&r1=1220327&r2=1220328&view=diff
==============================================================================
--- incubator/chukwa/trunk/src/packages/tarball/all.xml (original)
+++ incubator/chukwa/trunk/src/packages/tarball/all.xml Sun Dec 18 03:11:03 2011
@@ -1,4 +1,20 @@
 <?xml version="1.0"?>
+<!--
+   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.
+-->
 <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1 http://maven.apache.org/xsd/assembly-1.1.1.xsd">

Modified: incubator/chukwa/trunk/src/site/apt/Quick_Start_Guide.apt
URL: http://svn.apache.org/viewvc/incubator/chukwa/trunk/src/site/apt/Quick_Start_Guide.apt?rev=1220328&r1=1220327&r2=1220328&view=diff
==============================================================================
--- incubator/chukwa/trunk/src/site/apt/Quick_Start_Guide.apt (original)
+++ incubator/chukwa/trunk/src/site/apt/Quick_Start_Guide.apt Sun Dec 18 03:11:03 2011
@@ -1,3 +1,18 @@
+~~ 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.
+~~
 Chukwa Quick Start Guide
 
 Purpose

Modified: incubator/chukwa/trunk/src/site/apt/releasenotes.apt
URL: http://svn.apache.org/viewvc/incubator/chukwa/trunk/src/site/apt/releasenotes.apt?rev=1220328&r1=1220327&r2=1220328&view=diff
==============================================================================
--- incubator/chukwa/trunk/src/site/apt/releasenotes.apt (original)
+++ incubator/chukwa/trunk/src/site/apt/releasenotes.apt Sun Dec 18 03:11:03 2011
@@ -1,3 +1,18 @@
+~~ 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.
+~~
 Release Notes - Hadoop Chukwa - Version 0.5
 
 Overall Status

Modified: incubator/chukwa/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/chukwa/trunk/src/site/site.xml?rev=1220328&r1=1220327&r2=1220328&view=diff
==============================================================================
--- incubator/chukwa/trunk/src/site/site.xml (original)
+++ incubator/chukwa/trunk/src/site/site.xml Sun Dec 18 03:11:03 2011
@@ -63,6 +63,8 @@
     <menu name="Miscellaneous">
       <item name="Release Notes" href="releasenotes.html"/>
       <item name="Change Log" href="changes.html"/>
+      <item name="Find Bugs Report" href="findbugs.html"/>
+      <item name="PMD Report" href="pmd.html"/>
     </menu>
 
   </body>