You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by cm...@apache.org on 2009/12/15 07:15:17 UTC

svn commit: r890658 [7/27] - in /subversion/branches/issue-3242-dev: ./ build/ build/ac-macros/ build/generator/ build/generator/swig/ build/generator/templates/ build/generator/util/ build/hudson/ build/hudson/jobs/ build/hudson/jobs/subversion-1.6.x-...

Modified: subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/RevisionRange.java
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/RevisionRange.java?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/RevisionRange.java (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/RevisionRange.java Tue Dec 15 06:14:36 2009
@@ -1,10 +1,10 @@
 /**
  * @copyright
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNAdmin.java
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNAdmin.java?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNAdmin.java (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNAdmin.java Tue Dec 15 06:14:36 2009
@@ -1,10 +1,10 @@
 /**
  * @copyright
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClient.java
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClient.java?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClient.java (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClient.java Tue Dec 15 06:14:36 2009
@@ -1,10 +1,10 @@
 /**
  * @copyright
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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
@@ -31,6 +31,8 @@
 import java.util.Iterator;
 import java.util.Date;
 import java.text.ParseException;
+import java.text.DateFormat;
+import java.text.SimpleDateFormat;
 
 /**
  * This is the main client class.  All Subversion client APIs are
@@ -888,13 +890,32 @@
     }
 
     /**
+     * @deprecated Use {@link #diff(String, Revision, String, Revision,
+     *                              String, String, int, boolean, boolean,
+     *                              boolean, boolean)} instead.
      * @since 1.5
      */
+    public void diff(String target1, Revision revision1, String target2,
+                     Revision revision2, String relativeToDir,
+                     String outFileName, int depth, String[] changelists,
+                     boolean ignoreAncestry, boolean noDiffDeleted,
+                     boolean force)
+            throws ClientException
+    {
+        diff(target1, revision1, target2, revision2, relativeToDir,
+             outFileName, depth, changelists, ignoreAncestry, noDiffDeleted,
+             force, false);
+    }
+
+    /**
+     * @since 1.7
+     */
     public native void diff(String target1, Revision revision1, String target2,
                             Revision revision2, String relativeToDir,
-                            String outFileName, int depth, String[] changelists,
-                            boolean ignoreAncestry, boolean noDiffDeleted,
-                            boolean force)
+                            String outFileName, int depth,
+                            String[] changelists, boolean ignoreAncestry,
+                            boolean noDiffDeleted, boolean force,
+                            boolean copiesAsAdds)
             throws ClientException;
 
     /**
@@ -916,14 +937,32 @@
     }
 
     /**
+     * @deprecated Use {@link #diff(String, Revision, Revision, Revision,
+     *                              String, String, int, boolean, boolean,
+     *                              boolean, boolean)} instead.
      * @since 1.5
      */
+    public void diff(String target, Revision pegRevision,
+                     Revision startRevision, Revision endRevision,
+                     String relativeToDir, String outFileName, int depth,
+                     String[] changelists, boolean ignoreAncestry,
+                     boolean noDiffDeleted, boolean force)
+            throws ClientException
+    {
+        diff(target, pegRevision, startRevision, endRevision, relativeToDir,
+             outFileName, depth, changelists, ignoreAncestry, noDiffDeleted,
+             force, false);
+    }
+
+    /**
+     * @since 1.7
+     */
     public native void diff(String target, Revision pegRevision,
                             Revision startRevision, Revision endRevision,
                             String relativeToDir, String outFileName,
                             int depth, String[] changelists,
                             boolean ignoreAncestry, boolean noDiffDeleted,
-                            boolean force)
+                            boolean force, boolean copiesAsAdds)
             throws ClientException;
 
     /**
@@ -1295,13 +1334,30 @@
     }
 
     /**
+     * @deprecated Use {@link #blame(String, Revision, Revision, Revision,
+     *                               boolean, boolean, BlameCallback3)}
+     *                               instead.
      * @since 1.5
      */
