Author: rgoers
Date: Sun Jul 24 08:32:08 2011
New Revision: 1150298
URL: http://svn.apache.org/viewvc?rev=1150298&view=rev
Log:
Apply fix for VFS-348
Modified:
commons/proper/vfs/trunk/core/src/site/site.xml
commons/proper/vfs/trunk/dist/src/assembly/bin.xml
commons/proper/vfs/trunk/examples/src/main/java/org/apache/commons/vfs2/libcheck/FtpCheck.java
commons/proper/vfs/trunk/examples/src/site/site.xml
commons/proper/vfs/trunk/sandbox/src/site/site.xml
commons/proper/vfs/trunk/src/changes/announcement.vm
commons/proper/vfs/trunk/src/changes/changes.xml
commons/proper/vfs/trunk/src/site/site.xml
Modified: commons/proper/vfs/trunk/core/src/site/site.xml
URL:
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/site/site.xml?rev=1150298&r1=1150297&r2=1150298&view=diff
==============================================================================
--- commons/proper/vfs/trunk/core/src/site/site.xml (original)
+++ commons/proper/vfs/trunk/core/src/site/site.xml Sun Jul 24 08:32:08 2011
@@ -31,5 +31,7 @@
<menu name="Commons VFS">
<item name="Overview" href="../index.html"/>
</menu>
+
+ <menu ref="reports"/>
</body>
</project>
Modified: commons/proper/vfs/trunk/dist/src/assembly/bin.xml
URL:
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/dist/src/assembly/bin.xml?rev=1150298&r1=1150297&r2=1150298&view=diff
==============================================================================
--- commons/proper/vfs/trunk/dist/src/assembly/bin.xml (original)
+++ commons/proper/vfs/trunk/dist/src/assembly/bin.xml Sun Jul 24 08:32:08 2011
@@ -50,9 +50,9 @@ limitations under the License.
</fileSets>
<files>
<file>
- <source>../target/announcement/announcement.vm</source>
+ <source>../target/announcement/RELEASE-NOTES.txt</source>
<outputDirectory>.</outputDirectory>
<destName>RELEASE-NOTES.txt</destName>
- </file>
+ </file>
</files>
</assembly>
Modified:
commons/proper/vfs/trunk/examples/src/main/java/org/apache/commons/vfs2/libcheck/FtpCheck.java
URL:
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/examples/src/main/java/org/apache/commons/vfs2/libcheck/FtpCheck.java?rev=1150298&r1=1150297&r2=1150298&view=diff
==============================================================================
---
commons/proper/vfs/trunk/examples/src/main/java/org/apache/commons/vfs2/libcheck/FtpCheck.java
(original)
+++
commons/proper/vfs/trunk/examples/src/main/java/org/apache/commons/vfs2/libcheck/FtpCheck.java
Sun Jul 24 08:32:08 2011
@@ -72,7 +72,7 @@ public class FtpCheck
}
}
- System.err.println("System: " + client.getSystemName());
+ System.err.println("System: " + client.getSystemType());
FTPFile[] files = client.listFiles();
for (int i = 0; i < files.length; i++)
Modified: commons/proper/vfs/trunk/examples/src/site/site.xml
URL:
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/examples/src/site/site.xml?rev=1150298&r1=1150297&r2=1150298&view=diff
==============================================================================
--- commons/proper/vfs/trunk/examples/src/site/site.xml (original)
+++ commons/proper/vfs/trunk/examples/src/site/site.xml Sun Jul 24 08:32:08 2011
@@ -31,5 +31,6 @@
<menu name="Commons VFS">
<item name="Overview" href="../index.html"/>
</menu>
+ <menu ref="reports"/>
</body>
</project>
Modified: commons/proper/vfs/trunk/sandbox/src/site/site.xml
URL:
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/sandbox/src/site/site.xml?rev=1150298&r1=1150297&r2=1150298&view=diff
==============================================================================
--- commons/proper/vfs/trunk/sandbox/src/site/site.xml (original)
+++ commons/proper/vfs/trunk/sandbox/src/site/site.xml Sun Jul 24 08:32:08 2011
@@ -31,5 +31,7 @@
<menu name="Commons VFS">
<item name="Overview" href="../index.html"/>
</menu>
+
+ <menu ref="reports"/>
</body>
</project>
Modified: commons/proper/vfs/trunk/src/changes/announcement.vm
URL:
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/src/changes/announcement.vm?rev=1150298&r1=1150297&r2=1150298&view=diff
==============================================================================
--- commons/proper/vfs/trunk/src/changes/announcement.vm (original)
+++ commons/proper/vfs/trunk/src/changes/announcement.vm Sun Jul 24 08:32:08
2011
@@ -14,12 +14,14 @@
## KIND, either express or implied. See the License for the
## specific language governing permissions and limitations
## under the License.
+ Apache Commons VFS ${version} RELEASE NOTES
+
The ${developmentTeam} is pleased to announce the commons-vfs2 ${version}
release!
${introduction}
-Commons VFS 2.0 requires a minimum of Java 5 to build and run and is not
binary compatible with Commons VFS 1.0. The
-Maven groupId and artifactId have been changed to org.apache.commons and
commons-vfs2 respectively.
+Apache Commons VFS ${version} requires a minimum of Java 5 to build and run
and is not binary compatible with
+Commons VFS 1.0. The Maven groupId and artifactId have been changed to
org.apache.commons and commons-vfs2 respectively.
#if ($release.getActions().size() == 0)
No changes defined in this version.
Modified: commons/proper/vfs/trunk/src/changes/changes.xml
URL:
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/src/changes/changes.xml?rev=1150298&r1=1150297&r2=1150298&view=diff
==============================================================================
--- commons/proper/vfs/trunk/src/changes/changes.xml (original)
+++ commons/proper/vfs/trunk/src/changes/changes.xml Sun Jul 24 08:32:08 2011
@@ -23,6 +23,9 @@
<body>
<release version="2.0" date="" description="Backwards incompatible update
of Commons VFS to Java 5">
+ <action issue="VFS-348" dev="rgoers" type="fix" due-to="Stefan Bodewig">
+ Update the version of commons-net.
+ </action>
<action issue="VFS-230" dev="rgoers" type="fix">
Documented FileSystem capabilities on the web site.
</action>
Modified: commons/proper/vfs/trunk/src/site/site.xml
URL:
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/src/site/site.xml?rev=1150298&r1=1150297&r2=1150298&view=diff
==============================================================================
--- commons/proper/vfs/trunk/src/site/site.xml (original)
+++ commons/proper/vfs/trunk/src/site/site.xml Sun Jul 24 08:32:08 2011
@@ -48,6 +48,8 @@
<item name="Examples" href="commons-vfs2-examples/index.html"/>
<item name="Sandbox" href="commons-vfs2-sandbox/index.html"/>
</menu>
+
+ <menu ref="reports"/>
</body>
</project>