Return-Path: Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: (qmail 81248 invoked from network); 10 Aug 2010 17:06:00 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 10 Aug 2010 17:06:00 -0000 Received: (qmail 99398 invoked by uid 500); 10 Aug 2010 17:06:00 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 99375 invoked by uid 500); 10 Aug 2010 17:06:00 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 99320 invoked by uid 99); 10 Aug 2010 17:06:00 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 17:06:00 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Aug 2010 17:05:44 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id EB1A72388B42; Tue, 10 Aug 2010 17:04:01 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r984122 [8/40] - in /subversion/branches/ignore-mergeinfo: ./ 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.... Date: Tue, 10 Aug 2010 17:03:37 -0000 To: commits@subversion.apache.org From: hwright@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100810170401.EB1A72388B42@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Modified: subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientInterface.java URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientInterface.java?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientInterface.java (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientInterface.java Tue Aug 10 17:03:06 2010 @@ -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 @@ -666,11 +666,36 @@ public interface SVNClientInterface * @param copyAsChild Whether to copy srcPaths as * children of destPath. * @param makeParents Whether to create intermediate parents + * @param ignoreExternals Whether or not to process external definitions + * as part of this operation. + * @param revpropTable A string-to-string mapping of revision properties + * to values which will be set if this operation + * results in a commit. + * @throws ClientException If the copy operation fails. + * @since 1.7 + */ + void copy(CopySource[] sources, String destPath, String message, + boolean copyAsChild, boolean makeParents, + boolean ignoreExternals, Map revpropTable) + throws ClientException; + + /** + * Copy versioned paths with the history preserved. + * + * @param sources A list of CopySource objects. + * @param destPath Destination path or URL. + * @param message Commit message. May be null if + * destPath is not a URL. + * @param copyAsChild Whether to copy srcPaths as + * children of destPath. + * @param makeParents Whether to create intermediate parents * @param revpropTable A string-to-string mapping of revision properties * to values which will be set if this operation * results in a commit. * @throws ClientException If the copy operation fails. * @since 1.5 + * @deprecated Use {@link #copy(CopySource[], String, String, boolean, + * boolean, boolean, Map)} instead. */ void copy(CopySource[] sources, String destPath, String message, boolean copyAsChild, boolean makeParents, Map revpropTable) @@ -686,7 +711,7 @@ public interface SVNClientInterface * @param revision source revision * @throws ClientException * @deprecated Use {@link #copy(CopySource[], String, String, boolean, - * boolean)} instead. + * boolean, boolean, Map)} instead. */ void copy(String srcPath, String destPath, String message, Revision revision) throws ClientException; @@ -1074,8 +1099,31 @@ public interface SVNClientInterface * @param mergeSourceUrl the source of the merge * @param srcPegRevision peg rev for mergeSourceUrl * @param discoverChangedPaths return paths of changed items + * @param depth the depth to recurse to * @param revProps the revprops to retrieve * @param callback the object to receive the log messages + * @since 1.7 + */ + void getMergeinfoLog(int kind, String pathOrUrl, + Revision pegRevision, String mergeSourceUrl, + Revision srcPegRevision, boolean discoverChangedPaths, + int depth, String[] revprops, + LogMessageCallback callback) + throws ClientException; + + /** + * Retrieve either merged or eligible-to-be-merged revisions. + * @param kind kind of revisions to receive + * @param pathOrUrl target of merge + * @param pegRevision peg rev for pathOrUrl + * @param mergeSourceUrl the source of the merge + * @param srcPegRevision peg rev for mergeSourceUrl + * @param discoverChangedPaths return paths of changed items + * @param revProps the revprops to retrieve + * @param callback the object to receive the log messages + * @deprecated Use {@link #getMergeinfoLog(int, String, Revision, String, + * Revision, boolean, int, + * String[], LogMessageCallback)} * @since 1.5 */ void getMergeinfoLog(int kind, String pathOrUrl, @@ -1136,7 +1184,33 @@ public interface SVNClientInterface * @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, @@ -1180,7 +1254,34 @@ public interface SVNClientInterface * @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, @@ -1697,15 +1798,37 @@ public interface SVNClientInterface * @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 @@ -1839,4 +1962,13 @@ public interface SVNClientInterface */ 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/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientLogLevel.java URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientLogLevel.java?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientLogLevel.java (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientLogLevel.java Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientSynchronized.java URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientSynchronized.java?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientSynchronized.java (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNClientSynchronized.java Tue Aug 10 17:03:06 2010 @@ -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 @@ -685,6 +685,23 @@ public class SVNClientSynchronized imple } /** + * @since 1.7 + */ + public void copy(CopySource[] sources, String destPath, String message, + boolean copyAsChild, boolean makeParents, + boolean ignoreExternals, Map revpropTable) + throws ClientException + { + synchronized (clazz) + { + worker.copy(sources, destPath, message, copyAsChild, + makeParents, ignoreExternals, revpropTable); + } + } + + /** + * @deprecated Use {@link #copy(CopySource[], String, String, boolean, + * boolean, boolean, Map)} instead. * @since 1.5 */ public void copy(CopySource[] sources, String destPath, String message, @@ -701,7 +718,7 @@ public class SVNClientSynchronized imple /** * @deprecated Use {@link #copy(CopySource[], String, String, boolean, - * boolean)} instead. + * boolean, boolean, Map)} instead. * @since 1.0 */ public void copy(String srcPath, String destPath, String message, @@ -1051,6 +1068,27 @@ public class SVNClientSynchronized imple } /** + * @since 1.7 + */ + public void getMergeinfoLog(int kind, String pathOrUrl, + Revision pegRevision, String mergeSourceUrl, + Revision srcPegRevision, + boolean discoverChangedPaths, int depth, + String[] revprops, LogMessageCallback callback) + throws ClientException + { + synchronized (clazz) + { + worker.getMergeinfoLog(kind, pathOrUrl, pegRevision, mergeSourceUrl, + srcPegRevision, discoverChangedPaths, depth, + revprops, callback); + } + } + + /** + * @deprecated Use {@link #getMergeinfoLog(int, String, Revision, String, + * Revision, boolean, int, + * String[], LogMessageCallback)} * @since 1.5 */ public void getMergeinfoLog(int kind, String pathOrUrl, @@ -1105,6 +1143,9 @@ public class SVNClientSynchronized imple } /** + * @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, @@ -1123,6 +1164,24 @@ public class SVNClientSynchronized imple } /** + * @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. @@ -1144,6 +1203,9 @@ public class SVNClientSynchronized imple } /** + * @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, @@ -1162,6 +1224,25 @@ public class SVNClientSynchronized imple } /** + * @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, @@ -1629,9 +1710,11 @@ public class SVNClientSynchronized imple } /** + * @deprecated Use {@link #blame(String, Revision, Revision, Revision, + * boolean, boolean, BlameCallback3)} + * instead. * @since 1.5 */ - public void blame(String path, Revision pegRevision, Revision revisionStart, @@ -1648,6 +1731,26 @@ public class SVNClientSynchronized imple } } + + /** + * @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 */ @@ -1798,4 +1901,15 @@ public class SVNClientSynchronized imple } } + /** + * @since 1.7 + */ + public void upgrade(String path) + throws ClientException + { + synchronized (clazz) + { + worker.upgrade(path); + } + } } Modified: subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNInputStream.java URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNInputStream.java?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNInputStream.java (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNInputStream.java Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNOutputStream.java URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNOutputStream.java?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNOutputStream.java (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SVNOutputStream.java Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/ScheduleKind.java URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/ScheduleKind.java?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/ScheduleKind.java (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/ScheduleKind.java Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Status.java URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Status.java?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Status.java (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Status.java Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/StatusCallback.java URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/StatusCallback.java?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/StatusCallback.java (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/StatusCallback.java Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/StatusKind.java URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/StatusKind.java?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/StatusKind.java (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/StatusKind.java Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SubversionException.java URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SubversionException.java?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SubversionException.java (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/SubversionException.java Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Version.java URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Version.java?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Version.java (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Version.java Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/package.html URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/package.html?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/package.html (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/src/org/tigris/subversion/javahl/package.html Tue Aug 10 17:03:06 2010 @@ -1,3 +1,24 @@ + + Modified: subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/BasicTests.java URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/BasicTests.java?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/BasicTests.java (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/BasicTests.java Tue Aug 10 17:03:06 2010 @@ -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.List; import java.util.Set; import java.util.Map; -import junit.framework.Assert; /** * Tests the basic functionality of javahl binding (inspired by the @@ -2253,7 +2247,9 @@ public class BasicTests extends SVNTests private long[] getMergeinfoRevisions(int kind, String pathOrUrl, Revision pegRevision, String mergeSourceUrl, - Revision srcPegRevision) { + Revision srcPegRevision) + throws SubversionException + { class Callback implements LogMessageCallback { List revList = new ArrayList(); @@ -2274,15 +2270,10 @@ public class BasicTests extends SVNTests return revisions; } } - try { - Callback callback = new Callback(); - client.getMergeinfoLog(kind, pathOrUrl, pegRevision, mergeSourceUrl, - srcPegRevision, false, null, callback); - return callback.getRevisions(); - } catch (ClientException e) { - return null; - } - + Callback callback = new Callback(); + client.getMergeinfoLog(kind, pathOrUrl, pegRevision, mergeSourceUrl, + srcPegRevision, false, null, callback); + return callback.getRevisions(); } /** Modified: subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/RunTests.java URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/RunTests.java?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/RunTests.java (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/RunTests.java Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/SVNAdminTests.java URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/SVNAdminTests.java?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/SVNAdminTests.java (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/SVNAdminTests.java Tue Aug 10 17:03:06 2010 @@ -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 @@ package org.tigris.subversion.javahl; import java.io.File; import java.io.IOException; -import java.io.OutputStream; import org.tigris.subversion.javahl.Revision; import org.tigris.subversion.javahl.SubversionException; @@ -78,7 +77,7 @@ public class SVNAdminTests extends SVNTe } assertEquals("expect rev prop change to take effect", MSG, logMessage); } - public void testLoadRepo() + public void testLoadRepo() throws SubversionException, IOException { /* Make sure SVNAdmin.load() works, with a repo dump file known @@ -101,12 +100,11 @@ public class SVNAdminTests extends SVNTe assertNotNull("expect info callback", infoHolder[0]); assertEquals("expect zero revisions in new repository", 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(), @@ -117,7 +115,7 @@ public class SVNAdminTests extends SVNTe Depth.immediates, null, mycallback); assertEquals("expect two revisions after load()", 2L, infoHolder[0].getLastChangedRev()); - // verify that the repos is faithful rep. of the dump file, + // verify that the repos is faithful rep. of the dump file, // e.g., correct author assertEquals("expect 'svn4ant' as author of r2", "svn4ant", infoHolder[0].getLastChangedAuthor()); Modified: subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/SVNTests.java URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/SVNTests.java?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/SVNTests.java (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/SVNTests.java Tue Aug 10 17:03:06 2010 @@ -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 @@ -597,7 +597,7 @@ class SVNTests extends TestCase * * @param createWC Whether to create the working copy on disk, * and initialize the expected working copy layout. - * + * * @see #OneTest */ protected OneTest(boolean createWC) Modified: subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/WC.java URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/WC.java?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/WC.java (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/javahl/tests/org/tigris/subversion/javahl/WC.java Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/core.i URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/core.i?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/core.i (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/core.i Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/include/apr.swg URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/apr.swg?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/apr.swg (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/apr.swg Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/include/proxy.swg URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/proxy.swg?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/proxy.swg (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/proxy.swg Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/include/proxy_apr.swg URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/proxy_apr.swg?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/proxy_apr.swg (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/proxy_apr.swg Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/include/svn_containers.swg URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/svn_containers.swg?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/svn_containers.swg (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/svn_containers.swg Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/include/svn_global.swg URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/svn_global.swg?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/svn_global.swg (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/svn_global.swg Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/include/svn_string.swg URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/svn_string.swg?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/svn_string.swg (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/svn_string.swg Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/include/svn_swigcompat.swg URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/svn_swigcompat.swg?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/svn_swigcompat.swg (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/svn_swigcompat.swg Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/include/svn_types.swg URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/svn_types.swg?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/svn_types.swg (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/include/svn_types.swg Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.c URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.c?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.c (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.c Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/libsvn_swig_perl/swigutil_pl.h Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/perl/native/Base.pm URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Base.pm?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Base.pm (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Base.pm Tue Aug 10 17:03:06 2010 @@ -96,10 +96,10 @@ Chia-liang Kao Eclkao@clkao.orgE =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/ignore-mergeinfo/subversion/bindings/swig/perl/native/Client.pm URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Client.pm?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Client.pm (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Client.pm Tue Aug 10 17:03:06 2010 @@ -1494,10 +1494,10 @@ Ben Reser Eben@reser.orgE =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/ignore-mergeinfo/subversion/bindings/swig/perl/native/Core.pm URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Core.pm?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Core.pm (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Core.pm Tue Aug 10 17:03:06 2010 @@ -992,10 +992,10 @@ Chia-liang Kao Eclkao@clkao.orgE =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/ignore-mergeinfo/subversion/bindings/swig/perl/native/Delta.pm URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Delta.pm?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Delta.pm (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Delta.pm Tue Aug 10 17:03:06 2010 @@ -189,10 +189,10 @@ Chia-liang Kao Eclkao@clkao.orgE =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/ignore-mergeinfo/subversion/bindings/swig/perl/native/Fs.pm URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Fs.pm?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Fs.pm (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Fs.pm Tue Aug 10 17:03:06 2010 @@ -476,6 +476,25 @@ True if the text (content) was modified. =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/ignore-mergeinfo/subversion/bindings/swig/perl/native/Makefile.PL.in URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Makefile.PL.in?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Makefile.PL.in (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Makefile.PL.in Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/perl/native/Ra.pm URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Ra.pm?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Ra.pm (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Ra.pm Tue Aug 10 17:03:06 2010 @@ -663,10 +663,10 @@ Chia-liang Kao Eclkao@clkao.orgE =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/ignore-mergeinfo/subversion/bindings/swig/perl/native/Repos.pm URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Repos.pm?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Repos.pm (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Repos.pm Tue Aug 10 17:03:06 2010 @@ -289,10 +289,10 @@ Chia-liang Kao Eclkao@clkao.orgE =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/ignore-mergeinfo/subversion/bindings/swig/perl/native/Wc.pm URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Wc.pm?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Wc.pm (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/Wc.pm Tue Aug 10 17:03:06 2010 @@ -430,6 +430,25 @@ A directory doesn't contain a complete e =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/ignore-mergeinfo/subversion/bindings/swig/perl/native/scripts/compile_all.pl URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/scripts/compile_all.pl?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/scripts/compile_all.pl (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/scripts/compile_all.pl Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/perl/native/scripts/fast_svnbase.pl URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/scripts/fast_svnbase.pl?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/scripts/fast_svnbase.pl (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/scripts/fast_svnbase.pl Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/0use.t URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/0use.t?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/0use.t (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/0use.t Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/1repos.t URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/1repos.t?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/1repos.t (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/1repos.t Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/2fs.t URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/2fs.t?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/2fs.t (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/2fs.t Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/3client.t URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/3client.t?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/3client.t (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/3client.t Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/4pool.t URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/4pool.t?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/4pool.t (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/4pool.t Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/5delta-compat.t URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/5delta-compat.t?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/5delta-compat.t (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/5delta-compat.t Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/5delta.t URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/5delta.t?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/5delta.t (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/5delta.t Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/6ra.t URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/6ra.t?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/6ra.t (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/6ra.t Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/7editor.t URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/7editor.t?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/7editor.t (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/7editor.t Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/8lock.t URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/8lock.t?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/8lock.t (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/perl/native/t/8lock.t Tue Aug 10 17:03:06 2010 @@ -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/ignore-mergeinfo/subversion/bindings/swig/python/LICENSE_FOR_PYTHON_BINDINGS URL: http://svn.apache.org/viewvc/subversion/branches/ignore-mergeinfo/subversion/bindings/swig/python/LICENSE_FOR_PYTHON_BINDINGS?rev=984122&r1=984121&r2=984122&view=diff ============================================================================== --- subversion/branches/ignore-mergeinfo/subversion/bindings/swig/python/LICENSE_FOR_PYTHON_BINDINGS (original) +++ subversion/branches/ignore-mergeinfo/subversion/bindings/swig/python/LICENSE_FOR_PYTHON_BINDINGS Tue Aug 10 17:03:06 2010 @@ -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