+    public void blame(String path, Revision pegRevision,
+                      Revision revisionStart, Revision revisionEnd,
+                      boolean ignoreMimeType, boolean includeMergedRevisions,
+                      BlameCallback2 callback)
+            throws ClientException
+    {
+        BlameCallback2Wrapper cw = new BlameCallback2Wrapper(callback);
+        blame(path, pegRevision, revisionStart, revisionEnd, ignoreMimeType,
+              includeMergedRevisions, cw);
+    }
+
+    /**
+     * @since 1.7
+     */
     public native void blame(String path, Revision pegRevision,
                              Revision revisionStart,
                              Revision revisionEnd, boolean ignoreMimeType,
                              boolean includeMergedRevisions,
-                             BlameCallback2 callback)
+                             BlameCallback3 callback)
             throws ClientException;
 
     /**
@@ -1359,6 +1415,12 @@
             throws ClientException;
 
     /**
+     * @since 1.7
+     */
+    public native void upgrade(String path)
+            throws ClientException;
+
+    /**
      * Enable logging in the JNI-code
      * @param logLevel      the level of information to log (See
      *                      SVNClientLogLevel)
@@ -1591,4 +1653,41 @@
             oldCallback.singleLine(date, revision, author, line);
         }
     }
+
+    /**
+     * A private wrapper for compatibility of blame implementations.
+     */
+    private class BlameCallback2Wrapper implements BlameCallback3
+    {
+        private BlameCallback2 oldCallback;
+
+        public BlameCallback2Wrapper(BlameCallback2 callback)
+        {
+            oldCallback = callback;
+        }
+
+        public void singleLine(long lineNum, long revision, Map revProps,
+                               long mergedRevision, Map mergedRevProps,
+                               String mergedPath, String line,
+                               boolean localChange)
+            throws ClientException
+        {
+            DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS");
+
+            try {
+                oldCallback.singleLine(
+                    df.parse((String) revProps.get("svn:date")),
+                    revision,
+                    (String) revProps.get("svn:author"),
+                    mergedRevProps == null ? null
+                        : df.parse((String) mergedRevProps.get("svn:date")),
+                    mergedRevision,
+                    mergedRevProps == null ? null
+                        : (String) mergedRevProps.get("svn:author"),
+                    mergedPath, line);
+            } catch (ParseException e) {
+                throw ClientException.fromException(e);
+            }
+        }
+    }
 }

