You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by bi...@apache.org on 2011/11/18 16:05:06 UTC

svn commit: r1203683 - in /incubator/accumulo/branches/1.3: ./ src/core/src/main/java/org/apache/accumulo/core/client/mock/ src/core/src/main/java/org/apache/accumulo/core/util/ src/core/src/test/java/org/apache/accumulo/core/security/ src/server/src/m...

Author: billie
Date: Fri Nov 18 15:05:05 2011
New Revision: 1203683

URL: http://svn.apache.org/viewvc?rev=1203683&view=rev
Log:
ACCUMULO-86 added missing headers, fixed typos in NOTICE file

Modified:
    incubator/accumulo/branches/1.3/NOTICE
    incubator/accumulo/branches/1.3/src/core/src/main/java/org/apache/accumulo/core/client/mock/MockMultiTableBatchWriter.java
    incubator/accumulo/branches/1.3/src/core/src/main/java/org/apache/accumulo/core/util/ByteArraySet.java
    incubator/accumulo/branches/1.3/src/core/src/test/java/org/apache/accumulo/core/security/ColumnVisibilityTest.java
    incubator/accumulo/branches/1.3/src/server/src/main/java/org/apache/accumulo/server/constraints/ConstraintChecker.java
    incubator/accumulo/branches/1.3/src/server/src/main/java/org/apache/accumulo/server/test/functional/RegExTest.java
    incubator/accumulo/branches/1.3/src/server/src/main/resources/randomwalk/module.xsd

Modified: incubator/accumulo/branches/1.3/NOTICE
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.3/NOTICE?rev=1203683&r1=1203682&r2=1203683&view=diff
==============================================================================
--- incubator/accumulo/branches/1.3/NOTICE (original)
+++ incubator/accumulo/branches/1.3/NOTICE Fri Nov 18 15:05:05 2011
@@ -4,8 +4,11 @@ Copyright 2011 The Apache Software Found
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).
 
-This product includes Flot (http://http://code.google.com/p/flot/), its licensed under the MIT license
+This product includes Flot (http://http://code.google.com/p/flot/), which is 
+licensed under the MIT license.
 Copyright (c) 2007-2009 IOLA and Ole Laursen
 
-This product includes JLine (http://jline.sourceforge.net/), its licensed under the BSD License.
-Copyright (c) 2002-2006, Marc Prud'hommeaux <mw...@cornell.edu>, All rights reserved.
\ No newline at end of file
+This product includes JLine (http://jline.sourceforge.net/), which is licensed 
+under the BSD License.
+Copyright (c) 2002-2006, Marc Prud'hommeaux <mw...@cornell.edu>, All rights 
+reserved.

Modified: incubator/accumulo/branches/1.3/src/core/src/main/java/org/apache/accumulo/core/client/mock/MockMultiTableBatchWriter.java
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.3/src/core/src/main/java/org/apache/accumulo/core/client/mock/MockMultiTableBatchWriter.java?rev=1203683&r1=1203682&r2=1203683&view=diff
==============================================================================
--- incubator/accumulo/branches/1.3/src/core/src/main/java/org/apache/accumulo/core/client/mock/MockMultiTableBatchWriter.java (original)
+++ incubator/accumulo/branches/1.3/src/core/src/main/java/org/apache/accumulo/core/client/mock/MockMultiTableBatchWriter.java Fri Nov 18 15:05:05 2011
@@ -1,3 +1,19 @@
+/*
+ * 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.accumulo.core.client.mock;
 
 import org.apache.accumulo.core.client.AccumuloException;

Modified: incubator/accumulo/branches/1.3/src/core/src/main/java/org/apache/accumulo/core/util/ByteArraySet.java
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.3/src/core/src/main/java/org/apache/accumulo/core/util/ByteArraySet.java?rev=1203683&r1=1203682&r2=1203683&view=diff
==============================================================================
--- incubator/accumulo/branches/1.3/src/core/src/main/java/org/apache/accumulo/core/util/ByteArraySet.java (original)
+++ incubator/accumulo/branches/1.3/src/core/src/main/java/org/apache/accumulo/core/util/ByteArraySet.java Fri Nov 18 15:05:05 2011
@@ -1,3 +1,19 @@
+/*
+ * 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.accumulo.core.util;
 
 import java.io.Serializable;

Modified: incubator/accumulo/branches/1.3/src/core/src/test/java/org/apache/accumulo/core/security/ColumnVisibilityTest.java
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.3/src/core/src/test/java/org/apache/accumulo/core/security/ColumnVisibilityTest.java?rev=1203683&r1=1203682&r2=1203683&view=diff
==============================================================================
--- incubator/accumulo/branches/1.3/src/core/src/test/java/org/apache/accumulo/core/security/ColumnVisibilityTest.java (original)
+++ incubator/accumulo/branches/1.3/src/core/src/test/java/org/apache/accumulo/core/security/ColumnVisibilityTest.java Fri Nov 18 15:05:05 2011
@@ -1,3 +1,19 @@
+/*
+ * 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.accumulo.core.security;
 
 import static org.junit.Assert.assertArrayEquals;

Modified: incubator/accumulo/branches/1.3/src/server/src/main/java/org/apache/accumulo/server/constraints/ConstraintChecker.java
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.3/src/server/src/main/java/org/apache/accumulo/server/constraints/ConstraintChecker.java?rev=1203683&r1=1203682&r2=1203683&view=diff
==============================================================================
--- incubator/accumulo/branches/1.3/src/server/src/main/java/org/apache/accumulo/server/constraints/ConstraintChecker.java (original)
+++ incubator/accumulo/branches/1.3/src/server/src/main/java/org/apache/accumulo/server/constraints/ConstraintChecker.java Fri Nov 18 15:05:05 2011
@@ -1,3 +1,19 @@
+/*
+ * 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.accumulo.server.constraints;
 
 import java.io.IOException;

Modified: incubator/accumulo/branches/1.3/src/server/src/main/java/org/apache/accumulo/server/test/functional/RegExTest.java
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.3/src/server/src/main/java/org/apache/accumulo/server/test/functional/RegExTest.java?rev=1203683&r1=1203682&r2=1203683&view=diff
==============================================================================
--- incubator/accumulo/branches/1.3/src/server/src/main/java/org/apache/accumulo/server/test/functional/RegExTest.java (original)
+++ incubator/accumulo/branches/1.3/src/server/src/main/java/org/apache/accumulo/server/test/functional/RegExTest.java Fri Nov 18 15:05:05 2011
@@ -1,3 +1,19 @@
+/*
+ * 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.accumulo.server.test.functional;
 
 import java.util.ArrayList;

Modified: incubator/accumulo/branches/1.3/src/server/src/main/resources/randomwalk/module.xsd
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.3/src/server/src/main/resources/randomwalk/module.xsd?rev=1203683&r1=1203682&r2=1203683&view=diff
==============================================================================
--- incubator/accumulo/branches/1.3/src/server/src/main/resources/randomwalk/module.xsd (original)
+++ incubator/accumulo/branches/1.3/src/server/src/main/resources/randomwalk/module.xsd Fri Nov 18 15:05:05 2011
@@ -1,4 +1,20 @@
 <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+<!--
+  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.
+-->
 
   <xsd:element name="module" type="ModuleType"/>