Modified: subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientInterface.java
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientInterface.java?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientInterface.java (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientInterface.java Tue Dec 15 06:14:36 2009
@@ -1,10 +1,10 @@
 /**
  * @copyright
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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
@@ -1184,7 +1184,33 @@
      * @param ignoreAncestry ignore if files are not related
      * @param noDiffDeleted no output on deleted files
      * @param force         diff even on binary files
+     * @param copiesAsAdds  if set, copied files will be shown in their
+     *                      entirety, not as diffs from their sources
      * @throws ClientException
+     * @since 1.7
+     */
+    void diff(String target1, Revision revision1, String target2,
+              Revision revision2, String relativeToDir, String outFileName,
+              int depth, String[] changelists, boolean ignoreAncestry,
+              boolean noDiffDeleted, boolean force, boolean copiesAsAdds)
+            throws ClientException;
+
+    /**
+     * Display the differences between two paths
+     * @param target1       first path or url
+     * @param revision1     first revision
+     * @param target2       second path or url
+     * @param revision2     second revision
+     * @param relativeToDir index path is relative to this path
+     * @param outFileName   file name where difference are written
+     * @param depth         how deep to traverse into subdirectories
+     * @param ignoreAncestry ignore if files are not related
+     * @param noDiffDeleted no output on deleted files
+     * @param force         diff even on binary files
+     * @throws ClientException
+     * @deprecated Use {@link #diff(String, Revision, String, Revision,
+     *                              String, String, int, boolean, boolean,
+     *                              boolean, boolean)} instead.
      * @since 1.5
      */
     void diff(String target1, Revision revision1, String target2,
@@ -1228,7 +1254,34 @@
      * @param ignoreAncestry ignore if files are not related
      * @param noDiffDeleted no output on deleted files
      * @param force         diff even on binary files
+     * @param copiesAsAdds  if set, copied files will be shown in their
+     *                      entirety, not as diffs from their sources
      * @throws ClientException
+     * @since 1.7
+     */
+    void diff(String target, Revision pegRevision, Revision startRevision,
+              Revision endRevision, String relativeToDir, String outFileName,
+              int depth, String[] changelists, boolean ignoreAncestry,
+              boolean noDiffDeleted, boolean force, boolean copiesAsAdds)
+            throws ClientException;
+
+    /**
+     * Display the differences between two paths.
+     * @param target        path or url
+     * @param pegRevision   revision tointerpret target
+     * @param startRevision first Revision to compare
+     * @param endRevision   second Revision to compare
+     * @param relativeToDir index path is relative to this path
+     * @param outFileName   file name where difference are written
+     * @param depth         how deep to traverse into subdirectories
+     * @param changelists  if non-null, filter paths using changelists
+     * @param ignoreAncestry ignore if files are not related
+     * @param noDiffDeleted no output on deleted files
+     * @param force         diff even on binary files
+     * @throws ClientException
+     * @deprecated Use {@link #diff(String, Revision, Revision, Revision,
+     *                              String, String, int, boolean, boolean,
+     *                              boolean, boolean)} instead.
      * @since 1.5
      */
     void diff(String target, Revision pegRevision, Revision startRevision,
@@ -1745,15 +1798,37 @@
      * @param callback      callback to receive the file content and the other
      *                      information
      * @throws ClientException
+     * @deprecated Use {@link #blame(String, Revision, Revision, Revision,
+     *                               boolean, boolean, BlameCallback3)}
+     *                               instead.
      * @since 1.5
      */
-
     void blame(String path, Revision pegRevision, Revision revisionStart,
                Revision revisionEnd, boolean ignoreMimeType,
                boolean includeMergedRevisions,
                BlameCallback2 callback) throws ClientException;
 
     /**
+     * Retrieve the content together with the author, the revision and the date
+     * of the last change of each line
+     * @param path          the path
+     * @param pegRevision   the revision to interpret the path
+     * @param revisionStart the first revision to show
+     * @param revisionEnd   the last revision to show
+     * @param ignoreMimeType whether or not to ignore the mime-type
+     * @param includeMergedRevisions whether or not to include extra merge
+     *                      information
+     * @param callback      callback to receive the file content and the other
+     *                      information
+     * @throws ClientException
+     * @since 1.7
+     */
+    void blame(String path, Revision pegRevision, Revision revisionStart,
+               Revision revisionEnd, boolean ignoreMimeType,
+               boolean includeMergedRevisions,
+               BlameCallback3 callback) throws ClientException;
+
+    /**
      * Set directory for the configuration information, taking the
      * usual steps to ensure that Subversion's config file templates
      * exist in the specified location..  On Windows, setting a
@@ -1887,4 +1962,13 @@
      */
     String getVersionInfo(String path, String trailUrl, boolean lastChanged)
             throws ClientException;
+
+    /**
+     * Recursively upgrade a working copy to a new metadata storage format.
+     * @param path                  path of the working copy
+     * @throws ClientException
+     * @since 1.7
+     */
+    void upgrade(String path)
+            throws ClientException;
 }

Modified: subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientLogLevel.java
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientLogLevel.java?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientLogLevel.java (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientLogLevel.java Tue Dec 15 06:14:36 2009
@@ -1,10 +1,10 @@
 /**
  * @copyright
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientSynchronized.java
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientSynchronized.java?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientSynchronized.java (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientSynchronized.java Tue Dec 15 06:14:36 2009
@@ -1,10 +1,10 @@
 /**
  * @copyright
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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
@@ -1143,6 +1143,9 @@
     }
 
     /**
+     * @deprecated Use {@link #diff(String, Revision, String, Revision,
+     *                              String, String, int, boolean, boolean,
+     *                              boolean, boolean)} instead.
      * @since 1.5
      */
     public void diff(String target1, Revision revision1, String target2,
@@ -1161,6 +1164,24 @@
     }
 
     /**
+     * @since 1.7
+     */
+    public void diff(String target1, Revision revision1, String target2,
+                     Revision revision2, String relativeToDir,
+                     String outFileName, int depth, String[] changelists,
+                     boolean ignoreAncestry, boolean noDiffDeleted,
+                     boolean force, boolean copiesAsAdds)
+            throws ClientException
+    {
+        synchronized (clazz)
+        {
+            worker.diff(target1, revision1, target2, revision2, relativeToDir,
+                        outFileName, depth, changelists, ignoreAncestry,
+                        noDiffDeleted, force, copiesAsAdds);
+        }
+    }
+
+    /**
      * @deprecated Use {@link #diff(String, Revision, Revision, Revision,
      *                              String, String, int, boolean, boolean,
      *                              boolean)} instead.
@@ -1182,6 +1203,9 @@
     }
 
     /**
+     * @deprecated Use {@link #diff(String, Revision, Revision, Revision,
+     *                              String, String, int, boolean, boolean,
+     *                              boolean, boolean)} instead.
      * @since 1.5
      */
     public void diff(String target, Revision pegRevision,
@@ -1200,6 +1224,25 @@
     }
 
     /**
+     * @since 1.7
+     */
+    public void diff(String target, Revision pegRevision,
+                     Revision startRevision, Revision endRevision,
+                     String relativeToDir, String outFileName, int depth,
+                     String[] changelists, boolean ignoreAncestry,
+                     boolean noDiffDeleted, boolean force,
+                     boolean copiesAsAdds)
+            throws ClientException
+    {
+        synchronized (clazz)
+        {
+            worker.diff(target, pegRevision, startRevision, endRevision,
+                        relativeToDir, outFileName, depth, changelists,
+                        ignoreAncestry, noDiffDeleted, force, copiesAsAdds);
+        }
+    }
+
+    /**
      * @since 1.5
      */
     public void diffSummarize(String target1, Revision revision1,
@@ -1667,9 +1710,11 @@
     }
 
     /**
+     * @deprecated Use {@link #blame(String, Revision, Revision, Revision,
+     *                               boolean, boolean, BlameCallback3)}
+     *                               instead.
      * @since 1.5
      */
-
     public void blame(String path,
                       Revision pegRevision,
                       Revision revisionStart,
@@ -1686,6 +1731,26 @@
         }
     }
 
+
+    /**
+     * @since 1.7
+     */
+    public void blame(String path,
+                      Revision pegRevision,
+                      Revision revisionStart,
+                      Revision revisionEnd,
+                      boolean ignoreMimeType,
+                      boolean includeMergedRevisions,
+                      BlameCallback3 callback)
+            throws ClientException
+    {
+        synchronized(clazz)
+        {
+            worker.blame(path, pegRevision, revisionStart, revisionEnd,
+                         ignoreMimeType, includeMergedRevisions, callback);
+        }
+    }
+
     /**
      * @since 1.0
      */
@@ -1836,4 +1901,15 @@
         }
     }
 
+    /**
+     * @since 1.7
+     */
+    public void upgrade(String path)
+        throws ClientException
+    {
+        synchronized (clazz)
+        {
+            worker.upgrade(path);
+        }
+    }
 }

Modified: subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNInputStream.java
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNInputStream.java?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNInputStream.java (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNInputStream.java Tue Dec 15 06:14:36 2009
@@ -1,10 +1,10 @@
 /**
  * @copyright
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNOutputStream.java
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNOutputStream.java?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNOutputStream.java (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNOutputStream.java Tue Dec 15 06:14:36 2009
@@ -1,10 +1,10 @@
 /**
  * @copyright
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/ScheduleKind.java
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/ScheduleKind.java?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/ScheduleKind.java (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/ScheduleKind.java Tue Dec 15 06:14:36 2009
@@ -1,10 +1,10 @@
 /**
  * @copyright
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Status.java
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Status.java?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Status.java (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Status.java Tue Dec 15 06:14:36 2009
@@ -1,10 +1,10 @@
 /**
  * @copyright
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/StatusCallback.java
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/StatusCallback.java?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/StatusCallback.java (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/StatusCallback.java Tue Dec 15 06:14:36 2009
@@ -1,10 +1,10 @@
 /**
  * @copyright
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/StatusKind.java
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/StatusKind.java?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/StatusKind.java (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/StatusKind.java Tue Dec 15 06:14:36 2009
@@ -1,10 +1,10 @@
 /**
  * @copyright
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SubversionException.java
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SubversionException.java?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SubversionException.java (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SubversionException.java Tue Dec 15 06:14:36 2009
@@ -1,10 +1,10 @@
 /**
  * @copyright
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Version.java
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Version.java?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Version.java (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Version.java Tue Dec 15 06:14:36 2009
@@ -1,10 +1,10 @@
 /**
  * @copyright
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/package.html
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/package.html?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/package.html (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/javahl/src/org/tigris/subversion/javahl/package.html Tue Dec 15 06:14:36 2009
@@ -1,3 +1,24 @@
+<!--
+
+ 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 HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 <html>
 <body>

Modified: subversion/branches/issue-3242-dev/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/BasicTests.java
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/BasicTests.java?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/BasicTests.java (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/BasicTests.java Tue Dec 15 06:14:36 2009
@@ -1,10 +1,10 @@
 /**
  * @copyright
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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
@@ -22,12 +22,7 @@
  */
 package org.tigris.subversion.javahl;
 
-import org.tigris.subversion.javahl.*;
-
-import java.io.BufferedInputStream;
-import java.io.DataInputStream;
 import java.io.File;
-import java.io.FileInputStream;
 import java.io.FileOutputStream;
 import java.io.FileNotFoundException;
 import java.io.FileReader;
@@ -43,7 +38,6 @@
 import java.util.Set;
 import java.util.Map;
 
-import junit.framework.Assert;
 
 /**
  * Tests the basic functionality of javahl binding (inspired by the

Modified: subversion/branches/issue-3242-dev/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/RunTests.java
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/RunTests.java?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/RunTests.java (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/RunTests.java Tue Dec 15 06:14:36 2009
@@ -1,10 +1,10 @@
 /**
  * @copyright
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/SVNAdminTests.java
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/SVNAdminTests.java?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/SVNAdminTests.java (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/SVNAdminTests.java Tue Dec 15 06:14:36 2009
@@ -1,10 +1,10 @@
 /**
  * @copyright
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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
@@ -24,7 +24,6 @@
 
 import java.io.File;
 import java.io.IOException;
-import java.io.OutputStream;
 
 import org.tigris.subversion.javahl.Revision;
 import org.tigris.subversion.javahl.SubversionException;
@@ -103,10 +102,9 @@
                 0L, infoHolder[0].getLastChangedRev());
 
         // locate dump file in test environment
-        String testRoot = System.getProperty("test.rootdir",
-                "subversion/bindings/javahl/test-work");
-        File javahlRoot = new File(testRoot).getParentFile();
-        File dump = new File(javahlRoot, "tests/data/issue2979.dump");
+        String testSrcdir = System.getProperty("test.srcdir",
+                "subversion/bindings/javahl");
+        File dump = new File(testSrcdir, "tests/data/issue2979.dump");
         InputInterface input = new FileInputer(dump);
         OutputInterface loadLog = new IgnoreOutputer();
         admin.load(thisTest.getRepositoryPath(),

Modified: subversion/branches/issue-3242-dev/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/SVNTests.java
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/SVNTests.java?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/SVNTests.java (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/SVNTests.java Tue Dec 15 06:14:36 2009
@@ -1,10 +1,10 @@
 /**
  * @copyright
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/WC.java
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/WC.java?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/WC.java (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/WC.java Tue Dec 15 06:14:36 2009
@@ -1,10 +1,10 @@
 /**
  * @copyright
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/core.i
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/core.i?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/core.i (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/core.i Tue Dec 15 06:14:36 2009
@@ -1,9 +1,9 @@
 /*
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/include/apr.swg
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/include/apr.swg?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/include/apr.swg (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/include/apr.swg Tue Dec 15 06:14:36 2009
@@ -1,9 +1,9 @@
 /*
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/include/proxy.swg
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/include/proxy.swg?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/include/proxy.swg (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/include/proxy.swg Tue Dec 15 06:14:36 2009
@@ -2,10 +2,10 @@
  * proxy.swg :  SWIG include file for defining automatic proxy classes
  *
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/include/proxy_apr.swg
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/include/proxy_apr.swg?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/include/proxy_apr.swg (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/include/proxy_apr.swg Tue Dec 15 06:14:36 2009
@@ -1,9 +1,9 @@
 /*
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/include/svn_containers.swg
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/include/svn_containers.swg?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/include/svn_containers.swg (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/include/svn_containers.swg Tue Dec 15 06:14:36 2009
@@ -1,9 +1,9 @@
 /*
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/include/svn_global.swg
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/include/svn_global.swg?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/include/svn_global.swg (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/include/svn_global.swg Tue Dec 15 06:14:36 2009
@@ -1,9 +1,9 @@
 /*
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/include/svn_string.swg
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/include/svn_string.swg?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/include/svn_string.swg (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/include/svn_string.swg Tue Dec 15 06:14:36 2009
@@ -1,9 +1,9 @@
 /*
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/include/svn_swigcompat.swg
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/include/svn_swigcompat.swg?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/include/svn_swigcompat.swg (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/include/svn_swigcompat.swg Tue Dec 15 06:14:36 2009
@@ -1,9 +1,9 @@
 /*
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/include/svn_types.swg
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/include/svn_types.swg?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/include/svn_types.swg (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/include/svn_types.swg Tue Dec 15 06:14:36 2009
@@ -1,9 +1,9 @@
 /*
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.c
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.c?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.c (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.c Tue Dec 15 06:14:36 2009
@@ -2,10 +2,10 @@
  * swigutil_pl.c: utility functions for the SWIG Perl bindings
  *
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h Tue Dec 15 06:14:36 2009
@@ -2,10 +2,10 @@
  * swigutil_pl.h :  utility functions and stuff for the SWIG Perl bindings
  *
  * ====================================================================
- *    Licensed to the Subversion Corporation (SVN Corp.) under one
+ *    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 SVN Corp. licenses this file
+ *    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Base.pm
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Base.pm?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Base.pm (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Base.pm Tue Dec 15 06:14:36 2009
@@ -96,10 +96,10 @@
 
 =head1 COPYRIGHT
 
-    Licensed to the Subversion Corporation (SVN Corp.) under one
+    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 SVN Corp. licenses this file
+    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Client.pm
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Client.pm?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Client.pm (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Client.pm Tue Dec 15 06:14:36 2009
@@ -1494,10 +1494,10 @@
 
 =head1 COPYRIGHT
 
-    Licensed to the Subversion Corporation (SVN Corp.) under one
+    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 SVN Corp. licenses this file
+    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Core.pm
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Core.pm?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Core.pm (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Core.pm Tue Dec 15 06:14:36 2009
@@ -992,10 +992,10 @@
 
 =head1 COPYRIGHT
 
-    Licensed to the Subversion Corporation (SVN Corp.) under one
+    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 SVN Corp. licenses this file
+    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Delta.pm
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Delta.pm?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Delta.pm (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Delta.pm Tue Dec 15 06:14:36 2009
@@ -189,10 +189,10 @@
 
 =head1 COPYRIGHT
 
-    Licensed to the Subversion Corporation (SVN Corp.) under one
+    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 SVN Corp. licenses this file
+    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Fs.pm
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Fs.pm?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Fs.pm (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Fs.pm Tue Dec 15 06:14:36 2009
@@ -476,6 +476,25 @@
 
 =back
 
+=head1 COPYRIGHT
+
+    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.
+
 =cut
 
 package SVN::Fs::PathChange;

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Makefile.PL.in
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Makefile.PL.in?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Makefile.PL.in (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Makefile.PL.in Tue Dec 15 06:14:36 2009
@@ -1,4 +1,25 @@
 #!/usr/bin/perl
+#
+#
+# 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.
+#
+#
+
 use ExtUtils::MakeMaker;
 use Config;
 use Cwd 'abs_path';

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Ra.pm
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Ra.pm?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Ra.pm (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Ra.pm Tue Dec 15 06:14:36 2009
@@ -663,10 +663,10 @@
 
 =head1 COPYRIGHT
 
-    Licensed to the Subversion Corporation (SVN Corp.) under one
+    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 SVN Corp. licenses this file
+    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Repos.pm
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Repos.pm?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Repos.pm (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Repos.pm Tue Dec 15 06:14:36 2009
@@ -289,10 +289,10 @@
 
 =head1 COPYRIGHT
 
-    Licensed to the Subversion Corporation (SVN Corp.) under one
+    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 SVN Corp. licenses this file
+    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

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Wc.pm
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Wc.pm?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Wc.pm (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/Wc.pm Tue Dec 15 06:14:36 2009
@@ -430,6 +430,25 @@
 
 =back
 
+=head1 COPYRIGHT
+
+    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.
+
 =cut
 
 package SVN::Wc::Status;

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/scripts/compile_all.pl
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/scripts/compile_all.pl?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/scripts/compile_all.pl (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/scripts/compile_all.pl Tue Dec 15 06:14:36 2009
@@ -1,3 +1,21 @@
+# ====================================================================
+#    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.
+# ====================================================================
 use strict;
 
 for my $file qw( Client.pm Core.pm Delta.pm Fs.pm Ra.pm Repos.pm Wc.pm ) {

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/scripts/fast_svnbase.pl
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/scripts/fast_svnbase.pl?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/scripts/fast_svnbase.pl (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/scripts/fast_svnbase.pl Tue Dec 15 06:14:36 2009
@@ -1,3 +1,21 @@
+# ====================================================================
+#    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.
+# ====================================================================
 use strict;
 
 =head1 NAME

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/0use.t
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/0use.t?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/0use.t (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/0use.t Tue Dec 15 06:14:36 2009
@@ -1,4 +1,24 @@
 #!/usr/bin/perl -w
+#
+#
+# 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.
+#
+#
 
 use Test::More tests => 7;
 use strict;

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/1repos.t
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/1repos.t?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/1repos.t (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/1repos.t Tue Dec 15 06:14:36 2009
@@ -1,4 +1,24 @@
 #!/usr/bin/perl -w
+#
+#
+# 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.
+#
+#
 
 use Test::More tests => 6;
 use File::Temp qw(tempdir);

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/2fs.t
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/2fs.t?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/2fs.t (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/2fs.t Tue Dec 15 06:14:36 2009
@@ -1,4 +1,24 @@
 #!/usr/bin/perl -w
+#
+#
+# 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.
+#
+#
 
 use Test::More tests => 22;
 use strict;

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/3client.t
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/3client.t?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/3client.t (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/3client.t Tue Dec 15 06:14:36 2009
@@ -1,4 +1,24 @@
 #!/usr/bin/perl -w
+#
+#
+# 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.
+#
+#
 
 use Test::More tests => 118;
 use strict;

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/4pool.t
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/4pool.t?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/4pool.t (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/4pool.t Tue Dec 15 06:14:36 2009
@@ -1,4 +1,25 @@
 #!/usr/bin/perl
+#
+#
+# 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.
+#
+#
+
 use strict;
 use Test::More tests => 6;
 use File::Path q(rmtree);

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/5delta-compat.t
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/5delta-compat.t?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/5delta-compat.t (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/5delta-compat.t Tue Dec 15 06:14:36 2009
@@ -1,4 +1,25 @@
 #!/usr/bin/perl
+#
+#
+# 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.
+#
+#
+
 use strict;
 use Test::More tests => 2;
 require SVN::Core;

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/5delta.t
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/5delta.t?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/5delta.t (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/5delta.t Tue Dec 15 06:14:36 2009
@@ -1,4 +1,25 @@
 #!/usr/bin/perl
+#
+#
+# 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.
+#
+#
+
 use strict;
 use Test::More tests => 3;
 require SVN::Core;

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/6ra.t
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/6ra.t?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/6ra.t (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/6ra.t Tue Dec 15 06:14:36 2009
@@ -1,4 +1,24 @@
 #!/usr/bin/perl -w
+#
+#
+# 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.
+#
+#
 
 use Test::More tests => 40;
 use File::Temp qw(tempdir);

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/7editor.t
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/7editor.t?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/7editor.t (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/7editor.t Tue Dec 15 06:14:36 2009
@@ -1,4 +1,25 @@
 #!/usr/bin/perl -w
+#
+#
+# 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 MyEditor;
 our @ISA = ('SVN::Delta::Editor');
 

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/8lock.t
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/8lock.t?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/8lock.t (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/perl/native/t/8lock.t Tue Dec 15 06:14:36 2009
@@ -1,4 +1,25 @@
 #!/usr/bin/perl -w
+#
+#
+# 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.
+#
+#
+
 use Test::More tests => 8;
 use strict;
 no warnings 'once'; # shut up about variables that are only used once.

Modified: subversion/branches/issue-3242-dev/subversion/bindings/swig/python/LICENSE_FOR_PYTHON_BINDINGS
URL: http://svn.apache.org/viewvc/subversion/branches/issue-3242-dev/subversion/bindings/swig/python/LICENSE_FOR_PYTHON_BINDINGS?rev=890658&r1=890657&r2=890658&view=diff
==============================================================================
--- subversion/branches/issue-3242-dev/subversion/bindings/swig/python/LICENSE_FOR_PYTHON_BINDINGS (original)
+++ subversion/branches/issue-3242-dev/subversion/bindings/swig/python/LICENSE_FOR_PYTHON_BINDINGS Tue Dec 15 06:14:36 2009
@@ -1,10 +1,10 @@
 The Python bindings for Subversion are distributed under the following
 terms:
 
-I.         Licensed to the Subversion Corporation (SVN Corp.) under one
+I.         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 SVN Corp. licenses this file
+           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